topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 12:28 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: ThePrawn!  (Read 4446 times)

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
ThePrawn!
« on: January 28, 2006, 11:58 AM »
wow! i stumbled across this extremely cool page and it turns out it's allen's page!!!  :tellme:

http://theprawn.com/

some of the projects on it:
http://theprawn.com/img/?  (Image-Based Quote Randomizer - very cool; if you've noticed allen's signatures now you know what he uses to make those)
http://theprawn.com/stickml/  (come on this is cool.. markup language and rendering code for describing+generating stick figures!)
http://theprawn.com/imagiine/  (very cool online graphics generator)
http://www.protempore.org/poem/ (online collaborative poem)

allen's blog is also great - discussion of imagiine http://my.opera.com/.../blog/show.dml/58095
hope he won't mind me mentioning it here  :-[


 


allen

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 1,206
    • View Profile
    • Donate to Member
Re: ThePrawn!
« Reply #1 on: January 28, 2006, 12:21 PM »
While modest, I'd be crazy not to welcome a positive receipt of some of my projects ;)  Thanks for the kind post, mouser.

StickML is probably the most asinine thing I've ever done, it's the longest possible route to pixel image creation and I, sadly enough, enjoy it.  I've put quite a few hours into mapping images.  Maybe more hours than I've actually put into developing the StickML engine . . .  :(

imagiine can do everything .img can do -- my signature is actually imagiine, not .img -- the primary difference is how things are processed.  .img relies primarily on url encoded data (though it can also be called from a file for easier editing) -- and allows for a single instance of a function.  It's easier to quickly throw together a random quote, but fairly limited.  Imagiine on the other hand processes its commands in a linear fashion, accepting only data file configurations rather than URL based.  Instead of adding tx1 for text field 1, etc. in imagiine you just use the text function as many times as necessary and they'll be drawn in suit.  The config files are a bit more complicated than .img but you can do a lot more -- draw shapes, give alpha transparency to different elements, etc.

One project you didn't mention, that I've worked on the most the last week or two, is my web based regex find/replace utility.
http://theprawn.com/fr

I've had a terrible time working out all the kinks with escape characters, but the version I uploaded a few minutes ago might, finally, have thos bugs licked.  Quite a few people here are familiar with regex.  If anyone wants to try to find a hole in my query parser, feel free to give it a go.  Might even find it handy, you can save queries by bookmarking the save link for quick access later.


mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: ThePrawn!
« Reply #2 on: January 28, 2006, 12:30 PM »
brilliant - an online regex replacer!  :up:

allen

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 1,206
    • View Profile
    • Donate to Member
Re: ThePrawn!
« Reply #3 on: January 28, 2006, 12:55 PM »
It's prior versions were only moderately useful -- it choked with really advanced regexes and certain code and such.  My biggest problem was that I was trying to make it portable in case there was any demand for, and I decided to share, the source.  I finally gave up on portability, at least for the moment,  so it only runs if magic_quotes_gpc are disabled on the php server.  That should be a relatively easy fix if I get around to it, though.  So, I -think- everything is in order, unless of course some regex buffs can find error.  At least the obvious ones are out of the way now.