|
|
|
: New Homepage
|
| I have a new homepage | 19.8.2005 | Jozef Wagner |
|
|
wagjo.com is my new homepage. You can find some articles and one new project. I will be moving all my old projects on the new homepage and there won't be many updates here...
|
|
: koraX's bot framework
|
| Half life plugin framework | 25.3.2005 | Jozef Wagner |
|
|
koraX's bot framework is plugin for Half-Life. You can make your own bot/plugin on top of this framework. It supports non-metamod and metamod, non-steam and steam ... I'm using it in kXBot along with koraX's utils.
|
|
: koraX's utils
|
| many utils :) | 24.3.2005 | Jozef Wagner |
|
koraX's utils are collection of various utils. profiler, loging facility, xml/cfg/ini parser, math vector support.
It started as part of kXBot, and it ended as a separate 'program'. I'm still using it in my bot :) which will be released soon
|
|
: www.jowag.info
|
| well, new domain taffers :p | 2.12.2004 | Jozef Wagner |
|
Well I bought the domain jowag.info, so you can use address www.jowag.info to get here. It should be easier to remember :)
You can also e-mail me at address jowag@jowag.info. It is redirected to my current e-mail, so again it does not matter which address you will use.
|
|
: Build number auto-incrementer
|
| Example for koraXs parser | 2.8.2004 | Jozef Wagner |
|
Because there is no feature to track build numbers in MSVC,
I made program which will increase build number and store date and time of the last build in xml file. It also has history of all builds.
Program also creates .h file, so you can use build number/date/time in your program. It supports multi-project workspace/solution and several configurations (debug/release)
It can be easily implemented in MSVC .NET, because .NET has pre-build setup. So it will launch before compiling, so no problems with time attributes for .h file. You just have to compile it and add this to pre-build line of your program :
$(SolutionDir)buildnum.exe $(SolutionDir)build.xml $(SolutionName) $(ProjectName) $(ConfigurationName) ..\path\to\h\build.h
program is very simple, one .cpp file. Download it here
|
|
: koraXs parser
|
| New program | 28.7.2004 | Jozef Wagner |
|
I made a new program, koraXs parser. Read more about it here
koraXs parser is program which enables you to work with XML, INI and CFG files, easily retrieve and edit parameters, add new ones and export them to XML, CFG or INI
|
|
: Forum
|
| New forum | 27.6.2004 | Jozef Wagner |
|
I have new forum, you can find it here : http://neuron.tuke.sk/~wagner/bbs/
Well, if you have suggestions or questions about my projects or about anything else you want to share with me, post there :)
This nice forum is made by Martin Senftleben, and you can find his forum's homepage here : http://pblang.drmartinus.de/
|
|
: Offtopic
|
| Sylvain Quenel was my guest | 26.6.2004 | Jozef Wagner |
|
Sylvian Quenel, often called as syrun, french 'runner' was my guest for a day. See his homepage at www.syrun.com
We had quite a good time. I invited him for a trip near my town. (Into the forest, to see a mineral spring near our town and on the way back I showed him some nearby sightseeings.)
He is a very interesting an unusual person. It was great experience to meet him.
He contacted me through the Hospitality Club. It is a very helpful page for backpackers and hitchhikers. You can find it at www.hospitalityclub.org
|
|
: Big update
|
| New program | 23.6.2004 | Jozef Wagner |
|
New main project finished : Twelve puzzle EA solver is program for solving specific task (filling map with tetris pieces) using Evolutionary algorithms. EA used here can be easily ported for solving another type of problems, because they are problem-independent. Source is ANSI C++ compactible, and it is 100% working under Windows and Linux
Recapitulation :
So far my page has been extremely popular on Internet. I haven't advertised it and even though many people came here and downloaded my programs. I'll give you number of people asking for passwords to my source codes so far :
- CSG - over 30 requests (students, developemet teams, professionals from CAD/CAM.... USA, Europe, China, Macedonia, Russia... )
- FAT16 - over 10 requests (mostly students)
- Branch and bound - over 3 requests (students)
- PathMap, NN simulator - under 4 requests, over 1
University page is down. If you are interested on some things that were on it, contact me.
For those who are wondering, I succesfully ended 4. year and I've started intensive work on my Master Thesis
|
|
: Misc
|
| misc | 7.6.2004 | Jozef Wagner |
|
Hello ! :))
The university page will soon go down.
I've finished a new program (twelve puzzle contest, more on university page) so expect it soon in project page, with english documentation, source code with english comments and stuff :))
|
|
: CSG Howto
|
| how to compile CSG | 7.6.2004 | Jozef Wagner |
|
I've got numerous requests about CSG source code and some of you don't know how to compile it, so I'll give you step by step howto.
NOTE : You can't compile it under MSVC .NET (well you can, read about it further)
NOTE : The solution I present here is not the only one but it is will less fill your system with useless files
- THIS IS FOR MSVC 6.0 !!!!
- Create some directory, where you will have this project (Mine is C:\temp\CSG )
- Download CSG binaries : http://neuron.tuke.sk/~wagner/files/csg-program.zip
- Download CSG source code : http://neuron.tuke.sk/~wagner/files/csg-src.zip (ask me for a password)
- Download newest OpenCSG : http://www.opencsg.org
- Download GLUT binary : http://www.xmission.com/~nate/glut.html
- Unpack it all to different directories. Now you should have something like this :

