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

--- Log opened Fri May 21 00:00:58 2010
00:03 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
00:10 -!- kjk [~Adium@67.215.69.69] has quit [Quit: Leaving.]
00:16 -!- andrewh_ [~andrewh@94-194-56-42.zone8.bethere.co.uk] has quit [Ping
timeout: 245 seconds]
00:18 < plexdev> http://is.gd/ciakc by [Michael Hoisie] in go/src/pkg/net/
-- netFD: fix race between Close and Read/Write
00:23 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
00:24 -!- alus [~gah@64.13.131.178] has quit [Remote host closed the connection]
00:24 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
00:35 < plexdev> http://is.gd/cibol by [Ken Thompson] in 4 subdirs of
go/src/cmd/ -- fix issue 798
00:35 < plexdev> http://is.gd/cibou by [Russ Cox] in go/src/cmd/gc/ -- gc:
disallow · in Go programs
00:44 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 264 seconds]
00:45 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Tiarra 0.1+svn-37367M:
SIGTERM received; exit]
00:46 -!- Venom_X [~pjacobs@74.61.90.217] has joined #go-nuts
00:47 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
00:47 -!- slashus2 [~slashus2@70.150.240.220] has joined #go-nuts
00:50 -!- fernan [~ca7a95c3@gateway/web/freenode/x-kjbgakfcvmcxrjno] has joined
#go-nuts
00:50 < fernan> still banned?
00:51 -!- slashus2 [~slashus2@70.150.240.220] has quit [Ping timeout: 265 seconds]
00:51 -!- slashus2_ [~slashus2@70.150.240.220] has joined #go-nuts
00:52 <+iant> you probably just needed to register your nick
00:57 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
01:01 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:13 -!- alus [~gah@64.13.131.178] has joined #go-nuts
01:15 -!- zyichi [~zyichi@124.205.180.154] has joined #go-nuts
01:16 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
01:18 -!- SecretofMana [~mana@142.46.164.30] has quit [Ping timeout: 265 seconds]
01:30 -!- SecretofMana [~mana@142.46.164.30] has joined #go-nuts
01:35 -!- braddunbar [~brad@rrcs-24-172-225-206.midsouth.biz.rr.com] has joined
#go-nuts
01:48 -!- braddunbar [~brad@rrcs-24-172-225-206.midsouth.biz.rr.com] has quit
[Quit: leaving]
01:55 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
01:56 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
01:57 -!- gospch [~gospch@unaffiliated/gospch] has joined #go-nuts
02:10 -!- whatsallthiscrap [~xlene@404ed.org] has joined #go-nuts
02:14 -!- zyichi [~zyichi@124.205.180.154] has quit [Quit: zyichi]
02:23 < exch> hmm.  I thought I found a nice use for interfaces, but it
doesn't quite work as I hoped :( If a type has a method 'Get() string', you can't
cast it to an interface that has 'Get() interface{}'.  Shame really.  It means I
still need to write this massive switch statement when dereferencing reflect
values
02:24 < Ginto8> well the issue is that the interface functions have to have
the same return values, not just compatible ones
02:24 < exch> yea I noticed
02:24 < jessta> exch: that would be really weird
02:24 < exch> why.  an interface{} can represent anything..  including a
string
02:24 < Eridius> because an interface{} is actually a box around the real
value
02:25 < Ginto8> I'll use the duck typing though process "If it looks like a
duck and quacks like a duck, then it's a duck.  But only if it quacks and looks
like it should"
02:25 < jessta> exch: you should read russ cox's post about interfaces
02:25 < Eridius> you can store the results of `Get() string' in an
interface{}, but that's because your code knows it's returning a string and it
boxes it up for you.  If your code doesn't know that the function its calling
really returns a string, it can't know that it needs to box it up
02:26 < Eridius> s/its calling/it's calling/
02:26 < exch> Go does it like: I'll treat it like a quaking duck, only if
it's a quacking duck of the Xyyz genus and ABC subspecies" :p
02:26 < exch> I'll write the switch statement, but this would really have
been something where interfaces would have been excellent
02:27 < Ginto8> exch: no, it just has to quack and look like it should
02:27 < Eridius> you can't think of interface{} as a wildcard, but rather as
a box that you can put things in
02:28 < Ginto8> interface{ Get() string } != interface{ Get() interface{} }
because because each Get() can have VERY different output
02:33 -!- Venom_X [~pjacobs@74.61.90.217] has quit [Quit: Venom_X]
02:36 -!- DrHennessy [~alex@74-95-55-222-Utah.hfc.comcastbusiness.net] has joined
#go-nuts
02:36 < exch> I guess I should just get used to this looking very odd
http://pastie.org/970562
02:37 < exch> Go tries very hard to reduce unnecessary typing (stuttering).
For the most part it works excellently, but this is one of those situations where
it's own ambitions create the opposite efect
02:47 -!- SecretofMana [~mana@142.46.164.30] has quit [Ping timeout: 248 seconds]
02:49 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
02:49 < Eridius> exch: why didn't you say you were using reflect.Value?
02:49 < Eridius> have you looked at reflect.Value.Interface()?
02:49 < Eridius> because that returns the value as an interface{}
02:49 < Eridius> which it seems is exactly what you're trying to do
02:49 -!- DrHennessy [~alex@74-95-55-222-Utah.hfc.comcastbusiness.net] has quit
[Quit: DrHennessy]
02:49 < exch> hmm never noticed that
02:49 < exch> i'll have a look
02:50 < Eridius> also check out Indirect() in order to get the value that is
being pointed to (since it seems your deref() function does that)
02:50 < exch> yea
02:50 < exch> I don't need pointers.  Just the values it points to
02:51 < Eridius> just loop on Indirect() until it returns its input
02:51 < Eridius> although if you have multiple levels of pointers you may be
doing something wrong ;)
02:58 < exch> righty.  that seems to do the trick
03:01 < exch> http://pastie.org/970588 <- this gives proper results
03:04 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 260
seconds]
03:15 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 240 seconds]
03:23 -!- tabo` [~tabot@camelot.tabo.pe] has left #go-nuts []
03:28 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
03:29 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
03:31 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
03:31 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
03:32 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
03:33 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
03:57 -!- tumdum [~tumdum@aty17.neoplus.adsl.tpnet.pl] has joined #go-nuts
03:57 -!- tumdum [~tumdum@aty17.neoplus.adsl.tpnet.pl] has quit [Changing host]
03:57 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
04:02 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has joined
#go-nuts
04:07 -!- dju [dju@fsf/member/dju] has joined #go-nuts
04:08 < plexdev> http://is.gd/cioom by [Ken Thompson] in 2 subdirs of go/ --
fix bug 275
04:08 < plexdev> http://is.gd/cioox by [Ken Thompson] in 2 subdirs of
go/test/ -- clean up bug 275
04:11 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
04:14 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has quit [Ping
timeout: 260 seconds]
04:23 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
04:24 -!- xenplex [~xenplex@195.46.241.226] has joined #go-nuts
04:25 -!- xenplex [~xenplex@195.46.241.226] has quit [Client Quit]
04:28 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
04:38 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 258 seconds]
04:38 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
05:01 -!- scm [justme@d134250.adsl.hansenet.de] has quit [Ping timeout: 240
seconds]
05:02 -!- aho [~nya@f050249030.adsl.alicedsl.de] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
05:03 -!- scm [justme@d134153.adsl.hansenet.de] has joined #go-nuts
05:19 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has joined #go-nuts
05:25 < plexdev> http://is.gd/citsX by [Russ Cox] in go/src/cmd/gc/ -- gc:
line number bug fix
05:26 -!- kel_ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has joined #go-nuts
05:26 -!- ShadowIce [pyoro@p4FF14C67.dip.t-dialin.net] has joined #go-nuts
05:26 -!- ShadowIce [pyoro@p4FF14C67.dip.t-dialin.net] has quit [Changing host]
05:26 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
05:31 -!- TR2N [email@89.180.154.108] has left #go-nuts []
05:35 -!- OpenSpace [~ja@77.46.254.173] has quit [Ping timeout: 265 seconds]
05:37 -!- tux21b [~christoph@90.146.60.30] has quit [Ping timeout: 276 seconds]
05:55 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Operation timed out]
05:56 < plexdev> http://is.gd/civu7 by [Russ Cox] in 3 subdirs of go/ -- gc:
handle use of builtin function outside function call
06:10 -!- tvw [~tv@e176003079.adsl.alicedsl.de] has joined #go-nuts
06:13 < plexdev> http://is.gd/ciwrD by [Robert Griesemer] in go/src/pkg/big/
-- big: implemented Int.Binomial (to be used in test/hilbert.go with the
06:15 -!- whatsallthiscrap [~xlene@404ed.org] has quit [Quit: leaving]
06:17 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
06:32 -!- kobkrit_ [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has quit [Quit:
Ex-Chat]
06:32 -!- rlab [~Miranda@91.200.158.34] has quit [Read error: Connection reset by
peer]
06:33 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
06:35 -!- slashus2 [~slashus2@70.150.240.220] has quit [Quit: slashus2]
06:36 -!- sojish [~sojish@203.197.151.138] has joined #go-nuts
06:36 -!- wrtp [~rog@89.242.170.31] has joined #go-nuts
06:39 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has quit [Ping
timeout: 248 seconds]
06:39 -!- path[l] [UPP@120.138.102.34] has quit [Quit: path[l]]
06:44 -!- tux21b [~christoph@90.146.60.30] has quit [Ping timeout: 276 seconds]
06:45 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
06:48 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
06:57 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
06:58 -!- path[l] [~path@59.162.86.164] has joined #go-nuts
07:09 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
07:12 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 252 seconds]
07:13 -!- anticw [~anticw@cwedgwood.broker.freenet6.net] has quit [Ping timeout:
276 seconds]
07:21 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has quit [Remote host
closed the connection]
07:21 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Quit: (
www.nnscript.com :: NoNameScript 4.21 :: www.esnation.com )]
07:22 -!- tvw [~tv@e176003079.adsl.alicedsl.de] has quit [Ping timeout: 276
seconds]
07:23 -!- tvw [~tv@e176003079.adsl.alicedsl.de] has joined #go-nuts
07:28 -!- kobkrit_ [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has joined
#go-nuts
07:29 -!- kobkrit_ [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has quit
[Remote host closed the connection]
07:30 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-174-17.clienti.tiscali.it] has
joined #go-nuts
07:30 -!- kobkrit_ [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has joined
#go-nuts
07:34 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has joined #go-nuts
07:35 -!- MizardX [~MizardX@unaffiliated/mizardx] has joined #go-nuts
07:36 < Abablabab> I have an exam on concurrent programming this morning,
wish me luck :)
07:37 < kmeyer> good luck ;)
07:49 -!- barismetin [~barismeti@kde/developer/baris] has joined #go-nuts
07:50 -!- kobkrit_ [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has quit
[Remote host closed the connection]
07:51 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 240 seconds]
07:51 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
07:54 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
07:54 < bortzmeyer> Abablabab: Go! :-)
07:55 < fernan> break a leg
07:55 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
joined #go-nuts
07:55 -!- kobkrit [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has joined
#go-nuts
08:04 -!- ikaros [~ikaros@f051153097.adsl.alicedsl.de] has joined #go-nuts
08:05 -!- path[l] [~path@59.162.86.164] has quit [Quit: path[l]]
08:15 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has quit [Quit: Quitte]
08:24 < MizardX> I'm having trouble with go-routines in Go for Windows.
This simple program dead-locks (I think).  I've also attached the traceback.
http://ideone.com/qLeIJ
08:24 < MizardX> I'm using the latest mingw32 version
08:25 -!- tux21b [~christoph@90.146.60.30] has quit [Ping timeout: 264 seconds]
08:25 < MizardX> 2010-05-04 version
08:26 < MizardX> s/version/build/
08:29 -!- OpenSpace [~ja@93.86.233.190] has joined #go-nuts
08:29 -!- tvw [~tv@e176003079.adsl.alicedsl.de] has quit [Remote host closed the
connection]
08:31 < MizardX> Where should I give a bug report for this?
08:34 -!- ikaros [~ikaros@f051153097.adsl.alicedsl.de] has quit [Ping timeout: 260
seconds]
08:41 < ampleyfly> MizardX: I know nothing about this, but from at the
traceback it looks like a memory allocation failed (no idea why that would result
in "gosched holding locks" though)
08:41 < ampleyfly> +?
08:42 -!- surma [~surma@zb4c3.pia.fu-berlin.de] has joined #go-nuts
08:45 -!- surma [~surma@zb4c3.pia.fu-berlin.de] has left #go-nuts []
08:46 -!- ikaros [~ikaros@f050212089.adsl.alicedsl.de] has joined #go-nuts
08:53 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 240 seconds]
08:56 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
08:57 -!- mpl [~mpl@smgl.fr.eu.org] has quit [Ping timeout: 265 seconds]
08:57 -!- mpl [~mpl@smgl.fr.eu.org] has joined #go-nuts
08:58 -!- korfuri [~korfuri@eth0.korfuri.fr] has quit [Ping timeout: 264 seconds]
08:58 -!- korfuri [~korfuri@eth0.korfuri.fr] has joined #go-nuts
09:00 -!- ikkebr [~ikke@unaffiliated/ikkebr] has joined #go-nuts
09:04 -!- ikke [~ikke@unaffiliated/ikkebr] has quit [Ping timeout: 276 seconds]
09:12 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
09:12 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
09:14 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
09:15 -!- path[l] [~path@122.182.0.38] has joined #go-nuts
09:24 -!- ryan_languagelab [~ryan_lang@88.211.56.146] has joined #go-nuts
09:24 < ryan_languagelab> hi all.  why is the default for the binaries
$HOME/bin/quietgcc rather than $HOME/bin like the docs say?
09:27 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has joined #go-nuts
09:29 -!- fernan [~ca7a95c3@gateway/web/freenode/x-kjbgakfcvmcxrjno] has quit []
09:31 -!- Ideal_ [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has joined
#go-nuts
09:36 -!- tvw [~tv@212.79.9.150] has joined #go-nuts
09:36 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
09:39 < ryan_languagelab> hi all.  why is the default for the binaries
$HOME/bin/quietgcc rather than $HOME/bin like the docs say?
09:42 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Ping timeout: 260
seconds]
09:44 < jessta> ryan_languagelab: huh?
09:45 < jessta> the default location for the binaries is $HOME/bin
09:54 -!- ikaros [~ikaros@f050212089.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
09:55 < wrtp> MizardX: the mingw implementation is buggy.
09:56 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
09:59 < ryan_languagelab> I ran ./all.bash ...  the only Go related binaries
in $HOME/bin appear to be "gomake" and "quietgcc"
10:00 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 276 seconds]
10:01 < jessta> ryan_languagelab: did the build have any errors?
10:02 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
10:02 < ryan_languagelab> ok yes i've found the error thanks
10:02 -!- ryan_languagelab [~ryan_lang@88.211.56.146] has quit [Quit: Leaving]
10:08 -!- ct529 [~quassel@biolpc1758.york.ac.uk] has joined #go-nuts
10:08 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
10:22 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
10:28 -!- path[l] [~path@122.182.0.38] has quit [Quit: path[l]]
10:34 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: i__]
10:35 -!- ct529 [~quassel@biolpc1758.york.ac.uk] has quit [Remote host closed the
connection]
10:38 -!- mertimor [~mertimor@p4FE74B1B.dip.t-dialin.net] has joined #go-nuts
10:42 < taruti> Has anyone implemented recursive locks for Go?
10:47 -!- path[l] [~path@122.182.0.38] has joined #go-nuts
10:48 < taruti> using channels is no trivial solution for this unfortunately
:(
10:49 < taruti> "work X needs to be done in a single threaded manner and may
recurse"
10:51 -!- g0bl1n [~anonymous@a213-22-69-118.cpe.netcabo.pt] has joined #go-nuts
10:52 -!- DerHorst [~Horst@e176104110.adsl.alicedsl.de] has joined #go-nuts
10:54 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
10:55 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
11:01 -!- g0bl1n [~anonymous@a213-22-69-118.cpe.netcabo.pt] has quit [Ping
timeout: 240 seconds]
11:02 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
11:07 -!- Chryson [~Chryson@c-71-61-11-114.hsd1.pa.comcast.net] has joined
#go-nuts
11:08 -!- goneri1 [~goneri@nana.rulezlan.org] has left #go-nuts []
11:11 < jessta> taruti: huh?
11:11 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Quit: WeeChat
0.3.2]
11:11 -!- path[l] [~path@122.182.0.38] has quit [Remote host closed the
connection]
11:12 -!- path[l] [~path@59.162.86.164] has joined #go-nuts
11:13 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
11:13 < taruti> jessta: just had some concurrency issues, solved them
though.
11:14 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
11:14 < jessta> taruti: what are recursive locks good for?
11:22 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
11:23 -!- DerHorst [~Horst@e176104110.adsl.alicedsl.de] has quit [Remote host
closed the connection]
11:25 -!- elvisd [~elvisd@cust.static.213-200-226-170.cybernet.ch] has joined
#go-nuts
11:28 -!- elvisd [~elvisd@cust.static.213-200-226-170.cybernet.ch] has left
#go-nuts []
11:31 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has joined #go-nuts
11:35 -!- tokuhirom [~tokuhirom@s230.GtokyoFL21.vectant.ne.jp] has quit [Ping
timeout: 276 seconds]
11:37 -!- tokuhirom [~tokuhirom@s230.GtokyoFL21.vectant.ne.jp] has joined #go-nuts
11:41 -!- ikaros [~ikaros@f050212089.adsl.alicedsl.de] has joined #go-nuts
11:42 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has quit
[Remote host closed the connection]
11:44 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
11:54 -!- ikaros [~ikaros@f050212089.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
12:03 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
12:04 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
12:11 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has quit [Ping
timeout: 265 seconds]
12:13 -!- sojish [~sojish@203.197.151.138] has left #go-nuts []
12:19 -!- korfuri [~korfuri@eth0.korfuri.fr] has quit [Ping timeout: 265 seconds]
12:26 -!- araujo [~araujo@gentoo/developer/araujo] has joined #go-nuts
12:29 -!- kobkrit [~kobkrit@2001:200:141:6151:224:21ff:fe1e:4d16] has quit [Ping
timeout: 272 seconds]
12:32 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
12:35 -!- Zoopee [alsbergt@zoopee.org] has quit [Read error: Connection reset by
peer]
12:35 -!- Zoope- [alsbergt@zoopee.org] has joined #go-nuts
12:36 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has joined
#go-nuts
12:37 -!- Zoope- [alsbergt@zoopee.org] has left #go-nuts []
12:38 -!- Zoopee [alsbergt@zoopee.org] has joined #go-nuts
12:43 -!- mertimor [~mertimor@p4FE74B1B.dip.t-dialin.net] has quit [Quit:
mertimor]
12:51 -!- korfuri [~korfuri@eth0.korfuri.fr] has joined #go-nuts
12:55 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has quit [Quit:
skelterjohn]
13:00 -!- Ideal_ [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has quit
[Quit: Ideal_]
13:04 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
13:10 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has quit [Ping
timeout: 260 seconds]
13:12 -!- jeremyw_ [~jeremyw@c-24-4-236-187.hsd1.ca.comcast.net] has joined
#go-nuts
13:20 -!- jeremyw_ [~jeremyw@c-24-4-236-187.hsd1.ca.comcast.net] has quit [Quit:
jeremyw_]
13:22 -!- emiel_ [~emiel@c-3d4071d5.610-2-64736c10.cust.bredbandsbolaget.se] has
joined #go-nuts
13:25 < emiel_> hey guys 'n girls - just playing around a little bit in go
and trying to implement some protocol-stuff; now i had the expectation that stuff
in go can be expressed short and concise, yet each of the following three i find
kind of ugly: http://gist.github.com/408821 - any sugs :)?
13:26 < jessta> emiel_: what is ugly about it?
13:26 < bortzmeyer> emiel_:
http://github.com/bortzmeyer/grong/blob/master/server.go
13:26 < emiel_> well, they all seem too expressive to me :)
13:26 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Ping
timeout: 276 seconds]
13:26 < exch> &[...]byte can be : &[]byte{} and also doesn't need to be a
pointer
13:26 < exch> so []byte{...}
13:27 < bortzmeyer> emiel_: do not use literals like 0xf0.  Give them names
13:27 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has joined
#go-nuts
13:27 < emiel_> bortzmeyer: i will, but then the problem remains
13:27 < emiel_> exch: ah
13:27 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 264 seconds]
13:28 < emiel_> ah, of course, that is better :)
13:29 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
13:34 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
13:35 < i__> emiel_: i guess pkg encoding/binary could help?
13:43 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
13:48 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
13:50 -!- Ideal_ [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has joined
#go-nuts
13:51 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has quit [Quit:
skelterjohn]
13:52 -!- tumdum [~tumdum@aty17.neoplus.adsl.tpnet.pl] has joined #go-nuts
13:52 -!- tumdum [~tumdum@aty17.neoplus.adsl.tpnet.pl] has quit [Changing host]
13:52 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
13:54 < wrtp> emiel_: i.header.Write([]byte{ 0xf0, ...  }) would be more
conventional (and is exactly the same)
13:54 < emiel_> i__: thanks :)
13:54 < wrtp> oops sorry, that's what exch said!
13:54 < emiel_> wrtp: yes, as per suggestion above i changed it into this :)
13:54 < emiel_> thanks anyway!
13:55 < wrtp> and as i__ says, encoding/binary makes reading and writing
binary quite easy
13:55 < wrtp> np
14:04 -!- tumdum_ [~tumdum@aty17.neoplus.adsl.tpnet.pl] has joined #go-nuts
14:04 -!- tumdum_ [~tumdum@aty17.neoplus.adsl.tpnet.pl] has quit [Changing host]
14:04 -!- tumdum_ [~tumdum@unaffiliated/tumdum] has joined #go-nuts
14:06 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
14:07 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Ping timeout: 248
seconds]
14:11 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
14:12 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
14:32 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
14:34 -!- xenplex [~xenplex@195.46.241.226] has joined #go-nuts
14:35 -!- belkiss [~kvirc@feu30-1-82-242-58-196.fbx.proxad.net] has joined
#go-nuts
14:40 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
14:40 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
14:41 -!- tvw [~tv@212.79.9.150] has quit [Remote host closed the connection]
14:41 -!- ikke [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
14:54 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
15:02 -!- Venom_X [~pjacobs@71.20.102.220] has joined #go-nuts
15:06 -!- anticw [~anticw@cwedgwood.broker.freenet6.net] has joined #go-nuts
15:06 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Server Configuration
changed; reconnect]
15:07 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
15:10 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
15:11 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
15:15 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
15:18 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 276 seconds]
15:19 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
15:23 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
15:24 -!- Zoopee [alsbergt@zoopee.org] has quit [Quit: Ejected]
15:24 -!- Zoopee [alsbergt@zoopee.org] has joined #go-nuts
15:28 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Server Configuration
changed; reconnect]
15:29 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
15:29 -!- drry [~drry@unaffiliated/drry] has quit [Excess Flood]
15:30 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
15:30 -!- belkiss [~kvirc@feu30-1-82-242-58-196.fbx.proxad.net] has quit [Quit:
KVIrc 4.0.0 Insomnia http://www.kvirc.net/]
15:34 -!- drry [~drry@unaffiliated/drry] has quit [Client Quit]
15:35 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
15:35 -!- grokky [~chatzilla@74.86.0.138] has quit [Ping timeout: 240 seconds]
15:36 -!- grokky [~chatzilla@222.73.189.44] has joined #go-nuts
15:40 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
15:41 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Server Configuration
changed; reconnect]
15:42 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
15:45 -!- Soultake1 [~maks@hell.student.utwente.nl] has left #go-nuts []
15:45 -!- mertimor [~mertimor@p4FE74B1B.dip.t-dialin.net] has joined #go-nuts
15:45 -!- Soultake1 [~maks@hell.student.utwente.nl] has joined #go-nuts
15:46 -!- Soultake1 [~maks@hell.student.utwente.nl] has left #go-nuts []
15:46 -!- Ideal_ [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has quit
[Quit: Ideal_]
15:47 -!- Soultaker [~maks@hell.student.utwente.nl] has joined #go-nuts
15:51 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Quit: Leaving.]
15:55 -!- drevell [~d@adsl-75-55-127-140.dsl.sfldmi.sbcglobal.net] has quit [Ping
timeout: 240 seconds]
15:55 -!- drevell [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has joined
#go-nuts
15:58 -!- mertimor [~mertimor@p4FE74B1B.dip.t-dialin.net] has quit [Quit:
mertimor]
16:01 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Ping
timeout: 258 seconds]
16:03 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has quit [Quit: Quitte]
16:05 -!- Guest63248 [~chatzilla@222.73.189.44] has quit [Ping timeout: 260
seconds]
16:06 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 265 seconds]
16:06 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
16:09 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
16:11 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Excess
Flood]
16:11 -!- xeonp [~chatzilla@222.73.189.44] has joined #go-nuts
16:15 -!- noam__ [~noam@77.127.205.252] has joined #go-nuts
16:17 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
16:18 -!- noam_ [~noam@77.127.205.252] has quit [Ping timeout: 240 seconds]
16:18 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
16:19 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Read error:
Connection reset by peer]
16:22 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Ping
timeout: 258 seconds]
16:23 -!- rhelmer [~rhelmer@adsl-69-107-48-95.dsl.pltn13.pacbell.net] has quit
[Quit: rhelmer]
16:26 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
16:27 -!- Tiger_ [~chatzilla@74.86.0.138] has joined #go-nuts
16:28 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
16:28 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
quit [Quit: Morten.  Desu~]
16:28 -!- noobs [~chatzilla@222.73.189.44] has quit [Ping timeout: 248 seconds]
16:29 -!- barismetin [~barismeti@kde/developer/baris] has quit [Remote host closed
the connection]
16:32 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Ping
timeout: 258 seconds]
16:34 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
16:36 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 240
seconds]
16:42 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
16:45 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Client
Quit]
16:46 -!- gospch [~gospch@unaffiliated/gospch] has quit [Read error: Connection
reset by peer]
16:52 -!- noobs [~chatzilla@74.86.0.138] has quit [Ping timeout: 260 seconds]
17:02 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
17:10 -!- mertimor [~mertimor@p4FE74B1B.dip.t-dialin.net] has joined #go-nuts
17:14 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
17:24 -!- noobs [~chatzilla@74.86.0.138] has joined #go-nuts
17:28 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Read error:
Connection timed out]
17:29 -!- araujo [~araujo@gentoo/developer/araujo] has joined #go-nuts
17:30 -!- gnuvince_ [~vince@70.35.162.12] has quit [Quit: What the fruit is goin'
on here!?]
17:31 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
17:31 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
17:35 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Remote host closed the
connection]
17:36 -!- eikenberry [~jae@mail.zhar.net] has joined #go-nuts
17:38 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has quit [Ping
timeout: 248 seconds]
17:44 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has joined
#go-nuts
17:44 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Tiarra 0.1+svn-37660M:
SIGTERM received; exit]
17:44 -!- aho [~nya@f051155084.adsl.alicedsl.de] has joined #go-nuts
17:45 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
17:48 -!- Amaranth [~travis@ubuntu/member/Amaranth] has left #go-nuts ["Ex-Chat"]
17:48 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has quit [Ping
timeout: 248 seconds]
17:53 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has joined
#go-nuts
17:55 -!- drry [~drry@unaffiliated/drry] has quit [Quit: Server Configuration
changed; reconnect]
17:57 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
17:59 -!- drry [~drry@unaffiliated/drry] has quit [Client Quit]
18:00 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
18:00 -!- drry [~drry@unaffiliated/drry] has quit [Excess Flood]
18:01 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
18:08 -!- rhelmer [~rhelmer@adsl-69-107-65-76.dsl.pltn13.pacbell.net] has joined
#go-nuts
18:10 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 265 seconds]
18:11 -!- path[l] [~path@59.162.86.164] has quit [Quit: path[l]]
18:12 -!- Meidor [~quassel@piggy.cs.ru.nl] has joined #go-nuts
18:17 -!- babusri [~babu@122.167.103.181] has joined #go-nuts
18:18 -!- Fish [~Fish@9fans.fr] has joined #go-nuts
18:21 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
600 seconds]
18:23 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
18:26 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
18:26 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
18:27 -!- b00m_chef [~watr@128.189.74.254] has joined #go-nuts
18:28 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
18:33 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
18:34 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
18:44 -!- b00m_chef [~watr@128.189.74.254] has quit [Ping timeout: 276 seconds]
18:56 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
18:59 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Ping timeout:
245 seconds]
19:03 -!- b00m_chef [~watr@128.189.71.42] has joined #go-nuts
19:08 -!- Abablaba1 [~Abablabab@93-96-78-46.zone4.bethere.co.uk] has joined
#go-nuts
19:08 -!- marsu [~marsu@226.65.202-77.rev.gaoland.net] has joined #go-nuts
19:08 < napsy> Hello.  Can I declare a structure inside of itself?
19:09 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
19:10 -!- Abablabab [~Abablabab@93-96-78-46.zone4.bethere.co.uk] has quit [Ping
timeout: 264 seconds]
19:10 -!- Eridius [~kevin@unaffiliated/eridius] has joined #go-nuts
19:12 < napsy> because if I do that now I get a "invalid recursive type
Node" error message
19:13 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 258 seconds]
19:13 <+iant> a struct can not have a field which is the type of the struct,
that does not make sense
19:13 <+iant> a struct can have a field which is a pointer to the struct
19:13 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has quit
[Quit: Leaving.]
19:13 < exch> type A struct { myA *A }
19:13 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
19:13 < napsy> ok thanks it works now
19:14 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
19:18 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
19:21 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Quit:
skelterjohn]
19:23 -!- b00m_chef [~watr@128.189.71.42] has quit [Ping timeout: 264 seconds]
19:24 < napsy> Is there a string function to search just for one character
like C strchr() ?
19:24 -!- Coding_2501 [~Marvin@dynamic-adsl-94-36-174-17.clienti.tiscali.it] has
quit [Quit: E se abbasso questa leva che succ...]
19:26 <+iant> napsy: there is IndexRune
19:26 < Ginto8> napsy: and Index can be called with a 1 char string
19:26 < Ginto8> IndexAny looks for more than one character
19:26 < napsy> oh ok IndexRune it is
19:27 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has left
#go-nuts ["Leaving"]
19:27 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has joined
#go-nuts
19:28 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
19:34 -!- rhelmer [~rhelmer@adsl-69-107-65-76.dsl.pltn13.pacbell.net] has quit
[Ping timeout: 260 seconds]
19:38 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
19:39 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
19:43 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
19:52 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
19:58 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: Lost terminal]
19:59 < exch> lots of interesting stuff in the google IO vids
20:00 < kmeyer> oooh, link?
20:00 < exch> http://www.youtube.com/googledevelopers
20:00 < kmeyer> thanks :)
20:00 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Ping timeout: 264 seconds]
20:00 < exch> interviews, lectures and keynotes
20:01 < exch> android 2.2 is looking pretty damn nice
20:03 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
20:06 -!- Venom_X [~pjacobs@66.54.185.131] has joined #go-nuts
20:17 -!- illya77 [~illya77@246-172-133-95.pool.ukrtel.net] has joined #go-nuts
20:22 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has joined
#go-nuts
20:25 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
20:39 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
20:41 -!- g0bl1n [~anonymous@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
20:41 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has joined
#go-nuts
20:42 -!- tumdum [~tumdum@aty17.neoplus.adsl.tpnet.pl] has joined #go-nuts
20:42 -!- tumdum [~tumdum@aty17.neoplus.adsl.tpnet.pl] has quit [Changing host]
20:42 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
20:44 -!- babusri [~babu@122.167.103.181] has quit [Ping timeout: 264 seconds]
20:44 -!- robot12 [~robot12@inferno.kgts.ru] has joined #go-nuts
20:45 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has quit
[Client Quit]
20:45 -!- illya77 [~illya77@246-172-133-95.pool.ukrtel.net] has quit [Read error:
Connection reset by peer]
20:56 -!- mertimor [~mertimor@p4FE74B1B.dip.t-dialin.net] has quit [Read error:
Connection reset by peer]
20:56 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
20:57 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
20:58 -!- Venom_X [~pjacobs@66.54.185.131] has quit [Ping timeout: 240 seconds]
21:02 -!- b00m_chef [~watr@209-52-232-163.vlan452.dsl.ucc-net.ca] has joined
#go-nuts
21:03 -!- Venom_X [~pjacobs@71.20.102.220] has joined #go-nuts
21:07 -!- mbarkhau [~koloss@dslb-084-059-167-248.pools.arcor-ip.net] has joined
#go-nuts
21:09 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
21:12 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has joined
#go-nuts
21:17 -!- robot12 [~robot12@inferno.kgts.ru] has quit [Quit: Ухожу я от вас (xchat
2.4.5 или старше)]
21:20 < plexdev> http://is.gd/cjxCe by [Robert Griesemer] in 5 subdirs of
go/ -- bignum: deprecate by moving into exp directory
21:21 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has quit [Quit:
skelterjohn]
21:24 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has joined
#go-nuts
21:25 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Ping timeout: 240 seconds]
21:25 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 240 seconds]
21:31 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has joined
#go-nuts
21:37 < plexdev> http://is.gd/cjyIj by [Robert Griesemer] in go/src/pkg/big/
-- big: fix Int.SetString comment, simplify implementation,
21:37 < plexdev> http://is.gd/cjyIn by [Russ Cox] in go/src/pkg/syscall/ --
syscall: regenerate zsyscall_linux_arm.go - fix build
21:38 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has quit [Quit:
skelterjohn]
21:38 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
21:42 -!- ikke [~ikkibr@unaffiliated/ikkebr] has quit []
21:44 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 276 seconds]
21:45 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
21:51 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 258 seconds]
21:54 < plexdev> http://is.gd/cjzOu by [Russ Cox] in go/src/pkg/syscall/ --
syscall: add Utimes, Futimes stubs for NaCl - fix build
21:54 < plexdev> http://is.gd/cjzOy by [Russ Cox] in 2 subdirs of
go/src/pkg/runtime/ -- runtime: correct tracebacks for nascent goroutines, even
closures
21:54 < plexdev> http://is.gd/cjzOL by [Robert Griesemer] in
go/test/fixedbugs/ -- issue 789: keep test case
22:00 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Ping
timeout: 248 seconds]
22:01 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has quit [Quit:
Leaving]
22:01 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
22:11 -!- qfire [~qfire@2002:425d:ad5:1::3] has left #go-nuts []
22:12 -!- mbarkhau [~koloss@dslb-084-059-167-248.pools.arcor-ip.net] has quit
[Quit: Leaving.]
22:15 -!- b00m_chef [~watr@209-52-232-163.vlan452.dsl.ucc-net.ca] has quit [Ping
timeout: 265 seconds]
22:18 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 240
seconds]
22:18 -!- Fish [~Fish@9fans.fr] has quit [Remote host closed the connection]
22:19 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
22:24 -!- exch [~nuada@h144170.upc-h.chello.nl] has quit [Quit: nipples rock]
22:25 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Read error: Connection
reset by peer]
22:25 -!- gisikw [~gisikw@137.28.246.34] has joined #go-nuts
22:26 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
22:28 -!- exch [~nuada@h144170.upc-h.chello.nl] has joined #go-nuts
22:29 -!- kel__ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has joined
#go-nuts
22:29 -!- gisikw [~gisikw@137.28.246.34] has quit [Client Quit]
22:32 -!- kel_ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has quit [Ping
timeout: 245 seconds]
22:34 -!- kel__ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has quit [Ping
timeout: 265 seconds]
22:43 -!- xenplex [~xenplex@195.46.241.226] has quit [Quit: xenplex]
22:44 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has quit
[Quit: Leaving.]
22:51 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
22:53 -!- alehorst [~alehorst@189.26.56.41.dynamic.adsl.gvt.net.br] has joined
#go-nuts
23:05 -!- Abablaba1 [~Abablabab@93-96-78-46.zone4.bethere.co.uk] has left #go-nuts
[]
23:06 -!- Abablaba1 [~Abablabab@93-96-78-46.zone4.bethere.co.uk] has joined
#go-nuts
23:15 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
23:18 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 264 seconds]
23:23 -!- napsy [~luka@88.200.96.14] has quit [Quit: Lost terminal]
23:26 < plexdev> http://is.gd/cjF8b by [Evan Shaw] in go/src/pkg/big/ --
big: Add Rat type
23:26 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
23:28 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
23:30 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 276 seconds]
23:31 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Remote
host closed the connection]
23:37 -!- TR2N [email@89.180.237.1] has joined #go-nuts
23:51 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
23:51 -!- homiziado_ [~ernestofr@62.169.125.54.rev.optimus.pt] has joined #go-nuts
23:54 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
23:55 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
23:58 -!- skelterjohn [~jasmuth@c-76-99-92-14.hsd1.nj.comcast.net] has joined
#go-nuts
23:59 -!- marsu [~marsu@226.65.202-77.rev.gaoland.net] has quit [Ping timeout: 248
seconds]
--- Log closed Sat May 22 00:00:58 2010