I've decided to write my blog in a way that's very different of what I've done so far. Instead of explaining my opinion on various subjects of computing, I'll shortly summarize the most important things in my mind, like in a memo. The reason for this change is my lack of time. I wanna focus more on UC and other things that interest me and blogging is too much of a burden sometimes. That doesn't mean that I won't make any long posts about the things that I found important, of course.
So here's my first memo:
I love this way of blogging! :-)
If you can read this, that means that I've successfully migrated my blog to the new server and redirected the related URLs carefully. I've also upgraded to the most recent WordPress and I'm absolutely amazed by the richness of the admin UI. These guys are pushing JavaScript to its limits.
There are many advantages of this move, such as better response time, speed and wider administration possibilities. Abusing the power of .htaccess belongs to the latter category. I love the permament URIs WordPress provides this way.
The most apparent blog change I've made is finally enabling the comments. Comments were disabled for a while in my blog because of the massive amounts of comment spam I got, but there is a great way to evade them. This method is called CAPTCHA and it's wonderfully simple and effective. There are more WordPress CAPTCHA plugins, but most of them are crap. Fortunately there is a real gem among them, the Capcha! plugin. You gotta try it if you wanna communicate through your blog without being flooded with spam.
I've just finished migrating all the SF project web content to http://ultimatecommander.org. The site is hosted by http://mediacenter.hu, which seems to be a very good hosting provider regarding how much value it provides in exchange for only 120$ per year. Project demoing flash screencasts shouldn't be slow anymore, not even from foreign countries.
I will migrate the whole monda.hu domain to the new server as soon as they finished setting up the DNS. As a side effect of this, monda.hu will be offline for a while, so you may not be able to read my blog for a day or two. I hope you can live with that. ;-)
I'd like to thank my mother for financing the new hosting service and the ultimatecommander.org domain. I don't have any jobs right now, because I decided to work on UC, gain experience, and create something really exceptional in this respect. She's a furniture painting folk artist and you can find her home page at http://monda.hu/klara.
I've just finished editing the Coding Guidelines document and comitting the modified source that complies to the holy guidelines.
It's a small, but significiant quality improvement that should be followed by every projects.
I've demoed UC to Vilmos Bilicki, who is my mentor in relation with my master thesis project (which is UC). He was very enthusiastic and told me that he'd use UC if it ran on Windows. I was thinking about porting UC to Windows even before, but he was giving me a further push, so I did a try this time.
I had a talk with Francisco T. Martinez a la Paco on #Mono. He directed me to his expermiental Windows Mono Installer which incorporates the Gnome bindings, not just Gtk# as the official installer. Using his stuff it was easy to port UC to Windows. Well I've not entirely ported it, just to make the GUI work, but it's nice to see how fine it looks on Windows:
He told me that the extra bindings of his expermental installer will be a part of the official installer soon. Very nice!
I'll try to maintain UC in the future respecting the Windows port. I think it worths the additional maintenance burden which is not too heavy with Mono.
It's worth listening Novell Open Audio. I've listened their first podcast several days before and these guys talk about some interesting stuff. I realized how powerful Simias, the engine under IFolder really is. I've also realized how little I know about HAL.
One can learn a lot by listening talented people in general.
I've just migrated all the content to the new project site I've set up on SourceForge. This was one of the subtasks I didn't really enjoy, because these kinds of administrations generally bore and frustrate the hell out of me.
The most exciting part of this job was making a customized style for MediaWiki which powers the site. As a useful side effect, I learned CSS which I find very elegant. I used the FratMan skin as a starting point and modelled the general site layout after the Beagle Wiki. It's a really usable and simple layout.
I've even put up the flash screencast and all the related media to the new site. To be honest this was the first reason I moved the site to SourceForge, because it has better bandwidth, but MediaWiki has additional virtues, of course.
To document my glorious deed for the future generations, here is a screenshot of the old site:
And this is the new one:
I honestly hope that you can feel the difference. If you can't, then there is something wrong with you and you're strange and weird.
This is my third and last post regarding the installation of MediaWiki on SourceForge.
In my first post, I concluded that it's not possible to install MediaWiki on SourceForge. In my second post, I acknowledged that it's doable and in this post of mine, in my third post on the subject, I'm gonna actually describe how to do it in a way that will make you understand what are you doing and why.
Just to let you know, what you're reading now is probably the most complete and clear HOWTO ever written on the subject. It's not that there aren't any resources out there, but they're not very usable or clear in my experience.
As an additional note, it wasn't fun to compile all this information into a quality document like this, but I was so pissed off by this issue and I wasted so much time with it, that I really don't wanna anyone out there to suck days with this process like I did. So if you're eager to install MediaWiki into your project web space on SourceForge, this guide will worth you pure gold. I should probably charge you, but I'm such a nice person…
Throughout this HOWTO, i'll mark text regions with bold formatting that are supposed to be replaced by your installation settings.
Here are the steps to make the thing happen:
scp the tarball to your project web space, since outbound connections are forbidden from the SourceForge shell:$ scp mediawiki-version.tar.gz username@shell.sf.net:/home/groups/p/pr/projectname/htdocs$ ssh username@shell.sf.net$ cd /home/groups/p/pr/projectname/htdocs$ tar xzvf mediawiki-version.tar.gz$ ln -s mediawiki-version wiki/tmp/persistent/tmpname. tmpname should be the same as your projectname. In case /tmp/persistent/projectname is already created by someone else, you need to choose another name.$ mkdir /tmp/persistent/tmpname$ cd /tmp/persistent/tmpname$ mkdir config sessions images$ chmod a+w *config and images MediaWiki directories to your persistent directory:$ cd /home/groups/p/pr/projectname/htdocs/wiki$ cp config/index.php /tmp/presistent/tmpname/config$ rm -f config/index.php$ rmdir config$ ln -s /tmp/persistent/tmpname/config$ rm -f images/.cvsignore images/README$ rmdir images$ ln -s /tmp/persistent/tmpname/images/home/groups/p/pr/projectname/htdocs/wiki/config/index.php needs to be hacked in order to work correctly with the persistent directory setup:
$IP = dirname( dirname( __FILE__ ) );$IP = "/home/groups/p/pr/projectname/htdocs/wiki";\$IP = \"{$slconf['IP']}\"\$IP = \"/home/groups/p/pr/projectname/htdocs/wiki\"languages directory by replacing line 1296:global $wgLanguageNames;global $wgLanguageNames, $IP;$d = opendir( "../languages" );$d = opendir( "$IP/languages" );dbsource( "../" strings with "dbsource( "$IP/" strings. (Watch for the space after the parantheses.)http://projectname.sf.net/wiki/config and install MediaWiki through its web interface:
LocalSettings.php to the wiki root directory:$ mv /tmp/persistent/tmpdir/LocalSettings.php /home/groups/p/pr/projectname/htdocs/wiki$ rm -f /tmp/persistent/tmpname/config/index.php$ rmdir /tmp/persistent/tmpname/config$ rm -f /home/groups/p/pr/projectname/htdocs/wiki/config/home/groups/p/pr/projectname/htdocs/wiki/LocalSettings.php at the end of the PHP section:session_save_path("/tmp/persistent/tmpdir");LocalSettings.php:$wgGroupPermissions['*']['edit'] = false;$wgGroupPermissions['user']['edit'] = false;
Thanks
I'd like to thank Diego Torres Milano, developer of the JGlade project for writing the mediawiki-sf installation script which I learned a lot from.