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

--- Log opened Thu Apr 15 00:00:46 2010
00:05 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 276
seconds]
00:11 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
00:12 -!- bjarneh [~bjarneh@1x-193-157-196-134.uio.no] has quit [Ping timeout: 258
seconds]
00:12 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
00:16 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has joined #go-nuts
00:26 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
00:27 -!- tvw [~tv@e182076250.adsl.alicedsl.de] has quit [Read error: Operation
timed out]
00:36 -!- nettok [~netto@200.119.158.155] has joined #go-nuts
00:44 -!- krelian [~chatzilla@201.250.92.210] has quit [Read error: Connection
reset by peer]
00:45 -!- krelian [~chatzilla@201.250.92.210] has joined #go-nuts
00:52 -!- iant [~iant@67.218.109.44] has quit [Ping timeout: 276 seconds]
01:02 -!- nettok [~netto@200.119.158.155] has quit [Ping timeout: 246 seconds]
01:06 -!- jdp [~gu@75.97.120.11.res-cmts.senj.ptd.net] has joined #go-nuts
01:07 -!- ArekZB [~ArekZB@CPE00222d11587c-CM00222d115878.cpe.net.cable.rogers.com]
has joined #go-nuts
01:14 -!- dju [dju@null.dmz.me] has quit [Quit: Quitte]
01:16 -!- analogue [~analogue@toulouse.jfg-networks.net] has quit []
01:17 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Quit: (
www.nnscript.com :: NoNameScript 4.21 :: www.esnation.com )]
01:20 -!- g0bl1n [~anonymous@a213-22-237-141.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
01:23 -!- nettok [~netto@200.119.158.155] has joined #go-nuts
01:24 -!- zyichi [~zyichi@124.205.180.154] has joined #go-nuts
01:27 -!- felipe [~felipe@my.nada.kth.se] has joined #go-nuts
01:32 -!- nettok [~netto@200.119.158.155] has quit [Ping timeout: 246 seconds]
01:38 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
01:39 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:42 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Client Quit]
01:48 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:49 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Quit: Venom_X]
01:49 -!- TR2N [email@89-180-217-41.net.novis.pt] has quit [Ping timeout: 240
seconds]
01:51 -!- nettok [~netto@200.119.158.155] has joined #go-nuts
01:59 -!- TR2N [email@89.180.168.94] has joined #go-nuts
01:59 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
02:04 < kmeyer> Anyone familiar with mercurial / the patch system?
02:04 < kmeyer> I've changed some files (hg status shows 'M') but 'hg
change' doesn't seem to be picking them up.
02:04 < kmeyer> Any ideas?
02:06 < nf> kmeyer: what does 'hg p' say ?
02:06 -!- zyichi [~zyichi@124.205.180.154] has quit [Quit: zyichi]
02:06 < kmeyer> nf: http://pastebin.ca/1861171
02:06 -!- zyichi [~zyichi@124.205.180.154] has joined #go-nuts
02:07 < kmeyer> the modified files are also in one of those changes, if that
matters
02:07 < kmeyer> ahh, hg sync fixed it I think
02:07 < nf> well, you'd need to do 'hg change <cl#>'
02:08 < nf> if you don't specify a cl#, it'll create a new one with any
modified files not in an existing cl
02:09 < nf> what are you trying to do, exactly?  do you mean to 'hg mail' ?
02:09 < kmeyer> right, I want to make a new cl
02:10 < kmeyer> there, I think I have it :)
02:11 < nf> a file can't be in more than one active cl at once :)
02:13 < nf> kmeyer: wow, monster CL!
02:13 < kmeyer> right, but it's a closed cl
02:13 < kmeyer> hm?
02:13 < nf> actually it's not that big :)
02:13 < nf> 'closed' ?
02:13 < kmeyer> finished?  imported?
02:13 < nf> submitted ?
02:13 < kmeyer> it's in the latest release
02:13 < kmeyer> whatever that is
02:14 < nf> in which case, 'hg change -D <cl#>' on the submitted one
02:14 < kmeyer> codereview.appspot.com calls it "Closed"
02:14 < nf> (make sure it's capital D, not lowercase)
02:14 < kmeyer> hm?
02:14 < kmeyer> what's that do?
02:14 < nf> it'll remove that CL from your hg client
02:14 < kmeyer> ah, ok
02:14 < nf> or a sync might catch that
02:15 < kmeyer> hg sync did that for me, I think
02:15 < kmeyer> yeah.
02:15 < nf> yeah that makes sense :)
02:15 < kmeyer> (hg p doesn't show it anymore :))
02:15 < nf> great, yeah always hg sync before creating or mailing a new CL
02:16 < kmeyer> we should update the contributing documentation -- it has
the sync step after the creating-a-cl step
02:16 < nf> kmeyer: wow, textproto certainly cut down the size of the nntp
lib
02:16 < kmeyer> heh
02:16 < kmeyer> possibly even more than that
02:17 < kmeyer> I was kind of rushed (I'm going to be out of town and busy
for the next ~week) so I might have missed some unused things
02:17 < nf> well, thanks for doin git
02:17 < nf> 'doing it'
02:18 < kmeyer> :)
02:21 -!- krelian [~chatzilla@201.250.92.210] has quit [Ping timeout: 260 seconds]
02:21 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 265 seconds]
02:24 -!- krelian [~chatzilla@201.250.92.210] has joined #go-nuts
02:26 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has joined
#go-nuts
02:35 -!- aanderse
[~aanderse@CPE001b11cc67d3-CM0019475d7f5e.cpe.net.cable.rogers.com] has joined
#go-nuts
02:36 -!- SecretofMana [~mana@142.46.164.30] has joined #go-nuts
02:56 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has joined #go-nuts
02:58 -!- aho [~nya@f051194096.adsl.alicedsl.de] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
02:59 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
03:00 -!- nettok [~netto@200.119.158.155] has quit [Ping timeout: 260 seconds]
03:07 -!- zyichi [~zyichi@124.205.180.154] has left #go-nuts []
03:10 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has joined #go-nuts
03:16 -!- Nitro [~nitro@208.92.17.21] has quit [Quit: Leaving.]
03:17 -!- MadMethod [~Method@nat-3-135.snu.edu] has joined #go-nuts
03:17 -!- MadMethod [~Method@nat-3-135.snu.edu] has quit [Changing host]
03:17 -!- MadMethod [~Method@unaffiliated/method] has joined #go-nuts
03:17 -!- Method [~Method@unaffiliated/method] has quit [Read error: Connection
reset by peer]
03:19 -!- brian [~brian@66-90-153-85.dyn.grandenetworks.net] has joined #go-nuts
03:21 -!- nettok [~netto@200.119.158.155] has joined #go-nuts
03:23 -!- adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has joined #go-nuts
03:24 -!- ArekZB [~ArekZB@CPE00222d11587c-CM00222d115878.cpe.net.cable.rogers.com]
has quit [Quit: ArekZB]
03:27 -!- nettok_ [~netto@200.119.158.155] has joined #go-nuts
03:31 -!- nettok [~netto@200.119.158.155] has quit [Ping timeout: 252 seconds]
03:36 -!- krelian [~chatzilla@201.250.92.210] has quit [Quit: ChatZilla 0.9.86
[Firefox 3.6.3/20100401080539]]
03:37 -!- krelian [~chatzilla@201.250.92.210] has joined #go-nuts
03:40 -!- aanderse
[~aanderse@CPE001b11cc67d3-CM0019475d7f5e.cpe.net.cable.rogers.com] has quit
[Remote host closed the connection]
03:41 -!- nettok__ [~netto@200.119.158.155] has joined #go-nuts
03:44 -!- nettok_ [~netto@200.119.158.155] has quit [Ping timeout: 240 seconds]
03:53 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 260
seconds]
04:06 -!- SecretofMana [~mana@142.46.164.30] has quit [Quit: Leaving]
04:18 -!- nettok__ [~netto@200.119.158.155] has quit [Ping timeout: 258 seconds]
04:24 -!- robot12 [~robot12@robot12.kgts.ru] has joined #go-nuts
04:27 -!- kssreeram [~kssreeram@122.174.139.125] has quit [Quit: kssreeram]
04:33 < meatmanek> is there a way to use the methods in container/vector on
an array of uint64s, is there?
04:33 < meatmanek> slice, rather
04:34 < kmeyer> sure -- use the interface{} version, or use gofmt -r to
rewrite it to a specific type
04:34 < anticw> meatmanek: for uint64 i would just implement things as you
see fit, container/vector is going to be much slower than doing that
04:34 < meatmanek> k
04:35 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has joined #go-nuts
04:35 -!- mode/#go-nuts [+v iant] by ChanServ
04:36 -!- TMKCodes [~toni@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has quit [Ping
timeout: 258 seconds]
04:37 -!- nettok__ [~netto@200.119.154.157] has joined #go-nuts
04:37 -!- dublisk
[~dublisk@CPE001839e495b3-CM00159a09b6fc.cpe.net.cable.rogers.com] has joined
#go-nuts
04:45 -!- wuehlmaus [~wuehlmaus@p4FCC7ECC.dip.t-dialin.net] has joined #go-nuts
04:48 -!- TMKCodes [~toni@87-95-0-88.bb.dnainternet.fi] has joined #go-nuts
04:49 < plexdev> http://is.gd/btlMZ by [Robert Griesemer] in
go/src/pkg/scanner/ -- scanner: implement Peek() to look at the next char w/o
advancing
04:51 < meatmanek> so if a goroutine is made, and then the main function
exits, the goroutine continues running in the background?
04:52 < JBeshir> No.
04:53 < meatmanek> that's what appears to be happening to me
04:55 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
05:01 < cbeck> meatmanek: That may be a product of buffered IO, what makes
you think the goroutine continues to run?
05:02 < meatmanek> because the process stays in memory and keeps using
processor cycles.
05:08 < meatmanek> why would the line results.Results[i] =
e.Value.(btrie.RecordP) freeze my program?
05:09 < meatmanek> e being of type container/list.Element
05:11 < meatmanek> well, not freeze
05:11 < meatmanek> it's doing something
05:11 < meatmanek> consuming 60% cpu
05:14 <+iant> I don't see how that line could cause the program to loop
05:15 < meatmanek> nor do I
05:15 < meatmanek> I'm trying to reproduce it with less code
05:16 -!- adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has quit [Read
error: Connection reset by peer]
05:17 -!- adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has joined #go-nuts
05:17 -!- nettok_ [~netto@200.119.154.157] has joined #go-nuts
05:18 < meatmanek> nor do I.
05:19 < meatmanek> but that is clearly the line it's looping on
05:19 < meatmanek> because I have a print directly before that line, and a
print directly after, and I only get the one before
05:19 < meatmanek> if I comment out that line, everything else works except
I have nothing in my array
05:20 <+iant> what is the value of i?
05:20 <+iant> what is the type of result.Results?
05:20 < meatmanek> results.Results is []btrie.RecordP
05:20 < meatmanek> i is 0
05:20 -!- nettok__ [~netto@200.119.154.157] has quit [Ping timeout: 258 seconds]
05:21 <+iant> very odd
05:21 <+iant> no idea
05:22 -!- nettok__ [~netto@200.119.154.157] has joined #go-nuts
05:25 -!- nettok_ [~netto@200.119.154.157] has quit [Ping timeout: 248 seconds]
05:27 -!- clip9 [tj@12.81-166-62.customer.lyse.net] has quit [Ping timeout: 252
seconds]
05:27 -!- loglaunc1 [~joe5ie@minerva.redbrick.dcu.ie] has joined #go-nuts
05:28 -!- nettok_ [~netto@200.119.154.157] has joined #go-nuts
05:28 -!- AmirMoha1mad [~amir@213.207.243.252] has joined #go-nuts
05:28 -!- clip9 [tj@12.81-166-62.customer.lyse.net] has joined #go-nuts
05:31 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
05:31 -!- nettok__ [~netto@200.119.154.157] has quit [Ping timeout: 265 seconds]
05:32 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
05:33 -!- TR2N [email@89.180.168.94] has left #go-nuts []
05:34 -!- Netsplit *.net <-> *.split quits: Paradox924X, apexo, loglaunch,
rbraley, soul9, AmirMohammad, brian, mitsuhiko, hurdman, Dr_Who, (+1 more, use
/NETSPLIT to show all of them)
05:37 -!- nettok_ [~netto@200.119.154.157] has quit [Ping timeout: 246 seconds]
05:39 -!- Netsplit over, joins: soul9, brian, rbraley, Paradox924X, Yoda-BZH,
hurdman, mitsuhiko, apexo
05:48 -!- theneo9 [~cbd03de4@gateway/web/freenode/x-qxjmbnckwoveywbm] has joined
#go-nuts
05:49 -!- theneo9 [~cbd03de4@gateway/web/freenode/x-qxjmbnckwoveywbm] has left
#go-nuts []
05:54 -!- nettok_ [~netto@200.119.154.157] has joined #go-nuts
05:59 -!- stalled [~stalled@unaffiliated/stalled] has quit [Ping timeout: 246
seconds]
06:00 -!- nettok [~netto@200.119.154.157] has joined #go-nuts
06:01 -!- ShadowIce [~pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
06:02 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:ed0a:211:b2a4:6a84] has joined
#go-nuts
06:02 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:ed0a:211:b2a4:6a84] has quit
[Client Quit]
06:02 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:ed0a:211:b2a4:6a84] has joined
#go-nuts
06:04 -!- nettok_ [~netto@200.119.154.157] has quit [Ping timeout: 276 seconds]
06:06 -!- adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has quit [Quit: adu]
06:10 -!- AmirMoha1mad [~amir@213.207.243.252] has left #go-nuts []
06:11 -!- AmirMohammad [~amir@unaffiliated/gluegadget] has joined #go-nuts
06:14 -!- nettok_ [~netto@200.119.154.157] has joined #go-nuts
06:17 -!- stalled [~stalled@unaffiliated/stalled] has joined #go-nuts
06:17 -!- nettok [~netto@200.119.154.157] has quit [Ping timeout: 258 seconds]
06:24 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has quit [Ping
timeout: 276 seconds]
06:31 -!- nettok_ [~netto@200.119.154.157] has quit [Ping timeout: 260 seconds]
06:33 -!- Dr_Who [~tgall@gentoo/developer/dr-who] has joined #go-nuts
06:42 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
06:51 -!- nettok_ [~netto@200.119.154.157] has joined #go-nuts
06:52 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has quit [Ping
timeout: 260 seconds]
06:56 -!- nettok__ [~netto@200.119.154.157] has joined #go-nuts
06:56 -!- idea_squirrel [~ct2rips@77-21-24-61-dynip.superkabel.de] has joined
#go-nuts
07:00 -!- nettok_ [~netto@200.119.154.157] has quit [Ping timeout: 268 seconds]
07:01 -!- krelian [~chatzilla@201.250.92.210] has quit [Quit: ChatZilla 0.9.86
[Firefox 3.6.3/20100401080539]]
07:01 -!- nettok_ [~netto@200.119.154.157] has joined #go-nuts
07:05 -!- nettok__ [~netto@200.119.154.157] has quit [Ping timeout: 240 seconds]
07:07 -!- nettok__ [~netto@200.119.154.157] has joined #go-nuts
07:10 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Read error: Connection reset by peer]
07:11 -!- nettok_ [~netto@200.119.154.157] has quit [Ping timeout: 260 seconds]
07:16 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
joined #go-nuts
07:16 -!- rlab [~Miranda@11-78-113-92.pool.ukrtel.net] has joined #go-nuts
07:20 -!- ikaros [~ikaros@g227026094.adsl.alicedsl.de] has joined #go-nuts
07:21 -!- analogue [~analogue@toulouse.jfg-networks.net] has joined #go-nuts
07:24 -!- nettok__ [~netto@200.119.154.157] has quit [Ping timeout: 246 seconds]
07:24 -!- JRowe [~JRowe@host-72-175-188-34.but-mt.client.bresnan.net] has joined
#go-nuts
07:27 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
07:34 -!- petrux [~petrux@host16-224-static.53-82-b.business.telecomitalia.it] has
joined #go-nuts
07:36 -!- JRowe [~JRowe@host-72-175-188-34.but-mt.client.bresnan.net] has left
#go-nuts []
07:37 -!- kaigan|work
[~kaigan@c-8290e255.1411-10-64736c14.cust.bredbandsbolaget.se] has joined #go-nuts
07:38 -!- kssreeram [~kssreeram@122.165.6.245] has joined #go-nuts
07:42 -!- nettok__ [~netto@200.119.154.157] has joined #go-nuts
07:54 -!- nettok__ [~netto@200.119.154.157] has quit [Quit: Ex-Chat]
08:02 -!- Macpunk [~macpunk@cpe-72-177-26-221.austin.res.rr.com] has quit [Ping
timeout: 260 seconds]
08:03 -!- Boggy-B|1elium [~Boggy-B|H@93-96-78-46.zone4.bethere.co.uk] has left
#go-nuts []
08:05 -!- inletworm [~Boggy-B|H@93-96-78-46.zone4.bethere.co.uk] has joined
#go-nuts
08:05 -!- xa4a [~user@foresight.kiev.ua] has joined #go-nuts
08:06 -!- lux` [~lux`@151.95.184.172] has joined #go-nuts
08:07 < xa4a> hi.  i'm trying to install go on nokia n810
08:08 -!- rh275 [~rh275@raptor.ukc.ac.uk] has joined #go-nuts
08:09 < xa4a> my current error is when compiling sys.s: linux/arm/sys.s:156
syntax error, last name: R9
08:09 < xa4a> same for line 197
08:09 -!- rh275 [~rh275@raptor.ukc.ac.uk] has left #go-nuts []
08:09 -!- inletworm [~Boggy-B|H@93-96-78-46.zone4.bethere.co.uk] has left #go-nuts
[]
08:11 < xa4a> one with m_procid(m) and another with m_gsignal(m)
08:11 -!- kota1111 [~kota1111@gw2.kbmj.jp] has joined #go-nuts
08:11 < xa4a> any suggestions?
08:12 < meatmanek> I have no clue about the toolchains, but maybe your
assembler is a different version than go expects?
08:13 < xa4a> (i'm compiling on n810 itself)
08:16 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 265 seconds]
08:17 < meatmanek> that's my best guess; like I said, I have no clue really
08:17 < meatmanek> good luck though
08:28 -!- dju [dju@sd-13356.dedibox.fr] has joined #go-nuts
08:29 -!- rogue780 [~rogue780@c-68-34-234-213.hsd1.md.comcast.net] has quit [Ping
timeout: 245 seconds]
08:29 -!- GilJ [~gilles@212.87.99.235] has joined #go-nuts
08:31 -!- Kashia [~Kashia@port-92-200-37-101.dynamic.qsc.de] has quit [Quit: This
computer has gone to sleep]
08:31 -!- MacCoaster [~MacCoaste@amrutlar.com] has quit [Ping timeout: 245
seconds]
08:31 -!- path[l] [~path@122.182.0.38] has joined #go-nuts
08:32 -!- MacCoaster [~MacCoaste@amrutlar.com] has joined #go-nuts
08:40 -!- rogue780 [~rogue780@c-68-34-234-213.hsd1.md.comcast.net] has joined
#go-nuts
08:49 -!- tibshoot [~tibshoot@gw-puteaux.linagora.com] has joined #go-nuts
08:59 -!- Xeon_ [~chatzilla@222.73.189.44] has quit [Ping timeout: 265 seconds]
09:05 -!- xa4a [~user@foresight.kiev.ua] has quit [Ping timeout: 276 seconds]
09:08 -!- bert2 [IceChat7@cr-hafen-210-191.rz.uni-frankfurt.de] has joined
#go-nuts
09:09 -!- eiro [~marc@phear.org] has joined #go-nuts
09:09 < eiro> hello all
09:11 < eiro> is it possible to bind a go library with a dynamic langage or
a VM ? (perl or parrot)
09:12 < eiro> i searched on the website as well as google ...  but failed to
collect infos about it
09:12 < jessta> bind?
09:13 < jessta> you can to call go code from perl?
09:14 < eiro> jessta, no: i ask for
09:15 < eiro> that's what i would like to.  use go for fast parts and perl
for easy structure manips
09:15 < jessta> sorry, I mean, you want to call go code from perl?
09:15 < eiro> jessta, yep
09:16 < jessta> why would you want to write anything in perl when you can
write it in go instead?
09:17 < eiro> jessta, well :) because my works are for oneshot use and perl
is a very productive langages
09:17 < jessta> go is really productive too
09:18 < eiro> s/^\s+|\s+$/g for values %user << this is the kind of
code i can't expect easily from go
09:18 < eiro> jessta, no sorry: i don't want to explain
09:18 < eiro> jessta, just see me as stupid perl monger :)
09:19 < eiro> jessta, i just need to code very fast
09:20 < jessta> as yet, I don't think you can
09:20 < eiro> jessta, there is another reason: i would like to use perl5,
perl6 and haskell codes in soon.  go would be a perfect way to share some work
between those 3 technos
09:20 < eiro> oh ...  ok
09:21 < eiro> jessta, thank you for help
09:22 < eiro> (and try to troll ;) )
09:23 < jessta> eiro: I just don't like perl
09:23 < jessta> it's messy
09:23 < eiro> jessta, well ...  every dynamic langages are crappy!  perl is
just the best one
09:24 < eiro> in another way: writting C code for one shot scripts is not a
good option at all
09:24 -!- xa4a [~user@97-1-92-178.pool.ukrtel.net] has joined #go-nuts
09:25 < eiro> that's why i learn go and haskell: reduce my dependency from
dynamic langagse
09:29 -!- bert2 [IceChat7@cr-hafen-210-191.rz.uni-frankfurt.de] has quit [Ping
timeout: 246 seconds]
09:31 -!- path[l] [~path@122.182.0.38] has quit [Remote host closed the
connection]
09:31 -!- path[l] [~path@122.182.0.38] has joined #go-nuts
09:34 -!- xa4a [~user@97-1-92-178.pool.ukrtel.net] has quit [Ping timeout: 264
seconds]
09:45 -!- Ulti [~matt@kali.vm.bytemark.co.uk] has joined #go-nuts
09:52 < plexdev> http://is.gd/btDZr by [Kai Backman] in 3 subdirs of go/ --
support for printing floats:
09:52 < plexdev> http://is.gd/btDZw by [Kai Backman] in 2 subdirs of go/ --
synchronize ARM runner environment variable with run-arm
10:01 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Ping
timeout: 276 seconds]
10:04 -!- Ulti [~matt@kali.vm.bytemark.co.uk] has left #go-nuts []
10:05 -!- ikaros [~ikaros@g227026094.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
10:10 -!- HollyRain [~quassel@87.223.111.126] has joined #go-nuts
10:11 -!- HollyRain [~quassel@87.223.111.126] has left #go-nuts []
10:17 -!- xa4a [~user@ip.82.144.198.94.stat.volia.net] has joined #go-nuts
10:18 -!- xa4a [~user@ip.82.144.198.94.stat.volia.net] has left #go-nuts []
10:19 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
10:20 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has quit
[Read error: Connection reset by peer]
10:21 -!- xa4a [~xa4a@ip.82.144.198.94.stat.volia.net] has joined #go-nuts
10:23 -!- General13372 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 264 seconds]
10:26 < xa4a> yep.  go does compile on nokia n810
10:26 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
10:26 < xa4a> and hello world actually works
10:26 < kmeyer> Nice!
10:27 < kmeyer> Next step: my phone.
10:27 -!- rhino9 [~rhino9@92.46.7.178] has joined #go-nuts
10:33 -!- kssreeram [~kssreeram@122.165.6.245] has quit [Quit: kssreeram]
10:33 -!- rhino9 [~rhino9@92.46.7.178] has quit []
10:37 -!- bert2 [IceChat7@141.2.210.191] has joined #go-nuts
10:42 -!- idea_squirrel [~ct2rips@77-21-24-61-dynip.superkabel.de] has quit [Quit:
Verlassend]
10:55 -!- oal [~olav@5.79-160-122.customer.lyse.net] has joined #go-nuts
10:55 -!- Ikke [~ikkibr@189.58.217.186.dynamic.adsl.gvt.net.br] has joined
#go-nuts
10:55 -!- Ikke [~ikkibr@189.58.217.186.dynamic.adsl.gvt.net.br] has quit [Changing
host]
10:55 -!- Ikke [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
10:58 < Archwyrm> eiro: Why not run Go code as a separate process?
10:58 < Archwyrm> eiro: e.g.: $out = `goprocess`;
10:58 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has joined #go-nuts
10:58 -!- ponce [~ponce@paradisia.net] has quit [Ping timeout: 260 seconds]
10:58 < Archwyrm> eiro: You can do more complicated things with IPC as well.
11:02 < kmeyer> increases the rpc overhead, for example
11:03 < kmeyer> though if you're calling across into another language in a
tight loop you're probably doing something wrong anyways...
11:17 -!- ponce [~ponce@paradisia.net] has joined #go-nuts
11:22 < manveru> kikofx: http://github.com/timtadh/gobuild-fork
11:28 -!- fwiffo [~none@unaffiliated/fwiffo] has joined #go-nuts
11:30 -!- ponce [~ponce@paradisia.net] has left #go-nuts []
11:31 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has joined #go-nuts
11:36 < Zoopee> Not that I'm advocating a horrendous mix of Perl in Go or
anything, but for eiro's wish, couldn't cgo and/or gccgo go half the way, and then
SWIG from Perl the other half?
11:37 < kmeyer> yep
11:37 < kmeyer> probably
11:41 < Zoopee> (re Go*Perl, I wouldn't stay away from such a bastardization
myself, but I am very eager to a more user-level spec of the linker, and following
that better native support for linking Go and other native objects, e.g.  .o files
coming out of cc, as or whatever, together)
11:42 < Zoopee> s/wouldn't stay away/would stay away/
11:43 < Zoopee> i.e.  the best of both worlds, gc & gccgo made compatible.
11:44 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Quit: WeeChat
0.3.1.1]
11:46 < manveru> Zoopee: afaik people currently use unix socket with json
serialization for such things
11:47 < manveru> wonder whether http://golang.org/pkg/rpc/ might work too if
you implement the perl side
12:03 -!- bert2 [IceChat7@141.2.210.191] has quit [Ping timeout: 252 seconds]
12:07 < petrux> hi there
12:07 < petrux> newbie question
12:07 < petrux> has anyone tried to build Go on Cygwin?  Do you know of any
windows porting?
12:10 < uriel> petrux: http://go-lang.cat-v.org/os-ports
12:21 < petrux> uriel: thanks
12:23 < JBeshir> Zoopee: I'm not sure that that idea is compatible with
segmented stacks.
12:23 < JBeshir> (It could be, I don't know)
12:24 -!- g0bl1n [~anonymous@a89-152-233-34.cpe.netcabo.pt] has joined #go-nuts
12:25 < eiro> Archwyrm, well ...  because it will ruin the perfs
12:25 < eiro> Archwyrm, i prefer a complete perl solution in this case
12:26 < eiro> Zoopee, that's something like that i hoped
12:28 -!- ponce [~ponce@paradisia.net] has joined #go-nuts
12:35 -!- bert2 [IceChat7@141.2.210.191] has joined #go-nuts
12:36 -!- kota1111 [~kota1111@gw2.kbmj.jp] has quit [Quit: Leaving...]
13:02 -!- robot12 [~robot12@robot12.kgts.ru] has quit [Quit: Leaving.]
13:09 -!- yashi_ [~chatzilla@dns1.atmark-techno.com] has joined #go-nuts
13:11 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
13:13 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
13:15 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has quit [Quit: Leaving]
13:20 -!- ikaros [~ikaros@guests66.externals.de] has joined #go-nuts
13:21 -!- TMKCodes [~toni@87-95-0-88.bb.dnainternet.fi] has quit [Ping timeout:
248 seconds]
13:34 -!- TMKCodes [~toni@bbwirelessgw2-fee1dc00-62.dhcp.inet.fi] has joined
#go-nuts
13:34 -!- Ikke [~ikkibr@unaffiliated/ikkebr] has quit []
13:39 -!- Ikke [~ikkibr@189.58.217.186.dynamic.adsl.gvt.net.br] has joined
#go-nuts
13:39 -!- Ikke [~ikkibr@189.58.217.186.dynamic.adsl.gvt.net.br] has quit [Changing
host]
13:39 -!- Ikke [~ikkibr@unaffiliated/ikkebr] has joined #go-nuts
13:43 -!- cmarcelo [~cmarcelo@200.184.118.130] has joined #go-nuts
13:43 -!- cmarcelo [~cmarcelo@200.184.118.130] has quit [Changing host]
13:43 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has joined
#go-nuts
13:43 -!- khnakh [~bd7302d9@gateway/web/freenode/x-tiqtwkngbmhnwoea] has joined
#go-nuts
13:45 -!- g0bl1n [~anonymous@a89-152-233-34.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
13:45 -!- khnakh [~bd7302d9@gateway/web/freenode/x-tiqtwkngbmhnwoea] has left
#go-nuts []
13:45 -!- korboz [~bd7302d9@gateway/web/freenode/x-tiqtwkngbmhnwoea] has joined
#go-nuts
13:46 < korboz> i have a .8 object compiled with 8c and another with 8a
(asm) but 8l only accepts one file so i can't link 'em
13:46 < korboz> any way around that?
13:52 < korboz> ok, i figured i have to use gopack
13:54 -!- jeng [~jeng@75.110.231.66] has joined #go-nuts
13:59 -!- idea_squirrel [~ct2rips@77-21-24-61-dynip.superkabel.de] has joined
#go-nuts
14:00 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
633 seconds]
14:02 -!- kaigan|work
[~kaigan@c-8290e255.1411-10-64736c14.cust.bredbandsbolaget.se] has quit [Quit:
kaigan|work]
14:08 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
14:14 -!- g0bl1n [~anonymous@a89-152-233-34.cpe.netcabo.pt] has joined #go-nuts
14:15 -!- yaroslav [~yaroslav@109.170.106.65] has joined #go-nuts
14:18 -!- tvw [~tv@212.79.9.150] has joined #go-nuts
14:21 -!- cco3 [~conley@c-69-181-139-23.hsd1.ca.comcast.net] has joined #go-nuts
14:24 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Quit:
Leaving.]
14:26 -!- b00m_chef [~watr@d64-180-45-230.bchsia.telus.net] has joined #go-nuts
14:27 -!- awidegreen [~quassel@62.176.237.78] has joined #go-nuts
14:35 -!- terrex [~terrex@28.39.222.87.dynamic.jazztel.es] has joined #go-nuts
14:35 -!- g0bl1n [~anonymous@a89-152-233-34.cpe.netcabo.pt] has quit [Quit:
g0bl1n]
14:46 -!- bert2_ [IceChat7@141.2.210.191] has joined #go-nuts
14:47 < kimelto> morning!
14:48 -!- bert2 [IceChat7@141.2.210.191] has quit [Ping timeout: 252 seconds]
14:51 * uriel wonders if there is any way to make Joan shut up
14:56 -!- Wiz126 [Wiz126@72.20.221.212] has quit [Ping timeout: 276 seconds]
14:57 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Ping timeout: 276
seconds]
14:58 -!- traph [~traph@79-100-61-193.btc-net.bg] has quit [Ping timeout: 276
seconds]
14:58 -!- traph [~traph@79-100-61-193.btc-net.bg] has joined #go-nuts
15:01 < uriel> I'm the only one that has no clue what the fuck Joan is
talking about?
15:01 < JBeshir> I'm not sure they're from a planet where people talk about
coherent things
15:02 -!- rlab [~Miranda@11-78-113-92.pool.ukrtel.net] has quit [Read error:
Connection reset by peer]
15:03 < JBeshir> :P
15:04 < uriel> ok, thanks, I was starting to fear I had gone mad
15:05 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
15:06 -!- terrex [~terrex@28.39.222.87.dynamic.jazztel.es] has quit [Quit:
Leaving.]
15:11 < dho_plan9> Joan English maybe need learn better a little.
15:14 < exch> pff.  Finally figured out why my MPD idle functionality didn't
work.  Turns out that having a simple poling connection for incoming event
notifications isn't enough..  Once you receive the first event it just stops
receiving anything at all.
15:14 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
15:14 < exch> You have to explicitely disable 'idle mode' and re-enable it
to get a new event
15:14 < exch> everytime you received an event
15:15 -!- addos [~98340003@gateway/web/freenode/x-nuldjvuduvpthkjx] has joined
#go-nuts
15:15 < kmeyer> uriel: Joan could stand to more firmly understand English,
and perhaps have a more try-it-yourself approach to answer-seeking
15:15 < addos> Are there any tarballs of the go source?
15:16 < exch> Good thing the MPD docs are so well written -.-
15:16 < kmeyer> and even then, I'm not sure his/her postings would be
differentiable from that of some meth addict
15:19 -!- path[l] [~path@122.182.0.38] has quit [Quit: path[l]]
15:22 < addos> are there any sites providing nightly tarballs of go source?
15:22 < dho_plan9> Not as far as I know
15:22 < addos> damn
15:23 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has joined #go-nuts
15:24 -!- bert2_ [IceChat7@141.2.210.191] has quit [Ping timeout: 252 seconds]
15:25 < uriel> addos: can't run mercurial?
15:26 < addos> I guess I'd just prefer not to
15:26 < uriel> why not?
15:27 < uriel> there is a git mirror somewhere, but IMHO it is rather
pointless and stupid to use it when hg works just fine
15:27 < addos> Not a big fan of installing python, just so I can install
mercurial, just so I can get the source, and then compile, all just to get to use
go
15:27 < addos> I have no intention of using python or mercurial for anything
more than just getting the source and compiling
15:28 < addos> if only http://golang.org/src/ didn't add html to the source,
I could just pull it down
15:29 < manveru> hehe
15:29 < manveru> you're probably one of those guys who actually likes the
way debian splits stuff
15:29 < kimelto> hehe
15:30 < chressie> addos:
http://github.com/tav/go/archives/1b40d24abdbc39e13a03f44c3acd4ad60dfa7c05
15:30 < addos> sweet, thanks!
15:31 < manveru> addos: http://github.com/tav/go/tarball/master
15:31 < manveru> oh :)
15:31 < addos> easier t oremember
15:31 < addos> easier to remember
15:31 < chressie> yes, probably :)
15:31 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
15:33 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
15:42 -!- Venom_X [~pjacobs@71.20.102.220] has joined #go-nuts
15:49 -!- rlab [~Miranda@91.200.158.34] has joined #go-nuts
15:49 -!- nanoo [~nano@95-89-197-196-dynip.superkabel.de] has quit [Quit: Leaving]
15:50 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
15:59 -!- yaroslav [~yaroslav@109.170.106.65] has quit [Quit: yaroslav]
16:00 -!- yaroslav [~yaroslav@109.170.106.65] has joined #go-nuts
16:03 -!- korboz [~bd7302d9@gateway/web/freenode/x-tiqtwkngbmhnwoea] has quit
[Quit: Page closed]
16:04 -!- ikaros [~ikaros@guests66.externals.de] has quit [Remote host closed the
connection]
16:07 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
16:17 -!- petrux [~petrux@host16-224-static.53-82-b.business.telecomitalia.it] has
quit [Quit: leaving]
16:21 -!- yaroslav [~yaroslav@109.170.106.65] has quit [Quit: yaroslav]
16:22 -!- ikaros [~ikaros@guests66.externals.de] has joined #go-nuts
16:31 -!- ikaros [~ikaros@guests66.externals.de] has quit [Quit: Leave the magic
to Houdini]
16:35 -!- Svarthandske [~nn@dsl-tkubrasgw1-fe3cdc00-28.dhcp.inet.fi] has joined
#go-nuts
16:46 -!- Gracenotes [~person@wikipedia/Gracenotes] has quit [Ping timeout: 260
seconds]
16:49 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
16:53 -!- ikaros [~ikaros@g228092143.adsl.alicedsl.de] has joined #go-nuts
16:54 < uriel> http://news.ycombinator.com/item?id=1263394
16:56 < plexdev> http://is.gd/bubra by [Andrei Vieru] in 2 subdirs of
go/src/ -- "godoc -src pkg_name" excludes duplicates entries
16:56 -!- Fish [~Fish@78.251.204.78] has joined #go-nuts
16:57 -!- ikaros [~ikaros@g228092143.adsl.alicedsl.de] has quit [Client Quit]
17:02 -!- ikaros [~ikaros@f051239120.adsl.alicedsl.de] has joined #go-nuts
17:04 -!- carllerche [~carllerch@99.13.242.166] has joined #go-nuts
17:04 -!- no_mind [~orion@122.161.214.238] has joined #go-nuts
17:09 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
17:13 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:ed0a:211:b2a4:6a84] has quit
[Ping timeout: 276 seconds]
17:15 -!- Gracenotes [~person@wikipedia/Gracenotes] has joined #go-nuts
17:16 -!- tvw [~tv@212.79.9.150] has quit [Remote host closed the connection]
17:17 -!- Project_2501 [~Marvin@82.84.91.170] has joined #go-nuts
17:20 < addos> how do I convert a []byte into a string?
17:21 -!- krelian [~chatzilla@201.250.92.210] has joined #go-nuts
17:22 < manveru> addos: string(yourbytes)
17:22 < addos> thanks
17:24 -!- path[l] [UPP@120.138.102.34] has joined #go-nuts
17:25 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:6da5:f497:60e1:a5c] has joined
#go-nuts
17:27 < manveru> addos: http://golang.org/doc/go_spec.html#Conversions
17:29 < JBeshir> Oh god.
17:29 < JBeshir> Rob Pike kills me.
17:30 < JBeshir> That's hilarious.
17:31 -!- marsu [~marsu@117.113.202-77.rev.gaoland.net] has joined #go-nuts
17:34 < manveru> JBeshir: ?
17:35 < JBeshir> manveru: His reply on the mailing list to the "POSIX
standard" thread.
17:35 -!- fwiffo_ [~none@189.115.7.99] has joined #go-nuts
17:37 -!- fwiffo [~none@unaffiliated/fwiffo] has quit [Ping timeout: 258 seconds]
17:38 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Read error: Connection
reset by peer]
17:40 < no_mind> I liked Rob's answer on Posix standards thread
17:40 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 265 seconds]
17:54 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by
services]
17:55 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
17:55 -!- robot12 [~robot12@inferno.kgts.ru] has joined #go-nuts
17:59 -!- bert2_ [~IceChat7@p4FDCBFFE.dip.t-dialin.net] has joined #go-nuts
18:07 -!- awidegreen [~quassel@62.176.237.78] has quit [Quit: No Ping reply in 180
seconds.]
18:07 -!- awidegreen [~quassel@62.176.237.78] has joined #go-nuts
18:08 -!- idea_squirrel [~ct2rips@77-21-24-61-dynip.superkabel.de] has quit [Quit:
Verlassend]
18:11 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has joined
#go-nuts
18:11 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has quit [Ping
timeout: 276 seconds]
18:15 -!- carllerche [~carllerch@99.13.242.166] has quit [Quit: carllerche]
18:21 -!- carllerche [~carllerch@208.87.61.146] has joined #go-nuts
18:28 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
18:35 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has joined #go-nuts
18:37 -!- scm [justme@c137062.adsl.hansenet.de] has quit [Ping timeout: 260
seconds]
18:38 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Ping
timeout: 252 seconds]
18:39 -!- scm [justme@c137181.adsl.hansenet.de] has joined #go-nuts
18:40 -!- robot12 [~robot12@inferno.kgts.ru] has quit [Quit: Ухожу я от вас (xchat
2.4.5 или старше)]
18:40 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
18:46 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has joined #go-nuts
18:52 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Quit: Leaving.]
18:52 -!- terrex [~terrex@28.39.222.87.dynamic.jazztel.es] has joined #go-nuts
18:55 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
18:58 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has quit [Ping
timeout: 240 seconds]
19:03 -!- [Pete_27] [~noname@115-64-1-61.static.tpgi.com.au] has quit [Ping
timeout: 260 seconds]
19:04 -!- Eridius [~kevin@unaffiliated/eridius] has joined #go-nuts
19:05 -!- travlr [~palexande@c-69-254-44-10.hsd1.fl.comcast.net] has quit [Ping
timeout: 265 seconds]
19:07 -!- fwiffo_ [~none@189.115.7.99] has quit [Quit: Lost terminal]
19:14 -!- travlr [~palexande@c-69-254-44-10.hsd1.fl.comcast.net] has joined
#go-nuts
19:16 -!- crashR [~crasher@codextreme.pck.nerim.net] has joined #go-nuts
19:29 -!- Fish [~Fish@78.251.204.78] has quit [Ping timeout: 265 seconds]
19:35 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has joined #go-nuts
19:37 -!- Fish [~Fish@78.251.204.78] has joined #go-nuts
19:37 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
19:40 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has quit [Ping
timeout: 260 seconds]
19:48 -!- r1ito [~r1ito@pha75-21-78-228-187-206.fbx.proxad.net] has joined
#go-nuts
19:49 -!- SecretofMana [~mana@142.46.164.30] has joined #go-nuts
19:59 -!- ikaros [~ikaros@f051239120.adsl.alicedsl.de] has quit [Ping timeout: 258
seconds]
19:59 -!- ikaros [~ikaros@f051056019.adsl.alicedsl.de] has joined #go-nuts
20:04 -!- millertimek1a2m3 [~adam@rrcs-67-79-54-130.sw.biz.rr.com] has quit [Ping
timeout: 265 seconds]
20:07 -!- Venom_X_ [~pjacobs@71.20.102.220] has joined #go-nuts
20:08 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Ping timeout: 264 seconds]
20:10 -!- oal [~olav@5.79-160-122.customer.lyse.net] has quit [Remote host closed
the connection]
20:24 -!- Project_2501 [~Marvin@82.84.91.170] has quit [Quit: E se abbasso questa
leva che succ...]
20:25 -!- jA_cOp_ [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
20:28 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Ping timeout:
240 seconds]
20:30 -!- Kashia [~Kashia@port-92-200-37-101.dynamic.qsc.de] has joined #go-nuts
20:33 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:6da5:f497:60e1:a5c] has quit
[Quit: Leaving.]
20:39 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has joined #go-nuts
20:40 -!- bert2_ [~IceChat7@p4FDCBFFE.dip.t-dialin.net] has quit [Ping timeout:
252 seconds]
20:43 -!- rinzai [~rinzai@86.138.155.30] has joined #go-nuts
20:45 -!- addos [~98340003@gateway/web/freenode/x-nuldjvuduvpthkjx] has quit [Ping
timeout: 248 seconds]
20:46 -!- tav [~tav@78.145.24.32] has quit [Ping timeout: 260 seconds]
20:52 -!- tav [~tav@92.28.228.226] has joined #go-nuts
20:52 -!- Fish [~Fish@78.251.204.78] has quit [Remote host closed the connection]
20:59 -!- TR2N [email@89-180-239-38.net.novis.pt] has joined #go-nuts
21:01 -!- jeng [~jeng@75.110.231.66] has quit [Quit: ChatZilla 0.9.86 [Firefox
3.6.3/20100401080539]]
21:02 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Quit: Leaving...]
21:08 -!- ryan_baker [~ryan_bake@128-193-141-85.public.oregonstate.edu] has joined
#go-nuts
21:14 -!- jA_cOp_ [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
21:21 -!- r1ito [~r1ito@pha75-21-78-228-187-206.fbx.proxad.net] has quit [Ping
timeout: 276 seconds]
21:22 -!- Venom_X_ [~pjacobs@71.20.102.220] has joined #go-nuts
21:25 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Ping timeout: 240 seconds]
21:39 -!- Ikke [~ikkibr@unaffiliated/ikkebr] has quit []
21:39 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
21:39 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Read error: Connection reset by peer]
21:39 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
21:41 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
21:41 -!- meanburrito920 [~john@unaffiliated/meanburrito920] has quit [Quit: Lost
terminal]
21:42 -!- jessta [~jessta@li7-205.members.linode.com] has quit [Read error:
Operation timed out]
21:43 -!- aho [~nya@g227083079.adsl.alicedsl.de] has joined #go-nuts
21:43 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has quit [Ping timeout: 265
seconds]
21:43 -!- Ycros [~ycros@gnaw.yi.org] has quit [Read error: Connection reset by
peer]
21:44 -!- kuroneko [~chris@yayoi.xware.cx] has quit [Ping timeout: 240 seconds]
21:44 -!- Ycros [~ycros@gnaw.yi.org] has joined #go-nuts
21:44 -!- rlab [~Miranda@91.200.158.34] has quit [Quit: Miranda IM! Smaller,
Faster, Easier.  http://miranda-im.org]
21:45 -!- jessta [~jessta@li7-205.members.linode.com] has joined #go-nuts
21:45 -!- kuroneko [~chris@yayoi.xware.cx] has joined #go-nuts
21:48 -!- ivan` [~ivan@unaffiliated/ivan/x-000001] has joined #go-nuts
21:53 -!- GilJ [~gilles@212.87.99.235] has quit [Remote host closed the
connection]
21:56 -!- terrex [~terrex@28.39.222.87.dynamic.jazztel.es] has quit [Quit:
Leaving.]
22:00 -!- ShadowIce [~pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
22:02 -!- ryan_baker [~ryan_bake@128-193-141-85.public.oregonstate.edu] has quit
[Quit: ryan_baker]
22:07 -!- Discoloda [~vincent@76.231.56.49] has quit [Read error: Connection reset
by peer]
22:09 -!- Discoloda [~vincent@adsl-76-231-56-49.dsl.frs2ca.sbcglobal.net] has
joined #go-nuts
22:10 -!- lux` [~lux`@151.95.184.172] has quit [Read error: Connection reset by
peer]
22:18 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
22:22 -!- General13372 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
22:24 -!- awidegreen [~quassel@62.176.237.78] has quit [Read error: Connection
reset by peer]
22:26 -!- General1337 [~support@71-93-97-216.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 252 seconds]
22:27 -!- Wiz126 [~Wiz126@12.197.31.2] has joined #go-nuts
22:30 < plexdev> http://is.gd/buzZW by [Russ Cox] in go/src/pkg/flag/ --
flag: eliminate unnecessary structs
22:32 < uriel> damn, I hope the northern hemisphere sky is USB-compliant!
22:50 -!- Sorcy [~ycros@gnaw.yi.org] has joined #go-nuts
22:50 -!- kuroneko [~chris@yayoi.xware.cx] has quit [Ping timeout: 246 seconds]
22:50 -!- bjarneh [~bjarneh@1x-193-157-201-57.uio.no] has joined #go-nuts
22:51 -!- Ycros [~ycros@gnaw.yi.org] has quit [Ping timeout: 260 seconds]
22:51 -!- kuroneko [~chris@yayoi.xware.cx] has joined #go-nuts
22:52 -!- carllerche [~carllerch@208.87.61.146] has quit [Quit: carllerche]
22:57 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has joined #go-nuts
22:57 -!- mode/#go-nuts [+v iant] by ChanServ
23:06 -!- jdp [~gu@75.97.120.11.res-cmts.senj.ptd.net] has quit []
23:11 -!- bawr [~bawr@unaffiliated/mrfawkes] has quit [Ping timeout: 248 seconds]
23:16 < rinzai> the southern is not, apparently
23:18 -!- rogue780 [~rogue780@c-68-34-234-213.hsd1.md.comcast.net] has quit
[Remote host closed the connection]
23:18 < uriel> that is why I was asking..
23:18 < exch> hmm.  isn't ioutil.WriteFile() supposed to create the file if
it doesn't already exist instead of throwing an 'file does not exist' error?
23:20 < rinzai> exch, AFAIK, yes
23:20 < exch> perhaps it's having issues with a '~/abc' path and needs the ~
to be expanded
23:20 * exch tries
23:20 < uriel> I doubt it expands ~
23:20 -!- Svarthandske [~nn@dsl-tkubrasgw1-fe3cdc00-28.dhcp.inet.fi] has quit
[Quit: Svarthandske]
23:20 < uriel> the shell does that
23:21 -!- drry [~drry@unaffiliated/drry] has quit [Read error: Connection reset by
peer]
23:21 -!- wuehlmaus [~wuehlmaus@p4FCC7ECC.dip.t-dialin.net] has quit [Ping
timeout: 276 seconds]
23:21 -!- drry [~drry@unaffiliated/drry] has joined #go-nuts
23:21 -!- brian [~brian@66-90-153-85.dyn.grandenetworks.net] has quit [Remote host
closed the connection]
23:22 < exch> yup that was the issue
23:22 < exch> I had a '~...' path in a json config file, which obivously
doesn't get expanded
23:22 < rinzai> exch, or probably you found one of those not-POSIX compliant
problems...  :-P
23:23 < uriel> haha
23:27 < rinzai> cya everyone
23:27 -!- rinzai [~rinzai@86.138.155.30] has quit [Quit: Leaving]
23:29 -!- marsu [~marsu@117.113.202-77.rev.gaoland.net] has quit [Quit: Leaving]
23:36 -!- ikaros [~ikaros@f051056019.adsl.alicedsl.de] has quit [Quit: Leave the
magic to Houdini]
23:50 -!- cmarcelo [~cmarcelo@enlightenment/developer/cmarcelo] has quit [Quit:
leaving]
--- Log closed Fri Apr 16 00:00:47 2010