-
Archives
- August 2010
- June 2010
- May 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
-
Meta
Category Archives: Unresolved problems
Command line-like string manipulation
I need to convert this: –foo -a –foobar=”Hey there” –lol=laugh -dw randomtext texttext Into this: $switch = array (‘-a’ => true, ‘-d’ => true, ‘-w’ => true); $parameter = array (‘foo’ => true, ‘foobar’ => “Hey there”, ‘lol’ => “laugh”); … Continue reading
Perl IRC Bot
I tried using EggDrop, but couldn’t seem to get that working well (at all). So I decided meh! I’ll just make my own! So I started. After researching, I found an O’Reilly tutorial on how to make an IRC bot … Continue reading
Posted in IRC, Programming, Unresolved problems
Leave a comment
Encoding problems
On localhost this script for really simple currency conversion works fine. When it’s live on the over hand the £ symbol is making it all iffy. It’s obviously being uploaded as the correct symbol, but I guess it’s not the … Continue reading