2007-04-24 Swhack IRC Log

00:19:29 *** rob1n (n=rob1n@unaffiliated/rob1n) has joined #swhack
00:21:37 *** rob1n has quit (Client Quit)
00:28:06 *** darobin has quit (Read error: 110 (Connection timed out))
00:30:09 *** Mike_L (n=leonhard@fyodor.hcoop.net) has joined #swhack
00:38:43 *** bear is now known as bear_afk
00:40:23 *** minDwarpd (n=minDscrm@dialup-4.225.84.234.Dial1.Cincinnati1.Level3.net) has joined #swhack
00:40:23 <Monty> lo minDwarpd
00:42:42 *** rob1n (n=rob1n@unaffiliated/rob1n) has joined #swhack
00:45:08 <rob1n> hi Monty
00:45:11 <Monty> Fact: Death Mountain clears up Bud_Lite's train set ;)
00:45:14 <rob1n> (about a day too late)
00:54:28 *** shawn__ has quit (Read error: 113 (No route to host))
00:55:03 *** jcowan (n=jcowan@cpe-66-108-117-254.nyc.res.rr.com) has joined #swhack
00:55:15 <jcowan> Ittywhonk!
00:55:55 <kpreid> > map succ "Ittywhonk!"
00:56:05 <swhask> "Juuzxipol\""
00:56:20 * jcowan thinks treating characters as a enumeration is kinda weird.
00:58:34 *** kpreid has quit ("storm")
00:58:49 <crschmidt> map(lambda x: chr(ord(x)+1), "Ittywhonk!") <- python
00:59:09 <crschmidt> actually, i guess, "".join(map(lambda x: chr(ord(x)+1), "Ittywhonk!"))
01:00:56 *** minDwarping has quit (Connection timed out)
01:03:36 <perigrin> join '', map { chr(ord(x)+1) } split, //, 'Ittywhonk!';
01:03:56 <perigrin> probably a better way to do that ... but that mapped the closest to your python.
01:06:33 <crschmidt> There's probably a better way for me t do it too, but I don't know it :)
01:06:46 <crschmidt> > succ
01:06:55 <crschmidt> > succ "A"
01:07:05 <crschmidt> hrmph
01:09:16 *** kpreid (n=kpreid@cpe-24-59-154-165.twcny.res.rr.com) has joined #swhack
01:09:33 <KragenSitaker> > map succ "Ittywhonk!"
01:09:45 <KragenSitaker> how was the storm , kevin?
01:09:47 <deltab> > succ five den
01:09:53 <Schuyler> succ is Haskell no?
01:10:00 <KragenSitaker> aye
01:10:17 <kpreid> brief
01:10:19 <Schuyler> Haskell is one of those languages I keep meaning to actually learn, but never have a practical use for
01:10:20 *** swhask has quit (Remote closed the connection)
01:10:32 *** swhask (n=swhask@cpe-24-59-154-165.twcny.res.rr.com) has joined #swhack
01:10:49 <kpreid> whoops
01:11:37 * tonybaloney brings the wrath of hell upon himself
01:11:56 * tonybaloney just "upgraded" to Vista on the Windows desktop in the corner
01:12:56 <bjoern_> There is indeed a better way, s/(.)/chr(ord($1)+1)/ge;
01:19:00 <KragenSitaker> > map succ "Ittywhonk!"
01:19:09 <swhask> "Juuzxipol\""
01:20:43 <KragenSitaker> > map (succ . succ) "Ittywhonk!"
01:20:46 <swhask> "Kvv{yjqpm#"
01:21:05 <KragenSitaker> > (^)
01:21:06 <swhask> Add a type signature
01:21:46 <KragenSitaker> gee thanks swhask. i guess i'm supposed to try out my code in ghci and then only show it to the channel when it's complete then?
01:21:53 <kpreid> @type (^)
01:21:55 <supybot> kpreid: Error: "type" is not a valid command.
01:21:59 <kpreid> !type (^)
01:22:01 <swhask> forall a b. (Integral b, Num a) => a -> b -> a
01:22:12 <KragenSitaker> thanks :)
01:22:46 <kpreid> KragenSitaker: ghci would tell you "No instance for (Show (a -> b -> a))"
01:22:55 <KragenSitaker> and indeed it did
01:24:00 <KragenSitaker> > '(' : 'c' : ")"
01:24:01 *** tonybaloney has parted #swhack ()
01:24:03 <swhask> "(c)"
01:24:44 <KragenSitaker> > (:")") 'c'
01:24:47 <swhask> "c)"
01:25:05 *** tonybaloney (n=tony@pool-72-85-190-164.bstnma.east.verizon.net) has joined #swhack
01:26:55 <KragenSitaker> map (('(':) . (:")")) "cthulhu"
01:27:03 <KragenSitaker> > map (('(':) . (:")")) "cthulhu"
01:27:05 <swhask> ["(c)","(t)","(h)","(u)","(l)","(h)","(u)"]
01:27:56 <KragenSitaker> > map (('(':) . (:")")) . filter (!='u') "cthulhu"
01:27:57 <swhask> Not in scope: `!='
01:28:03 <KragenSitaker> > map (('(':) . (:")")) . filter (/='u') "cthulhu"
01:28:06 <swhask>  Expecting a function type, but found `[a]'
01:28:06 <swhask>  Expected type: a -> [Ch...
01:28:52 <KragenSitaker> > (map (('(':) . (:")")) . filter (/='u')) "cthulhu"
01:28:55 <swhask> ["(c)","(t)","(h)","(l)","(h)"]
01:30:09 *** lisppaste2 has quit (Read error: 104 (Connection reset by peer))
01:34:02 <KragenSitaker> > foldr ((++) . (++"-")) [] (map (('(':) . (:")")) . filter (/='u')) "cthulhu"
01:34:05 <swhask> Couldn't match `[Char]' against `t -> t1'
01:35:04 <KragenSitaker> > foldr ((++) . (++"-")) [] ((map (('(':) . (:")")) . filter (/='u')) "cthulhu")
01:35:08 <swhask> "(c)-(t)-(h)-(l)-(h)-"
01:35:14 <KragenSitaker> i don't think i like point-free style
01:36:16 <KragenSitaker> > (foldr ((++) . (++"-")) [] . (map (('(':) . (:")")) . filter (/='u'))) "cthulhu"
01:36:18 <swhask> "(c)-(t)-(h)-(l)-(h)-"
01:37:00 *** lisppaste2 (n=lisppast@common-lisp.net) has joined #swhack
01:38:21 <KragenSitaker> i don't know enough haskell to do the next step, which is to pattern-match on Nothing | Just x to get rid of the trailing "-" in the string
01:39:22 <kpreid> patterns are pointful!
01:39:37 <kpreid> so if you want to, case foo of Nothing -> ...; Just x -> ...
01:39:38 <kpreid> or:
01:39:49 <kpreid> @type maybe
01:39:50 <supybot> kpreid: Error: "type" is not a valid command.
01:39:53 <kpreid> !type maybe
01:39:56 <swhask> forall b a. b -> (a -> b) -> Maybe a -> b
01:39:59 <kpreid> !type fromMaybe
01:40:02 <swhask> forall a. a -> Maybe a -> a
01:41:14 <jcowan> I found a possible bug in GNU sort; can someone check my logic?
01:41:45 <crschmidt> teddybot: jcowan wants to share his logic with you
01:41:45 <teddybot> Go on.
01:41:54 <jcowan> Yeah, yeah.
01:42:00 <jcowan> The input: [[[
01:42:09 <jcowan> Test Case:#1
01:42:09 <jcowan> Test:#2
01:42:10 <jcowan> ]]]
01:42:23 <jcowan> sort -t: -k1 thinks this file is already sorted.
01:42:26 <jcowan> How can that be?
01:42:27 <kpreid> > ' ' `compare` ':'
01:42:32 <swhask> LT
01:42:46 * kpreid looks up -t
01:44:00 <jcowan> field separator
01:45:31 <kpreid> It would seem to me to be a bug.
01:45:55 *** tonybaloney has quit (Read error: 104 (Connection reset by peer))
01:45:59 <jcowan> Ftekh.
01:46:03 * jcowan tries on Solaris.
01:46:27 <kpreid> The bug is present in my "sort - GNU textutils 1.14", fwiw.
01:46:28 <crschmidt> For the record, the 'sort' that ships with OS X is apparently GNU sort. (Which I did not know.)
01:46:58 *** tonybaloney (i=tony@pool-72-85-190-164.bstnma.east.verizon.net) has joined #swhack
01:47:49 <kpreid> "sort (coreutils) 5.2.1" on a Debian system I have access to does *not* have this bug.
01:48:31 *** tonybaloney has quit (Read error: 104 (Connection reset by peer))
01:49:16 * crschmidt confirms that sort 5.97 does not appear to have this bug
01:50:09 <jcowan> But sort 6.7 does, so this is a regression.
01:50:14 <jcowan> What is worse, Solaris sort does too.
01:50:49 <jcowan> Which descends directly from original 7th Ed. sort, so GNU sort may have been changed to be compatible but wrong.
01:51:09 <kpreid> Regression?
01:51:28 <kpreid> I would guess "GNU textutils 1.14" isn't the same version series.
01:51:36 <jcowan> 1.14 buggy, 5.2.1 and 5.97 fixed, 6.7 buggy.
01:51:42 <jcowan> No, but textutils > coreutils.
01:52:16 <jcowan> more accurately, fileutils + shellutils + textutils became coreutils.
01:52:28 <kpreid> Then sort (cu) 6.7 < tu 1.14.
01:52:41 <kpreid> Er, your > was confusing, then.
01:54:34 <jcowan> No, I am saying that all tu releases preceded all cu releases.
01:54:53 <jcowan> Oh, > instead of <. Sorry.
01:55:05 *** rob1n_ (n=rob1n@unaffiliated/rob1n) has joined #swhack
02:11:13 *** tonybaloney (n=kvirc@pool-72-85-190-164.bstnma.east.verizon.net) has joined #swhack
02:12:02 *** rob1n has quit (Nick collision from services.)
02:12:06 *** rob1n_ is now known as rob1n
02:13:20 *** bear_afk is now known as bear
02:17:48 *** minDwarpd has quit (Read error: 110 (Connection timed out))
02:47:09 <bjoern_> .gc "living like europeans"
02:47:12 <phenny> "living like europeans": 268
02:50:42 * jcowan submits the sort bug to bug-coreutils
03:00:19 *** Arnia has quit ("Lost terminal")
03:47:43 *** l7 (n=l7@evil-wire.org) has joined #swhack
03:47:43 <Monty> lo l7
03:51:37 *** tonybaloney has quit ("KVIrc 3.2.6 Anomalies http://www.kvirc.net/")
03:51:48 <l7> hi monty
03:51:50 <Monty> nope cool, will explore and therefore you around?
03:52:03 <l7> have you seen Supersize Me?
03:52:11 <l7> .wik Supersize Me
03:52:18 <phenny> "Super Size Me is an Academy Award-nominated 2004 documentary film, directed by and starring Morgan Spurlock, an American independent filmmaker." - http://en.wikipedia.org/wiki/Supersize_Me
03:54:00 <jcowan> I doubt if Monty sees movies.
03:54:01 <Monty> rwe'sd
04:06:51 *** jcowan has quit ("Leaving")
04:11:03 *** Empirical (n=botty@208.75.86.167) has joined #swhack
04:11:31 *** Empirical has quit (Remote closed the connection)
04:11:49 *** Empirical (n=botty@208.75.86.167) has joined #swhack
04:22:24 *** Empirical has quit (Remote closed the connection)
04:26:17 *** rob1n_ (n=rob1n@unaffiliated/rob1n) has joined #swhack
04:26:42 *** rob1n has quit (Nick collision from services.)
04:26:57 *** rob1n_ is now known as rob1n
04:27:36 *** Empirical (n=botty@unaffiliated/shorty114) has joined #swhack
04:31:02 *** rob1n_ (n=rob1n@unaffiliated/rob1n) has joined #swhack
04:31:28 *** rob1n has quit (Nick collision from services.)
04:31:35 *** l7_ (n=l7@evil-wire.org) has joined #swhack
04:34:33 *** nwalsh (n=ndw@68-186-247-133.dhcp.oxfr.ma.charter.com) has joined #swhack
04:34:59 *** rob1n_ has quit (Client Quit)
04:37:14 <perigrin> Monty you would really enjoy Supersize Me
04:37:16 <Monty> Only for it after they've ironed out
04:38:02 *** schepers_ (n=schepers@cpe-069-134-024-226.nc.res.rr.com) has joined #swhack
04:52:56 <KragenSitaker> .g "living like europeans"
04:52:59 <phenny> KragenSitaker: http://www.guernicamag.com/interviews/170/warming_to_reality/
04:53:42 *** schepers has quit (Read error: 110 (Connection timed out))
05:02:02 *** bear42 (n=bear@pool-72-78-25-249.phlapa.east.verizon.net) has joined #swhack
05:04:00 *** bear has quit (Nick collision from services.)
05:04:04 *** bear42 is now known as bear
05:18:42 *** jetscreamer (n=jetscrea@unaffiliated/jetscreamer) has joined #swhack
05:18:49 *** trotek has quit (Read error: 60 (Operation timed out))
05:24:31 *** Moira (i=moira@gateway/tor/x-4af1f35c2f8c5d3e) has joined #swhack
05:24:31 <Monty> bah, it's Moira again
05:24:58 *** MoiraA has quit (Remote closed the connection)
06:00:07 *** l7_ has quit ("Lost terminal")
06:46:23 *** l7 has quit ("Lost terminal")
06:48:38 *** karamba38 has quit (Remote closed the connection)
07:00:43 *** libby (n=libby@82-32-5-17.cable.ubr01.azte.blueyonder.co.uk) has joined #swhack
07:07:36 *** jewel (n=jewel@61.247.251.10) has joined #swhack
07:11:39 *** karamba38 (i=ariel@gateway/tor/x-dc49c15a527a7a74) has joined #swhack
07:11:39 <Monty> hi karamba38, how ya doing?
07:11:41 <phenny> Monty: shh, don't let anyone know you're around!
07:11:41 <JibbyBot> Monty: that's a silly question.
07:11:41 <Monty> });
07:11:43 <Monty> Do you feel strongly about discussing such things ?
07:12:04 <bjoern_> Hush there, Monty.
07:12:04 <Monty> That is interesting. Please continue.
07:12:20 * bjoern_ continues as Monty requests
07:12:20 <Monty> Thanks... working ok ok
07:14:35 *** bear is now known as bear_afk
07:17:52 <KragenSitaker> the "living like europeans" link above: "We could cut our energy consumption in half by living like Europeans."
07:22:38 *** perigrin has quit ("Leaving")
07:24:17 *** schepers_ is now known as schepers
07:43:36 *** blueear (n=redear@bas12-toronto63-1088806579.dsl.bell.ca) has joined #swhack
08:03:45 *** Jibber (n=jim@81-86-76-175.dsl.pipex.com) has joined #swhack
08:15:17 *** blueear has quit ("ChatZilla 0.9.78.1 [Firefox 2.0.0.3/2007030919]")
08:23:50 *** thelsdj has quit (Read error: 60 (Operation timed out))
08:24:28 *** thelsdj (n=thelsdj@ip24-251-207-135.ph.ph.cox.net) has joined #swhack
08:37:01 *** Monty has quit (Remote closed the connection)
08:40:17 *** Arnia (n=arnia@75-138-187-11.dhcp.oxfr.ma.charter.com) has joined #swhack
08:50:28 *** softt (n=soft@000-436-562.area4.spcsdns.net) has joined #swhack
08:52:07 *** alienbrain_ (n=alienbra@212.103.170.132) has joined #swhack
09:05:59 *** darobin (n=robinb@vol75-3-82-66-219-246.fbx.proxad.net) has joined #swhack
09:28:30 *** int-e (n=noone@t54fc41ef.pool.terralink.de) has joined #swhack
09:31:12 *** Arnia has quit ("Lost terminal")
10:13:07 *** danja (n=danja@host133-217-static.104-80-b.business.telecomitalia.it) has joined #swhack
10:44:48 *** Jibber is now known as JibberJim
10:51:20 <bjoern_> .gc deceit
10:51:23 <phenny> deceit: 8,070,000
10:51:26 <bjoern_> .ety deceit
10:51:28 <phenny> "c.1300, from O.Fr. deceite, fem. pp. of deceveir (see deceive)." - http://etymonline.com/?term=deceit
10:51:41 <bjoern_> .ety deceive
10:51:43 <phenny> "c.1300, from O.Fr. deceveir, from L. decipere 'to ensnare, take in,' from de- 'from' or pejorative + capere 'to take' (see capable)." - http://etymonline.com/?term=deceive
10:52:14 *** libby has quit (Read error: 110 (Connection timed out))
11:00:30 <kandinski> if there are courses on "Philosophy of Science" and "Philosophy of Mathematics", why not on "Philosophy of Computing" (not calling it Computer Science)
11:00:39 <kandinski> that line is missing a final "?"
11:08:33 * bjoern_ wonders what the right syntax is...
11:08:34 <bjoern_> .compare [Philosophy of Science] [Philosophy of Mathematics] [Philosophy of Computing]
11:08:38 <phenny> Philosophy of Science (97,600,000), Philosophy of Mathematics (51,100,000), Philosophy of Computing (31,600,000)
11:08:51 <bjoern_> .compare "Philosophy of Science" "Philosophy of Mathematics" "Philosophy of Computing"
11:08:54 <phenny> "Philosophy of Science" (2,120,000), "Philosophy of Mathematics" (464,000), "Philosophy of Computing" (22,900)
11:10:05 <bjoern_> .gc "Philosophy of Information"
11:10:08 <phenny> "Philosophy of Information": 47,700
11:10:50 <bjoern_> seems more like a whether than a why question
11:12:15 <softt> .gc "artificial intelligence"
11:12:17 <phenny> "artificial intelligence": 39,000,000
11:12:29 <bjoern_> .gc "natural intelligence"
11:12:31 <phenny> "natural intelligence": 141,000
11:12:46 <bjoern_> that is my experience aswell...
11:13:24 <softt> hmm, we here develop ai bots that people all over the world will want to chat with and do business with.
11:16:35 <softt> hmm, and do r&d on natural intelligence, sounds like that has practically limitless limitation.
11:29:01 *** libby (n=libby@91.84.137.113) has joined #swhack
11:34:02 <Earle_Martin> .gc "philosophy of madness"
11:34:05 <phenny> "philosophy of madness": 29,900
11:34:45 <Earle_Martin> .gc "artificial stupidity"
11:34:47 <phenny> "artificial stupidity": 37,500
11:40:33 <bjoern_> .gc "philosophy of philosophy"
11:40:35 <phenny> "philosophy of philosophy": 12,200
11:40:40 <bjoern_> .gc metaphilosophy
11:40:42 <phenny> metaphilosophy: 154,000
11:40:45 <bjoern_> .gc metametaphilosophy
11:40:48 <phenny> metametaphilosophy: 58
11:40:50 <bjoern_> .gc metametametaphilosophy
11:40:52 *** Arnia (n=jgeldart@0-16-cb-bd-57-e.it.wlan.dur.ac.uk) has joined #swhack
11:40:53 <phenny> metametametaphilosophy: 1
11:44:43 <Earle_Martin> whoot
11:44:57 <Earle_Martin> .gc guantanameta
11:45:00 <phenny> guantanameta: 0
11:45:02 <Earle_Martin> aw.
11:45:10 <bjoern_> .gc metamo
11:45:13 <phenny> metamo: 75,600
11:49:02 <bjoern_> [[[
11:49:03 <bjoern_> Zombies are an inevitable result of many of the options that ARE presented. Nuclear holocaust and alien invasions, for example, could
11:49:03 <bjoern_> both lead to zombie outbreaks. And in such cases it's unlikely that said zombies will cause the end of civilization as opposed to just picking
11:49:03 <bjoern_> off survivors and creating problems for the hope of rebuilding. Of course, a simple prolonged power outage would at least destroy American
11:49:04 <bjoern_> civilization. All the fat yuppies with their sport utility vehicles would curl up into a little ball and just die without modern "luxuries".
11:49:07 <bjoern_> ]]] -- http://slashdot.org/pollBooth.pl?qid=1409&aid=-1
11:56:53 *** softt_ (n=soft@000-436-562.area4.spcsdns.net) has joined #swhack
11:57:09 *** softt has quit ("God our Creator watches over us and loves us and will continue to care for us even as a few thoughless men try to be in contr)
11:57:57 *** softt_ has quit (Client Quit)
11:58:51 *** cre8cell (n=chatzill@i577B4482.versanet.de) has joined #swhack
12:00:35 *** cre8cell has parted #swhack ()
12:04:32 *** bjoern_ changed the topic to: "sbp is alive and well | "What do geeks traditionally worry about?" - "Girl robots, and why they don't exist yet." -- /."
12:07:49 *** libby has quit (Read error: 110 (Connection timed out))
12:23:56 <Morbus> jsled: i finally settled on an Automator workflow, which piggybacks off of Safari for URL access and cookies. works great.
12:24:08 <Morbus> gets me the data I need, and now I can mine it with Perl.
12:29:18 *** cre8radix (n=cre8radi@e178115167.adsl.alicedsl.de) has joined #swhack
12:33:43 *** softt (n=soft@000-457-864.area4.spcsdns.net) has joined #swhack
12:35:51 *** int-e has parted #swhack ("Bye!")
12:48:31 *** DrBacchus (n=rbowen@apache/committer/rbowen) has joined #swhack
12:52:17 *** jetscreamer has quit (Read error: 110 (Connection timed out))
13:23:25 <JibberJim> OMG they found Kryptonite!
13:24:15 <JibberJim> http://news.bbc.co.uk/1/hi/sci/tech/6584229.stm
13:24:21 <JibberJim> Superman is in trouble now
13:28:38 *** jetscreamer (n=jetscrea@unaffiliated/jetscreamer) has joined #swhack
13:45:12 *** cre8radix has quit ()
14:12:57 *** kpreid has quit ()
14:13:04 *** iratsu (n=iratsu@modemcable204.153-70-69.mc.videotron.ca) has joined #swhack
14:18:03 *** kpreid (n=kpreid@cpe-24-59-154-165.twcny.res.rr.com) has joined #swhack
14:19:45 *** cre8radix (n=cre8radi@i577B4482.versanet.de) has joined #swhack
14:27:18 *** l7 (n=l7@evil-wire.org) has joined #swhack
14:27:34 *** softt has quit (Read error: 110 (Connection timed out))
14:27:47 *** piotch (n=piotch@82.201.198.249) has joined #swhack
14:36:36 *** libby (n=libby@colbert-ext.lid.theveniceproject.com) has joined #swhack
15:06:33 *** tonybaloney (i=kvirc@pool-72-85-190-164.bstnma.east.verizon.net) has joined #swhack
15:20:55 *** danja has quit (Read error: 110 (Connection timed out))
15:22:51 *** piotch_ (n=piotch@82.201.198.249) has joined #swhack
15:23:50 *** piotch has quit (Read error: 104 (Connection reset by peer))
15:31:27 *** jewel has quit (No route to host)
15:42:54 *** Arnia has quit ()
16:04:22 *** alienbrain_ has quit ("Leaving")
16:04:41 *** cre8radix has quit ()
16:19:23 *** tonybaloney has quit ("KVIrc 3.2.6 Anomalies http://www.kvirc.net/")
16:25:33 *** bear_afk is now known as bear
16:30:29 *** perigrin (n=perigrin@c-76-17-238-94.hsd1.mn.comcast.net) has joined #swhack
16:56:45 *** nephrael has quit (Read error: 104 (Connection reset by peer))
17:04:10 *** Moira is now known as MoiraA
17:11:22 *** piotch_ has quit (Read error: 110 (Connection timed out))
17:17:53 *** tonybaloney (i=kvirc@pool-72-85-190-164.bstnma.east.verizon.net) has joined #swhack
17:24:55 *** l7 has quit ("Lost terminal")
17:29:47 *** Jibber (n=jim@81-86-76-175.dsl.pipex.com) has joined #swhack
17:38:58 *** JibberJim has quit (Read error: 110 (Connection timed out))
17:42:38 *** danja (n=danja@host136-220-static.104-80-b.business.telecomitalia.it) has joined #swhack
17:43:32 *** cre8radix (n=cre8radi@i577B4482.versanet.de) has joined #swhack
18:07:17 *** libby has quit (Read error: 110 (Connection timed out))
18:11:10 *** softt (n=soft@h4608f639.area4.spcsdns.net) has joined #swhack
18:12:48 *** Jibber is now known as JibberJim
18:14:15 *** xover has quit (Read error: 104 (Connection reset by peer))
18:14:46 *** xover (n=xover@pounder.neutri.no) has joined #swhack
18:20:14 *** trotek (i=tro@pwned.biz) has joined #swhack
18:24:53 *** cre8radix has quit ()
18:44:15 *** cre8radix (n=cre8radi@i577B4482.versanet.de) has joined #swhack
18:45:39 *** cre8radix is now known as cre8radix|out
18:46:34 *** tonybaloney has quit ("KVIrc 3.2.6 Anomalies http://www.kvirc.net/")
18:47:13 *** Mumbles (i=mumbles@borknet.org) has joined #swhack
18:51:14 *** bjoern_ has quit ("Quit")
18:59:05 *** est (n=est@adsl-71-142-74-123.dsl.pltn13.pacbell.net) has joined #swhack
19:00:29 *** shawn__ (n=shawn@adsl-68-122-34-109.dsl.pltn13.pacbell.net) has joined #swhack
19:02:26 *** bear is now known as bear_afk
19:25:07 *** danja_ (n=danja@host136-220-static.104-80-b.business.telecomitalia.it) has joined #swhack
19:25:28 *** danja has quit (Read error: 54 (Connection reset by peer))
19:25:38 *** dmiles_afk (i=dmiles@24-113-152-254.wavecable.com) has joined #swhack
19:34:59 *** l7 (n=l7@evil-wire.org) has joined #swhack
19:36:14 <Mumbles> all all
19:47:28 *** danja_ has quit ()
19:50:34 *** nwalsh has quit ("</norm>")
20:02:35 <Mumbles> guys - how do i kill phenny ?
20:03:14 * xover looks threatheningly at Mumbles...
20:03:23 <Mumbles> on another sever
20:03:34 <Mumbles> i had to edit the irc.py a bit
20:04:39 *** int-e (n=noone@t54fc41ef.pool.terralink.de) has joined #swhack
20:06:29 *** danja (n=danja@host136-220-static.104-80-b.business.telecomitalia.it) has joined #swhack
20:06:42 *** danja has quit (Remote closed the connection)
20:08:08 *** bear_afk is now known as bear
20:10:13 <Mumbles> xover, - know anything about this - ? http://paste.uni.cc/14795
20:11:17 <xover> Sorry, wouldn't know Python from a core dump.
20:11:45 <xover> But the exception sounds like you've ran afoul of Pythin's significant whitespace rules.
20:13:12 <jsled> yeah, looks like you've got peanut butter^W^Wtabs mixed in with the spaces.
20:13:36 <Mumbles> ive just changed that
20:14:12 <kpreid> you've got several occurrences of misaligned statements in that vicinity
20:14:20 <Mumbles> ill post the new one
20:14:25 <kpreid> you can't just comment out a condition and leave the body - you have to line it up with the rest
20:14:30 <Mumbles> sorry i know fuck all about python :P
20:14:49 <kpreid> Mumbles: all statements in the same block must be equally indented
20:15:07 <perigrin> Mumbles, phenny reports her pid when she starts
20:15:17 <perigrin> also she runs as a long running process called "python"
20:17:43 <Mumbles> bummer still not working
20:18:03 <Mumbles> http://paste.uni.cc/14796
20:18:08 <Mumbles> from line 154
20:18:56 <jsled> well, it's still not aligned.
20:19:18 *** est has quit (Read error: 110 (Connection timed out))
20:19:53 <jsled> l.170 is at a different indent from l.168.
20:29:38 <thelsdj> is there something special you have to do to encode -- inside an html comment?
20:29:53 <xover> Yes. Don't.
20:30:37 <jsled> Don't do the special thing? Don't use "--"?
20:31:18 <thelsdj> well what if its not intentional? outside data
20:32:01 <thelsdj> I'm trying to figure out why we are putting this in a comment, but thats another story hehe
20:32:05 <xover> A markup declaration can contain comments delimited by '--'. You can't use that string otherwise.
20:45:30 *** piotch (n=piotch@196.218.200.38) has joined #swhack
20:57:23 *** int-e_ (n=noone@t54fc413c.pool.terralink.de) has joined #swhack
20:58:25 *** bear42 (n=bear@pool-72-78-30-175.phlapa.east.verizon.net) has joined #swhack
20:58:37 *** nwalsh (n=ndw@68-186-247-133.dhcp.oxfr.ma.charter.com) has joined #swhack
21:00:22 *** bear has quit (Nick collision from services.)
21:00:23 *** int-e has quit (Nick collision from services.)
21:00:26 *** int-e_ is now known as int-e
21:00:27 *** bear42 is now known as bear
21:01:13 *** DrBacchus has quit ("410: Gone")
21:06:33 *** JibberJim has quit (Read error: 110 (Connection timed out))
21:06:58 *** l7 has quit ("Lost terminal")
21:09:15 *** JibberJim (n=jim@81-86-76-175.dsl.pipex.com) has joined #swhack
21:14:20 *** piotch has quit (Read error: 104 (Connection reset by peer))
21:14:31 *** piotch (n=piotch@196.218.200.38) has joined #swhack
21:14:54 *** piotch has quit (Client Quit)
21:23:08 *** BigJibby (n=matt@ip3-39.eyrkonaeac03.dialup.ca.telus.com) has joined #swhack
21:26:55 *** piotch (n=piotch@82.201.198.249) has joined #swhack
21:43:31 *** nwalsh has quit (Read error: 110 (Connection timed out))
22:00:31 *** est (n=est@adsl-71-142-74-123.dsl.pltn13.pacbell.net) has joined #swhack
22:03:44 *** nwalsh (n=ndw@68-186-247-133.dhcp.oxfr.ma.charter.com) has joined #swhack
22:06:32 *** BigJibby has quit ("Konversation terminated!")
22:08:55 <KragenSitaker> .wik adipose cells
22:08:56 <phenny> "Adipocytes are the cells that primarily compose adipose tissue, specialized in storing energy as fat." - http://en.wikipedia.org/wiki/Adipocyte
22:09:43 <Tene> .wik phenny
22:09:44 <phenny> "hya jodie wat u doin 2nyt lyk hunni?? how mint is dis plz dont tell every1 bout dis tho coz den it will get blocked k. write bk hun lv ya xxxxxxxxxxxxxxx" - http://en.wikipedia.org/wiki/User_talk:!*!jodie-2007!*!
22:09:56 <Tene> ...
22:09:58 <bancus> Um...
22:10:01 <bancus> k
22:10:46 <bancus> That makes me dizzy. :-(
22:10:54 <est> .wik Kragen
22:10:57 <phenny> "I'm kragen@pobox.com; my home page is at http://pobox.com/~kragen/" - http://en.wikipedia.org/wiki/User:Kragen
22:10:57 *** MoiraA has quit (Remote closed the connection)
22:12:09 <Tene> .wik bancus
22:12:10 <phenny> "Bankruptcy is a legally declared inability or impairment of ability of an individual or organizations to pay their creditors." - http://en.wikipedia.org/wiki/Bankruptcy
22:16:10 <bancus> Heh.
22:16:13 <bancus> .wik tene
22:16:16 <phenny> "The requested page title was invalid, empty, an incorrectly linked inter-language or inter-wiki title, or contained unsupported characters." - http://en.wikipedia.org/wiki/La_T%C3%A8ne_culture
22:16:22 <est> .wik est
22:16:25 <phenny> "est in French, meaning 'east', as in referring to France and to the Franche-Comté and Lorraine régions" - http://en.wikipedia.org/wiki/Est
22:16:43 <bancus> .wik treed
22:16:46 <phenny> "Treeing is a method of hunting where dogs are used to force animals that naturally climb up into trees, where they can be shot by hunters." - http://en.wikipedia.org/wiki/Treeing
22:16:50 <bancus> Heh!
22:17:28 * Tene laughs.
22:18:41 <cre8radix|out> .seen sbp
22:18:43 <phenny> Sorry, I haven't seen sbp around.
22:19:12 *** cre8radix|out has quit ()
22:20:20 *** bancus changed the topic to: " sbp is alive and well | "What do geeks traditionally worry about?" - "Girl robots, and why they don't exist yet." -- /."
22:20:23 <bancus> ack
22:20:41 *** bancus changed the topic to: "sbp is alive and well, supposedly | "What do geeks traditionally worry about?" - "Girl robots, and why they don't exist yet." -- /."
22:21:39 <est> :|
22:32:45 *** nwalsh has quit (Read error: 110 (Connection timed out))
22:33:13 *** bear is now known as bear_afk
22:34:56 <Tene> bancus: http://en.wikipedia.org/w/index.php?title=User_talk%3A%21*%21jodie-2007%21*%21&diff=125645541&oldid=116536639
22:35:49 *** int-e has parted #swhack ("Bye!")
22:36:31 <bancus> bahahaha
22:36:52 <Tene> Done by a friend of mine after I showed it to him.
22:38:47 <bancus> Awesome.
22:38:53 <bancus> I couldn't understand it at all.
22:42:00 <bancus> http://en.wikipedia.org/wiki/Wikipedia:What_Wikipedia_is_not/Outtakes
22:43:43 *** Arnia (n=arnia@75-138-187-11.dhcp.oxfr.ma.charter.com) has joined #swhack
22:46:03 <nsh> .wik plenum
22:46:05 <phenny> "the antithesis of a vacuum; in other words, completely-filled, positive-pressure space." - http://en.wikipedia.org/wiki/Plenum
22:46:19 <Tene> .wik kpreid
22:46:21 <phenny> Can't find anything in Wikipedia for "kpreid ".
22:46:49 *** rob1n (n=rob1n@unaffiliated/rob1n) has joined #swhack
22:46:55 <kpreid> A different "Kevin Reid" is mentioned in Wikipedia, but not me.
22:47:46 *** piotch has quit ()
22:49:11 <Arnia> hmm
22:51:45 *** perigrin has quit ("Leaving")
23:04:52 *** est has quit (Remote closed the connection)
23:05:14 *** jetscreamer has quit ()
23:20:41 *** est (n=est@adsl-71-142-74-123.dsl.pltn13.pacbell.net) has joined #swhack
23:30:35 *** softt has quit (Read error: 110 (Connection timed out))
23:39:56 *** Empirical has quit (Remote closed the connection)
23:40:37 *** Empirical (n=botty@unaffiliated/shorty114) has joined #swhack
23:40:59 *** bancus has quit ("leaving")
23:41:11 *** nwalsh (n=ndw@68-186-247-133.dhcp.oxfr.ma.charter.com) has joined #swhack