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

--- Log opened Wed May 26 00:00:47 2010
--- Day changed Wed May 26 2010
00:00 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
00:00 -!- Chryson [~Chryson@c-71-61-11-114.hsd1.pa.comcast.net] has joined
#go-nuts
00:03 -!- drevell [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has quit [Read
error: Operation timed out]
00:03 -!- BrowserUk [~irc1_20_B@92.15.74.184] has joined #go-nuts
00:05 -!- ccahoon [~ccahoon@physics-72-210.pooled.UMBC.EDU] has quit [Disconnected
by services]
00:06 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
00:08 < BrowserUk> How do I specify the type of the loop counter in a for
loop without pre-declaration?  < for num uint64 = 1; num < 1e6; num++ { >
gives " syntax error: unexpected name, expecting {"
00:09 < sladegen> prolly needs 'var <name> <type>' or do it
outside of for...
00:10 <+iant> BrowserUk: for num := uint64(1); ...
00:10 < BrowserUk> sladegen: syntax error: var declaration not allowed in
for initializer
00:10 < BrowserUk> Iant: Thanks.
00:11 < BrowserUk> It's like going back to school :(
00:11 < sladegen> cast into evil of static types, heh.
00:12 -!- nighty^ [~nighty@210.188.173.245] has joined #go-nuts
00:12 < cbeck> BrowserUk: If you're familiar with grammars, reading the
appropriate piece of the language spec has been my best tool for solving syntax
errors
00:14 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has joined
#go-nuts
00:17 < BrowserUk> cbeck: Sometimes they help, but InitStmt = SimpleStmt
=> SimpleStmt = EmptyStmt | ExpressionStmt | IncDecStmt | Assignment |
ShortVarDecl . => ShortVarDecl = IdentifierList ":=" ExpressionList =>
ExpressionList = Expression { "," Expression } => Expression = UnaryExpr |
Expression binary_op UnaryExpr at which point ...  :)
00:18 < Ginto8> BrowserUk: out of curiosity, why are you looping from
0-999999?
00:18 -!- Piglet [~Piglet@93-136-61-105.adsl.net.t-com.hr] has quit [Quit:
Leaving]
00:19 < Ginto8> well I can gather from the def of ShortVarDecl that it wants
you to use := instead of var x T = y
00:19 < BrowserUk> Ginto8: Just timing things...a learning exercise.
Meaningless, but forcing me to /use/ the language rather than just read about it.
00:19 < Ginto8> cuz it has ":="
00:19 < Ginto8> ok cool
00:20 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Remote
host closed the connection]
00:21 < sladegen> you'd fit in "normal" int...  unless you are on win3.1
00:21 < BrowserUk> Ginto8: Yeah, but you could also take the assignment
branch at SimpleStmt...I did :)
00:22 <+iant> Go guarantees that normal int is either 32 or 64 bits
00:22 < BrowserUk> I know, but I'm outputting 8-byte binary big-endian
00:23 <+iant> I just meant in response to sladegen's comment about win3.1
00:23 < BrowserUk> Talking of which, there has to be a better way of getting
an 8-byte IOWritable buffer than < buf := bytes.NewBufferString( " " ); >?
00:24 <+iant> how about [8]byte
00:24 <+iant> or make([]byte, 8)
00:24 < BrowserUk> The first doesn't work...
00:24 < sladegen> 16 bit was enough for pioneers, it should be enough for
everybody...  don't mind me.
00:24 <+iant> you would have to take the address of the [8]byte variable
when passing to the buffer routines, or use v[0:]
00:24 <+iant> to convert the array to a slice
00:25 < BrowserUk> iant: []uint8 is not io.Writer
00:26 <+iant> well, no, but it can be passed to Write
00:26 <+iant> not sure what you need here
00:27 < sladegen> just print it?  as value...
00:27 < BrowserUk> The line (with the slice conversion) is <
binary.Write( buf[0:], binary.BigEndian, &num ); > give the same error?
00:28 < BrowserUk> With buf created as < buf := make( []byte, 8 ); >
00:29 <+iant> sounds like you want binary.BigEndian.PutUint64(buf[0:], num)
00:30 <+iant> binary.Write is for I/O, not so much for storage
00:31 < BrowserUk> Okay.  I'll go with that...but it worked with the
bytes.NewBuffer(...  ) above.
00:32 <+iant> Yeah, I suppose it would
00:34 < BrowserUk> That's much better.  Clearer.  (I must admit that at this
point I'm having trouble getting to grips with the package docs--a few examples
would be nice--so I'm searching out examples online and adapting them)
00:34 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
00:35 < BrowserUk> Cargo-cult is never good.
00:35 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has left
#go-nuts ["Leaving"]
00:35 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has joined
#go-nuts
00:36 -!- Xurix [~Luixsia@AToulouse-254-1-12-237.w83-203.abo.wanadoo.fr] has quit
[Remote host closed the connection]
00:38 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 252 seconds]
00:39 -!- photron [~photron@port-92-201-9-141.dynamic.qsc.de] has quit [Ping
timeout: 240 seconds]
00:45 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
00:48 -!- itrekkie [~itrekkie@ip70-190-110-124.ph.ph.cox.net] has joined #go-nuts
00:48 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
00:53 -!- Boney_ [~paul@124-168-84-67.dyn.iinet.net.au] has joined #go-nuts
00:53 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
00:54 -!- Boney [~paul@210-84-51-236.dyn.iinet.net.au] has quit [Ping timeout: 260
seconds]
00:54 -!- scherkus [~scherkus@74.125.59.73] has quit [Ping timeout: 240 seconds]
00:55 -!- zyichi [~zyichi@124.205.180.154] has joined #go-nuts
00:56 < BrowserUk> Does " cannot assign to buf[0:]" mean you can never
assign to a go slice?  Or just I'm attempting to assign the wrong thing?
00:56 < Ginto8> is buf a []byte?
00:57 < Ginto8> if so there's no need to reslice
00:57 < cbeck> BrowserUk: sounds like you're saying "buf[0:] = 10" or the
like, is that right?
00:58 < jessta> BrowserUk: I don't think you can assign to a slice, but you
can copy()
00:58 < Ginto8> you can't assign directly to a slice's contents as a whole
00:58 < Ginto8> you can assign to the slice, like slice1 = slice2
00:59 < Ginto8> but only if slice1 isn't a slice like x[y:z]
01:00 < BrowserUk> jessta: I was trying (amongst other things) < buf :=
make( []byte, 8, 8 ); buf[0:7] = "FREDFRED"; > Where does copy() come from?
(Runs away to the docs...  )
01:01 < Ginto8> copy() is a builtin function
01:01 < Ginto8> do copy(buf[0:7],"FREDFRED") and it should work
01:03 <+iant> that won't work because FREDFRED is not a slice
01:04 <+iant> copy(buf[0:7], []byte("FREDFRED") would work
01:04 -!- yashi [~yashi@dns1.atmark-techno.com] has joined #go-nuts
01:04 -!- itrekkie [~itrekkie@ip70-190-110-124.ph.ph.cox.net] has quit [Quit:
itrekkie]
01:04 <+iant> or simply buf := []byte("FREDFRED")
01:04 <+iant> the latter would give you an 8 byte slice containing the bytes
FREDFRED
01:05 < Ginto8> oh ok
01:05 < Ginto8> BrowserUk: also, you don't need to specify the capacity of a
slice in make(), it can be inferred from the size
01:06 -!- Boney_ [~paul@124-168-84-67.dyn.iinet.net.au] has quit [Read error:
Operation timed out]
01:06 -!- caw [~lol@pool-74-106-9-33.syrcny.fios.verizon.net] has joined #go-nuts
01:06 < BrowserUk> I was originally trying to reverse the bytes in the
buffer, in-place....but wandered...
01:09 -!- Boney [~paul@203-217-74-117.dyn.iinet.net.au] has joined #go-nuts
01:12 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
01:17 -!- iant [~iant@67.218.102.208] has quit [Ping timeout: 240 seconds]
01:17 -!- rhelmer [~rhelmer@adsl-69-107-89-5.dsl.pltn13.pacbell.net] has joined
#go-nuts
01:25 < plexdev> http://is.gd/cpfrU by [Evan Shaw] in go/doc/ -- spec: Fix
link to fallthrough statements
01:29 -!- rhelmer [~rhelmer@adsl-69-107-89-5.dsl.pltn13.pacbell.net] has quit
[Ping timeout: 240 seconds]
01:31 -!- rhelmer [~rhelmer@adsl-69-107-89-5.dsl.pltn13.pacbell.net] has joined
#go-nuts
01:59 -!- BrowserUk [~irc1_20_B@92.15.74.184] has left #go-nuts []
02:05 -!- caw [~lol@pool-74-106-9-33.syrcny.fios.verizon.net] has quit []
02:05 -!- DrHennessy [~alex@74-95-55-222-Utah.hfc.comcastbusiness.net] has joined
#go-nuts
02:47 -!- DrHennessy [~alex@74-95-55-222-Utah.hfc.comcastbusiness.net] has quit
[Quit: DrHennessy]
02:49 -!- kingfishr [~kingfishr@71-222-226-71.albq.qwest.net] has quit [Quit:
Leaving]
02:54 -!- Boney [~paul@203-217-74-117.dyn.iinet.net.au] has quit [Ping timeout:
264 seconds]
03:01 -!- Boney [~paul@124-148-134-10.dyn.iinet.net.au] has joined #go-nuts
03:02 -!- micrypt [~micrypt@94-195-127-212.zone9.bethere.co.uk] has joined
#go-nuts
03:10 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has joined #go-nuts
03:10 -!- mode/#go-nuts [+v iant] by ChanServ
03:13 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has quit [Ping
timeout: 240 seconds]
03:18 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has joined #go-nuts
03:24 -!- pizza_ [pizza@ool-457e8bc8.dyn.optonline.net] has quit [Quit: Lost
terminal]
03:24 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 264
seconds]
03:24 -!- Boney_ [~paul@124.168.122.117] has joined #go-nuts
03:24 -!- pizza_ [pizza@poipu/supporter/pizza-milkshake] has joined #go-nuts
03:25 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
03:26 -!- Boney [~paul@124-148-134-10.dyn.iinet.net.au] has quit [Ping timeout:
252 seconds]
03:38 -!- ikke [~ikke@unaffiliated/ikkebr] has quit []
03:38 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
615 seconds]
03:47 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
03:51 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has quit [Ping
timeout: 260 seconds]
03:52 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has joined #go-nuts
03:54 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
04:04 -!- dju [dju@fsf/member/dju] has quit [Read error: Connection reset by peer]
04:11 -!- dju [dju@fsf/member/dju] has joined #go-nuts
04:12 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has quit [Quit:
Leaving...]
04:12 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has joined
#go-nuts
04:13 < plexdev> http://is.gd/cppvE by [Rob Pike] in go/src/pkg/fmt/ --
fmt.Scan, fmt.Scanln: Start of a simple scanning API in the fmt package.
04:18 -!- skelterjohn [~jasmuth@c-76-124-23-140.hsd1.nj.comcast.net] has joined
#go-nuts
04:20 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has quit [Ping
timeout: 260 seconds]
04:20 -!- dju [dju@fsf/member/dju] has quit [Read error: Connection reset by peer]
04:21 -!- dju [dju@fsf/member/dju] has joined #go-nuts
04:24 -!- skelterjohn [~jasmuth@c-76-124-23-140.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
04:28 -!- dju [dju@fsf/member/dju] has quit [Read error: Connection reset by peer]
04:29 -!- dju [dju@fsf/member/dju] has joined #go-nuts
04:29 -!- dju [dju@fsf/member/dju] has quit [Client Quit]
04:32 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
04:32 -!- Boney_ [~paul@124.168.122.117] has quit [Read error: Operation timed
out]
04:33 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has joined
#go-nuts
04:50 -!- ktg1 [~idr@g225066133.adsl.alicedsl.de] has joined #go-nuts
05:01 -!- scm [justme@d135209.adsl.hansenet.de] has quit [Ping timeout: 240
seconds]
05:03 -!- scm [justme@80.171.71.248] has joined #go-nuts
05:04 -!- eikenberry [~jae@mail.zhar.net] has quit [Ping timeout: 245 seconds]
05:09 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has joined #go-nuts
05:18 -!- kel__ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has joined
#go-nuts
05:20 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
05:29 -!- viirya [~viirya@cml506-25.csie.ntu.edu.tw] has quit [Ping timeout: 264
seconds]
05:34 -!- Davidian1024 [~Davidian1@cpe-173-88-239-176.neo.res.rr.com] has quit
[Ping timeout: 240 seconds]
05:35 -!- allengeorge [~allengeor@74.12.152.111] has quit [Ping timeout: 265
seconds]
05:36 -!- allengeorge [~allengeor@74.12.152.111] has joined #go-nuts
05:47 < Eko> is there any way to remove a key from a map?  I can't seem to
find it in the documentation if there is
05:48 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 258
seconds]
05:48 < kmeyer> map[key] = 0, false // or something similarly confusing
05:48 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
05:54 < chressie> Eko: see here: http://golang.org/doc/go_spec.html#Indexes
05:56 < Eko> aha!
05:56 < Eko> thanks =D
05:57 < Eko> I knew it would be in there somewhere.
05:57 < chressie> yeah :) np
05:57 < Eko> Indexes is a silly place to put it, lol
05:57 < Eko> but maybe nowhere else would be better.
06:07 -!- Adys [~Adys@unaffiliated/adys] has quit [Ping timeout: 264 seconds]
06:07 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
06:13 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
06:19 -!- Adys [~Adys@unaffiliated/adys] has joined #go-nuts
06:27 -!- Davidian1024 [~Davidian1@cpe-98-27-196-161.neo.res.rr.com] has joined
#go-nuts
06:30 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
06:39 -!- rhelmer [~rhelmer@adsl-69-107-89-5.dsl.pltn13.pacbell.net] has quit
[Quit: rhelmer]
06:43 -!- BrowserUk [~irc1_20_B@92.15.74.184] has joined #go-nuts
06:53 -!- wrtp [~rog@89.242.170.31] has joined #go-nuts
06:55 -!- unhygienix [~unhygieni@host86-181-15-94.range86-181.btcentralplus.com]
has quit [Quit: unhygienix]
06:57 -!- fernan [~ca7a95c3@gateway/web/freenode/x-wkxwuxjrvcivcgvg] has joined
#go-nuts
07:16 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has joined #go-nuts
07:27 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has quit [Ping timeout: 240
seconds]
07:35 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
07:37 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has joined #go-nuts
07:42 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has joined #go-nuts
07:43 -!- MizardX [~MizardX@unaffiliated/mizardx] has joined #go-nuts
07:45 -!- froyo [~chatzilla@222.73.189.45] has joined #go-nuts
07:46 -!- Surma [~bzfsurma@gooseberry.zib.de] has joined #go-nuts
07:51 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has quit
[Remote host closed the connection]
07:51 -!- path[l] [UPP@120.138.102.34] has quit [Quit: path[l]]
07:52 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 260 seconds]
07:59 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
joined #go-nuts
08:12 -!- GoBIR [~gobir@adsl-76-252-29-235.dsl.ipltin.sbcglobal.net] has joined
#go-nuts
08:13 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 276
seconds]
08:13 -!- Svarthandske [~nn@dsl-tkubrasgw1-fe3cdc00-28.dhcp.inet.fi] has joined
#go-nuts
08:16 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
08:28 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
08:30 -!- photron [~photron@port-92-201-9-141.dynamic.qsc.de] has joined #go-nuts
08:31 -!- Ideal [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has joined
#go-nuts
08:33 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
08:35 -!- ktg1 [~idr@g225066133.adsl.alicedsl.de] has left #go-nuts []
08:35 -!- Boney [~paul@124.168.126.14] has joined #go-nuts
08:41 -!- BrowserUk [~irc1_20_B@92.15.74.184] has quit [Ping timeout: 240 seconds]
08:42 < manveru> anybody knows how i can debug segfaults?
08:42 < manveru> seems like gdb doesn't know enough about go to be of help
08:44 < wrtp> manveru: you getting a stack trace?
08:44 < manveru> no
08:44 < manveru> it's somewhere around a couple of calls to C functions
08:45 -!- BrowserUk [~irc1_20_B@92.15.74.184] has joined #go-nuts
08:45 < wrtp> ah
08:45 < manveru> can't make out the exact location...  print statements
influence the timing
08:45 < wrtp> printing to a file is often better
08:46 < manveru> the signatures seem ok, and equivalent C code seems to work
08:46 < wrtp> (less work to do, so less influence on the timing)
08:46 < wrtp> is it a small amount of C you're calling, or a big library?
08:46 < manveru> i call sdl
08:47 < manveru> so rather large...  around 130k LoC
08:49 < manveru> but it's happening only when i pass a certain flag
08:49 < manveru> just wish i could make out the exact location where it
fails
08:50 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
08:50 < manveru> sdl has tons of ifdefs, so following the code is pretty
hard
08:50 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
08:54 < manveru> hm
08:55 < manveru> maybe gc issue...  are ints garbage collected?
08:58 -!- ikaros [~ikaros@f052217029.adsl.alicedsl.de] has joined #go-nuts
08:58 < wrtp> manveru: no
08:59 < wrtp> but the C library could be corrupting memory somewhere
09:01 < manveru> possible
09:02 < manveru> i doubt valgrind will be of more use than gdb though
09:06 < atsampson> I'd give it a try anyway
09:06 < atsampson> valgrind is often surprisingly useful...
09:06 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
09:07 -!- BrowserUk [~irc1_20_B@92.15.74.184] has quit [Quit: BrowserUk]
09:07 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
09:10 < manveru> valgrind doesn't give me anything...  it fails at os.Init()
already
09:16 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has quit [Remote host closed the
connection]
09:17 < wrtp> i think your best best is printf debugging
09:17 < wrtp> or if you can't get any prints to work, even if you're writing
'em to a file, then panic debugging is useful too
09:17 -!- Project_2501 [~Marvin@82.84.74.54] has joined #go-nuts
09:18 < wrtp> i.e.  insert panics such that you can't move the panic any
later in the code without the segfault happening instead of the panic
09:19 < manveru> yeah...
09:22 < manveru> seems like it happens when i initialize opengl
09:27 < manveru> what a pita
09:28 -!- fernan [~ca7a95c3@gateway/web/freenode/x-wkxwuxjrvcivcgvg] has quit
[Quit: Page closed]
09:30 -!- path[l] [~path@59.162.86.164] has joined #go-nuts
09:34 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 259
seconds]
09:36 -!- kanru [~kanru@118-165-171-89.dynamic.hinet.net] has joined #go-nuts
09:49 -!- Tiger [~chatzilla@222.73.189.44] has joined #go-nuts
09:50 -!- froyo [~chatzilla@222.73.189.45] has quit [Ping timeout: 240 seconds]
09:53 -!- Tiger [~chatzilla@222.73.189.44] has left #go-nuts []
09:53 -!- mikespook [~mikespook@219.137.51.18] has joined #go-nuts
09:57 < wrtp> manveru: does the opengl library do any threading stuff?
10:07 -!- kanru [~kanru@118-165-171-89.dynamic.hinet.net] has quit [Ping timeout:
272 seconds]
10:07 -!- mikespook [~mikespook@219.137.51.18] has quit [Quit: Leaving.]
10:12 -!- ikaros [~ikaros@f052217029.adsl.alicedsl.de] has quit [Read error:
Operation timed out]
10:14 -!- ikaros [~ikaros@f052217029.adsl.alicedsl.de] has joined #go-nuts
10:22 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
10:22 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has quit
[Ping timeout: 245 seconds]
10:24 -!- ikaros [~ikaros@f052217029.adsl.alicedsl.de] has quit [Remote host
closed the connection]
10:44 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Ping
timeout: 248 seconds]
10:58 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
11:00 -!- noam_ [~noam@77.127.205.252] has quit [Read error: Connection reset by
peer]
11:00 -!- noam_ [~noam@77.127.205.252] has joined #go-nuts
11:05 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
11:08 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has joined #go-nuts
11:09 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
11:12 -!- path[l] [~path@59.162.86.164] has quit [Quit: path[l]]
11:32 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
11:39 -!- Boney_ [~paul@124-168-37-170.dyn.iinet.net.au] has joined #go-nuts
11:40 -!- Boney [~paul@124.168.126.14] has quit [Ping timeout: 264 seconds]
11:41 -!- nighty^ [~nighty@210.188.173.245] has quit [Ping timeout: 258 seconds]
11:44 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
Leaving]
11:45 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
11:48 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
11:48 -!- cmarcelo [~cmarcelo@200.184.118.130] has joined #go-nuts
11:48 -!- cmarcelo [~cmarcelo@200.184.118.130] has quit [Changing host]
11:48 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
11:56 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
12:01 -!- zyichi [~zyichi@124.205.180.154] has quit [Quit: zyichi]
12:08 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has quit [Read error:
Connection reset by peer]
12:08 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has joined #go-nuts
12:08 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has quit [Quit: Leaving]
12:08 -!- path[l] [UPP@120.138.102.34] has quit [Quit: path[l]]
12:12 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
12:18 -!- ikaros [~ikaros@guests39.externals.de] has joined #go-nuts
12:21 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
12:22 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by
services]
12:22 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
12:24 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has joined #go-nuts
12:25 -!- alehorst [~alehorst@201.22.41.93.dynamic.adsl.gvt.net.br] has quit
[Remote host closed the connection]
12:27 -!- plavcik [~plavcik@bilbo.navratil.cz] has joined #go-nuts
12:27 -!- alehorst [~alehorst@201.22.41.93.dynamic.adsl.gvt.net.br] has joined
#go-nuts
12:32 -!- Boney [~paul@124-168-41-95.dyn.iinet.net.au] has joined #go-nuts
12:33 -!- Boney_ [~paul@124-168-37-170.dyn.iinet.net.au] has quit [Ping timeout:
260 seconds]
12:34 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
12:38 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 260 seconds]
12:39 -!- Eko_ [~eko@adsl-76-251-230-31.dsl.ipltin.sbcglobal.net] has joined
#go-nuts
12:40 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has quit [Read error:
Connection reset by peer]
12:40 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has joined #go-nuts
12:41 -!- GoBIR [~gobir@adsl-76-252-29-235.dsl.ipltin.sbcglobal.net] has quit
[Ping timeout: 248 seconds]
12:42 -!- Eko [~eko@adsl-76-252-29-235.dsl.ipltin.sbcglobal.net] has quit [Ping
timeout: 240 seconds]
12:44 -!- plainhao [~plainhao@mail.xbiotica.com] has joined #go-nuts
12:45 -!- tvw [~tv@212.79.9.150] has joined #go-nuts
12:45 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
12:47 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
12:48 -!- nsz [nsz@morecp.net] has quit [Quit: leaving]
12:53 -!- nsz [nsz@morecp.net] has joined #go-nuts
13:04 -!- Boney [~paul@124-168-41-95.dyn.iinet.net.au] has quit [Ping timeout: 260
seconds]
13:05 -!- Boney [~paul@203-217-73-228.dyn.iinet.net.au] has joined #go-nuts
13:11 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has joined #go-nuts
13:16 -!- traevaar [~tar@dsl-hkibrasgw3-fe75fb00-7.dhcp.inet.fi] has joined
#go-nuts
13:16 -!- ktg1 [~idr@e179150177.adsl.alicedsl.de] has joined #go-nuts
13:18 -!- Soultaker [~maks@hell.student.utwente.nl] has quit [Ping timeout: 260
seconds]
13:21 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
13:21 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
13:29 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Ping
timeout: 260 seconds]
13:29 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has quit [Quit:
mertimor]
13:31 -!- noam_ [~noam@77.127.205.252] has quit [Read error: Connection reset by
peer]
13:32 -!- noam_ [~noam@77.127.205.252] has joined #go-nuts
13:36 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
13:52 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
13:54 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Ping
timeout: 265 seconds]
13:55 -!- iant [~iant@67.218.106.30] has joined #go-nuts
13:55 -!- mode/#go-nuts [+v iant] by ChanServ
14:01 -!- Surma [~bzfsurma@gooseberry.zib.de] has quit [Quit: Leaving.]
14:03 -!- Boney [~paul@203-217-73-228.dyn.iinet.net.au] has quit [Ping timeout:
265 seconds]
14:05 -!- Boney [~paul@124-148-128-241.dyn.iinet.net.au] has joined #go-nuts
14:06 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
14:08 -!- BrowserUk [~irc1_20_B@92.15.74.184] has joined #go-nuts
14:08 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
14:24 -!- awidegreen [~quassel@62.176.237.78] has joined #go-nuts
14:25 -!- marchdown [~marchdown@ppp95-165-16-73.pppoe.spdop.ru] has joined
#go-nuts
14:27 -!- marchdown [~marchdown@ppp95-165-16-73.pppoe.spdop.ru] has quit [Client
Quit]
14:29 -!- fhs [~fhs@pool-71-167-84-226.nycmny.east.verizon.net] has quit [Quit:
leaving]
14:30 -!- Shyde [~Shyde^^@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has joined #go-nuts
14:32 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Quit: Leaving.]
14:32 -!- Boney [~paul@124-148-128-241.dyn.iinet.net.au] has quit [Ping timeout:
260 seconds]
14:32 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
14:36 -!- Fish-Work [~Fish@86.65.182.207] has quit [Ping timeout: 264 seconds]
14:37 -!- Fish-Work [~Fish@86.65.182.204] has joined #go-nuts
14:40 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
14:41 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
14:41 -!- Venom_X [~pjacobs@adsl-99-20-147-171.dsl.aus2tx.sbcglobal.net] has
joined #go-nuts
14:55 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
14:56 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
15:02 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
15:02 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
15:04 -!- iant [~iant@67.218.106.30] has quit [Ping timeout: 240 seconds]
15:06 -!- eikenberry [~jae@mail.zhar.net] has joined #go-nuts
15:15 -!- Nola [Nola@76.91.62.8] has joined #go-nuts
15:15 < Nola> is there a Gobot here
15:18 -!- Ideal [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has quit [Quit:
Ideal]
15:22 -!- iant [~iant@nat/google/x-zbobgcsnpwljzoqq] has joined #go-nuts
15:22 -!- mode/#go-nuts [+v iant] by ChanServ
15:24 < wrtp> Nola: there used to be, but not now, AFAIK
15:26 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
15:31 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
quit [Quit: Morten.  Desu~]
15:33 -!- micrypt [~micrypt@94-195-127-212.zone9.bethere.co.uk] has left #go-nuts
[]
15:40 -!- ikaros [~ikaros@guests39.externals.de] has quit [Quit: Leave the magic
to Houdini]
15:41 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Ping
timeout: 264 seconds]
15:41 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
15:42 -!- EthanG [~EthanG@sourcemage/guru/eekee] has joined #go-nuts
15:43 < EthanG> Hallo.  I'm building go on arm for the first time, should I
use all-arm.bash or all.bash?
15:45 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
15:47 -!- Surma [~surma@91-64-31-242-dynip.superkabel.de] has joined #go-nuts
15:48 -!- Soultaker [~maks@hell.student.utwente.nl] has joined #go-nuts
15:52 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has quit [Ping timeout:
258 seconds]
15:52 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has joined #go-nuts
15:57 -!- crashR [~crasher@codextreme.pck.nerim.net] has joined #go-nuts
16:17 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
16:17 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
16:19 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Quit:
skelterjohn]
16:20 < wrtp> anyone good with mercurial here?
16:21 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has quit [Quit: Quitte]
16:23 -!- ShadowIce` [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
16:28 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Ping timeout:
276 seconds]
16:31 -!- ikke [~ikkibr@189.58.213.47.dynamic.adsl.gvt.net.br] has joined #go-nuts
16:31 -!- ikke [~ikkibr@189.58.213.47.dynamic.adsl.gvt.net.br] has quit [Changing
host]
16:31 -!- ikke [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
16:31 -!- ly- [~ly-@unaffiliated/ly-] has joined #go-nuts
16:32 -!- Venom_X [~pjacobs@adsl-99-20-147-171.dsl.aus2tx.sbcglobal.net] has quit
[Remote host closed the connection]
16:32 -!- Venom_X [~pjacobs@adsl-99-20-147-171.dsl.aus2tx.sbcglobal.net] has
joined #go-nuts
16:35 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Quit:
Konversation terminated!]
16:37 -!- robot12 [~robot12@inferno.kgts.ru] has joined #go-nuts
16:38 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:318f:e5c7:6583:bc1b] has quit
[Ping timeout: 272 seconds]
16:41 -!- ikaros [~ikaros@f052217029.adsl.alicedsl.de] has joined #go-nuts
16:43 -!- tvw [~tv@212.79.9.150] has quit [Remote host closed the connection]
16:45 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has quit [Ping
timeout: 264 seconds]
16:45 -!- traevaar [~tar@dsl-hkibrasgw3-fe75fb00-7.dhcp.inet.fi] has left #go-nuts
[]
16:45 -!- Fish [~Fish@9fans.fr] has joined #go-nuts
16:46 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has joined
#go-nuts
16:52 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:28e0:a4e6:9797:a710] has joined
#go-nuts
16:54 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
peace in teh middle east]
16:58 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has quit [Ping
timeout: 248 seconds]
17:04 -!- smw [~smw@pool-96-232-88-231.nycmny.fios.verizon.net] has quit [Ping
timeout: 240 seconds]
17:05 < plexdev> http://is.gd/cqcGu by [Rob Pike] in go/src/pkg/fmt/ -- fmt:
fix 386 build.  error strings differ for overflow on 386.
17:06 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has joined
#go-nuts
17:15 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
17:17 < Nola> how do i declare that my function will not modify its target
17:20 -!- babusri [~E50138@122.174.174.121] has joined #go-nuts
17:22 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
17:22 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
17:27 -!- marsu [~marsu@153.184.95-79.rev.gaoland.net] has joined #go-nuts
17:33 < Soultaker> Nola: you can't.
17:33 -!- smcquay [~smcquay@mail.adaptivecomputing.com] has joined #go-nuts
17:35 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has joined #go-nuts
17:37 < wrtp> Nola: declare it on a value type
17:40 -!- ktg1 [~idr@e179150177.adsl.alicedsl.de] has left #go-nuts []
17:41 -!- mbarkhau [~koloss@dslb-084-059-167-248.pools.arcor-ip.net] has joined
#go-nuts
17:42 -!- tux21b [~tux21b@90.146.60.30] has joined #go-nuts
17:46 -!- carllerche [~carllerch@99.13.242.166] has joined #go-nuts
17:48 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
619 seconds]
17:55 -!- Venom_X [~pjacobs@adsl-99-20-147-171.dsl.aus2tx.sbcglobal.net] has quit
[Quit: Venom_X]
17:57 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
18:01 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has joined
#go-nuts
18:02 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Ping
timeout: 276 seconds]
18:04 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
18:08 -!- waterwalker [~tar@dsl-hkibrasgw3-fe75fb00-7.dhcp.inet.fi] has joined
#go-nuts
18:10 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
18:12 -!- illya77 [~illya77@29-17-133-95.pool.ukrtel.net] has joined #go-nuts
18:15 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Ping
timeout: 276 seconds]
18:18 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has joined
#go-nuts
18:20 -!- robot12 [~robot12@inferno.kgts.ru] has quit [Quit: Ухожу я от вас (xchat
2.4.5 или старше)]
18:21 -!- welterde [~welterde@not.welterde.de] has joined #go-nuts
18:22 < welterde> hi :)
18:22 -!- Eko_ [~eko@adsl-76-251-230-31.dsl.ipltin.sbcglobal.net] has left
#go-nuts []
18:22 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
18:22 -!- Eko [~eko@adsl-76-251-230-31.dsl.ipltin.sbcglobal.net] has joined
#go-nuts
18:22 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
18:24 -!- accAgon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
18:24 < Eko> was there a netsplit?
18:25 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has quit [Quit:
abunner]
18:27 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Ping
timeout: 276 seconds]
18:28 -!- accAgon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has left
#go-nuts []
18:33 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has joined
#go-nuts
18:41 -!- tcoppi
[~nuclear@57c3ed63-1294-45bd-a8e8-cdcc07cfa16f.static.grokthis.net] has quit [Ping
timeout: 264 seconds]
18:46 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has joined #go-nuts
18:48 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
18:48 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
18:51 -!- Eridius [~kevin@unaffiliated/eridius] has joined #go-nuts
18:57 -!- ly- [~ly-@unaffiliated/ly-] has quit [Quit: ly-]
18:57 -!- ly- [~ly-@141.8.75-86.rev.gaoland.net] has joined #go-nuts
18:57 -!- ly- [~ly-@141.8.75-86.rev.gaoland.net] has quit [Changing host]
18:57 -!- ly- [~ly-@unaffiliated/ly-] has joined #go-nuts
18:58 -!- Xurix [~Luixsia@AToulouse-254-1-12-237.w83-203.abo.wanadoo.fr] has
joined #go-nuts
18:58 -!- smcquay [~smcquay@mail.adaptivecomputing.com] has left #go-nuts []
19:03 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
19:06 -!- Svarthandske [~nn@dsl-tkubrasgw1-fe3cdc00-28.dhcp.inet.fi] has quit
[Quit: Svarthandske]
19:09 -!- dju_ [dju@fsf/member/dju] has joined #go-nuts
19:13 -!- Shyde [~Shyde^^@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has quit [Quit: Shyde]
19:14 -!- illya77 [~illya77@29-17-133-95.pool.ukrtel.net] has quit [Quit: illya77]
19:16 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Read error:
Connection reset by peer]
19:18 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
19:19 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
19:24 -!- TR2N [email@89-180-176-198.net.novis.pt] has joined #go-nuts
19:25 -!- tux21b_v2 [~tux21b@90.146.60.30] has joined #go-nuts
19:29 -!- tux21b [~tux21b@90.146.60.30] has quit [Ping timeout: 240 seconds]
19:35 -!- carllerche [~carllerch@99.13.242.166] has quit [Quit: carllerche]
19:36 -!- anticw [~anticw@cwedgwood.broker.freenet6.net] has quit [Read error:
Operation timed out]
19:37 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Ping
timeout: 260 seconds]
19:37 -!- Venom_X [~pjacobs@adsl-99-20-147-171.dsl.aus2tx.sbcglobal.net] has
joined #go-nuts
19:40 -!- carllerche [~carllerch@99.13.242.166] has joined #go-nuts
19:41 -!- tux21b [~tux21b@90.146.60.30] has joined #go-nuts
19:41 -!- plainhao [~plainhao@mail.xbiotica.com] has quit [Ping timeout: 276
seconds]
19:44 -!- tux21b_v2 [~tux21b@90.146.60.30] has quit [Ping timeout: 272 seconds]
19:44 -!- Boney [~paul@210-84-25-207.dyn.iinet.net.au] has joined #go-nuts
19:49 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
19:50 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has quit [Quit: Leaving]
19:56 < BrowserUk> Can one submit bugs without a google ID? Via email
perhaps?
19:56 < Ginto8> *gasp* you don't have a google id?
19:57 < Namegduf> The majority of bugtrackers require registration in order
to submit bugs
19:57 < Ginto8> they're free and they're really useful, so you might as well
get one anyway
19:57 -!- Boney_ [~paul@124-168-116-115.dyn.iinet.net.au] has joined #go-nuts
19:58 -!- Boney [~paul@210-84-25-207.dyn.iinet.net.au] has quit [Ping timeout: 260
seconds]
19:58 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: Lost terminal]
20:03 -!- Boney_ [~paul@124-168-116-115.dyn.iinet.net.au] has quit [Ping timeout:
240 seconds]
20:05 -!- Boney [~paul@203-217-92-183.dyn.iinet.net.au] has joined #go-nuts
20:05 -!- tux21b_v2 [~tux21b@90.146.60.30] has joined #go-nuts
20:06 -!- babusri [~E50138@122.174.174.121] has quit [Ping timeout: 240 seconds]
20:06 -!- tux21b [~tux21b@90.146.60.30] has quit [Disconnected by services]
20:07 -!- tux21b [~tux21b@90.146.60.30] has joined #go-nuts
20:08 -!- tux21b_v2 [~tux21b@90.146.60.30] has quit [Client Quit]
20:08 < plexdev> http://is.gd/cqoO7 by [Adam Langley] in go/src/pkg/big/ --
big: add ModInverse.
20:09 -!- mertimor [~mertimor@p4FE74A81.dip.t-dialin.net] has quit [Quit:
mertimor]
20:15 -!- OpenSpace [~ja@109.92.194.181] has quit [Ping timeout: 240 seconds]
20:16 -!- jimi_hendrix [~jimi@unaffiliated/jimihendrix] has quit [Ping timeout:
265 seconds]
20:17 -!- piglet_ [~piglet@93-136-13-199.adsl.net.t-com.hr] has joined #go-nuts
20:17 -!- piglet_ [~piglet@93-136-13-199.adsl.net.t-com.hr] has quit [Client Quit]
20:18 -!- piglet_ [~piglet@93-136-13-199.adsl.net.t-com.hr] has joined #go-nuts
20:19 -!- Kashia [~Kashia@port-92-200-253-159.dynamic.qsc.de] has joined #go-nuts
20:23 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:28e0:a4e6:9797:a710] has quit
[Quit: Leaving.]
20:28 -!- bmizerany [~bmizerany@12.69.234.130] has joined #go-nuts
20:30 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Quit:
skelterjohn]
20:35 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
20:37 -!- Surma [~surma@91-64-31-242-dynip.superkabel.de] has quit [Quit:
Leaving.]
20:41 -!- anticw [~anticw@cwedgwood.broker.freenet6.net] has joined #go-nuts
20:43 -!- bmizerany [~bmizerany@12.69.234.130] has quit [Remote host closed the
connection]
20:48 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
20:48 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
20:49 -!- kel__ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has quit [Ping
timeout: 245 seconds]
20:55 < plexdev> http://is.gd/cqrLk by [Robert Griesemer] in
go/src/pkg/go/doc/ -- godoc: collect package comments from all package files, not
just the first one found
20:58 -!- Eko [~eko@adsl-76-251-230-31.dsl.ipltin.sbcglobal.net] has quit [Quit:
Leaving]
20:59 -!- unhygienix [~unhygieni@host86-181-15-94.range86-181.btcentralplus.com]
has joined #go-nuts
21:00 -!- Venom_X [~pjacobs@adsl-99-20-147-171.dsl.aus2tx.sbcglobal.net] has quit
[Quit: Venom_X]
21:01 -!- Eko [~eko@76.251.230.31] has joined #go-nuts
21:02 -!- aho [~nya@g227045139.adsl.alicedsl.de] has joined #go-nuts
21:04 -!- Odin- [~sbkhh@s121-302.gardur.hi.is] has joined #go-nuts
21:06 < Odin-> There wouldn't happen to be a known problem with the test
suite on OS X 10.5, would there?
21:08 < EthanG> I just built it twice on 10.5 today; report: 2 known bugs, 0
unexpected bugs
21:09 < EthanG> it does want to run a lot of tests which listen for network
connections, first time I was clicking "allow" like mad (and hardly able to chat),
2nd time I just opened my firewall for the duration, lol
21:11 < Odin-> Hrm.  Makes my machine uttery and completely unusable, giving
it the best part of an hour to recover didn't work…
21:11 < EthanG> good gracious
21:11 -!- ikke [~ikkibr@unaffiliated/ikkebr] has quit []
21:11 < EthanG> what hardware?
21:12 -!- thomas_b [~thomasb@cm-84.215.37.40.getinternet.no] has joined #go-nuts
21:13 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
21:13 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
21:13 < Odin-> Three year old MacBook Pro.
21:14 -!- Fish [~Fish@9fans.fr] has quit [Remote host closed the connection]
21:17 < EthanG> ahh
21:18 < EthanG> mine's getting on for 3 years too
21:18 < EthanG> (Mac Pro, or at least OS X thinks it is ^^;)
21:20 -!- Mopman [~sam@unaffiliated/mopman] has quit [Ping timeout: 276 seconds]
21:26 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has quit [Ping
timeout: 264 seconds]
21:27 -!- Mopman [~sam@208.43.68.131] has joined #go-nuts
21:29 -!- carllerche [~carllerch@99.13.242.166] has quit [Ping timeout: 276
seconds]
21:30 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has quit [Ping timeout: 240
seconds]
21:36 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
21:36 -!- bleakgadfly [~cato@2001:470:26:9f:223:9eff:fe00:1018] has joined
#go-nuts
21:36 -!- awidegreen [~quassel@62.176.237.78] has quit [Remote host closed the
connection]
21:43 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has joined #go-nuts
21:44 < bleakgadfly> I want to use the Go compiler on a Loongson (mipsel)
system, but the makefiles is only for arm/386/amd64.  What would be easiest:
compile gccgo or try and modify the makefiles for Go to fit Loongson (not really
sure how to do that)?
21:44 -!- Odin- [~sbkhh@s121-302.gardur.hi.is] has left #go-nuts ["I"]
21:45 -!- tux21b [~tux21b@90.146.60.30] has quit [Quit: Leaving]
21:45 < taruti> bleakgadfly: gccgo
21:45 <+iant> yeah, not that gccgo would be easy, but it would certainly be
easier than adding a MIPS backend to 6g/8g
21:46 < bleakgadfly> That's what I thought.  Grabbing gccgo now.
21:46 < bleakgadfly> Thanks.
21:49 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has quit [Remote host closed the
connection]
21:50 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has joined #go-nuts
21:50 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Ping
timeout: 258 seconds]
21:51 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has quit [Read error: Connection
reset by peer]
21:52 -!- Boney [~paul@203-217-92-183.dyn.iinet.net.au] has quit [Ping timeout:
240 seconds]
21:53 < dho> Would be nice to have some more information about how kens
compilers work.  I don't really particularly understand them and his code is
always quite terse.
21:54 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has joined #go-nuts
21:55 < EthanG> hmm.  I'm working with one right now because the gcc I have
for a particular arch is badly broken, but I'm not ready to look inside it :)
21:57 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
21:57 < EthanG> that said, anything I look at on plan 9 which looks opaque
at first responds quite well when I really clear my mind of everything else &
study it for a while
21:58 -!- ShadowIce` [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
21:58 < EthanG> not overly easy...
22:00 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has joined
#go-nuts
22:04 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Quit:
skelterjohn]
22:09 -!- Svarthandske [~nn@dsl-tkubrasgw1-fe3cdc00-28.dhcp.inet.fi] has joined
#go-nuts
22:11 -!- wrtp [~rog@89.242.170.31] has quit [Quit: wrtp]
22:15 -!- rlab [~Miranda@91.200.158.34] has quit [Read error: Connection reset by
peer]
22:16 -!- alehorst [~alehorst@201.22.41.93.dynamic.adsl.gvt.net.br] has quit
[Quit: Leaving.]
22:29 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has quit [Quit:
Leaving]
22:30 -!- Kashia [~Kashia@port-92-200-253-159.dynamic.qsc.de] has quit [Ping
timeout: 276 seconds]
22:30 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has quit [Ping timeout:
248 seconds]
22:33 -!- bedwards [~bedwards@rrcs-24-173-187-218.sw.biz.rr.com] has joined
#go-nuts
22:42 -!- prip [~foo@host37-220-dynamic.45-79-r.retail.telecomitalia.it] has quit
[Ping timeout: 240 seconds]
22:48 -!- ikaros [~ikaros@f052217029.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
22:48 -!- dave_r5 [~d@adsl-76-212-6-10.dsl.pltn13.sbcglobal.net] has quit [Quit:
Leaving]
22:49 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Remote host closed the
connection]
22:50 -!- Project_2501 [~Marvin@82.84.74.54] has quit [Quit: E se abbasso questa
leva che succ...]
22:51 -!- skelterjohn [~jasmuth@c-76-124-23-140.hsd1.nj.comcast.net] has joined
#go-nuts
22:55 -!- prip [~foo@host92-197-dynamic.17-79-r.retail.telecomitalia.it] has
joined #go-nuts
22:55 -!- tvw [~tv@e176004134.adsl.alicedsl.de] has quit [Remote host closed the
connection]
23:04 -!- mbarkhau [~koloss@dslb-084-059-167-248.pools.arcor-ip.net] has quit
[Quit: Leaving.]
23:05 -!- evilhackerdude [~stephan@evilhackerdu.de] has joined #go-nuts
23:07 -!- bedwards [~bedwards@rrcs-24-173-187-218.sw.biz.rr.com] has quit [Quit:
bedwards]
23:11 -!- prip [~foo@host92-197-dynamic.17-79-r.retail.telecomitalia.it] has quit
[Ping timeout: 240 seconds]
23:12 -!- prip [~foo@host92-197-dynamic.17-79-r.retail.telecomitalia.it] has
joined #go-nuts
23:20 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has quit
[Quit: carllerche]
23:22 -!- narsil [~Narsil@rke75-4-82-234-110-106.fbx.proxad.net] has joined
#go-nuts
23:27 -!- iant [~iant@nat/google/x-zbobgcsnpwljzoqq] has quit [Read error:
Operation timed out]
23:32 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Read error:
Connection reset by peer]
23:38 -!- anticw [~anticw@cwedgwood.broker.freenet6.net] has quit [Ping timeout:
248 seconds]
23:39 -!- narsil [~Narsil@rke75-4-82-234-110-106.fbx.proxad.net] has quit [Quit:
Leaving]
23:41 -!- photron [~photron@port-92-201-9-141.dynamic.qsc.de] has quit [Ping
timeout: 276 seconds]
23:47 -!- piglet_ [~piglet@93-136-13-199.adsl.net.t-com.hr] has quit [Quit:
Leaving]
23:48 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
23:51 -!- nutate [~rseymour@cacsag4.usc.edu] has joined #go-nuts
23:53 -!- iant [~iant@67.218.107.41] has joined #go-nuts
23:53 -!- mode/#go-nuts [+v iant] by ChanServ
23:56 -!- djm [~djm@paludis/slacker/djm] has quit [Ping timeout: 240 seconds]
23:56 -!- drhodes [~none@209-20-72-61.slicehost.net] has quit [Ping timeout: 240
seconds]
23:56 -!- brx [brx@erxz.com] has quit [Ping timeout: 240 seconds]
23:56 -!- drhodes [~none@209-20-72-61.slicehost.net] has joined #go-nuts
23:57 -!- djm [~djm@paludis/slacker/djm] has joined #go-nuts
23:57 -!- brx [brx@erxz.com] has joined #go-nuts
23:59 -!- Boney [~paul@124-168-71-79.dyn.iinet.net.au] has joined #go-nuts
--- Log closed Thu May 27 00:00:13 2010