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

--- Log opened Fri Jul 16 00:00:12 2010
00:00 -!- mxweas [~max@c-98-225-102-170.hsd1.az.comcast.net] has quit [Quit: Mac
has gone to sleep]
00:02 -!- mxweas [~max@c-98-225-102-170.hsd1.az.comcast.net] has joined #go-nuts
00:04 -!- photron [~photron@port-92-201-19-68.dynamic.qsc.de] has quit [Ping
timeout: 265 seconds]
00:13 -!- carllerche [~carllerch@208.87.61.203] has quit [Quit: carllerche]
00:35 -!- kanru [~kanru@118-160-163-155.dynamic.hinet.net] has quit [Ping timeout:
258 seconds]
00:35 -!- ukai [~ukai@220.109.219.244] has joined #go-nuts
00:35 -!- GeoBSD [~geobsd@lns-bzn-21-82-64-67-122.adsl.proxad.net] has quit [Quit:
Lost terminal]
00:39 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
00:56 -!- MattCampbell [~matt@ip68-102-47-79.ks.ok.cox.net] has quit [Quit: ircII
EPIC4-2.10 -- Are we there yet?]
00:59 -!- Gekz [~Gekz@2406:9800:1999:1:224:2bff:fe70:5276] has joined #go-nuts
01:00 -!- Gekz [~Gekz@2406:9800:1999:1:224:2bff:fe70:5276] has quit [Changing
host]
01:00 -!- Gekz [~Gekz@unaffiliated/gekz] has joined #go-nuts
01:00 < Gekz> so in place of classes, you simply apply a function to a
structure?
01:01 -!- emmanueloga [~emmanuelo@190.247.41.202] has quit [Read error: Operation
timed out]
01:03 < Ginto8> somewhat
01:03 < Ginto8> "classes" are sets of data and methods
01:03 < Ginto8> go's "types" are simply data
01:03 < Ginto8> but you can attach methods to them if you'd like
01:05 < Gekz> yeah
01:05 < Gekz> it's quite different to what I'm used to, in a good way
01:05 < Ginto8> yep
01:05 < Ginto8> it's more like C than C++ or any other OO languages
01:05 < Ginto8> which I think is a major advantage
01:05 < Gekz> yeah I noticed
01:06 < Gekz> ObjC was the closest thing to a "good" evolution of C
01:06 < Ginto8> but it also has a lot of the good properties of a scripting
language
01:06 < Gekz> but Go seems to have basically nailed it
01:06 < Gekz> yes.
01:06 < Ginto8> C++ is sorta C's bastard child
01:06 < Gekz> although the use of different names for different
architecture's compilers and linkers may become an issue
01:07 < Ginto8> it was a good idea, but it ended up not being half of what
it shoulda been
01:07 < Ginto8> Gekz, not really, especially because of the awesome makefile
system
01:07 < Gekz> oh ok.
01:07 < Gekz> I havent done anything with the Makefile system yet
01:07 < Gekz> nor really had a chance to write anything in Go
01:07 < Ginto8> it's really easy
01:08 < Gekz> I primarilly write code in Python or Java right now
01:08 < Ginto8> include $(GOROOT)/src/Make.$(GOARCH)
01:08 < Ginto8> TARG=packageName
01:08 < Ginto8> GOFILES=sourceFiles
01:08 < Ginto8> include $(GOROOT)/src/Make.pkg
01:08 < Ginto8> that's all you need for a normal project
01:08 < Gekz> nice
01:08 < Ginto8> if you use cgo there's some other stuff too
01:09 < Ginto8> just 2 more vars tho
01:09 < Gekz> is there an xml element tree module for Go yet?
01:09 < Gekz> or SAX
01:09 < Ginto8> hm idk
01:09 < Ginto8> there might be a 3rd party one
01:10 < Ginto8> but I don't think it'll make it into the standard package
lib
01:10 < Gekz> I just checked and didn't see one
01:10 < Ginto8> hm
01:10 < Ginto8> lemme check
01:13 < exch> Gekz: what exactly is it you need?  I've written a package a
while ago that maintains a node tree of an xml document which you can search
through in various ways.  Not sure if this is what you want though.
http://github.com/jteeuwen/go-pkg-xmlx
01:14 < Gekz> exch: basically that.
01:14 < Gekz> :)
01:14 -!- ukai [~ukai@220.109.219.244] has quit [Ping timeout: 276 seconds]
01:16 -!- Ginto8 [~ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has quit
[Ping timeout: 245 seconds]
01:17 -!- ukai [~ukai@220.109.219.244] has joined #go-nuts
01:18 -!- Ginto8 [~ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has joined
#go-nuts
01:18 < exch> It's pretty simplistic, but it shouldn't be too difficult to
extend it with your own needs if necessary
01:18 -!- emmanueloga [~emmanuelo@190.247.41.202] has joined #go-nuts
01:19 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
01:21 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
01:22 < Gekz> exch: I type make and it complains
01:22 < Gekz> haha
01:22 < Gekz> document.go:107: cannot convert tt (type xml.CharData) to type
string
01:22 < Gekz> continues a few more lines
01:23 < exch> mm seems I haven't updated the repo with the changes in to go
api
01:23 < exch> lemme check
01:24 < Gekz> well I'm going to get lunch, be back in 40 minutes
01:24 < exch> One of the disavantages of having go change/progress so fast
:p
01:24 < Ginto8> Gekz, the strength of go's typing requires an explicit cast
01:25 < exch> hmm.  it compiles fine here with the latest build of Go. Are
you up to date?
01:25 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has joined
#go-nuts
01:26 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
01:27 -!- lmoura_ [~lmoura@187.78.165.78] has quit [Ping timeout: 245 seconds]
01:27 < exch> '$ hg pull -u' in your $GOROOT dir should get you all the new
stuff
01:41 < Gekz> so my lunch was shorter than expected
01:41 < Gekz> haha
01:42 < exch> as long as it was tasty :p
01:42 < Gekz> exch: I installed it two days ago
01:42 < Gekz> recompiling
02:14 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 252
seconds]
02:17 -!- niemeyer [~niemeyer@201-11-213-235.pltce701.dsl.brasiltelecom.net.br]
has quit [Ping timeout: 245 seconds]
02:19 -!- lmoura_ [~lmoura@187.78.165.78] has joined #go-nuts
02:33 -!- lmoura_ [~lmoura@187.78.165.78] has quit [Ping timeout: 240 seconds]
02:36 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
02:38 -!- Soultaker [~maks@hell.student.utwente.nl] has quit [Read error:
Connection reset by peer]
02:39 -!- Soultaker [~maks@hell.student.utwente.nl] has joined #go-nuts
02:45 -!- MizardX [~MizardX@unaffiliated/mizardx] has quit [Ping timeout: 260
seconds]
02:45 -!- mikespook [~mikespook@219.137.74.44] has joined #go-nuts
02:48 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 260
seconds]
02:52 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
02:56 -!- aho [~nya@fuld-4d00d565.pool.mediaWays.net] has joined #go-nuts
03:00 -!- rejb [~rejb@unaffiliated/rejb] has quit [Ping timeout: 276 seconds]
03:21 < plexdev> http://is.gd/dtKRk by [Ken Thompson] in 2 subdirs of
go/src/cmd/ -- interpret lines that look like
03:38 -!- scm [justme@d038067.adsl.hansenet.de] has quit [Ping timeout: 258
seconds]
03:41 -!- scm [justme@d038001.adsl.hansenet.de] has joined #go-nuts
03:52 < araujo> :)
03:52 < exch> Gekz: Is it working?
03:53 < Gekz> busy
03:53 < Gekz> working
03:53 < Gekz> lol
03:53 < exch> fair enough :)
04:06 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has quit [Ping
timeout: 258 seconds]
04:24 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 245
seconds]
04:25 -!- temoto [~temoto@81.19.90.136] has quit [Ping timeout: 276 seconds]
04:28 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
04:30 -!- Ginto8 [~ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has quit
[Quit: Leaving]
04:31 -!- Ginto8 [~joe@pool-72-82-235-34.cmdnnj.fios.verizon.net] has joined
#go-nuts
04:38 -!- temoto [~temoto@81.19.90.136] has joined #go-nuts
04:47 -!- path[l] [UPP@120.138.102.50] has joined #go-nuts
04:52 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
04:59 -!- scm [justme@d038001.adsl.hansenet.de] has quit [Ping timeout: 245
seconds]
05:01 -!- scm [justme@d070098.adsl.hansenet.de] has joined #go-nuts
05:01 -!- napsy [~luka@212.235.174.112] has joined #go-nuts
05:08 -!- jhawk28 [~jhawk28@72.40.31.201] has joined #go-nuts
05:09 -!- jhawk28_ [~jhawk28@72.40.31.201] has joined #go-nuts
05:09 -!- jhawk28 [~jhawk28@72.40.31.201] has quit [Read error: Connection reset
by peer]
05:21 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
05:29 -!- carrus85 [~carrus85@216.83.145.38] has joined #go-nuts
05:36 -!- Project_2501 [~Marvin@82.84.92.36] has joined #go-nuts
05:41 * MaybeSo sees http://is.gd/dtKRk by [Ken Thompson] and thinks "that is just
so cool..."
05:43 -!- jhawk28_ [~jhawk28@72.40.31.201] has quit [Remote host closed the
connection]
05:51 -!- belkiss [~belkiss@drn13-1-78-235-168-105.fbx.proxad.net] has joined
#go-nuts
06:01 -!- carrus85 [~carrus85@216.83.145.38] has quit [Quit: Leaving]
06:07 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
06:11 -!- napsy_ [~napsy@193.2.66.101] has joined #go-nuts
06:11 < Ginto8> MaybeSo: I don't get it
06:11 < Ginto8> what's it do?
06:14 -!- tvw [~tv@e176006024.adsl.alicedsl.de] has joined #go-nuts
06:30 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 276
seconds]
06:31 -!- nsf [~nsf@jiss.convex.ru] has quit [Quit: WeeChat 0.3.2]
06:34 -!- ExtraSpice [~ExtraSpic@88.118.32.225] has joined #go-nuts
06:36 -!- belkiss [~belkiss@drn13-1-78-235-168-105.fbx.proxad.net] has quit [Quit:
KVIrc Equilibrium 4.1.0, revision: 4632, sources date: 20100519, built on:
2010-07-09 07:13:47 UTC http://www.kvirc.net/]
06:36 -!- mikespook [~mikespook@219.137.74.44] has quit [Quit: Leaving.]
06:37 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has joined #go-nuts
06:41 -!- mikespook [~mikespook@219.137.74.44] has joined #go-nuts
06:47 -!- iant [~iant@62-20-124-50.customer.telia.com] has joined #go-nuts
06:47 -!- mode/#go-nuts [+v iant] by ChanServ
06:49 -!- ako [~nya@fuld-4d00d161.pool.mediaWays.net] has joined #go-nuts
06:53 -!- aho [~nya@fuld-4d00d565.pool.mediaWays.net] has quit [Ping timeout: 240
seconds]
06:54 -!- boscop [~boscop@g225201127.adsl.alicedsl.de] has quit [Ping timeout: 258
seconds]
06:55 -!- boscop [~boscop@f055154041.adsl.alicedsl.de] has joined #go-nuts
06:59 < MaybeSo> Ginto8: I was just making a comment that it was cool to see
Ken Thompson committing code live...
06:59 < Ginto8> oh
06:59 < Ginto8> ok
07:00 < Ginto8> cuz I had no clue what that code was supposed to do
07:00 < Ginto8> (just lookin at the description)
07:00 -!- napsy [~luka@212.235.174.112] has quit [Ping timeout: 260 seconds]
07:01 -!- Gekz [~Gekz@unaffiliated/gekz] has quit [Quit: This computer has gone to
sleep]
07:01 < MaybeSo> looks like maybe it's the parser
07:01 < Ginto8> hm
07:02 -!- Gekz [~Gekz@gw-ch.dtprop.com] has joined #go-nuts
07:03 < MaybeSo> geeez, the regex package is painful to use
07:04 < MaybeSo> program run time for parsing 20,000 elements from an xml
document and running a few simple regex on the data took the run time from 0.5
seconds to 2.6 seconds
07:04 < MaybeSo> hand crafted (though less robust) code for the same logic:
0.5 seconds to 0.65 seconds
07:05 < Ginto8> well they did say that the regexp is really only a stopgap
at the moment
07:05 < MaybeSo> yeah
07:05 < MaybeSo> I wish I had enough experience to write a replacement as a
contribution
07:05 < Ginto8> yeah
07:06 -!- sioraiocht [~tomh@unaffiliated/sioraiocht] has joined #go-nuts
07:06 < MaybeSo> I'm half expecting some nutcase to try and contribute a cgo
library for perl.  :D
07:07 < KirkMcDonald> I want to write one for Python, but it is impossible
without callbacks,
07:07 < MaybeSo> ayieee!  :)
07:08 < Ginto8> lol most of that stuff will require a full rewrite in go
07:08 < Ginto8> which would be a bitch
07:09 < jessta> MaybeSo: I think the plan is to port
http://code.google.com/p/re2/
07:10 -!- tvw [~tv@e176006024.adsl.alicedsl.de] has quit [Read error: Connection
reset by peer]
07:10 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
07:11 -!- ikaros [~ikaros@drms-4d01460f.pool.mediaWays.net] has joined #go-nuts
07:11 -!- path[l] [UPP@120.138.102.50] has quit [Quit: path[l]]
07:11 < MaybeSo> cool
07:12 -!- TR2N [email@89-180-146-175.net.novis.pt] has left #go-nuts []
07:15 -!- scm [justme@d070098.adsl.hansenet.de] has quit [Ping timeout: 240
seconds]
07:24 -!- ikaros [~ikaros@drms-4d01460f.pool.mediaWays.net] has quit [Quit: Leave
the magic to Houdini]
07:32 -!- sioraiocht [~tomh@unaffiliated/sioraiocht] has quit [Remote host closed
the connection]
07:33 -!- path[l] [~path@59.162.86.164] has joined #go-nuts
07:35 -!- Gekz [~Gekz@gw-ch.dtprop.com] has quit [Quit: This computer has gone to
sleep]
07:38 < jnwhiteh> If I have an open CL, and I want to add a file to that
CL..  anyone have a clue how I'd do that?
07:39 < jnwhiteh> nvm
07:39 < Ginto8> my knowledge of acronyms is limited...  what do you mean by
CL?
07:39 -!- scm [justme@d070098.adsl.hansenet.de] has joined #go-nuts
07:40 < jnwhiteh> I have no idea what it stands for..  but a propose change
to the core, i.e.  on codereview
07:42 < Ginto8> oh ok
07:44 < jnwhiteh> come to think of it, what *does* CL stand for?  =)
07:44 < napsy_> common lisp
07:44 < Ginto8> code lingo?  citric lemon?
07:44 < jessta> change list
07:44 < Ginto8> ah that sounds right jessta
07:51 -!- duraffourg [~duraffour@157.159.46.13] has joined #go-nuts
07:52 -!- nsf [~nsf@jiss.convex.ru] has joined #go-nuts
07:55 -!- Fish-Work [~Fish@86.65.182.207] has quit [Remote host closed the
connection]
07:55 -!- Fish-Work [~Fish@86.65.182.207] has joined #go-nuts
07:56 -!- mikespook1 [~mikespook@219.137.49.89] has joined #go-nuts
07:57 -!- mikespook1 [~mikespook@219.137.49.89] has quit [Client Quit]
07:57 -!- mikespook [~mikespook@219.137.74.44] has quit [Ping timeout: 245
seconds]
07:58 -!- mikespook [~mikespook@219.137.49.89] has joined #go-nuts
07:59 -!- sauerbraten [~sauerbrat@p508CFBDD.dip.t-dialin.net] has joined #go-nuts
08:18 -!- slashus2 [~slashus2@254.208.118.66.brainstorminternet.net] has joined
#go-nuts
08:19 -!- tvw [~tv@212.79.9.150] has joined #go-nuts
08:37 -!- wrtp [~rog@92.17.8.68] has quit [Ping timeout: 240 seconds]
08:37 < sauerbraten> how do i link to files at once?  i tried "8l -o gots
main.go gots.go" but that didn't work :/
08:37 < Ginto8> sauerbraten: just use a makefile
08:38 < exch> sauerbraten: 8l is the linker.  it doesnt take .go files
08:38 < exch> try 8g
08:38 < Ginto8> oh yeah
08:38 < Ginto8> 8l takes .8's
08:38 < Ginto8> generated by 8g
08:39 < sauerbraten> i am using this one:
http://paste.pocoo.org/show/238234/
08:39 < sauerbraten> Ginto8: yeah of course .8, i typed it wrong
08:40 < Ginto8> well I find that all the messy linker stuff is much easier
using go's makefiles (by easier, I mean not having to deal with it)
08:40 < jessta> sauerbraten: I think the linker only takes one file at a
file
08:40 < jessta> *at a time
08:43 -!- rejb [~rejb@unaffiliated/rejb] has joined #go-nuts
08:44 < exch> there's that
08:45 -!- soc [~soc@193.196.7.169] has joined #go-nuts
08:49 < sauerbraten> ko
08:49 -!- soc [~soc@193.196.7.169] has quit [Read error: Connection reset by peer]
08:49 < sauerbraten> ok
08:49 -!- soc [~soc@193.196.7.169] has joined #go-nuts
08:49 -!- wrtp [~rog@92.17.74.66] has joined #go-nuts
08:51 -!- rejb [~rejb@unaffiliated/rejb] has quit [Ping timeout: 276 seconds]
09:00 -!- rejb [~rejb@unaffiliated/rejb] has joined #go-nuts
09:07 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:940:7bae:d321:e78d] has joined
#go-nuts
09:11 < sauerbraten> what's the best website to share Go packages?  like
github and bitbucket and so on?
09:12 < temoto> sauerbraten, i heard golang.org is pretty popular these
days.
09:14 < sauerbraten> temoto: yeah but you can't upload your own apps i mean
09:15 < sauerbraten> http://godashboard.appspot.com/package seems like most
use github....
09:15 < sauerbraten> or googlecode
09:16 < temoto> sauerbraten, godashboard IS the website to share Go
packages.  github, googlecode and bitbucket are code repository, collaboration
tools.
09:16 < sauerbraten> temoto: ok than i mean collaboration tools / code repos
-.-
09:17 < temoto> sauerbraten, Go puts no restrictions on those, it's your
choice.
09:17 < sauerbraten> temoto: i know that's why i ask which one is the best
;)
09:17 < chressie> sauerbraten: take what you want to, but the code hoster
should be supported by goinstall if you want to appear on godashboard
09:17 < sauerbraten> chressie: ok...
09:17 < temoto> sauerbraten, there's not best.  I like git, someone likes
mercurial, someone likes svn.
09:23 < str1ngs> sauerbraten: mecurial is a good dcvs to start with
09:24 < sauerbraten> str1ngs: yes i just signed up at bitbucket, they use
mercurial
09:24 < str1ngs> sauerbraten: I use git myself but its takes abit to get use
too.
09:24 -!- Project_2501 [~Marvin@82.84.92.36] has quit [Quit: Someone step on my
zen garden.  I've someone to kill]
09:26 < str1ngs> that reminds me is goinstall prettey stable even from go
mecurial head.  because it doesnt work on my distro
09:26 < str1ngs> I've just been installing packages by hand mean time.
09:30 < wrtp> sauerbraten: i use google code
09:31 < wrtp> which works pretty well
09:31 < wrtp> and i can use the same codereview extension as go itself if i
want
09:31 -!- sauerbraten_ [~sauerbrat@p508CFBDD.dip.t-dialin.net] has joined #go-nuts
09:32 -!- gnuvince [~vince@70.35.166.126] has quit [Ping timeout: 258 seconds]
09:32 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
09:32 -!- gnuvince [~vince@70.35.166.126] has joined #go-nuts
09:33 -!- sauerbraten [~sauerbrat@p508CFBDD.dip.t-dialin.net] has quit [Ping
timeout: 245 seconds]
09:35 -!- sauerbraten_ [~sauerbrat@p508CFBDD.dip.t-dialin.net] has quit [Client
Quit]
09:35 -!- sauerbraten [~sauerbrat@p508CFBDD.dip.t-dialin.net] has joined #go-nuts
09:39 -!- mikespook [~mikespook@219.137.49.89] has quit [Quit: Leaving.]
09:46 -!- mbarkhau [~koloss@dslb-088-068-251-010.pools.arcor-ip.net] has joined
#go-nuts
09:49 -!- crashR [~crasher@codextreme.pck.nerim.net] has joined #go-nuts
09:50 -!- Sacho [~sacho@213.91.244.15] has joined #go-nuts
09:51 -!- soc [~soc@193.196.7.169] has quit [Quit: Leaving.]
09:51 -!- soc [~soc@193.196.7.169] has joined #go-nuts
09:53 -!- soc [~soc@193.196.7.169] has quit [Client Quit]
09:53 -!- soc [~soc@193.196.7.169] has joined #go-nuts
09:56 -!- smw [~smw@pool-71-183-88-124.nycmny.fios.verizon.net] has quit [Read
error: Connection reset by peer]
09:57 -!- soc [~soc@193.196.7.169] has quit [Client Quit]
09:57 -!- soc [~soc@193.196.7.169] has joined #go-nuts
10:07 -!- soc [~soc@193.196.7.169] has left #go-nuts []
10:11 -!- slashus2 [~slashus2@254.208.118.66.brainstorminternet.net] has quit
[Quit: slashus2]
10:17 -!- lmoura_ [~lmoura@187.78.165.78] has joined #go-nuts
10:35 < temoto> str1ngs, i wrote 4 line script to download go packages from
github and make install them.  Kinda replaces goinstall, i guess.
10:38 < str1ngs> thats an Idea.  I'll check stable when I have time.  right
now its easier to use the go repo
10:45 < wrtp> temoto: does it recursively install dependencies?
10:46 < temoto> wrtp, no.
10:46 < wrtp> won't replace goinstall then :-)
10:48 < temoto> wrtp, i wrote it only because i didn't understand how to use
goinstall.
10:49 < str1ngs> should goinstall work from the mercurial head then?
10:52 < chressie> str1ngs: i suppose you use archlinux :) i currently try to
fix the PKGBUILD..  i'll upload it asap, afterwards you should be able to use
goinstall ;)
10:54 < str1ngs> chressie: well I've been using go-hg from aur.  which is
fine by me.  but yes I was thinking goinstall was distro issue I just didnt know
if I should look into it or not.
10:54 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
10:58 -!- kanru [~kanru@61-30-10-70.static.tfn.net.tw] has quit [Ping timeout: 246
seconds]
10:58 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 246 seconds]
11:11 < str1ngs> oh jesh chressie I should have noticed your name in that
PKGBUILD
11:12 < wrtp> temoto: goinstall is very easy to use.  just do goinstall
import-path
11:13 < temoto> wrtp, wtf is import-path?
11:14 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
11:15 < chressie> str1ngs: hehe..  never mind
11:16 < str1ngs> mecurial related?
11:18 < chressie> import-path means github.com/blah/dreggn or something like
that
11:23 < wrtp> temoto: the path you'd write when you're importing the go
package
11:23 < wrtp> for external packages, the first part of the path is the site
name; the rest references the particular package
11:24 < temoto> import ("github.com/blah/blah") ?
11:24 < temoto> I write import ("httplib").  That path with github.com is
crazy.
11:29 -!- thiago [~thiago@189.107.188.176] has joined #go-nuts
11:30 < chressie> with the path to github.com/user you specify exactly which
third-party package you are expecting, it doesn't look very nice, but hey it's
just one line in the whole file..
11:30 < sauerbraten> someone who could compile my prog for amd64 platforms?
so i can upload the executable to https://bitbucket.org/axle/gots/downloads
11:31 -!- mbarkhau [~koloss@dslb-088-068-251-010.pools.arcor-ip.net] has quit
[Quit: Leaving.]
11:34 < chressie> sauerbraten: why don't you update the plain source code?
where's the meaning of having version control with binaries?
11:34 < chressie> s/update/upload/
11:35 < chressie> btw.  this way goinstall won't work
11:36 -!- mat_ [~mat@mx3.absolight.net] has quit [Read error: Connection reset by
peer]
11:36 -!- mat_ [~mat@mx3.absolight.net] has joined #go-nuts
11:37 -!- wrtp [~rog@92.17.74.66] has quit [Ping timeout: 265 seconds]
11:37 < str1ngs> sauerbraten: there is no need they can compile for there
arch
11:43 -!- wrtp [~rog@92.17.74.66] has joined #go-nuts
11:43 < wrtp> temoto: the nice thing about the long import paths is that it
makes it trivial for goinstall to automatically install a library and all its
dependencies, without any extra metadata or config files needed
11:44 < nsf> and it doesn't work with non-trivial libraries :) like Go-SDL,
Go-OpenGL and other Cgo ones probably
11:45 < nsf> that's why I don't like goinstall and don't use it
11:47 < wrtp> that's true, it won't work on libraries that rely on non-go
code
11:47 < wrtp> but lots of libraries don't
11:49 < temoto> sauerbraten, never upload binaries to bitbucket.
11:58 -!- terrex1 [~terrex@84.122.67.111.dyn.user.ono.com] has joined #go-nuts
12:08 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
joined #go-nuts
12:11 -!- snearch [~snearch@f053004136.adsl.alicedsl.de] has joined #go-nuts
12:12 < str1ngs> go dependacies is 1000x better then C dependacies.  the
fact it does work well with C dependcies is not a surpise since nothing does
12:12 -!- snearch [~snearch@f053004136.adsl.alicedsl.de] has quit [Read error:
Connection reset by peer]
12:12 < str1ngs> does not*
12:12 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
quit [Client Quit]
12:15 -!- alehorst [~alehorst@189.114.190.166] has joined #go-nuts
12:30 -!- snearch [~snearch@f053004136.adsl.alicedsl.de] has joined #go-nuts
12:31 -!- alehorst [~alehorst@189.114.190.166] has quit [Ping timeout: 248
seconds]
12:32 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
12:37 -!- snearch [~snearch@f053004136.adsl.alicedsl.de] has quit [Quit:
Verlassend]
12:38 < chressie> str1ngs, i updated the aur pkgbuild
<http://aur.archlinux.org/packages.php?ID=33695> goinstall should work now
(see comment on aur page) please report any issues..
12:40 < str1ngs> chressie: ok will do.  I'll roll the changes into my go-hg
also
12:41 < str1ngs> err go-git
12:42 < str1ngs> /opt/go good idea.  I also noticed an issue with
/etc/profile.d/go.sh and root.
12:43 < chressie> what issue?
12:44 < str1ngs> I dont think root logins sources /etc/profile so go.sh will
not get sourced
12:45 < str1ngs> so something like sudo make install . wont work
12:46 < exch> Yay, more arch linux users \o/
12:49 -!- alehorst [~alehorst@201.22.27.56.dynamic.adsl.gvt.net.br] has joined
#go-nuts
12:49 -!- niemeyer [~niemeyer@201-11-213-235.pltce701.dsl.brasiltelecom.net.br]
has joined #go-nuts
12:52 < chressie> you can use sudo -E goinstall ...  it worked for me :)
12:53 < exch> Is it really a good idea to yield root privs to a third party
build process?  You never know what kind of messyness goes on in there
12:55 -!- kanru [~kanru@61-228-164-66.dynamic.hinet.net] has joined #go-nuts
12:55 < Namegduf> Is it really a good idea to run any program you didn't
write yourself as root?
12:55 < Namegduf> You never know what kind of messyness goes on in there
12:55 < exch> exactly
12:56 < str1ngs> well I guess that means not use make install then :P
12:56 < Namegduf> Right.  :P
12:56 < Namegduf> In reality, you need to decide what programs you want to
trust or not, because running people's programs as root is about the only way to
do anything.
12:56 < Sacho> unless they don't need root privs
12:56 < str1ngs> I'll well versed in the dreaded 0
12:58 < exch> In general I tend to accept whatever comes out of the official
arch repos.  When it comes to manual source builds and AUR, i'm a fair bit more
paranoid
12:59 < str1ngs> its not hard to sanity check any source files
12:59 < chressie> i understand the security implications..  i think about
installing the go package with group 'go' permissions, so any user in that group
can install packages system wide
12:59 < str1ngs> chressie: that what I did on thee pgk dir
12:59 -!- alehorst [~alehorst@201.22.27.56.dynamic.adsl.gvt.net.br] has quit [Read
error: Connection reset by peer]
13:00 < chressie> okay, i think it should be part of the installation
process so updating does not involve any manual activity
13:01 < str1ngs> chressie: also I wont post this go-git.  I"ll just use it
my self.  better to focus on just go-hg imo
13:01 -!- alehorst [~alehorst@189.114.179.99.dynamic.adsl.gvt.net.br] has joined
#go-nuts
13:03 < chressie> so you want to make an aur package that installs go from
http://github.com/tav/go ?
13:04 < str1ngs> I have one but I only made it because I had to check an api
change.  and my mecurial skills are not as strong as my git skills
13:04 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has joined
#go-nuts
13:05 < str1ngs> really its the same PKGBUILD as git-gh just converted to
git.  and I had to add the git logic.
13:05 < chressie> ah okay, i see
13:05 -!- sahid [~sahid@LNeuilly-152-21-22-10.w193-253.abo.wanadoo.fr] has joined
#go-nuts
13:06 < str1ngs> I can just pull that git repo by hand if I need to check
something.  and keep using go-hg for system install
13:07 < chressie> yeah, i do it similar because i'm more keen on git than
mercurial :)
13:08 < str1ngs> thats how I found the hg hooks in makepkg.
13:09 < str1ngs> I think thats undocumented.
13:10 -!- GeoBSD [~geobsd@lns-bzn-56-82-255-247-37.adsl.proxad.net] has joined
#go-nuts
13:10 < chressie> yeah, that's really weird in makepkg
13:12 < str1ngs> I think its not complete.  but the new way is the right way
13:13 < str1ngs> goinstall does it better though :P
13:15 -!- photron [~photron@port-92-201-19-68.dynamic.qsc.de] has joined #go-nuts
13:19 < str1ngs> yay goinstall works.  thanks chressie
13:21 < chressie> yeah, but be careful with the packages you install
13:22 < str1ngs> I only really use web.go
13:23 < chressie> nice
13:23 < str1ngs> which I have a fix for but I need to double check it.
13:28 < MaybeSo> anyone know if the 6g/6l tools can be used with gopprof,
e.g., if a profile can be dumped from an executable generated by them if one adds
certain flags during compilation?
13:29 < MaybeSo> oh, 6prof.  never mind.
13:31 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
13:38 -!- jonas [~jonas@dslb-084-056-075-011.pools.arcor-ip.net] has joined
#go-nuts
13:41 -!- zozoR [~zozoR@x1-6-00-0e-2e-a3-e0-23.k377.webspeed.dk] has joined
#go-nuts
13:41 -!- zozoR [~zozoR@x1-6-00-0e-2e-a3-e0-23.k377.webspeed.dk] has quit [Client
Quit]
13:41 -!- zozoR [~zozoR@x1-6-00-0e-2e-a3-e0-23.k377.webspeed.dk] has joined
#go-nuts
13:41 -!- zozoR [~zozoR@x1-6-00-0e-2e-a3-e0-23.k377.webspeed.dk] has quit [Client
Quit]
13:41 -!- zozoR [~zozoR@x1-6-00-0e-2e-a3-e0-23.k377.webspeed.dk] has joined
#go-nuts
13:43 -!- jonas [~jonas@dslb-084-056-075-011.pools.arcor-ip.net] has left #go-nuts
[]
13:43 -!- jonas [~jonas@dslb-084-056-075-011.pools.arcor-ip.net] has joined
#go-nuts
13:44 -!- lmoura_ [~lmoura@187.78.165.78] has quit [Ping timeout: 265 seconds]
13:46 -!- wrtp [~rog@92.17.74.66] has quit [Ping timeout: 260 seconds]
13:53 -!- kanru1 [~kanru@61-228-154-105.dynamic.hinet.net] has joined #go-nuts
13:56 -!- kanru [~kanru@61-228-164-66.dynamic.hinet.net] has quit [Ping timeout:
240 seconds]
13:59 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has left #go-nuts
["Leaving"]
14:01 -!- kanru1 [~kanru@61-228-154-105.dynamic.hinet.net] has quit [Quit: WeeChat
0.3.2]
14:01 -!- kanru [~kanru@61-228-154-105.dynamic.hinet.net] has joined #go-nuts
14:04 -!- alehorst [~alehorst@189.114.179.99.dynamic.adsl.gvt.net.br] has quit
[Read error: Connection reset by peer]
14:07 -!- alehorst [~alehorst@189.114.185.238] has joined #go-nuts
14:11 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has joined
#go-nuts
14:11 -!- JayWork [~jwilliams@wsip-98-174-186-109.ok.ok.cox.net] has joined
#go-nuts
14:13 -!- awidegreen [~quassel@62.176.237.78] has joined #go-nuts
14:13 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has quit
[Client Quit]
14:15 -!- alehorst [~alehorst@189.114.185.238] has quit [Ping timeout: 248
seconds]
14:18 -!- kanru [~kanru@61-228-154-105.dynamic.hinet.net] has quit [Quit: WeeChat
0.3.2]
14:27 -!- alehorst [~alehorst@189.115.83.159] has joined #go-nuts
14:31 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has quit [Quit: Leaving.]
14:32 -!- kanru [~kanru@61-228-161-2.dynamic.hinet.net] has joined #go-nuts
14:32 -!- Ginto81 [~joe@pool-72-82-235-34.cmdnnj.fios.verizon.net] has joined
#go-nuts
14:33 -!- Ginto8 [~joe@pool-72-82-235-34.cmdnnj.fios.verizon.net] has quit [Read
error: Connection reset by peer]
14:34 -!- jhawk28 [~jhawk28@72.40.31.201] has joined #go-nuts
14:35 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has joined #go-nuts
14:36 -!- alehorst [~alehorst@189.115.83.159] has quit [Ping timeout: 248 seconds]
14:37 -!- MizardX [~MizardX@unaffiliated/mizardx] has joined #go-nuts
14:37 -!- segy [~segfault@pdpc/supporter/active/segy] has quit [Ping timeout: 276
seconds]
14:43 -!- segy [~segfault@pdpc/supporter/active/segy] has joined #go-nuts
14:50 -!- lmoura_ [~lmoura@187.78.165.78] has joined #go-nuts
14:51 -!- smw [~smw@pool-71-183-88-124.nycmny.fios.verizon.net] has joined
#go-nuts
14:52 -!- alehorst [~alehorst@201.22.37.253.dynamic.adsl.gvt.net.br] has joined
#go-nuts
14:53 -!- lmoura_ [~lmoura@187.78.165.78] has quit [Client Quit]
14:55 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:940:7bae:d321:e78d] has quit
[Quit: Leaving.]
14:56 -!- napsy_ [~napsy@193.2.66.101] has quit [Quit: leaving]
15:00 -!- iant [~iant@62-20-124-50.customer.telia.com] has quit [Ping timeout: 245
seconds]
15:01 -!- tvw [~tv@212.79.9.150] has quit [Remote host closed the connection]
15:02 -!- Sacho [~sacho@213.91.244.15] has quit [Ping timeout: 265 seconds]
15:08 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has joined #go-nuts
15:21 -!- Guest87669 [~thiago@189.107.188.176] has quit [Ping timeout: 246
seconds]
15:25 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
15:36 < skelterjohn> anyone ever run into "unsupported Xauth" while trying
to get go/x11 working on os x?
15:38 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has quit [Quit: Leaving.]
15:41 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has joined #go-nuts
15:44 -!- Venom_X [~pjacobs@71.21.124.111] has joined #go-nuts
15:45 -!- Sacho [~sacho@95-42-109-184.btc-net.bg] has joined #go-nuts
15:45 -!- jonas [~jonas@dslb-084-056-075-011.pools.arcor-ip.net] has quit [Quit:
Konversation terminated!]
15:51 -!- rutkowski [~adrian@078088207115.walbrzych.vectranet.pl] has joined
#go-nuts
15:53 -!- marvel_ [~marvel@unaffiliated/marvel] has joined #go-nuts
15:53 -!- marvel_ [~marvel@unaffiliated/marvel] has left #go-nuts []
15:56 -!- artefon [~thiagon@150.164.2.20] has joined #go-nuts
15:57 < araujo> 'cannot find import "C"' ...
15:57 < araujo> anybody has an idea??
15:58 -!- path[l] [~path@59.162.86.164] has quit [Quit: path[l]]
16:00 < taruti> araujo: are you using cgo?
16:00 -!- boscop_ [~boscop@f055108214.adsl.alicedsl.de] has joined #go-nuts
16:00 < araujo> yes taruti
16:00 -!- boscop [~boscop@f055154041.adsl.alicedsl.de] has quit [Ping timeout: 240
seconds]
16:01 < taruti> hmm
16:01 < araujo> CGOPKGPATH is pointing to the right binary path too
16:03 < JayWork> Hey guys..  I'm trying to install Go and I'm getting this
error: http://pastie.org/1047419
16:04 < JayWork> Any suggestions on how to fix it?
16:21 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has joined
#go-nuts
16:24 < skelterjohn> JayWork: your go installation most likely works fine
16:25 < skelterjohn> just some of the tests went weird
16:25 < skelterjohn> try compiling and running a simple program
16:25 < JayWork> Oh..  So it actually compiled even though it said failed?
16:26 < skelterjohn> it built the go distribution, and then ran the tests
16:26 < skelterjohn> one of the tests failed
16:26 < skelterjohn> is what i get from reading that snip
16:26 < skelterjohn> so give it a shot
16:27 -!- Fish [~Fish@9fans.fr] has joined #go-nuts
16:28 < JayWork> Ahh..  indeed
16:28 < JayWork> it works fine on hello world
16:28 < JayWork> now to build an OS in it :D
16:31 < skelterjohn> that's among the more ambitious second go programs i've
heard about
16:31 < skelterjohn> step 1) hello world
16:31 < skelterjohn> step 2) operating system
16:31 < skelterjohn> step 3) ?
16:31 < skelterjohn> step 4) profit!
16:35 -!- gpolo [~gpolo@189.114.170.134.dynamic.adsl.gvt.net.br] has joined
#go-nuts
16:36 < araujo> mm..  now i get other one..
16:36 < araujo> main.cgo1.go:3: package main; expected mypackage
16:37 < araujo> main.cgo1.go:6: can't find import: mypackage
16:38 < jessta> araujo: using the latest release?
16:38 -!- byrongibson [~byrongibs@cpe-98-155-138-202.hawaii.res.rr.com] has joined
#go-nuts
16:41 < temoto> skelterjohn, 'second go programs' :)
16:42 * araujo finds all the exports/imports in place
16:43 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has quit [Ping timeout:
276 seconds]
16:43 < skelterjohn> temoto: i feel like you are being nice, but i have no
idea why you quoted me like that :)
16:44 < temoto> skelterjohn, that quote sounds funny to me :)
16:44 < temoto> skelterjohn, like second hand.
16:44 < skelterjohn> lol
16:49 -!- gnuvince [~vince@70.35.166.126] has quit [Quit: What the fruit is goin'
on here!?]
16:52 < araujo> yes jessta
16:56 -!- gpolo [~gpolo@189.114.170.134.dynamic.adsl.gvt.net.br] has quit [Quit:
gpolo]
16:57 -!- tvw [~tv@e176006024.adsl.alicedsl.de] has joined #go-nuts
16:57 -!- ExtraSpice [~ExtraSpic@88.118.32.225] has quit [Quit: Leaving]
16:58 -!- KinOfCain [~KinOfCain@rrcs-64-183-61-2.west.biz.rr.com] has joined
#go-nuts
17:07 -!- sauerbraten [~sauerbrat@p508CFBDD.dip.t-dialin.net] has quit [Ping
timeout: 265 seconds]
17:11 -!- str1ngs [~strings@unaffiliated/str1ngs] has quit [Quit: WeeChat 0.3.0]
17:11 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has joined #go-nuts
17:11 -!- str1ngs [~strings@unaffiliated/str1ngs] has joined #go-nuts
17:23 -!- Damn3d [damn3d@unaffiliated/morpheus/x-0931003] has joined #go-nuts
17:29 -!- iant [~iant@81-233-149-58-no82.tbcn.telia.com] has joined #go-nuts
17:29 -!- mode/#go-nuts [+v iant] by ChanServ
17:30 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Quit: (◣_◢)
BigBrowser is watching ⓎⓄⓊ]
17:35 < araujo> jessta, any idea??..  this is with latest stable...
17:36 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Ping timeout:
246 seconds]
17:37 < jessta> there was some changes to cgo in the lastest stable
17:37 < Ginto8> good changes?
17:37 -!- jingzuo [~brandon@h236.122.255.206.cable.thlq.cablelynx.com] has joined
#go-nuts
17:38 < jessta> yeah, it's much nicer
17:38 < Ginto8> nicer in what ways?
17:38 < jessta> araujo: what are you trying to build?
17:38 < jessta> "If you were using _Cstruct_foo or _Ctype_int_t in your
17:38 < jessta> program, you can now say C.struct_foo or C.int_t instead."
17:39 < ampleyfly> was it recent?  did it fix
17:39 < ampleyfly> nsf:s problem?
17:39 < jessta> ampleyfly: what problem was that?
17:40 < araujo> jessta, ooh yes i am using _C_char
17:42 < ampleyfly> I'm not so sure
17:45 < MaybeSo> fuck.  anyone ever deal with this issue w/ go under linux:
http://code.google.com/p/go/issues/detail?id=146
17:45 < MaybeSo> ?
17:48 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
17:50 -!- prip [~foo@host163-125-dynamic.36-79-r.retail.telecomitalia.it] has quit
[Read error: Connection reset by peer]
17:50 -!- prip [~foo@host163-125-dynamic.36-79-r.retail.telecomitalia.it] has
joined #go-nuts
17:51 -!- emmanueloga [~emmanuelo@190.247.41.202] has quit [Quit: WeeChat
0.3.3-dev]
17:51 -!- emmanueloga [~emmanuelo@190.247.41.202] has joined #go-nuts
17:59 -!- plainhao [~plainhao@mail.xbiotica.com] has joined #go-nuts
17:59 -!- gid [~gid@220.253-225-62.VIC.netspace.net.au] has quit [Quit: Leaving.]
18:00 < plexdev> http://is.gd/duB4y by [Ian Lance Taylor] in go/src/cmd/cgo/
-- cgo: If CC is set in environment, use it rather than "gcc".
18:02 -!- Xurix [~Luixsia@AToulouse-254-1-29-98.w81-250.abo.wanadoo.fr] has joined
#go-nuts
18:09 -!- iant [~iant@81-233-149-58-no82.tbcn.telia.com] has quit [Ping timeout:
276 seconds]
18:11 -!- snearch [~snearch@f053004136.adsl.alicedsl.de] has joined #go-nuts
18:16 -!- Agon-laptop
[~marcel@HSI-KBW-095-208-003-128.hsi5.kabel-badenwuerttemberg.de] has quit [Remote
host closed the connection]
18:16 < plexdev> http://is.gd/duCfp by [Ian Lance Taylor] in
go/src/pkg/runtime/ -- Remove unused declaration.
18:17 < plexdev> http://is.gd/duCfr by [Russ Cox] in go/src/pkg/big/ -- big:
attempt to fix arm build
18:17 -!- sahid [~sahid@LNeuilly-152-21-22-10.w193-253.abo.wanadoo.fr] has quit
[Quit: Ex-Chat]
18:17 -!- byrongibson [~byrongibs@cpe-98-155-138-202.hawaii.res.rr.com] has quit
[Ping timeout: 240 seconds]
18:20 < skelterjohn> is there a way to leave comments about github projects?
18:22 -!- ender2070 [~ender2070@bas22-toronto12-2925103372.dsl.bell.ca] has quit
[Remote host closed the connection]
18:24 -!- rutkowski [~adrian@078088207115.walbrzych.vectranet.pl] has quit [Quit:
WeeChat 0.3.3-dev]
18:25 < temoto> skelterjohn, you can write message to author.
18:25 < skelterjohn> yeah, not as exciting
18:25 < temoto> or leave issue if those turned on for that project
18:25 < skelterjohn> leave issue - that sounds better
18:26 < temoto> skelterjohn, message is exciting, trust me.
18:26 < skelterjohn> i don't see an obvious way to report an issue
18:26 < temoto> skelterjohn, even 'watch' is exciting.
18:26 < skelterjohn> ok, i'm starting to get creeped out
18:26 < temoto> skelterjohn, which project?
18:26 < skelterjohn> http://github.com/droundy/gotgo
18:27 < temoto> skelterjohn, it has all features turned off: issues, wiki,
something else.
18:27 < skelterjohn> gotcha
18:27 < temoto> it's configurable in project admin
18:28 -!- gnuvince [~vince@70.35.169.252] has joined #go-nuts
18:35 -!- Alex_ [~alex@pool-108-0-180-37.lsanca.fios.verizon.net] has joined
#go-nuts
18:35 -!- Alex_ [~alex@pool-108-0-180-37.lsanca.fios.verizon.net] has quit [Remote
host closed the connection]
18:39 -!- jhawk28 [~jhawk28@72.40.31.201] has quit [Remote host closed the
connection]
18:39 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
18:40 -!- marsu [~marsu@77.202.62.218] has joined #go-nuts
18:47 -!- jingzuo [~brandon@h236.122.255.206.cable.thlq.cablelynx.com] has quit
[Quit: leaving]
18:51 -!- qIIp [~qIIp@134.29.57.71] has joined #go-nuts
18:54 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
18:55 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by
services]
18:55 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
18:56 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Read error:
Operation timed out]
19:01 < araujo> inconsistent package names: mypackage, main
19:01 -!- b00m_chef [~watr@216-21-143-134.ip.van.radiant.net] has joined #go-nuts
19:01 -!- skelterjohn [~jasmuth@lawn-net168-in.rutgers.edu] has quit [Quit:
skelterjohn]
19:03 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #go-nuts
19:04 -!- thomas_b [~thomasb@cm-84.215.37.40.getinternet.no] has quit [Quit:
leaving]
19:20 -!- snearch [~snearch@f053004136.adsl.alicedsl.de] has quit [Quit:
Verlassend]
19:20 -!- alehorst [~alehorst@201.22.37.253.dynamic.adsl.gvt.net.br] has quit
[Remote host closed the connection]
19:21 -!- temoto [~temoto@81.19.90.136] has quit [Ping timeout: 276 seconds]
19:23 -!- alehorst [~alehorst@201.22.37.253.dynamic.adsl.gvt.net.br] has joined
#go-nuts
19:33 -!- plainhao [~plainhao@mail.xbiotica.com] has quit [Quit: plainhao]
19:40 -!- byrongibson [~byrongibs@cpe-98-155-138-202.hawaii.res.rr.com] has joined
#go-nuts
19:40 -!- Xurix [~Luixsia@AToulouse-254-1-29-98.w81-250.abo.wanadoo.fr] has quit
[Quit: Leaving]
19:47 -!- qIIp [~qIIp@134.29.57.71] has quit [Quit: Lost terminal]
19:53 -!- iant [~iant@81-233-149-58-no82.tbcn.telia.com] has joined #go-nuts
19:53 -!- mode/#go-nuts [+v iant] by ChanServ
19:56 -!- path[l] [UPP@120.138.102.50] has joined #go-nuts
19:57 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has joined #go-nuts
20:05 * araujo wonders if iant is around
20:05 <+iant> I am here briefly
20:06 < araujo> iant, just bit quiet here, and i have some issues i am
trying to figure out, wonder if you could take a look at this error :
20:06 < araujo> inconsistent package names: mypackage, main
20:06 < araujo> <araujo> mm..  now i get other one..
20:06 < araujo> <araujo> main.cgo1.go:3: package main; expected
mypackage
20:06 < araujo> <araujo> main.cgo1.go:6: can't find import: mypackage
20:06 <+iant> somehow you are compiling together .go files in different
packages
20:07 <+iant> when you run 6g, all the .go files have to be in the same
package
20:07 < araujo> oooh ...
20:07 * araujo tests
20:10 -!- alkavan [~alkavan@87.68.19.114.cable.012.net.il] has joined #go-nuts
20:12 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has joined
#go-nuts
20:14 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
20:17 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
20:19 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
20:22 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has joined
#go-nuts
20:23 -!- b00m_chef [~watr@216-21-143-134.ip.van.radiant.net] has quit [Read
error: Connection reset by peer]
20:31 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
20:34 < plexdev> http://is.gd/duLFi by [Ken Thompson] in 2 subdirs of
go/src/cmd/ -- change line pragma from
20:35 -!- boscop_ [~boscop@f055108214.adsl.alicedsl.de] has left #go-nuts []
20:35 -!- boscop [~boscop@f055108214.adsl.alicedsl.de] has joined #go-nuts
20:36 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has joined
#go-nuts
20:41 -!- TR2N [email@89-180-233-222.net.novis.pt] has joined #go-nuts
20:43 -!- segy [~segfault@pdpc/supporter/active/segy] has quit [Ping timeout: 240
seconds]
20:53 -!- iant [~iant@81-233-149-58-no82.tbcn.telia.com] has quit [Quit: Leaving.]
21:02 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has joined
#go-nuts
21:07 -!- EliasAmaral [~dark@unaffiliated/eliasamaral] has joined #go-nuts
21:15 -!- Eridius [~kevin@unaffiliated/eridius] has joined #go-nuts
21:20 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
21:21 -!- alehorst [~alehorst@201.22.37.253.dynamic.adsl.gvt.net.br] has quit
[Ping timeout: 248 seconds]
21:22 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 260 seconds]
21:26 -!- Fish [~Fish@9fans.fr] has quit [Remote host closed the connection]
21:30 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
21:38 -!- KinOfCain [~KinOfCain@rrcs-64-183-61-2.west.biz.rr.com] has quit [Remote
host closed the connection]
21:38 -!- zozoR [~zozoR@x1-6-00-0e-2e-a3-e0-23.k377.webspeed.dk] has quit [Quit:
Morten.  Desu~]
21:38 -!- alehorst [~alehorst@200.146.4.138.dynamic.dialup.gvt.net.br] has joined
#go-nuts
21:38 -!- skelterjohn [~jasmuth@c-68-32-233-120.hsd1.nj.comcast.net] has quit
[Ping timeout: 265 seconds]
21:40 -!- skelterjohn [~jasmuth@c-76-116-176-229.hsd1.nj.comcast.net] has joined
#go-nuts
21:41 -!- artefon [~thiagon@150.164.2.20] has quit [Quit: Leaving]
21:56 -!- i__ [~none@unaffiliated/i--/x-3618442] has left #go-nuts []
21:57 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
22:02 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
22:04 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: leaving]
22:04 -!- i__ [~none@nkvd.ath.cx] has joined #go-nuts
22:06 < plexdev> http://is.gd/duRkX by [Rob Pike] in go/src/cmd/gc/ -- fix
typo in lex.c comment
22:06 -!- smw [~smw@pool-71-183-88-124.nycmny.fios.verizon.net] has quit [Quit:
Leaving]
22:21 -!- alehorst [~alehorst@200.146.4.138.dynamic.dialup.gvt.net.br] has quit
[Quit: Leaving.]
22:39 -!- skelterjohn [~jasmuth@c-76-116-176-229.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
22:41 -!- Ginto8_ [~smitty@c-174-57-137-174.hsd1.nj.comcast.net] has joined
#go-nuts
22:41 < Ginto8_> hey quick question
22:41 < Ginto8_> I just tried compiling my lib on another computer, and it
spits out an odd cgo error
22:41 < Ginto8_> $ make
22:41 < Ginto8_> CGOPKGPATH= /home/tim/bin/cgo events.go window.go gfx.go
texture.go
22:41 < Ginto8_> inconsistent definitions for C.GL_COLOR_BUFFER_BIT
22:41 < Ginto8_> unresolved names
22:41 < Ginto8_> make: *** [_cgo_defun.c] Error 2
22:42 < Ginto8_> this error wasn't there before...  any idea what it could
be?
22:43 -!- skelterjohn [~jasmuth@c-76-116-176-229.hsd1.nj.comcast.net] has joined
#go-nuts
22:43 < exch> does this mahcine have the appropriate GL dev libs installed?
22:43 -!- skelterjohn [~jasmuth@c-76-116-176-229.hsd1.nj.comcast.net] has quit
[Client Quit]
22:43 < Ginto8_> it seems to, but I'll double check
22:49 < Ginto8_> yeah I've got all the correct mesa dev packages
22:50 < exch> hmm
22:51 -!- Venom_X [~pjacobs@71.21.124.111] has quit [Ping timeout: 276 seconds]
22:52 -!- thiago [~thiago@189.107.194.112] has joined #go-nuts
22:56 -!- skelterjohn [~jasmuth@c-76-116-176-229.hsd1.nj.comcast.net] has joined
#go-nuts
22:57 -!- JayWork [~jwilliams@wsip-98-174-186-109.ok.ok.cox.net] has quit [Read
error: Connection reset by peer]
23:08 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
23:16 -!- skelterjohn [~jasmuth@c-76-116-176-229.hsd1.nj.comcast.net] has quit
[Quit: skelterjohn]
23:23 < plexdev> http://is.gd/duWXv by [Russ Cox] in 4 subdirs of
go/src/cmd/ -- 5l, 6l, 8l: reject invalid input files
23:26 < MaybeSo> anyone know if there are Nice Go Libraries which wrap the
lower level syscall.Fcntl/syscall.Flock stuff ?
23:26 -!- tvw [~tv@e176006024.adsl.alicedsl.de] has quit [Remote host closed the
connection]
23:37 -!- terrex1 [~terrex@84.122.67.111.dyn.user.ono.com] has quit [Quit:
Leaving.]
23:50 -!- GeoBSD [~geobsd@lns-bzn-56-82-255-247-37.adsl.proxad.net] has quit
[Quit: Lost terminal]
23:51 -!- Netsplit *.net <-> *.split quits: Ginto8_, Ginto8
23:51 -!- Netsplit *.net <-> *.split quits: korfuri, rauq
23:51 -!- Netsplit *.net <-> *.split quits: mafs, maht
23:51 -!- photron [~photron@port-92-201-19-68.dynamic.qsc.de] has quit [Ping
timeout: 258 seconds]
23:54 -!- carllerche [~carllerch@enginey-9.border1.sfo002.pnap.net] has quit
[Quit: carllerche]
23:55 -!- Netsplit over, joins: maht, Ginto8_, Ginto8, korfuri, rauq, mafs
--- Log closed Sat Jul 17 00:00:12 2010