Go Language Resources Go, golang, go... NOTE: This page ceased updating in October, 2012

--- Log opened Sun Sep 26 00:00:08 2010
00:00 -!- ExtraSpice [~XtraSpice@88.118.34.223] has quit [Ping timeout: 240
seconds]
00:01 < crazy2be> uh?
00:02 < scyth> in your code, MediaSgroup is declared somewhere...
00:02 < scyth> it has to be, if you wanna use it
00:02 < crazy2be> Oh, this is in the template file
00:02 < crazy2be> are you familiar with the template library?
00:02 < scyth> nope
00:03 < crazy2be> heh
00:03 < crazy2be> well i pass a Photo to the template library
00:03 < crazy2be> And then i can access the fields of it in the template
file
00:04 < crazy2be> So like i do
00:04 < crazy2be> <img src="{MediaSgroup.MediaScontent[0].Url}"
alt="{Summary.ST}" />
00:04 < crazy2be> The Summary.ST part works, but not the MediaSgroup...
part
00:04 < scyth> sec
00:05 < scyth> what did you print exactly above?  <crazy2be> scyth:
Well, printing it with %+v gives me...
00:06 < scyth> what variable?
00:06 < crazy2be> THe one i pass to the template package
00:06 < scyth> which is...  what?  how do you call it
00:06 < scyth> it doesn't match your structure
00:07 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
00:07 -!- Davidian1024 [~Davidian1@cpe-98-27-192-193.neo.res.rr.com] has joined
#go-nuts
00:07 < scyth> {Title:{ST:Untitled Album Type:text} Summary:{ST:Just a test
Type:text} MediaSgroup:{MediaScontent
00:07 < scyth> so
00:07 < scyth> try using
00:07 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has joined
#go-nuts
00:08 < scyth> you don't have MediaSgroup element in your Photo struct on
pastie
00:08 < scyth> ah..  tabs
00:08 < scyth> sorry
00:08 < crazy2be> Yeah :P
00:08 < crazy2be> it messed up because of that
00:12 -!- virtualsue_ [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has quit [Ping
timeout: 259 seconds]
00:12 < scyth> MediaScontent []*PhotoItem;
00:12 < scyth> try this
00:14 -!- thaostra [~joshua@71.168.114.217] has joined #go-nuts
00:18 < crazy2be> No change
00:19 < crazy2be> I think the issue is in dealing with slices
00:21 -!- brad_ [~brad@cpe-098-026-123-011.nc.res.rr.com] has joined #go-nuts
00:22 -!- brad_ [~brad@cpe-098-026-123-011.nc.res.rr.com] has left #go-nuts []
00:22 -!- bfrank [~brad@cpe-098-026-123-011.nc.res.rr.com] has joined #go-nuts
00:22 < bfrank> is the play stuff in the repo?
00:27 -!- major_majors [~major_maj@c-69-136-131-95.hsd1.mi.comcast.net] has joined
#go-nuts
00:30 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has joined
#go-nuts
00:32 -!- Davidian1024 [~Davidian1@cpe-98-27-192-193.neo.res.rr.com] has quit
[Ping timeout: 276 seconds]
00:38 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has quit
[Quit: msolo]
00:38 -!- napsy [~luka@88.200.96.18] has quit [Ping timeout: 245 seconds]
00:39 -!- napsy [~luka@88.200.96.18] has joined #go-nuts
00:42 -!- major_majors [~major_maj@c-69-136-131-95.hsd1.mi.comcast.net] has quit
[Read error: Connection reset by peer]
00:43 -!- major_majors [~major_maj@c-69-136-131-95.hsd1.mi.comcast.net] has joined
#go-nuts
00:43 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
00:43 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has joined
#go-nuts
00:45 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has left
#go-nuts []
00:46 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has joined
#go-nuts
00:48 -!- major_majors [~major_maj@c-69-136-131-95.hsd1.mi.comcast.net] has quit
[Ping timeout: 252 seconds]
00:53 -!- JWHardcastle [~jwhardcas@pool-74-103-83-216.bltmmd.east.verizon.net] has
joined #go-nuts
01:05 -!- major_majors [~major_maj@adsl-99-66-69-175.dsl.sfldmi.sbcglobal.net] has
joined #go-nuts
01:06 -!- major_majors [~major_maj@adsl-99-66-69-175.dsl.sfldmi.sbcglobal.net] has
quit [Read error: Connection reset by peer]
01:06 -!- major_majors [~major_maj@adsl-99-66-69-175.dsl.sfldmi.sbcglobal.net] has
joined #go-nuts
01:11 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
01:29 -!- sukuri [~travis@node238.seg87.ucf.edu] has joined #go-nuts
01:30 -!- devink [~devin@c-76-24-8-98.hsd1.ma.comcast.net] has quit [Remote host
closed the connection]
01:39 -!- thaostra [~joshua@71.168.114.217] has quit [Ping timeout: 240 seconds]
01:43 -!- napsy [~luka@88.200.96.18] has quit [Ping timeout: 265 seconds]
01:47 < crazy2be> anyone have any example code using the template package?
01:47 < crazy2be> preferably using slices/arrays, but that's not a
requirement
01:48 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Ping
timeout: 252 seconds]
01:48 -!- iant [~iant@216.239.45.130] has joined #go-nuts
01:48 -!- mode/#go-nuts [+v iant] by ChanServ
01:52 -!- jmettraux [~jmettraux@PPPbm5391.kanagawa-ip.dti.ne.jp] has joined
#go-nuts
01:52 -!- thaostra [~joshua@71.168.114.217] has joined #go-nuts
01:57 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has joined
#go-nuts
01:58 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has quit
[Client Quit]
01:59 < crazy2be> Hmm template doesn't seem to like additional qualifiers on
the @ identifier
02:31 -!- major_majors [~major_maj@adsl-99-66-69-175.dsl.sfldmi.sbcglobal.net] has
quit [Quit: major_majors]
02:31 -!- res [c9ed8246@gateway/web/freenode/ip.201.237.130.70] has quit [Quit:
Page closed]
02:37 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has joined #go-nuts
02:44 -!- napsy [~luka@88.200.96.18] has joined #go-nuts
02:50 -!- res [c9ed8246@gateway/web/freenode/ip.201.237.130.70] has joined
#go-nuts
02:59 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has quit
[Quit: msolo]
03:15 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Read error:
Connection reset by peer]
03:16 -!- jA_cOp [~yakobu@ti0043a380-1568.bb.online.no] has joined #go-nuts
03:16 -!- jA_cOp [~yakobu@ti0043a380-1568.bb.online.no] has quit [Changing host]
03:16 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
03:21 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has joined
#go-nuts
03:26 -!- jessta [~jessta@124-148-191-114.dyn.iinet.net.au] has quit [Remote host
closed the connection]
03:28 -!- JWHardcastle [~jwhardcas@pool-74-103-83-216.bltmmd.east.verizon.net] has
quit [Quit: JWHardcastle]
03:40 -!- sukuri [~travis@node238.seg87.ucf.edu] has quit [Quit: Leaving.]
03:45 -!- thaostra [~joshua@71.168.114.217] has quit [Quit: Leaving]
03:46 -!- crazy2be [~justin@S0106001ac401d400.cg.shawcable.net] has left #go-nuts
[]
03:50 -!- aho [~nya@fuld-4d00d6ad.pool.mediaWays.net] has joined #go-nuts
03:52 -!- ako [~nya@fuld-4d00d5fd.pool.mediaWays.net] has quit [Ping timeout: 245
seconds]
03:55 -!- Drahgkar_mobile [~chris@66.93.162.10] has joined #go-nuts
03:58 -!- jessta [~jessta@124-148-191-114.dyn.iinet.net.au] has joined #go-nuts
03:59 -!- ssjones [~ssjones@67-61-100-203.cpe.cableone.net] has quit [Read error:
Connection reset by peer]
04:01 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
04:11 -!- ssjones [~ssjones@67-61-100-203.cpe.cableone.net] has joined #go-nuts
04:24 -!- itrekkie [~itrekkie@ip72-211-155-194.tc.ph.cox.net] has joined #go-nuts
04:26 -!- Xurix [~Luixsia@AToulouse-254-1-4-200.w83-203.abo.wanadoo.fr] has joined
#go-nuts
04:26 -!- itrekkie [~itrekkie@ip72-211-155-194.tc.ph.cox.net] has quit [Client
Quit]
04:31 -!- Xurix [~Luixsia@AToulouse-254-1-4-200.w83-203.abo.wanadoo.fr] has left
#go-nuts ["Leaving"]
04:31 -!- nsf [~nsf@jiss.convex.ru] has joined #go-nuts
04:31 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has joined
#go-nuts
04:37 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Ping timeout:
245 seconds]
04:38 -!- msolo [~msolo@75-25-136-127.lightspeed.plalca.sbcglobal.net] has left
#go-nuts []
04:43 -!- napsy [~luka@88.200.96.18] has quit [Ping timeout: 240 seconds]
04:51 -!- jmettraux [~jmettraux@PPPbm5391.kanagawa-ip.dti.ne.jp] has quit [Remote
host closed the connection]
04:52 -!- mikeg [~michael@ip68-110-226-15.dc.dc.cox.net] has quit [Read error:
Connection reset by peer]
04:53 -!- mikeg [~michael@ip68-110-226-15.dc.dc.cox.net] has joined #go-nuts
04:54 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
04:57 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has quit [Quit: major_majors]
05:01 -!- scm [scm@d019042.adsl.hansenet.de] has quit [Ping timeout: 255 seconds]
05:03 -!- scm [scm@d057209.adsl.hansenet.de] has joined #go-nuts
05:06 -!- ikaros [~ikaros@188.107.221.102] has joined #go-nuts
05:07 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Read error:
Connection reset by peer]
05:08 -!- ako [~nya@fuld-4d00d7b1.pool.mediaWays.net] has joined #go-nuts
05:08 -!- aho [~nya@fuld-4d00d6ad.pool.mediaWays.net] has quit [Ping timeout: 245
seconds]
05:09 -!- ikaros [~ikaros@188.107.221.102] has quit [Client Quit]
05:10 -!- major_majors [~major_maj@c-68-40-195-246.hsd1.mi.comcast.net] has joined
#go-nuts
05:11 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
05:16 -!- nsf [~nsf@jiss.convex.ru] has quit [Quit: WeeChat 0.3.3]
05:33 -!- ikaros [~ikaros@2001:41b8:9bf:fe04:7c5f:45ff:fe9b:babb] has joined
#go-nuts
05:36 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Ping timeout:
245 seconds]
05:44 -!- napsy [~luka@88.200.96.18] has joined #go-nuts
05:48 -!- jA_cOp [~yakobu@ti0043a380-1568.bb.online.no] has joined #go-nuts
05:50 -!- major_majors [~major_maj@c-68-40-195-246.hsd1.mi.comcast.net] has quit
[Ping timeout: 252 seconds]
06:05 -!- ako [~nya@fuld-4d00d7b1.pool.mediaWays.net] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
06:07 -!- ikaros [~ikaros@2001:41b8:9bf:fe04:7c5f:45ff:fe9b:babb] has quit [Quit:
Leave the magic to Houdini]
06:17 -!- jA_cOp [~yakobu@ti0043a380-1568.bb.online.no] has quit [Quit: Leaving]
06:29 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has quit [Ping
timeout: 255 seconds]
07:01 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
07:06 -!- juergbi [~juerg@77-58-111-253.dclient.hispeed.ch] has joined #go-nuts
07:10 -!- slashus2 [~slashus2@74-141-108-109.dhcp.insightbb.com] has joined
#go-nuts
07:25 -!- ronnyy [~quassel@p4FF1CB30.dip.t-dialin.net] has joined #go-nuts
07:30 -!- norayr [~noch@212.34.238.61] has joined #go-nuts
07:31 -!- ExtraSpice [~XtraSpice@88.118.34.223] has joined #go-nuts
07:33 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
07:42 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
07:43 -!- napsy [~luka@88.200.96.18] has quit [Ping timeout: 240 seconds]
07:44 -!- niemeyer [~niemeyer@201-35-72-214.pltce701.dsl.brasiltelecom.net.br] has
joined #go-nuts
07:52 -!- rutkowski [~adrian@078088207115.walbrzych.vectranet.pl] has joined
#go-nuts
07:52 -!- awidegreen [~quassel@62.176.237.78] has joined #go-nuts
07:56 -!- jhh [~jhh@f048168135.adsl.alicedsl.de] has joined #go-nuts
07:56 -!- jhh [~jhh@f048168135.adsl.alicedsl.de] has quit [Read error: Connection
reset by peer]
07:57 -!- napsy [~luka@88.200.96.18] has joined #go-nuts
07:57 -!- jhh [~jhh@f048168135.adsl.alicedsl.de] has joined #go-nuts
07:57 -!- jhh [~jhh@f048168135.adsl.alicedsl.de] has quit [Remote host closed the
connection]
07:57 -!- jhh [~jhh@0-008.vpn.RWTH-Aachen.DE] has joined #go-nuts
08:04 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has quit [Quit: Disappears
in a puff of smoke]
08:22 -!- ShadowIce [~pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
08:25 < Bombe> I somehow can not compile Go. It aborts when assembling
linux/amd64/sys.s: http://pastebin.org/1201439
08:36 -!- slashus2 [~slashus2@74-141-108-109.dhcp.insightbb.com] has quit [Quit:
slashus2]
08:38 -!- melba [~a@85.11.190.15] has joined #go-nuts
08:38 -!- melba [~a@85.11.190.15] has quit [Changing host]
08:38 -!- melba [~a@unaffiliated/lazz0] has joined #go-nuts
08:43 -!- diegoviola [~diego@190.23.48.144] has joined #go-nuts
08:43 < diegoviola> hi
08:45 -!- femtoo [~femto@95-89-248-241-dynip.superkabel.de] has joined #go-nuts
08:48 -!- jhh_ [~jhh@f048168135.adsl.alicedsl.de] has joined #go-nuts
08:52 -!- jhh [~jhh@0-008.vpn.RWTH-Aachen.DE] has quit [Ping timeout: 272 seconds]
08:53 -!- virtualsue [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has joined
#go-nuts
08:56 -!- res [c9ed8246@gateway/web/freenode/ip.201.237.130.70] has quit [Ping
timeout: 252 seconds]
08:56 -!- ronnyy [~quassel@p4FF1CB30.dip.t-dialin.net] has quit [Remote host
closed the connection]
09:04 -!- nsf [~nsf@jiss.convex.ru] has joined #go-nuts
09:08 -!- Fish [~Fish@bus77-2-82-244-150-190.fbx.proxad.net] has joined #go-nuts
09:21 -!- photron [~photron@port-92-201-47-154.dynamic.qsc.de] has joined #go-nuts
09:23 -!- virtualsue_ [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has joined
#go-nuts
09:24 -!- virtualsue [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has quit [Ping
timeout: 276 seconds]
09:37 -!- fenicks [~christian@log77-3-82-243-254-112.fbx.proxad.net] has quit
[Ping timeout: 276 seconds]
09:42 < diegoviola> go will replace java?  ;)
09:48 < Bombe> Sure, right after you have been replaced by a broken
typewriter.
09:50 < diegoviola> did i touched you a nerve or something?
09:51 < Bombe> Not at all.  Why are people so insistent on things replacing
other things?  Especially things that have nothing to do with each other?
09:53 < diegoviola> yeah, that is a good point
09:53 < diegoviola> does Go has libraries to do database work, GUI apps, web
apps, etc?
09:54 < napsy> sure
09:54 < napsy> diegoviola: http://go-lang.cat-v.org/library-bindings
09:55 < diegoviola> Bombe: I don't want things to be replaced or Java to be
replaced
09:56 < Bombe> Oh, then I must have understood “go will replace java?  ;)”
completely wrong and I have to apologize.
09:56 < diegoviola> I just hope that languages like Go make a change in the
computing industry, I mean, most jobs nowadays all ask for .Net or Java experience
09:56 < Bombe> And it will stay that way for quite some time, probably.
09:57 < Bombe> Because Java and .NET are here now, and they are proven to
work.
09:57 < diegoviola> yeah apologies for that :)
09:57 < diegoviola> I was kidding
09:57 < diegoviola> anyways
09:57 * araujo writing a small scripting language too
09:58 < melba> diegoviola, no jokes, this is the internet
09:58 < melba> srs bsns
09:58 < Bombe> :)
09:59 < diegoviola> :)
10:02 -!- ukai [~ukai@nat/google/x-vvtclmpcnfadptux] has quit [Ping timeout: 264
seconds]
10:03 -!- ukai [~ukai@nat/google/x-ertfzryhyarxhoue] has joined #go-nuts
10:13 -!- tvw [~tv@e176001162.adsl.alicedsl.de] has joined #go-nuts
10:16 < uriel> Bombe: I'm not really that interested in seeing java replaced
10:17 < uriel> Bombe: more in seeing it killed, its corpse thrown to the
dogs, then the dogs burned, and the ashes thrown into a supper massive black hole
10:19 < uriel> and java and .net are 'proven to work' in the same sense that
communism is proven to work in North Korea
10:24 < diegoviola> it's fine if java and .net are proven to work, but i
would like to see more options, say Go being required in jobs and more options
like that, more flexibility :)
10:26 < diegoviola> i understand that most companies can't take the risk of
using new languages and tools though
10:27 < diegoviola> uriel: why do you hate java so much?
10:27 < diegoviola> or why you don't like it...
10:27 < Namegduf> "proven to work" is a really low line for quality.
10:28 < diegoviola> i agree
10:29 -!- Drahgkar_mobile [~chris@66.93.162.10] has quit [Quit: Leaving]
10:30 < diegoviola> sometimes new tools are better and more stable than the
old tools that are "proven to work", but sometimes some people just don't see
that, they go with the tools that have been used for long and are "proven to work"
10:34 -!- tasosos [~tasosos@178.128.49.242.dsl.dyn.forthnet.gr] has joined
#go-nuts
10:38 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Tiarra 0.1+svn-37855M:
SIGTERM received; exit]
10:39 < nsf> hehe, I've never used java, but regarding .NET I can say that
it's one of the most horrible language libraries I've ever seen
10:40 < nsf> the VM itself it fine though
10:40 < nsf> is*
10:41 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
10:46 < diegoviola> yeah i've used the vm and some libs with other languages
but not the java language itself
10:46 < diegoviola> jvm, not .net
10:48 -!- virtualsue_ [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has quit [Ping
timeout: 265 seconds]
10:51 < uriel> diegoviola: http://harmful.cat-v.org/software/java
10:51 -!- welterde [~welterde@not.welterde.de] has quit [Quit: I'll be back]
10:54 < diegoviola> lol
10:54 * diegoviola reading...
10:55 -!- wjlroe [~will@78-86-14-131.zone2.bethere.co.uk] has joined #go-nuts
10:55 -!- Chase-san [~Chase-san@74.83.20.194] has joined #go-nuts
10:57 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has joined #go-nuts
10:58 -!- wjlroe [~will@78-86-14-131.zone2.bethere.co.uk] has quit [Client Quit]
10:58 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has quit [Client Quit]
11:01 -!- wrtp [~rog@92.17.36.40] has joined #go-nuts
11:03 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-177-190.clienti.tiscali.it] has
joined #go-nuts
11:11 -!- wrtp [~rog@92.17.36.40] has quit [Quit: wrtp]
11:17 -!- wrtp [~rog@92.17.36.40] has joined #go-nuts
11:43 -!- wrtp [~rog@92.17.36.40] has quit [Quit: wrtp]
11:43 -!- navigator [~navigator@p548968AF.dip.t-dialin.net] has joined #go-nuts
11:45 -!- wjlroe [~will@78-86-14-131.zone2.bethere.co.uk] has joined #go-nuts
11:46 -!- Chase-san [~Chase-san@74.83.20.194] has left #go-nuts []
11:51 -!- terrex [~terrex@84.122.67.111.dyn.user.ono.com] has joined #go-nuts
11:53 -!- wrtp [~rog@92.17.36.40] has joined #go-nuts
11:53 -!- Fish [~Fish@bus77-2-82-244-150-190.fbx.proxad.net] has quit [Remote host
closed the connection]
11:54 -!- wrtp [~rog@92.17.36.40] has quit [Client Quit]
11:58 -!- gabriel9 [~gabriel9@93.157.192.28] has quit [Read error: Connection
reset by peer]
11:58 -!- napsy [~luka@88.200.96.18] has quit [Ping timeout: 245 seconds]
12:00 -!- napsy [~luka@88.200.96.18] has joined #go-nuts
12:09 -!- MaksimBurnin1 [~max@44.188-224-87.telenet.ru] has joined #go-nuts
12:09 -!- MaksimBurnin [~max@44.188-224-87.telenet.ru] has quit [Read error:
Connection reset by peer]
12:19 -!- gabriel9 [~gabriel9@93.157.192.28] has joined #go-nuts
12:21 -!- niemeyer [~niemeyer@201-35-72-214.pltce701.dsl.brasiltelecom.net.br] has
quit [Ping timeout: 245 seconds]
12:30 -!- drry [~drry@unaffiliated/drry] has quit [Ping timeout: 240 seconds]
12:33 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
12:33 -!- drry [~drry@unaffiliated/drry] has quit [Excess Flood]
12:33 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
12:38 -!- virtualsue [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has joined
#go-nuts
12:41 -!- rejb [~rejb@unaffiliated/rejb] has joined #go-nuts
12:46 -!- RobertLJ [~quassel@c-68-44-163-191.hsd1.nj.comcast.net] has joined
#go-nuts
13:15 -!- falconin1y [~noclaf@unaffiliated/falconindy] has joined #go-nuts
13:23 -!- Fish [~Fish@9fans.fr] has joined #go-nuts
13:34 -!- diegoviola [~diego@190.23.48.144] has quit [Ping timeout: 240 seconds]
13:35 -!- yihuang [~yihuang@183.17.164.69] has joined #go-nuts
13:35 -!- yihuang [~yihuang@183.17.164.69] has left #go-nuts []
13:44 -!- MaksimBurnin1 [~max@44.188-224-87.telenet.ru] has quit [Ping timeout:
252 seconds]
13:52 -!- ikaros [~ikaros@2001:41b8:9bf:fe04:1:c8ff:fe4b:11cc] has joined #go-nuts
14:08 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has joined
#go-nuts
14:13 -!- kingfishr [~kingfishr@c-24-130-147-77.hsd1.ca.comcast.net] has joined
#go-nuts
14:25 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
14:30 -!- rlab [~Miranda@91.200.158.34] has quit [Ping timeout: 240 seconds]
14:33 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
14:34 -!- skelterjohn [~jasmuth@c-76-124-135-199.hsd1.nj.comcast.net] has joined
#go-nuts
14:34 -!- rejb [~rejb@unaffiliated/rejb] has quit [Ping timeout: 276 seconds]
14:51 -!- falconin1y [~noclaf@unaffiliated/falconindy] has quit [Read error:
Connection reset by peer]
14:51 -!- falconindy [~noclaf@unaffiliated/falconindy] has quit [Read error:
Connection reset by peer]
14:52 -!- falconindy [~noclaf@unaffiliated/falconindy] has joined #go-nuts
14:53 -!- falconin1y [~noclaf@unaffiliated/falconindy] has joined #go-nuts
14:57 -!- jcao219 [~jcao219@pool-173-74-61-111.dllstx.fios.verizon.net] has joined
#go-nuts
15:06 -!- gnuvince [~vince@70.35.168.31] has quit [Ping timeout: 245 seconds]
15:07 -!- gnuvince [~vince@205.175-ppp.3menatwork.com] has joined #go-nuts
15:12 -!- Adys [~Adys@unaffiliated/adys] has quit [Read error: Connection reset by
peer]
15:19 -!- Fish [~Fish@9fans.fr] has quit [Remote host closed the connection]
15:21 -!- Adys [~Adys@unaffiliated/adys] has joined #go-nuts
15:38 -!- Davidian1024 [~Davidian1@cpe-98-27-192-193.neo.res.rr.com] has joined
#go-nuts
15:40 -!- Adys [~Adys@unaffiliated/adys] has quit [Quit: I ♥ Unicode]
15:42 -!- Adys [~Adys@unaffiliated/adys] has joined #go-nuts
15:49 -!- MaksimBurnin [~max@44.188-224-87.telenet.ru] has joined #go-nuts
15:58 -!- femtoo [~femto@95-89-248-241-dynip.superkabel.de] has quit [Quit:
Leaving]
16:02 -!- scyth [~scyth@rots.in.rs] has quit [Read error: Connection reset by
peer]
16:03 -!- terrex [~terrex@84.122.67.111.dyn.user.ono.com] has quit [Quit:
Leaving.]
16:07 -!- napsy [~luka@88.200.96.18] has quit [Ping timeout: 272 seconds]
16:09 -!- JWHardcastle [~jwhardcas@pool-96-244-169-178.bltmmd.east.verizon.net]
has joined #go-nuts
16:11 -!- napsy [~luka@88.200.96.18] has joined #go-nuts
16:14 -!- RobertLJ [~quassel@c-68-44-163-191.hsd1.nj.comcast.net] has quit [Ping
timeout: 276 seconds]
16:17 -!- scyth [~scyth@rots.in.rs] has joined #go-nuts
16:23 -!- virtualsue [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has quit [Ping
timeout: 252 seconds]
16:23 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
16:26 -!- fenicks [~christian@log77-3-82-243-254-112.fbx.proxad.net] has joined
#go-nuts
16:28 < fenicks> hello
16:33 -!- jcao219 [~jcao219@pool-173-74-61-111.dllstx.fios.verizon.net] has quit
[Read error: Connection reset by peer]
16:34 -!- fuzzybyte [~fuzzybyte@77.79.7.8] has joined #go-nuts
16:42 -!- femtoo [~femto@95-89-248-241-dynip.superkabel.de] has joined #go-nuts
16:46 -!- dahankzter [~henrik@92-244-3-192.customers.ownit.se] has joined #go-nuts
16:52 -!- aho [~nya@fuld-4d00d4ce.pool.mediaWays.net] has joined #go-nuts
16:56 < mpl> hi.  can I initialize a map directly with values instead of
with make?
16:57 < mpl> ah yes, with a composite literal, nm.
16:58 -!- peterdn_ [~peterdn@host86-135-20-84.range86-135.btcentralplus.com] has
joined #go-nuts
16:59 -!- norayr [~noch@212.34.238.61] has left #go-nuts []
17:01 -!- peterdn [~peterdn@host81-159-237-3.range81-159.btcentralplus.com] has
quit [Ping timeout: 245 seconds]
17:03 -!- peterdn_ [~peterdn@host86-135-20-84.range86-135.btcentralplus.com] has
quit [Client Quit]
17:05 -!- ako [~nya@fuld-4d00d07e.pool.mediaWays.net] has joined #go-nuts
17:07 -!- aho [~nya@fuld-4d00d4ce.pool.mediaWays.net] has quit [Ping timeout: 240
seconds]
17:08 -!- ikaros_ [~ikaros@188.107.221.102] has joined #go-nuts
17:09 -!- rutkowski [~adrian@078088207115.walbrzych.vectranet.pl] has quit [Quit:
WeeChat 0.3.3-dev]
17:11 -!- ronnyy [~quassel@p4FF1CB30.dip.t-dialin.net] has joined #go-nuts
17:17 -!- gabriel9 [~gabriel9@93.157.192.28] has quit [Remote host closed the
connection]
17:36 -!- zerd [~quassel@tor.zerd.net] has quit [Read error: Operation timed out]
17:40 < nsf> hehe, an interesting fact: lately I've been learning ruby and
rewrote a script that runs tests for gocode in it: http://gist.github.com/595319
but now I decided to write the same thing in Go and compare performance and here
it is: http://gist.github.com/598145
17:40 < nsf> maybe not very beautiful, but works
17:40 < nsf> their performance is one to one
17:41 < nsf> 1.090 secs for running all 29 tests for gocode
17:41 < nsf> even though I've written Go version without a single mistake
(compiled and running successfully)
17:41 < nsf> ruby thing kinda looks better :)
17:42 < nsf> I guess there is the best tool for each task
17:43 -!- zerd [~quassel@tor.zerd.net] has joined #go-nuts
17:43 -!- ikaros_ [~ikaros@188.107.221.102] has quit [Ping timeout: 272 seconds]
17:50 -!- falconin1y [~noclaf@unaffiliated/falconindy] has quit [Quit: leaving]
17:50 -!- falconin1y [~noclaf@unaffiliated/falconindy] has joined #go-nuts
17:50 -!- falconin1y [~noclaf@unaffiliated/falconindy] has quit [Client Quit]
17:51 -!- falconin1y [~noclaf@unaffiliated/falconindy] has joined #go-nuts
17:52 -!- falconin1y [~noclaf@unaffiliated/falconindy] has quit [Client Quit]
17:52 -!- falconindy [~noclaf@unaffiliated/falconindy] has quit [Remote host
closed the connection]
17:52 -!- falconindy [~noclaf@unaffiliated/falconindy] has joined #go-nuts
17:52 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
17:59 < nickaugust> nsf: i dont know where you find the time :)
17:59 -!- zerd [~quassel@tor.zerd.net] has quit [Ping timeout: 240 seconds]
18:00 < nsf> nickaugust: to do what?
18:00 < nickaugust> for all these projects i mean
18:00 -!- niemeyer [~niemeyer@189.27.133.105.dynamic.adsl.gvt.net.br] has joined
#go-nuts
18:01 < nsf> most of them are really small
18:02 < mpl> I'm more amazed at how much time ppl can waste over
trivialities on the go-nuts list, or just writing about their life there...
18:02 < nsf> :D
18:03 < nsf> well known fact
18:03 < nsf> people talk too much
18:03 < nsf> :)
18:03 < Namegduf> I know, particularly on certain subjects.
18:03 < nsf> or in this era "talk" should be replaced with "communicate"
18:03 < Namegduf> I've started writing a reply a number of times, but then
decided that I should just stay out of it.
18:03 < cbeck> I don't know that a whole lot of it can be really classed as
communication
18:04 < cbeck> Namegduf: likewise
18:04 < mpl> my turn.  I've just finished a little go-gtk app that takes as
input the signal coming from a labview program to display various astronomical
images, and I'm pretty happy about that.  :)
18:04 < Namegduf> Neat.
18:07 < mpl> the setup is pretty horrible.  as I am stubborn and wanted to
do that in go, the gtk part has to run on windows.  while the labview program has
to run on windows (because installing labview + the drivers for the device on
linux is a nightmare).  so what I do is I have the output of one sent to the input
of the other through a netcat, with the go-gtk program running in a virtualbox.
18:07 -!- zerd [~quassel@tor.zerd.net] has joined #go-nuts
18:07 < mpl> s/has to run on windows/has to run on linux/ obviously.
18:08 < mpl> </ spilling my life>
18:08 < nsf> hehe, I'm thinking a lot about that lately
18:08 < nsf> because apparently Go will not have shared libraries
18:08 < mpl> about what?
18:08 < mpl> about windows compat?
18:08 < nsf> apps communication :)
18:08 < Namegduf> I think Go's going to have them in gccgo eventually.
18:09 < mpl> yeah, that netcat trick saved my life, I'm so happy I could get
away with that.
18:09 < Namegduf> Well, maybe just dynamic libraries, not shared libraries.
18:09 < vsmatck> Until Go does the LGPL will be equivalent to the GPL as far
as Go is concerned.
18:09 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
18:09 < vsmatck> Which could be a problem for freedom haters.  :)
18:09 < nsf> Namegduf: interesting point
18:09 < Namegduf> That is a side effect.
18:09 -!- virtualsue [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has joined
#go-nuts
18:10 < mpl> only problem is gtk + big images in memory + virtualbox =
fuckton of memory.  so it won't run on a 512MB laptop.
18:10 < Namegduf> Who are the freedom haters?
18:10 < Namegduf> The LGPL-but-not-GPL fans, or GPL varient fans in general?
18:10 < Namegduf> It's hard to tell with all the versions of the word
freedom out there.
18:10 < mpl> as long as they leave the fries alone...  ;)
18:11 -!- major_majors [~major_maj@c-68-40-195-246.hsd1.mi.comcast.net] has joined
#go-nuts
18:11 < vsmatck> Namegduf: I was just making a bad joke.  But I guess in the
context of my joke freedom haters would be those who don't want to GPL their Go
program to use a LGPL library.  *shrug*
18:11 * vsmatck has bad sense of humor.
18:11 < Namegduf> Aha.
18:12 < Namegduf> I don't actually care about freedom at all as a general
thing, the only thing I dislike is condition attached to usage through measures
outside of copyright.
18:12 < Namegduf> *conditions
18:13 < vsmatck> Oh like GPLv3 tivoization stuff?
18:13 < Namegduf> More like EULAs.
18:14 < nbjoerg> well
18:14 < nbjoerg> strictly speaking, the GPL is more like an EULA than most
other licenses
18:14 < Namegduf> It isn't remotely EULA-like.
18:14 < vsmatck> I don't think I've ever read a EULA in my life so I really
don't know what you guys are talking about.  :)
18:14 -!- slashus2 [~slashus2@74-141-108-109.dhcp.insightbb.com] has joined
#go-nuts
18:14 < Namegduf> An EULA applies restrictions to usage of a product, which
sans an EULA can be done without restrictions.
18:15 < nbjoerg> right, just like the GPL :)
18:15 < Namegduf> (As copyright doe not restrict uage)
18:15 < vsmatck> oh oh
18:15 < Namegduf> The GPL does not restrict usage at all- it provides
limited permissions to modify and redistribute, which sans a licence cannot be
done.
18:15 < Namegduf> (As copyright restricts those actions by default)
18:16 < Namegduf> An EULA restricts what you could do compared to a copy
without any legalese at all, the GPL extends it.  Different directions.
18:16 < Namegduf> It's the former I find objectionable.
18:16 < nbjoerg> Namegduf: the GPL restricts what I can do with code *I*
have written
18:16 < Namegduf> And?
18:17 < nbjoerg> that's the part I consider to be very EULA like
18:17 < vsmatck> The thing I most don't like (I think it's probably a EULA
thing) is client access licenses or licenses which only let you use 1 CPU and
artificial crap like that.
18:17 < Namegduf> It might be in a very emotional sense, but it isn't for
any particularly rational reason.
18:17 < nbjoerg> just like the MPEG LA license -- you may use the video
software you bought from Adobe for 500$ for non-commerical use.  otherwise, you
have to buy a new license from us
18:17 < Namegduf> Restricting what you can do with code you write only
applies when the code you write is a derivative work.
18:18 -!- ikaros_ [~ikaros@188.107.221.102] has joined #go-nuts
18:18 < nbjoerg> that's the part of the GPL that never has been tested in
court AFAIK
18:18 < nbjoerg> and the GPL definition of derivative work is not the same
as the definition in copyright laws
18:18 < nbjoerg> which makes the GPL more like a contract and less like a
license
18:19 < Namegduf> False.
18:19 < Namegduf> That last line was kinda out there.
18:19 < Namegduf> IIRC the Berne Convention doesn't cover software at all,
so there's no definition in copyright law for the GPL to have a definition like.
18:19 < nbjoerg> Namegduf: of course it does cover software
18:20 < Namegduf> I mean it does not explicitly define a derivative work in
the context of software.
18:20 < nbjoerg> the precise definitions differ between jurisdictions and
are generally more case law than written down
18:20 < nbjoerg> but there is a very practical test
18:21 < nbjoerg> did you write it without copying from other work?
18:21 < nbjoerg> if you do, it is not a derived work
18:21 < Namegduf> At any rate, the GPL by definition can only cover the
definition in copyright law or better.
18:21 < nbjoerg> if it is to be considered a license and not a contract
18:22 < nbjoerg> "better" in this sense means less restrictive, just to be
precise
18:22 < Namegduf> Right.
18:22 < Namegduf> The thing is that such a contract would need to be agreed
to.
18:22 < nbjoerg> like I said, I don't know a single case where this actually
ended up in court anywhere
18:22 < nbjoerg> all GPL violation cases I know are based on the
redistribution clause
18:22 < Namegduf> If you didn't agree to the GPL in some way before/while
getting a copy of the program, you could create your not-legally-a-derivative-work
all you like.
18:23 < Namegduf> And no projects at present force people to "agree" to it,
because it is presented and written as a licence.
18:23 < nbjoerg> simplest example, I write a program that utilizes readline.
I ship my object files and link them at my client
18:23 < nbjoerg> why is my program a derived work of readline?  RMS says it
is
18:24 < Namegduf> The thing is that that's a question of what copyright law
restricts, not a question of what the GPL grants.
18:25 < Namegduf> The GPL would still grant the same things in the same
conditions, it'd just affect what you could do without a licence under copyright
law.
18:25 < nbjoerg> copyright law says my own work is not a derivate of
readline, because I didn't copy from it
18:26 < nbjoerg> [headers are a bit special, but they normally don't qualify
for trivility]
18:26 < Namegduf> Then you can go with that regardless of whatever RMS says
and if he doesn't like it he can take you to court and test it.  :P
18:26 -!- ronnyy [~quassel@p4FF1CB30.dip.t-dialin.net] has quit [Remote host
closed the connection]
18:26 < nbjoerg> of course, I still would have to (optionally) ship sources
for readline etc
18:26 < nbjoerg> which is the point, everyone sued so far was on
redistribution of (modified) sources
18:27 < Namegduf> Yeah.
18:27 < nbjoerg> anyway, this is off topic :)
18:27 < Namegduf> Heh, yeah, sorry.
18:27 < nbjoerg> just because the channel says we are nuts
18:35 -!- major_majors [~major_maj@c-68-40-195-246.hsd1.mi.comcast.net] has quit
[Quit: major_majors]
18:37 -!- crazy2be [~justin@S0106001ac401d400.cg.shawcable.net] has joined
#go-nuts
18:55 -!- gabriel9 [~gabriel9@93.157.192.28] has joined #go-nuts
19:00 -!- l00t [~i-i3id3r_@20150146192.user.veloxzone.com.br] has joined #go-nuts
19:09 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:a9e0:4e38:64b7:bb85] has joined
#go-nuts
19:12 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
19:12 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
19:17 -!- niemeyer [~niemeyer@189.27.133.105.dynamic.adsl.gvt.net.br] has quit
[Ping timeout: 245 seconds]
19:18 -!- ssjones [~ssjones@67-61-100-203.cpe.cableone.net] has quit [Read error:
Connection reset by peer]
19:23 -!- zerd [~quassel@tor.zerd.net] has quit [Remote host closed the
connection]
19:23 -!- zerd [~quassel@tor.zerd.net] has joined #go-nuts
19:25 -!- slashus2 [~slashus2@74-141-108-109.dhcp.insightbb.com] has quit [Quit:
slashus2]
19:25 -!- ssjones [~ssjones@67-61-100-203.cpe.cableone.net] has joined #go-nuts
19:36 -!- falconindy [~noclaf@unaffiliated/falconindy] has quit [Quit: Lost
terminal]
19:38 -!- jcao219 [~jcao219@pool-173-74-61-111.dllstx.fios.verizon.net] has joined
#go-nuts
19:45 -!- jcao219 [~jcao219@pool-173-74-61-111.dllstx.fios.verizon.net] has quit
[Read error: Connection reset by peer]
19:46 -!- tvw [~tv@e176001162.adsl.alicedsl.de] has quit [Remote host closed the
connection]
19:46 -!- jcao219 [~jcao219@pool-173-74-61-111.dllstx.fios.verizon.net] has joined
#go-nuts
19:50 -!- nsf [~nsf@jiss.convex.ru] has quit [Quit: WeeChat 0.3.3]
19:57 -!- falconindy [~noclaf@unaffiliated/falconindy] has joined #go-nuts
20:04 -!- fabled [~fabled@letku109.adsl.netsonic.fi] has quit [Quit: Ex-Chat]
20:04 -!- ikaros_ [~ikaros@188.107.221.102] has quit [Ping timeout: 265 seconds]
20:10 -!- kingfishr [~kingfishr@c-24-130-147-77.hsd1.ca.comcast.net] has quit
[Remote host closed the connection]
20:13 -!- femtoo [~femto@95-89-248-241-dynip.superkabel.de] has quit [Read error:
Connection reset by peer]
20:15 -!- sukuri1 [~travis@194.10.188.72.cfl.res.rr.com] has joined #go-nuts
20:22 -!- rejb [~rejb@unaffiliated/rejb] has joined #go-nuts
20:23 -!- wjlroe [~will@78-86-14-131.zone2.bethere.co.uk] has quit [Quit: Get
MacIrssi - http://www.sysctl.co.uk/projects/macirssi/]
20:24 -!- falconindy [~noclaf@unaffiliated/falconindy] has quit [Quit: Lost
terminal]
20:32 -!- falconindy [~noclaf@unaffiliated/falconindy] has joined #go-nuts
20:34 -!- niemeyer [~niemeyer@189.98.163.239] has joined #go-nuts
20:38 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:a9e0:4e38:64b7:bb85] has quit
[Quit: Leaving.]
20:38 -!- JWHardcastle [~jwhardcas@pool-96-244-169-178.bltmmd.east.verizon.net]
has quit [Quit: JWHardcastle]
20:41 -!- dju [dju@fsf/member/dju] has quit [Quit: Quitte]
20:45 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
20:48 -!- crazy2be [~justin@S0106001ac401d400.cg.shawcable.net] has left #go-nuts
[]
20:50 -!- Fish [~Fish@9fans.fr] has joined #go-nuts
20:54 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has joined #go-nuts
20:54 -!- ShadowIce [~pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
20:57 -!- ExtraSpice [~XtraSpice@88.118.34.223] has quit [Ping timeout: 240
seconds]
21:00 -!- dacc [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has joined #go-nuts
21:01 -!- tvw [~tv@e176001162.adsl.alicedsl.de] has joined #go-nuts
21:02 -!- tasosos [~tasosos@178.128.49.242.dsl.dyn.forthnet.gr] has quit [Remote
host closed the connection]
21:05 -!- sukuri1 [~travis@194.10.188.72.cfl.res.rr.com] has quit [Quit: Leaving.]
21:07 -!- navigator [~navigator@p548968AF.dip.t-dialin.net] has quit [Quit:
WeeChat 0.3.3]
21:10 -!- peterdn [~peterdn@host86-135-20-84.range86-135.btcentralplus.com] has
joined #go-nuts
21:11 -!- jhh [~jhh@f048168135.adsl.alicedsl.de] has quit [Quit: jhh]
21:11 < dacc> anyone have a copy of a working REPL that doesn't require
readline?
21:19 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Read error:
Connection reset by peer]
21:20 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
21:20 -!- niemeyer [~niemeyer@189.98.163.239] has quit [Ping timeout: 245 seconds]
21:21 -!- gabriel9 [~gabriel9@93.157.192.28] has quit [Read error: Connection
reset by peer]
21:23 -!- gabriel9 [~gabriel9@93.157.192.28] has joined #go-nuts
21:26 -!- awidegreen [~quassel@62.176.237.78] has quit [Remote host closed the
connection]
21:26 -!- Fish [~Fish@9fans.fr] has quit [Remote host closed the connection]
21:27 -!- tvw [~tv@e176001162.adsl.alicedsl.de] has quit [Ping timeout: 245
seconds]
21:27 -!- [Eko] [~eko@res-128-61-89-71.res.gatech.edu] has quit [Remote host
closed the connection]
21:30 -!- GoBIR [~gobir@res-128-61-89-71.res.gatech.edu] has quit [Read error:
Connection reset by peer]
21:31 -!- GoBIR [~gobir@res-128-61-89-71.res.gatech.edu] has joined #go-nuts
21:31 -!- piyushmishra [~piyushmis@117.200.224.231] has joined #go-nuts
21:31 -!- rlab [~Miranda@91.200.158.34] has quit [Read error: Connection reset by
peer]
21:33 -!- niemeyer [~niemeyer@189.27.132.136.dynamic.adsl.gvt.net.br] has joined
#go-nuts
21:35 -!- ikaros [~ikaros@2001:41b8:9bf:fe04:1:c8ff:fe4b:11cc] has quit [Quit:
Leave the magic to Houdini]
21:37 -!- dacc1 [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has joined #go-nuts
21:37 -!- dacc [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has quit [Read error:
Connection reset by peer]
21:42 -!- photron [~photron@port-92-201-47-154.dynamic.qsc.de] has quit [Ping
timeout: 255 seconds]
21:44 -!- cenuij [~cenuij@93.26.149.132] has joined #go-nuts
21:44 -!- cenuij [~cenuij@93.26.149.132] has quit [Changing host]
21:44 -!- cenuij [~cenuij@base/student/cenuij] has joined #go-nuts
21:48 -!- virtualsue [~chatzilla@93-97-62-8.zone5.bethere.co.uk] has quit [Ping
timeout: 240 seconds]
21:51 -!- niemeyer [~niemeyer@189.27.132.136.dynamic.adsl.gvt.net.br] has quit
[Ping timeout: 245 seconds]
21:56 -!- dacc1 [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has quit [Ping
timeout: 240 seconds]
22:02 -!- dacc [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has joined #go-nuts
22:02 -!- dacc1 [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has joined #go-nuts
22:06 -!- dacc1 [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has quit [Client
Quit]
22:07 -!- dacc [~Adium@c-67-171-32-251.hsd1.wa.comcast.net] has quit [Ping
timeout: 265 seconds]
22:07 -!- dahankzter [~henrik@92-244-3-192.customers.ownit.se] has quit [Ping
timeout: 252 seconds]
22:09 -!- douglas19 [~douglas19@187.10.8.15] has joined #go-nuts
22:12 -!- piyushmishra [~piyushmis@117.200.224.231] has quit [Quit: Leaving.]
22:22 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has quit [Quit: major_majors]
22:32 -!- fenicks [~christian@log77-3-82-243-254-112.fbx.proxad.net] has left
#go-nuts []
22:35 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has joined #go-nuts
22:40 -!- RobertLJ [~quassel@c-68-44-163-191.hsd1.nj.comcast.net] has joined
#go-nuts
22:46 -!- melba [~a@unaffiliated/lazz0] has left #go-nuts []
22:49 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has quit [Quit: major_majors]
22:55 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-177-190.clienti.tiscali.it] has
quit [Quit: E se abbasso questa leva che succ...]
23:20 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Read error:
Connection reset by peer]
23:20 -!- jA_cOp_ [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
23:23 -!- kingfishr [~kingfishr@c-24-130-147-77.hsd1.ca.comcast.net] has joined
#go-nuts
23:25 -!- thomas_b [~thomasb@cm-84.215.47.51.getinternet.no] has quit [Quit:
leaving]
23:28 -!- artefon [~thiago@187.114.48.33] has joined #go-nuts
23:31 -!- thomas_b [~thomasb@cm-84.215.47.51.getinternet.no] has joined #go-nuts
23:38 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
23:40 -!- jhawk28 [~jhawk28@user-142gfte.cable.mindspring.com] has joined #go-nuts
23:50 -!- major_majors [~major_maj@173-10-44-57-Michigan.hfc.comcastbusiness.net]
has joined #go-nuts
23:53 -!- kanru [~kanru@61-228-155-152.dynamic.hinet.net] has quit [Ping timeout:
276 seconds]
23:55 -!- douglas19 [~douglas19@187.10.8.15] has quit [Ping timeout: 240 seconds]
23:57 -!- douglas19 [~douglas19@201-1-114-206.dsl.telesp.net.br] has joined
#go-nuts
--- Log closed Mon Sep 27 00:00:07 2010