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

--- Log opened Mon Feb 01 00:00:51 2010
00:02 -!- alus [~gah@64.13.131.178] has joined #go-nuts
00:02 -!- DerHorst_ [~Horst@e176116245.adsl.alicedsl.de] has joined #go-nuts
00:05 -!- DerHorst_ [~Horst@e176116245.adsl.alicedsl.de] has quit [Client Quit]
00:06 -!- DerHorst [~Horst@e176107139.adsl.alicedsl.de] has quit [Ping timeout:
272 seconds]
00:08 -!- hstimer [~hans@70.90.170.37] has joined #go-nuts
00:13 -!- fwiffo [~fwiffo@187.23.177.211] has joined #go-nuts
00:13 -!- Fraeon [~kzer-za@e212-246-65-153.elisa-laajakaista.fi] has quit [Ping
timeout: 265 seconds]
00:24 -!- mssm [~mssm@ip-95-221-82-66.bb.netbynet.ru] has quit [Ping timeout: 272
seconds]
00:27 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
00:27 -!- homiziado [~ernestofr@88.210.117.156.rev.optimus.pt] has joined #go-nuts
00:28 -!- Sub101 [~steve@cpc1-amer1-0-0-cust134.watf.cable.ntl.com] has joined
#go-nuts
00:31 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
00:35 -!- Fraeon [~kzer-za@e212-246-65-153.elisa-laajakaista.fi] has joined
#go-nuts
00:35 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Client Quit]
00:38 -!- Fraeon_ [~kzer-za@e212-246-65-153.elisa-laajakaista.fi] has joined
#go-nuts
00:40 -!- Fraeon [~kzer-za@e212-246-65-153.elisa-laajakaista.fi] has quit [Ping
timeout: 252 seconds]
00:41 -!- Spaghettini [~Spaghetti@vaxjo7.250.cust.blixtvik.net] has quit [Read
error: Connection reset by peer]
00:42 -!- Spaghettini [~Spaghetti@vaxjo7.250.cust.blixtvik.net] has joined
#go-nuts
00:44 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has quit [Ping
timeout: 260 seconds]
00:44 -!- crakrjak [~merc@rrcs-70-62-156-154.central.biz.rr.com] has quit [Read
error: Operation timed out]
00:44 -!- Rint__ [john@static-71-244-60-125.dllstx.fios.verizon.net] has quit
[Ping timeout: 258 seconds]
00:47 -!- Rint__ [john@static-71-244-60-125.dllstx.fios.verizon.net] has joined
#go-nuts
00:49 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
00:53 -!- mejja [~user@c-49b6e555.023-82-73746f38.cust.bredbandsbolaget.se] has
quit [Remote host closed the connection]
00:54 -!- crakrjak [~merc@rrcs-70-62-156-154.central.biz.rr.com] has joined
#go-nuts
00:58 -!- crashR [~crasher@codextreme.pck.nerim.net] has joined #go-nuts
00:58 -!- wuehlmaus [~wuehlmaus@p4FCC7E95.dip.t-dialin.net] has quit [Ping
timeout: 248 seconds]
00:59 -!- itrekkie [~itrekkie@ip72-211-128-139.tc.ph.cox.net] has quit [Quit:
itrekkie]
01:04 < emelpy> is it problematic to have multiple goroutines doing IO
simultaneously?
01:06 < slashus2> emelpy: If they are not properly synchronized, yes.
01:08 < emelpy> so i can't just start up to two goroutines that read from
the disk without making sure that only one is attempting to read at a time?
01:08 < vsmatck> You can have multiple concurrent readers.
01:08 < vsmatck> This is the readers-writers problem.
01:09 < emelpy> hmm, that's what i thought
01:09 < vsmatck> But if you write you need synchronization.
01:10 < emelpy> so having to goroutines attempting to read from the disk at
the same time won't cause a seg fault?
01:10 < tml_> are they writing to the same file?  to the same offset?  or
into different offsets, or different files even...?
01:11 < emelpy> they are reading from completely different files
01:11 < tml_> just reading/writing to "the disk" doesn't say much
01:11 < tml_> why would that be a problem then?
01:12 -!- vizzord [~exn@195.49.206.202] has joined #go-nuts
01:12 -!- triplez [~triplez@cm107.sigma224.maxonline.com.sg] has quit [Quit:
triplez]
01:13 < emelpy> well, i didn't think it would be but code that works
linearly is seg faulting when i parallelize it.  i'm new to go so i must be
screwing something up elsewhere
01:13 < vsmatck> I think that a lot when I program.  "why would it be a
problem if I did x".  I'm often wrong.  ;)
01:15 -!- vizzord [~exn@195.49.206.202] has quit [Client Quit]
01:16 -!- vizzord [~exn@195.49.206.202] has joined #go-nuts
01:17 -!- vizzord [~exn@195.49.206.202] has left #go-nuts []
01:21 < emelpy> can anyone see anything glaringly wrong with my main
function.  it works with one input file but seqfaults with two
01:21 < emelpy> http://pastebin.com/m1014aa30
01:26 < tav> anyone around?
01:27 < smw> nope
01:27 < tav> excellent =)
01:28 < tav> was hoping ppl could review and suggest improvements to
http://github.com/tav/ampify/blob/master/amp/runtime/runtime.go
01:28 < tav> the aim being to automatically detect the number of CPUs for
use with runtime.GOMAXPROCS()
01:29 < smw> tav: this is way out of my league :-P
01:29 < tav> damn
01:31 < tav> there isn't enough go code in "usage" to figure out if i'm
doing something in a stupid way or not =(
01:32 < smw> tav: doesn't this require $GOOS to be in place on the users
machine?
01:33 < smw> tav: that does not seem very practical to me...
01:33 < smw> tav: it looks like it will work on a developers machine...  but
not a users machine
01:35 < tav> hmz
01:35 < tav> good point
01:36 < Kashia> emelpy, http://pastebin.com/m61fd8957 this does not segfault
01:36 < smw> tav: this is still beyond my league.  I could not tell you if
you are doing anything right.
01:36 < tml_> tav: doesnt't syscall.OS tell the OS?
01:38 < smw> tml_: it does
01:40 < tav> aha!
01:40 < tav> thanks tml_
01:41 < tav> updated
http://github.com/tav/ampify/blob/master/amp/runtime/runtime.go with creds to you
guys in the commit msg
01:45 < Kashia> tav, how about using io/ioutil and ReadAll() to make it
smaller?
01:45 < smw> tav: you can also setup the makefile so it will choose which
function to use based GOOS.  That way it will not have to check each time.  That
is the way syscall does it
01:45 < Kashia> or wait, that'd probably be exec.Exec() :)
01:48 < tav> Kashia: exec.Run() ? (if so, that doesn't seem to provide any
line savings...?)
01:48 < Kashia> yes, forgive me, not enough sleep kills my brain :)
01:49 < tav> smw: good idea, but is it really worth it for a function like
this that won't be getting called more than a few times in a process ?
01:49 < Kashia> but it'd remove the Pipe clutter a littler, no?
01:50 < smw> tav: meh, probably not.
01:51 -!- Sub101 [~steve@cpc1-amer1-0-0-cust134.watf.cable.ntl.com] has quit [Ping
timeout: 272 seconds]
01:52 < tav> Kashia: i'm looking at the exec.go source atm — and unless i'm
missing something (which is the likely case...), i don't see how it'd help remove
anything...  ?
01:53 < tav> on a related note to the Makefile splitting, has anyone had any
luck with using "foo/bar/spam" packages in the Makefiles?
01:54 < tav> despite reading
https://groups.google.com/group/golang-nuts/browse_thread/thread/374b2ff08c14410e
— i haven't been able to figure out how the Makefiles should look like now
01:55 < smw> isn't there like a quick guide on golang?
01:56 * tav looks at http://golang.org/doc/code.html again
01:56 < smw> tav http://golang.org/doc/code.html
01:56 < smw> damn it
01:56 < smw> lol
01:56 < tav> hehe
01:56 < tav> thx though!
01:56 < smw> I was beaten by the person I was trying to help.  That is a new
one :-P
01:57 < tav> well, you did provide the pointer first...
01:58 < smw> lol
01:58 * smw goes back to configuring his new arch system
01:59 < tav> arch as in the dvcs ?
01:59 -!- homiziado [~ernestofr@88.210.117.156.rev.optimus.pt] has quit [Quit:
homiziado]
01:59 < smw> dvcs?
01:59 < tav> distributed version control system
01:59 < smw> no
02:00 < smw> as in the linux distro
02:00 < tav> ah!
02:00 < smw> kubuntu ticked me off for the last time.
02:00 < smw> so I installed arch without knowing what I was getting myself
into
02:01 < smw> did you know that they have a different package for keyboard
and mouse drivers for X?!
02:01 < smw> lol
02:01 * smw stops ranting
02:01 -!- mat_ [~mat@prod2.absolight.net] has quit [Ping timeout: 256 seconds]
02:02 < tav> nope
02:02 < tav> ^ in response to kbd/mouse drivers
02:03 < smw> tav: you can imagine how anoying it was trying to figure out
why keyboard and mouse did not work ;-)
02:04 < tav> heh
02:04 < tav> how *does* one install the package when those don't work ?
02:04 < tav> i guess they do provide a shell ?
02:04 < smw> of course
02:05 < smw> bash is a necessity.  It is considered important enough that
even arch installs it by default
02:06 * tav wonders if bash is on the iphone by default
02:06 -!- jhawk28 [~jhawk28@user-142g7u9.cable.mindspring.com] has joined #go-nuts
02:08 * araujo thinking about what could be his "first" go project
02:12 < tav> araujo: what kind of things are you interested in?
02:12 < tav> perhaps port sass to go?  =)
02:12 < tav> http://sass-lang.com/
02:13 < araujo> tav, GUI , some system programming
02:13 < smw> is there a way to use dbus in go?
02:14 < smw> I would also like to see a copy of shutils from python
02:16 -!- mvfranz [~mvfranz@pool-141-155-143-20.ny5030.east.verizon.net] has quit
[Quit: mvfranz]
02:16 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
02:19 -!- chachan [~chachan@201.208.1.218] has quit [Quit: KVIrc Insomnia 4.0.0,
revision: 3763, sources date: 20091222, built on: 2010-01-08 08:47:55 UTC
http://www.kvirc.net/]
02:31 -!- triplez [~triplez@bb121-7-198-18.singnet.com.sg] has joined #go-nuts
02:44 -!- fwiffo [~fwiffo@187.23.177.211] has quit [Quit: Lost terminal]
02:50 -!- gnuvince_ [~vince@64.235.211.167] has joined #go-nuts
02:51 -!- hooopy [hoopy@173-30-98-140.client.mchsi.com] has quit [Ping timeout:
260 seconds]
03:10 -!- jhawk28 [~jhawk28@user-142g7u9.cable.mindspring.com] has quit [Remote
host closed the connection]
03:12 -!- hooopy [hoopy@173-30-98-140.client.mchsi.com] has joined #go-nuts
03:42 -!- mizai [~mizai@rmot-164-107-202-54.resnet.ohio-state.edu] has joined
#go-nuts
03:44 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
03:49 -!- DarkAnt [~DarkAnt@c-24-63-224-114.hsd1.ma.comcast.net] has quit [Quit:
HydraIRC -> http://www.hydrairc.com <- Now with extra fish!]
03:55 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has joined #go-nuts
03:56 -!- GabydeWilde_ [~gabydewil@84-104-135-141.cable.quicknet.nl] has quit
[Ping timeout: 256 seconds]
04:01 -!- hstimer [~hans@70.90.170.37] has quit [Quit: Leaving...]
04:11 -!- mizai [~mizai@rmot-164-107-202-54.resnet.ohio-state.edu] has quit [Quit:
Leaving]
04:22 -!- carllerche [~carllerch@173.67.86.116] has quit [Quit: carllerche]
04:35 < plexdev> http://is.gd/7saPf by [Ian Lance Taylor] in go/test/bugs/
-- Fix expected string.
04:38 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has joined
#go-nuts
04:38 -!- yashi [~yashi@dns1.atmark-techno.com] has quit [Remote host closed the
connection]
04:41 -!- yashi [~yashi@dns1.atmark-techno.com] has joined #go-nuts
04:44 -!- hstimer [~hans@2002:62ea:197d:0:226:bbff:fe05:dd9b] has joined #go-nuts
04:45 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
04:51 -!- robot12 [~root@szhilkin.broker.freenet6.net] has joined #go-nuts
04:58 < tav> hmz
04:59 < tav> is there a way to compile files without it complaining that
modules/variables are unused ?
05:00 < tav> i find that to be the biggest cause of productivity slow down
in trying things out
05:30 -!- bthomson [~bthomson@c-69-255-188-5.hsd1.va.comcast.net] has quit [Quit:
WeeChat 0.3.0]
05:32 -!- nopcoder [~barak@77.126.61.184] has joined #go-nuts
05:33 -!- nopcoder [~barak@77.126.61.184] has left #go-nuts []
05:35 -!- Will_D [~Will@c-24-17-243-6.hsd1.wa.comcast.net] has quit [Ping timeout:
256 seconds]
05:35 <+iant> tav: you can use a variable by adding a statement like "_ = v"
at the end of the function
05:35 <+iant> the special name underscore is a sink variable
05:36 < tav> iant: yup, been using that trick
05:37 < tav> hmz
05:38 -!- tanamo_ [~tanamo@125.252.70.230] has joined #go-nuts
05:38 < tav> maybe my approach is retarded, but i tend to try one approach,
and then just comment out and try another which leaves some dangling
variables/packages
05:39 <+iant> the underscore method is the only way to avoid the error,
unfortunatley
05:39 < tav> but that requires having to then (a) comment out the unused
packages and (b) renaming some variables using the _ approach
05:40 <+iant> you can use the underscore trick with unused packages too, as
in import _ "fmt"
05:40 < tav> but then to try something else, sometimes requires reverting
the changes back
05:40 <+iant> yes
05:40 <+iant> well, you never have to revert the _ = a changes
05:40 <+iant> those are always OK
05:40 < tav> aha!
05:40 < tav> that bit hadn't occurred to me — thanks!
05:40 -!- tanamo [~tanamo@125.252.70.230] has quit [Ping timeout: 240 seconds]
05:41 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has quit [Quit:
binaryjohn]
05:42 < tav> on an aside iant: any chance you could tell me if
http://github.com/tav/ampify/blob/master/amp/runtime/runtime.go and
http://github.com/tav/ampify/blob/master/amp/command/command.go are idiomatic or
whether i should use a different approach in places?
05:45 <+iant> tav: seems fine to me
05:46 < tav> thanks
05:50 < anticw> iant: is there any reason we dont have a compiler flag to
avoid bounds checking?
05:52 <+iant> anticw: 6g/8g actually do have such an option, albeit
undocumented: -B
05:53 < anticw> iant: heh, sorry, i should have looked harder
05:53 < anticw> thanks
05:57 < anticw> iant: btw, i'm starting to see long and a little painful GC
times at the moment
05:57 < anticw> mostly it's ok, but sometimes it feels like java from the
old days when the universe has to stop and regather itself for 5s or so
05:58 -!- droid001 [~g1@p4FDCA57F.dip.t-dialin.net] has quit [Ping timeout: 248
seconds]
05:58 <+iant> that can definitely happen--that's why we are rewriting the GC
05:58 <+iant> if there is a good time, you can force a GC by calling
malloc.GC
05:59 < anticw> iant: yeah, there is never a good time, or else i would do
that
06:00 <+iant> let's see, there is also a GOGC environment variable
06:00 < anticw> iant: it's 700MB of data streaming down and ends up being
about 1.2GB of data stored in core when it's near done ...  the streaming,
decompression, sorting and merging of the data is all done over multiple
goroutines
06:00 < anticw> iant: well, part of the problem is that the streaming of the
data has 2.9M lines ...  so things like line, err := br.ReadString('\n')
06:00 < anticw> probably makes a LOT of little allocations
06:00 < anticw> i could tweak the code to reuse some buffers/state
06:01 <+iant> I expect that would help
06:01 < anticw> but that seems pointless given the GC might/should get
better in time
06:01 <+iant> there is that, yes
06:01 < anticw> yeah, but for now i want to avoid that
06:01 < anticw> i mean, java really really sucked in terms of it's GC once
...  now, well, i dont think i could claim that
06:01 < anticw> i dont really use java but plenty of people i know do and
there is a lot at work, and i never see it stammer like it once used t
06:01 < anticw> to
06:03 < anticw> the worst it seems is about 7s ...  at which point the GC
has to scan ~1.5GB of ram to release ~500MB or so ...  keeping the rest as
millions of strings
06:04 < anticw> ok, so about 18M strings ...  so it's not doing too badly
06:06 < anticw> iant: aiui the proposed GC will potentially be fully async
and not require stopping any goroutines right?
06:06 <+iant> right
06:06 <+iant> at least, I think so
06:06 < anticw> s/think/hope/ ?
06:06 < anticw> :)
06:07 < plexdev> http://is.gd/7sojW by [Rob Pike] in go/doc/devel/ -- the
package global name space problem is addressed; update road map
06:10 -!- goplexian [~user@d154-20-0-9.bchsia.telus.net] has joined #go-nuts
06:10 -!- tomestla [~tom@AToulouse-151-1-43-188.w83-203.abo.wanadoo.fr] has joined
#go-nuts
06:10 -!- goplexian [~user@d154-20-0-9.bchsia.telus.net] has left #go-nuts []
06:10 -!- r2p2 [~billy@v32671.1blu.de] has joined #go-nuts
06:23 -!- triplez [~triplez@bb121-7-198-18.singnet.com.sg] has quit [Quit:
triplez]
06:24 < plexdev> http://is.gd/7sqM4 by [Rob Pike] in go/src/cmd/godoc/ --
Fix redirection if the page is in a subdirectory.
06:29 -!- CodeBlock [~CodeBlock@about/windows/regular/CodeBlock] has quit [Quit:
Buh-bye.]
06:31 -!- CodeBlock [~CodeBlock@about/windows/regular/CodeBlock] has joined
#go-nuts
06:34 < drhodes> besides satisfying the signature requirements of an
interface, are there any other restrictions that would be keep a type from being
recognizable as a valid argument?
06:35 -!- gnuvince [~vince@64.235.199.19] has quit [Quit: Lost terminal]
06:38 < anticw> drhodes: if the requirements aren't met the compiler tells
you what is missing
06:38 < drhodes> cannot use x (type *module.X) as type *module.MyInterface
in function argument
06:38 < anticw> drhodes: what error(s) are you seeing?
06:39 -!- carllerche [~carllerch@173.67.86.116] has joined #go-nuts
06:39 < anticw> is that the exact text or somehting you paraphrased?
06:39 < drhodes> I generalized it
06:39 < drhodes> test_connections.go:34: cannot use clist (type
*choice.ChoiceList) as type *connections.Flowable in function argument
06:40 < anticw> both are interfaces?
06:40 < plexdev> http://is.gd/7stbL by [Rob Pike] in go/doc/devel/ -- add
link to go build dashboard.
06:40 < anticw> ie.  ChoiceList isn't a type type that implements the
Flowable interface?
06:41 < drhodes> Flowable is an interface.  ChoiceList has a method with
signature that exists in Flowable
06:41 -!- roopeshv [~roopesh@c-71-202-114-43.hsd1.ca.comcast.net] has quit [Ping
timeout: 248 seconds]
06:47 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has joined
#go-nuts
06:54 -!- hstimer [~hans@2002:62ea:197d:0:226:bbff:fe05:dd9b] has quit [Quit:
Leaving...]
06:55 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
06:57 -!- roopeshv [~roopesh@c-71-202-114-43.hsd1.ca.comcast.net] has joined
#go-nuts
07:00 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has quit [Quit:
binaryjohn]
07:02 -!- idea_squirrel [ct2rips@77-21-31-189-dynip.superkabel.de] has joined
#go-nuts
07:03 -!- rndbot [~bot@wikipedia/Gracenotes] has joined #go-nuts
07:07 -!- marty_ [~hans@2002:62ea:197d:0:226:bbff:fe05:dd9b] has joined #go-nuts
07:16 -!- grizzlysmit [~grizzlysm@123-243-91-241.tpgi.com.au] has joined #go-nuts
07:16 -!- grizzlysmit [~grizzlysm@123-243-91-241.tpgi.com.au] has left #go-nuts []
07:16 -!- tomestla [~tom@AToulouse-151-1-43-188.w83-203.abo.wanadoo.fr] has quit
[Ping timeout: 248 seconds]
07:19 -!- CodeBlock [~CodeBlock@about/windows/regular/CodeBlock] has quit [Quit:
Buh-bye.]
07:21 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has quit [Ping
timeout: 246 seconds]
07:35 -!- fgb [~fgb@190.246.85.45] has joined #go-nuts
07:44 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
07:44 -!- encolpe [~encolpe@gai69-3-82-235-15-3.fbx.proxad.net] has quit [Quit:
Leaving]
07:44 -!- trickie [~trickie@94.100.112.225] has joined #go-nuts
07:44 -!- carllerche [~carllerch@173.67.86.116] has quit [Quit: carllerche]
07:55 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
07:55 -!- kaigan|work
[~kaigan@c-8290e255.1411-10-64736c14.cust.bredbandsbolaget.se] has joined #go-nuts
07:55 -!- path[l] [UPP@120.138.102.34] has quit [Quit: path[l]]
07:59 -!- scm [justme@c162197.adsl.hansenet.de] has quit [Ping timeout: 258
seconds]
08:00 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 252 seconds]
08:00 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
08:01 -!- scm [justme@c190198.adsl.hansenet.de] has joined #go-nuts
08:03 -!- ollinser [~ollin@www.inventage.com] has joined #go-nuts
08:03 -!- wuehlmaus [~wuehlmaus@p4FCC705F.dip.t-dialin.net] has joined #go-nuts
08:05 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 246 seconds]
08:05 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
08:10 -!- analogue [~analogue@toulouse.jfg-networks.net] has joined #go-nuts
08:10 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 272 seconds]
08:15 -!- r2p2 [~billy@v32671.1blu.de] has left #go-nuts []
08:16 -!- path[l] [~path@59.162.86.164] has joined #go-nuts
08:27 < plexdev> http://is.gd/7sJaC by [Russ Cox] in 9 subdirs of go/ -- gc:
add ...  T, rework plain ...
08:44 -!- p0g0__ [~pogo@unaffiliated/p0g0] has quit [Ping timeout: 256 seconds]
08:53 -!- p0g0__ [~pogo@69.176.60.241.MRTC.megmod.static.mrtc.com] has joined
#go-nuts
08:53 -!- p0g0__ [~pogo@69.176.60.241.MRTC.megmod.static.mrtc.com] has quit
[Changing host]
08:53 -!- p0g0__ [~pogo@unaffiliated/p0g0] has joined #go-nuts
09:03 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
09:06 -!- triplez [~triplez@bb121-7-198-18.singnet.com.sg] has joined #go-nuts
09:08 -!- mat_ [~mat@prod2.absolight.net] has joined #go-nuts
09:09 -!- tomaw [tom@freenode/staff/tomaw] has left #go-nuts []
09:13 -!- rrr [debian-tor@gateway/tor-sasl/rrr] has quit [Ping timeout: 272
seconds]
09:17 -!- rrr [debian-tor@gateway/tor-sasl/rrr] has joined #go-nuts
09:18 -!- murodes1 [~James@203-59-92-213.dyn.iinet.net.au] has joined #go-nuts
09:19 -!- tanamo_ [~tanamo@125.252.70.230] has quit [Ping timeout: 246 seconds]
09:20 -!- murodese [~James@203-59-92-213.dyn.iinet.net.au] has quit [Ping timeout:
265 seconds]
09:25 -!- nighty__ [~nighty@210.188.173.245] has quit [Quit: Disappears in a puff
of smoke]
09:25 -!- callidus [~quassel@80.194.247.74] has joined #go-nuts
09:38 -!- stalled [~411@unaffiliated/stalled] has quit [Read error: Connection
reset by peer]
09:39 -!- rrr [debian-tor@gateway/tor-sasl/rrr] has quit [Remote host closed the
connection]
09:43 < plexdev> http://is.gd/7sUaL by [Rob Pike] in go/doc/ -- language FAQ
entry on braces and semicolons
09:48 -!- stalled [~411@unaffiliated/stalled] has joined #go-nuts
09:48 -!- rrr [debian-tor@gateway/tor-sasl/rrr] has joined #go-nuts
09:49 -!- r2p2 [~billy@v32671.1blu.de] has joined #go-nuts
09:49 -!- Kashia [~Kashia@port-92-200-92-189.dynamic.qsc.de] has quit [Quit: This
computer has gone to sleep]
09:52 -!- murodes1 [~James@203-59-92-213.dyn.iinet.net.au] has quit [Ping timeout:
265 seconds]
09:54 -!- stalled [~411@unaffiliated/stalled] has quit [Ping timeout: 260 seconds]
09:58 -!- stalled [~411@unaffiliated/stalled] has joined #go-nuts
09:58 -!- murodese [~James@203-59-92-213.dyn.iinet.net.au] has joined #go-nuts
10:00 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
10:02 -!- wrtp [~rog@92.28.31.39] has joined #go-nuts
10:23 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
10:40 -!- ikke [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
10:43 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
10:45 -!- afurlan [~afurlan@scorpion.mps.com.br] has joined #go-nuts
10:47 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Ping
timeout: 265 seconds]
10:47 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Quit: WeeChat
0.3.1.1]
10:48 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has joined #go-nuts
10:49 -!- mssm [~mssm@ip-95-221-82-66.bb.netbynet.ru] has joined #go-nuts
10:50 -!- beneth` [~beneth`@beneth.fr] has joined #go-nuts
10:51 -!- beneth` [~beneth`@beneth.fr] has left #go-nuts []
10:52 -!- tanamo [~tanamo@125.252.70.230] has joined #go-nuts
11:15 -!- General1337 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has joined
#go-nuts
11:15 -!- aho [~nya@f050242201.adsl.alicedsl.de] has joined #go-nuts
11:19 -!- General13372 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has quit
[Ping timeout: 264 seconds]
11:20 -!- gnuvince_ [~vince@64.235.211.167] has quit [Ping timeout: 245 seconds]
11:24 -!- triplez [~triplez@bb121-7-198-18.singnet.com.sg] has quit [Quit:
triplez]
11:30 -!- ashaw [~ashaw@58.108.161.163] has joined #go-nuts
11:30 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Read
error: Connection reset by peer]
11:31 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has joined #go-nuts
11:31 -!- mode/#go-nuts [+v iant] by ChanServ
11:33 -!- jalmeida [~jalmeida@c9340a2e.virtua.com.br] has joined #go-nuts
11:34 -!- halo [~weed@server-0054b.dnsprincipal.com] has joined #go-nuts
11:36 -!- halo [~weed@server-0054b.dnsprincipal.com] has left #go-nuts []
11:46 -!- oal [~olav@5.79-160-122.customer.lyse.net] has joined #go-nuts
11:57 -!- p4p4 [~P4p4@24.106.113.82.net.de.o2.com] has joined #go-nuts
11:59 -!- triplez [~triplez@cm107.sigma224.maxonline.com.sg] has joined #go-nuts
12:08 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Read error:
Connection reset by peer]
12:09 -!- ashaw [~ashaw@58.108.161.163] has quit [Ping timeout: 248 seconds]
12:12 -!- aho [~nya@f050242201.adsl.alicedsl.de] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
12:30 -!- ashaw [~ashaw@58.108.161.163] has joined #go-nuts
12:38 -!- GeoBSD [~geobsd@lns-bzn-61-82-250-113-248.adsl.proxad.net] has joined
#go-nuts
12:40 -!- cmarcelo [~cmarcelo@200.184.118.130] has joined #go-nuts
12:40 -!- cmarcelo [~cmarcelo@200.184.118.130] has quit [Changing host]
12:40 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
12:40 -!- plainhao [~plainhao@mail.xbiotica.com] has joined #go-nuts
12:44 -!- GabydeWilde_ [~gabydewil@84-104-135-141.cable.quicknet.nl] has joined
#go-nuts
12:53 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
12:58 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
13:03 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 258 seconds]
13:03 -!- KillerX [~anant@145-116-234-40.uilenstede.casema.nl] has joined #go-nuts
13:03 -!- KillerX [~anant@145-116-234-40.uilenstede.casema.nl] has quit [Changing
host]
13:03 -!- KillerX [~anant@gentoo/developer/KillerX] has joined #go-nuts
13:03 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
13:03 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Client Quit]
13:03 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
13:05 -!- kanru [~kanru@61-228-154-126.dynamic.hinet.net] has joined #go-nuts
13:06 -!- nanoo [~nano@95-89-196-249-dynip.superkabel.de] has joined #go-nuts
13:07 -!- oal [~olav@5.79-160-122.customer.lyse.net] has quit [Remote host closed
the connection]
13:08 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 246 seconds]
13:08 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
13:09 -!- oal [~olav@5.79-160-122.customer.lyse.net] has joined #go-nuts
13:13 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 264 seconds]
13:13 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
13:18 -!- Cyanure [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Ping
timeout: 258 seconds]
13:18 -!- jophish [~jophish@hermi.gotadsl.co.uk] has joined #go-nuts
13:18 -!- idea_squirrel [ct2rips@77-21-31-189-dynip.superkabel.de] has quit [Read
error: Connection reset by peer]
13:22 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Quit:
leaving]
13:23 -!- idea_squirrel [~ct2rips@77-21-31-189-dynip.superkabel.de] has joined
#go-nuts
13:28 -!- chickamade [~chickamad@123.16.74.118] has joined #go-nuts
13:31 -!- Metaphis [~cyanure@81-65-195-5.rev.numericable.fr] has joined #go-nuts
13:33 -!- droid001 [~g1@p4FDC9B87.dip.t-dialin.net] has joined #go-nuts
13:34 -!- Gussi [gussiident@ftth-236-70.hive.is] has quit [Ping timeout: 276
seconds]
13:42 -!- fgb [~fgb@190.246.85.45] has quit [Quit: Leaving.]
13:43 -!- Gussi [gussiident@ftth-236-70.hive.is] has joined #go-nuts
13:49 -!- Kibiz0r1 [~Adium@wndsnyhed01-pool1-a130.wndsny.tds.net] has joined
#go-nuts
13:56 -!- lotrpy [~lotrpy@202.120.36.170] has joined #go-nuts
14:00 -!- amacleod [~amacleod@c-75-69-45-62.hsd1.ma.comcast.net] has joined
#go-nuts
14:07 -!- robot12 [~root@szhilkin.broker.freenet6.net] has quit [Quit: Ухожу я от
вас (xchat 2.4.5 или старше)]
14:30 -!- diabolix [~jsoyke@206.210.81.55] has joined #go-nuts
14:32 -!- kanru [~kanru@61-228-154-126.dynamic.hinet.net] has quit [Quit: WeeChat
0.3.1.1]
14:32 -!- afurlan [~afurlan@scorpion.mps.com.br] has quit [Remote host closed the
connection]
14:34 -!- afurlan [~afurlan@scorpion.mps.com.br] has joined #go-nuts
14:34 -!- trickie_ [~trickie@94.100.112.225] has joined #go-nuts
14:37 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
14:38 -!- trickie [~trickie@94.100.112.225] has quit [Ping timeout: 260 seconds]
14:39 -!- trickie_ [~trickie@94.100.112.225] has quit [Read error: Operation timed
out]
14:39 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has joined
#go-nuts
14:39 -!- trickie [~trickie@94.100.112.225] has joined #go-nuts
14:43 -!- r2p2 [~billy@v32671.1blu.de] has left #go-nuts []
14:47 -!- KB1JWQ [~KB1JWQ@freenode/staff/kb1jwq] has quit [Ping timeout: 604
seconds]
14:47 -!- nanoo [~nano@95-89-196-249-dynip.superkabel.de] has quit [Ping timeout:
245 seconds]
14:47 -!- nanoo [~nano@95-89-196-249-dynip.superkabel.de] has joined #go-nuts
14:51 -!- nanooo [~nano@95-89-196-249-dynip.superkabel.de] has joined #go-nuts
14:51 -!- lotrpy [~lotrpy@202.120.36.170] has quit []
14:51 -!- KB1JWQ [~KB1JWQ@freenode/staff/kb1jwq] has joined #go-nuts
14:54 -!- nanoo [~nano@95-89-196-249-dynip.superkabel.de] has quit [Ping timeout:
260 seconds]
14:56 -!- ashaw [~ashaw@58.108.161.163] has quit [Ping timeout: 272 seconds]
15:03 -!- mat_ [~mat@prod2.absolight.net] has quit [Remote host closed the
connection]
15:03 -!- mat_ [~mat@prod2.absolight.net] has joined #go-nuts
15:08 -!- mat_ [~mat@prod2.absolight.net] has quit [Remote host closed the
connection]
15:09 -!- mat_ [~mat@prod2.absolight.net] has joined #go-nuts
15:11 -!- mat_ [~mat@prod2.absolight.net] has quit [Read error: Connection reset
by peer]
15:11 -!- JSharpe [~jamie@5ad1d7d2.bb.sky.com] has joined #go-nuts
15:12 -!- mat_ [~mat@prod2.absolight.net] has joined #go-nuts
15:27 -!- Metaphis [~cyanure@81-65-195-5.rev.numericable.fr] has quit [Quit:
Quitte]
15:29 -!- p4p4_ [~P4p4@24.106.113.82.net.de.o2.com] has joined #go-nuts
15:30 -!- p4p4 [~P4p4@24.106.113.82.net.de.o2.com] has quit [Ping timeout: 272
seconds]
15:37 -!- Will_D [~Will@c-24-17-243-6.hsd1.wa.comcast.net] has joined #go-nuts
15:46 -!- Wiz126 [Wiz126@72.20.221.186] has quit [Ping timeout: 248 seconds]
15:51 -!- fwiffo [~fwiffo@unaffiliated/fwiffo] has joined #go-nuts
16:02 -!- Wiz126 [Wiz126@72.20.220.183] has joined #go-nuts
16:02 -!- marty_ [~hans@2002:62ea:197d:0:226:bbff:fe05:dd9b] has quit [Quit:
Leaving...]
16:06 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
16:11 -!- r2p2 [~billy@v32671.1blu.de] has joined #go-nuts
16:13 -!- kaigan|work
[~kaigan@c-8290e255.1411-10-64736c14.cust.bredbandsbolaget.se] has quit [Quit:
kaigan|work]
16:16 -!- Kibiz0r1 [~Adium@wndsnyhed01-pool1-a130.wndsny.tds.net] has quit [Quit:
Leaving.]
16:19 -!- lotrpy [~lotrpy@202.120.36.170] has joined #go-nuts
16:23 -!- roopeshv [~roopesh@c-71-202-114-43.hsd1.ca.comcast.net] has quit [Quit:
Leaving]
16:26 -!- Venom_X [~pjacobs@cpe-67-9-131-167.austin.res.rr.com] has joined
#go-nuts
16:30 -!- lotrpy [~lotrpy@202.120.36.170] has quit []
16:35 -!- trickie [~trickie@94.100.112.225] has quit [Quit: outty]
16:35 -!- fwiffo [~fwiffo@unaffiliated/fwiffo] has quit [Quit: Lost terminal]
16:43 -!- hstimer [~hans@70.90.170.37] has joined #go-nuts
16:44 -!- idea_squirrel [~ct2rips@77-21-31-189-dynip.superkabel.de] has quit [Read
error: Connection reset by peer]
16:46 -!- idea_squirrel [~ct2rips@77-21-31-189-dynip.superkabel.de] has joined
#go-nuts
16:48 -!- gzmask [~gzmask@corwin.cat.uregina.ca] has joined #go-nuts
16:49 -!- gzmask [~gzmask@corwin.cat.uregina.ca] has left #go-nuts []
16:50 -!- Will_D [~Will@c-24-17-243-6.hsd1.wa.comcast.net] has quit [Ping timeout:
265 seconds]
16:53 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Quit: Leaving.]
16:56 -!- Venom_X [~pjacobs@cpe-67-9-131-167.austin.res.rr.com] has quit [Ping
timeout: 246 seconds]
16:57 -!- Wiz126 [Wiz126@72.20.220.183] has quit [Ping timeout: 252 seconds]
16:58 -!- ericvh [~ericvh@32.97.110.63] has joined #go-nuts
16:58 -!- fwiffo [~fwiffo@unaffiliated/fwiffo] has joined #go-nuts
16:58 -!- ollinser [~ollin@www.inventage.com] has quit [Remote host closed the
connection]
17:03 -!- Venom_X [~pjacobs@66.54.185.131] has joined #go-nuts
17:15 -!- Wiz126 [Wiz126@72.20.220.183] has joined #go-nuts
17:20 -!- nanooo [~nano@95-89-196-249-dynip.superkabel.de] has quit [Quit:
Leaving]
17:21 -!- Wiz126 [Wiz126@72.20.220.183] has quit [Ping timeout: 246 seconds]
17:30 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Ping timeout: 248
seconds]
17:31 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
17:34 -!- keeto [~keeto@121.54.92.149] has quit [Read error: No route to host]
17:34 -!- keeto [~keeto@121.54.92.149] has joined #go-nuts
17:36 -!- callidus [~quassel@80.194.247.74] has quit [Remote host closed the
connection]
17:42 -!- wrtp [~rog@92.28.31.39] has quit [Quit: wrtp]
18:04 < hstimer> has anyone written a webserver in go yet?
18:07 < jA_cOp> well golang.org is hosted in Go :V
18:09 < donpdonp> http://www.getwebgo.com/
18:09 < donpdonp> is a web framework, not sure if thats what you mean or
something more like apache
18:10 < hstimer> just a simple static file server
18:10 < donpdonp> id like that too
18:10 < donpdonp> add V8 to do server-side processing of javascript in the
.html files
18:11 < donpdonp> and that would rock.
18:12 -!- XniX23 [vegy@89-212-10-29.dynamic.dsl.t-2.net] has joined #go-nuts
18:12 < hstimer> webgo will probably work for me
18:12 < XniX23> hello again
18:12 -!- tomestla [~tom@AToulouse-151-1-32-6.w83-203.abo.wanadoo.fr] has joined
#go-nuts
18:22 -!- path[l] [~path@59.162.86.164] has quit [Quit: path[l]]
18:27 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
18:28 -!- afurlan [~afurlan@scorpion.mps.com.br] has quit [Remote host closed the
connection]
18:29 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has quit [Quit:
binaryjohn]
18:33 < Discoloda> is there a blog post about reading binary formats in go?
18:36 -!- afurlan [~afurlan@scorpion.mps.com.br] has joined #go-nuts
18:37 < Discoloda> or anything about how to do it quickly
18:43 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has joined
#go-nuts
18:45 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
18:48 < plexdev> http://is.gd/7uM4V by [Russ Cox] in 2 subdirs of go/ -- gc:
...  T corner cases
18:57 -!- Wiz126 [Wiz126@72.20.220.183] has joined #go-nuts
18:57 -!- callidus [~quassel@cpc2-newc1-0-0-cust1524.gate.cable.virginmedia.com]
has joined #go-nuts
18:58 -!- chickamade [~chickamad@123.16.74.118] has quit [Quit: Leaving]
19:06 -!- jcb_ [~jcb@cm-84.215.40.160.getinternet.no] has joined #go-nuts
19:23 -!- ollinser [~ollin@84-73-206-133.dclient.hispeed.ch] has joined #go-nuts
19:24 -!- jcb_ [~jcb@cm-84.215.40.160.getinternet.no] has quit [Quit: This
computer has gone to sleep]
19:25 -!- ||AZAZELLO|| [~az@193.46.86.225] has joined #go-nuts
19:25 -!- ollinser [~ollin@84-73-206-133.dclient.hispeed.ch] has quit [Remote host
closed the connection]
19:26 -!- ollins [~ollin@84-73-206-133.dclient.hispeed.ch] has joined #go-nuts
19:28 -!- xubuntu [~xubuntu@AStrasbourg-256-1-113-198.w92-138.abo.wanadoo.fr] has
joined #go-nuts
19:34 < plexdev> http://is.gd/7uWdb by [Petar Maymounkov] in
go/src/pkg/http/ -- http: test for ReadReqeust
19:34 < plexdev> http://is.gd/7uWds by [Russ Cox] in go/misc/dashboard/ --
dashboard: avoid seeing cron's sh -c in ps check
19:39 -!- ollins [~ollin@84-73-206-133.dclient.hispeed.ch] has quit [Remote host
closed the connection]
19:40 -!- ollins [~ollin@84-73-206-133.dclient.hispeed.ch] has joined #go-nuts
19:41 -!- diabolix [~jsoyke@206.210.81.55] has left #go-nuts ["Leaving"]
19:43 -!- xubuntu [~xubuntu@AStrasbourg-256-1-113-198.w92-138.abo.wanadoo.fr] has
quit [Quit: Quitte]
19:44 -!- araujo [~araujo@gentoo/developer/araujo] has joined #go-nuts
19:51 -!- emelpy [~cmadd@S010600226b803196.gv.shawcable.net] has quit [Quit:
emelpy]
19:55 -!- carllerche_ [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
19:55 -!- jalmeida [~jalmeida@c9340a2e.virtua.com.br] has quit [Quit: Fui embora]
19:55 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:745c:6d8:1688:f75b] has joined
#go-nuts
19:59 -!- r2p2 [~billy@v32671.1blu.de] has left #go-nuts []
20:01 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Read error: Connection
reset by peer]
20:03 -!- ikkebr [~ikkibr@189.58.213.68] has joined #go-nuts
20:03 -!- ikkebr [~ikkibr@189.58.213.68] has quit [Changing host]
20:03 -!- ikkebr [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
20:03 -!- p4p4_ [~P4p4@24.106.113.82.net.de.o2.com] has quit [Quit: ChatZilla
0.9.84 [SeaMonkey 2.0a3/20090223135443]]
20:04 -!- ikke [~ikkibr@unaffiliated/ikkebr] has quit [Ping timeout: 265 seconds]
20:06 -!- binaryjohn [~binaryjoh@cpe-24-30-132-50.san.res.rr.com] has quit [Quit:
binaryjohn]
20:07 -!- r2p2 [~billy@v32671.1blu.de] has joined #go-nuts
20:08 -!- plainhao [~plainhao@mail.xbiotica.com] has quit [Quit: plainhao]
20:09 -!- johnfsse [~johnfsse@h177n1.opennet.ias.bredband.telia.com] has joined
#go-nuts
20:12 -!- KillerX [~anant@gentoo/developer/KillerX] has quit [Quit: Leaving.]
20:14 -!- Wiz126 [Wiz126@72.20.220.183] has quit [Ping timeout: 240 seconds]
20:20 -!- homiziado [~ernestofr@78.130.16.216.rev.optimus.pt] has joined #go-nuts
20:20 -!- ashaw [~ashaw@58.108.161.163] has joined #go-nuts
20:21 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
joined #go-nuts
20:26 -!- afurlan [~afurlan@scorpion.mps.com.br] has quit [Quit: Leaving]
20:27 -!- user__ [~user@hermi.gotadsl.co.uk] has joined #go-nuts
20:28 -!- user__ [~user@hermi.gotadsl.co.uk] has quit [Client Quit]
20:29 -!- idea_squirrel [~ct2rips@77-21-31-189-dynip.superkabel.de] has quit
[Quit: what would a pirate do?]
20:29 -!- user__ [~user@hermi.gotadsl.co.uk] has joined #go-nuts
20:30 -!- user__ [~user@hermi.gotadsl.co.uk] has quit [Client Quit]
20:30 -!- Jophish_n900 [~Jophish@hermi.gotadsl.co.uk] has joined #go-nuts
20:32 -!- Kashia [~Kashia@port-92-200-202-95.dynamic.qsc.de] has joined #go-nuts
20:42 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has joined #go-nuts
20:43 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has quit [Client Quit]
20:45 -!- ashaw [~ashaw@58.108.161.163] has quit [Ping timeout: 264 seconds]
20:45 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has joined #go-nuts
20:48 -!- ikkebr [~ikkibr@unaffiliated/ikkebr] has quit []
20:49 -!- johnfsse [~johnfsse@h177n1.opennet.ias.bredband.telia.com] has quit []
20:49 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has joined #go-nuts
20:49 -!- mrx1 [~mrx1@91.210.128.117] has joined #go-nuts
20:50 < mrx1> Hi. I'm wondering if there is any freeware usable app written
in Go? I would like to see how well it works :)
20:50 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Ping timeout: 260 seconds]
20:51 -!- johnfsse [~johnfsse@h177n1.opennet.ias.bredband.telia.com] has joined
#go-nuts
20:52 < bortzmeyer> There is a good Twitter client
http://codingrobots.org/p/gotweet/doc/tip/www/index.wiki
20:55 < mrx1> Are there any views for GUI libraries for Go ?
20:55 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has quit [Quit: Coyote finally
caught me]
20:56 < tml_> mrx1: it's probably too early in the language lifespan for
that
20:56 < araujo> I think there are already gtk+ bindings
20:57 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has joined #go-nuts
20:57 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
joined #go-nuts
20:57 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has quit [Client Quit]
20:59 -!- ivan` [~ivan@adsl-71-142-225-118.dsl.scrm01.pacbell.net] has joined
#go-nuts
20:59 -!- ivan` [~ivan@adsl-71-142-225-118.dsl.scrm01.pacbell.net] has quit
[Changing host]
20:59 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has joined #go-nuts
21:02 < uriel> mrx1: 'freeware'?
21:02 < uriel> I have no clue what that means, but there are plenty of Go
apps: http://go-lang.cat-v.org/go-code
21:03 -!- Venom_X [~pjacobs@66.54.185.131] has quit [Quit: Venom_X]
21:03 < uriel> and what are 'views for GUI libraries'?  As araujo pointed
out, there are bindings for a some toolkits:
http://go-lang.cat-v.org/library-bindings
21:06 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Killed (NickServ (GHOST command used by SRabbelier1))]
21:06 -!- SRabbelier1 [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
joined #go-nuts
21:07 -!- SRabbelier1 [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Read error: Connection reset by peer]
21:07 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Read error:
Connection reset by peer]
21:08 -!- r2p2 [~billy@v32671.1blu.de] has left #go-nuts []
21:08 < tml_> the gtk+ binding is probably more or less pointless to do
manually now when there will be introspection in gtk+ soon, exactly to make it
easier to create bindings
21:11 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
21:16 -!- yaroslav [~yaroslav@ppp85-140-188-193.pppoe.mtu-net.ru] has joined
#go-nuts
21:18 -!- oal [~olav@5.79-160-122.customer.lyse.net] has quit [Remote host closed
the connection]
21:19 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:745c:6d8:1688:f75b] has quit
[Quit: Leaving.]
21:20 -!- wrtp [~rog@92.28.31.39] has joined #go-nuts
21:25 -!- Jophish_n900 [~Jophish@hermi.gotadsl.co.uk] has quit [Quit: Leaving]
21:25 -!- Wiz126 [Wiz126@72.20.222.54] has joined #go-nuts
21:39 -!- niekie [quasselcor@CAcert/Assurer/niekie] has quit [Read error:
Connection reset by peer]
21:41 -!- ollins [~ollin@84-73-206-133.dclient.hispeed.ch] has quit [Remote host
closed the connection]
21:42 -!- General1337 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has quit
[Read error: Connection reset by peer]
21:42 -!- amacleod [~amacleod@c-75-69-45-62.hsd1.ma.comcast.net] has quit [Quit:
Bye Bye]
21:42 -!- General1337 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has joined
#go-nuts
21:44 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has quit [Quit: emelpy]
21:51 -!- ||AZAZELLO|| [~az@193.46.86.225] has quit [Remote host closed the
connection]
22:01 -!- JSharpe [~jamie@5ad1d7d2.bb.sky.com] has quit [Ping timeout: 246
seconds]
22:02 -!- ikke [~ikke@187.7.120.233] has joined #go-nuts
22:02 -!- ikke [~ikke@187.7.120.233] has quit [Changing host]
22:02 -!- ikke [~ikke@unaffiliated/ikkebr] has joined #go-nuts
22:04 -!- stalled [~411@unaffiliated/stalled] has quit [Ping timeout: 260 seconds]
22:04 -!- hevalbaranov [~hevalbara@95.15.44.129] has joined #go-nuts
22:09 < Discoloda> im getting a bad ref count ...
22:10 -!- JSharpe [~jamie@5ad1d7d2.bb.sky.com] has joined #go-nuts
22:12 -!- johnfsse [~johnfsse@h177n1.opennet.ias.bredband.telia.com] has left
#go-nuts []
22:12 -!- niekie [~niek@CAcert/Assurer/niekie] has joined #go-nuts
22:14 -!- Ortzinator [~ortzinato@unaffiliated/ortzinator] has quit [Ping timeout:
256 seconds]
22:15 -!- ericvh [~ericvh@32.97.110.63] has left #go-nuts []
22:15 -!- Ortzinator [~ortzinato@unaffiliated/ortzinator] has joined #go-nuts
22:17 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has joined #go-nuts
22:21 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has quit [Ping timeout: 240
seconds]
22:23 -!- wrtp [~rog@92.28.31.39] has quit [Quit: wrtp]
22:25 -!- yaroslav [~yaroslav@ppp85-140-188-193.pppoe.mtu-net.ru] has quit [Quit:
yaroslav]
22:30 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has joined #go-nuts
22:34 -!- stalled [~411@unaffiliated/stalled] has joined #go-nuts
22:39 < Discoloda> http://pastebin.com/m1a997518
22:40 < Discoloda> happens in encoding/binary
22:40 -!- stalled [~411@unaffiliated/stalled] has quit [Ping timeout: 240 seconds]
22:41 < smw> Discoloda: the source would probably help people.  I have never
seen it before
22:46 -!- stalled [~411@unaffiliated/stalled] has joined #go-nuts
22:46 < Discoloda> http://pastebin.com/d658a1be in Load
22:55 -!- [k2] [~DrKeeto@69.162.91.23] has quit [Ping timeout: 265 seconds]
22:56 -!- [k2] [~DrKeeto@69.162.91.23] has joined #go-nuts
23:07 -!- hstimer [~hans@70.90.170.37] has quit [Quit: Leaving...]
23:09 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Quit: (
www.nnscript.com :: NoNameScript 4.21 :: www.esnation.com )]
23:15 -!- General13372 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has
joined #go-nuts
23:17 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has quit [Quit: Coyote finally
caught me]
23:18 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has joined #go-nuts
23:18 -!- General1337 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has quit
[Ping timeout: 260 seconds]
23:19 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has quit [Quit: emelpy]
23:19 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Quit: Lost
terminal]
23:22 < plexdev> http://is.gd/7vIhg by [Russ Cox] in 5 subdirs of go/ --
nacl: fix build, finally fixed 8l convergence bug
23:22 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has joined #go-nuts
23:24 -!- d3xter [~3e2feea1@gateway/web/freenode/x-ytfujqituggpvhlf] has joined
#go-nuts
23:25 -!- Netsplit *.net <-> *.split quits: path[l], ivan`
23:28 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
23:34 -!- gnuvince [~vince@64.235.207.199] has joined #go-nuts
23:35 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has joined #go-nuts
23:35 -!- tomestla [~tom@AToulouse-151-1-32-6.w83-203.abo.wanadoo.fr] has quit
[Ping timeout: 264 seconds]
23:36 -!- homiziado [~ernestofr@78.130.16.216.rev.optimus.pt] has quit [Ping
timeout: 245 seconds]
23:36 -!- callidus [~quassel@cpc2-newc1-0-0-cust1524.gate.cable.virginmedia.com]
has quit [Ping timeout: 245 seconds]
23:39 -!- d3xter [~3e2feea1@gateway/web/freenode/x-ytfujqituggpvhlf] has quit
[Quit: Page closed]
23:47 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
23:49 -!- rhelmer [~rhelmer@adsl-71-139-219-78.dsl.snfc21.pacbell.net] has joined
#go-nuts
23:51 -!- emelpy [~cmadd@w143-041.wireless.uvic.ca] has joined #go-nuts
23:53 -!- rrr [debian-tor@gateway/tor-sasl/rrr] has quit [Remote host closed the
connection]
23:53 < plexdev> http://is.gd/7vOEo by [Rob Pike] in 13 subdirs of go/ --
Change type of Printf's args to ...  interface{}
23:54 -!- iswhite [~iswhite@121.166.225.37] has joined #go-nuts
23:56 < smw> does ...  T work now?
23:58 -!- aho [~nya@f050242201.adsl.alicedsl.de] has joined #go-nuts
--- Log closed Tue Feb 02 00:00:05 2010