- Copy glut.h from glut-3.7.6-bin directory to include directory for your visual studio ( C:\Program Files\Microsoft Visual Studio\VC98\Include\GL )
- Run Microsoft Visual Studio 6.0
- Load OpenCSG project and compile ALL 3 projects under both Debug and Release version (Build - Batch build - Rebuild All)
- Load CSG project.
- Change active configuration to Release (Build - Set active configuration - Release)
- Open Project - Settings and :
- - In debug tab, set working directory to CSG probram ( C:\temp\CSG\csg-program )
- - In C\C++ tab and Preprocessor category, set Additional Include directories to this : C:\temp\CSG\OpenCSG-1.0.0\include;C:\temp\CSG\OpenCSG-1.0.0\glew\include\GL (obviously change directories to reflect yours directory structure)
- - In link tab and Input category, set Additional library path to this : C:\temp\CSG\OpenCSG-1.0.0\lib;C:\temp\CSG\OpenCSG-1.0.0\glew\lib (obviously change directories to reflect yours directory structure)
- Build project and run it :)
Visual studio .NET changes:
- I was not able to run program sucessfully. It was buggy when rotating object (Problem is somewhere in Run() or onidle functions or camera.cpp but I'm too lazy :p )
- Make changes like mentioned above (obviously settings in MSVC .NET are in slightly different places)
- You have to deal with m_msgCur, because it is not in .NET (you can use _AFX_THREAD_STATE* pState = AfxGetThreadState(); to obtain m_msgCur)
- comment out content of CCSGView::GetGLInfo()
- add /FORCE and /NODEFAULTLIB:libc.lib to link parameters in project settings
|
|
: Update at "University" page
|
| More projects completed | 28.4.2004 | Jozef Wagner |
|
Page update after a month :).
Anyways, see new projects on university page (Knowledge discovery, Computational Neuroscience, ...)
[RANT] My biggest problem nowadays is TIME. I have begun one beautiful project and I haven't got time to look at it since beginning of this semester :(.
Other small university projects (except one really big, read about it a bit later) are wasting my time :( However I must find some free time to continue my project
I have one big project from Evolutionary algorithms before me. It is hardest project so far, not because of it's complexity, but, but, but because of it is hard :) I already spent a month coding it, and I hope I'll be sucessfull at last.
[/RANT]
|
|
: Update at "University" page
|
| New project completed | 29.3.2004 | Jozef Wagner |
|
|
I've completed a third project from Evolutionary algorithms. Its on university page
|
|
: Update at "University" page
|
| New project completed | 17.3.2004 | Jozef Wagner |
|
I've completed a project from Fuzzy Decisioning, you can download it here. (Written in Slovak language)
I finnaly have some time to code my bot. Expect some updates there soon.
Also I've put favicon to all subpages on this site
|
|
: Update at "University" page
|
| Some projects completed | 12.3.2004 | Jozef Wagner |
|
You can learn more about my projects at university here. There are also some finished projects, and some of them are even in English language :)
And I put some favicon on my page, w00t :)
|
|
: Other Projects Finished
|
| Other Project Page Finished | 4.3.2004 | Jozef Wagner |
|
After a month, page for my other projects is finished. Go look, Now I will create page for my kXBot.
This is probably last big update for a long time, my homepage is finished, and I'll be only adding some stuff in university section and fixing bugs. (And oh yeah, grammatical errors :p )
|
|
: Small page update and some news
|
| small page update and some big news | 3.3.2004 | Jozef Wagner |
|
I added page bugs and todo section in About section of my site. Also I added my current programming tasks in top of this page (News)
Florian Kirsch, developer of OpenCSG contacted me and mentioned my CSG Editor on his page. Go look now !!!
|
|
: Main Projects Finished
|
| Main Project Page Finished | 9.2.2004 | Jozef Wagner |
|
Page for my main projects is finished. Go look, Now I will create page for my other projects.
Also small update in 'university' page, studying material for PGVR
|
|
: Welcome
|
| New page is created | 16.1.2004 | Jozef Wagner |
|
My new homepage is created. It is now mostly focused on my projects and it has a better look (at least in my opinion). I will use English language on this page, however, some texts and documentations can still be in my native (Slovak) language. Also because english is not my native language do not expect 100% correct grammar and stuff like that.
You should not have problems viewing this site. It is using CSS, which are supported by most browsers. All HTML is valid HTML4.01 (according to W3C). Page was tested under Internet Explorer 6.0 and Opera 7.11
|
|