Monday, 27 April 2009

StripReloc

Wonderful little tool which can be downloaded here, made by Jordan Russell (Inno Setup), which removes unnecessary data from an EXE & reduces it's size.

Usage is pretty simple too, when I wanted to reduce one of the demos that came with Basic4GL, I just typed the following...

StripReloc /B asteroiddemo2.exe

Free Online Storage

10GB of free storage available here at humyo.com.

Wednesday, 22 April 2009

Rubygame-2.4.1 Windows Binary

It took me some time to do but after a few Weeks I finally managed to build the newest version of Rubygame for Windows. I made this post on the Rubygame forum which includes a download link for the various dlls. At some point I'll get around to uploading the various project files I had to create for the dlls.

Monday, 20 April 2009

Rubygame Newest Version

If you're interested in getting the newest version of the Rubygame source to try & compile it yourself, it can be downloaded from here.

Sunday, 19 April 2009

Games Coffer

Downloading Amiga games & demos from large bland anonymous FTP sites can be a tedious experience sometimes.

Now someone from EAB has created a site here where you can download a lot of content in a much more user friendly way.

Friday, 17 April 2009

Linker Tools Warning LNK4098

Ever got that Warning when you're using MSVC to compile a program?

If you have you should visit the following link.

Thursday, 16 April 2009

Windows XP Calibri Font

I used to use Vista & created a PDF from a document in OpenOffice, recently I started using XP again & went through the same process but when I opened the PDF I discovered that the fonts weren't correct. After some searching I discovered that Calibri isn't installed on XP but if you install PowerPoint Viewer 2007 the font & some others will be installed so the problem is solved.


KompoZer Windows Installer

I've been using the HTML editor KompoZer for some time now. I'm sure a lot more Windows users would use it too if it wasn't for the installation method. Currently KompoZer is distributed as a ZIP file which you have to decompress & manually install, which I'm sure puts some users off.

I've used Inno Setup to create an Installer, which will install the program for you. I've tested it on my own computer & it worked fine, plus it should also work on Vista machines too as it asks for administrator privileges.

It installs the newest version of Kompozer which is version 0.8a2 & the installer is available to download from here.

Wednesday, 15 April 2009

Opening XPS Files

If you're using Windows XP & you need to open or view XPS files, you should visit this webpage & download the Microsoft XML Paper Specification Essentials Pack.

Monday, 13 April 2009

Free Pascal New Version Released

You can view the changes in the new version here & download it from here.

If you are taking a look at Free Pascal 2.2.4 you might also want to take a look at the Lazarus IDE too.

Java HelloApp Program

I've recently been using Java again, so I thought I'd present some simple programs you can run in Java. Just type the following into a text editor but be careful because Java is case sensitive. Certain commands are expected to be entered using upper case letters.

public class HelloApp
{
public static void main(String[] args)
{
System.out.println("Hello, World!");
}
}

Save the file as HelloApp.java & compile it with the following...

javac HelloApp.java

Run it with the following...

java HelloApp

If you want to generate documentation using JavaDoc just type the following...

javadoc -d docs HelloApp.java

Finally, if you'd like to place your class in a Jar file, you must first create a Manifest file. Just place the following text in a file called Manifest.txt & make sure you place a newline at the end.

Main-Class: HelloApp


Then create the Jar file by typing the following...

jar cvfm HelloApp.jar Manifest.txt *.class

Run the Jar file with the following...

java -jar HelloApp.jar

Sunday, 12 April 2009

Further Rubygame Links

Some more Rubygame related links...
  • Rubygame: The Blog, can be found here.
  • Sourceforge: Rubygame project here
  • Win32 Compile: Rubygame 2.2.0 guide here

MessageBox Functions

If you're creating MessageBoxes using the Windows API this MSDN page should help you.