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

--- Log opened Tue Apr 13 00:00:16 2010
--- Day changed Tue Apr 13 2010
00:00 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Ping
timeout: 246 seconds]
00:05 -!- nutate [~rseymour@cacsag4.usc.edu] has joined #go-nuts
00:07 -!- rup [Rupert@deathcoil.net] has quit [Ping timeout: 240 seconds]
00:07 -!- ahjamk [~s@91.106.36.122] has quit [Quit: ahjamk]
00:08 -!- rup [Rupert@deathcoil.net] has joined #go-nuts
00:08 -!- aljamms8 [~s@91.106.36.122] has joined #go-nuts
00:10 -!- m-takagi [~m-takagi@linode.m-takagi.jp] has left #go-nuts ["Leaving..."]
00:11 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
00:17 -!- thakis [~thakis@nat/google/x-hjrpbguvbbltazke] has quit [Read error:
Operation timed out]
00:19 -!- tomato [~tomato@65.174.252.13] has joined #go-nuts
00:21 < plexdev> http://is.gd/bqdfu by [Rob Pike] in go/src/pkg/rpc/ --
fixes for rpc:
00:22 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
00:23 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 240 seconds]
00:24 -!- tomato [~tomato@65.174.252.13] has quit [Client Quit]
00:28 -!- aljamms8 [~s@91.106.36.122] has quit [Quit: aljamms8]
00:31 -!- nettok [~netto@200.119.151.152] has joined #go-nuts
00:36 -!- nettok_ [~netto@200.119.151.152] has joined #go-nuts
00:40 -!- nettok [~netto@200.119.151.152] has quit [Ping timeout: 276 seconds]
00:44 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has quit
[Read error: Connection reset by peer]
00:44 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
00:53 -!- zyichi [~zyichi@124.205.180.154] has quit [Ping timeout: 258 seconds]
00:54 -!- zyichi [~zyichi@124.205.180.154] has joined #go-nuts
00:54 < plexdev> http://is.gd/bqeKs by [Christopher Wedgwood] in 2 subdirs
of go/src/pkg/ -- Remove exp/exception as it's no longer relevant
00:54 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
00:57 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
00:58 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Client Quit]
01:02 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:05 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has quit
[Quit: carllerche]
01:08 < kimelto> exception no longer relevant?
01:08 < uriel> kimelto: obviously
01:08 < uriel> read up on panic/recover
01:09 -!- tux21b [~christoph@90.146.60.30] has quit [Read error: Connection reset
by peer]
01:10 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has quit [Ping
timeout: 240 seconds]
01:13 -!- tabo [~tabot@camelot.tabo.pe] has left #go-nuts []
01:16 < kimelto> uriel: oh!  :)
01:19 < kimelto> that's like doing a big try/catch for the entire function?
01:20 < kimelto> ie.  how to determine which function panic'ed?
01:20 < bawr> Currently, writers don't have an established way of signalling
the last write to be made, whereas readers signal a last read by an end-of-file
wrror, correct?
01:23 -!- jdp [~gu@75.97.120.11.res-cmts.senj.ptd.net] has quit []
01:24 < bawr> I'm asking because I was wondering how would I go about
implementing writer wrappers that add padding as necessary, and so far the best
idea I have is using .Flush() to add the padding to a previously selected
boundary, and signal an error if further writes / flush calls are made.
01:26 < plexdev> http://is.gd/bqgPZ by [Christopher Wedgwood] in
go/test/garbage/ -- test: minor updates to avoid bitrot
01:28 -!- bmizerany [~bmizerany@114.sub-75-208-58.myvzw.com] has joined #go-nuts
01:28 -!- bmizerany [~bmizerany@114.sub-75-208-58.myvzw.com] has quit [Remote host
closed the connection]
01:28 -!- bmizerany [~bmizerany@114.sub-75-208-58.myvzw.com] has joined #go-nuts
01:31 < uriel> kimelto: uhu?  did you actually read about it?
01:35 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 276
seconds]
01:36 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:37 < kimelto> uriel: quickly
01:40 < kimelto> what I meant is something like catch(MyFooExceeption e)
instead of catch(Exception e), that would be recover(MyFooInterface) instead of
recover() and then use reflection
01:41 -!- megaboz [~none@189.115.4.46] has joined #go-nuts
01:53 < uriel> kimelto: I really recommend you read up both the docs and the
threads in golang-nuts regarding panic/recover
01:53 < uriel> panic/recover are *not* exceptions
01:53 < uriel> but solve the problems that multiple return values can't
solve so well, as rob put it: there should usually not be more than a handlful of
calls to recover() in a program
01:53 < uriel> (often perhaps only one)
01:54 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has joined
#go-nuts
01:58 < kimelto> uriel: only read the go specs section talking about
recover.  will read the thread.
02:05 -!- bmizerany [~bmizerany@114.sub-75-208-58.myvzw.com] has quit [Remote host
closed the connection]
02:05 -!- nutate [~rseymour@cacsag4.usc.edu] has quit [Quit: nutate]
02:07 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
02:07 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
02:17 -!- bmizerany [~bmizerany@adsl-68-127-172-39.dsl.pltn13.pacbell.net] has
joined #go-nuts
02:26 -!- megaboz [~none@189.115.4.46] has quit [Quit: Lost terminal]
02:31 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Quit: Venom_X]
02:36 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has joined #go-nuts
02:38 -!- Nitro [~nitro@208.92.17.21] has quit [Quit: Leaving.]
02:45 -!- bmizeran_ [~bmizerany@adsl-68-127-172-39.dsl.pltn13.pacbell.net] has
joined #go-nuts
02:47 -!- bmizerany [~bmizerany@adsl-68-127-172-39.dsl.pltn13.pacbell.net] has
quit [Ping timeout: 258 seconds]
02:51 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 252 seconds]
02:58 -!- thakis [~thakis@c-71-198-222-88.hsd1.ca.comcast.net] has joined #go-nuts
02:59 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
03:08 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
03:09 -!- b00m_chef [~watr@128.189.89.92] has joined #go-nuts
03:24 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
03:25 -!- rbn [~ruben@134.102.3.25] has quit [Ping timeout: 260 seconds]
03:25 -!- rbn [~ruben@134.102.3.25] has joined #go-nuts
03:27 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has quit [Ping
timeout: 260 seconds]
03:28 -!- nettok_ [~netto@200.119.151.152] has quit [Ping timeout: 264 seconds]
03:30 -!- nettok_ [~netto@200.119.151.152] has joined #go-nuts
03:33 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has joined #go-nuts
03:34 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 248 seconds]
03:44 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
03:48 -!- nettok_ [~netto@200.119.151.152] has quit [Ping timeout: 265 seconds]
03:52 -!- bmizeran_ [~bmizerany@adsl-68-127-172-39.dsl.pltn13.pacbell.net] has
quit [Ping timeout: 258 seconds]
03:53 -!- Wiz126 [Wiz126@72.20.221.35] has quit [Ping timeout: 240 seconds]
03:54 -!- bmizerany [~bmizerany@132.sub-75-210-231.myvzw.com] has joined #go-nuts
04:01 -!- carllerche [~carllerch@208.87.61.146] has joined #go-nuts
04:10 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Ping timeout: 245
seconds]
04:13 -!- bmizerany [~bmizerany@132.sub-75-210-231.myvzw.com] has quit [Remote
host closed the connection]
04:13 -!- mvillmow [~quassel@99-73-92-8.lightspeed.sntcca.sbcglobal.net] has
joined #go-nuts
04:19 -!- robot12 [~robot12@robot12.kgts.ru] has joined #go-nuts
04:20 -!- bjarneh [~bjarneh@1x-193-157-204-130.uio.no] has quit [Quit: leaving]
04:21 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
04:27 -!- Wiz126 [Wiz126@72.20.221.35] has joined #go-nuts
04:32 -!- rup [Rupert@deathcoil.net] has quit [Ping timeout: 265 seconds]
04:34 -!- b00m_chef [~watr@128.189.89.92] has quit [Ping timeout: 264 seconds]
04:37 -!- mvillmow [~quassel@99-73-92-8.lightspeed.sntcca.sbcglobal.net] has left
#go-nuts ["http://quassel-irc.org - Chat comfortably.  Anywhere."]
04:37 -!- mvillmow [~quassel@99-73-92-8.lightspeed.sntcca.sbcglobal.net] has
joined #go-nuts
04:38 < mvillmow> So i'm trying to learn go and i've written a basic binary
tree in go.  I"m trying to do it as a generic container, but not sure if I am
doing it correctly.  Could someone point out what I might be doing incorrectly?
04:38 < mvillmow> Here is the pastebin of my code:
http://pastebin.com/6tQBzE8u
04:43 < nf> mvillmow: does it work?  what are your concerns?
04:44 < mvillmow> well, I can compile it, but i'm having trouble getting it
to accept a data type with my test suite.  I'm pretty sure the problem is with my
my interface, but not sure how to solve it
04:44 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 246 seconds]
04:45 < mvillmow> I'd like to support any data type that implement less and
equal functions, but also support the native types by providing less/equal
functions for them
04:46 < uriel> mvillmow: what problem are you trying to solve?
04:46 < mvillmow> learn the language :)
04:47 < mvillmow> so i'm trying to port some generic libraries I wrote in C
to Go as the only difference should be syntax and language issues, and not
algorithmic or implementation issues
04:47 < uriel> that is not a very good way to try a new language
04:47 < uriel> IMHO it is much better to try to build some real program that
does something
04:48 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 246 seconds]
04:49 < kmeyer> mvillmow: for some examples of very similar things to look
to as a model, see http://golang.org/pkg/container/
04:50 < mvillmow> yeah, i've been staring at those
04:50 < nf> mvillmow: what trouble are you having with your tests?
04:51 < nf> mvillmow: it's easier for me to answer a specific question than
a general one
04:51 < bawr> So. Go has no generics.  How do we build type-safe containers?
04:51 < mvillmow> ok, will get the error message
04:51 < nf> bawr: you mean containers that are guaranteed to have a specific
type?
04:52 < bawr> To hold a specific type, yes.
04:52 < nf> bawr: you could embed an existing container type in a type that
implements type-specific methods
04:52 < nf> bawr: and performs the type inference on the way out
04:54 < bawr> Sounds...  bulky.
04:54 < nf> yes, it does.
04:55 < drhodes> I made a generic tree using type assertions and interfaces,
it was bad.
04:55 < kmeyer> you could take a template and do basic replacement with
gofmt
04:55 < mvillmow> nf: here is my error, http://pastebin.com/UWWREw7G
04:55 < kmeyer> it's cludgy, but it works and it's fast
04:55 < mvillmow> i want to extend the 'int' data type to use the interface
that my tree requires
04:56 < mvillmow> now I know I got the type's wrong
04:56 < bawr> kmeyer: Ah, that's mostly what I wanted.  Thanks.
04:56 < nf> mvillmow: in your methods on INT you need to say b.(INT)
04:57 < mvillmow> but I think my problem is my understanding of interfaces
05:00 < mvillmow> nf: thanks, where can I read up more on this?
05:00 < drhodes> and there's this http://github.com/droundy/gotgo, "go
language generics system" haven't tried it yet, and the mailing list discussion
about it:
http://groups.google.com/group/golang-nuts/browse_thread/thread/4e55d4fb183313fd/25763b3b390f824a?q=generics&lnk=ol&
05:00 < nf> mvillmow: have you read this?
http://golang.org/doc/effective_go.html
05:01 < nf> mvillmow: did you try b.(INT) ? did it work?
05:01 < mvillmow> most of it
05:01 < mvillmow> yeah b.(INT) works
05:01 < nf> yay, good :)
05:01 < nf> i wasn't 100% ;)
05:01 < mvillmow> still going through the google docs
05:01 < mvillmow> well, now I panic'd the runtime
05:02 < nf> what's the panic?
05:02 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has joined
#go-nuts
05:02 < mvillmow> nil pointer
05:02 < nf> see this: http://golang.org/doc/go_spec.html#Type_assertions
05:03 < nf> yeah but where did it happen?
05:03 < mvillmow> i tried a := New.Int(1)
05:03 < mvillmow> but err Int(1)
05:03 < mvillmow> so if I do a := 1, it is of type int, but I want type INT,
will Go automatically pick the right type?  I'm guessing no in this case
05:04 < nf> mvillmow: tryp: var a INT = 1
05:04 < nf> s/tryp/try/
05:04 < nf> just declare the var's type explictly
05:04 < nf> also doesn't a:= INT(1) work ?
05:05 < nf> or is it INT{1} ? i'm not 100%
05:06 < bawr> kmeyer: Ah, so I guess it'll work just well if I add the
necessary gofmt -r runs to the makefile, and set make clean to remove the
generated sources.
05:06 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
05:07 < mvillmow> ahh, ok, I was reading it correct.  a:= INT(1) works, it's
my code that is wrong
05:07 < mvillmow> well my tree code
05:07 < mvillmow> gdb time :)
05:14 -!- rup [Rupert@deathcoil.net] has joined #go-nuts
05:15 < mvillmow> nf, thanks for your help, i fail my first test :)
05:15 < nf> mvillmow: no problem at all
05:20 -!- nettok_ [~netto@200.119.151.152] has joined #go-nuts
05:21 < mvillmow> ok, any advice on debugging?  :)
05:21 -!- rup [Rupert@deathcoil.net] has quit [Ping timeout: 264 seconds]
05:22 < nf> i use println ;)
05:23 < nf> particularly in an algorithm like this, i would print state at
the top of loops, etc
05:23 < nf> and then follow it through, see if it makes sense
05:23 < nf> you want to confirm your 'invariants' (if you think about
algorithms that way)
05:24 < kmeyer> bawr: yeah, something like that.
05:24 < kmeyer> similar binary bloat to C++ templates
05:24 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
05:24 < kmeyer> but you can also choose to go the java route and typecheck
every time you pull a value out, too
05:24 < kmeyer> Go gives you choices :)
05:24 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 268 seconds]
05:24 < bawr> Heh.
05:26 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
05:29 -!- rup [Rupert@deathcoil.net] has joined #go-nuts
05:29 -!- nettok_ [~netto@200.119.151.152] has quit [Ping timeout: 260 seconds]
05:31 -!- nettok_ [~netto@200.119.151.152] has joined #go-nuts
05:33 -!- Netsplit *.net <-> *.split quits: SecretAgent, MacCoaster,
sladegen, suiside, nchaimov, DJCapelis, samitheberber, prip, pjm0616, kkress, (+66
more, use /NETSPLIT to show all of them)
05:34 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 240 seconds]
05:34 -!- Netsplit over, joins: Zoopee, rthc, prip, dho_plan9, tsung, SRabbelier,
nettok_, rup, carllerche, scarabx (+66 more)
05:36 -!- Netsplit *.net <-> *.split quits: thakis, mrd`, andreer,
XenoPhoenix, jimki_, Guest1752, yashi, bmizerany, fluf^arr, General1337, (+44
more, use /NETSPLIT to show all of them)
05:36 -!- Netsplit over, joins: soul9, maht_, wuehlmaus, yebyen, ssb, andreer,
nsz, kuroneko, TMKCodes, bmizerany (+44 more)
05:44 -!- rhelmer [~rhelmer@173-11-108-233-SFBA.hfc.comcastbusiness.net] has
joined #go-nuts
05:44 -!- difekta [~clays@c-24-5-65-40.hsd1.ca.comcast.net] has joined #go-nuts
05:44 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 246 seconds]
05:45 -!- difekta [~clays@c-24-5-65-40.hsd1.ca.comcast.net] has quit [Quit:
Leaving]
05:45 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
05:48 -!- nettok_ [~netto@200.119.151.152] has quit [Ping timeout: 240 seconds]
05:50 -!- araujo [~araujo@gentoo/developer/araujo] has joined #go-nuts
05:50 -!- aho [~nya@g227086014.adsl.alicedsl.de] has quit [Ping timeout: 248
seconds]
05:52 -!- rup [Rupert@deathcoil.net] has quit [Ping timeout: 246 seconds]
05:52 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Max SendQ exceeded]
05:53 -!- difekta [~clays@c-24-5-65-40.hsd1.ca.comcast.net] has joined #go-nuts
05:53 -!- carllerche [~carllerch@208.87.61.146] has quit [Quit: carllerche]
05:54 -!- araujo [~araujo@gentoo/developer/araujo] has joined #go-nuts
05:54 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 246 seconds]
05:55 -!- difekta [~clays@c-24-5-65-40.hsd1.ca.comcast.net] has left #go-nuts []
05:58 -!- carllerche [~carllerch@208.87.61.146] has joined #go-nuts
06:00 -!- rup [Rupert@deathcoil.net] has joined #go-nuts
06:06 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
06:12 -!- carllerche [~carllerch@208.87.61.146] has quit [Quit: carllerche]
06:12 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
06:18 -!- nettok_ [~netto@200.119.151.152] has joined #go-nuts
06:20 -!- aho [~nya@f052060000.adsl.alicedsl.de] has joined #go-nuts
06:21 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 252 seconds]
06:24 -!- nettok__ [~netto@200.119.151.152] has joined #go-nuts
06:27 -!- nettok_ [~netto@200.119.151.152] has quit [Ping timeout: 248 seconds]
06:28 -!- no_mind [~orion@122.161.33.201] has joined #go-nuts
06:29 -!- rhelmer [~rhelmer@173-11-108-233-SFBA.hfc.comcastbusiness.net] has quit
[Quit: rhelmer]
06:29 -!- nettok_ [~netto@200.119.151.152] has joined #go-nuts
06:32 -!- aljamms8 [~s@91.106.36.122] has joined #go-nuts
06:33 -!- nettok__ [~netto@200.119.151.152] has quit [Ping timeout: 258 seconds]
06:35 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 264 seconds]
06:37 -!- Fish [~Fish@78.251.198.48] has joined #go-nuts
06:38 -!- nettok_ [~netto@200.119.151.152] has quit [Ping timeout: 268 seconds]
06:40 -!- nighty__ [~nighty@210.188.173.245] has joined #go-nuts
06:45 -!- aljamms8 [~s@91.106.36.122] has quit [Quit: aljamms8]
06:47 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
06:47 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 246
seconds]
06:50 -!- ShadowIce` [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
06:51 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
06:53 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Ping timeout:
240 seconds]
06:57 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
07:02 -!- max_atreides [~max_atrei@cpe-24-168-34-229.hvc.res.rr.com] has joined
#go-nuts
07:05 -!- Discoloda [~vincent@adsl-76-231-56-49.dsl.frs2ca.sbcglobal.net] has quit
[Remote host closed the connection]
07:12 -!- perdix [~perdix@f055084237.adsl.alicedsl.de] has joined #go-nuts
07:12 -!- perdix [~perdix@f055084237.adsl.alicedsl.de] has quit [Changing host]
07:12 -!- perdix [~perdix@sxemacs/devel/perdix] has joined #go-nuts
07:16 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has quit [Ping
timeout: 276 seconds]
07:16 -!- jackman [~jackman@c-24-21-216-140.hsd1.or.comcast.net] has quit [Quit:
leaving]
07:19 -!- jackman [~jackman@c-24-21-216-140.hsd1.or.comcast.net] has joined
#go-nuts
07:29 -!- ikaros [~ikaros@e176228080.adsl.alicedsl.de] has joined #go-nuts
07:31 -!- meatmanek [~meatmanek@mesingw.student.cwru.edu] has quit [Quit: Leaving]
07:43 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 248 seconds]
07:44 -!- max_atre1des [~max_atrei@cpe-24-168-34-229.hvc.res.rr.com] has joined
#go-nuts
07:45 -!- max_atreides [~max_atrei@cpe-24-168-34-229.hvc.res.rr.com] has quit
[Read error: Operation timed out]
07:51 -!- aho [~nya@f052060000.adsl.alicedsl.de] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
07:53 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has quit [Ping
timeout: 246 seconds]
07:58 -!- max_atreides [~max_atrei@cpe-24-168-34-229.hvc.res.rr.com] has joined
#go-nuts
07:59 -!- GilJ [~gilles@212.87.98.32] has joined #go-nuts
07:59 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Ping timeout: 260
seconds]
07:59 -!- drry [~drry@unaffiliated/drry] has quit [Read error: Connection reset by
peer]
08:00 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
08:01 -!- max_atre1des [~max_atrei@cpe-24-168-34-229.hvc.res.rr.com] has quit
[Ping timeout: 260 seconds]
08:04 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
08:05 -!- kaigan|work
[~kaigan@c-8290e255.1411-10-64736c14.cust.bredbandsbolaget.se] has joined #go-nuts
08:05 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
08:15 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has joined #go-nuts
08:20 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
08:22 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
08:45 -!- zlu [~quassel@c-71-198-132-91.hsd1.ca.comcast.net] has joined #go-nuts
08:55 -!- kssreeram [~kssreeram@122.174.67.94] has quit [Read error: Connection
reset by peer]
09:01 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
09:04 -!- path[l] [UPP@120.138.102.34] has quit [Quit: path[l]]
09:05 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 276 seconds]
09:07 -!- ikaros [~ikaros@e176228080.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
09:07 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
09:07 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 265 seconds]
09:09 -!- surma [~surma@zb4c3.pia.fu-berlin.de] has joined #go-nuts
09:15 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
09:15 -!- aljamms8 [~s@91.106.36.122] has joined #go-nuts
09:17 -!- ShadowIce` [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
09:19 -!- TMKCodes [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 265 seconds]
09:20 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
09:21 -!- lux` [~lux`@151.95.176.1] has joined #go-nuts
09:22 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
09:23 -!- path[l] [~path@59.162.86.164] has joined #go-nuts
09:32 -!- perdix [~perdix@sxemacs/devel/perdix] has quit [Quit: A cow.  A
trampoline.  Together they fight crime!]
09:33 -!- nighty__ [~nighty@210.188.173.245] has quit [Quit: Disappears in a puff
of smoke]
09:49 -!- peterdn [~peterdn@cpc1-oxfd18-2-0-cust512.4-3.cable.virginmedia.com] has
joined #go-nuts
09:51 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
09:55 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
09:55 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has left #go-nuts []
09:56 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
09:56 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Ping timeout: 260 seconds]
09:56 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Client Quit]
09:58 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
10:01 < bortzmeyer> No news for issue #685 Am I too impatient?
http://code.google.com/p/go/issues/detail?id=685
10:09 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Quit: Leaving.]
10:10 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
10:20 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Quit: Leaving.]
10:20 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
10:22 -!- General13372 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
10:24 -!- gnuvince [~vince@70.35.165.251] has quit [Ping timeout: 252 seconds]
10:26 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 260 seconds]
10:26 -!- gnuvince [~vince@64.235.201.3] has joined #go-nuts
10:35 -!- TMKCodes [~toni@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
10:35 < manveru> does anyone have a libffi wrapper?
10:37 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
10:38 -!- Fish [~Fish@78.251.198.48] has quit [Remote host closed the connection]
10:41 -!- peterdn [~peterdn@cpc1-oxfd18-2-0-cust512.4-3.cable.virginmedia.com] has
quit [Quit: ChatZilla 0.9.86-rdmsoft [XULRunner 1.9.0.15/2009101909]]
10:47 < nf> bortzmeyer: it's hard to test
10:48 < nf> bortzmeyer: i'd like to fix it, but i can't replicate it
10:49 -!- gnuvince_ [~vince@70.35.162.71] has joined #go-nuts
10:49 -!- gnuvince [~vince@64.235.201.3] has quit [Read error: Connection reset by
peer]
10:53 -!- lux` [~lux`@151.95.176.1] has quit [Read error: Connection reset by
peer]
10:59 -!- rlab [~Miranda@91.200.158.34] has quit [Read error: Connection reset by
peer]
11:02 -!- max_atreides [~max_atrei@cpe-24-168-34-229.hvc.res.rr.com] has left
#go-nuts []
11:04 -!- gnuvince_ [~vince@70.35.162.71] has quit [Ping timeout: 246 seconds]
11:07 -!- aho [~nya@f051182065.adsl.alicedsl.de] has joined #go-nuts
11:10 -!- surma [~surma@zb4c3.pia.fu-berlin.de] has quit [Ping timeout: 246
seconds]
11:27 -!- robot12 [~robot12@robot12.kgts.ru] has left #go-nuts []
11:27 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
11:36 -!- Tartiflou [ITWT@unaffiliated/tartiflou] has joined #go-nuts
11:37 -!- aljamms8 [~s@91.106.36.122] has quit [Quit: aljamms8]
11:39 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Quit: home]
11:42 -!- ikaros [~ikaros@guests25.externals.de] has joined #go-nuts
11:43 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
11:43 -!- ugo [~ugo@host68-108-dynamic.2-87-r.retail.telecomitalia.it] has joined
#go-nuts
11:50 -!- Tartiflou [ITWT@unaffiliated/tartiflou] has quit [Quit: ITWT]
11:50 < bortzmeyer> nf: you mean that if you set bindv6only=1, you still
have name resolution?
11:53 -!- exch [~nuada@h144170.upc-h.chello.nl] has quit [Read error: Connection
reset by peer]
11:54 -!- dju [~dju@null.dmz.me] has joined #go-nuts
11:54 -!- ugo [~ugo@host68-108-dynamic.2-87-r.retail.telecomitalia.it] has quit
[Quit: Leaving.]
11:57 -!- exch [~nuada@h144170.upc-h.chello.nl] has joined #go-nuts
12:08 -!- yashi [~yashi@dns1.atmark-techno.com] has quit [Remote host closed the
connection]
12:09 -!- adm_ [~79f1ba66@gateway/web/freenode/x-thmpaojwwtmhmprs] has joined
#go-nuts
12:20 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has joined #go-nuts
12:22 -!- adm_ [~79f1ba66@gateway/web/freenode/x-thmpaojwwtmhmprs] has quit [Quit:
Page closed]
12:25 -!- Luixsia [~Luixsia@AToulouse-254-1-17-250.w81-250.abo.wanadoo.fr] has
quit [Ping timeout: 260 seconds]
12:38 -!- aljamms8 [~s@91.106.36.122] has joined #go-nuts
12:45 -!- zyichi [~zyichi@124.205.180.154] has quit [Quit: zyichi]
12:49 -!- fwiffo [~user@unaffiliated/fwiffo] has joined #go-nuts
12:56 -!- GilJ [~gilles@212.87.98.32] has quit [Remote host closed the connection]
13:05 -!- dju [~dju@null.dmz.me] has quit [Quit: Quitte]
13:05 -!- dju [dju@null.dmz.me] has joined #go-nuts
13:06 -!- afurlan [~afurlan@scorpion.mps.com.br] has joined #go-nuts
13:06 -!- fwiffo [~user@unaffiliated/fwiffo] has quit [Remote host closed the
connection]
13:09 -!- letoh [~letoh@59-105-29-149.adsl.dynamic.seed.net.tw] has joined
#go-nuts
13:17 -!- yashi [~yashi@dns1.atmark-techno.com] has joined #go-nuts
13:21 -!- landswipe [~Landswipe@60-242-188-130.static.tpgi.com.au] has quit []
13:23 -!- micheil [~micheil@124-170-75-25.dyn.iinet.net.au] has joined #go-nuts
13:26 -!- dju_ [dju@null.dmz.me] has joined #go-nuts
13:30 -!- dju [dju@null.dmz.me] has quit [Ping timeout: 260 seconds]
13:32 -!- oal [~olav@5.79-160-122.customer.lyse.net] has joined #go-nuts
13:32 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Ping
timeout: 248 seconds]
13:32 -!- fwiffo [~user@unaffiliated/fwiffo] has joined #go-nuts
13:33 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
13:35 -!- dju_ [dju@null.dmz.me] has quit [Quit: Quitte]
13:36 -!- Wiz126 [Wiz126@72.20.221.35] has quit [Ping timeout: 260 seconds]
13:36 -!- analogue [~analogue@toulouse.jfg-networks.net] has joined #go-nuts
13:36 -!- dju [dju@null.dmz.me] has joined #go-nuts
13:38 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
13:43 -!- aljamms8_ [~s@91.104.2.25] has joined #go-nuts
13:45 -!- aljamms8 [~s@91.106.36.122] has quit [Ping timeout: 258 seconds]
13:58 -!- aljamms8 [~s@91.106.8.53] has joined #go-nuts
13:59 -!- aljamms8_ [~s@91.104.2.25] has quit [Ping timeout: 258 seconds]
14:02 < manveru> how do i get an executable from cgo?
14:02 -!- iant [~iant@67.218.109.60] has joined #go-nuts
14:02 -!- mode/#go-nuts [+v iant] by ChanServ
14:04 -!- TaMonKein [~tmkcodes@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit
[Read error: Connection reset by peer]
14:08 -!- micheil [~micheil@124-170-75-25.dyn.iinet.net.au] has left #go-nuts []
14:15 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
14:16 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has quit [Quit: Leaving]
14:29 -!- drry [~drry@unaffiliated/drry] has quit [Read error: Connection reset by
peer]
14:30 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
14:30 -!- awidegreen [~quassel@62.176.237.78] has joined #go-nuts
14:34 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Read error:
Connection reset by peer]
14:34 -!- crashR [~crasher@codextreme.pck.nerim.net] has joined #go-nuts
14:39 -!- cmarcelo [~cmarcelo@200.184.118.130] has joined #go-nuts
14:39 -!- cmarcelo [~cmarcelo@200.184.118.130] has quit [Changing host]
14:39 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
14:40 -!- ikaros [~ikaros@guests25.externals.de] has quit [Read error: Connection
reset by peer]
14:44 -!- aho [~nya@f051182065.adsl.alicedsl.de] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
14:46 -!- ikaros [~ikaros@guests25.externals.de] has joined #go-nuts
14:49 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has joined #go-nuts
14:53 -!- kiko_ [~kiko@67.207.130.53] has quit [Ping timeout: 276 seconds]
14:53 -!- aljamms8 [~s@91.106.8.53] has quit [Quit: aljamms8]
14:54 -!- Venom_X [~pjacobs@71.20.102.220] has joined #go-nuts
14:56 -!- Wiz126 [Wiz126@72.20.223.68] has joined #go-nuts
14:56 -!- Wiz126 [Wiz126@72.20.223.68] has quit [Client Quit]
14:57 -!- thakis [~thakis@c-71-198-222-88.hsd1.ca.comcast.net] has quit [Quit:
thakis]
14:58 -!- jvogel [~jonathan@friedpancakes.com] has quit [Ping timeout: 276
seconds]
15:00 -!- fwiffo [~user@unaffiliated/fwiffo] has quit [Remote host closed the
connection]
15:00 -!- terrex [~terrex@70.39.222.87.dynamic.jazztel.es] has joined #go-nuts
15:00 -!- kiko_ [~kiko@67.207.130.53] has joined #go-nuts
15:00 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
15:04 -!- iant [~iant@67.218.109.60] has quit [Ping timeout: 260 seconds]
15:04 -!- zlu [~quassel@c-71-198-132-91.hsd1.ca.comcast.net] has quit [Ping
timeout: 264 seconds]
15:06 -!- Discoloda [~vincent@76.231.56.49] has joined #go-nuts
15:06 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has joined #go-nuts
15:09 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has quit [Ping
timeout: 252 seconds]
15:14 -!- kaigan|work
[~kaigan@c-8290e255.1411-10-64736c14.cust.bredbandsbolaget.se] has quit [Quit:
kaigan|work]
15:15 -!- carllerche [~carllerch@208.87.61.146] has joined #go-nuts
15:15 -!- ikaros [~ikaros@guests25.externals.de] has quit [Quit: Leave the magic
to Houdini]
15:18 -!- carllerche [~carllerch@208.87.61.146] has quit [Client Quit]
15:19 -!- Wiz126 [Wiz126@72.20.223.68] has joined #go-nuts
15:20 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Quit: Leaving.]
15:25 -!- zyichi [~zyichi@113.44.0.72] has joined #go-nuts
15:27 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has joined #go-nuts
15:53 -!- zyichi [~zyichi@113.44.0.72] has left #go-nuts []
15:54 -!- path[l] [~path@59.162.86.164] has quit [Quit: path[l]]
15:54 -!- path[l] [~path@122.182.0.38] has joined #go-nuts
15:58 -!- path[l] [~path@122.182.0.38] has quit [Client Quit]
16:03 -!- afurlan [~afurlan@scorpion.mps.com.br] has quit [Quit: Leaving]
16:05 -!- lux` [lux`@151.95.176.167] has joined #go-nuts
16:18 -!- Wiz126 [Wiz126@72.20.223.68] has quit [Ping timeout: 268 seconds]
16:22 -!- thakis [~thakis@17.244.25.202] has joined #go-nuts
16:23 -!- thakis [~thakis@17.244.25.202] has quit [Client Quit]
16:26 -!- perdix [~perdix@f055138016.adsl.alicedsl.de] has joined #go-nuts
16:26 -!- perdix [~perdix@f055138016.adsl.alicedsl.de] has quit [Changing host]
16:26 -!- perdix [~perdix@sxemacs/devel/perdix] has joined #go-nuts
16:30 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
16:30 -!- Surma [~surma@95-88-89-37-dynip.superkabel.de] has joined #go-nuts
16:31 -!- thakis [~thakis@17.244.25.202] has joined #go-nuts
16:38 -!- iant [~iant@nat/google/x-ecalhvrqizrvgkhl] has joined #go-nuts
16:38 -!- mode/#go-nuts [+v iant] by ChanServ
16:40 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
16:43 -!- Fish [~Fish@78.251.198.48] has joined #go-nuts
16:44 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has quit [Ping
timeout: 246 seconds]
17:00 -!- Nitro [~nitro@208.92.17.21] has joined #go-nuts
17:02 -!- zard [~dpx@c-68-35-150-172.hsd1.nm.comcast.net] has quit [Ping timeout:
265 seconds]
17:08 -!- surma1 [~surma@95-88-89-37-dynip.superkabel.de] has joined #go-nuts
17:09 -!- thehumph [~andrew@5ac2f5ea.bb.sky.com] has joined #go-nuts
17:20 < kimelto> morning!
17:20 < no_mind> morning
17:20 < no_mind> though its night here
17:21 < jessta> morning
17:22 < jessta> it's dark here, but certainly morning
17:30 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Ping timeout: 276
seconds]
17:37 -!- idr0 [~idr0@g229192108.adsl.alicedsl.de] has joined #go-nuts
17:37 -!- idr0 [~idr0@g229192108.adsl.alicedsl.de] has quit [Remote host closed
the connection]
17:38 -!- idr0 [~idr0@g229192108.adsl.alicedsl.de] has joined #go-nuts
17:40 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
17:50 -!- Project_2501 [~Marvin@82.84.91.170] has joined #go-nuts
17:53 -!- idr0 [~idr0@g229192108.adsl.alicedsl.de] has left #go-nuts []
17:55 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by
services]
17:55 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
17:56 -!- bmizerany [~bmizerany@c-24-6-37-113.hsd1.ca.comcast.net] has quit
[Remote host closed the connection]
17:56 -!- Xurix [~Luixsia@AToulouse-254-1-17-1.w81-250.abo.wanadoo.fr] has joined
#go-nuts
18:03 -!- jvogel [~jonathan@friedpancakes.com] has joined #go-nuts
18:04 -!- illya77 [~illya77@106-133-178-94.pool.ukrtel.net] has joined #go-nuts
18:05 -!- thakis [~thakis@17.244.25.202] has quit [Quit: thakis]
18:06 -!- silver_ [~d5ba2f39@gateway/web/freenode/x-vbgvjpbjmcwfhvfg] has joined
#go-nuts
18:07 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
18:08 -!- thakis [~thakis@17.244.25.202] has joined #go-nuts
18:10 -!- Nitro [~nitro@208.92.17.21] has quit [Quit: Leaving.]
18:10 -!- silver_ [~d5ba2f39@gateway/web/freenode/x-vbgvjpbjmcwfhvfg] has left
#go-nuts []
18:12 -!- gnuvince [~vince@70.35.164.104] has joined #go-nuts
18:15 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
18:18 -!- gnuvince [~vince@70.35.164.104] has quit [Ping timeout: 268 seconds]
18:18 -!- gnuvince_ [~vince@201.103-ppp.3menatwork.com] has joined #go-nuts
18:19 -!- kssreeram [~kssreeram@122.174.139.125] has joined #go-nuts
18:21 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
18:22 -!- Wiz126 [Wiz126@72.20.222.127] has joined #go-nuts
18:24 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has joined
#go-nuts
18:26 -!- ni| [~james@dontpanic.union.edu] has quit [Quit: leaving]
18:27 -!- surma1 [~surma@95-88-89-37-dynip.superkabel.de] has left #go-nuts []
18:31 -!- Akiko [~Will@ppp-93-104-155-91.dynamic.mnet-online.de] has joined
#go-nuts
18:35 -!- Akiko [~Will@ppp-93-104-155-91.dynamic.mnet-online.de] has quit [Quit:
Verlassend]
18:36 -!- scm [justme@c162114.adsl.hansenet.de] has quit [Ping timeout: 276
seconds]
18:37 -!- scm [justme@c165103.adsl.hansenet.de] has joined #go-nuts
18:41 -!- thakis [~thakis@17.244.25.202] has quit [Quit: thakis]
18:46 -!- kssreeram [~kssreeram@122.174.139.125] has quit [Quit: kssreeram]
18:48 -!- kssreeram [~kssreeram@122.174.139.125] has joined #go-nuts
18:50 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:21c:23ff:fe00:6b7f] has joined
#go-nuts
18:51 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
18:54 -!- rlab [~Miranda@91.200.158.34] has quit [Read error: Connection reset by
peer]
18:55 -!- ikaros [~ikaros@e176228080.adsl.alicedsl.de] has joined #go-nuts
18:56 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has joined #go-nuts
18:56 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 258 seconds]
18:59 -!- Eridius [~kevin@unaffiliated/eridius] has joined #go-nuts
19:02 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has joined #go-nuts
19:13 -!- zero_mass [~zengenesi@vc-41-6-98-159.umts.vodacom.co.za] has joined
#go-nuts
19:16 -!- illya77 [~illya77@106-133-178-94.pool.ukrtel.net] has quit [Read error:
Connection reset by peer]
19:30 < bortzmeyer> http://golang.org/doc/effective_go.html mentions a
bytes.Copy() which I do not find in http://golang.org/pkg/bytes/ ?
19:31 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
19:31 < uriel> iirc copy() is now a buitin
19:32 < uriel> the effective Go docs probably have not been updated
19:32 < uriel> http://golang.org/doc/go_spec.html#Copying_slices
19:42 -!- meatmanek [~meatmanek@mesingw.STUDENT.CWRU.Edu] has joined #go-nuts
19:43 <+iant> http://codereview.appspot.com/882047
19:46 -!- fwiffo [~user@unaffiliated/fwiffo] has joined #go-nuts
19:52 -!- msolo [~mike@nat/google/x-hfuvltdfijcfeswl] has joined #go-nuts
19:53 -!- ikaros [~ikaros@e176228080.adsl.alicedsl.de] has quit [Ping timeout: 260
seconds]
19:56 -!- msolo [~mike@nat/google/x-hfuvltdfijcfeswl] has quit [Client Quit]
19:57 < uriel> iant: that was fast :)
19:57 -!- msolo [~mike@nat/google/x-roefrespocqhjtju] has joined #go-nuts
19:57 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has quit [Quit: Leaving]
19:57 -!- msolo [~mike@nat/google/x-roefrespocqhjtju] has quit [Client Quit]
19:57 < bortzmeyer> uriel: copy() works fine, thanks
20:01 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
20:01 -!- msolo [~msolo@fuzzy.phpwebhosting.com] has joined #go-nuts
20:02 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
20:05 -!- ikaros [~ikaros@g226147010.adsl.alicedsl.de] has joined #go-nuts
20:12 -!- msolo [~msolo@fuzzy.phpwebhosting.com] has quit [Quit: msolo]
20:18 -!- oal [~olav@5.79-160-122.customer.lyse.net] has quit [Remote host closed
the connection]
20:19 < plexdev> http://is.gd/brnWG by [Ian Lance Taylor] in go/doc/ -- Use
the copy function rather than a loop.
20:20 -!- thakis [~thakis@17.244.25.173] has joined #go-nuts
20:29 -!- Fish [~Fish@78.251.198.48] has quit [Read error: Connection reset by
peer]
20:29 -!- Fish [~Fish@78.251.198.48] has joined #go-nuts
20:36 < plexdev> http://is.gd/broXZ by [Rob Pike] in go/src/pkg/template/ --
template: use panic/recover to simplify internal error handling.
20:38 -!- zero_mass [~zengenesi@vc-41-6-98-159.umts.vodacom.co.za] has left
#go-nuts []
20:45 -!- thakis [~thakis@17.244.25.173] has quit [Quit: thakis]
20:45 -!- warthurton [~warthurto@pdpc/supporter/active/warthurton] has joined
#go-nuts
20:47 -!- fwiffo [~user@unaffiliated/fwiffo] has quit [Remote host closed the
connection]
20:47 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:21c:23ff:fe00:6b7f] has quit
[Quit: Leaving.]
20:49 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has joined #go-nuts
20:50 -!- sjbrown_ [~sjbrown@c-69-181-182-137.hsd1.ca.comcast.net] has joined
#go-nuts
20:52 < plexdev> http://is.gd/brpZe by [Rob Pike] in go/src/pkg/netchan/ --
netchan: allow client to send as well as receive.
20:54 -!- sjbrown_ [~sjbrown@c-69-181-182-137.hsd1.ca.comcast.net] has left
#go-nuts []
21:00 -!- lucs__ [lux`@151.95.173.46] has joined #go-nuts
21:00 -!- Wiz126 [Wiz126@72.20.222.127] has quit [Ping timeout: 260 seconds]
21:03 -!- lux` [lux`@151.95.176.167] has quit [Ping timeout: 265 seconds]
21:11 -!- Fish [~Fish@78.251.198.48] has quit [Read error: Connection reset by
peer]
21:12 -!- ikaros [~ikaros@g226147010.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
21:30 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Remote host closed the
connection]
21:30 -!- thakis [~thakis@17.244.25.173] has joined #go-nuts
21:31 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
21:31 -!- Xera` [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
21:34 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Ping timeout: 248
seconds]
21:36 -!- thehumph [~andrew@5ac2f5ea.bb.sky.com] has quit [Quit: Leaving]
21:47 -!- Venom_bbl [~pjacobs@71.20.102.220] has quit [Quit: Venom_bbl]
21:49 -!- thakis [~thakis@17.244.25.173] has quit [Quit: thakis]
21:54 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
21:56 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
21:56 -!- Project_2501 [~Marvin@82.84.91.170] has quit [Quit: E se abbasso questa
leva che succ...]
22:01 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has quit [Ping
timeout: 240 seconds]
22:03 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
22:09 -!- TR2N [email@89-180-176-24.net.novis.pt] has joined #go-nuts
22:12 -!- thakis [~thakis@17.244.25.173] has joined #go-nuts
22:20 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Read error: Connection reset by peer]
22:22 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
22:25 -!- General13372 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 240 seconds]
22:26 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
joined #go-nuts
22:28 -!- lucs__ [lux`@151.95.173.46] has quit [Read error: Connection reset by
peer]
22:29 -!- Nitro [~nitro@208.92.17.21] has joined #go-nuts
22:29 -!- thakis_ [~thakis@216.239.45.130] has joined #go-nuts
22:32 -!- thakis [~thakis@17.244.25.173] has quit [Read error: Operation timed
out]
22:35 -!- [`_`] [~nobody@88-111-13-33.dynamic.dsl.as9105.com] has joined #go-nuts
22:39 -!- alkavan [~alkavan@87.68.52.165.cable.012.net.il] has joined #go-nuts
22:40 -!- terrex [~terrex@70.39.222.87.dynamic.jazztel.es] has quit [Quit:
Leaving.]
22:44 -!- alkavan [~alkavan@87.68.52.165.cable.012.net.il] has quit [Read error:
Connection reset by peer]
22:45 -!- alkavan [~alkavan@87.68.246.114.adsl.012.net.il] has joined #go-nuts
22:46 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
22:47 -!- Venom_X [~pjacobs@71.20.102.220] has joined #go-nuts
22:50 -!- alkavan [~alkavan@87.68.246.114.adsl.012.net.il] has quit [Read error:
Connection reset by peer]
22:50 -!- alkavan [~alkavan@87.68.148.140] has joined #go-nuts
22:51 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
22:54 -!- [`_`] [~nobody@88-111-13-33.dynamic.dsl.as9105.com] has quit [Quit: .]
22:54 -!- alkavan [~alkavan@87.68.148.140] has quit [Read error: Connection reset
by peer]
22:55 -!- alkavan [~alkavan@87.68.150.72] has joined #go-nuts
22:57 -!- meanburrito920 [~john@kiwi.STUDENT.CWRU.Edu] has joined #go-nuts
22:57 -!- meanburrito920 [~john@kiwi.STUDENT.CWRU.Edu] has quit [Changing host]
22:57 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has joined #go-nuts
22:58 -!- alkavan_ [~alkavan@87.68.242.4.adsl.012.net.il] has joined #go-nuts
23:02 -!- alkavan [~alkavan@87.68.150.72] has quit [Ping timeout: 268 seconds]
23:03 -!- alkavan_ [~alkavan@87.68.242.4.adsl.012.net.il] has quit [Read error:
Connection reset by peer]
23:04 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
23:10 -!- rogue780 [~rogue780@c-68-34-234-213.hsd1.md.comcast.net] has joined
#go-nuts
23:11 -!- awidegreen [~quassel@62.176.237.78] has quit [Remote host closed the
connection]
23:17 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
23:18 -!- wuehlmaus [~wuehlmaus@p4FCC7E23.dip.t-dialin.net] has quit [Ping
timeout: 240 seconds]
23:18 -!- wuehlmaus [~wuehlmaus@p4FCC7E5D.dip.t-dialin.net] has joined #go-nuts
23:19 < rogue780> what is the preferred editor for go files?
23:20 < KirkMcDonald> I use vim.
23:20 -!- dju [dju@null.dmz.me] has quit [Ping timeout: 268 seconds]
23:24 < plexdev> http://is.gd/brztb by [Evan Shaw] in go/src/cmd/ld/ -- 8l:
add DOS stub to PE binaries
23:24 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
23:25 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Client
Quit]
23:26 < bawr> Whatever you're comforable with.
23:27 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Ping timeout: 248 seconds]
23:28 -!- iant [~iant@nat/google/x-ecalhvrqizrvgkhl] has quit [Ping timeout: 260
seconds]
23:31 -!- perdix [~perdix@sxemacs/devel/perdix] has quit [Quit: A cow.  A
trampoline.  Together they fight crime!]
23:31 -!- no_mind [~orion@122.161.33.201] has quit [Quit: Leaving]
23:31 -!- nhbar [~kv@wireless-169-235-38-75.ucr.edu] has joined #go-nuts
23:31 -!- thakis [~thakis@216.239.45.130] has left #go-nuts []
23:32 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 276 seconds]
23:34 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has quit [Quit: Lost
terminal]
23:34 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Quit:
leaving]
23:40 < plexdev> http://is.gd/brAl8 by [Alex Brainman] in 2 subdirs of
go/src/pkg/ -- os: mingw version of Readdir() and Stat() implemented
23:46 -!- Surma [~surma@95-88-89-37-dynip.superkabel.de] has quit [Ping timeout:
240 seconds]
23:52 -!- iant [~iant@67.218.107.95] has joined #go-nuts
23:52 -!- mode/#go-nuts [+v iant] by ChanServ
--- Log closed Wed Apr 14 00:00:08 2010