globalkeith has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
NeverDie has joined #crystal-lang
glenab has joined #crystal-lang
leafybasil has quit [Remote host closed the connection]
canhtak has joined #crystal-lang
elia has quit [Quit: Computer has gone to sleep.]
tomchapin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Cidan is now known as zz_Cidan
NeverDie has joined #crystal-lang
zz_Cidan is now known as Cidan
Cidan is now known as zz_Cidan
canhtak has quit [Quit: canhtak]
glenab has quit [Remote host closed the connection]
glenab has joined #crystal-lang
glenab has quit [Remote host closed the connection]
BlaXpirit has joined #crystal-lang
ssvb has quit [Ping timeout: 272 seconds]
blue_deref has quit [Quit: Taking myself out of hear.]
A124 has quit [Read error: No route to host]
A124 has joined #crystal-lang
trapped has joined #crystal-lang
Ven has joined #crystal-lang
trapped has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
trapped has joined #crystal-lang
trapped has quit [Client Quit]
NeverDie has joined #crystal-lang
Ven has joined #crystal-lang
globalkeith has joined #crystal-lang
globalkeith has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gamemanj has joined #crystal-lang
globalkeith has joined #crystal-lang
canhtak has joined #crystal-lang
reed_ has joined #crystal-lang
ssvb has joined #crystal-lang
Ven has quit [Read error: Connection reset by peer]
Ven has joined #crystal-lang
Ven has quit [Read error: Connection reset by peer]
Ven has joined #crystal-lang
Ven has quit [Read error: Connection reset by peer]
Ven has joined #crystal-lang
Ven has quit [Read error: Connection reset by peer]
Ven has joined #crystal-lang
Ven has quit [Read error: Connection reset by peer]
Ven has joined #crystal-lang
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ven has joined #crystal-lang
benoist has joined #crystal-lang
leafybasil has joined #crystal-lang
globalkeith has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
canhtak has quit [Quit: canhtak]
edaaa_ has joined #crystal-lang
canhtak has joined #crystal-lang
globalkeith has joined #crystal-lang
elia has joined #crystal-lang
globalkeith has quit [Ping timeout: 260 seconds]
benoist has quit [Remote host closed the connection]
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
benoist has joined #crystal-lang
benoist has quit [Remote host closed the connection]
benoist has joined #crystal-lang
benoist_ has joined #crystal-lang
benoist has quit [Read error: Connection reset by peer]
reed_ has quit [Ping timeout: 250 seconds]
nakilon has joined #crystal-lang
ssvb has quit [Ping timeout: 252 seconds]
elia has quit [Quit: Computer has gone to sleep.]
benoist_ has quit [Read error: Connection reset by peer]
benoist has joined #crystal-lang
elia has joined #crystal-lang
elia has quit [Client Quit]
elia has joined #crystal-lang
elia has quit [Client Quit]
Tetsumi has joined #crystal-lang
benoist has quit [Remote host closed the connection]
Ven has joined #crystal-lang
leafybasil has quit [Remote host closed the connection]
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
trapped has joined #crystal-lang
Ven has joined #crystal-lang
leafybasil has joined #crystal-lang
leafybas_ has joined #crystal-lang
leafybas_ has quit [Remote host closed the connection]
leafybas_ has joined #crystal-lang
leafybasil has quit [Read error: Connection reset by peer]
leafybas_ has quit [Read error: Connection reset by peer]
leafybasil has joined #crystal-lang
trapped has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ssvb has joined #crystal-lang
edaaa_ has quit [Ping timeout: 250 seconds]
benoist has joined #crystal-lang
trapped has joined #crystal-lang
Ven has joined #crystal-lang
benoist has quit [Remote host closed the connection]
benoist has joined #crystal-lang
pawnbox has joined #crystal-lang
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dom96 has quit [Changing host]
dom96 has joined #crystal-lang
nakilon has quit [Ping timeout: 260 seconds]
Ven has joined #crystal-lang
benoist has quit [Remote host closed the connection]
benoist has joined #crystal-lang
benoist_ has joined #crystal-lang
benoist has quit [Ping timeout: 252 seconds]
benoist_ has quit [Remote host closed the connection]
benoist has joined #crystal-lang
nakilon has joined #crystal-lang
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ven has joined #crystal-lang
benoist has quit [Remote host closed the connection]
benoist has joined #crystal-lang
dylanmei has joined #crystal-lang
reed_ has joined #crystal-lang
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
circ-user-biPkM has joined #crystal-lang
canhtak has quit [Quit: canhtak]
Ven has joined #crystal-lang
trapped has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<
crystal-gh>
[crystal] adlerhsieh opened pull request #1813: Fix typo and improve style in String class (master...add-doc-2)
http://git.io/vWubb
<
crystal-gh>
crystal/master 12bfe37 Adler: fix typo and improve style in String class [ci skip]
<
crystal-gh>
crystal/master e77ec6c Jonne Haß: Merge pull request #1813 from adlerhsieh/add-doc-2...
<
crystal-gh>
crystal/master b60910d Krisztián Ádám: Add Char#+(str : String)...
circ-user-biPkM has quit [Ping timeout: 265 seconds]
reed_ has quit [Ping timeout: 268 seconds]
canhtak has joined #crystal-lang
benoist_ has joined #crystal-lang
circ-user-biPkM has joined #crystal-lang
benoist has quit [Ping timeout: 250 seconds]
glenab has joined #crystal-lang
<
pawnbox>
How to create hash with key string and value hash?
Ven has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<
pawnbox>
This obviously didn't work.
<
pawnbox>
> env = {} of String => {} of String => String
<
pawnbox>
>> env = {} of String => {} of String => String
<
jhass>
>> {} of String => String => String
<
jhass>
worth a shot
<
jhass>
>> {} of String => (String => String)
<
jhass>
>> {} of String => Hash(String, String)
<
pawnbox>
jhass: isn't Hash(String, String) same as {} of String => String
<
jhass>
pawnbox: no, Hash(String, String).new is the same as {} of String => String
glenab has quit [Remote host closed the connection]
glenab has joined #crystal-lang
Tetsumi has quit [Quit: Leaving]
<
crystal-gh>
[crystal] adlerhsieh opened pull request #1814: Remove tap in Mac Homebrew installation (gh-pages...gh-pages)
http://git.io/vWzO4
<
crystal-gh>
[crystal] jhass closed pull request #1814: Remove tap in Mac Homebrew installation (gh-pages...gh-pages)
http://git.io/vWzO4
benoist_ has quit [Remote host closed the connection]
benoist has joined #crystal-lang
benoist has quit [Remote host closed the connection]
benoist has joined #crystal-lang
benoist has quit [Remote host closed the connection]
benoist has joined #crystal-lang
nakilon has quit [Ping timeout: 246 seconds]
reed_ has joined #crystal-lang
trapped has joined #crystal-lang
circ-user-biPkM has quit [Ping timeout: 250 seconds]
benoist_ has joined #crystal-lang
benoist has quit [Ping timeout: 252 seconds]
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #crystal-lang
glenab has quit [Remote host closed the connection]
elia has joined #crystal-lang
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #crystal-lang
glenab has joined #crystal-lang
<
RX14>
ok, when I last checked, if you tried to use IO in a system thread, you got a segfault... that still happens right?
<
jhass>
well, last time I checked I got some exception
<
RX14>
then, we are still far away from fibers beeng on multiple cores :C
glenab has quit [Remote host closed the connection]
trapped has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
elia_ has joined #crystal-lang
elia has quit [Ping timeout: 250 seconds]
<
crystal-gh>
[crystal] davydovanton opened pull request #1815: Fix typo in "Codegen: is_a?" spec file (master...doc-spec-is-a-typo)
http://git.io/vWzoc
<
crystal-gh>
[crystal] jhass closed pull request #1815: Fix typo in "Codegen: is_a?" spec file (master...doc-spec-is-a-typo)
http://git.io/vWzoc
benoist_ has quit [Remote host closed the connection]
benoist has joined #crystal-lang
pawnbox has quit [Remote host closed the connection]
pawnbox has joined #crystal-lang
pawnbox has quit [Ping timeout: 250 seconds]
benoist has quit [Remote host closed the connection]
blue_deref has joined #crystal-lang
NeverDie has joined #crystal-lang
glenab has joined #crystal-lang
glenab has quit [Remote host closed the connection]
glenab has joined #crystal-lang
benoist has joined #crystal-lang
reed_ has quit [Ping timeout: 240 seconds]
canhtak has quit [Quit: canhtak]
glenab has quit [Remote host closed the connection]
glenab has joined #crystal-lang
edaaa_ has joined #crystal-lang
benoist has quit [Remote host closed the connection]
fowlduck has joined #crystal-lang
elia_ has quit [Quit: Computer has gone to sleep.]
elia has joined #crystal-lang
gamemanj has quit [Ping timeout: 250 seconds]
nakilon has joined #crystal-lang
circ-user-biPkM has joined #crystal-lang
glenab has quit [Remote host closed the connection]
kgadek has joined #crystal-lang
glenab has joined #crystal-lang
glenab has quit [Remote host closed the connection]
zz_Cidan is now known as Cidan
fowlduck has quit [Remote host closed the connection]
ssvb has quit [Ping timeout: 256 seconds]
BlaXpirit has quit [Remote host closed the connection]
BlaXpirit|m has joined #crystal-lang
vikaton has joined #crystal-lang
<
vikaton>
be sure to follow @shardscrystal for latest Crystal projects on GitHub :)))
<
BlaXpirit|m>
dbus never was there i think :|
nakilon has quit [Ping timeout: 250 seconds]
BlaXpirit|m has quit [Quit: AndChat]
glenab has joined #crystal-lang
ssvb has joined #crystal-lang
circ-user-biPkM has quit [Ping timeout: 240 seconds]
glenab has quit [Remote host closed the connection]
Cidan is now known as zz_Cidan
glenab has joined #crystal-lang
glenab has quit [Remote host closed the connection]
glenab has joined #crystal-lang
elia has quit [Quit: Computer has gone to sleep.]
glenab has quit [Remote host closed the connection]
edaaa_ has quit [Remote host closed the connection]
<
crystal-gh>
[crystal] waterlink opened pull request #1816: Add HTTP::Request#body_params (master...add-body-params-to-http-request)
http://git.io/vWgg7
Tetsumi has joined #crystal-lang
nakilon has joined #crystal-lang
<
Tetsumi>
How can i build a string from an array of Char ?
<
jhass>
Tetsumi: Crystal array or C array?
<
Tetsumi>
crystal array: [] of Char
<
jhass>
>> ['a', 'b', 'c'].join
<
Tetsumi>
wouldn't be more intuitive if String had a constructor for Array(Char) so one could do String(['a', 'b', 'c']) ?
<
jhass>
that would be calling the method String
<
jhass>
but I wouldn't say so, join works for any kind of array
<
jhass>
it simply calls to_s on the elements, which is defined for all objects