A Contest
Posted 24 Jun 2005 by Akinwale Ariwodola
GameDev.Net is organising a contest titled Four Elements. It is the fourth version and it deals with ninjas, pirates, zombies and robots. More info here. Yes, I've finally decided to participate meaning more work, and less procrastination on my part. I just obtained a copy of Visual C++ 6 and installed it, and will be downloading SDL along with a bunch of tutorials, I suppose. Let's hope I can get a game up and working by October!
Had to implement an intranet Web app (PHP/MySQL) yesterday for a client, quite far away from home. It was a success. Now, they're going to be testing, and I'll most likely have to deal with a bunch of bugs next week.
Digg this |
Permalink |
Comments (0) |
Post A Comment
Completed!
Posted 4 Jun 2005 by Akinwale Ariwodola
Archived pages... check
Calendar... check
Permalink... check
Post Comments... check
Number 1 on Yahoo! Search... check
Number 1 on Google Search... check
Number 1 on MSN Search... uh...
I have finally decided to compile a list of DVDs that I intend to purchase/collect over a period of time. I'll probably post that here as soon as I'm through. Oh, and AntiNormal now officially kicks ass!
Digg this |
Permalink |
Comments (0) |
Post A Comment
The MSIE Way
Posted 1 Jun 2005 by Akinwale Ariwodola
Well, I was faced with a daunting task a few days ago (I thought it was going to be very easy at first until I couldn't come across any docs). I was meant to find out if the Sun and Microsoft Java VM plugins were installed on a client's browser using Javascript. After combining Google with MSDN and some references on the Sun Java forums, I was able to come up with this. It's implemented in a rather different and somewhat more reasonable way in other browsers. All you need to do is to make use of java.lang.System... in Javascript!
As for IE, you will need to use the ActiveXObject method for detecting what and what are available. To find out if the Microsoft Java VM Plugin is installed:
try
{
// attempt to create the object
var myObject = new ActiveXObject("MSJava");
}
catch(e)
{
// unable to create ActiveXObject
// therefore, the MS JavaVM is not available
}
// object was created successfully
if(myObject)
{
// the MS JavaVM was detected
// do stuff here...
}
The same code structure will go for the Sun Java VM except that the ActiveXObject will be JavaPlugin. It will go like so:
var myObject = new ActiveXObject("JavaPlugin");
And as an added bonus, if you want to find out if any version of Java Web Start is installed, all you have to do is:
var myObject = new
ActiveXObject("JavaWebStart.isInstalled");
Voila! Piece o' cake. The only downside to this is that the user may have disabled ActiveX plugins from running. Yeah, well, some people's computer systems have to be safe from malicious code.
And by the way, as you can see, the calendar has been placed just below the Recent Items. Do not click on any of the links in the calendar, as they will take you to pages that do not exist, yet. The calendar dates link to the archives, which I have not created, yet. I am not lazy, and you know that :)
Digg this |
Permalink |
Comments (0) |
Post A Comment