Page 2 of 2

Posted: Fri Feb 10, 2006 9:32 am
by hawleyjr

Code: Select all

if($os != 'linux')
sleep(100);

Posted: Fri Feb 10, 2006 9:33 am
by neophyte
:lol: :lol: :lol:

As far as open source php code goes: GOOP Gallery which recently got added to Sourceforge. I've modularized the code recently and am working on adding different types of galleries besides table based.

Posted: Fri Feb 10, 2006 10:00 am
by josh
A map interface using flash on the frontend / PHP & GD to generate the maps themselves, all with draggable interface similiar to google maps. This won't go live for another month.

Posted: Fri Feb 10, 2006 10:10 am
by neophyte
That's awesome! When it goes live please post a link I'd love to see it!

Posted: Fri Feb 10, 2006 3:17 pm
by josh
Will do :D

a couple people here even got to play with it when I was in the very very early stages of development

Posted: Fri Feb 10, 2006 4:06 pm
by pickle
The file gallery program I use on my website. It's 100% file based so there's no database overhead. It's not finished yet either, but it works well.

Posted: Fri Feb 10, 2006 6:09 pm
by alex.barylski
Where to start... :)

Being a hobbyest for most of my life has allowed me to venture off into some pretty cool code...much of which is never finished....but nonetheless quite cool :)

I have some old code floating around which attempts to render HTML...

Structured document rendering...is a pretty tricky subject - you wanna experience recursion...try that :)

Publicly I have the following code posted on the codeproject... :)

I used some very non-traditional techniques to accomplish the hyperlinking effects in this textbox...really had to play around with the way messages work, etc...because all of this was uncharted territory - for me atleast...I couldn't find anything on MSDN or anything...so I experimented until something worked...which in itself was a challenge :)

http://www.codeproject.com/editctrl/mul ... t.asp#xxxx

Oooooooooooohhhh :P

Cheers

Posted: Fri Feb 10, 2006 8:24 pm
by neophyte
Pickle, I like your site. Big laughs in the funny stuff... :lol: :lol:

Posted: Fri Feb 10, 2006 9:48 pm
by Benjamin
Hockey wrote: Structured document rendering...is a pretty tricky subject - you wanna experience recursion...try that :)
Are you talking about opening and closing html tags? That is what my code does in the first post. It was a PAIN to make.

Posted: Sat Feb 11, 2006 9:58 am
by nickvd
agtlewis wrote:
Hockey wrote: Structured document rendering...is a pretty tricky subject - you wanna experience recursion...try that :)
Are you talking about opening and closing html tags? That is what my code does in the first post. It was a PAIN to make.
I'm fairly sure that he meant, doing the actual rendering of the page (think ie/ff)

Posted: Sat Feb 11, 2006 4:54 pm
by alex.barylski
nickvd wrote:
agtlewis wrote:
Hockey wrote: Structured document rendering...is a pretty tricky subject - you wanna experience recursion...try that :)
Are you talking about opening and closing html tags? That is what my code does in the first post. It was a PAIN to make.
I'm fairly sure that he meant, doing the actual rendering of the page (think ie/ff)
You are correct...rendering as in drawing the HTML :)