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

--- Log opened Tue Mar 02 00:00:18 2010
00:02 -!- trepan [~trepan@unaffiliated/trepan] has joined #go-nuts
00:05 -!- wuehlmaus [~wuehlmaus@p4FCC73DB.dip.t-dialin.net] has quit [Ping
timeout: 245 seconds]
00:14 < fenicks> how to trap a signal in GO, like SIGINT ?
00:15 < Sapient> out of curiosity, how do the design goals of Go language
differ from those of D language ? Is there some significant overlap ?
00:17 -!- rhelmer [~rhelmer@38.112.6.110] has joined #go-nuts
00:17 <+iant> fenicks: see the os/signal package
00:17 < Nikopol> Sapient: was wondering myself
00:19 <+iant> Sapient: I don't know enough about D to say how the goals
differ, but it seems clear that the implementation approach differs
00:19 <+iant> D seems to include all the features of C++
00:19 <+iant> or at least nearly all
00:19 <+iant> Go takes a completely different route
00:19 < Sapient> less is more?
00:21 < Sapient> it's a tough question to answer in a few words probably I
should just try them both out and learn for myself
00:21 < Sapient> but you know, programmers and laziness
00:22 < Nikopol> how is that "completely" different?
00:23 < Nikopol> I know it's written from scratch
00:23 < Nikopol> :)
00:23 < Nikopol> however I see (practically) many similarities
00:24 <+iant> Go started with nothing and added language features that
seemed necessary for writing code
00:24 <+iant> As I say, I know much less about D, but it seems to start with
C++ and change it to be better
00:24 <+iant> I would describe those approaches as completely different
00:24 <+iant> clearly both languages are in the C (or Algol) family and thus
have similarities
00:24 < Nikopol> the modularity is pretty similar
00:25 < KirkMcDonald> Much of what D does is drop features from C++.
00:25 < Nikopol> compile times
00:25 < KirkMcDonald> No multiple inheritance, no preprocessor, no header
files.
00:25 < Nikopol> KirkMcDonald: (agreed)
00:26 < plexdev> http://is.gd/9ujFW by [Andrey Mirtchovski] in 3 subdirs of
go/ -- strings.Bytes -> []byte for documentation example, src/pkg/* comments,
and htmlgen.go
00:26 < plexdev> http://is.gd/9ujG7 by [Robert Griesemer] in go/doc/ --
Minor mistake in docs.
00:27 < KirkMcDonald> Originally it did not have templates, too.  They were
only added once a reasonable design and syntax for them was devised.
00:27 < Nikopol> I was quite surprised to see that, there are no mention of
D in the Go FAQ/docs
00:27 < Nikopol> really surprised
00:27 <+iant> The designers of Go did not look at D during the design
process
00:27 <+iant> and none of the Go team are really familiar with D
00:27 <+iant> So what should a FAQ entry say?
00:28 < KirkMcDonald> Just that.
00:28 < Nikopol> there is a language comparison with C
00:28 <+iant> ha, OK
00:28 <+iant> Nikopol: only about declaration syntax, because that is really
is a FAQ
00:28 < KirkMcDonald> I still think Go should have made the dereference
operator a postfix operator.
00:29 < Nikopol> but it's hard to explain how this question has not been
raised by any of Go users/designers
00:29 <+iant> yeah, maybe
00:29 < Nikopol> but, nevermind...
00:29 <+iant> Nikopol: it's come up on the mailing list a couple of times
00:29 <+iant> D is just a different language
00:29 <+iant> I'm not sure what interesting things there are to say about Go
and D
00:30 < KirkMcDonald> There is one interesting point of similarity between
the two languages.
00:30 < Nikopol> lots.  But I'm not an expert
00:30 < KirkMcDonald> Which are Go's slices and D's dynamic arrays.
00:30 <+iant> how do dynamic arrays work?
00:30 < KirkMcDonald> They are implemented as { length, pointer } structs.
(So-called "fat pointers.")
00:31 <+iant> so fairly similar then
00:31 < KirkMcDonald> The one difference is that you can (for instance) do:
array.length = 20;
00:31 < KirkMcDonald> And this will allocate a new array and copy.
00:32 <+iant> where as in Go you can reslice, but only up to the capacity
00:32 < KirkMcDonald> And you can concatenate two dynamic arrays and get a
new one, etc.
00:32 <+iant> we've talked that one back and forth and up and down
00:32 < KirkMcDonald> But, they both support the slice operation.
00:32 < KirkMcDonald> And the slice is simply a new dynamic array.
00:32 < KirkMcDonald> And so on.
00:33 < KirkMcDonald> So as in Go, this permits lots of byte-fiddling
operations to be done with ease, and without having to mess with pointers
directly.
00:33 <+iant> does D have pointer arithmetic?
00:33 < KirkMcDonald> (Conversely, D has C-style pointers, including pointer
arithmetic.
00:33 < KirkMcDonald> )
00:34 < Sapient> ok, well thanks for humoring my question with some
interesting discussion.  the differences and similarities are a bit clearer now
00:34 <+iant> anyhow, we would probably consider a contribution to the
language FAQ about D
00:34 <+iant> if somebody who knows D wants to write one
00:34 -!- homiziado [~ernestofr@78.130.67.34.rev.optimus.pt] has joined #go-nuts
00:34 <+iant> or we could have Go for D programmers....
00:34 < KirkMcDonald> I would have to think about it.
00:34 < nf> iant: definitely worth inclusion :)
00:34 <+iant> I think Andrew is working on Go for Java programmers
00:34 < nf> how many D programmers are there?
00:34 < KirkMcDonald> But I guess I'm as qualified as anyone to write such a
thing.
00:35 <+iant> I wrote Go for C++ programmers myself when I was first working
with Go
00:35 < KirkMcDonald> One issue with such a document is that very few D
programmers started with D. As a rule, they came from C++ or Java, or something
else.
00:36 < dagle> Go also have som simularities to the Fantom language.
00:36 < dagle> http://fantom.org/
00:36 <+iant> That language is new to me
00:37 < KirkMcDonald> I will say that, if the Go developers ever become
interested in adding compile-time templates to Go, D's templates would be worth
looking at.
00:38 <+iant> what would you say are the key differences between D templates
and C++ templates?
00:38 < KirkMcDonald> They are probably the best, or at least the most
interesting, part of that language.
00:38 < KirkMcDonald> One is that they do not complicate the parser
unnecessarily.
00:38 < KirkMcDonald> The second is that, while C++ templates are limited to
classes and functions, a D template is a namespace which may contain any
declarations.
00:39 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
00:39 < KirkMcDonald> Next there is 'static if', which permits many things
which would be written using template specialization in C++ to be done much more
logically.
00:40 < KirkMcDonald> D also has variadic templates, which have some
interesting uses.
00:40 <+iant> C++0x added variadic templates
00:40 < KirkMcDonald> Yes, it did.
00:40 < KirkMcDonald> But I don't like them as much.  :-)
00:40 <+iant> static if is a nice idea
00:41 -!- ericvh [~ericvh@2002:467b:802c:0:223:6cff:fe93:c616] has joined #go-nuts
00:41 -!- ericvh [~ericvh@2002:467b:802c:0:223:6cff:fe93:c616] has left #go-nuts
[]
00:41 < KirkMcDonald> The C++ template syntax is basically awful.
00:41 < Sapient> I agree, except for the basically part ;)
00:41 < KirkMcDonald> 'typename' alone is a sign that something went
dreadfully wrong with the grammar.
00:43 -!- sudi [~chatzilla@dslb-084-056-015-010.pools.arcor-ip.net] has quit [Ping
timeout: 264 seconds]
00:43 < KirkMcDonald> What else...  Oh yes, the variety of types which may
be used as template parameters is greater.
00:43 < KirkMcDonald> ints, floats, strings...
00:43 < KirkMcDonald> And (perhaps most interestingly) 'alias' parameters,
which may be any symbol.
00:44 < KirkMcDonald> Such as functions.
00:44 < KirkMcDonald> (Or, technically, variables, but the compiler can
behave oddly if you try passing local variables as alias template parameters...)
00:45 -!- smw [~stephen@pool-96-232-88-231.nycmny.fios.verizon.net] has joined
#go-nuts
00:50 -!- rhelmer [~rhelmer@38.112.6.110] has quit [Quit: rhelmer]
00:51 -!- geocalc [~geobsd@lns-bzn-37-82-253-18-73.adsl.proxad.net] has quit
[Remote host closed the connection]
00:53 -!- dizm [~dizm@121.98.168.127] has joined #go-nuts
00:56 -!- Sapient [~patrickp@wesnoth/developer/sapient] has left #go-nuts []
01:02 -!- dizm [~dizm@121.98.168.127] has left #go-nuts []
01:07 -!- homiziado [~ernestofr@78.130.67.34.rev.optimus.pt] has quit [Quit:
homiziado]
01:11 -!- mssm [~mssm@ip-95-221-109-16.bb.netbynet.ru] has quit [Ping timeout: 256
seconds]
01:15 -!- nettok [~netto@proxy.galileo.edu] has joined #go-nuts
01:18 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:20 -!- viirya [~viirya@cml506-25.csie.ntu.edu.tw] has quit [Quit: leaving]
01:23 -!- viirya [~viirya@cml506-25.csie.ntu.edu.tw] has joined #go-nuts
01:32 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has quit
[Quit: carllerche]
01:37 -!- adu [~ajr@pool-74-96-89-29.washdc.fios.verizon.net] has joined #go-nuts
01:49 -!- nettok [~netto@proxy.galileo.edu] has quit [Quit: Ex-Chat]
01:53 -!- nutate [~rseymour@cacsag4.usc.edu] has quit [Quit: I'm outta heee-eere]
01:56 -!- plexdev [~plexdev@arthur.espians.com] has quit [Remote host closed the
connection]
01:58 -!- plexdev [~plexdev@arthur.espians.com] has joined #go-nuts
02:12 -!- Venom_X [~pjacobs@cpe-67-9-131-167.austin.res.rr.com] has quit [Quit:
Venom_X]
02:14 -!- hstimer [~hstimer@2002:62ea:197d:0:226:bbff:fe05:dd9b] has joined
#go-nuts
02:16 -!- Wiz126 [Wiz126@72.20.219.70] has joined #go-nuts
02:22 -!- b00m_chef__ [~watr@128.189.88.230] has joined #go-nuts
02:30 -!- DuckFault [~DuckFault@rrcs-71-43-24-34.se.biz.rr.com] has quit [Quit:
Leaving.]
02:31 -!- Gussi [~gussi@ftth-236-70.hive.is] has quit [Ping timeout: 245 seconds]
02:34 -!- Gussi [~gussi@ftth-236-70.hive.is] has joined #go-nuts
02:45 -!- defectiv [~clays@adsl-75-6-239-89.dsl.pltn13.sbcglobal.net] has joined
#go-nuts
02:46 -!- newsham [~chat@thenewsh.com] has joined #go-nuts
02:46 < newsham> anyone here familiar with build process for go in mingw?
02:50 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
02:53 -!- Karnjug [~chatzilla@dsl-205-233-125-72.b2b2c.ca] has joined #go-nuts
02:54 -!- Karnjug [~chatzilla@dsl-205-233-125-72.b2b2c.ca] has left #go-nuts []
02:54 -!- newsham [~chat@thenewsh.com] has left #go-nuts []
02:58 -!- nf [~nf@124-168-128-116.dyn.iinet.net.au] has quit [Read error: Network
is unreachable]
02:58 -!- nf [~nf@203-214-153-199.perm.iinet.net.au] has joined #go-nuts
03:03 -!- powerje [~powerje@2002:4cc0:8dca:0:213:e8ff:feaa:ae2b] has joined
#go-nuts
03:03 -!- nf [~nf@203-214-153-199.perm.iinet.net.au] has quit [Ping timeout: 256
seconds]
03:07 -!- defectiv [~clays@adsl-75-6-239-89.dsl.pltn13.sbcglobal.net] has quit
[Quit: Leaving]
03:07 < KirkMcDonald> I was not aware that any version of Go worked in
Windows.
03:07 < KirkMcDonald> Oh, he left.
03:13 -!- nf [~nf@124-170-82-11.dyn.iinet.net.au] has joined #go-nuts
03:15 < hstimer> anyone here use the tls package?
03:19 -!- nettok [~netto@200.119.153.1] has joined #go-nuts
03:20 < hstimer> is there a way to typecast in go?
03:21 < hstimer> nevermind....
03:25 -!- jeek [~jeek@pedobear.jeek.net] has joined #go-nuts
03:29 -!- xeon [~chatzilla@118.126.12.54] has quit [Ping timeout: 268 seconds]
03:37 -!- kssreeram [~kssreeram@122.174.70.187] has quit [Quit: kssreeram]
03:38 -!- kssreeram [~kssreeram@122.174.70.187] has joined #go-nuts
03:55 -!- scandal [~me@unaffiliated/scandal] has left #go-nuts []
03:55 < hstimer> I'm seeing some odd interface casting behavior
03:56 < hstimer> T implements T1
03:56 < hstimer> foo () (T1) { return T }
03:57 < hstimer> t, good = foo().(T)
03:57 < hstimer> good == false
03:59 < anticw> (*T)
04:01 < hstimer> anticw: oh....  that worked....  why?
04:06 < anticw> hstimer: i can't find a good refernece in the spec as to why
this is necessary
04:07 < anticw> iant: can you comment perhaps?
04:11 < no_mind> can I declare a function to return a struct and os.Error
and return only os.Error on error ?
04:12 < hstimer> no
04:13 < exch> it'll be nil and os.error then
04:13 < exch> at best
04:13 < no_mind> so if error occurs, I have return an empty struct and
os.Error ?
04:16 -!- wuehlmaus [~wuehlmaus@p4FCC6484.dip.t-dialin.net] has joined #go-nuts
04:16 -!- yatoo [~marcus@host86-160-77-91.range86-160.btcentralplus.com] has quit
[Ping timeout: 252 seconds]
04:20 -!- nettok [~netto@200.119.153.1] has quit [Quit: Ex-Chat]
04:28 -!- wuehlmaus [~wuehlmaus@p4FCC6484.dip.t-dialin.net] has quit [Excess
Flood]
04:30 < anticw> yes
04:32 -!- wuehlmaus [~wuehlmaus@p4FCC6484.dip.t-dialin.net] has joined #go-nuts
04:52 -!- noam [~k4jd095b@87.70.183.61] has joined #go-nuts
04:59 -!- sakura_ [~sakura@201.252.192.37] has joined #go-nuts
05:01 -!- x-ip [~sakura@unaffiliated/x-ip] has quit [Ping timeout: 245 seconds]
05:24 -!- b00m_chef__ [~watr@128.189.88.230] has quit [Ping timeout: 246 seconds]
05:37 -!- kssreeram [~kssreeram@122.174.70.187] has quit [Quit: kssreeram]
05:41 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
05:45 -!- robot12 [~robot12@szhilkin.broker.freenet6.net] has joined #go-nuts
05:50 -!- droid001 [~g1@p4FDCBD8D.dip.t-dialin.net] has quit [Ping timeout: 246
seconds]
05:54 -!- adu [~ajr@pool-74-96-89-29.washdc.fios.verizon.net] has quit [Read
error: Connection reset by peer]
05:55 -!- adu [~ajr@pool-74-96-89-29.washdc.fios.verizon.net] has joined #go-nuts
06:07 -!- robot12 [~robot12@szhilkin.broker.freenet6.net] has quit [Remote host
closed the connection]
06:11 -!- kssreeram [~kssreeram@122.165.6.245] has joined #go-nuts
06:11 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 245
seconds]
06:13 -!- mikespook [~mikespook@219.135.160.202] has joined #go-nuts
06:27 -!- KillerX [~anant@145-116-234-40.uilenstede.casema.nl] has joined #go-nuts
06:27 -!- KillerX [~anant@145-116-234-40.uilenstede.casema.nl] has quit [Changing
host]
06:27 -!- KillerX [~anant@gentoo/developer/KillerX] has joined #go-nuts
06:34 -!- adu [~ajr@pool-74-96-89-29.washdc.fios.verizon.net] has quit [Quit: adu]
06:36 -!- adu [~ajr@pool-74-96-89-29.washdc.fios.verizon.net] has joined #go-nuts
06:36 -!- adu [~ajr@pool-74-96-89-29.washdc.fios.verizon.net] has quit [Client
Quit]
06:54 -!- KillerX [~anant@gentoo/developer/KillerX] has quit [Quit: Leaving.]
06:54 -!- kanru1 [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
06:54 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Read error:
Connection reset by peer]
07:04 -!- droid001 [~g1@p4FDC99CA.dip.t-dialin.net] has joined #go-nuts
07:04 -!- droid001 [~g1@p4FDC99CA.dip.t-dialin.net] has left #go-nuts []
07:05 -!- droid001 [~g1@p4FDC99CA.dip.t-dialin.net] has joined #go-nuts
07:05 -!- sea-gull_ [2059@friedman.ivoltaire.org] has left #go-nuts []
07:13 -!- wrtp [~rog@89.242.205.202] has joined #go-nuts
07:21 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
07:29 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
07:30 -!- trickie [~trickie@94.100.112.225] has joined #go-nuts
07:31 -!- trickie [~trickie@94.100.112.225] has quit [Client Quit]
07:31 -!- trickie [~trickie@94.100.112.225] has joined #go-nuts
07:35 -!- kanru1 [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Quit: WeeChat
0.3.1.1]
07:38 -!- mssm [~mssm@ip-95-221-109-16.bb.netbynet.ru] has joined #go-nuts
07:50 -!- ollins [~ollins@www.inventage.com] has joined #go-nuts
07:51 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
07:57 -!- asmo [~asmo@c83-248-32-75.bredband.comhem.se] has joined #go-nuts
07:57 -!- asmo_ [~asmo@c83-248-32-75.bredband.comhem.se] has joined #go-nuts
08:02 -!- asmo [~asmo@c83-248-32-75.bredband.comhem.se] has quit [Ping timeout:
268 seconds]
08:14 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 246
seconds]
08:16 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
619 seconds]
08:19 -!- anders__ [~anders.br@c83-253-2-206.bredband.comhem.se] has joined
#go-nuts
08:20 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
08:26 -!- ShadowIce [~pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
08:31 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
08:46 -!- filler [~filler@rhad.net] has quit [Read error: Connection reset by
peer]
08:59 -!- hdon [~donny@c-67-163-244-40.hsd1.pa.comcast.net] has joined #go-nuts
09:07 -!- Kashia [~Kashia@port-92-200-215-246.dynamic.qsc.de] has quit [Quit: This
computer has gone to sleep]
09:12 -!- c0nfl|ct [~tiago@83.240.134.68] has joined #go-nuts
09:12 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 276
seconds]
09:13 < c0nfl|ct> bom dia
09:16 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
09:23 -!- no_mind [~orion@122.161.35.42] has quit [Read error: Connection reset by
peer]
09:30 -!- Cyprien_ [~Cyprien@pub1.heig-vd.ch] has joined #go-nuts
09:38 -!- no_mind [~orion@122.162.227.228] has joined #go-nuts
09:45 < hdon> wow!  a formal mechanism for duck-typing!  in a systems
programming language!
09:45 * hdon swoons
09:52 -!- easytiger [~gerrys@gi0-0.cr1.vg1.core.bfs.wombatfs.net] has joined
#go-nuts
09:56 -!- asmo [~asmo@c83-248-32-75.bredband.comhem.se] has joined #go-nuts
09:56 -!- asmo_ [~asmo@c83-248-32-75.bredband.comhem.se] has quit [Ping timeout:
268 seconds]
09:59 < hdon> where is the SWIG work for the non-GCC compilers?
10:00 -!- Cleansy [Cleansy@schokobombe.massenvernichtungswaffeln.de] has left
#go-nuts []
10:01 -!- mikespook [~mikespook@219.135.160.202] has quit [Quit: Leaving.]
10:02 -!- path[l] [~path@122.167.245.104] has quit [Ping timeout: 246 seconds]
10:08 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by
services]
10:08 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
10:09 -!- General1337 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has joined
#go-nuts
10:09 -!- path[l] [~path@122.167.245.104] has joined #go-nuts
10:12 -!- General13372 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has quit
[Ping timeout: 258 seconds]
10:12 -!- c0nfl|ct [~tiago@83.240.134.68] has quit [Read error: Connection reset
by peer]
10:13 -!- c0nfl|ct [~tiago@83.240.134.68] has joined #go-nuts
10:22 -!- c0nfl|ct [~tiago@83.240.134.68] has quit [Ping timeout: 260 seconds]
10:56 -!- ikke [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
10:57 -!- path[l]_ [~path@122.167.245.104] has joined #go-nuts
11:00 -!- path[l] [~path@122.167.245.104] has quit [Ping timeout: 240 seconds]
11:03 -!- path[l]_ [~path@122.167.245.104] has joined #go-nuts
11:04 -!- jhnx [~bd7305b5@gateway/web/freenode/x-itpdrirrzbkeghgu] has joined
#go-nuts
11:05 -!- path[l] [~path@122.167.245.104] has quit [Ping timeout: 258 seconds]
11:19 -!- path[l]_ [~path@122.167.245.104] has joined #go-nuts
11:19 -!- path[l]_ [~path@122.167.245.104] has quit [Client Quit]
11:21 -!- path[l] [~path@122.167.245.104] has quit [Ping timeout: 264 seconds]
11:25 -!- GeoBSD [~geobsd@lns-bzn-37-82-253-18-73.adsl.proxad.net] has joined
#go-nuts
11:28 -!- plex [~koen@ns355224.ovh.net] has joined #go-nuts
11:29 -!- robot12 [~robot12@robot12.kgts.ru] has joined #go-nuts
11:38 -!- Len_ [~Len@87.70.4.31] has joined #go-nuts
11:38 -!- Wiz126 [Wiz126@72.20.219.70] has quit [Ping timeout: 268 seconds]
11:46 -!- kssreeram [~kssreeram@122.165.6.245] has quit [Quit: kssreeram]
11:47 -!- sakura_ [~sakura@201.252.192.37] has left #go-nuts []
11:49 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
11:51 -!- Wiz126 [Wiz126@72.20.219.70] has joined #go-nuts
11:57 -!- robot12 [~robot12@robot12.kgts.ru] has quit [Read error: Connection
reset by peer]
11:58 -!- tcoppi
[~nuclear@57c3ed63-1294-45bd-a8e8-cdcc07cfa16f.static.grokthis.net] has quit [Ping
timeout: 246 seconds]
11:59 -!- tcoppi [~nuclear@206.251.36.97] has joined #go-nuts
12:02 -!- afurlan [~afurlan@scorpion.mps.com.br] has joined #go-nuts
12:09 -!- yatoo [~marcus@host86-160-77-91.range86-160.btcentralplus.com] has
joined #go-nuts
12:10 -!- talin [~dag@fw.nteb.no] has joined #go-nuts
12:10 < talin> hello.  is it possible to write portable opengl programs with
go?
12:13 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Quit: WeeChat
0.3.1.1]
12:14 -!- GabydeWilde_ [~gabydewil@84-104-135-141.cable.quicknet.nl] has quit
[Read error: Connection reset by peer]
12:19 -!- GabydeWilde_ [~gabydewil@84-104-135-141.cable.quicknet.nl] has joined
#go-nuts
12:21 -!- TR2N [email@89-180-145-189.net.novis.pt] has joined #go-nuts
12:24 -!- talin [~dag@fw.nteb.no] has left #go-nuts []
12:26 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
12:29 -!- c0nfl|ct [~tiago@83.240.134.68] has joined #go-nuts
12:31 < rsaarelm> talin: There aren't official OpenGL bindings.  There are
third-party ones, but I don't know how good they are.
12:41 -!- vdrab [~vdrab@cap013-183.kcn.ne.jp] has joined #go-nuts
12:48 -!- robot12 [~robot12@robot12.kgts.ru] has joined #go-nuts
12:57 -!- nanoo [~nano@95-89-189-46-dynip.superkabel.de] has joined #go-nuts
13:08 -!- asmo [~asmo@c83-248-32-75.bredband.comhem.se] has quit [Remote host
closed the connection]
13:10 -!- cmarcelo [~cmarcelo@200.184.118.130] has joined #go-nuts
13:10 -!- cmarcelo [~cmarcelo@200.184.118.130] has quit [Changing host]
13:10 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
13:12 -!- anders__ [~anders.br@c83-253-2-206.bredband.comhem.se] has quit [Ping
timeout: 268 seconds]
13:13 -!- AzikaCorp [~AzikaCorp@AVelizy-155-1-30-19.w81-249.abo.wanadoo.fr] has
joined #go-nuts
13:24 -!- noam [~k4jd095b@87.70.183.61] has quit [Read error: Connection reset by
peer]
13:24 -!- noam [~k4jd095b@87.70.183.61] has joined #go-nuts
13:57 -!- robot12 [~robot12@robot12.kgts.ru] has quit [Quit: Leaving.]
14:09 -!- Wiz126 [Wiz126@72.20.219.70] has quit [Quit: bbl]
14:12 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Read error: Connection
refused]
14:12 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Ping
timeout: 245 seconds]
14:15 -!- tarzxvf [~pascal@187.65.198.97] has joined #go-nuts
14:15 -!- powerje [~powerje@2002:4cc0:8dca:0:213:e8ff:feaa:ae2b] has quit [Quit:
exit]
14:15 -!- tarzxvf [~pascal@187.65.198.97] has left #go-nuts ["Saindo"]
14:24 -!- DeviantPeer [~kvirc@87-196-84-73.net.novis.pt] has joined #go-nuts
14:28 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has joined #go-nuts
14:29 -!- trickie [~trickie@94.100.112.225] has quit [Read error: Operation timed
out]
14:30 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Ping
timeout: 276 seconds]
14:39 -!- droid001 [~g1@p4FDC99CA.dip.t-dialin.net] has left #go-nuts []
14:42 -!- mssm [~mssm@ip-95-221-109-16.bb.netbynet.ru] has quit [Quit: WeeChat
0.3.0]
14:43 -!- Hong_MinHee [~dahlia@211.239.163.54] has left #go-nuts ["Leaving..."]
14:44 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Quit:
leaving]
14:50 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
14:54 -!- KillerX [~anant@195.207.5.2] has joined #go-nuts
14:54 -!- KillerX [~anant@195.207.5.2] has quit [Changing host]
14:54 -!- KillerX [~anant@gentoo/developer/KillerX] has joined #go-nuts
14:54 -!- KillerX [~anant@gentoo/developer/KillerX] has left #go-nuts []
14:55 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
15:03 -!- iant [~iant@67.218.105.232] has joined #go-nuts
15:03 -!- mode/#go-nuts [+v iant] by ChanServ
15:09 -!- AzikaCorp [~AzikaCorp@AVelizy-155-1-30-19.w81-249.abo.wanadoo.fr] has
quit [Quit: leaving]
15:16 -!- anders__ [anders__@nl105-251-169.student.uu.se] has joined #go-nuts
15:33 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
15:35 -!- Amaranth [~travis@ubuntu/member/Amaranth] has quit [Ping timeout: 268
seconds]
15:38 -!- Amaranth [~travis@ubuntu/member/Amaranth] has joined #go-nuts
15:38 -!- awidegreen [~quassel@p5B061B6E.dip.t-dialin.net] has joined #go-nuts
15:55 -!- hstimer [~hstimer@2002:62ea:197d:0:226:bbff:fe05:dd9b] has quit [Quit:
hstimer]
15:56 -!- tonybibbs [~tonybibbs@216.51.246.190] has joined #go-nuts
15:57 -!- Amaranth [~travis@ubuntu/member/Amaranth] has quit [Ping timeout: 268
seconds]
15:58 -!- asmo [~asmo@c-f6c5e055.1155-1-64736c11.cust.bredbandsbolaget.se] has
joined #go-nuts
16:06 -!- gnuvince [~vince@72.0.216.197] has quit [Ping timeout: 265 seconds]
16:08 -!- iant [~iant@67.218.105.232] has quit [Ping timeout: 245 seconds]
16:09 -!- Amaranth [~travis@ubuntu/member/Amaranth] has joined #go-nuts
16:15 -!- Amaranth [~travis@ubuntu/member/Amaranth] has quit [Ping timeout: 268
seconds]
16:17 -!- gnuvince [~vince@64.235.199.59] has joined #go-nuts
16:22 -!- Venom_X [~pjacobs@cpe-67-9-131-167.austin.res.rr.com] has joined
#go-nuts
16:29 -!- g0bl1n [~anonymous@a213-22-200-76.cpe.netcabo.pt] has joined #go-nuts
16:30 -!- bortzmeyer [~bortzmeye@batilda.nic.fr] has quit [Quit: Leaving.]
16:35 -!- anders__ [anders__@nl105-251-169.student.uu.se] has quit [Ping timeout:
268 seconds]
16:37 -!- hstimer [~hstimer@2002:465a:aa25:0:226:bbff:fe05:dd9b] has joined
#go-nuts
16:44 -!- tonybibbs [~tonybibbs@216.51.246.190] has left #go-nuts []
16:49 -!- GabydeWilde_ [~gabydewil@84-104-135-141.cable.quicknet.nl] has quit
[Read error: Connection reset by peer]
16:49 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Quit: Leaving.]
16:56 -!- ericvh [~ericvh@32.97.110.63] has joined #go-nuts
17:00 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
17:04 -!- anders__ [~anders.br@c83-253-2-206.bredband.comhem.se] has joined
#go-nuts
17:11 -!- sjbrown_ [~sjbrown@c-69-181-182-137.hsd1.ca.comcast.net] has joined
#go-nuts
17:12 -!- m1ndwarp [~m1ndwarp@xdsl-78-35-158-1.netcologne.de] has joined #go-nuts
17:13 -!- dobie_gillis [~nnyby@accweb.evergreen.edu] has quit [Read error:
Connection reset by peer]
17:14 -!- dobie_gillis [~nnyby@accweb.evergreen.edu] has joined #go-nuts
17:14 -!- DeviantPeer [~kvirc@87-196-84-73.net.novis.pt] has quit [Quit: Going out
to the real world.]
17:22 -!- kssreeram [~kssreeram@122.174.70.187] has joined #go-nuts
17:24 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
17:27 -!- m1ndwarp [~m1ndwarp@xdsl-78-35-158-1.netcologne.de] has quit [Quit:
m1ndwarp]
17:29 -!- iant [~iant@nat/google/x-hzecbwtzqshejuoa] has joined #go-nuts
17:29 -!- mode/#go-nuts [+v iant] by ChanServ
17:32 -!- cppiii [~chatzilla@221.126.3.122] has joined #go-nuts
17:32 -!- Kashia [~Kashia@port-92-200-215-246.dynamic.qsc.de] has joined #go-nuts
17:33 -!- cppiii [~chatzilla@221.126.3.122] has left #go-nuts []
17:33 -!- cppiii [~chatzilla@221.126.3.122] has joined #go-nuts
17:34 -!- nanoo [~nano@95-89-189-46-dynip.superkabel.de] has quit [Quit: Leaving]
17:34 < cppiii> How do I run GO on windows?
17:37 <+iant> The Windows port is a work in progress
17:38 -!- Cyprien_ [~Cyprien@pub1.heig-vd.ch] has quit [Ping timeout: 268 seconds]
17:39 -!- leonod [~Andreas@zreahese.hus.sgsnet.se] has joined #go-nuts
17:40 < hstimer> What I want for my birthday: a single command that will
output all the values in the current stack frame
17:41 < hstimer> with labels
17:55 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-171-141.clienti.tiscali.it] has
joined #go-nuts
17:59 -!- path[l] [~path@122.167.245.104] has joined #go-nuts
18:02 -!- ollins [~ollins@www.inventage.com] has quit [Remote host closed the
connection]
18:04 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
18:08 < KirkMcDonald> hstimer: That could be a useful addition to panic().
18:08 -!- droid001 [~g1@p4FDC99CA.dip.t-dialin.net] has joined #go-nuts
18:08 -!- Kashia [~Kashia@port-92-200-215-246.dynamic.qsc.de] has quit [Ping
timeout: 256 seconds]
18:08 < hstimer> KirkMcDonald: and a generally useful debugging tool
18:09 < KirkMcDonald> Though at some point, you might as well just have a
debugger.
18:10 < hstimer> yes, but.  go builds are so fricking fast that I'm not sure
that a debugger is all that necessary....  just good code instrumentation tools
18:14 < leonod> A debugger is always good to have
18:15 -!- leonod [~Andreas@zreahese.hus.sgsnet.se] has quit [Quit: Leaving]
18:15 -!- rhelmer [~rhelmer@adsl-71-139-219-78.dsl.snfc21.pacbell.net] has joined
#go-nuts
18:19 -!- c0nfl|ct [~tiago@83.240.134.68] has quit [Quit: Saindo]
18:21 < hdon> where is the SWIG work for the non-GCC compilers?
18:21 <+iant> hdon: I'm working on SWIG but it's not done
18:21 <+iant> hdon: see misc/cgo for a different approach that works for C
18:22 <+iant> When SWIG is ready it will work for C++
18:22 <+iant> At least that is the goal
18:22 < anticw> is there a way to use select to see the read/writability of
a channel w/o actually doing the read/write?
18:22 <+iant> No
18:22 <+iant> Such tests are highly vulnerable to race conditions
18:23 < anticw> yes, i'm aware of that and assume that was why
18:23 < anticw> fwiw, i wanted a clean priority-queue that was more or less
a channel in and a channel out
18:23 -!- mbarkhau [~koloss@dslb-084-059-152-067.pools.arcor-ip.net] has joined
#go-nuts
18:24 < anticw> the output would have n slow consumers, so the reordering w/
a heap is possible, but getting it all working cleanly last night eluded me
18:24 < anticw> at this point i'm looking at runtime.Semaphore despite
claims i shouldn't use it
18:25 < hdon> iant, ah, i wasn't actually interested in it for any practical
goal, i'm just a swig fan and wanted to take a look :)
18:26 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
18:26 < JBeshir> Hmm.  Why not make the communication two way?  Have the
consumers write to a channel to indicate that they're reading?
18:26 -!- Kashia [~Kashia@port-92-200-59-29.dynamic.qsc.de] has joined #go-nuts
18:26 < no_mind> anyone writing a wrapper for openssl ?
18:26 < JBeshir> Vulnerable to races, except that if I get your design close
enough, your design wouldn't allow it.
18:26 <+iant> Now that I'm trying to figure out how to port SWIG I'm not
sure I could describe myself as a SWIG fan....
18:26 <+iant> at least I am not a SWIG internals documentation fan
18:26 < JBeshir> Since it guarantees that if they send that message they're
going to be reading right afterwards.
18:27 < JBeshir> Make a "request" queue?
18:28 -!- m1ndwarp [~m1ndwarp@dynamic-unidsl-85-197-29-20.westend.de] has joined
#go-nuts
18:29 < hdon> iant, heheh, i feel the same way with respect to that aspect
of SWIG.  i am in fact writing a SWIG module now with a secondary goal of
providing a highly documented demonstration of Language inheritance in SWIG --
right now i literally have about six lines of comments to every line of code.  it
was just far too difficult for me to get off the ground without just *copying*
someone else's module and tweaking it until it matched my needs, whi
18:29 < hdon> ch wasn't what i wanted.
18:31 -!- m1ndwarp [~m1ndwarp@dynamic-unidsl-85-197-29-20.westend.de] has quit
[Remote host closed the connection]
18:31 -!- m1ndwarp [~m1ndwarp@dynamic-unidsl-85-197-29-20.westend.de] has joined
#go-nuts
18:35 -!- nutate [~rseymour@cacsag4.usc.edu] has joined #go-nuts
18:36 -!- KillerX [~anant@145.116.234.40] has joined #go-nuts
18:36 -!- KillerX [~anant@145.116.234.40] has quit [Changing host]
18:36 -!- KillerX [~anant@gentoo/developer/KillerX] has joined #go-nuts
18:37 -!- kssreeram [~kssreeram@122.174.70.187] has quit [Quit: kssreeram]
18:39 -!- KillerX [~anant@gentoo/developer/KillerX] has quit [Client Quit]
18:49 -!- diabolix [~jsoyke@206.210.81.55] has joined #go-nuts
18:55 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has quit
[Quit: carllerche]
18:58 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
19:04 -!- hcatlin_ [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
19:04 -!- Cyprien_ [Cyprien@203-194.107-92.cust.bluewin.ch] has joined #go-nuts
19:05 -!- mejja [~user@c-52b1e555.023-82-73746f38.cust.bredbandsbolaget.se] has
joined #go-nuts
19:06 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Ping
timeout: 245 seconds]
19:07 -!- cppiii [~chatzilla@221.126.3.122] has quit [Ping timeout: 264 seconds]
19:11 -!- franksalim [~frank@adsl-75-61-84-181.dsl.pltn13.sbcglobal.net] has
joined #go-nuts
19:14 -!- anders__ [~anders.br@c83-253-2-206.bredband.comhem.se] has quit [Ping
timeout: 268 seconds]
19:15 -!- ikke [~ikkibr@unaffiliated/ikkebr] has quit []
19:19 -!- anders__ [anders__@c83-253-2-206.bredband.comhem.se] has joined #go-nuts
19:20 -!- gnuvince [~vince@64.235.199.59] has quit [Ping timeout: 264 seconds]
19:21 -!- gnuvince [~vince@70.35.170.56] has joined #go-nuts
19:21 -!- Mechanobot [~user@p578F9E6D.dip.t-dialin.net] has joined #go-nuts
19:22 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-171-141.clienti.tiscali.it] has
quit [Quit: E se abbasso questa leva che succ...]
19:28 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
19:41 -!- nanoo [~nano@95-89-189-46-dynip.superkabel.de] has joined #go-nuts
19:42 -!- Cyprien_ [Cyprien@203-194.107-92.cust.bluewin.ch] has quit [Ping
timeout: 245 seconds]
19:47 -!- franksalim [~frank@adsl-75-61-84-181.dsl.pltn13.sbcglobal.net] has quit
[Quit: Ex-Chat]
19:50 -!- gzmask [~ray@corwin.cat.uregina.ca] has joined #go-nuts
19:51 -!- geocalc [~geobsd@lns-bzn-61-82-250-65-106.adsl.proxad.net] has joined
#go-nuts
19:51 -!- GeoBSD [~geobsd@lns-bzn-37-82-253-18-73.adsl.proxad.net] has quit [Ping
timeout: 246 seconds]
19:52 -!- jhnx [~bd7305b5@gateway/web/freenode/x-itpdrirrzbkeghgu] has quit [Quit:
Page closed]
20:00 -!- ericvh_ [~ericvh@32.97.110.65] has joined #go-nuts
20:00 -!- ericvh [~ericvh@32.97.110.63] has quit [Ping timeout: 265 seconds]
20:14 -!- Eridius [~kevin@unaffiliated/eridius] has joined #go-nuts
20:16 -!- Venom_lnch [~pjacobs@cpe-67-9-131-167.austin.res.rr.com] has quit [Quit:
Venom_lnch]
20:17 -!- Venom_X [~pjacobs@cpe-67-9-131-167.austin.res.rr.com] has joined
#go-nuts
20:20 -!- nocturnal [~nocturnal@83.209.24.174] has joined #go-nuts
20:27 -!- sjbrown_ [~sjbrown@c-69-181-182-137.hsd1.ca.comcast.net] has quit [Ping
timeout: 248 seconds]
20:46 -!- c0nfl|ct [~tiago@248-17.dial.nortenet.pt] has joined #go-nuts
20:48 -!- nchaimov_ [~cowtown@c-71-237-208-209.hsd1.or.comcast.net] has joined
#go-nuts
20:48 -!- nchaimov [~cowtown@c-71-237-208-209.hsd1.or.comcast.net] has quit [Ping
timeout: 246 seconds]
20:50 < anticw> iant: SWIG for 6g or gccgo?
20:50 <+iant> anticw: both
20:50 <+iant> I'm giving SWIG a -gccgo option when used with -go
20:51 < nocturnal> why are the install scripts written in bash when they
work perfectly fine after i replaced all calls to bash with sh?
20:51 <+iant> because bash is more portable than sh and it seems easier to
require bash than to worry about future sh portability issues
20:51 <+iant> well, very simple uses of sh are portable
20:51 <+iant> but we don't have a way to audit the scripts for sh
portability
20:52 < nocturnal> i still don't get it, most things are written in bourne
shell because every one has bourne shell
20:52 < nocturnal> it is defined in posix as sh
20:52 <+iant> sure, but in practice most shells extend sh, and they extend
it in different ways
20:52 < nocturnal> and the scripts obviously work in bourne
20:53 < nocturnal> so you might break compatibility with sh some time in the
future?
20:53 <+iant> they may today, although I wonder what shell you are using to
test that
20:53 < nocturnal> and just use bash?
20:53 <+iant> but, right, will they work with sh in the future?
20:53 < nocturnal> yeah
20:53 < nocturnal> will they?
20:53 < nocturnal> who could tell really
20:53 <+iant> I don't know but I guarantee they will work with bash
20:54 < nocturnal> so you're willing to break compatibility with POSIX then
20:54 < nocturnal> or just extend it
20:54 <+iant> I would say, rather, that we're willing to test with bash
20:55 -!- nanoo [~nano@95-89-189-46-dynip.superkabel.de] has quit [Quit: Leaving]
20:55 <+iant> we don't plan to break POSIX compatibility but since we have
no good way to test for it we don't want to spend our time on it
20:55 <+iant> what system do you use?
20:55 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
20:55 < nocturnal> how can you not have a good way to test bourne shell?  os
x has it
20:55 < nocturnal> and you support os x officially
20:55 <+iant> OS X has a strict bourne shell?  that is news to me
20:55 <+iant> strict POSIX Bourne shells are rare
20:56 < nocturnal> hmm maybe i'm wrong
20:56 < nocturnal> sorry
20:56 < nocturnal> i just saw the manual for sh in os x
20:56 <+iant> I mean, bash is a Bourne shell, too
20:56 < nocturnal> it is the bash manual
20:56 <+iant> it's just not a strict one
20:56 < d_m> nocturnal: i thought OS X just links /bin/sh -> /bin/bash
(which turns on bash's sh compatibility mode)
20:56 < hdon> my /bin/sh is a link to /bin/dash
20:56 < nocturnal> a hard link in that case
20:56 <+iant> yeah, I just looked on an OS X system and /bin/sh was a
symlink to /bin/bash
20:57 < nocturnal> mine isn't a symlink but the manual is the same as bash
20:57 < nocturnal> so i must assume it is bash somehow
20:57 < nocturnal> like csh is tcsh in bsd
20:58 < nocturnal> on os x 10.6 Binary files /bin/sh and /bin/bash differ
20:59 < nocturnal> anyways, thanks for the info.  i got to sleep
20:59 -!- afurlan [~afurlan@scorpion.mps.com.br] has quit [Remote host closed the
connection]
20:59 -!- nocturnal [~nocturnal@83.209.24.174] has quit [Quit: leaving]
21:03 -!- m1ndwarp [~m1ndwarp@dynamic-unidsl-85-197-29-20.westend.de] has quit
[Quit: m1ndwarp]
21:06 -!- asmo [~asmo@c-f6c5e055.1155-1-64736c11.cust.bredbandsbolaget.se] has
quit [Remote host closed the connection]
21:06 -!- m1ndwarp [~m1ndwarp@dynamic-unidsl-85-197-29-20.westend.de] has joined
#go-nuts
21:14 -!- leonod [~Andreas@zreahese.hus.sgsnet.se] has joined #go-nuts
21:17 -!- gnperumal [~8fa6ff41@gateway/web/freenode/x-ykmbjifmzpzskahq] has quit
[Ping timeout: 252 seconds]
21:18 -!- Cyprien_ [Cyprien@233-5.107-92.cust.bluewin.ch] has joined #go-nuts
21:18 -!- diabolix [~jsoyke@206.210.81.55] has quit [Remote host closed the
connection]
21:22 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:24b3:687d:7b4a:ff2b] has joined
#go-nuts
21:29 -!- ericvh_ [~ericvh@32.97.110.65] has quit [Quit: ericvh_]
21:29 -!- monty_hall [~sprague_r@adsl-99-40-250-203.dsl.sfldmi.sbcglobal.net] has
quit [Quit: Leaving.]
21:30 -!- sjbrown_ [~sjbrown@dsl081-072-059.sfo1.dsl.speakeasy.net] has joined
#go-nuts
21:31 -!- ericvh [~ericvh@32.97.110.63] has joined #go-nuts
21:32 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
21:42 -!- tux21b [~christoph@90.146.60.30] has quit [Ping timeout: 264 seconds]
21:44 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:24b3:687d:7b4a:ff2b] has quit
[Quit: Leaving.]
21:48 -!- MarkBao [~MarkBao@64.134.96.99] has joined #go-nuts
21:50 < plexdev> http://is.gd/9yvZw by [Robert Griesemer] in 31 subdirs of
go/src/ -- gofmt: experiment: align values in map composites where possible
21:50 < plexdev> http://is.gd/9yvZH by [Andrew Gerrand] in go/src/pkg/http/
-- http: corrected comment for Response.GetHeader.
21:55 -!- anders__ [anders__@c83-253-2-206.bredband.comhem.se] has quit []
21:59 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
22:02 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
22:07 < plexdev> http://is.gd/9yzAl by [Andrew Gerrand] in
go/lib/codereview/ -- codereview.py: fix for compatibility with hg >=1.4.3
22:08 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
22:09 -!- General13372 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has
joined #go-nuts
22:12 -!- General1337 [~support@71-84-247-187.dhcp.gldl.ca.charter.com] has quit
[Ping timeout: 264 seconds]
22:15 -!- m1ndwarp [~m1ndwarp@dynamic-unidsl-85-197-29-20.westend.de] has quit
[Quit: m1ndwarp]
22:15 -!- scm [justme@d019140.adsl.hansenet.de] has quit [Ping timeout: 252
seconds]
22:16 -!- geocalc [~geobsd@lns-bzn-61-82-250-65-106.adsl.proxad.net] has quit
[Remote host closed the connection]
22:17 -!- scm [justme@d019100.adsl.hansenet.de] has joined #go-nuts
22:20 -!- b00m_chef__ [~watr@d64-180-45-230.bchsia.telus.net] has joined #go-nuts
22:29 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
22:32 -!- monty_hall [~sprague_r@adsl-99-40-250-203.dsl.sfldmi.sbcglobal.net] has
joined #go-nuts
22:37 -!- g0bl1n [~anonymous@a213-22-200-76.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
22:39 -!- leonod [~Andreas@zreahese.hus.sgsnet.se] has quit [Quit: Leaving]
22:42 -!- hstimer [~hstimer@2002:465a:aa25:0:226:bbff:fe05:dd9b] has quit [Quit:
hstimer]
22:49 -!- Wiz126 [Wiz126@72.20.223.244] has joined #go-nuts
22:50 -!- ericvh [~ericvh@32.97.110.63] has quit [Quit: ericvh]
22:51 -!- iant [~iant@nat/google/x-hzecbwtzqshejuoa] has quit [Ping timeout: 248
seconds]
22:56 -!- gzmask [~ray@corwin.cat.uregina.ca] has quit [Quit: gzmask]
22:58 -!- c0nfl|ct [~tiago@248-17.dial.nortenet.pt] has quit [Read error:
Operation timed out]
22:59 -!- Mechanobot [~user@p578F9E6D.dip.t-dialin.net] has quit [Quit:
Verlassend]
23:04 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
23:06 -!- iant [~iant@nat/google/x-dijercniohhevywo] has joined #go-nuts
23:06 -!- mode/#go-nuts [+v iant] by ChanServ
23:09 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
23:12 -!- ShadowIce [~pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
23:13 -!- gnuvince_ [~vince@70.35.170.56] has joined #go-nuts
23:19 -!- kunwon11 [~kunwon1@unaffiliated/kunwon1] has joined #go-nuts
23:21 -!- vdrab [~vdrab@cap013-183.kcn.ne.jp] has quit [Quit: vdrab]
23:22 -!- hstimer [~hstimer@75-144-249-1-SFBA.hfc.comcastbusiness.net] has joined
#go-nuts
23:22 -!- kunwon1 [~kunwon1@unaffiliated/kunwon1] has quit [Ping timeout: 265
seconds]
23:24 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has joined #go-nuts
23:38 -!- awidegreen [~quassel@p5B061B6E.dip.t-dialin.net] has quit [Remote host
closed the connection]
23:40 -!- gnuvince_ [~vince@70.35.170.56] has quit [Quit: What the fruit is goin'
on here!?]
23:41 -!- gnuvince [~vince@70.35.170.56] has quit [Quit: brb, DSL saigne du cul]
23:42 -!- lino [~lino@bl6-225-177.dsl.telepac.pt] has joined #go-nuts
23:42 -!- gnuvince [~vince@64.235.199.141] has joined #go-nuts
23:47 -!- kunwon111 [~kunwon1@unaffiliated/kunwon1] has joined #go-nuts
23:48 -!- mbarkhau [~koloss@dslb-084-059-152-067.pools.arcor-ip.net] has quit
[Quit: Leaving.]
23:49 -!- lino [~lino@bl6-225-177.dsl.telepac.pt] has quit [Quit: Leaving]
23:50 -!- kunwon11 [~kunwon1@unaffiliated/kunwon1] has quit [Ping timeout: 265
seconds]
23:52 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
23:53 -!- tux21b [~christoph@90.146.60.30] has quit [Ping timeout: 260 seconds]
23:54 -!- hstimer [~hstimer@75-144-249-1-SFBA.hfc.comcastbusiness.net] has quit
[Quit: hstimer]
--- Log closed Wed Mar 03 00:00:19 2010