Programming
From PlasmaWiki
Here you will find out all about my work with programming C/C++, Java and other realms.
Contents |
Quick Notes
find In Linux
How-To find All C++ Source Files
find . -regex '.*\.[ch]p*'
How-To find Something in Those Source Files
find . -regex '.*\.[ch]p*' -exec grep -H "Something to Search For" {} \;
How-To find in a bash Script
#!/bin/bash
find . -regex '.*\.[ch]p*' -exec grep -H "$*" {} \;
Articles
The Relationship Between Programming and Creative Writing
Flex
C++
Game Programming
I've started to get into creating mods for Half-Life 1 & 2.
I started out with creating scripts in Pawn for use with AMXModX. I created a bot controller for Natural Selection. And then a admin helper for DoD:Classic.
One of the big things missing from DoD:Source is bots. So I've now started working on creating a bot plugin for Source. Finding issues with what is given developers in the basic SDK I've also started looking into using SourceMM and SourceHook to help me out.
Tutorials
Java
Tutorials
J2SE
Create an MD5 String from a Password
JBoss
Oracle - OC4J - Application Server
MatLab
Projects
Libraries
Games
High Command
This was my first try at a commercial game.
Axis and Allies
I'm working on an Axis & Allies clone, a computer game version of the board game. There are screen shots on the page.
Plasma
This is an effort to create a J2EE game server framework that can host various games and provide community ability to find games with players of the same games. This would include all the standard kind of things that you find in game server networks. User login, chat rooms, game rooms, distribution of new games... etc. Think of it like a kind of open source, open platform like Steam.

