Categories
Tags
Archives
Links
Meta
Category Archives: PHP
Ugly Old RPG Code
Here’s an example of my past, and how bad I used to be at application design. I started this RPG back in 2006 and eventually stopped making it at the end of 2008. It sort of works… well, it would … Continue reading
Exception Thrown Without a Stack Frame and Sessions
Just a note, if anyone receives this error at the bottom of the page when programming in PHP, and you’ve checked things like throwing exceptions inside of exception handlers, check any objects you’re storing in $_SESSION. If an exception is … Continue reading
Posted in PHP
Leave a comment
PHP Shell Execution Reminder
If you are using PHP to execute a custom-written shell script, keep in mind that the $PATH for the web server’s user can be different than the user account you’re using to execute it. Meaning, if it doesn’t behave properly, … Continue reading
Ancient Image Class
This is a really old image library/class thing I wrote back in Summer 2006 while working with Jeremy and his company. I believe it was originally written in PHP4 and updated to PHP5 a month or two after the original … Continue reading
Wildfire Log Adapter for Solar
While doing some more development for Crindigan, I figured I should be looking for a better way to show debug information than putting it in the page footer, so I looked at FirePHP. Unfortunately the Firephp log adapter in Solar … Continue reading
Pwiff Update
I just committed a simple Movie and Encoder class, so making a blank movie is now far easier to understand. At least now you don’t have to calculate the file length by hand. The first step is to define an … Continue reading
Pwiff Source Released
Today, I was able to get Pwiff to create a “blank” SWF file, meaning a header, a FileAttributes tag, and an End tag. As a result, I decided to start a Google Code project for it, and host the files … Continue reading
NextShout is now Free
NextShout was a commercial shoutbox product I released two or three years ago, for the vBulletin forum software. Its bandwidth consumption is far lower than any competing products, due to its use of efficient JSON and only sending information deltas, … Continue reading
Introducing Pwiff
Considering I’ve reached a small milestone in the project, I figured I would write a post explaining what I’ve been up to. My previous entry relates to this, as at the time I was experimenting with writing a class to … Continue reading
Extracting Information from Floats
I was tinkering around with working in binary again, for a project I may or may not follow through on – still deciding. Along the way I was dealing with floating point numbers, and how to work with their individual … Continue reading
Posted in PHP
Leave a comment