irclog2html for picogui on 2002.10.27

00:08:34merlin262woa, nickserv is mean!
00:09:07file[laptop]wb
00:09:13merlin262wb darth_iBook
00:10:10darth_iBookhi merlin262
00:10:17darth_iBookstupid connection keeps getting closed
00:10:57file[laptop]reminds me of my NAT software problem
00:11:14darth_iBookdunno why athenairc keeps kicking me
00:11:58darth_iBookthinks he's too tired to do any homework
00:12:03darth_iBookcapoeira wore me out today
00:12:11file[laptop]is glad he has no homework
00:12:20merlin262now, to write another linked list for the 400000000000000000x, or find a c library to handle such things
00:12:22merlin262such choices
00:15:25scanlineEh.. there are C libraries for such things, but for something as simple as a linked list I see little point to it
00:16:37merlin262tr00, but I kind've like to have such a c library
00:16:40merlin262but not glib
00:16:41merlin262i hate glib
00:25:17merlin262scanline ever seen the 10 commandments for C programemrs?
00:25:22scanlinenope
00:25:28merlin262http://herd.plethora.net/~seebs/c/10com.html
00:25:33file[laptop]the water... it burns!!!
00:25:33merlin262it's 1/2 funny 1/2 serious
00:26:05scanlinehmm.. wonder if valgrind can substitute for lint :)
00:26:31file[laptop]LOL
00:27:15scanlinehehe
00:28:07scanline"radical new blessing of ``prototypes''"
00:28:10scanlinewonders how old this is
00:28:44merlin262it's pretty old
00:30:45merlin262As demonstrated by the deeds of the Great Worm, a consequence of this commandment is that robust production software should never make use of gets(), for it is truly a tool of the Devil.
00:30:47merlin262hehe
00:30:56scanline:)
00:31:55scanlinehmm..  One True Brace Style
00:32:03scanlineWhich one was the original K&R style?
00:32:19merlin262void foo()
00:32:20merlin262{
00:32:24scanlinebah
00:32:24merlin262if(i == 0) {
00:32:26carpman``All the world's a '386'' (this latter being a particularly revolting invention of Satan)
00:32:32carpmanhehehe
00:32:33carpmanis back (gone 05:08:42)
00:32:37scanlinehi carpman
00:32:41carpmanhey scanline
00:33:00carpmanmerlin262: I dont care what K&R used, I use if(i==0){
00:33:33carpmanI've done it that way for so long, its harder for me to read/write it the other way
00:33:34scanlineif (!i) {
00:33:38merlin262I believe K&R say that function calls should have braces on a new line, with if/for/etc.. on the same line
00:33:42merlin262see above ^^^
00:34:35scanlineI usually adapt to whatever style the author used when I'm contributing to someone else's project, but I have trouble writing in any but my own style for my projects
00:34:46merlin262I always use K&R formatting
00:34:54merlin262scanline: yours in pgserver is closest to K&R
00:35:34scanlineI do functions and spacing between operators differently though
00:36:11scanlineI also tend to utilize (abuse?) the fact that NULL==0 and there's an implicit !=0 in conditions
00:36:35scanlinefor (p=list;p;p=p->next) {
00:36:36scanline:)
00:36:45carpmanthat is not abuse, for null shall always be 0
00:37:04scanlinemerlin262: have you read my video driver code yet? there's some funky stuff in there
00:37:04carpmanAnd I'll lynch the first person to say it should be otherwise.
00:37:18scanlinehehe
00:37:19merlin262yea, I know scanline
00:37:26merlin262punches scanline for his headache.
00:37:29scanlinehaha
00:37:31carpmanlol
00:37:43merlin262scanline: if you want a lint, use splint
00:37:57merlin262http://lclint.cs.virginia.edu/
00:38:04scanlineSome things are hard to understand no matter how they're formatted
00:38:06merlin262it's very useful, and will pick up bugs you didn't know existed
00:38:26scanlineapt-gets it
00:38:39scanline     *d = (((c>>16) + atab[or | (or >> 5)] ) << 8) & 0xF800 |       \
00:38:40scanline          (((c>>8)  + atab[og | (og >> 6)] ) << 3) & 0x07E0 |       \
00:38:40scanline          (( c      + atab[ob | (ob >> 5)] ) >> 3) & 0x001F;        \
00:38:54scanlineyay for alpha blending one-liners
00:39:13scanlineor was it my loop style that gave you a headache?
00:39:19scanline    for (;h;h--,src+=(srcbit->pitch>>1),dst+=(FB_BPL>>1))
00:39:19scanline      __memcpy(dst,src,w<<1);
00:40:10scanlineooh, this is a nice one:
00:40:14scanline      for (iw=char_pitch,d=dline,xpix=0;iw;iw--)
00:40:14scanlinefor (bit=8,ch=*(chardat++);bit;bit--,ch=ch<<1,(u8*)d+=FB_BPL,xpix++) {
00:40:15scanline  if (ch&0x80 && xpix>=xmin && xpix<xmax)
00:40:15scanline    *d = c;
00:40:15scanline}
00:40:27merlin262lol
00:40:29carpmanAHHHH!!! My BRAIN!!!
00:40:41merlin262just for fun
00:40:46merlin262runs splint on x11 video driver
00:41:12scanlineruns it on linear16
00:41:58carpmanscanline: FYI: picogui.org/download/zelda.png has NO XML incompatible charaters in it.
00:42:18carpmanwhich totaly fecks me up, because I used it to test AoF's XML-RPC system. :)
00:42:35scanlines/png/jpeg/ ?
00:42:41carpmanerr, yeah
00:42:41scanlinehehehe
00:43:08carpmanit uploads and downloads fine, but try any other image, and you get a protocol error :P
00:43:17scanlinehehe
00:43:46carpmanno I have to put binary-clean-up code in
00:43:49scanlinehttp://picogui.org/scrshots/20021026_lucid.png <-- nice big one that probably has lots of funny characters
00:43:54carpmans/no/now
00:45:16scanlinemerlin262: splint barfs on the GCC extensions in the glibc headers on this system
00:45:35merlin262yea...
00:45:55merlin262it doesn't like linux/asm stuff
00:45:56merlin262:/
00:46:01scanlinetries flawfinder instead
00:47:07scanlinebah.. flawfinder only gives sissy warnings
00:47:24scanline"strlen: Does not handle strings that are not \0-terminated (it could cause a
00:47:25scanline  crash if unprotected)."
00:49:20merlin262nxpackage.c:106:6: Test expression for if not boolean, type int:
00:49:20merlin262                      feof(readFile->fp)
00:49:25merlin262Lint is very unforgiving
00:50:12scanlinehmm.. especially since C doesn't even have real booleans :P
00:52:07merlin262I'm almost finished with the core of my package manager blieve it or not
00:52:14scanlinecool
00:52:21merlin262It's SOOOO fecking short
00:52:39scanlinefelt the same way about the "core" of picogui back in the day ;)
00:53:01merlin262It's structured a lot like picogui
00:53:07merlin262all things are modules
00:53:31merlin262all the core does is setup the different drivers, and provide a backbone for handling packets
00:53:32scanlinePicoGUI wasn't originally designed to be modular, but it's definitely moving in that direction
00:53:46file[laptop]the PicoGUI way: start stuff you'll never finish
00:54:02merlin262PicoGUI will get there
00:54:05merlin262will see to it
00:54:11merlin262After all, I FIANLLY finished sasteroids
00:54:11scanlinefile[laptop]: open source projects never really finish
00:54:12merlin262w00t w00t
00:54:25file[laptop]scanline: yes yes yes
00:54:28scanlinewell, at least not big ones
00:54:37merlin262there's a lways bugfixes, feature enhancements
00:54:46merlin262but you could say Apache is finished
00:54:47merlin262etc...
00:55:05file[laptop]Apache is fun, anybody try 3.x yet?
00:55:05scanlineI'd say it's "working" rather than "finished"
00:55:37scanlinedoesn't do much web stuff
00:55:40file[laptop]wait
00:55:41file[laptop]2.0
00:55:44file[laptop]I meant 2.0!
00:56:01scanlinelikes gcc 3.x :P
00:57:03merlin262ponders working on a extendedC library w/ this project
00:57:26merlin262can't find one. :(
00:57:30scanlinecall it C+++
00:57:39scanlineor ++C
00:57:40merlin262No! This is pure C, no C++ crap for this
00:57:52merlin262++C would work
00:57:53merlin262hehe
00:58:29scanlineyou could even make a picogui client lib for it... cli_++c
00:58:50file[laptop]ponders
00:59:14file[laptop]would PicoGUI compile via Mingw...
00:59:18scanlineplays with picogui fullscreen
00:59:18file[laptop]mmm nah
00:59:32scanlinefile[laptop]: currently not mingw, but cygwin would probably work
00:59:50file[laptop]scanline: yeah
00:59:59file[laptop]mingw is more native though
01:00:14scanlineyeah, but you'd have to do a little bit of porting
01:01:08file[laptop]bah
01:04:08merlin262according to most web page, K&R style is evil
01:04:09merlin262blehhhhhhhh
01:04:25scanlinewhoa
01:04:29scanlinehttp://www.deaddreamer.com/v10/freeze/ddr_0071_sidewinderII.jpg
01:04:38scanlinedeaddreamer has new stuff
01:04:52file[laptop]why won't Hitzradio's webpage come up I wonder...
01:05:50file[laptop]I see why...
01:07:24file[laptop]ARG
01:07:26file[laptop]this is irritating me
01:07:47file[laptop]I can't visit any webpages wirelessly cause of this stupid software
01:08:38file[laptop]just goes dead
01:08:58Xentac[laptop]yay...
01:09:02carpmangrumbles and pushes file out of the top of the Central Dogma.
01:09:11Xentac[laptop]also installed xp on his laptop... in the 5gig he gave it...
01:09:30carpmanOh no! Xentac[laptop] has been contaminated!
01:09:35file[laptop]XP? NOOOOOOOOOOO
01:09:42Xentac[laptop]carpman: it came with xp on it already...
01:09:51carpmanPrep the clamps! Activate purge!!!!!
01:10:05file[laptop]I need to reset my ADSL Modem
01:10:44file[laptop]I need to restart all my computers
01:12:35scanlinewow
01:12:39scanlinehttp://www.deaddreamer.com/v10/freeze/ddr_0059_iris_deraider.jpg
01:12:41Xentac[laptop]wow what?
01:14:40scanlinelots of new stuff at deaddreamer since I looked last
01:18:49Xentac[laptop]mplayer killed my laptop...
01:19:29scanlineconverts his backgrounds collection into picogui themes
01:19:58scanlinemm.. 94MB of themes
01:41:26file[laptop]hey darth_iBook
01:41:46file[laptop]I'm tired/thirsty
01:41:47file[laptop]brb
01:42:11darth_iBookhey file[laptop]
01:46:04file[laptop]what's up?
01:46:22KeyserSozenew york, new mexico, new zealand...
01:46:42file[laptop]points to above
01:46:55KeyserSozehmm?
01:46:57file[laptop]the places where my birthday present has gone through it's long voyage
01:47:05file[laptop]gone through during it's long voyage
01:47:26file[laptop]I'm losing it!
01:47:34KeyserSozefile[laptop]: you're not making any sense.
01:48:04file[laptop]KeyserSoze: lack of caffeine.
01:49:11file[laptop]ok I'm good now
01:49:32file[laptop]KeyserSoze: it was a joke about how USPS or UPS could have routed it through those places during it's voyage
01:50:34KeyserSozeoh.  no, those were in response to the question "what's up?", which is synonomous with "what's new?".  the places have "new" in the name, hence the humor.
01:50:54file[laptop]oh ic
01:51:02file[laptop]good good
01:54:31file[laptop]listens to some DJ Doboy
01:56:28file[laptop]I'm gonna setup Apache and Perl on droid
01:56:40file[laptop]then write some scripts for basic functions (like UPS tracking, etc)
02:01:24Xentac[laptop]is away: going to get pizza and stuff...
02:03:10file[laptop]nah - Xitami...
02:03:14file[laptop]it's smaller
02:06:28carpmangrr... almost.. there
02:09:58KeyserSozejust noticed his 'end' key doesn't work.
02:10:11KeyserSoze'end' prints a ~, and shift-end prints a $
02:10:23KeyserSoze'home' works fine, though
02:10:35carpmanwell, enough for tonight.
02:10:38carpmannight all
02:11:06darth_iBookis so tired
02:11:11file[laptop]KeyserSoze: shoot it
02:11:15KeyserSoze'end' works in mozilla, though.
02:11:22file[laptop]darth_iBook: I don't feel well because the Pizza Hut pizza I had upset my stomach
02:11:23KeyserSozebut not in Eterm.
02:11:32KeyserSozehey, it works in xchat, too.
02:12:14darth_iBookfile[laptop]: I'm sorry, that's why I don't eat pizza hut that often
02:12:32file[laptop]darth_iBook: it was our first and last time
02:12:56KeyserSozefirst time eating Pizza Hut pizza?
02:13:07KeyserSozeare they rare in Canadia?
02:13:34darth_iBooklol
02:14:00file[laptop]well there's only 1 in Moncton, Dieppe, and Riverview
02:15:40file[laptop]we don't even have a real UPS place here - another company takes care of it
02:16:00file[laptop]instead of a brown postal type van we've got a white normal van
02:20:00JoshNet[laptop]my keyboard hit the CAT5e cable connected to my ADSL Modem
02:36:23darth_iBookwb everyone
02:53:53Xentac[laptop]is back (gone 00:18:37)
03:12:15merlin262wonders why we have daylight savings time
03:13:02file[laptop]omg your right
03:13:15file[laptop]that means it's 11:42am my time!
03:13:19merlin262that's right, tonight, turn back clocks 1 hour
03:13:32merlin262seems pointeles tho
03:13:50file[laptop]1 hour or 30 minutes?
03:13:59merlin2621 hour, always 1 hour
03:14:04file[laptop]BAH
03:14:09file[laptop]that means it's 11:13am my time
03:14:10merlin2621 hour more sleep
03:14:12merlin262=D
03:14:46file[laptop]ahhh crappy
03:17:37merlin262isn't daylight savings worthless tho
03:17:43merlin262i mean, it accomplishes, nothing.
03:17:45merlin262nawda
03:18:18file[laptop]wth
03:18:27file[laptop]the tracking info on my birthday present has been "cleaned"
03:18:38merlin262lol
03:18:40file[laptop]it doesn't even know how it was sent
03:18:45file[laptop]where it's going
03:19:17file[laptop]here - go look, http://www.ups.com/tracking/tracking.html -> 4655 0712 393
03:20:10merlin262????
03:31:46merlin262pokes scanline in the eye.
03:32:40file[laptop]GOODNIGHT!
03:32:48merlin262night file[laptop]
04:55:42captain_protonscanline: alive?
04:59:58merlin262thinks he killed him when he poked his eye.
05:00:36captain_protonmust be
05:06:30merlin262watches Red Dwarf
13:31:12file[laptop]it's 9:30am, I want to sleep - and my step-dad is on the desktop system
13:59:52carpmanw00000000000000000000000000000000t!!!!!!!!!!!!!!!!!!!!!!!!
14:00:05file[laptop]waves to carpman
14:00:25carpmanfile[laptop]: check out http://www.voidptr.org/exp/site/image.php?img=zeldatest
14:00:48file[laptop]is letting his step-dad use all his bandwidth for now...
14:00:57file[laptop]but k
14:00:58carpmanthat image is a jpeg stored on an AoF server. That image is not a file, but a data stream pushed to the webserver upon request.
14:01:03carpmanits small
14:01:20file[laptop]nice
14:01:43carpmanw00ts for joy.
14:01:47file[laptop]all your base are belong to us dude!
14:02:42file[laptop]WELL... supposed to be breakfast time but I want chicken nuggets and fries
14:03:05carpmanmarjin will be pleased, now I can make a webcomic object for AoF
14:03:15file[laptop]cheers
14:03:46scanlinehi carpman
14:03:48carpmanall he will have to do is upload the comic, and it will instantly appear on the site.
14:03:49carpmanhey scanline
14:04:05file[laptop]scanline: topic, should be sliced bread!
14:04:13carpmanooo, I saw you get the image in the AoF log >:)
14:04:14scanlinewonders why "zeldatest" gives the all_your_base image :)
14:04:26scanlinecarpman: spiffy!
14:04:29scanlinefile[laptop]: no
14:04:29carpmanbecause I was too lazy to change the key I was using :)
14:04:33file[laptop]scanline: but... bah
14:04:34scanlinehehe
14:04:40scanlinefelt really strange yesterday
14:04:49file[laptop]scanline: did you drink some bad Bawls?
14:04:51carpmanscanline: it was the espresso
14:04:51scanlineI think I'm relatively normal now though
14:05:02scanlinecarpman: I think too much espresso on an empty stomach :)
14:05:14carpmanmmm.. coffee on an empty stomach, never good.
14:05:32scanlinecarpman: I laid down about 8:00 PM or so because my head felt really weird... it didn't hurt, just felt like something was messed up inside
14:05:36file[laptop]everybody remember clocks go back an hour?
14:05:58sdh^_^heh
14:06:07sdh^_^abiwords paypal account was robbed
14:06:15carpmanI don't have to remember, its done automatically on almost all my clocks.
14:06:16file[laptop]sdh^_^: how was it robbed?
14:06:20scanlinethey had a paypal account?
14:06:23file[laptop]carpman: note the word "almost"
14:06:57scanlinefile[laptop]: oh, so that's why all my clocks are around 7:00 while my alarm clock is 8:00 :P
14:07:07file[laptop]scanline: Bingo! :)
14:07:15carpmanscanline: the cool thing about this, I can upload in any graphics format I want, but it always comes down png >:)
14:07:20file[laptop]and for scanline we've got a gift certificate to Thinkgeek.com for $5!
14:07:25scanlinecarpman: nifty
14:07:44carpmanwell, except gif. PHP and gif don't get allong.
14:08:07file[laptop]bleh
14:08:13sdh^_^i'm wondering the same thing
14:09:18file[laptop]sdh^_^: I suppose if somebody had the abiwords password they could just transfer the money out in little transactions so nobody would know
14:09:55sdh^_^yeah
14:10:15file[laptop]but Paypal could trace that if needed... mmm
14:12:11file[laptop]sdh^_^: how do you know it was robbed?
14:12:16sdh^_^its on slashdot
14:12:26file[laptop]goes to look
14:13:07file[laptop]yikes
14:14:29file[laptop]well this bites - two bathrooms and I can't use either
14:14:48scanlinepiss on a wallsocket
14:15:32file[laptop]mmm
14:16:41carpmanhaha
14:24:27JoshNet[laptop]stupid vacum cleaner
14:24:45scanlinevacuum cleaners suck, don't they?
14:24:57JoshNet[laptop]yes
14:25:04JoshNet[laptop]but also causes my ADSL Connection to drop when too close
14:52:22carpmanscanline: whats todays magic public directory number?
14:52:37scanlinepublic.cc73
14:52:53carpmanthanks
14:52:57scanlinenp
14:53:29file[laptop]bah nothing good on...
14:53:37carpmanoh, btw. The translucency thing looks awesome :)
14:53:42scanline>:)
14:53:58scanlinejust more things to distract me from real work
14:54:12carpmanis that real translucency, or faked?
14:54:16scanlinefaked
14:54:20carpmanahh :)
14:54:33scanlinethough much better than the old method of faking translucency
14:54:39carpmanyes
14:55:03scanlineReal translucency will probably first show up with a rootless directfb video driver
14:55:28scanlinethen pgserver might also be able to do real translucency itself when I redo the rendering code a bit
14:55:39carpmanhttp://www.voidptr.org/exp/site/image.php?img=voidptr_logo >:)
14:55:53scanlinehehe
14:55:58carpmanthis same method can be used to stream almost anything. Including mp3s
14:56:05scanlinecool
14:56:11carpmanI could access my mp3s from anywhere
14:57:10carpmanI could stream evangelion episodes over the LAN from my storage machine to my desktop.
14:57:23scanlinethinks about recursive divtree stack rendering
14:57:25carpmanooo... coolness
14:57:34scanlineno.. must.. fix... textbox.....
14:57:48scanlinehits himself on the head with a Magic Stick of GDB
14:57:54carpmanscanline: think of the poor neglected textbox. It WANTS you to fix it.
14:58:19scanlineI've been trying to get this same bug fixed for several days now
14:58:33scanlineis determined to fix it today
14:58:34carpmanwhats the bug?
14:58:56scanlineAfter calling document_nuke() and inserting new text, it doesn't show up or edit properly until the textbox is resized
14:59:04carpmanhmm
14:59:19scanlineit's like the divnode holding the new paragraph doesn't even exist
15:01:29scanlinecarpman: I have a plan for redoing the rendering code a bit, so that it would handle overlapping windows, translucency, or pretty much anything else... you could watch a playing video through the translucent blurred background of a dialog box if you wanted
15:01:31carpmanbbl
15:01:33carpman.away
15:03:10file[laptop]mmm
15:23:07file[laptop]testing what?
15:23:18scan[testing]textbox widget
15:23:22file[laptop]oh
15:23:25scan[testing]wow, I can type without it crashing now
15:23:38scan[testing]hmm..... really close
15:24:36scan[testing]yay
15:24:41scan[testing]bah
15:26:18merlin262yay!
15:26:27scanlinemorning merlin262
15:27:55scanlineSo, so you think you can tell
15:27:58scanlineheaven from hell
15:28:03scanlineblue skies from pain
15:28:09scanlinecan you tell a green field
15:28:11scanlinefrom a cold steel rail
15:28:17scanlinea smile from a vail
15:28:20scanlinedo you think you can tell
15:28:34scanlineforgot how good pink floyd can be for coding
15:29:40merlin262introduces more bugs into the textbox widget!
15:29:50scanlinewe're just two lost souls swimming in a fish bowl
15:29:51scanlineyear after year
15:29:54scanlinemerlin262: die!
15:30:19file[laptop]if ( 1 ) { use( OLD_TEXTBOX_WIDGET ); }
15:30:33scanlinekills file too
15:30:57file[laptop]spawns a new process
15:31:12scan[hmmm]testing...
15:31:13scan[hmmm]wow!
15:31:22file[laptop]fixed good?
15:31:23scan[hmmm]mwa ha ha ha
15:31:30scan[hmmm]well, xchat works again
15:31:38file[laptop]good good
15:31:42file[laptop]screenshot?
15:32:02scan[hmmm]soon.. I want to fix a small bug in the freetype code first
15:32:08file[laptop]k
15:32:21file[laptop]WELL
15:32:35file[laptop]what to do... I just don't know
15:36:01scanlineis hungry
15:36:53file[laptop]I can either write up my internal LAN system ( local UPS tracking / whois lookups / RIPE database access / etc ) or code
15:42:59file[laptop]decides to delete an old Windows install and then code
15:53:31file[laptop]scanline: fix that bug yet?
15:53:59scanline:P
15:55:38file[laptop]listens to some Trance while he annoys scanline
15:55:50file[laptop]sweet - TerraSurf compiled without needing any further modifications
16:10:56scanlinePicoBot: seen gonkulator?
16:10:56PicoBotgonkulator was last seen on #picogui 19 hours, 18 minutes and 54 seconds ago, saying: actually, time to put the iBook to sleep [Sat Oct 26 14:53:00 2002]
16:22:59file[laptop]hrms
16:25:29file[laptop]scanline?
17:22:09sdh^_^as far as you take me, thats where i believe
17:31:24sdh^_^hmm
17:31:26sdh^_^picobot bounce!
17:31:26PicoBotsdh^_^: i'm not following you...
17:31:33sdh^_^picobot jump!
17:31:33PicoBotsorry sdh^_^, this is strictly a "no jumping" channel
17:31:40sdh^_^PicoBot: bah you're no fun
17:31:40PicoBotsdh^_^: sorry...
17:51:54hikkePicoBot: Zap!
17:51:54PicoBothikke: excuse me?
17:51:58hikkeBlah
17:52:07hikkePicoBot: poke
17:52:07PicoBotcries
17:52:11hikkePicoBot: poke poke
17:52:11PicoBotquit that!
17:52:19hikkePicoBot: poke poke poke
17:52:19PicoBotSTOP POKING ME
17:52:27hikkePicoBot: poke poke poke poke
17:52:27PicoBotstarts poking back!
17:52:34hikkeaagh
17:52:39hikke(bored)
17:56:05file[laptop]hi prpplague
17:57:21prpplaguelo
18:02:49file[laptop]prpplague: what's up?
18:03:25prpplaguegetting ready for phase two of the switch over
18:03:31prpplaguegonna be a long night
18:05:32file[laptop]frowns
18:05:40file[laptop]at BS&T Direct Commerce?
18:07:58prpplaguefile[laptop]: yep
18:08:07prpplaguefile[laptop]: you do a dig on that?
18:08:25file[laptop]prpplague: nah went to ARIN's homepage and did a whois on your IP
18:08:35prpplagueARIN's ?
18:09:09file[laptop]http://www.arin.net/
18:11:34Ahnkanascanline: food?
18:11:48Ahnkanascanline: ask michael too, would you?
18:12:48prpplaguethat was interesting
18:13:02prpplaguefile[laptop]: thanks, i was unaware of that site
18:14:50file[laptop]prpplague: hehe
18:14:59file[laptop]prpplague: ARIN is for the Americans, RIPE is for Europe and stuff... and there's another
18:15:36file[laptop]it'll usually point you to the right place if you put in an IP that won't work there
18:24:11gonkulatorcrap....
18:24:19file[laptop]what
18:24:26gonkulatormy work connection...
18:27:12gonkulatorPicoBot: seen carpman
18:27:13PicoBotcarpman was last seen on #picogui 3 hours, 25 minutes and 40 seconds ago, saying: .away [Sun Oct 27 08:02:31 2002]
18:27:26gonkulatorPicoBot: seen scanline
18:27:26PicoBotscanline was last seen on #picogui 2 hours, 16 minutes and 31 seconds ago, saying: PicoBot: seen gonkulator? [Sun Oct 27 09:11:54 2002]
18:27:39gonkulatorhehehehe
18:27:49gonkulatorPicoBot: seen Xentac
18:27:49PicoBotXentac was last seen on #picogui 19 hours, 2 minutes and 7 seconds ago, saying: is away: not here [Sat Oct 26 17:26:40 2002]
18:27:56prpplaguefile[laptop]: lol, do a google on "bs&t" and barbados
18:28:27file[laptop]lol
18:29:04file[laptop]Barbados Shipping & Trading... mocking me!
18:29:09gonkulatorprpplague: %blow <---- Type that ata  comand prompt
18:29:40prpplaguegonkulator: sorry command not found :)
18:29:48gonkulator?
18:30:01gonkulatorit should say "blow: no such job"
18:30:12gonkulatortry bash...
18:30:48prpplagueoh you didn't say bash, i was on ksh
18:31:03gonkulatorheh, try bash
18:31:13gonkulatorthinks tcsh will do that too
18:31:49gonkulator[propellant:~] brandon1% %blow
18:31:49gonkulator%blow: No such job.
18:31:50prpplaguegonkulator: ha funny
18:32:15prpplaguenothing like geek humor
18:32:25gonkulatoruh huh
18:32:40gonkulatorprpplague: I told you about the christmas/halloween joke right?
18:32:56prpplaguegonkulator: no, i've been a little out of touch the last few days
18:33:04gonkulatorOH
18:33:19gonkulatoryou know why geeks can't tell the difference between Halloween and Christmas right?
18:33:32gonkulatorbecause OCT 31 == DEC 25
18:33:46sdh^_^heh
18:34:02sdh^_^man this is cool
18:34:10gonkulatorsdh^_^: where did fraggle go?
18:34:14sdh^_^i had an urge for pizza but all the pizza places are closed
18:34:20sdh^_^because its sunday
18:34:25sdh^_^so i made toasted pizza sandwich
18:34:25gonkulatorok...
18:34:30gonkulatorooooh
18:34:31gonkulatorbbiab
18:34:53file[laptop]sdh^_^: don't talk about food...
18:35:07sdh^_^like a cheese and pepperami sandwich toasted
18:35:20file[laptop]I don't want that so it's ok
18:36:20gonkulatorlacking pepperoni sliced up a hot dog and lacking bread used a tortilla
18:36:45sdh^_^yay
18:37:54sdh^_^actually i bet pizza sandwich could be a really cool snack food
18:38:07sdh^_^all the goodness of pizza with all the convenience of a sandwich
18:38:21sdh^_^i'll make millions!
18:38:24gonkulatorthey call them "bagel bites"
18:38:30gonkulatorand they have made millions
18:38:32file[laptop]I love those
18:38:36sdh^_^heh bah
18:38:44file[laptop]they're really good
18:44:24scanlinehmm
18:44:46gonkulatorhi scanline
18:44:53gonkulatorpokes prpplague
18:44:58scanlinehi
18:47:05gonkulatorscanline: send Dan an email telling him that he has to go with us to Durango next weekend
18:47:16gonkulatorI tried to convince him yesterday, and he wouldn't say "OK"
18:47:19file[laptop]Durango, Unknown - Please clarify.
18:47:26gonkulatorfile[laptop]: hush
18:47:34file[laptop]gonkulator: Confirmed.
18:53:22prpplagueis busy formatting the Sub Class Os box (aka SCO)
18:53:27prpplagueis busy formatting the Sub Class Os box (aka SCO)
18:56:56gonkulatoroh, o
18:57:14gonkulators/, o/, ok/
18:57:42gonkulatorprpplague: did you like my joke?
18:59:27prpplaguegonkulator: lol, ya i'd heard that one before, just forgot it
18:59:35gonkulatoroh, ok
18:59:46gonkulatorforgot it a long time ago
18:59:48prpplaguegonkulator: my son knows the alphabet and its ascii value
19:00:26gonkulatorprpplague: you must be a proud father
19:00:48prpplaguegonkulator: no till he can do it in hex too
19:01:42gonkulatorprpplague: but for other reasons too, you should be a proud father ;)
19:02:02prpplaguegonkulator: lol, i am of course
19:02:14gonkulatorhehehehe
19:02:16prpplaguegonkulator: however i doubt he will do anything in computers
19:02:24gonkulatorhow old is he?
19:03:01prpplague5
19:03:12gonkulatorooooh, fun
19:03:18gonkulatorremenbers when he was 5
19:03:34prpplaguegonkulator: when was that? a couple of years ago?
19:04:05gonkulator14 years...
19:06:31merlin262why is it when Microsoft releases 10 year old tech, it's hailed as the next coming?
19:07:05gonkulatormerlin262: marketing
19:09:54DevGirl[out]hello!
19:10:02gonkulatorhi DevGirl[out]
19:10:05file[laptop]hi DevGirl, how's the little one?
19:10:31DevGirlbumping, all the time
19:10:34DevGirl:)
19:10:36file[laptop]:)
19:10:43merlin262hi DevGirl
19:10:50merlin262file[laptop] has a laptop now?
19:10:58merlin262Am I the only person that doesn't have a laptop
19:11:01merlin262goes off to shoot himself.
19:11:16file[laptop]merlin262: I've had a laptop for awhile
19:11:22file[laptop]a few months
19:11:23gonkulatormerlin262: probe doesn't have a working laptop
19:11:41gonkulatormerlin262: I have had a laptop since my junior year of High School
19:11:44merlin262w00t! I'm not alone!
19:11:52merlin262I had a laptop, a couple years ago
19:11:59merlin262486 dx 100
19:12:17gonkulatorhas an iBook, just like carpman and scanline
19:12:19Xentacis back (gone 16:37:06)
19:12:25gonkulatorhi Xentac
19:12:30merlin262hi Xentac
19:12:33DevGirlhi, Xentac
19:12:34Xentachehehe... 16 hours... that's what happens when you stay the night at a friend's place...
19:12:43file[laptop]Xentac: lol
19:13:06gonkulatorXentac: you need to go to a friend's place that has bandwidth
19:13:43gonkulatormerlin262: here is what I think you should do
19:13:51Xentacgonkulator: I was! didn't you see Xentac[laptop]?
19:14:02Xentachi everyone who said hi to me
19:14:13DevGirlhiya, darth_balls
19:14:18darth_ballshola DevGirl
19:14:28darth_ballsgreetings all
19:14:31gonkulatormerlin262: register as an apple developer (free) and use the discount to get an iBook or a Powerbook
19:14:32gonkulatorhey darth_balls
19:14:46merlin262gonkulator how much of a discount?
19:15:06gonkulatormerlin262: it is significant... like maybe 30%
19:15:16darth_ballsooh
19:15:18darth_ballsthat is a lot
19:15:28file[laptop]merlin262: you know you wanna now
19:15:43darth_ballsloves his iBook
19:15:55file[laptop]hugs his Thinkpad
19:16:03DevGirlwould like to have a laptop
19:16:04gonkulatordarth_balls: dan told me that Apple is going to be releasing a G4 iBook in january
19:16:13darth_ballsreally??
19:16:13gonkulatorI am going to get one in March if they do release one then
19:16:14darth_ballscool
19:16:21darth_ballsI wish I could get one
19:16:27darth_ballsbut my little G3 is nice anyway
19:16:30gonkulatoris looking forward to the upgrade
19:16:44gonkulatormy iBook is nice, but I want movie editing power
19:17:07merlin262$11/mo
19:17:07darth_ballsI still want one of the dual processor towers, though
19:17:08merlin262hmmm
19:17:17scanlinethinks it's funny how apple makes everybody think they need to edit movies, and to use their iSoftware to do so :)
19:17:24darth_ballshehe
19:17:37gonkulatorscanline: I would be editing stuff for pay
19:17:56scanlinegonkulator: no offense, but I haven't known you to be the most artistic
19:17:58Xentacneeds a movie to be able to edit it...
19:18:02file[laptop]lol
19:18:06merlin262wouldn't mind an ibook
19:18:12merlin262ponders
19:18:19gonkulatorscanline: have you read my poetry
19:18:30gonkulatorscanline: I am very autistic
19:18:35scanlinegonkulator: hehe
19:18:49scanlineis just going by the things he's seen gonkulator draw
19:18:58scanlinegonkulator: you can make quite a mess given the right tools ;)
19:19:09gonkulatoroh jeez..
19:19:36merlin262hrm...
19:19:39merlin262I hate being broke
19:19:42merlin262looks at $5
19:20:35gonkulatoris saving up
19:20:43gonkulatoralso wants a mobile gaming machine
19:21:27merlin262hehe
19:21:28scanlinegonkulator: game boys aren't that expensive
19:21:36darth_ballshehe
19:21:39gonkulatorbut I want to play WC3
19:21:44merlin262lol
19:21:49file[laptop]so? port WC3 to Gameboy!
19:21:54file[laptop]:)
19:21:56gonkulatorfile[laptop]: you do it
19:22:07file[laptop]gonkulator: I don't have the equipment, scanline does :)
19:22:19gonkulatorfile[laptop]: why don't you buy the equipment
19:22:24gonkulatorgame boys are cheap
19:22:40file[laptop]the memory card and stuff...
19:22:56file[laptop]gameboys are $120 here
19:23:03gonkulatorbuild one
19:23:15gonkulatorget an old one off of ebay
19:23:25Xentacgeez... is this like, "I'm going to clash with everyone day"?
19:23:33gonkulatorXentac: yep
19:23:44file[laptop]gonkulator: you get an old one off EBay!
19:23:54Xentachas an old one...
19:24:02Xentacone of the originals... before they were even different colours!
19:24:25Xentacit's not exactly in the best of shape any more... there is at least one vertical line that never lights up...
19:24:29DevGirlwould like to have a game boy... but it's expensive, here
19:24:46file[laptop]DevGirl: an emulator will have to do?
19:25:16DevGirlhad an emulator, once
19:25:46gonkulatorconsiders going to the basement to play UT2003
19:25:57Xentac"she died, she died... Mother said she was sleeping... she lied, she lied... why oh why did my emulator die why couldn't it have been me instead?
19:25:59Xentac"
19:26:16file[laptop]Xentac: are you ok?
19:26:28Xentacfile[laptop]: it was a simpsons quote... that was Xentac-ified
19:26:30gonkulatorfile[laptop]: its a song
19:26:41file[laptop]o.k.
19:29:34file[laptop]oof
19:31:29darth_ballsXentac: which episode was that?
19:31:59Xentacdarth_balls: Lisa was going to help Homer do something... but he had to listen to her poem first... I don't remember...
19:32:15darth_ballsI think I vaguely remember that one
19:32:28darth_ballsIf I've seen it I've only seen it once
19:32:49Xentacnods.
19:32:57darth_ballsmy friend jon would know
19:33:05XentacI can just remember quotes... I can't really remember the rest of the episodes...
19:33:11darth_ballswhat was the real word the you replace w/ "emulator"?
19:33:24Xentachamster
19:33:32darth_ballsok
19:33:39XentacI once had a hamster named fluffy
19:33:46darth_ballsI've never had a hampster
19:33:49darth_ballsonly fish and dogs
19:33:52darth_ballsand an iguana once
19:33:53Xentacme neither
19:34:13Xentacis away: cleaning and probably being beaten up
19:34:19gonkulatorremembers the iguana
19:34:39gonkulatordarth_balls: what about cats?
19:37:01darth_ballsnope
19:37:08darth_ballsboth my mother and I are very allergic to them
19:37:13darth_ballsplus, I don't really like most cats
19:37:13gonkulatorbrothers?
19:37:47darth_ballswhat??
19:38:37darth_ballsgonkulator: were you talking to me?
19:38:57gonkulatordarth_balls: only if you think so
19:39:03darth_ballsdoesn't know what to think
19:39:05gonkulatordarth_balls: younger brothers are sometimes like pets
19:39:08darth_ballsoh
19:39:17darth_ballsno, Kyle is definately not like a pet
19:39:23gonkulatoroki
19:39:31darth_ballsbut he is my younger brother
19:39:36darth_ballsso I suppose the answer is yes
19:39:43gonkulatorok
19:40:00gonkulatorisn't st0ned, but he feels like he is
19:40:02DevGirlloves cats :)
19:40:13DevGirlwill adopt a kitty
19:40:26DevGirlK I T T E N :D
19:41:08darth_ballsDevGirl: lol
19:41:24gonkulatorhello kitty...
19:41:34darth_ballsI really like kittens, too bad they grow up to be cats
19:42:07DevGirlmew.
19:42:26darth_ballsoffers DevGirl a saucer of milk
19:42:36gonkulatorreally likes sleep
19:42:47gonkulatordecides that sleep is a good idea
19:42:56gonkulatornight everyone
19:43:12gonkulatoris away: sleepy time
19:44:21DevGirldrinks the milk
19:44:33DevGirlI'm still hungry >:)
19:44:44darth_ballsyeah, but at least now you won't destroy the world ;)
19:44:46darth_ballsI hope
19:45:50darth_ballshey, what pgm can I get to convert cd's to mp3?
19:45:57DevGirlis the evil :D
19:46:17darth_ballsthinks that DevGirl isn't "the evil" just pregnant ^_^
19:46:45DevGirlwants to eat!!!
19:46:59DevGirlis "the pregnant evil" >;)
19:47:09darth_ballsthat's frightening
19:47:28DevGirl:D
19:47:41darth_ballsI still need a program to convert my cd's to Mp3
19:47:45darth_ballsanyone have any suggestions?
19:48:04DevGirlI don't know how to do... :P
19:48:21darth_ballsfile[laptop]: you still here?
19:48:32file[laptop]yes
19:48:38darth_ballsany suggestions?
19:48:44file[laptop]darth_balls: negative
19:48:55darth_ballsoh well
19:49:08darth_ballsguess I'll have to do it "the old fashioned way"
20:06:46merlin262I've never been so happy to see a program generate an error message before! w00t w00t!
20:20:55merlin262wb scanline
20:20:57merlin262wb KeyserSoze
20:21:12merlin262is getting a BEUTIFUL error msg now!
20:21:23scanlinehi merlin262
20:21:25carpmanis away: I'm busy
20:21:27sdh^_^heh
20:21:28carpmanerr
20:21:30carpmanis back (gone 00:00:04)
20:21:40carpmanmerlin262: all that higher math getting to you?
20:21:46file[laptop]cheers
20:21:52merlin262See: [NxPak] PktFindDriver: Bad or Undefined Packet Type
20:22:08^_sdh_^look! wings!
20:22:16merlin262shoots ^_sdh_^
20:22:24scanlinethem texans and their guns...
20:22:43carpman^_sdh_^: you must have violated his airspace.
20:22:58^_sdh_^is #picogui a no fly zone
20:23:02^_sdh_^PicoBot: jump
20:23:03PicoBotsorry ^_sdh_^, this is strictly a "no jumping" channel
20:23:07file[laptop]can't talk.. english teacher will give me 0/10...
20:23:23merlin262wonders if one can use swab on the same memory address...
20:23:30^_sdh_^cant sleep.. english teacher will eat me...
20:23:30merlin262goes over to #c
20:23:44carpmanshoots merlin262
20:23:51carpmanoh wait
20:23:59carpmanI read that as c#, sorry.
20:24:22^_sdh_^c#!
20:24:35merlin262c#! w00t!
20:24:56^_sdh_^c#! microsoft rlz!!
20:25:13carpmanshoots ^_sdh_^
20:25:27merlin262bah! no answer from #c
20:26:08^_sdh_^what is the question
20:28:25scanlineoh my has the world come to an end? programming-related talk in #picogui!
20:29:28KeyserSozescanline: don't worry, the programming isn't related to picogui.
20:29:56scanlinecaptain_proton: boo
20:30:01captain_protonjumps
20:30:08file[laptop]mmm
20:30:26scanlineSorry captain_proton, this is strictly a "no jumping" channel
20:31:04merlin262scanline: do you know if its safe to use swab with the same memory address?
20:31:52scanlinewhy are you using swab?
20:32:09merlin262reading in a binary file on both Macs and PC's
20:32:15merlin262Macs need to swab
20:32:15scanlineoh.. that's bad
20:32:34scanlinefor endian independence, use the ntohs and friends
20:33:08scanlinentohs converts shorts from network to host byte order, htons converts shorts from host to network, htonl converts longs from host to network, etc.
20:33:29scanlineNetwork byte order is big endian, so on big endian machines they're a no-op, but the libc headers handle that for yo
20:33:31scanlines/yo/you
20:33:56scanlinethey're in netinet/in.h
20:34:16merlin262only  BSD 4.3 tho
20:34:28merlin262swab: SVID 3, BSD 4.3, POSIX 1003.1-2001
20:35:04^_sdh_^i want to run picogui on a VAX running BSD 4.3
20:35:16merlin262hehehehehe, this is for pkgmgr,
20:35:22merlin262pgserver will be worked on later today
20:35:24merlin262=D
20:35:26scanlinehtonl is part of BSD sockets, which is used on a lot of systems... and for systems that don't have them you can always define them yourself
20:35:52scanlinemerlin262: still planning on rootless by midnight? :)
20:35:59merlin262don't think so
20:36:01merlin262blehhhh
20:36:09merlin262is obsessed with his pkg mgr
20:36:14carpmanall the world is a VAX, of course.
20:36:41^_sdh_^all the world is an i386 now
20:36:44^_sdh_^no, it really is
20:36:58scanlinemy laptop must not be in this world then
20:37:17merlin262This particular heresy bids fair to be replaced by ``All the world's a Sun'' or ``All the world's a 386'' (this latter being a particularly revolting invention of Satan), but the words apply to all such without limitation.
20:37:29^_sdh_^vnc for picogui would be fun
20:37:30merlin262=D
20:37:35carpmanEvery time I think of VAX, I think "sucks".
20:37:37scanline^_sdh_^: it's on the todo list
20:37:47^_sdh_^i should have known :P
20:37:52scanlinenotes that ^_sdh_^'s name is a bit annoying to tab complete :)
20:37:55carpmanBut thats because vaccum cleaners suck...
20:38:12scanlinePicoBot: nickometer ^_sdh_^
20:38:13PicoBot'^_sdh_^' is 99.56% lame, scanline
20:38:16^_sdh_^i'm the nose on a korean smiley
20:38:30carpmanPicoBot: nickometer carpman
20:38:30PicoBot'carpman' is 0% lame, carpman
20:38:35carpmandamn strait
20:38:45scanlinePicoBot: nickometer merlin262
20:38:45PicoBot'merlin262' is 22% lame, scanline
20:38:48scanlinePicoBot: nickometer scanline
20:38:49PicoBot'scanline' is 0% lame, scanline
20:38:52merlin262blehhhhh
20:38:54merlin262I'm lame?
20:38:58gonkulatorPicoBot: nickometer gonkulator
20:38:58PicoBot'gonkulator' is 0% lame, gonkulator
20:39:00merlin262shoots PicoBot
20:39:01darth_ballsno, just your nick
20:39:05merlin262blehh
20:39:06darth_ballsand only 22%
20:39:06carpmanPicoBot: nickometer file[laptop]
20:39:06PicoBot'file[laptop]' is 0% lame, carpman
20:39:06scanlinemerlin262: What is the 262 in there for anyway?
20:39:07darth_ballsso not that bad
20:39:11^_sdh_^PicoBot nickometer PicoBot
20:39:11PicoBot'PicoBot' is 0% lame, ^_sdh_^
20:39:21^_sdh_^PicoBot nickometer "*&^$&*"^$&*9872389
20:39:21PicoBot'"*&^$&*"^$&*9872389' is 99.992438% lame, ^_sdh_^
20:39:22gonkulatorPicoBot: nickometer darth_balls
20:39:22merlin262it's a random number cause merlin was already taken
20:39:22PicoBot'darth_balls' is 14% lame, gonkulator
20:39:28scanlinePicoBot: nickometer darth_balls
20:39:28PicoBot'darth_balls' is 14% lame, scanline
20:39:28carpmanbah, the nickometer must be b0rken, file is at least 400% lame
20:39:29darth_ballshehe
20:39:30scanlineoop
20:39:39scanlinecarpman: I can have that altered :)
20:39:43darth_ballswonders why he's only 14% lame
20:40:07merlin262I've had this nic for 4-5 years now
20:40:17merlin262ponders changing it, but has no idea what too.
20:40:26file[laptop]PicoBot: nickometer file[laptop]
20:40:27PicoBot'file[laptop]' is 0% lame, file[laptop]
20:40:38merlin262PicoBot: nickometer merlin
20:40:39PicoBot'merlin' is 0% lame, merlin262
20:40:40gonkulatormerlin262: carpman got me to change my name at A-Kon
20:40:40carpmanfile[laptop]: thats obviously a mistake
20:40:54darth_ballshaha
20:40:58file[laptop]carpman: :)
20:40:59merlin262PicoBot: nickometer PicoBot
20:40:59PicoBot'PicoBot' is 0% lame, merlin262
20:41:02carpmangonkulator: as I remember, it was your idea, I just agreed
20:41:08gonkulator?
20:41:09file[laptop]PicoBot: nickometer ickysneeze
20:41:09PicoBot'ickysneeze' is 0% lame, file[laptop]
20:41:17file[laptop]PicoBot: nickometer gonkulator{lost}
20:41:17PicoBot'gonkulator{lost}' is 0% lame, file[laptop]
20:41:20file[laptop]good good
20:41:22merlin262PicoBot: merlin2
20:41:22PicoBotmerlin262: excuse me?
20:41:27merlin262PicoBot: nickometer merlin2
20:41:27PicoBot'merlin2' is 14% lame, merlin262
20:41:30merlin262PicoBot: nickometer merlin1
20:41:31PicoBot'merlin1' is 22% lame, merlin262
20:41:33carpmanFor most of a-kon tho, he was ickygonkensneezulator
20:41:36merlin262I donta get it
20:42:03gonkulatorit must have been Marjin's doing then
20:42:04scanlinemerlin262: it's a very highly complex and technical algorithm
20:42:17carpmangonkulator: kind of hard to remember, huh? :)
20:42:34gonkulatorI had gonkulator as my name in UT
20:42:41gonkulatorand I was wasting everyone
20:42:50gonkulatorso marjin said that he got "gonkulated"
20:42:53gonkulatorand then, it stuck
20:43:13darth_balls i like nate's nick in UT
20:43:19darth_ballswasted_oxygen
20:43:24gonkulatoruh huh
20:43:27gonkulatorlikes it too
20:43:33darth_ballsPicoBot: nickometer wasted_oxygen
20:43:33PicoBot'wasted_oxygen' is 14% lame, darth_balls
20:43:39darth_ballsdamn staight it is
20:43:42darth_ballshehe
20:44:45darth_ballsPicoBot: nickometer Evan
20:44:45PicoBot'Evan' is 0% lame, darth_balls
20:44:47darth_ballshehe
20:45:06gonkulatorPicoBot: nickometer Micah Jarod Dowty
20:45:06PicoBot'Micah' is 0% lame, gonkulator
20:45:19gonkulatorPicoBot: nickometer Micah\ Jarod\ Dowty
20:45:19PicoBot'Micah\' is 14% lame, gonkulator
20:45:23scanlineyou spelled my name wrong, you bastard
20:45:24gonkulatorhmm...
20:45:30gonkulatorJared?
20:45:31darth_ballslol
20:45:32file[laptop]lol
20:45:43scanlineI think it's "Jarrod"
20:45:47darth_ballsrofl
20:45:53gonkulator"I think"....?
20:45:58scanlinealmost never uses his middle name
20:46:05scanlineMy name sucks, the middle part most of all
20:46:06darth_ballsroflmao
20:46:20darth_ballsscanline: you crack me up
20:46:21file[laptop]to the Colorado EDU thingy lookup... form
20:46:50scanline"Dowty, Micah Jerrod, Student"
20:46:59gonkulatoroh, oops
20:47:03scanlinethat just looks wierd....
20:47:08file[laptop]haha
20:47:13scanlineprefers just plain "micah"
20:47:50file[laptop]or scanline?
20:48:03scanlineyeah, but not in real life
20:48:17file[laptop]hrms over having hamburgers for supper
20:48:24scanlineI always think it's weird when someone calls me "micah" on IRC or "scanline" anywhere else
20:48:31file[laptop]I bet
20:48:44gonkulatorcalles scanline scanline when we play starcraft and UT
20:48:51scanlinethat's like IRC though
20:49:24gonkulatorthought it was really funny in the wopn roll call to hear "gonkulator"
20:49:57gonkulatorand then mysticOne's way of saying it with such surprise
20:50:09file[laptop]hehe
20:50:18gonkulatorGONKULATOR???
20:50:34file[laptop]scanline: so has captain_proton been doing any of his video stuff lately?
20:50:50gonkulatorUDP network flooding is fun
20:51:03gonkulatorwould flood his network with UDP packets, but nobody would care
20:51:33gonkulatorI should upgrade to a switch from my hub...
20:52:00file[laptop]why?
20:53:06gonkulatorno reason
20:53:10file[laptop]good reason
20:54:39FraggedByNaturefile[laptop]: i've got it working with multicast, so i only flood the people who want to be flooded
20:55:26file[laptop]FraggedByNature: but that's no fun
20:55:42gonkulatorFraggedByNature: want to play some bzFlag?
20:56:30FraggedByNaturegonkulator: for a few minutes
20:57:00gonkulatordoesn't have a mouse right now
20:57:03gonkulatorjust a sec
20:58:02gonkulatorugh...
20:58:06gonkulatordoesn't have it installed
20:58:10gonkulatorn/m FraggedByNature
21:03:48gonkulatorgrows tired again
21:06:47darth_ballsthinks about doing some cow runs after he finishes this paper
21:14:36scan[pg]hmm
21:14:37KeyserSozedamnit, they came back
21:14:38KeyserSozeit was nice in here, without all the riff-raff
21:14:40KeyserSozePicoBot: nickometer riff_raff
21:14:40PicoBot'riff_raff' is 14% lame, KeyserSoze
21:14:42gonkulatorpokes PicoBot
21:14:53carpmanPicoBot: quiver like jello
21:14:53PicoBotcarpman: what?
21:14:54file[laptop]splits are nice
21:14:55scan[pg]wonders if that keyboard bug will come back....
21:15:03KeyserSozePicoBot: nickometer KeyserSoze
21:15:03PicoBot'KeyserSoze' is 0% lame, KeyserSoze
21:15:24KeyserSozeis anyone on the picogui mailing list?
21:15:25fraggletPicoBot: nickometer PiCoBoT
21:15:25PicoBot'PiCoBoT' is 99.9062% lame, fragglet
21:15:48KeyserSozei mean, is it a useful and used way of keeping up-to-date on the goings on in picogui develpment?
21:15:50gonkulatorPicoBot: eat poo
21:15:50scan[pg]KeyserSoze: about 100 people
21:15:50PicoBotmunches or something
21:16:08KeyserSozedamn, 100?!?
21:16:10PicoBot: beat it, nerd-bot
21:16:10darth_ballsibot: emulate bun-bun
21:16:32merlin262PicoBot: die
21:16:32PicoBotdies
21:16:37merlin262w00ty
21:16:43darth_ballsis sad
21:16:46gonkulatorw00ty?
21:16:50gonkulatorkills merlin262
21:16:56merlin262PicoBot: live
21:16:57PicoBotmerlin262: huh?
21:17:10gonkulatorrehubbing :)
21:17:11gonkulatorlol
21:18:04fragglethttp://klerck.org/food/
21:18:38scan[pg]hmm
21:19:37file[laptop]I've a question
21:20:29scanlineoh smegging nuts.. another segfault
21:20:50KeyserSozehas an answer, but unfortuneatly, it is to a different question
21:21:21merlin262answer to what?
21:21:43KeyserSozemerlin262: not file's question.
21:21:52merlin262kicks rehubbing
21:22:07merlin262????
21:22:08merlin262blehh
21:22:22file[laptop]how hard would it be to convert an ISA module for Linux over to a PCMCIA module?
21:22:51merlin262go to #kernel, lol
21:23:02file[laptop]ponders
21:23:15KeyserSozefile[laptop]: it'd be easier to just get a PCMCIA equivalent of your ISA card, then to try to put your ISA card in a PCMCIA slot.
21:23:18merlin262no, #linxudev, erm, ...
21:23:25scanline#kernelnewbies
21:23:33merlin262ah, scanline knows it
21:23:45file[laptop]KeyserSoze: huh?
21:24:00scanlinehehe, file[laptop] is impervious to KeyserSoze's humor!
21:24:31KeyserSozesubscribes to the picogui mailing list.
21:24:51KeyserSozefile[laptop]: do you know how to solder?
21:24:56gonkulatoris tired again
21:25:06scanlineKeyserSoze: there's not a lot of traffic on it unfortunately, since I'm the only one doing real development on it at the moment
21:25:07gonkulatorneeds sleep
21:25:12KeyserSozeredbull >> gonkulator
21:25:49file[laptop]KeyserSoze: :p
21:26:08merlin262needs 48 hour days
21:28:46KeyserSozewants an ebuild for the picogui development environment
21:30:06KeyserSozewants sloppy joes
21:30:12KeyserSozeor maybe grilled cheese
21:30:58fraggletpizza sandwich!
21:31:35KeyserSozefragglet: is that two pieces of pizza stuck together messy sides in?
21:31:40KeyserSozeor something else?
21:31:49scanlinehad some "pizza" for lunch today
21:34:08merlin262apt-get install pepsi
21:34:09fraggletno
21:34:21merlin262package pepsi requires funds
21:34:24merlin262apt-get install funds
21:34:27fragglettoasted sandwich with cheese etc on the inside
21:34:38merlin262error: funds exists in package database but is could not be found
21:35:44merlin262carpman: hacking on aof, or is that resierved for classtiem?
21:35:49KeyserSozeemerge -p sloppy-joe
21:36:11KeyserSozeThese are the packages that I would merge, in order.
21:36:11KeyserSozeCalculating dependencies ...done!
21:36:11KeyserSoze [ebuild N  ] groundbeef
21:36:23carpmanmerlin262: hmm? am I working on it?
21:36:26KeyserSoze [ebuild N  ] fryingpan
21:36:35merlin262carpman: yea
21:36:59carpmanmerlin262: I have. check out http://www.voidptr.org/exp/site/images.php?img=voidptr_logo
21:37:23carpmanthat image is not a file, but stored in an AoF server, and pushed to the client directly.
21:37:38merlin262kewl!
21:38:00merlin262my pkg manager can now read/write packages, and has support for package drivers
21:38:05carpmanmerlin262: soon I will be able to do the same thing with anything. mp3s included >:)
21:38:07merlin262s/packages/packets/
21:38:21KeyserSozeshould have said "[ebuild N  ]  ingredients/groundbeef to /"
21:38:30merlin262the only problem is, there are no packet drivers
21:38:46KeyserSozeand also "[ebuild N  ] kitchentools/fryingpan to /"
21:39:09carpmanjust calls cook.sh
21:39:51carpmancook.sh is just a script to call /usr/bin/order and /usr/bin/devour :)
21:39:54merlin262writes a script to convert ebuild files to package descriptions
21:39:57merlin262mwahahahahhahaha
21:40:04KeyserSoze./sophie.sh --get me food, woman!
21:40:27merlin262[sophie.sh] Error: Get your own food jerk.
21:40:38darth_ballslol
21:40:42carpman[sophie.sh] Error: *slap*
21:41:01merlin262lol
21:41:50KeyserSozekeysersoze --cooksloppyjoes >> sophie
21:42:13merlin262hehe
21:43:50scanlinecd sloppyjoes-1.0; ./configure --with-bbq-sauce
21:44:07carpman--with-pickles
21:44:48merlin262it occurs to me, i could modify the package manager just slightly, to support source based packages
21:45:34scanlineyep
21:46:14merlin262hugs his fiendishly clever design.
21:49:53file[laptop]mmm
21:50:14KeyserSozecrap, I forgot the pickles!
21:50:20KeyserSozegoes to the pickle store
21:57:05KeyserSozeI have a directory called "pgui-dev200020105", and in it are "apps", "cli_c", "doc", "pgserver", and "themetools".  What did I do to get that originally, and how do I get a new one?
21:57:11KeyserSozesomething to do with CVS?
21:58:08scanlinethat was a daily snapshot
21:58:47KeyserSozeis a daily snapshot a good thing to have, today?  or should I get something else?
21:58:52KeyserSozelike a release.
21:58:59scanlinethere's no release yet
21:59:16KeyserSozefound a .tar.bz2 of the latest daily snapshot!
21:59:21scanlineyou can check picogui out of CVS, which is recommended since it's easy to keep up to date, or you can download a snapshot tarball
21:59:59KeyserSozecan I check the whole shebang out of CVS in one fell swoop?
22:01:05file[laptop]hrmph
22:01:13file[laptop]I might be able to force my wireless NIC into 2mbps operation
22:01:20scanlineKeyserSoze: yes, lalo made a macro so you can use the module "picogui" to get it all
22:01:36KeyserSozeah, excellent!
22:02:09KeyserSozewonders who is more annoying to scanline, file or KeyserSoze
22:02:48file[laptop]me!
22:03:49KeyserSozeagrees, but thinks he is serious competition :)
22:04:12scanlinenah, if anything the competition is between file and Xentac
22:04:25darth_ballshaha
22:04:37Xentac was last seen on #picogui 2 hours, 30 minutes and 24 seconds ago, saying: is away: cleaning and probably being beaten up [Sun Oct 27 12:34:13 2002]
22:04:37KeyserSozeibot: seen Xentac?
22:05:18darth_ballsscanline: you mean you don't find my constant sluggy babble obnoxious? or just not as obnoxious ^_^
22:06:45KeyserSozewonders what "^" are for.
22:06:55KeyserSozesees DevGirl use them, too.
22:07:09scanlinenah
22:09:28carpmanis away: at the maul
22:10:02darth_ballsKeyserSoze: they are eyes
22:10:12darth_ballsmy understanding is that that is an anime smiley
22:10:16KeyserSozereally?
22:10:22darth_ballsya
22:10:37darth_ballsKeyserSoze: do you watch a lot of anime?
22:10:46KeyserSozeoh, a smiley.  i thought you meant eyes plucked from someone's head, and lieing on the line of text
22:10:51KeyserSozedoesn't watch any anime
22:10:55darth_ballsoh
22:11:07darth_ballsthat's part of the problem, it's easier to see if you've watched anime
22:11:24darth_ballsa lot of the females in anime close their eyes when they smile, and it looks kinda like that
22:11:48KeyserSozeooh, I can see it now.
22:11:54darth_balls^_^
22:12:16KeyserSozeis the "_" a mouth?
22:12:36KeyserSoze^:^
22:12:41KeyserSoze^.^
22:12:45KeyserSoze^o^
22:15:05file[laptop]ponders some more
22:15:13file[laptop]I must do my homework and then ponder
22:16:26KeyserSozefile[laptop]: while you're up, can you get me some sweet pickles?
22:17:43KeyserSozeemerges cvs.
22:19:49FraggedByNaturedithers
22:20:08scanlinecaptain_proton: what are you dithering at this hour?
22:20:18captain_protonscanline: a sandwich
22:21:22file[laptop]KeyserSoze: no
22:21:27file[laptop]KeyserSoze: get your pickles!
22:29:17scanlinebecomes terrified of his latest creation
22:29:43captain_protonscanline: by god, WHAT HAVE YOU DONE?
22:29:51scanlinethis coffee is STRONG!
22:29:56captain_protonooh
22:30:22scanlinewhee!
22:32:06merlin262modifies the main portion of his pkg mgr to pass through a lint check
22:32:18scanlineThere be gnomes in this here code!
22:32:19merlin262modifies lint flags to cause it to pass.
22:32:29merlin262w00t, all done.
22:32:35merlin262>:)
22:32:46scanlineyay
22:33:04merlin262is paranoid about pkgs that run as root
22:33:05scanlinedecides whether to fix some multiparagraph-related bugs in textbox, or implement some font rendering flags for it
22:33:10merlin262I don't want to make an outlook
22:33:14scanlinemerlin262: as well you should be
22:33:47scanlinehmm... one of these days we'll need to have a big security audit on pgserver
22:34:09merlin262yea
22:34:14merlin262will help w/ that. :)
22:34:20scanlinenormally it can run under a user that only has access to the framebuffer, tty, and IPC mechanisms, but for some video drivers it will need root priveliges
22:34:22scanlinecool
22:34:27merlin262my main goal w/ the pkg mgr is to not need a big security audit
22:34:57scanlinenods
22:37:22scanlineI'm pretty careful about things like buffer overflows, but pgserver could use some work on defining useful security policies
22:37:51captain_protonsecurity policy 1: don't leave the door unlocked
22:38:16captain_protonsecurity policy B: open windows are an invitation
22:39:06scanlineor even things like "This string is a passoword, it shouldn't be rendered onscreen"
22:39:40merlin262I noticed that
22:39:41merlin262hehe
22:39:50merlin262in the login application
22:40:09scanlineactually, there should be a way to mark sensitive information so it is destroyed permanently instead of just freed... so that some later app won't get a password as part of a new bitmap it allocates
22:40:24scanlinemerlin262: oh, that's because I haven't implemented the PG_WP_PASSWORD property in textbox yet
22:40:38merlin26214230 bytes so far written in my pkg manager
22:40:43merlin262a lot of that is comments tho
22:41:00scanlineapt-get install sloccount
22:41:21scanlineit will count lines of code, minus comments and such.... also amusing to see how much the author's algorithm thinks your code is worth :)
22:41:36scanlinefor pgserver:
22:41:42scanlineTotal Physical Source Lines of Code (SLOC)                = 59,012
22:41:45scanlineEstimated Average Number of Developers (Effort/Schedule)  = 9.79
22:41:46scanlineTotal Estimated Cost to Develop                           = $ 1,954,920
22:41:48scanlinehehe
22:42:43KeyserSozedamn, that's pretty good.
22:42:46file[laptop]lol
22:43:13merlin262Apparently, SDL Sasteroids is worth 81,737
22:43:34scanlineThere are a lot of comments it must be ignoring, since:
22:43:39scanline wc -l `find -name "*.c" -o -name "*.h"`
22:43:41scanline  80853 total
22:43:43KeyserSozeno ebuild for sloccount :(
22:44:20merlin262$ 253,847 <-- how much my old toolkit is worth
22:44:22merlin262roflol
22:44:51scanlinehehe
22:45:13merlin262thinks this could provide some definate amusement
22:45:47merlin262runs a check on the linux kernel.
22:47:53merlin262410 loc worth $10,594??
22:47:58merlin262thinks sloccount == stupid count
22:48:51scanlinenods
22:50:03merlin262puts down package manager, switches to pgserver
22:51:55merlin262scanline: how many people other than you understand pgserver?
22:52:07scanlinedepends on what you mean by understand...
22:52:21scanlinethere are a few other people that have worked on it, but I'm probably the only one that understands the whole thing
22:54:00captain_protonhas cheese
22:55:43merlin262writes a tga file loader
22:55:51scanlinehehe
22:56:05merlin262== looking at structure now
22:56:28captain_protontga is simple
22:56:42merlin262yes ondeedy
22:57:03captain_protonscanline: i'm progressing deeper and deeper into the depths of insanity
22:59:31scanlineyep. tga would be good for situations where you need alpha but don't want libpng
22:59:49scanlinemerlin262: I should give you CVS access
23:00:02scanlinecaptain_proton: oh no, you're watching some of that 50s sci-fi again aren't you
23:00:06merlin262let me write some code first!
23:00:07merlin262=D
23:00:09captain_protonscanline: no
23:00:24captain_protonits starting to look like actually building ide-firewire bridges is going to be the cheapest option :)
23:00:36scanlinehehe
23:00:44scanlinemerlin262: bah, that's not my style ;)
23:01:25merlin262ponders using imlib2 + other stuffs for an accellerated X driver
23:01:38file[laptop]what's the chemical formula for nickel carbonate?
23:01:59merlin262I'd like to know WTF is up w/ Rasterman
23:02:04scanlinemerlin262: what would the benefit of imlib2 be?
23:02:23scanlinemerlin262: how so? I talked to him a few weeks ago, seemed alright :)
23:02:42merlin262Constant changes to code, and impossibly hard to compile stuffs.
23:02:52scanlinehehe
23:02:54merlin262No release of Enlightenment sense.....
23:02:55merlin262erm....
23:02:59merlin2622+ years?
23:03:36scanlinehehe... sounds a bit like me. Only reason pgserver has a somewhat sane build system is because of Frederic's work
23:03:39merlin262scanline: imlib2/E libraries would allow the creation of an accellerate X server, without having to manage everything our self.
23:03:57scanlinemerlin262: I haven't done much with imlib.. what sort of rendering is it capable of?
23:04:01file[laptop]scanline: somewhat sane... haha
23:04:02darth_ballsis away: coffee break
23:04:18merlin262scanline: just about everything
23:04:44scanlinemerlin262: hmm
23:04:49scanlinelooks up some imlib2 docs
23:05:17scanlinewow!
23:05:32merlin262It's some cool stuff, but no release
23:05:34merlin262just CVS
23:05:39scanlinethat looks like exactly the feature set picogui needs
23:05:53merlin262yep
23:05:58scanlineyou could make input, video, file format, and font plugins all based on it
23:06:08scanlinespiffy
23:06:34scanlineCVS-only isn't a problem for me
23:06:50scanlinepicogui already almost requires the use of freetype from CVS
23:07:02merlin262which is blehhh. :mad:
23:07:12merlin262likes production software.
23:07:43scanlineI'm sure imlib2 and freetype will be 'production' before picogui itself is
23:07:51merlin262*** ERROR (BADPARAM) : All installed application managers failed to load
23:08:06merlin262wants his distro for Next Christmas/Winter break!
23:08:06scanlinecompile in an app manager
23:08:28scanlinemerlin262: you don't think imlib2 will be ready by then?
23:08:45merlin262perhaps
23:09:12scanlinebesides, if it's your own distro there's no problem taking a CVS snapshot and packaging that
23:09:14merlin262is worried Raster's stuff might have the development cycle of Duke Nukem Forever
23:09:25scanlineso send him an email to ask
23:09:25merlin262hmmmm... tr00 tr000
23:10:29merlin262scanline: what's this new app manager stuff?
23:11:05scanlineThe code to manage application registration is modular now. The "panel" app manager is the traditional style, "managed_rootless" is what the x11 rootless driver will use
23:11:22merlin262does it work?
23:11:28scanlineI don't know
23:11:33merlin262hehe
23:11:40captain_protonis grinning like a bastage though
23:11:43captain_protonerr
23:11:44scanlineit should handle normal apps fine, that code is really simple
23:11:48captain_protonnevermind that, wrong tab
23:11:54scanlinethere's no code for handling popups yet
23:12:57merlin262downloads latest CVS snapshot and clear off old stuff
23:13:10merlin262I think my system is getting crufty
23:13:14merlin262has a strong desire to redo it
23:14:25scanlinemerlin262: debian has an imlib2 package
23:14:35merlin262kewl.
23:14:48scanlineif debian has a package for it, that is a good metric of good-enough-ness
23:15:05merlin262tr00, tr00
23:15:21scanlinewasn't that a win32 worm?
23:18:38merlin262tr00?
23:18:40merlin262hmm...
23:18:49file[laptop]Unknown.
23:18:59scanlinenever mind
23:23:03merlin262goes for food
23:23:04merlin262bbiab
23:40:15Xentacis back (gone 04:06:02)
23:40:24Xentacwoohoo, I'm as annoying as file is!
23:41:38Xentacdecides to go and sulk in the wet room
23:42:05You_TOOso I can be a PicoGUI developer
23:42:27You_TOOhow can I get started?
23:42:28scanlineuh huh...
23:42:37You_TOOthought it would be funny
23:42:40scanlinetosses some RTFSC darts at gonkulator{lost}
23:42:51You_TOOis pretty lost too
23:47:03file[laptop]:)
23:47:23fraggletargh
23:47:30file[laptop]what
23:47:33fraggleti was almost done emerging the latest version of xfree
23:47:38fraggletand the terminal died
23:47:41file[laptop]lol
23:47:52file[laptop]what caused it?
23:48:04fraggleti'm not exactly sure
23:48:21file[laptop]well my present hasn't started to move again yet
23:48:53file[laptop]*sigh* oh well
23:49:00file[laptop]gah it's too early
23:49:57Xentacscanline: dude, if I'm that annoying just say it... and I'm gone
23:50:28fragglet?
23:50:41file[laptop]darn this TV Guide...
23:51:09KeyserSozedidn't think scanline was too serious about it.
23:51:24KeyserSozeafter all, how would someone (except maybe file) be more annoying than me?
23:51:35Xentaceasy, they could be me
23:51:42file[laptop]don't make me make it a point to be more annoying than you KeyserSoze!
23:52:39Xentachow is KeyserSoze annoying?
23:52:40file[laptop]so everybody remembered to set their clocks back an hour?
23:53:19Xentacme, I'm annoying because I just hang around... I don't contribute anything... I rarely stay on topic... I talk about things that no one else cares about... I'm just generally the odd guy out
23:53:23KeyserSozeis annoying by constantly whining about not being able to get stuff to work on his linux box.
23:53:33KeyserSozeis always off topic.
23:53:36fraggletthats ok, nobody is on topic here anyway
23:53:55KeyserSozestarted writing a picogui app about a year ago, and hasn't touched it in 6 months.
23:54:08file[laptop]whines till he actually gets stuff
23:54:20file[laptop]Xentac: that reminds me - how's that old digital camera?
23:54:21KeyserSozefile[laptop]: how's that working out for you?
23:54:22XentacKeyserSoze: check this out...
23:54:29XentacPicoBot: Xentac?
23:54:30PicoBotit has been said that Xentac is cool, and he has a cool hat... and stuff... mmmkay? or going to be having visitors in a week or obsessed with "boobies" or never written a picogui app... ever! or too big for his pants. or a happy drunk
23:54:38Xentac"or never written a picogui app... ever!"
23:54:44gonkulatorPicoBot: attract girls
23:54:45PicoBotwalks around with a cucumber in his crotch
23:54:48KeyserSozePicoBot: KeyserSoze?
23:54:48PicoBotKeyserSoze is just a love machine, and he don't work for nobody but Sophie
23:54:50Xentacfile[laptop]: still sitting here
23:55:02file[laptop]Xentac: good - I might want it... sometime
23:55:07KeyserSozelol.  i didn't think there'd be one for me.
23:55:10Xentacsure
23:55:16file[laptop]Xentac: what is it again?
23:55:41file[laptop]goes to look for drivers for no reason (he's really really really bored)
23:55:44KeyserSozeXentac: what visitors in a week?
23:56:07file[laptop]KeyserSoze: that was from when scanline and gonkulator were going to visit him
23:56:23KeyserSozeah, ought to be changed, then.
23:56:28Xentacvisitors...? huh?
23:56:34file[laptop]yeah well we're lazy
23:56:37Xentacah... yeah... that was a while ago...
23:56:45file[laptop]Xentac: now tell me the name of the camera
23:56:51file[laptop]hypnotizes Xentac
23:56:59XentacFun!Flash
23:57:49Xentacanyway... I have errands to make and family to visit with..
23:57:55file[laptop]good good
23:57:57Xentacso you don't have to worry about my annoyingness for a while
23:59:02KeyserSozeXentac: don't worry, I'll annoy everyone in your absence :)
23:59:12Xentacis away: gone... and no longer annoying anyone

Generated by irclog2html.pl by Jeff Waugh - find it at freshmeat.net! Modified by Tim Riker to work with infobot logs, split per channel and by date, etc.