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

--- Log opened Sat May 15 00:00:57 2010
00:02 -!- tsykoduk [~tsykoduk@2001:470:1f04:671:20d:93ff:fe77:1dc4] has quit [Ping
timeout: 268 seconds]
00:05 -!- warthurton [~warthurto@pdpc/supporter/active/warthurton] has quit [Ping
timeout: 240 seconds]
00:07 -!- hunterm [~hunterm@2001:0:4137:9e74:2c34:2563:b8b8:1a4b] has quit [Ping
timeout: 268 seconds]
00:08 -!- easytiger [~gerry@host86-145-107-46.range86-145.btcentralplus.com] has
quit [Ping timeout: 240 seconds]
00:08 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
00:12 -!- tsykoduk [~tsykoduk@2001:470:1f04:671:20d:93ff:fe77:1dc4] has joined
#go-nuts
00:14 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has quit [Ping
timeout: 240 seconds]
00:16 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
00:17 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
00:27 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has joined #go-nuts
00:32 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has quit [Ping
timeout: 276 seconds]
00:38 -!- barismetin [~barismeti@kde/developer/baris] has quit [Quit: Leaving...]
00:49 < exch> Can anyone see anything wrong with this?
http://gist.github.com/401891
00:50 < exch> cos if that is correct, then I have a bigger problem :s The
data I get from that is garbage
01:09 -!- smw [~stephen@c-76-28-90-0.hsd1.ct.comcast.net] has quit [Remote host
closed the connection]
01:09 -!- smw [~stephen@c-76-28-90-0.hsd1.ct.comcast.net] has joined #go-nuts
01:10 < KirkMcDonald> exch: Does string(bytes) copy the bytes?  I would
assume it does...
01:11 < exch> As far as I know, yes
01:11 < KirkMcDonald> Oh, I might see the issue.
01:11 < exch> I'm wondering why the garbage appears.  The only reason I can
think of is that the list pointer is being garbage collected or moved somewhere
inbetween
01:12 < exch> or im just doing it wrong :p
01:12 < KirkMcDonald> I think you're doing it wrong.
01:12 < exch> no surprise there :)
01:12 < KirkMcDonald> 'list' is a jagged array.  You need another level of
indirection, there.
01:13 < exch> hmm that is a good point
01:14 < KirkMcDonald> I think that ptr + i + k would do it.
01:15 < KirkMcDonald> Also: resetting k to zero.
01:15 < KirkMcDonald> Or, no.
01:15 < KirkMcDonald> Durr.
01:15 < KirkMcDonald> *(ptr + i) + k
01:16 < KirkMcDonald> Plus appropriate conversions.
01:22 -!- bmizerany [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
joined #go-nuts
01:24 -!- bmizeran_ [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
quit [Ping timeout: 246 seconds]
01:26 -!- damjan [~damjan@legolas.on.net.mk] has left #go-nuts ["Konversation
terminated!"]
01:29 -!- warthurton [~warthurto@pdpc/supporter/active/warthurton] has joined
#go-nuts
01:32 < exch> im getting the first string out properly.  now for the rest
01:36 -!- alkavan_ [~alkavan@87.68.249.45.adsl.012.net.il] has quit [Quit:
Leaving]
01:44 -!- Wiz126 [~Wiz126@24.115.240.60.res-cmts.sm.ptd.net] has joined #go-nuts
01:44 < kmeyer> awesome :P
01:44 < exch> http://gist.github.com/401891 this seems to work for the first
string, but the first terminating char is immediately followed by a second one, so
the second string stays empty
01:45 < exch> there should be 2 strings in the list in my test case
01:45 < kmeyer> what's the type of the C thing?
01:45 < kmeyer> is it packed, sequential C strings?
01:46 < exch> just a sequence of 0 terminated chars
01:47 < KirkMcDonald> I see no reason to assume that is is packed.
01:47 < KirkMcDonald> it is*
01:47 < KirkMcDonald> exch: :19s/offset/i/
01:49 -!- aho [~nya@f052024214.adsl.alicedsl.de] has joined #go-nuts
01:49 < exch> that rturns the first string twice, but with the first
character removed :)
01:50 < KirkMcDonald> Oh, you also need to dereference it.
01:50 < exch> I am assuming the memory is layed out like this:
[string\0string2\0etc\0] ..  the ptr =...  bit just increments the current char*
address by the amount of bytes already read
01:51 < KirkMcDonald> I see no reason to make this assumption.
01:51 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 240
seconds]
01:52 * exch sighs.  I am inclined to just toss this thing out and move on to
something less insane
01:53 < exch> KirkMcDonald: the assumption is proving to be wrong.
Evidenced by the fact that I'm not getting the second string as expected
02:14 < kmeyer> KirkMcDonald: right, that is very atypical of C
02:15 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Read error:
Connection reset by peer]
02:15 -!- tazjin [~tazjin@p5DC83F3C.dip.t-dialin.net] has quit [Ping timeout: 265
seconds]
02:15 < kmeyer> mostly you have packed arrays of pointers to C strings,
which are themselves not neccesarily in adjacent memory
02:27 -!- tumdum [~tumdum@atu197.neoplus.adsl.tpnet.pl] has joined #go-nuts
02:27 -!- tumdum [~tumdum@atu197.neoplus.adsl.tpnet.pl] has quit [Changing host]
02:27 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
02:38 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
02:43 -!- gospch_ [~gospch@unaffiliated/gospch] has joined #go-nuts
02:45 -!- crakrjak [~merc@rrcs-70-62-156-154.central.biz.rr.com] has quit [Read
error: Connection reset by peer]
02:46 -!- gospch [~gospch@unaffiliated/gospch] has quit [Ping timeout: 265
seconds]
02:49 -!- Zoopee [alsbergt@zoopee.org] has quit [Ping timeout: 240 seconds]
02:50 -!- Zoopee [alsbergt@zoopee.org] has joined #go-nuts
02:52 -!- maht [~maht__@85-189-31-174.proweb.managedbroadband.co.uk] has quit
[Ping timeout: 246 seconds]
02:57 -!- maht [~maht__@85-189-31-174.proweb.managedbroadband.co.uk] has joined
#go-nuts
03:05 < kmeyer> ugh, I can't figure out what's going wrong here...
03:19 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
03:45 -!- eikenberry [~jae@mail.zhar.net] has quit [Quit: End of line.]
03:49 -!- LennethEX [~LennethEX@S010600119502636d.wp.shawcable.net] has joined
#go-nuts
03:52 < kmeyer> http://gist.github.com/401991 Any ideas?
03:55 -!- tumdum [~tumdum@atu197.neoplus.adsl.tpnet.pl] has joined #go-nuts
03:55 -!- tumdum [~tumdum@atu197.neoplus.adsl.tpnet.pl] has quit [Changing host]
03:55 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
03:57 < LennethEX> How do I compile the windows port?
04:01 -!- cco3-hampster [~conleyo@nat/google/x-ifqanzrkdogtsmwa] has quit [Ping
timeout: 276 seconds]
04:14 -!- cco3-hampster [~conleyo@nat/google/x-ikgvnljzldjewkii] has joined
#go-nuts
04:15 < LennethEX> For having 175 people here it sure is quiet...
04:21 -!- pct [~pct@deep.tw] has joined #go-nuts
04:25 < kmeyer> yep :P
04:25 < kmeyer> the windows port is relatively rough still
04:25 < kmeyer> I'm not familiar with it, sorry
04:27 < LennethEX> I was thinking about hacking on it but I can't seem to
find any information about it other than the binaries.
04:28 <+iant> LennethEX: have you looked at the mailing list?
04:36 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
04:36 < LennethEX> Just did and found what I wanted :)
04:36 -!- bmizeran_ [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
joined #go-nuts
04:38 -!- bmizerany [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
quit [Ping timeout: 246 seconds]
04:39 < kmeyer> aha, I think I figured it out
04:39 < kmeyer> exp/iterable and utf16 are the first packages to be built
that import anything...
04:39 < kmeyer> and I broke import
04:39 < kmeyer> neat
04:40 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
04:54 -!- braddunbar [~brad@rrcs-24-172-225-206.midsouth.biz.rr.com] has joined
#go-nuts
05:00 -!- bmizeran_ [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
quit [Ping timeout: 252 seconds]
05:01 -!- bmizerany [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
joined #go-nuts
05:02 -!- scm [justme@d019080.adsl.hansenet.de] has quit [Ping timeout: 264
seconds]
05:02 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
05:03 -!- illya77 [~illya77@49-191-178-94.pool.ukrtel.net] has joined #go-nuts
05:03 -!- scm [justme@d071135.adsl.hansenet.de] has joined #go-nuts
05:04 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 245
seconds]
05:06 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
05:07 < kmeyer> fixed, rpms are being built automatically again :)
05:33 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has quit [Ping
timeout: 240 seconds]
05:35 -!- bmizeran_ [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
joined #go-nuts
05:38 -!- bmizerany [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
quit [Ping timeout: 240 seconds]
06:00 -!- bmizeran_ [~bmizerany@adsl-68-127-144-234.dsl.pltn13.pacbell.net] has
quit [Remote host closed the connection]
06:02 -!- kingfishr [~kingfishr@c-98-201-60-173.hsd1.tx.comcast.net] has quit
[Remote host closed the connection]
06:04 -!- braddunbar [~brad@rrcs-24-172-225-206.midsouth.biz.rr.com] has quit
[Ping timeout: 264 seconds]
06:06 -!- mfoemmel [~mfoemmel@chml01.drwholdings.com] has quit [Ping timeout: 264
seconds]
06:13 -!- mfoemmel [~mfoemmel@chml01.drwholdings.com] has joined #go-nuts
06:22 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Operation timed out]
06:35 < LennethEX> I can't seem to compile the opengl bindings...  I'm
getting the following errors:
06:35 < LennethEX> main.go:14: out of fixed registers
06:35 < LennethEX> main.go:14: internal compiler error: regfree: reg not
allocated
06:36 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
06:38 < LennethEX> Here's a small program that shows the problem:
http://pastebin.com/uGezSRMJ
06:38 < LennethEX> Any ideas?
06:47 < LennethEX> It works fine if I do the calculation outside of the
float64 cast.
06:50 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Quit:
Leaving]
06:55 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
07:01 -!- Kashia [~Kashia@port-92-200-0-28.dynamic.qsc.de] has joined #go-nuts
07:06 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 260 seconds]
07:08 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
07:10 -!- 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: 240 seconds]
07:17 -!- stalled [~stalled@unaffiliated/stalled] has joined #go-nuts
07:18 -!- ahihi [~generic@cs27127176.pp.htv.fi] has quit [Ping timeout: 246
seconds]
07:19 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
07:28 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Connection reset by peer]
07:29 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
07:29 -!- cco3-hampster [~conleyo@nat/google/x-ikgvnljzldjewkii] has quit [Ping
timeout: 240 seconds]
07:34 -!- damn3d [damn3d@unaffiliated/morpheus/x-0931003] has quit [Ping timeout:
260 seconds]
07:38 -!- ikaros [~ikaros@f052035174.adsl.alicedsl.de] has joined #go-nuts
07:46 -!- stalled [~stalled@unaffiliated/stalled] has quit [Read error: Connection
reset by peer]
07:58 -!- Discoloda [~vincent@adsl-75-37-71-165.dsl.frs2ca.sbcglobal.net] has quit
[Remote host closed the connection]
08:06 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
08:08 -!- ahihi [~generic@cs27127176.pp.htv.fi] has joined #go-nuts
08:14 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
08:31 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
08:47 -!- illya77 [~illya77@49-191-178-94.pool.ukrtel.net] has quit [Read error:
Connection reset by peer]
08:48 < kmeyer> uriel: can you update your link, please -- I've updated the
rpm to the newest release (amd64 at
http://konradm.fedorapeople.org/fedora/RPMS/x86_64/go-0-0.20100504.fc12.x86_64.rpm
, i686 at
http://konradm.fedorapeople.org/fedora/RPMS/i386/go-0-0.20100504.fc12.i686.rpm )
08:49 < kmeyer> and future releases will be built and pushed automatically,
assuming nothing gets broken (which is what happened this time :P)
08:53 -!- ikaros [~ikaros@f052035174.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
09:11 < taruti> Hmm, would it be nifty to have a
gocode.org/<cagegory>/<project> with redirections to
{github,bitbucket,googlecode} for goinstall?
09:14 < taruti> Thus there would gocode.net/container/btree instead of
github.com/runningwild/go-btree
09:15 < taruti> (as an example)
09:17 -!- Kashia [~Kashia@port-92-200-0-28.dynamic.qsc.de] has quit [Ping timeout:
264 seconds]
09:18 -!- easytiger [~gerry@host86-145-107-46.range86-145.btcentralplus.com] has
joined #go-nuts
09:23 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
09:24 -!- easytiger [~gerry@host86-145-107-46.range86-145.btcentralplus.com] has
quit [Ping timeout: 265 seconds]
09:30 -!- Damn3d [damn3d@r26653.ovh.net] has joined #go-nuts
09:35 -!- kel_ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has joined #go-nuts
09:53 -!- wrtp [~rog@89.242.170.31] has quit [Quit: wrtp]
10:06 -!- gospch [~gospch@unaffiliated/gospch] has quit [Ping timeout: 240
seconds]
10:27 -!- gospch [~gospch@unaffiliated/gospch] has joined #go-nuts
10:29 -!- aho [~nya@f052024214.adsl.alicedsl.de] has quit [Ping timeout: 240
seconds]
10:31 -!- Damn3d [damn3d@r26653.ovh.net] has quit [Ping timeout: 258 seconds]
10:32 -!- Damn3d [damn3d@r26653.ovh.net] has joined #go-nuts
10:33 -!- aho [~nya@f051189218.adsl.alicedsl.de] has joined #go-nuts
10:49 -!- Damn3d [damn3d@r26653.ovh.net] has quit [Changing host]
10:49 -!- Damn3d [damn3d@unaffiliated/morpheus/x-0931003] has joined #go-nuts
10:51 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
11:01 -!- alehorst [~alehorst@189.58.135.201] has quit [Remote host closed the
connection]
11:02 -!- alehorst [~alehorst@189.58.135.201] has joined #go-nuts
11:10 -!- gospch [~gospch@unaffiliated/gospch] has quit [Remote host closed the
connection]
11:19 -!- Xurix [~Luixsia@AToulouse-254-1-44-45.w81-250.abo.wanadoo.fr] has quit
[Read error: Connection reset by peer]
11:20 -!- gospch [~gospch@unaffiliated/gospch] has joined #go-nuts
11:29 -!- rhelmer_ [~rhelmer@adsl-69-107-94-119.dsl.pltn13.pacbell.net] has joined
#go-nuts
11:31 -!- rhelmer__ [~rhelmer@adsl-69-107-94-119.dsl.pltn13.pacbell.net] has
joined #go-nuts
11:32 -!- rhelmer [~rhelmer@adsl-69-107-94-119.dsl.pltn13.pacbell.net] has quit
[Ping timeout: 264 seconds]
11:33 -!- rhelmer_ [~rhelmer@adsl-69-107-94-119.dsl.pltn13.pacbell.net] has quit
[Ping timeout: 240 seconds]
11:43 -!- crashR [~crasher@codextreme.pck.nerim.net] has joined #go-nuts
11:53 -!- LennethEX [~LennethEX@S010600119502636d.wp.shawcable.net] has quit
[Quit: Leaving]
11:56 -!- lux` [~lux`@151.95.180.63] has joined #go-nuts
12:05 -!- tazjin [~tazjin@p5DC83F2C.dip.t-dialin.net] has joined #go-nuts
12:10 -!- SugarBear [~stephen.s@91.86.27.64] has joined #go-nuts
12:15 -!- SugarBear [~stephen.s@91.86.27.64] has quit []
12:20 -!- gospch [~gospch@unaffiliated/gospch] has quit [Ping timeout: 265
seconds]
12:23 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Read error:
Operation timed out]
12:24 -!- neL [~neL@202.3.77.11] has joined #go-nuts
12:25 -!- neL [~neL@202.3.77.11] has left #go-nuts []
12:25 -!- Kashia [~Kashia@port-92-200-62-162.dynamic.qsc.de] has joined #go-nuts
12:30 -!- wrtp [~rog@89.242.170.31] has joined #go-nuts
12:31 -!- ThunderChicken [~bofh@dsl093-032-217.snd1.dsl.speakeasy.net] has quit
[Quit: This computer has gone to sleep]
12:51 -!- Chinainvent [~yunkai@121.0.29.199] has joined #go-nuts
12:58 -!- smw [~stephen@c-76-28-90-0.hsd1.ct.comcast.net] has quit [Quit:
Konversation terminated!]
12:59 -!- smw [~stephen@c-76-28-90-0.hsd1.ct.comcast.net] has joined #go-nuts
12:59 -!- ACh [~leo@pc-2-63-74-200.cm.vtr.net] has joined #go-nuts
13:00 -!- ACh [~leo@pc-2-63-74-200.cm.vtr.net] has quit [Client Quit]
13:00 -!- smw [~stephen@c-76-28-90-0.hsd1.ct.comcast.net] has quit [Client Quit]
13:01 -!- smw [~stephen@c-76-28-90-0.hsd1.ct.comcast.net] has joined #go-nuts
13:03 -!- alehorst [~alehorst@189.58.135.201] has quit [Ping timeout: 248 seconds]
13:19 -!- rlab_ [~Miranda@91.200.158.34] has joined #go-nuts
13:21 -!- rlab [~Miranda@91.200.158.34] has quit [Ping timeout: 240 seconds]
13:25 < vrtical> Hey guys, can anyone point me to a code snippet showing
slicing being used on a string?  I can't quite get my head around the syntax.
13:26 < jessta> vrtical: it's pretty much just, somestring[0:5]
13:26 < smw> vrtical: it is almost exactly like how python does it
13:28 < vrtical> var sl []string = somestring[0:2] <<< like that?
" cannot use (node SLICESTR) (type string) as type []string in assignment"
13:31 -!- Chinainvent [~yunkai@121.0.29.199] has quit [Ping timeout: 264 seconds]
13:33 < smw> vrtical: sl := sometring[0:2]
13:34 < smw> assuming some string is has a length >= 2, that will give
you a 2 char string
13:34 < smw> ah
13:35 < smw> vrtical: []string is a slice of strings
13:35 < smw> like an array of strings.  Not a string
13:36 < vrtical> smw: Thank you.  Just to clarify then, that sl :=
somestring[0:2] is syntactic sugar for what exactly?  Something calling new or
make?
13:36 < smw> that is an initialization
13:37 < smw> it is short for var name type =
13:38 < vrtical> and the type in this case is?
13:38 < smw> the type is string
13:40 < vrtical> Gotcha, thank you very much.
13:43 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
13:47 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
13:54 -!- perdix [~perdix@sxemacs/devel/perdix] has joined #go-nuts
13:56 -!- tumdum [~tumdum@atu197.neoplus.adsl.tpnet.pl] has joined #go-nuts
13:56 -!- tumdum [~tumdum@atu197.neoplus.adsl.tpnet.pl] has quit [Changing host]
13:56 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
13:58 -!- ikke [~ikke@187.7.120.105] has joined #go-nuts
13:58 -!- ikke [~ikke@187.7.120.105] has quit [Changing host]
13:58 -!- ikke [~ikke@unaffiliated/ikkebr] has joined #go-nuts
14:03 -!- lux` [~lux`@151.95.180.63] has quit [Read error: Connection reset by
peer]
14:05 -!- Adys [~Adys@unaffiliated/adys] has quit [Ping timeout: 265 seconds]
14:08 -!- lux` [lucs@151.95.180.63] has joined #go-nuts
14:18 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
14:18 -!- Adys [~Adys@unaffiliated/adys] has joined #go-nuts
14:22 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
14:39 < MizardX> A slice of a string is a string.  []string is a slice of an
array of strings.
14:44 -!- ineol [~ineol@mar75-9-88-171-191-168.fbx.proxad.net] has joined #go-nuts
14:44 -!- ineol [~ineol@mar75-9-88-171-191-168.fbx.proxad.net] has left #go-nuts
[]
14:45 -!- ThunderChicken [~bofh@dsl093-032-217.snd1.dsl.speakeasy.net] has joined
#go-nuts
15:12 -!- MizardX [~MizardX@unaffiliated/mizardx] has quit [Read error: Connection
reset by peer]
15:13 -!- MizardX [~MizardX@unaffiliated/mizardx] has joined #go-nuts
15:21 -!- perdix [~perdix@sxemacs/devel/perdix] has quit [Quit: A cow.  A
trampoline.  Together they fight crime!]
15:30 < uriel> taruti: I registered gopkg.org exactly for that purpose
15:30 < uriel> kmeyer: will update in a bit, bussy with other stuff atm
15:30 < taruti> uriel: nice :)
15:42 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
15:48 < taruti> Can someone try recent tip on 386?  it segfaults for me in
all.bash
15:48 < taruti> make[2]: Entering directory `/home/taruti/go/src/pkg/net'
15:48 < taruti> /home/taruti/bin/8g -o _gotest_.8 dnsclient.go dnsconfig.go
dnsmsg.go fd.go fd_linux.go hosts.go ip.go ipsock.go net.go parse.go pipe.go
port.go sock.go tcpsock.go udpsock.go unixsock.go dialgoogle_test.go hosts_test.go
ip_test.go net_test.go parse_test.go pipe_test.go port_test.go server_test.go
timeout_test.go
15:48 < taruti> make[2]: *** [_gotest_.8] Segmentation fault
15:55 < taruti> was a disk space issue, with "nice" error reporting
15:55 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Quit:
leaving]
15:56 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
15:59 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
16:01 -!- Kashia [~Kashia@port-92-200-62-162.dynamic.qsc.de] has quit [Ping
timeout: 276 seconds]
16:02 -!- lmoura [~lauromour@200.184.118.130] has quit [Ping timeout: 258 seconds]
16:18 -!- lmoura [~lauromour@200.184.118.136] has joined #go-nuts
16:23 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
16:25 -!- Kashia [~Kashia@port-92-200-221-130.dynamic.qsc.de] has joined #go-nuts
16:27 -!- xenplex [~xenplex@195.46.241.226] has joined #go-nuts
16:28 -!- tazjin [~tazjin@p5DC83F2C.dip.t-dialin.net] has quit [Remote host closed
the connection]
16:32 -!- Svarthandske [~nn@dsl-tkubrasgw1-fe3cdc00-28.dhcp.inet.fi] has joined
#go-nuts
16:35 -!- xenplex [~xenplex@195.46.241.226] has quit [Quit: xenplex]
16:36 -!- tazjin [~tazjin@p5DC83F2C.dip.t-dialin.net] has joined #go-nuts
16:50 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
16:53 -!- Discoloda [~vincent@adsl-75-37-71-165.dsl.frs2ca.sbcglobal.net] has
joined #go-nuts
16:56 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has joined
#go-nuts
16:58 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Remote
host closed the connection]
17:12 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 240
seconds]
17:14 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
17:15 -!- LowRider [~LowRider@178.154.5.46] has joined #go-nuts
17:16 < plexdev> http://is.gd/calRA by [Charles L. Dorian] in
go/src/pkg/cmath/ -- cmath: add package description
17:17 < plexdev> http://is.gd/calRE by [Christopher Wedgwood] in go/src/ --
build; allow MAKEFLAGS to be set outside the build scripts
17:17 -!- LowRider [~LowRider@178.154.5.46] has quit [Killed (idoru (Spam is off
topic on freenode.))]
17:17 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
17:33 < plexdev> http://is.gd/camNq by [Robert Griesemer] in go/src/pkg/big/
-- big: implemented format support for fmt library, MulRange
17:35 -!- Adys [~Adys@unaffiliated/adys] has quit [Quit: I ♥ Unicode]
17:39 -!- Project_2501 [~Marvin@82.84.68.182] has joined #go-nuts
17:41 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Quit: Leaving]
17:42 -!- lux` [lucs@151.95.180.63] has quit [Read error: Connection reset by
peer]
17:42 -!- lux` [lux`@151.95.180.63] has joined #go-nuts
17:43 -!- lmoura [~lauromour@200.184.118.136] has quit [Quit: Leaving]
17:45 -!- wrtp [~rog@89.242.170.31] has quit [Quit: wrtp]
17:46 -!- mertimor [~mertimor@p578EDA82.dip.t-dialin.net] has joined #go-nuts
17:50 -!- michael|_ [~maikeru@24-107-56-173.dhcp.stls.mo.charter.com] has left
#go-nuts []
17:50 -!- michael| [~maikeru@unaffiliated/maikeru/x-7708887] has joined #go-nuts
17:57 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Remote
host closed the connection]
18:05 -!- Adys [~Adys@unaffiliated/adys] has joined #go-nuts
18:24 < kmeyer> uriel: no worries
18:31 -!- path[l] [UPP@120.138.102.34] has quit [Ping timeout: 258 seconds]
18:32 -!- Project_2501 [~Marvin@82.84.68.182] has quit [Quit: E se abbasso questa
leva che succ...]
18:43 -!- Ender2070 [~Ender2070@bas10-toronto12-1177614931.dsl.bell.ca] has quit
[Remote host closed the connection]
18:44 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
18:44 -!- engla [~ulrik@wikipedia/Sverdrup] has joined #go-nuts
18:55 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has quit [Quit:
Null-A]
18:56 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has joined
#go-nuts
18:59 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
19:05 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
19:06 -!- Discoloda [~vincent@adsl-75-37-71-165.dsl.frs2ca.sbcglobal.net] has quit
[Remote host closed the connection]
19:08 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Read
error: Operation timed out]
19:09 -!- Discoloda [~vincent@adsl-75-37-71-165.dsl.frs2ca.sbcglobal.net] has
joined #go-nuts
19:09 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
19:12 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 246 seconds]
19:21 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has quit [Quit:
Null-A]
19:23 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
19:23 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has joined
#go-nuts
19:26 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
19:32 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has quit [Ping
timeout: 240 seconds]
19:32 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
19:38 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has quit [Quit:
Null-A]
19:40 -!- Null-A [~Null-A@c-98-210-102-188.hsd1.ca.comcast.net] has joined
#go-nuts
19:47 -!- vsayer [~vivek@c-76-103-244-154.hsd1.ca.comcast.net] has joined #go-nuts
19:49 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
20:12 -!- impomatic [~chatzilla@87.115.109.119] has joined #go-nuts
20:20 -!- micr0spell [~micr0spel@200.77.157.13] has joined #go-nuts
20:25 -!- micr0spell [~micr0spel@200.77.157.13] has quit [Killed (idoru (Spam is
off topic on freenode.))]
21:10 -!- carllerche [~carllerch@208.87.61.203] has joined #go-nuts
21:12 -!- krejler [~krejler@poipu/developer/krejler] has joined #go-nuts
21:23 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
21:24 -!- rlab_ [~Miranda@91.200.158.34] has quit [Ping timeout: 246 seconds]
21:32 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has quit
[Ping timeout: 240 seconds]
21:33 -!- mertimor [~mertimor@p578EDA82.dip.t-dialin.net] has quit [Quit:
mertimor]
21:34 -!- carllerche [~carllerch@208.87.61.203] has quit [Quit: carllerche]
21:35 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has joined
#go-nuts
21:45 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Remote host closed the
connection]
21:48 -!- Kashia [~Kashia@port-92-200-221-130.dynamic.qsc.de] has quit [Ping
timeout: 260 seconds]
21:54 -!- yebyen [~yebyen@harrydavis.csh.rit.edu] has quit [Quit: Changing server]
21:56 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
22:08 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Ping timeout: 240 seconds]
22:29 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 245
seconds]
22:31 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
22:34 -!- impomatic [~chatzilla@87.115.109.119] has quit [Quit: ChatZilla 0.9.86
[Firefox 3.5.9/20100315083431]]
22:35 -!- lux` [lux`@151.95.180.63] has quit [Remote host closed the connection]
22:35 -!- wtfness [~wan@89.211.190.132] has joined #go-nuts
22:36 -!- wtfness [~wan@89.211.190.132] has quit [Client Quit]
22:41 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
22:43 -!- kel_ [~kel@cpc2-leat2-0-0-cust98.hers.cable.ntl.com] has quit [Ping
timeout: 265 seconds]
22:45 -!- wtfness [~wtfness@89.211.190.132] has joined #go-nuts
22:47 -!- wtfness [~wtfness@89.211.190.132] has left #go-nuts []
22:54 < exch> is there a convenient method to find the system's endianness
in go?  I can wip something up, but if there's alreayd something in the packages..
22:55 -!- engla [~ulrik@wikipedia/Sverdrup] has quit [Ping timeout: 264 seconds]
22:57 < taruti> exch: what are you trying to do?
22:58 < taruti> exch: encoding/binary is not enough?
22:58 < exch> enc/binary requires me to specify the endianness.  When
writing it's ok, but importing data from a c library and reading it makes that an
unknown
22:59 < taruti> so you want "native-endian"?
22:59 < taruti> just poke things into a byte buffer?
22:59 < exch> indeed
23:00 < exch> yea I've alreayd got a working routine.  Was just wondering if
there was something in the standard lib
23:00 < taruti> not a pretty way
23:00 < exch> requires unsafe to be included
23:01 < taruti> or encoding/binary (write it in little endian, read it as
native and check whether they are the same)
23:02 -!- itrekkie [~itrekkie@ip68-228-245-244.ph.ph.cox.net] has joined #go-nuts
23:02 < exch> where do you get the 'native' byteorder from?
23:03 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Ping timeout: 264
seconds]
23:04 -!- ikkebr [~ikke@187.7.120.105] has joined #go-nuts
23:04 -!- ikkebr [~ikke@187.7.120.105] has quit [Changing host]
23:04 -!- ikkebr [~ikke@unaffiliated/ikkebr] has joined #go-nuts
23:06 < taruti> exch: just reading writing though a pointer
23:07 < exch> righty, thought you found a 'native byteorder' indicator
somewhere :)
23:07 -!- ikke [~ikke@unaffiliated/ikkebr] has quit [Ping timeout: 268 seconds]
23:17 -!- itrekkie [~itrekkie@ip68-228-245-244.ph.ph.cox.net] has quit [Quit:
itrekkie]
23:35 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
23:54 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
--- Log closed Sun May 16 00:00:46 2010