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

--- Log opened Sat Jun 05 00:00:01 2010
00:02 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has quit [Read error:
Connection reset by peer]
00:02 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has joined #go-nuts
00:06 -!- plainhao [~plainhao@mail.xbiotica.com] has quit [Quit: plainhao]
00:14 -!- Venom_X [~pjacobs@71.20.102.220] has joined #go-nuts
00:16 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
00:17 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
00:21 -!- tvw [~tv@e176005170.adsl.alicedsl.de] has quit [Ping timeout: 240
seconds]
00:21 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
00:21 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 260 seconds]
00:40 -!- micrypt [~micrypt@94-195-127-212.zone9.bethere.co.uk] has quit [Quit:
Leaving.]
00:40 < plexdev> http://is.gd/cCZDJ by [Nigel Tao] in go/src/pkg/exp/draw/
-- Fixes issue 836.
00:47 -!- Venom_X [~pjacobs@71.20.102.220] has quit [Quit: Venom_X]
00:49 -!- iant [~iant@67.218.103.83] has joined #go-nuts
00:49 -!- mode/#go-nuts [+v iant] by ChanServ
00:57 < plexdev> http://is.gd/cD0wf by [Nigel Tao] in
go/src/pkg/html/testdata/webkit/ -- HTML5 parser test data from WebKit.
00:57 -!- marsu [~marsu@140.100.202-77.rev.gaoland.net] has quit [Ping timeout:
265 seconds]
00:57 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has quit [Ping timeout: 240
seconds]
01:00 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
01:08 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
01:12 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: i__]
01:13 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has joined
#go-nuts
01:17 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
01:18 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
01:37 -!- g0bl1n [~pr0kter@a213-22-77-195.cpe.netcabo.pt] has quit [Read error:
Operation timed out]
01:37 -!- jokerwww [~jokerwww@187.106.34.116] has joined #go-nuts
01:39 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has quit [Quit:
abunner]
01:40 < jokerwww> can anyone tell me if there is someway to do this:
http://pastebin.com/akgRDqKg ?
01:41 < smw> jokerwww, what are you doing?
01:41 -!- krejler [~krejler@poipu/developer/krejler] has quit [Ping timeout: 276
seconds]
01:42 < smw> ah
01:42 < smw> the answer is no
01:43 < jokerwww> smw: so if the function took a interface that both structs
implemented it would work, but if it expects a struct it has to receive that exact
type.  is that correct?
01:43 -!- krejler [~krejler@d221-90-121.commercial.cgocable.net] has joined
#go-nuts
01:44 < jokerwww> I tried using a cast, but I couldn
01:44 < jokerwww> couldnt even cast b to a
01:44 < smw> jokerwww, I believe the conversion does not work
01:44 < smw> I could be wrong
01:45 < jokerwww> smw: ok, thks I guess I'll have to rethink my approach
01:45 < smw> I suggest testing it
01:45 < smw> you already have the code
01:45 < jokerwww> I tested a conversion but it didn't work.
01:46 < jokerwww> if anyone has an idea of anything else that's worth a try,
I would be glad to test it
01:46 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
619 seconds]
01:46 < KirkMcDonald> You could say foo(bb.a)
01:47 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has quit [Remote host closed the
connection]
01:47 < jokerwww> KirkMcDonald: perfect!  thanks, I tought there must be a
way.  thank you very much!
01:48 < Ginto8> embedded types can always be refered to by the name of the
type as members of the struct they're embedded in
01:49 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
01:50 < jokerwww> Ginto8: I assume this was a deliberate choice on the part
of the language designers.  do you know why?
01:50 < jokerwww> could you point me to some related reading?
01:50 < Ginto8> well the golang website is always a good place to look
01:50 < Ginto8> but as to why they chose it, I have some ideas
01:51 < Ginto8> all typing has to be made explicitly, so to prevent the
confusion of such implicit type passing
01:51 < Ginto8> they made it that way
01:52 < Ginto8> embedding types brings in data and methods, but for
functions taking that embedded type, having any struct that embeds it be able to
be passed would create, as I said, implicit type conversions
01:53 < Ginto8> which the language shies away from, with very good reason
01:54 < jokerwww> Ginto8: yes, I have read about the issues which lead to
chose to not have implicit type conversions.  I just hadn't realized that this was
the case(as it obviously is).
01:55 < Ginto8> ok hmmm...  I don't think that sort of situation was
explicitly mentioned, but it makes sense given the typing model
01:55 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
01:56 < jokerwww> I agree.  Once you mentioned type conversions I noticed
that was what I was trying to do.
01:56 < jokerwww> a little more verbose than what I would have prefered, but
there are good reasons for it
01:56 < Ginto8> yep
01:57 -!- iant [~iant@67.218.103.83] has quit [Ping timeout: 264 seconds]
02:03 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: leaving]
02:05 -!- bmizerany [~bmizerany@dsl081-064-072.sfo1.dsl.speakeasy.net] has quit
[Remote host closed the connection]
02:07 < MizardX> jokerwww: If you make an interface satisfied by a, then b
would also satisfy it.
02:08 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
02:12 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 252 seconds]
02:21 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Read error: Connection
reset by peer]
02:21 -!- i__ [~none@189.115.37.67] has joined #go-nuts
02:23 -!- MizardX [~MizardX@unaffiliated/mizardx] has quit [Ping timeout: 276
seconds]
02:28 -!- i__ [~none@189.115.37.67] has quit [Changing host]
02:28 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
02:50 -!- Eko [~eko@adsl-76-251-230-31.dsl.ipltin.sbcglobal.net] has joined
#go-nuts
02:51 -!- GoBIR [~gobir@adsl-76-251-230-31.dsl.ipltin.sbcglobal.net] has joined
#go-nuts
02:57 -!- jokerwww [~jokerwww@187.106.34.116] has quit [Remote host closed the
connection]
02:59 -!- Eridius [~kevin@unaffiliated/eridius] has quit [Ping timeout: 252
seconds]
03:01 -!- rejb [~rejb@unaffiliated/rejb] has quit [Ping timeout: 260 seconds]
03:07 -!- adu [~ajr@pool-71-191-173-118.washdc.fios.verizon.net] has joined
#go-nuts
03:07 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
03:10 -!- aho [~nya@g226210100.adsl.alicedsl.de] has joined #go-nuts
03:16 -!- plainhao [~plainhao@mail.xbiotica.com] has joined #go-nuts
03:23 -!- idr [~idr@e179145002.adsl.alicedsl.de] has joined #go-nuts
03:25 -!- Ina [~ina@5ED73781.cable.ziggo.nl] has joined #go-nuts
03:31 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
03:32 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
03:38 -!- babusri [~babu@122.167.106.230] has joined #go-nuts
03:43 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has quit [Ping timeout: 260
seconds]
03:43 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
03:44 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
03:46 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has quit [Ping timeout: 248
seconds]
03:56 -!- babusri [~babu@122.167.106.230] has quit [Ping timeout: 240 seconds]
04:03 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
04:08 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
04:08 -!- Ina [~ina@5ED73781.cable.ziggo.nl] has quit [Read error: Operation timed
out]
04:12 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has joined #go-nuts
04:13 -!- mode/#go-nuts [+v iant] by ChanServ
04:20 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
04:26 -!- ender2070 [~ender2070@bas5-hamilton14-1279278974.dsl.bell.ca] has joined
#go-nuts
04:27 -!- apardo [~apardo@223.64.220.87.dynamic.jazztel.es] has joined #go-nuts
04:31 -!- babusri [~e50138@122.167.106.230] has joined #go-nuts
04:34 -!- mfoemmel [~mfoemmel@chml01.drwholdings.com] has quit [Ping timeout: 245
seconds]
04:38 -!- iant [~iant@adsl-71-133-8-30.dsl.pltn13.pacbell.net] has quit [Ping
timeout: 240 seconds]
04:45 -!- ExtraSpice [~ExtraSpic@78-62-86-161.static.zebra.lt] has joined #go-nuts
04:53 -!- iant [~iant@216.239.45.130] has joined #go-nuts
04:53 -!- mode/#go-nuts [+v iant] by ChanServ
05:00 -!- scm [justme@d070082.adsl.hansenet.de] has quit [Ping timeout: 240
seconds]
05:07 -!- apardo [~apardo@223.64.220.87.dynamic.jazztel.es] has quit [Read error:
Operation timed out]
05:07 -!- scm [justme@d071103.adsl.hansenet.de] has joined #go-nuts
05:07 -!- alexbobP [~alex@ppp-70-253-89-2.dsl.austtx.swbell.net] has quit [Quit:
leaving]
05:09 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
05:10 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
05:11 -!- napsy [~luka@88.200.96.14] has quit [Read error: Operation timed out]
05:21 -!- apardo [~apardo@32.64.220.87.dynamic.jazztel.es] has joined #go-nuts
05:26 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has quit [Ping
timeout: 248 seconds]
05:28 -!- illya77 [~illya77@240-175-178-94.pool.ukrtel.net] has joined #go-nuts
05:29 -!- cringe [~cringe@dyndsl-091-096-122-223.ewe-ip-backbone.de] has joined
#go-nuts
05:34 -!- dju_ [dju@fsf/member/dju] has joined #go-nuts
05:36 -!- illya77 [~illya77@240-175-178-94.pool.ukrtel.net] has quit [Ping
timeout: 258 seconds]
05:37 -!- nighty^ [~nighty@x122091.ppp.asahi-net.or.jp] has joined #go-nuts
05:37 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has joined #go-nuts
05:37 -!- dju_ [dju@fsf/member/dju] has quit [Client Quit]
05:39 -!- alexbobp [~alex@ppp-70-253-89-2.dsl.austtx.swbell.net] has joined
#go-nuts
05:47 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has quit [Quit:
This computer has gone to sleep]
05:53 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has joined
#go-nuts
06:07 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
06:08 -!- ExtraSpice [~ExtraSpic@78-62-86-161.static.zebra.lt] has quit [Remote
host closed the connection]
06:10 -!- Ina [~ina@5ED73781.cable.ziggo.nl] has joined #go-nuts
06:20 -!- cringe [~cringe@dyndsl-091-096-122-223.ewe-ip-backbone.de] has quit
[Quit: cringe]
06:26 -!- adu [~ajr@pool-71-191-173-118.washdc.fios.verizon.net] has quit [Quit:
adu]
06:40 -!- cringe [~cringe@dyndsl-091-096-122-223.ewe-ip-backbone.de] has joined
#go-nuts
06:48 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
06:52 -!- kanru [~kanru@61-228-160-146.dynamic.hinet.net] has joined #go-nuts
06:59 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has quit [Quit:
abunner]
07:03 -!- Surma [~surma@91-64-31-88-dynip.superkabel.de] has joined #go-nuts
07:04 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
07:06 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has quit []
07:21 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Read error: Connection
reset by peer]
07:21 -!- i__ [~none@189.115.37.67] has joined #go-nuts
07:24 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
07:28 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 264 seconds]
07:32 -!- i__ [~none@189.115.37.67] has quit [Read error: Connection reset by
peer]
07:33 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has joined #go-nuts
07:34 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
07:36 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
joined #go-nuts
07:37 -!- i__ [~none@189.115.37.67] has joined #go-nuts
07:44 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-180-175.clienti.tiscali.it] has
joined #go-nuts
07:48 -!- Surma [~surma@91-64-31-88-dynip.superkabel.de] has quit [Quit: Leaving.]
07:50 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
07:52 -!- i__ [~none@189.115.37.67] has quit [Changing host]
07:52 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
07:53 -!- zcram [~zcram@133.193.159.217.dyn.estpak.ee] has quit [Ping timeout: 264
seconds]
07:59 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Ping
timeout: 265 seconds]
08:01 -!- Project_2501 [~Marvin@dynamic-adsl-94-36-180-175.clienti.tiscali.it] has
quit [Ping timeout: 240 seconds]
08:11 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
08:13 -!- Project_2501 [~Marvin@82.84.95.75] has joined #go-nuts
08:14 -!- Ideal [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has joined
#go-nuts
08:17 -!- babusri [~e50138@122.167.106.230] has quit [Ping timeout: 264 seconds]
08:18 -!- apardo [~apardo@32.64.220.87.dynamic.jazztel.es] has quit [Ping timeout:
276 seconds]
08:22 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
08:30 -!- apardo [~apardo@239.64.220.87.dynamic.jazztel.es] has joined #go-nuts
08:40 -!- cringe [~cringe@dyndsl-091-096-122-223.ewe-ip-backbone.de] has quit
[Quit: cringe]
08:41 -!- segy [~segfault@pdpc/supporter/active/segy] has quit [Ping timeout: 248
seconds]
08:42 -!- segy [~segfault@pdpc/supporter/active/segy] has joined #go-nuts
08:45 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
quit [Read error: Connection reset by peer]
08:56 -!- BrowserUk [~irc1_20_B@92.15.66.71] has joined #go-nuts
09:06 -!- noam__ [~noam@77.127.56.202] has quit [Read error: Connection reset by
peer]
09:06 -!- noam__ [~noam@77.127.56.202] has joined #go-nuts
09:11 -!- apardo [~apardo@239.64.220.87.dynamic.jazztel.es] has quit [Quit:
Saliendo]
09:12 -!- stalled [~stalled@unaffiliated/stalled] has quit [Ping timeout: 265
seconds]
09:22 -!- stalled [~stalled@unaffiliated/stalled] has joined #go-nuts
09:23 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has quit [Remote host closed the
connection]
09:28 -!- Kylarr [Kyle@122-148-63-115.static.dsl.dodo.com.au] has joined #go-nuts
09:30 -!- Kylarr [Kyle@122-148-63-115.static.dsl.dodo.com.au] has left #go-nuts []
09:31 -!- photron [~photron@port-92-201-44-180.dynamic.qsc.de] has joined #go-nuts
10:00 -!- BrowserUk [~irc1_20_B@92.15.66.71] has left #go-nuts []
10:03 -!- NoPyGod [~no@125-237-112-216.jetstream.xtra.co.nz] has joined #go-nuts
10:08 -!- SRabbelier [~SRabbelie@ip138-114-211-87.adsl2.static.versatel.nl] has
joined #go-nuts
10:15 -!- Shyde [~Shyde^^@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has joined #go-nuts
10:21 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
10:21 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
10:25 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
10:28 -!- starter [~starter@62.87.208.174] has joined #go-nuts
10:28 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
10:28 -!- starter [~starter@62.87.208.174] has left #go-nuts []
10:28 -!- PHmaster [~PHmaster@62.87.208.174] has joined #go-nuts
10:29 < PHmaster> hello
10:29 -!- Shyde [~Shyde^^@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has quit [Remote host closed the connection]
10:29 < PHmaster> dunno if it's a good channel, but i'll try to ask: I
downloaded version of GO for Windows gomingw and have some problems with compiling
10:30 < PHmaster> err, with linking ..  linker says: unable to find
runtime.a
10:30 < PHmaster> where can i download it and where should i put that file?
10:31 < PHmaster> I have more linking problms but all of them indicates on
not having runtime.a
10:33 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 260 seconds]
10:37 < PHmaster> anyone see what i'm typing?
10:39 < PHmaster> !time
10:40 < PHmaster> lol, ok, will ask here later, maybe diffrent time zone
means, that i'm speaking to irc session :LD
10:40 < waterwalker> I can see
10:40 -!- PHmaster [~PHmaster@62.87.208.174] has quit [Quit: MegaIRC v3.97
http://ironfist.at.tut.by]
10:40 < waterwalker> too late :)
10:41 -!- Project_2501 [~Marvin@82.84.95.75] has quit [Quit: E se abbasso questa
leva che succ...]
10:43 -!- gr0gmint [~kris@2002:573c:1726::1337:beef] has joined #go-nuts
10:45 -!- gr0gmint [~kris@2002:573c:1726::1337:beef] has quit [Client Quit]
10:45 -!- dwanderer [~facemelte@0x535dcce9.hgnxx2.dynamic.dsl.tele.dk] has joined
#go-nuts
10:54 -!- Shyde [~shyde@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has joined #go-nuts
10:55 -!- snearch [~snearch@f053001244.adsl.alicedsl.de] has joined #go-nuts
10:55 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
11:01 -!- noam__ [~noam@77.127.56.202] has quit [Read error: Connection reset by
peer]
11:01 -!- noam__ [~noam@77.127.56.202] has joined #go-nuts
11:03 -!- marsu [~marsu@47.110.202-77.rev.gaoland.net] has joined #go-nuts
11:05 -!- snearch [~snearch@f053001244.adsl.alicedsl.de] has quit [Quit:
Verlassend]
11:12 -!- g0bl1n [~pr0kter@a213-22-77-195.cpe.netcabo.pt] has joined #go-nuts
11:16 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has joined #go-nuts
11:21 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:bdb6:6b49:6bee:3c56] has joined
#go-nuts
11:34 -!- idr [~idr@e179145002.adsl.alicedsl.de] has quit [Remote host closed the
connection]
11:46 -!- waterwalker [~tar@dsl-hkibrasgw3-fe75fb00-7.dhcp.inet.fi] has quit
[Quit: leaving]
11:46 -!- alehorst [~alehorst@189.58.16.68.dynamic.adsl.gvt.net.br] has quit
[Remote host closed the connection]
11:50 -!- alehorst [~alehorst@189.58.16.68.dynamic.adsl.gvt.net.br] has joined
#go-nuts
11:59 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
12:01 -!- waterwalker [~tar@dsl-hkibrasgw3-fe75fb00-7.dhcp.inet.fi] has joined
#go-nuts
12:04 -!- g0bl1n [~pr0kter@a213-22-77-195.cpe.netcabo.pt] has quit [Read error:
Connection reset by peer]
12:04 < napsy> How can I concatenate arrays in golang, e.g.  []int{1, 2, 3}
+ []int{4, 5, 6} ?
12:11 < rsaarelm> Afaik there's no shortcut.  You just have to make a big
enough new array and write the contents to it.
12:11 < rsaarelm> You can write a helper function for a specific element
type, but no generic helper function since there isn't generics.
12:13 < jessta> you can use vector
12:13 < rsaarelm> Yeah, that's pretty much the helper function for a
specific element type.
12:17 < jessta> the built in copy() is generic
12:24 < exch> copy can be pretty slow if used often.  Use it sparingly
12:24 < emiel_> often?  or on long ranges?
12:25 < exch> often.  Though the slowdown may be a combination of using copy
with a new slice allocation
12:26 < emiel_> ah right
12:26 < jessta> which is why []int{1, 2, 3} + []int{4, 5, 6} is a bad idea
for syntax
12:27 < emiel_> hm, although channels are cheap, suppose you have a lot of
work-items, each doing their work in their respective goroutines.  The work-items
can report on their work (how far completed for instance).  Would one choose to
make a new channel for each worker, or use a global channel (with the worker-id in
the structure that is passed)?
12:28 < jessta> I'd make a channel each
12:28 < emiel_> i believe it is not possible to select() on multiple
channels, so to handle the reporting a global channel is the way to go
12:28 < emiel_> haha, ok :)
12:28 < jessta> the expense of channels is in the locking and copying
12:29 < emiel_> right, but say you want to write the results to a database
or something
12:30 < emiel_> maybe buffered channels are the way to go
12:30 < emiel_> is it possible to read from a slice of buffered channels
efficiently?
12:31 < jessta> I don't think it's currently possible to select() on a slice
of channels
12:32 < emiel_> no, it came by in this channel before, it's actually
specifically not implemented if i remember correctly
12:32 < exch> you need a select statement listing all channels you listen on
explicitely.  Looping through a list of channels will block on the first until
something arrives, then go to the seonc
12:32 < exch> *second
12:32 < emiel_> and there's no way to peek inside a buffered chan?
12:33 < emiel_> hm, it would be futile anyway, since then there is no
mechanism to wait in your reporting routine
12:33 < exch> the only way around that would be to have dynamic code
generation/evaluation.  You could build the select statement at runtime and then
eval() it :p Most definitely not good practise though :p
12:33 < emiel_> then i would say a buffered global channel is the thing, it
prevents the locking
12:34 < emiel_> haha
12:34 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has quit [Ping timeout: 240
seconds]
12:36 < emiel_> so i watched the stanford go lecture, and it was quite
negative about design patterns, but in some form these kinds of things still come
back in go :)
12:37 < exch> I think what he was trying to sya is that 'design patterns' by
themselves are simply common sense idioms.  They really do not deserve a name like
'design pattern' and have reems of books written about them.  Any person with half
a brain can come up with em
12:38 < exch> I never uderstood what the hype was about with those patterns
12:38 < emiel_> well, yes, maybe people tended to present them as solutions
for stuff without realizing the concepts behind them
12:39 < emiel_> but still, after a few days in go, there are also quite some
common, uhm, idioms which seem to recur all the time
12:39 < exch> ofcourse.  Some ways of doing things work for a certain job.
Still no need to elevate these ideas to godhood though :)
12:41 -!- alone [~user@58.52.5.166] has left #go-nuts ["puf"]
12:56 -!- jA_cOp [~yakobu@unaffiliated/ja-cop/x-9478493] has quit [Quit: Leaving]
13:01 -!- stanlly [~user@redhat/stanlly] has joined #go-nuts
13:09 -!- MizardX [~MizardX@unaffiliated/mizardx] has joined #go-nuts
13:21 -!- idr [~idr@e179145002.adsl.alicedsl.de] has joined #go-nuts
13:32 -!- cringe [~cringe@dyndsl-085-016-198-076.ewe-ip-backbone.de] has joined
#go-nuts
13:36 -!- nato [~chatzilla@203.177.80.139] has joined #go-nuts
13:41 -!- nato [~chatzilla@203.177.80.139] has left #go-nuts []
13:42 -!- cringe [~cringe@dyndsl-085-016-198-076.ewe-ip-backbone.de] has quit
[Quit: cringe]
13:43 -!- ludius [~chatzilla@203.177.80.139] has joined #go-nuts
13:49 -!- Shyde [~shyde@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has quit [Remote host closed the connection]
13:52 -!- Ideal [~Ideal@ideal-1-pt.tunnel.tserv6.fra1.ipv6.he.net] has quit [Quit:
Ideal]
13:54 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
13:55 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
13:58 -!- idr [~idr@e179145002.adsl.alicedsl.de] has quit [Remote host closed the
connection]
13:59 -!- ludius [~chatzilla@203.177.80.139] has quit [Ping timeout: 258 seconds]
14:01 -!- Kashia [~Kashia@port-92-200-3-151.dynamic.qsc.de] has quit [Quit: This
computer has gone to sleep]
14:02 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 276 seconds]
14:03 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
14:04 -!- rejb [~rejb@unaffiliated/rejb] has joined #go-nuts
14:05 -!- crashR [~crasher@codextreme.pck.nerim.net] has quit [Quit: (◣_◢)
BigBrowser is watching ⓎⓄⓊ]
14:07 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
14:07 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
14:10 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
14:11 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
14:19 -!- scarabx [~scarabx@c-76-19-43-200.hsd1.ma.comcast.net] has joined
#go-nuts
14:26 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has joined
#go-nuts
14:28 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has joined #go-nuts
14:29 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
14:30 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
14:30 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
14:42 -!- Haro` [~moo@65.219.121.70.cfl.res.rr.com] has joined #go-nuts
14:42 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has joined #go-nuts
14:44 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has quit [Ping timeout: 240
seconds]
14:47 -!- aho [~nya@g226210100.adsl.alicedsl.de] has quit [Quit:
EXEC_over.METHOD_SUBLIMATION]
14:50 -!- aho [~nya@g226210100.adsl.alicedsl.de] has joined #go-nuts
14:55 -!- Xera` [~brit@87-194-208-246.bethere.co.uk] has joined #go-nuts
14:59 -!- Xera^ [~brit@87-194-208-246.bethere.co.uk] has quit [Ping timeout: 252
seconds]
15:01 -!- hcatlin [~hcatlin@pdpc/supporter/professional/hcatlin] has quit [Quit:
hcatlin]
15:04 -!- napsy [~luka@88.200.96.14] has quit [Read error: Operation timed out]
15:06 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
15:13 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 248 seconds]
15:20 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
15:21 -!- baman [~moo@65.219.121.70.cfl.res.rr.com] has joined #go-nuts
15:22 -!- stanlly [~user@redhat/stanlly] has quit [Remote host closed the
connection]
15:23 -!- Haro` [~moo@65.219.121.70.cfl.res.rr.com] has quit [Ping timeout: 272
seconds]
15:34 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Remote host closed the
connection]
15:36 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has quit [Remote host closed the
connection]
15:36 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
15:37 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
15:45 -!- noam__ [~noam@77.127.56.202] has quit [Read error: Connection reset by
peer]
15:45 -!- noam__ [~noam@77.127.56.202] has joined #go-nuts
15:46 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has quit [Ping timeout:
612 seconds]
15:48 -!- boscop [~boscop@g226230036.adsl.alicedsl.de] has joined #go-nuts
15:49 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
15:50 -!- ghazkull [~ghazkull@m000.ghazkull.de] has quit [Ping timeout: 258
seconds]
16:03 -!- ender2070 [~ender2070@bas5-hamilton14-1279278974.dsl.bell.ca] has quit
[Ping timeout: 245 seconds]
16:11 -!- Surma [~surma@91-64-31-88-dynip.superkabel.de] has joined #go-nuts
16:12 -!- nsz [nsz@morecp.net] has quit [Ping timeout: 260 seconds]
16:12 -!- marsu [~marsu@47.110.202-77.rev.gaoland.net] has quit [Ping timeout: 265
seconds]
16:14 -!- Kashia [~Kashia@p4FEB5DBF.dip.t-dialin.net] has joined #go-nuts
16:17 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
16:17 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
16:18 -!- nsz [nsz@morecp.net] has joined #go-nuts
16:20 -!- kanru [~kanru@61-228-160-146.dynamic.hinet.net] has quit [Ping timeout:
240 seconds]
16:41 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 276 seconds]
16:42 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
16:43 -!- Shyde [~Shyde^^@HSI-KBW-078-043-070-132.hsi4.kabel-badenwuerttemberg.de]
has joined #go-nuts
16:53 -!- tumdum [~tumdum@aun245.neoplus.adsl.tpnet.pl] has joined #go-nuts
16:53 -!- tumdum [~tumdum@aun245.neoplus.adsl.tpnet.pl] has quit [Changing host]
16:53 -!- tumdum [~tumdum@unaffiliated/tumdum] has joined #go-nuts
16:55 -!- tumdum_ [~tumdum@auo79.neoplus.adsl.tpnet.pl] has joined #go-nuts
16:55 -!- tumdum_ [~tumdum@auo79.neoplus.adsl.tpnet.pl] has quit [Changing host]
16:55 -!- tumdum_ [~tumdum@unaffiliated/tumdum] has joined #go-nuts
16:58 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Ping timeout: 264
seconds]
17:16 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has quit [Ping timeout: 264
seconds]
17:16 -!- marsu [~marsu@47.110.202-77.rev.gaoland.net] has joined #go-nuts
17:19 -!- cco3 [~conley@user-64-9-234-189.googlewifi.com] has joined #go-nuts
17:20 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
17:20 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
17:23 -!- eikenberry [~jae@mail.zhar.net] has joined #go-nuts
17:29 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
17:41 -!- alehorst [~alehorst@189.58.16.68.dynamic.adsl.gvt.net.br] has quit [Ping
timeout: 248 seconds]
17:44 -!- ender2070 [~ender2070@bas5-hamilton14-1279278974.dsl.bell.ca] has joined
#go-nuts
17:45 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 248 seconds]
17:45 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has quit [Ping timeout: 265
seconds]
17:49 -!- marsu [~marsu@47.110.202-77.rev.gaoland.net] has quit [Ping timeout: 248
seconds]
17:53 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
17:54 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
17:56 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has joined #go-nuts
17:59 -!- tux21b [~christoph@90.146.60.30] has quit [Client Quit]
17:59 -!- tux21b [~christoph@90.146.60.30] has joined #go-nuts
17:59 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: leaving]
17:59 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
18:02 -!- Zoopee [alsbergt@zoopee.org] has quit [Ping timeout: 258 seconds]
18:03 -!- Zoopee [alsbergt@zoopee.org] has joined #go-nuts
18:17 -!- deso [~deso@x0561a.wh30.tu-dresden.de] has quit [Quit: bye]
18:28 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
18:29 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Client
Quit]
18:29 -!- ExtraSpice [~ExtraSpic@78-62-86-161.static.zebra.lt] has joined #go-nuts
18:29 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has joined #go-nuts
18:34 -!- rv2733 [~rv2733@c-98-242-168-49.hsd1.fl.comcast.net] has quit [Quit:
Leaving]
18:36 < smw> Is there any way to call go code from C?
18:40 < rsaarelm> I don't think so.  It's on the roadmap.
18:43 < i__> i think this was added a month of so ago
18:43 < i__> there is an example here:
http://cheesesun.blogspot.com/2010/04/callbacks-in-cgo.html
18:46 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has joined #go-nuts
18:53 -!- slashus2 [~slashus2@74-137-24-74.dhcp.insightbb.com] has quit [Quit:
slashus2]
18:56 < Eko> smw: I am not expecting it any time soon, nor do I really think
that it's a good idea.  Go code has a garbage collector and a lot of smarts
under-the-scenes, most of which doesn't really map well with C. I would recommend
making a Go server on a unix socket (or TCP) and doing JSON RPCs with Go if you
must, though in the case where I was about to do that I decided to rewrite the
whole thing in Go.
18:57 < smw> Eko, What I really want to see is if I can make python modules
with it :-).
18:57 -!- napsy [~luka@88.200.96.14] has quit [Ping timeout: 276 seconds]
18:58 -!- napsy [~luka@88.200.96.14] has joined #go-nuts
18:58 < Eko> lol, I find Go much more sensible than Python, so if I happened
to have any python code lying around I'd probably end up rewriting it in Go
anyway.  But I have an unusual aversion to Python, so whatever ^_^
19:03 -!- Tiger_ [~chatzilla@74.115.5.42] has joined #go-nuts
19:03 -!- i__ [~none@unaffiliated/i--/x-3618442] has quit [Quit: leaving]
19:06 < plexdev> http://is.gd/cDSyj by [Rob Pike] in go/doc/ -- tutorial:
fix one-word mistake in echo example
19:08 -!- tvw [~tv@e176001168.adsl.alicedsl.de] has joined #go-nuts
19:08 -!- napsy [~luka@88.200.96.14] has quit [Quit: Lost terminal]
19:11 < kmeyer> Eko: protobuf calls are probably a little faster if you
don't need the generality of json
19:24 -!- nixness [~dsc@78.101.160.66] has joined #go-nuts
19:24 -!- General13372 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has joined
#go-nuts
19:27 -!- i__ [~none@unaffiliated/i--/x-3618442] has joined #go-nuts
19:28 -!- General1337 [~support@71-84-50-230.dhcp.mtpk.ca.charter.com] has quit
[Ping timeout: 272 seconds]
19:35 -!- lmoura_ [~lmoura@187.78.33.11] has joined #go-nuts
19:36 < Eko> kmeyer: true.  I was thinking standard distribution though.
19:36 < kmeyer> Ah
19:36 < kmeyer> good thinking :)
19:38 -!- gisikw [~gisikw@173-138-130-230.pools.spcsdns.net] has joined #go-nuts
19:38 -!- werdan7 [~w7@freenode/staff/wikimedia.werdan7] has joined #go-nuts
19:50 -!- Tiger__ [~chatzilla@222.73.189.44] has joined #go-nuts
19:52 -!- Tiger_ [~chatzilla@74.115.5.42] has quit [Ping timeout: 260 seconds]
19:57 -!- smw [~smw@pool-96-232-88-231.nycmny.fios.verizon.net] has quit [Ping
timeout: 265 seconds]
20:00 -!- gnuvince [~vince@64.235.207.54] has quit [Ping timeout: 240 seconds]
20:02 -!- lmoura_ [~lmoura@187.78.33.11] has quit [Quit: Leaving]
20:12 -!- nixness [~dsc@78.101.160.66] has left #go-nuts []
20:17 -!- tux21b [~christoph@90.146.60.30] has quit [Read error: Operation timed
out]
20:25 -!- Project_2501 [~Marvin@82.84.95.75] has joined #go-nuts
20:26 -!- gisikw [~gisikw@173-138-130-230.pools.spcsdns.net] has quit [Quit:
gisikw]
20:31 -!- Tiger__ [~chatzilla@222.73.189.44] has quit [Remote host closed the
connection]
20:44 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has quit [Ping timeout:
264 seconds]
20:46 -!- cco3 [~conley@user-64-9-234-189.googlewifi.com] has quit [Ping timeout:
265 seconds]
20:46 -!- Wiz126 [~Wiz126@70.15.26.13.res-cmts.sm.ptd.net] has joined #go-nuts
20:46 -!- tumdum [~tumdum@unaffiliated/tumdum] has quit [Quit: tumdum]
20:49 -!- ExtraSpice [~ExtraSpic@78-62-86-161.static.zebra.lt] has quit [Quit:
Leaving]
21:00 -!- noam__ [~noam@77.127.56.202] has quit [Read error: Connection reset by
peer]
21:00 -!- noam__ [~noam@77.127.56.202] has joined #go-nuts
21:08 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
21:09 -!- marsu [~marsu@47.110.202-77.rev.gaoland.net] has joined #go-nuts
21:09 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
21:14 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
21:14 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
21:16 -!- bortzmeyer [~stephane@2a01:e35:8bd9:8bb0:bdb6:6b49:6bee:3c56] has quit
[Quit: Leaving.]
21:22 -!- smw [~smw@pool-96-232-88-231.nycmny.fios.verizon.net] has joined
#go-nuts
21:22 -!- Project_2501 [~Marvin@82.84.95.75] has quit [Quit: E se abbasso questa
leva che succ...]
21:29 -!- thomas_b [~thomasb@cm-84.215.37.40.getinternet.no] has quit [Quit:
leaving]
21:54 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
21:55 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
22:10 -!- Adys [~Adys@unaffiliated/adys] has quit [Ping timeout: 265 seconds]
22:11 -!- Surma [~surma@91-64-31-88-dynip.superkabel.de] has quit [Quit: Leaving.]
22:12 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
22:13 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
22:13 -!- ShadowIce [pyoro@unaffiliated/shadowice-x841044] has quit [Quit:
Verlassend]
22:17 -!- AndrewBC [~AndrewBC@97.93.232.247] has joined #go-nuts
22:19 -!- boscop [~boscop@g226230036.adsl.alicedsl.de] has quit [Ping timeout: 240
seconds]
22:20 -!- micrypt [~micrypt@94-195-127-212.zone9.bethere.co.uk] has joined
#go-nuts
22:23 -!- thomas_b [~thomasb@cm-84.215.37.40.getinternet.no] has joined #go-nuts
22:23 -!- abunner [~abunner@c-71-198-231-134.hsd1.ca.comcast.net] has joined
#go-nuts
22:23 -!- boscop [~boscop@g230088099.adsl.alicedsl.de] has joined #go-nuts
22:23 -!- Adys [~Adys@unaffiliated/adys] has joined #go-nuts
22:25 -!- cco3 [~conley@c-69-181-138-209.hsd1.ca.comcast.net] has joined #go-nuts
22:29 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
22:29 -!- KinOfCain [~KinOfCain@rrcs-64-183-61-2.west.biz.rr.com] has quit [Remote
host closed the connection]
22:30 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
22:41 -!- Ginto8 [~Ginto8@pool-72-82-235-34.cmdnnj.fios.verizon.net] has quit
[Read error: Connection reset by peer]
23:04 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by
services]
23:04 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
23:05 -!- zozoR [~zozoR@0x5da69cf2.cpe.ge-0-1-0-1105.hsnqu1.customer.tele.dk] has
quit [Quit: Morten.  Desu~]
23:07 -!- krad [~krad@unaffiliated/krad] has joined #go-nuts
23:13 -!- unhygienix [~unhygieni@host86-181-214-57.range86-181.btcentralplus.com]
has joined #go-nuts
23:26 < exch>
http://www.ft.com/cms/s/2/d2f3f04e-6ccf-11df-91c8-00144feab49a.html interesting
23:27 < exch> "Google ditches Windows on security concerns"
23:28 < Soultaker> I doubt they'll stop using Windows completely.
23:29 < exch> “Getting a new Windows machine now requires CIO approval,”
sounds like a serious decision
23:30 < Soultaker> so all developers working on Chrome, Picasa, Google Earth
and all the other Windows software Google makes have to switch to Linux?
23:30 < Soultaker> that sounds hard to believe.
23:31 < exch> dunno.  I'm guessing they will have access to windows machines
for dev purposes
23:31 < exch> Even if only through a VM
23:31 < exch> in a sandboxed environment it doesn't really matter
23:32 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has quit [Read error:
Connection reset by peer]
23:32 -!- vsayer [~vivek@c-24-130-25-47.hsd1.ca.comcast.net] has joined #go-nuts
23:32 < Soultaker> it makes no sense to me to shield your developers from
the platform they are meant to support
23:33 < Soultaker> but what do I know...  I don't have multi billion dollar
company :)
23:33 < exch> If it involves the security of company secrets, they'll prolly
go to significant length
23:35 < Soultaker> I doubt everyone has access to top secret information...
23:36 < Soultaker> but good news for Linux I guess :)
23:36 < Soultaker> unless all those Windows users are going to switch to
Macs instead..
23:37 < exch> i see that (Mac use) happening sooner than everyone switching
to linux i'm afraid
23:39 < Soultaker> I never got that.  What self-respecting hacker
voluntarily runs a locked down propietary OS which has as its main feature that it
looks pretty?
23:39 < exch> as far as google's own OS goes, I have bad feeling it's going
to be no more than yet another shiny new skin over ubuntu.  I hope i'm wrong about
that though
23:39 < Soultaker> from what I've heard it just boots directly to the
browser
23:39 < Soultaker> and all your applications are on the web.
23:40 < Soultaker> I don't think it's a real substitute for a workstation
yet.
23:40 < exch> ah yes.  the cloud approach.  Not sure how useful that is for
desktop use.  Nice for a netbook though
23:41 < Soultaker> completely agreed :) on a netbook it makes a lot of
sense.
23:41 -!- kanru [~kanru@61-228-160-146.dynamic.hinet.net] has joined #go-nuts
23:41 < Soultaker> although I'd want to have a terminal on my netbook too :/
23:41 < Soultaker> but I'm not the typical netbook user I suppose.
23:52 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 240
seconds]
23:55 -!- samferry [sam@atheme/member/samferry] has joined #go-nuts
23:57 -!- sladegen [~nemo@unaffiliated/sladegen] has joined #go-nuts
--- Log closed Sun Jun 06 00:00:01 2010