baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.5.0, 2.4.3, 2.3.6: https://www.ruby-lang.org || Paste >3 lines of text to: https://gist.github.com || Rails questions? Ask in: #RubyOnRails || Logs: https://irclog.whitequark.org/ruby || Books: https://goo.gl/wpGhoQ
alfiemax has quit [Ping timeout: 256 seconds]
clemens3 has quit [Ping timeout: 256 seconds]
\void has quit [Quit: So long, and thanks for all the fish.]
gingray has quit [Remote host closed the connection]
arescorpio has joined #ruby
beauby has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
<havenwood> Sammitch: When something has already been required it returns `false`.
beauby has quit [Ping timeout: 268 seconds]
<Sammitch> havenwood: yes that does seem to be the case. =_=;
RougeR has quit [Ping timeout: 240 seconds]
dinfuehr has quit [Ping timeout: 256 seconds]
dinfuehr has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
guest2 has quit [Read error: Connection reset by peer]
redlegion has quit [Quit: WeeChat 2.0.1]
naprimer has quit [Ping timeout: 240 seconds]
Sammitch has left #ruby [#ruby]
redlegion has joined #ruby
naprimer has joined #ruby
sameerynho has quit [Ping timeout: 260 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
despai has quit [Quit: ...]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
dviola has joined #ruby
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
Rgs1955 has joined #ruby
rapha has joined #ruby
<rapha> hi!
<havenwood> rapha: hi!
<rapha> is there any way to make something like '"x#{3.times {"a"}}y"' output "xaaay" instead of "x3y"?
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
<havenwood> rapha: Consider the following:
<lupine> 3.times.map { "a" } returns ["a", "a", "a"]
<havenwood> >> 3.times { 'a' }
<ruby[bot]> havenwood: # => 3 (https://eval.in/963909)
<lupine> it's abit weird though
<havenwood> >> 3.times.map { 'a' }
<ruby[bot]> havenwood: # => ["a", "a", "a"] (https://eval.in/963910)
<rapha> hmm
<rapha> i had a hunch map() would be involved
* rapha hates map(), it's like magic
<havenwood> rapha: There's no magic. It's worth learning.
<havenwood> rapha: There are also many other ways to get three A's.
<rapha> easier said than done
<havenwood> >> 'a' * 3
<ruby[bot]> havenwood: # => "aaa" (https://eval.in/963913)
<rapha> is it possible that it's name is misleading? or that my understanding of the english word "map" ("to map" in the sense of "to map something onto something"?) is erroneous?
<havenwood> >> "x#{'a' * 3}rapha"
<ruby[bot]> havenwood: # => "xaaarapha" (https://eval.in/963914)
<rapha> well, the 'a'*3 thing at least is easy to understand and intuitive :)
jottr has joined #ruby
<havenwood> rapha: In Ruby we have #map (from Lisp) and the lesser-used #collect alias (from Smalltalk).
<mistym> havenwood: Oh, that's what the etymology is! I'd wondered.
<havenwood> rapha: Most modern language (ahem, Go >.>) have adopted map.
talntid has joined #ruby
<rapha> hmm
<havenwood> rapha: The Lispy terms have won. Similarly #inject is from Smalltalk and #reduce is from Lisp.
<rapha> interesting, i didn't realize programming languages were that much like real languages
<havenwood> rapha: We map/reduce instead of collect/inject ;-).
kapil___ has quit [Quit: Connection closed for inactivity]
John_Ivan has quit [Read error: Connection reset by peer]
<lupine> if you don't give `times` a block, it returns an Enumerator
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
<havenwood> mistym: Most of the Smalltalk terms seem to be disappearing.
<lupine> that's the only magic worth mentioning
<mistym> havenwood: :'(
<talntid> I have an app that was written in ruby.. it's a webapp with Sinatra/Mongo ... it was working perfect until yesterday, where it just stopped working, and started complaining that gems were missing... I reinstalled the gems, and now I get errors that I suspect are from gem versions being off.... anyone want to fix it today? or help me fix it? It mostly works, but there are some small issues right
<talntid> now. I'd be willing to pay for your time.
<havenwood> Ruby is the Smalltalk that won. :-O
<lupine> lol
<rapha> i wonder what'll happen if i /join #smalltalk and declare "ruby is t he smalltalk that won"
redlegion has quit [Remote host closed the connection]
jottr_ has quit [Ping timeout: 240 seconds]
<havenwood> talntid: Prefix your command with `bundle exec`. Donate what you'd have paid me to the EFF. ;-)
<havenwood> rapha: Good luck!!
redlegion has joined #ruby
redlegion has joined #ruby
redlegion has quit [Changing host]
workmad3 has joined #ruby
<havenwood> rapha: And please don't quote me, hahaha.
redlegion has quit [Remote host closed the connection]
<lupine> I learned about wolf pack programming from a smalltalk veteran
<rapha> (will they send me to /join #go-lang to learn that "go is the ruby that won"?)
<lupine> worthy of respect innit
<havenwood> rapha: Matz does like Go.
houhoulis has quit [Remote host closed the connection]
<talntid> havenwood, i had tried that earlier today. threw a bunch of errors about versions, so I manually installed all the gems in the gemfile, and the app works, but basically a few things are wonky...
<havenwood> talntid: Same Ruby version as before?
<rapha> seriously? "[wolf pack programming] depends on a shared (web-based) editor that several developers use at once to develop code for the same tasks"? i'd go crazy!
<talntid> negative. I upgraded ruby version afterwards in an attempt to get it working.
<havenwood> talntid: I'm curious if `bundle exec` would have sufficed and the Ruby upgrade is the cause of the new compatibility issues. I suppose it's nice to fix those issues and get on the shiny new Ruby.
<talntid> it started by saying thin wasn't available, so i did bundler install, and it said that eventmachine wasn't compatible with version of ruby, so i upgraded ruby, and then it said that mongo's "wire line" was version 0, but needed to be version 2, so i upgraded mongo, and now the app works, but.... when it returns ids, it is returning them as objects instead of stringsd
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
Rgs1955 has quit [Quit: Page closed]
<havenwood> talntid: Can you just .to_s the objects or something else is awry? I don't follow Mongo close enough to know what might have gone wrong in the version bump.
workmad3 has quit [Ping timeout: 240 seconds]
<talntid> and now the app loads and everything, but... when i click something that used to work:
cschneid has joined #ruby
<talntid> so basically, i assume the view is trying to show info on an "appointment" object, that it can't find, because ruby is looking for appointment(id) where id is an object instead of a string
sylario has quit [Quit: Connection closed for inactivity]
tvw has quit [Ping timeout: 265 seconds]
alfiemax has joined #ruby
bkxd has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
alfiemax has quit [Ping timeout: 240 seconds]
redlegion has joined #ruby
redlegion has joined #ruby
redlegion has quit [Changing host]
bkxd has quit [Ping timeout: 245 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
bkxd has joined #ruby
bkxd has quit [Ping timeout: 240 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
redlegion has quit [Quit: WeeChat 2.0.1]
redlegion has joined #ruby
talntid has quit [Changing host]
talntid has joined #ruby
alfiemax has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
<arahael> Where is the documentation for writing files?
<arahael> I'm looking at: https://ruby-doc.org/core-2.1.4/File.html <-- However, it appears that the 'write' method is not documented there.
alfiemax has quit [Ping timeout: 245 seconds]
mistergibson has quit [Quit: Leaving]
KeyJoo has quit [Ping timeout: 240 seconds]
<havenwood> &ri IO.write
<havenwood> arahael: ^
<havenwood> arahael: You can ask Ruby where the method comes from, by the way!
<havenwood> >> File.method(:write).owner
<ruby[bot]> havenwood: # => #<Class:IO> (https://eval.in/963941)
<arahael> havenwood: Hmm, what I was really after, was how to figure that out for myself. How should I know that it's part of IO.write?
<arahael> Ah, you read my mind.
<havenwood> >> File.method(:write).source_location
<ruby[bot]> havenwood: # => nil (https://eval.in/963942)
<havenwood> (C methods don't show source location yet, unfortunately.)
<arahael> It will do - thans.
<arahael> *thanks
<havenwood> arahael: you're welcome, happy coding!
<arahael> np
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mjolnird has quit [Quit: Leaving]
sanscoeur has quit [Remote host closed the connection]
sanscoeur has joined #ruby
mjolnird has joined #ruby
mjolnird has quit [Remote host closed the connection]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
sanscoeur has quit [Ping timeout: 252 seconds]
alfiemax has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
alfiemax has quit [Ping timeout: 240 seconds]
nofxx has quit [Remote host closed the connection]
nofxx has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
cdg has joined #ruby
cdg_ has quit [Ping timeout: 240 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
cdg has quit [Ping timeout: 256 seconds]
nchambers has quit [Quit: So long and thanks for all the fish!]
nchambers has joined #ruby
RougeR has quit [Ping timeout: 240 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
alfiemax has joined #ruby
mjolnird has joined #ruby
cdg has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
alfiemax has quit [Ping timeout: 256 seconds]
cdg has quit [Ping timeout: 245 seconds]
orbyt_ has joined #ruby
mjolnird has quit [Remote host closed the connection]
mjolnird has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
maum has joined #ruby
alfiemax has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
alfiemax has quit [Ping timeout: 240 seconds]
bkxd has joined #ruby
ResidentBiscuit has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
bkxd has quit [Ping timeout: 240 seconds]
marr has quit [Ping timeout: 256 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
alfiemax has joined #ruby
memo1 has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
gizmore has joined #ruby
herbmillerjr has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
postmodern has joined #ruby
jottr_ has joined #ruby
memo1 has quit [Ping timeout: 256 seconds]
gizmore|2 has quit [Ping timeout: 252 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
jottr has quit [Ping timeout: 260 seconds]
beauby has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
beauby has quit [Ping timeout: 260 seconds]
eckhardt_ has quit [Quit: Textual IRC Client: www.textualapp.com]
darkhanb has joined #ruby
reaVer_ has quit [Remote host closed the connection]
alfiemax has joined #ruby
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
memo1 has joined #ruby
sanscoeur has joined #ruby
ski7777 has quit [Ping timeout: 245 seconds]
alfiemax has quit [Ping timeout: 268 seconds]
zenspider_ has joined #ruby
<weaksauce> possible to read binary data from stdin?
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
ski7777 has joined #ruby
zenspider_ has quit [Client Quit]
<weaksauce> i guess so using unpack if stdin is just an io data
sanscoeur has quit [Ping timeout: 245 seconds]
reaVer has joined #ruby
bmurt has joined #ruby
ams__ has quit [Quit: Connection closed for inactivity]
sanscoeur has joined #ruby
GinoMan has quit [Quit: Leaving]
Asher has joined #ruby
jottr has joined #ruby
<Radar> weaksauce: cat binaryfile | ruby program.rb
<Radar> I guess it'd be the same?
<weaksauce> Radar i actually meant from ruby not how to pipe binary
<Radar> ah ok
<weaksauce> just use read(somenumberofbytes).unpack(whatever_the_correct_unpack_string_is)
<weaksauce> ?
jottr_ has quit [Ping timeout: 256 seconds]
<Radar> Yeah I think so. Been a while since I've done that.
SynSynack has quit [Quit: Не разучиться мечтать... любить...]
SynSynack has joined #ruby
SynSynack has left #ruby [#ruby]
houhoulis has joined #ruby
workmad3 has joined #ruby
dinfuehr has quit [Ping timeout: 240 seconds]
dinfuehr has joined #ruby
workmad3 has quit [Ping timeout: 240 seconds]
cdg has joined #ruby
arescorpio has quit [Quit: Leaving.]
cdg has quit [Ping timeout: 252 seconds]
redlegion has quit [Quit: WeeChat 2.0.1]
redlegion has joined #ruby
ResidentBiscuit has quit []
meinside has quit [Quit: Connection closed for inactivity]
<talntid> ruby returning stuff to me like ["value"], i expected a string of "value" instead. ideas?
kn-928 has joined #ruby
<Radar> ?code
<ruby[bot]> We can't help you without your code, please post it to https://gist.github.com
<talntid> whats the best way to post code from many pages?
bmurt has quit [Ping timeout: 252 seconds]
bmurt has joined #ruby
c0ncealed has quit [Remote host closed the connection]
zenspider_ has joined #ruby
c0ncealed has joined #ruby
beauby has joined #ruby
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drewmcmillan has joined #ruby
beauby has quit [Ping timeout: 252 seconds]
marxarelli is now known as marxarelli|afk
houhoulis has quit [Remote host closed the connection]
alfiemax has joined #ruby
pastorinni has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 252 seconds]
reaVer has quit [Ping timeout: 240 seconds]
alfiemax has joined #ruby
bkxd has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
wojnar has joined #ruby
reaVer has joined #ruby
govg has joined #ruby
reaVer has quit [Ping timeout: 240 seconds]
bkxd has quit [Ping timeout: 248 seconds]
reaVer has joined #ruby
milardov_ has quit [Remote host closed the connection]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karapetyan has quit [Remote host closed the connection]
alfiemax has joined #ruby
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 268 seconds]
karapetyan has joined #ruby
reaVer has quit [Remote host closed the connection]
darkhanb has quit [Ping timeout: 245 seconds]
Sembei has quit [Ping timeout: 245 seconds]
MyMind has joined #ruby
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karapetyan has quit [Ping timeout: 256 seconds]
kn-928 has quit [Quit: WeeChat 2.0.1]
reaVer has joined #ruby
cdg has joined #ruby
alfiemax has joined #ruby
darkhanb has joined #ruby
alfiemax has quit [Ping timeout: 252 seconds]
Pisuke has joined #ruby
MyMind has quit [Ping timeout: 252 seconds]
zenspider_ has quit [Quit: bye]
alfiemax has joined #ruby
cdg has quit [Remote host closed the connection]
alfiemax_ has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
trautwein has joined #ruby
gix has joined #ruby
milardovich has joined #ruby
gix- has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
RushPL has quit [Ping timeout: 256 seconds]
wojnar has quit [Quit: Leaving]
milardovich has quit [Ping timeout: 252 seconds]
jeffreylevesque has joined #ruby
bkxd has joined #ruby
workmad3 has joined #ruby
eightlimbed has joined #ruby
jnollette has quit [Ping timeout: 255 seconds]
bkxd has quit [Ping timeout: 256 seconds]
workmad3 has quit [Ping timeout: 252 seconds]
kapil___ has joined #ruby
eightlimbed has quit [Remote host closed the connection]
<havenwood> ?gist talntid
<ruby[bot]> talntid: https://gist.github.com - Multiple files, syntax highlighting, even automatically with matching filenames, can be edited
alfiemax_ has quit [Remote host closed the connection]
alfiemax has joined #ruby
alfiemax has quit [Remote host closed the connection]
jnollette has joined #ruby
Pisuke has quit [Ping timeout: 245 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
iMadper has joined #ruby
<Vashy> anyone know how I can check if something is installed from a ruby script? e.g. if I want to write a script that checks to see if postgres is installed
jottr has quit [Ping timeout: 240 seconds]
troys has quit [Ping timeout: 252 seconds]
<Vashy> I want to write a script that will help me set up projects easily, so it will do some set up like check if postgres is installed, create a rails app, set the db credentials properly, etc
AxelAlex has joined #ruby
<Vashy> my machines are running ubuntu and macos so I'll have terminal commands to work with
anisha has joined #ruby
anisha has quit [Client Quit]
jenrzzz has quit [Ping timeout: 240 seconds]
rippa has joined #ruby
anisha has joined #ruby
memo1 has quit [Ping timeout: 260 seconds]
nchambers is now known as uplime
uplime is now known as nchambers
Pisuke has joined #ruby
milardovich has joined #ruby
alex`` has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jamesaxl has joined #ruby
milardovich has quit [Ping timeout: 248 seconds]
howdoi has joined #ruby
<havenwood> Vashy: Chef or Puppet do those sorts of things.
ramfjord has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
<Vashy> ok I'll read into those tools
ramfjord has quit [Ping timeout: 252 seconds]
bkxd has joined #ruby
duderonomy has joined #ruby
duderonomy is now known as Guest85770
sidx64 has joined #ruby
sidx64 has quit [Client Quit]
sidx64 has joined #ruby
ramfjord has joined #ruby
bkxd has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kies has joined #ruby
sidx64 has joined #ruby
ramfjord has joined #ruby
sidx64 has quit [Client Quit]
jottr has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
ramfjord has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
darkhanb has quit [Ping timeout: 248 seconds]
ramfjord has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
Guest85770 has quit [Quit: Textual IRC Client: www.textualapp.com]
jottr has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
AxelAlex has quit [Quit: AxelAlex]
sidx64 has joined #ruby
ramfjord has joined #ruby
sidx64 has quit [Client Quit]
jottr has quit [Ping timeout: 248 seconds]
sidx64 has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
sidx64 has quit [Client Quit]
ski7777 has quit [Ping timeout: 260 seconds]
ramfjord has joined #ruby
sidx64 has joined #ruby
jottr has joined #ruby
ramfjord has quit [Ping timeout: 252 seconds]
ski7777 has joined #ruby
mtkd has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
nielsk_ has quit [Ping timeout: 276 seconds]
ski7777 has quit [Ping timeout: 256 seconds]
nielsk has joined #ruby
jottr has joined #ruby
ramfjord has joined #ruby
CrazyEddy has quit [Ping timeout: 256 seconds]
aufi has joined #ruby
pwnd_nsfw` has joined #ruby
workmad3 has joined #ruby
LocaMocha has joined #ruby
jottr has quit [Ping timeout: 276 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
UncleCid__ has joined #ruby
oleo has quit [Quit: Leaving]
strika has joined #ruby
ramfjord has joined #ruby
ta_ has quit [Remote host closed the connection]
CrazyEddy has joined #ruby
ta_ has joined #ruby
pwnd_nsfw has quit [Ping timeout: 268 seconds]
workmad3 has quit [Ping timeout: 245 seconds]
pwnd_nsfw` has quit [Ping timeout: 245 seconds]
strika has quit [Quit: [BX] Abort Retry Fail]
ramfjord has quit [Ping timeout: 248 seconds]
minimalism has joined #ruby
ta_ has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
strika has joined #ruby
ski7777 has joined #ruby
KeyJoo has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
dviola has quit [Quit: WeeChat 2.0.1]
kapil___ has quit [Quit: Connection closed for inactivity]
strika has quit [Quit: leaving]
strika has joined #ruby
jottr has joined #ruby
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sidx64 has joined #ruby
jottr has quit [Ping timeout: 252 seconds]
apeiros has quit [Remote host closed the connection]
mtkd has quit []
sidx64 has quit [Read error: Connection reset by peer]
sidx64 has joined #ruby
mtkd has joined #ruby
n008f4g_ has joined #ruby
sidx64 has quit [Client Quit]
jottr has joined #ruby
milardovich has joined #ruby
jottr has quit [Ping timeout: 260 seconds]
milardovich has quit [Ping timeout: 240 seconds]
AJA4350 has quit [Quit: AJA4350]
darkhanb has joined #ruby
guardianx has joined #ruby
tolland has joined #ruby
andikr has joined #ruby
jottr has joined #ruby
ryzokuken has joined #ruby
KeyJoo has quit [Ping timeout: 252 seconds]
kapil___ has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
xt233 has joined #ruby
xt233 has left #ruby [#ruby]
<zenspider> rawr
conta has joined #ruby
dionysus69 has joined #ruby
jottr has joined #ruby
n008f4g_ has quit [Ping timeout: 245 seconds]
Gabemo has quit [Ping timeout: 240 seconds]
jottr has quit [Ping timeout: 256 seconds]
jottr has joined #ruby
guardianx has quit []
mtkd has quit []
jottr has quit [Ping timeout: 268 seconds]
mtkd has joined #ruby
Qchmqs__ has joined #ruby
zenspider has quit [Quit: bye]
zenspider has joined #ruby
Gabemo has joined #ruby
jottr has joined #ruby
terens has joined #ruby
rahul_bajaj has joined #ruby
Gabemo has quit [Ping timeout: 256 seconds]
jottr has quit [Ping timeout: 240 seconds]
<terens> If you used version.match(/^\d\.\d\.\d/) would you change it with Gem::Version.corrent?(data) ?
Qchmqs__ is now known as Qchmqs
willmichael has quit [Ping timeout: 245 seconds]
rabajaj has quit [Ping timeout: 276 seconds]
willmichael has joined #ruby
ta_ has joined #ruby
alex`` has quit [Ping timeout: 245 seconds]
rabajaj has joined #ruby
bkxd has joined #ruby
sidx64 has joined #ruby
rahul_bajaj has quit [Ping timeout: 240 seconds]
jottr has joined #ruby
funnel has quit [Ping timeout: 256 seconds]
hahuang65 has joined #ruby
cdg has joined #ruby
clemens3 has joined #ruby
maum has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 240 seconds]
funnel has joined #ruby
Burgestrand has joined #ruby
alex`` has joined #ruby
schneider has joined #ruby
willmichael has quit [Read error: Connection reset by peer]
willmichael has joined #ruby
cdg has quit [Ping timeout: 245 seconds]
Qchmqs has left #ruby ["Konversation terminated!"]
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has quit [Ping timeout: 240 seconds]
sidx64 has joined #ruby
jottr has joined #ruby
sidx64 has quit [Client Quit]
bkxd has joined #ruby
claudiuinberlin has joined #ruby
sidx64 has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 276 seconds]
jottr has quit [Ping timeout: 248 seconds]
alfiemax has joined #ruby
beauby has joined #ruby
bigblind has quit [Ping timeout: 240 seconds]
ryzokuken has quit [Ping timeout: 240 seconds]
Dimik has quit [Ping timeout: 248 seconds]
bigblind has joined #ruby
jottr has joined #ruby
beauby has quit [Ping timeout: 268 seconds]
jamesaxl has quit [Read error: Connection reset by peer]
vondruch has quit [Quit: vondruch]
vondruch has joined #ruby
vondruch has quit [Remote host closed the connection]
jamesaxl has joined #ruby
vondruch has joined #ruby
workmad3 has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
aupadhye has joined #ruby
aupadhye is now known as aupadhye|mtg
Fusselgesicht has joined #ruby
hahuang65 has quit [Quit: WeeChat 2.0.1]
alex`` has quit [Ping timeout: 240 seconds]
workmad3 has quit [Ping timeout: 256 seconds]
jottr has joined #ruby
TomyWork has joined #ruby
t0adst00l has joined #ruby
sleetdrop has joined #ruby
mtkd has quit []
alfiemax has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
jottr has quit [Ping timeout: 245 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
willmichael has quit [Ping timeout: 252 seconds]
willmichael has joined #ruby
ramfjord has joined #ruby
mtkd has joined #ruby
jottr has joined #ruby
roshanavand has joined #ruby
Sembei has joined #ruby
drewmcmillan has joined #ruby
drewmcmillan has quit [Client Quit]
milardovich has joined #ruby
Pisuke has quit [Ping timeout: 248 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
ramfjord has joined #ruby
guille-moe has joined #ruby
jottr has quit [Ping timeout: 248 seconds]
yohji has joined #ruby
milardovich has quit [Ping timeout: 245 seconds]
weaksauce has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 256 seconds]
jottr has joined #ruby
alfiemax has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
strika has quit [Quit: leaving]
sameerynho has joined #ruby
jottr has joined #ruby
dionysus69 has quit [Read error: Connection reset by peer]
dionysus69 has joined #ruby
dionysus69 has quit [Remote host closed the connection]
amatas has joined #ruby
dionysus69 has joined #ruby
jottr has quit [Ping timeout: 252 seconds]
mikecmpbll has joined #ruby
riotjones has joined #ruby
jottr has joined #ruby
sameerynho has quit [Ping timeout: 265 seconds]
jenrzzz has quit [Ping timeout: 265 seconds]
jottr has quit [Ping timeout: 248 seconds]
beauby has joined #ruby
Gabemo has joined #ruby
sameerynho has joined #ruby
mtkd has quit []
mtkd has joined #ruby
rahul_bajaj has joined #ruby
aupadhye_ has joined #ruby
eb0t- has quit [Read error: Connection reset by peer]
eb0t has quit [Read error: Connection reset by peer]
ramfjord has joined #ruby
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Matt2843 has joined #ruby
aupadhye|mtg has quit [Read error: Connection reset by peer]
<Matt2843> hey =) any good gems for getting my current longitude / latitude location?
<Matt2843> or services in general
rabajaj has quit [Read error: Connection reset by peer]
RougeR has joined #ruby
rabajaj has joined #ruby
eb0t has joined #ruby
eb0t- has joined #ruby
sleetdrop has quit [Quit: Computer has gone to sleep.]
aupadhye_ has quit [Ping timeout: 260 seconds]
rahul_bajaj has quit [Ping timeout: 252 seconds]
jottr has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
riotjoe has joined #ruby
ramfjord has joined #ruby
sleetdrop has joined #ruby
riotjones has quit [Ping timeout: 248 seconds]
sameerynho has quit [Ping timeout: 248 seconds]
jottr has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 256 seconds]
terens2 has joined #ruby
huyderman has joined #ruby
ramfjord has joined #ruby
huyderman has quit [Remote host closed the connection]
terens has quit [Ping timeout: 268 seconds]
t0adst00l has quit [Ping timeout: 255 seconds]
sidx64 has joined #ruby
sagax has joined #ruby
drewmcmillan has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
aupadhye_ has joined #ruby
sidx64 has quit [Client Quit]
cdg has joined #ruby
jottr has joined #ruby
Serpent7776 has joined #ruby
cdg has quit [Ping timeout: 245 seconds]
jottr has quit [Ping timeout: 240 seconds]
sidx64 has joined #ruby
bkxd has quit [Read error: Connection reset by peer]
sidx64 has quit [Client Quit]
jottr has joined #ruby
alex`` has joined #ruby
sidx64 has joined #ruby
Beams has joined #ruby
riotjones has joined #ruby
sylario has joined #ruby
riotjoe has quit [Ping timeout: 260 seconds]
bkxd has joined #ruby
riotjones has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 256 seconds]
riotjones has joined #ruby
jottr has joined #ruby
phaul has joined #ruby
ltt has joined #ruby
riotjones has quit [Ping timeout: 252 seconds]
InfinityFye has joined #ruby
karapetyan has joined #ruby
InfinityFye has left #ruby [#ruby]
jottr has quit [Ping timeout: 245 seconds]
Matt2843 has quit [Quit: Page closed]
jottr has joined #ruby
uruk1993 has joined #ruby
uruk1993 has left #ruby [#ruby]
morfin60 has joined #ruby
<morfin60> hello
<morfin60> any clue why can connection reset by peer happen in Net::HTTP with this message: "Internal Server Error: Connection reset by peer <internal:prelude>:78:in `__read_nonblock'"?
<morfin60> i perform first request using Faraday and then performing second and get this error
<trautwein> Matt2843: http://www.rubygeocoder.com/ might be what you're looking for
Bish has joined #ruby
hahuang65 has joined #ruby
<Bish> if i want to cache a function that does HugeString ⇒ EvenMoreHugeBinaryData
<Bish> would i use a hash function to index HugeString?
<Bish> (both are in kB) region, and i want to cache a function
jottr has quit [Ping timeout: 276 seconds]
<morfin60> weird
jottr has joined #ruby
marr has joined #ruby
anisha has quit [Ping timeout: 276 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jottr has quit [Ping timeout: 268 seconds]
RougeR has quit [Ping timeout: 252 seconds]
jottr has joined #ruby
<dminuoso> Bish: Hash.new { |h, k| h[k] = expensive_computation[k] }
<dminuoso> Bish: As a poor mans memoization solution.
<dminuoso> Bish: Note that this does not offer cache eviction though.
workmad3 has joined #ruby
alfiemax has quit [Remote host closed the connection]
anisha has joined #ruby
alfiemax has joined #ruby
jottr has quit [Ping timeout: 245 seconds]
<dminuoso> >> ex = -> e { e * 1000 }; memoized_ex = Hash.new { |h, k| h[k] = ex[k] }; a = memoized_ex[100]; p memoized_ex
<ruby[bot]> dminuoso: # => {100=>100000} ...check link for more (https://eval.in/964264)
Papierkorb has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
bkxd has quit [Ping timeout: 268 seconds]
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has joined #ruby
alfiemax has quit [Ping timeout: 245 seconds]
<dminuoso> >> memoize -> f { Hash.new { |h, k| h[k] = f[k] } }; expensive = -> e { e * 2000 }; cheap = memoize[expensive]; cheap[1000]; cheap[1000]; cheap[1000]
<ruby[bot]> dminuoso: # => undefined method `memoize' for main:Object (NoMethodError) ...check link for more (https://eval.in/964269)
<dminuoso> >> memoize = -> f { Hash.new { |h, k| h[k] = f[k] } }; expensive = -> e { e * 2000 }; cheap = memoize[expensive]; cheap[1000]; cheap[1000]; cheap[1000]
<ruby[bot]> dminuoso: # => 2000000 (https://eval.in/964270)
<dminuoso> Bish: ^-
milardovich has joined #ruby
KeyJoo has joined #ruby
<Bish> dminuoso: yeah but "k" is pretty bug
jottr has joined #ruby
<Bish> like a 10k String
<Bish> and i want to cache it, should i make a hash out of it?
<Bish> like.. i dunno md5
<dminuoso> Bish: md5 is fairly expensive to calculate.
<dminuoso> Bish: Also Hash does exactly that.
<dminuoso> Bish: Hash is basically a hash table
hahuang65 has quit [Quit: WeeChat 2.0.1]
Burgestrand has quit [Quit: Closing time!]
gregf_ has joined #ruby
Papierkorb has left #ruby ["Konversation terminated!"]
milardovich has quit [Ping timeout: 260 seconds]
jottr has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 248 seconds]
jottr has joined #ruby
alfiemax has joined #ruby
sidx64 has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
ltt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ltt has joined #ruby
karapetyan has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 256 seconds]
jottr has joined #ruby
workmad3 has joined #ruby
minimalism has quit [Quit: minimalism]
jottr has quit [Ping timeout: 248 seconds]
clemens3 has quit [Ping timeout: 265 seconds]
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
hahuang65 has joined #ruby
yohji has quit [Ping timeout: 260 seconds]
hahuang65 has quit [Client Quit]
hahuang65 has joined #ruby
apeiros has joined #ruby
thedotre has joined #ruby
adlerdias has joined #ruby
ltt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jottr has joined #ruby
bkxd has quit [Ping timeout: 240 seconds]
nowhereman has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
nowhereman is now known as Guest60031
Cavallari has joined #ruby
nadir has quit [Quit: Connection closed for inactivity]
yohji has joined #ruby
zapata has quit [Read error: Connection reset by peer]
Mike11 has joined #ruby
jottr has joined #ruby
zapata has joined #ruby
nowhere_man has quit [Ping timeout: 256 seconds]
bkxd has joined #ruby
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ltt has joined #ruby
<thedotre> would you be interested on the srcy programming language? https://drive.google.com/drive/folders/1ROir4bfmSOdV0vQrSMHKcyjnenYGjfnX
thedotre has left #ruby [#ruby]
ldnunes has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
terens2 has quit [Read error: Connection reset by peer]
tcopeland has quit [Quit: tcopeland]
jottr has joined #ruby
postmodern has quit [Quit: Leaving]
sidx64 has joined #ruby
alfiemax has joined #ruby
jottr has quit [Ping timeout: 276 seconds]
ramfjord has joined #ruby
jaruga has joined #ruby
bkxd has quit [Ping timeout: 256 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
ramfjord has joined #ruby
jottr has joined #ruby
guille-moe has quit [Ping timeout: 240 seconds]
bkxd has joined #ruby
Mike11 has quit [Quit: Leaving.]
ramfjord has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
alfiemax has quit [Remote host closed the connection]
Puffball has quit [Remote host closed the connection]
milardovich has joined #ruby
ramfjord has quit [Ping timeout: 252 seconds]
guille-moe has joined #ruby
<dminuoso> baweaver: https://eval.in/964387
<dminuoso> I actually wrote it because I dont know how else to tell a caller about problems..
karapetyan has joined #ruby
<dminuoso> I mean the canonical way would be to throw an exception (which incidentally models the same thing) - but the entire code path in between catching and throwing is unaware of this.
bkxd has quit [Ping timeout: 252 seconds]
jottr has joined #ruby
bkxd has joined #ruby
<dminuoso> If I extend this with bind, it allows me to securely transport error conditions while _forcing_ callers to deal with them
<dminuoso> How else does one do this in Ruby?
roshanavand has quit [Ping timeout: 240 seconds]
karapetyan has quit [Ping timeout: 240 seconds]
mtkd has quit [Read error: Connection reset by peer]
mtkd has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has quit [Ping timeout: 240 seconds]
dcluna has quit [Ping timeout: 248 seconds]
bkxd has joined #ruby
milardovich has quit [Remote host closed the connection]
jottr has joined #ruby
dcluna has joined #ruby
ltt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jottr has quit [Ping timeout: 260 seconds]
wojnar has joined #ruby
<Bish> dminuoso: i figured, thanks
<Bish> so ruby does use the .hash method on values
ltt has joined #ruby
alfiemax has joined #ruby
meinside has joined #ruby
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
apparition has joined #ruby
jottr has joined #ruby
wojnar has quit [Quit: Leaving]
goatish has joined #ruby
wojnar has joined #ruby
bkxd has quit [Ping timeout: 260 seconds]
bkxd has joined #ruby
sleetdrop has quit [Quit: Computer has gone to sleep.]
wojnar has quit [Client Quit]
sidx64 has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
wojnar has joined #ruby
<darix> Everytime i talk to my perl devs here, I am happy to be a ruby dev.
sidx64 has quit [Client Quit]
<zmo> hi o/
<zmo> little question : I got a function from an external module (https://github.com/utsavkesharwani/hypertrack-ruby/blob/master/lib/hypertrack/api_operations/common/nearby.rb) which I want to modify (and ultimately offer a PR), but for the sake of experimenting my changes before submitting a PR, I'd like to monkey patch that method with one of my own from my own code
riotjones has joined #ruby
bkxd has quit [Ping timeout: 252 seconds]
<zmo> basically, replacing that method in that module with one I write in the context of where I use it
<apeiros> zmo: all you have to do is load your code after theirs
<zmo> I've seen many methods of monkey patching in ruby which offer a wild variety of monkey patching, but how can I replace a Module's method with another one, binding that method to its context ?
<apeiros> last definition wins
RougeR has quit [Ping timeout: 248 seconds]
<apeiros> also we barely have any functions in ruby. it's mostly all methods.
<zmo> so I just add on top of my own module a module X / module Y / module Z / module T / def foobar end / end / end / end, and X::Y::Z::T.foobar will be replaced ?
<apeiros> and `result = []; something.each do; result.push(x); end; result` is better done by: `result = something.map { x }`
<apeiros> yes @ replaced. but as said, make sure you load their code first.
<zmo> of course, I'm doing rails, so I feel like the entire world is loaded before my code runs anyway :)
<apeiros> you're wrong then. especially in dev mode in rails. a lot of things are lazy loaded there.
<zmo> ah ok
<zmo> I'm struggling with knowing what's in the env at any moment in rails
<apeiros> and you can break lazy loading with the kind of code above.
<zmo> (it's actually killing me)
<apeiros> yeah, the way they implemented lazy loading is IMO terrible.
<zmo> well, it's still only an experiment
<zmo> if I get it right, I'll submit a PR anyway
<zmo> and I'll point the gem to my fork
houhoulis has joined #ruby
Burgestrand has joined #ruby
bigblind has quit [Ping timeout: 268 seconds]
<apeiros> alternatively, instead of monkey patching: clone the repo. edit the method there. change your gemfile to use your local gem version (see `path` option in Gemfile config spec)
<zmo> yup, but I'm running in docker-compose, and it's more painful to shut it down, rebuild, re-up etc. just for a gem change
<apeiros> well, you choose your pains ;-p
<zmo> (and actually doing it again if my guess is wrong)
jottr has joined #ruby
<zmo> with monkey patching, I'd only do it once
<zmo> thanks again :)
jeffreylevesque has quit [Ping timeout: 256 seconds]
gizmore has quit [Ping timeout: 256 seconds]
gizmore has joined #ruby
SirOliver has joined #ruby
roshanavand has joined #ruby
k0mpa has joined #ruby
SirOliver has left #ruby [#ruby]
workmad3 has quit [Ping timeout: 248 seconds]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shinnya has joined #ruby
mtkd has quit []
vondruch has quit [Ping timeout: 276 seconds]
vondruch has joined #ruby
mtkd has joined #ruby
schneider has quit [Ping timeout: 260 seconds]
schneider has joined #ruby
ltt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
milardovich has joined #ruby
alfiemax has quit [Ping timeout: 248 seconds]
ltt has joined #ruby
drewmcmillan has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
yohji has quit [Ping timeout: 240 seconds]
guille-moe has quit [Ping timeout: 252 seconds]
tvw has joined #ruby
synthroid has joined #ruby
workmad3 has joined #ruby
ltt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax_ has joined #ruby
karapetyan has joined #ruby
clemens3 has joined #ruby
alfiemax_ has quit [Remote host closed the connection]
bigblind has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
karapetyan has quit [Ping timeout: 248 seconds]
yohji has joined #ruby
despai has joined #ruby
rwb has quit [Ping timeout: 248 seconds]
stormpack has joined #ruby
bmurt has joined #ruby
AJA4350 has joined #ruby
memo1 has joined #ruby
<Bish> what's a good lib to scale pngs?
apparition has quit [Ping timeout: 245 seconds]
guille-moe has joined #ruby
ltt has joined #ruby
<dminuoso> Bish: magick?
<dminuoso> that is rmagick
<Bish> i don't know, i'd like no C stuff
<dminuoso> Bish: It's a ruby wrapper around limagic
Psybur has joined #ruby
Psybur has joined #ruby
Psybur has quit [Changing host]
<dminuoso> *libmagick
<dminuoso> Bish: alternatively you can use minimagick.
<apeiros> imagescience, oilypng and chunkypng (not sure which of those are still maintained)
<stormpack> probably ChunkyPNG can deal with that
<apeiros> rmagick is annoying in several regards. often causes trouble. still can't use imagemagick 7 :<
<Bish> chunkypng looks good
<dminuoso> chunkpng is raw access to png itself
<dminuoso> apeiros: Ah yeah. I used minimagick at the end, but that was annoying for other reasons.
<dminuoso> Things that invoke command line tools tend to be brittle.
<Bish> but it doesn't seam to be able
<Bish> to scale
beauby has quit [Ping timeout: 248 seconds]
<dminuoso> tbuehlmann: think he was talking about chunkpng ;)
houhoulis has quit [Remote host closed the connection]
<apeiros> https://github.com/seattlerb/image_science does not look maintained :<
ams__ has joined #ruby
beauby has joined #ruby
<Bish> i don't want to install so much software, rahhh
karapetyan has joined #ruby
<Bish> *codes scaling himself*
willmichael has quit [Ping timeout: 240 seconds]
<stormpack> Bish, there is a resize method. not sure it does what you want though
<ccooke> Chunkypng isn't bad. Although admittedly I've only used to to write a terminal png viewer
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
alfiemax has joined #ruby
<Bish> stormpack: in chunkypng?
RougeR has joined #ruby
RougeR has joined #ruby
<dminuoso> 7 year old gists, ondocumented API
<Bish> "api"
<Bish> dminuoso: thanks, as usual!
jottr_ has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
ltt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
John_Ivan has joined #ruby
John_Ivan has joined #ruby
John_Ivan has quit [Changing host]
nadir has joined #ruby
quobo has joined #ruby
anjen has joined #ruby
ltt has joined #ruby
ramfjord has joined #ruby
breakfast1 has joined #ruby
<stormpack> Bish, resample_nearest_neighbor resample_bilinear
<breakfast1> hello
TLAXKIT has joined #ruby
<breakfast1> so adding instance methods in a class adds up methods to all instances
<breakfast1> while adding them in a metaclass adds them up to a single instance
<breakfast1> I can't seem to really understand what metaclasses are for
willmichael has joined #ruby
rwb has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
<phaul> ruby uses metaclasses to emulate java / c++ static ie class methods
vondruch has quit [Ping timeout: 245 seconds]
mtkd has quit []
sonOfRa has quit [Remote host closed the connection]
vondruch has joined #ruby
karapetyan has quit [Remote host closed the connection]
<phaul> breakfast1: ^^
mtkd has joined #ruby
<breakfast1> the problem is i never used java nor cpp
<breakfast1> but thanks for replying
ramfjord has joined #ruby
kapil___ has joined #ruby
cdg has joined #ruby
stormpack has quit [Quit: Leaving]
sonOfRa has joined #ruby
<phaul> breakfast1: ok, sorry. so that example is when the method does not operate / belong to any induvidual object but belongs to the class itself. for instance Array.new . .new is not called on any array object but the class itself.
<apeiros> breakfast1: examples: Date.civil(year, month, day), Date.commercial(year, week, day_of_week), Date.ordinal(year, day_of_year)
tcopeland has joined #ruby
<apeiros> those are 3 methods which are in Date's metaclass and provide convenience constructors (wrappers around new)
<Bish> oh there it is
<Bish> didn't see that
<apeiros> phaul: though .new is not in the metaclass. it's the instance method from Class (usually)
<Bish> stormpack:thanks
andikr has quit [Remote host closed the connection]
ramfjord has quit [Ping timeout: 240 seconds]
jcalla has joined #ruby
<breakfast1> okay thanks
breakfast1 has left #ruby ["Au revoir"]
<phaul> apeiros: I thought that was the case I wanted to give the method that list all symbols allocated in the Symbol metaclass (if there is one) but could 't remember the name
cdg has quit [Ping timeout: 245 seconds]
<apeiros> all_symbols?
<phaul> probably :)
sleetdrop has joined #ruby
<apeiros> :D
ramfjord has joined #ruby
karapetyan has joined #ruby
<Bish> does
<Bish> h[k] ||= SomeExpensiveCalculation work?
<Bish> so that this expression yields h[k] if it's set and SomeExpensiveCalculation if it isnt?
willmichael has quit [Read error: Connection reset by peer]
<apeiros> yes
<apeiros> `h[k] ||= expr` expands to `h[k] || h[k] = expr`, with || shortcutting as usual
<Bish> makes sense
<Bish> but not really
<Bish> since
<Bish> if i do
ramfjord has quit [Ping timeout: 240 seconds]
<Bish> x += 1
<apeiros> it's slightly unexpected since other <op>= have a different expansion
<Bish> it doesexpand to x = x + 1
<apeiros> &&= and ||= are the odd-ones
<Bish> okay, thanks
willmichael has joined #ruby
<apeiros> everything expands the same as +=, i.e. `a <op>= b` expands to `a = a <op> b`
<apeiros> everything *else* :)
<Bish> it's like irregulars in german language
<Bish> it's pretty simple, except for: <insert 1 million things>
ramfjord has joined #ruby
<apeiros> calling irregular things in german language irregular evokes the patently wrong idea that anything in german was regular to begin with…
cdg has joined #ruby
<apeiros> use lojban if you want a language which at least tries to have sensible rules :D
<Bish> when i tried to learn japanese, it was really cool to see it's design
<Bish> but then i came to counting thigns, man that shit is funny
<Bish> you have different "numbers" for things that are: flat, books, can jump, are flying
<Bish> and some others
<Bish> and insects that jump.. will get counted like flying things
<Bish> which is very logical, ofcourse
<Bish> and i think bunnies count as flying to, because they jump so efficiently, but don't quote me on that
<Burgestrand> Now I'm curious, how would you count a made-up being?
<Bish> Burgestrand: there is some "neutral" counting-strategy, which you use for all otehrs
<Burgestrand> Ah, a fallback
<Bish> which is mostly this well known ichi, ni, san, chi
<Burgestrand> Aye
ramfjord has quit [Ping timeout: 252 seconds]
<Burgestrand> I recently came back from the land of ninja katana samurai, and was surprised when my friend ordered fudatsu bieru as opposed to ni bieru…
tomlukeywood has joined #ruby
<Bish> yeah that country is funny
<Burgestrand> Then again, to be fair, danes count kinda weird too…
<Bish> especially funny fact is.. if you skip the "u" at bieru
<Bish> they won't understand at all what you're saying
ramfjord has joined #ruby
<Bish> they will just hear "bie"
<Bish> learned that the hard way, when ordering a "big mac"
<Burgestrand> The l/r split is indeed hilarious
<Bish> i didn.t even mean the l/r stuff
<Burgestrand> Ah, yeah
<Bish> i meant consonants? at the end
<Burgestrand> The phonetics
<Bish> i said big mac, and they heard bi ma
<Burgestrand> hah
<Bish> so you have to say bigu macu(or something oike that?).. and i felt incredibly stupid doing that
<Bish> because.. i really can't speak japanese
netherwolfe has quit [Ping timeout: 245 seconds]
<Burgestrand> Bish upside of being scandinavian, works rather well with most sounds so it translates quite well as long as you can figure out what it says :)
<Burgestrand> Bish (also relevant: https://www.youtube.com/watch?v=K12l63BcMRc)
<apeiros> dudes & dudettes, would you please move that to #ruby-offtopic? :D
<Burgestrand> Yes, very true, sorry!
Mike11 has joined #ruby
ramfjord has quit [Ping timeout: 265 seconds]
ltt has quit [Ping timeout: 276 seconds]
synthroid has quit [Remote host closed the connection]
bigblind has quit [Ping timeout: 240 seconds]
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
shinnya has quit [Ping timeout: 240 seconds]
arup_r has joined #ruby
<arup_r> I am parsing a csv file with `foreach` method. Is there a neat way to skip say first 4 lines always?
synthroid has joined #ruby
beauby has quit [Quit: leaving]
seym0ur has joined #ruby
seym0ur has left #ruby ["Leaving"]
dionysus69 has quit [Ping timeout: 240 seconds]
<apeiros> arup_r: if foreach returns an enumerator without a block, use that. else use enum_for
<apeiros> then on the enumerator, call .next four times
<arup_r> apeiros: is this a good approach https://stackoverflow.com/a/29954414/2767755 ?
<arup_r> apeiros: ok I will check what you said
ta_ has quit [Ping timeout: 268 seconds]
milardovich has quit [Read error: Connection reset by peer]
milardovich has joined #ruby
milardovich has quit [Remote host closed the connection]
<apeiros> arup_r: that's not the same
karapetyan has quit [Remote host closed the connection]
<apeiros> skipping 3 csv rows != skipping 3 lines
<apeiros> though, you said 4 lines. yeah, if it's indeed 4 lines and not 4 rows, then opening the IO, reading 4 lines, and then passing that to CSV to parse it is a solution.
<arup_r> ok can u tell me the difference between 4 lines and 4 rows in CSV? Just want to teach myself what they mean. :)
<apeiros> a csv row can span multiple lines.
tomlukeywood has quit [Quit: Leaving.]
<arup_r> hm
<apeiros> "foo\nbar","baz\nquuz" # <-- 1 csv row (containing 2 cells), spanning 3 lines
cstrahan has quit [Quit: Connection closed for inactivity]
<apeiros> >> require 'csv'; CSV.parse(%{"foo\nbar","baz\nquuz"})
<ruby[bot]> apeiros: # => [["foo\nbar", "baz\nquuz"]] (https://eval.in/964496)
oleo has joined #ruby
<arup_r> yea got your point
hfp_work has quit [Ping timeout: 256 seconds]
<arup_r> yes foreach returns enumerator
aScottishBoat has joined #ruby
Matt___ has joined #ruby
<Matt___> Hey o/ anyone know a good script / webservice to get my current location in longitude/latitude?
eldritch has quit [Ping timeout: 252 seconds]
inerthia has joined #ruby
mikkelsen has joined #ruby
hfp_work has joined #ruby
aScottishBoat has quit [Read error: Connection reset by peer]
eldritch has joined #ruby
ELLIOTTCABLE has joined #ruby
roshanavand has quit [Remote host closed the connection]
pastorinni has joined #ruby
za1b1tsu has joined #ruby
karapetyan has joined #ruby
gnufied has joined #ruby
TvL2386 has quit [Ping timeout: 255 seconds]
jottr_ has quit [Quit: WeeChat 2.0.1]
Cavallari has quit [Quit: Cavallari]
bigblind has joined #ruby
netherwolfe has joined #ruby
cschneid has quit [Remote host closed the connection]
hfp_work has quit [Ping timeout: 276 seconds]
Rapture has joined #ruby
cschneid has joined #ruby
hfp_work has joined #ruby
cschneid has quit [Ping timeout: 268 seconds]
desperek has joined #ruby
willmichael has quit [Ping timeout: 240 seconds]
logoscoder has joined #ruby
Burgestrand has quit [Quit: Closing time!]
cschneid has joined #ruby
workmad3 has quit [Ping timeout: 240 seconds]
arup_r has quit []
sleetdrop has quit [Quit: Computer has gone to sleep.]
mikecmpbll has quit [Ping timeout: 268 seconds]
workmad3 has joined #ruby
mikkelsen has quit [Quit: mikkelsen]
karapetyan has quit [Remote host closed the connection]
ramfjord has joined #ruby
netherwolfe_ has joined #ruby
cthulchu| has joined #ruby
sleetdrop has joined #ruby
netherwolfe has quit [Ping timeout: 240 seconds]
John_Ivan has quit [Ping timeout: 240 seconds]
cthulchu has quit [Ping timeout: 240 seconds]
John_Ivan has joined #ruby
ramfjord has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
apeiros has quit [Remote host closed the connection]
ramfjord has quit [Ping timeout: 240 seconds]
mtkd has quit [Ping timeout: 245 seconds]
schneider has quit [Ping timeout: 256 seconds]
mtkd has joined #ruby
Beams has quit [Ping timeout: 245 seconds]
kliq has joined #ruby
bkxd has joined #ruby
MyMind has joined #ruby
Sembei has quit [Ping timeout: 248 seconds]
helpa-bot has joined #ruby
yonahw_ has joined #ruby
sunrunner20_ has joined #ruby
PaulCape_ has joined #ruby
hogetaro_ has joined #ruby
helpa-bot has quit [Remote host closed the connection]
helpa-bot has joined #ruby
bkxd has quit [Ping timeout: 256 seconds]
hsiktas_ has joined #ruby
pelegreno_ has joined #ruby
creeg_ has joined #ruby
helpa-bot has quit [Remote host closed the connection]
helpa-bot has joined #ruby
aupadhye_ has quit [Remote host closed the connection]
ltd_ has joined #ruby
iszak_ has joined #ruby
reaVer_ has joined #ruby
yosafbridge` has joined #ruby
VladGh has joined #ruby
vondruch_ has joined #ruby
helpa-bot has quit [Remote host closed the connection]
synthroid has quit [Remote host closed the connection]
conta has quit [Ping timeout: 240 seconds]
aupadhye has joined #ruby
ryotarai_ has joined #ruby
vereteran has joined #ruby
mr_rich102 has joined #ruby
helpa-bot has joined #ruby
cpallares_ has joined #ruby
veloutin_ has joined #ruby
agrecascino_ has joined #ruby
syndikate_ has joined #ruby
byte512 has joined #ruby
jp| has joined #ruby
akhkharu has joined #ruby
stairmast0r_ has joined #ruby
willmichael has joined #ruby
z3uS| has joined #ruby
zululee_ has joined #ruby
edwardly_ has joined #ruby
edwardly_ has quit [Changing host]
edwardly_ has joined #ruby
]reed[ has joined #ruby
]reed[ has joined #ruby
]reed[ has quit [Changing host]
jcalla has quit [*.net *.split]
vondruch has quit [*.net *.split]
yohji has quit [*.net *.split]
reaVer has quit [*.net *.split]
helpa has quit [*.net *.split]
creeg has quit [*.net *.split]
yonah_w has quit [*.net *.split]
_zach has quit [*.net *.split]
stairmast0r has quit [*.net *.split]
PaulCapestany has quit [*.net *.split]
hogetaro has quit [*.net *.split]
ricer2 has quit [*.net *.split]
Map- has quit [*.net *.split]
VladGh_ has quit [*.net *.split]
hurricanehrndz has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
cpallares has quit [*.net *.split]
brainslug has quit [*.net *.split]
leonthemisfit has quit [*.net *.split]
coffeejunk has quit [*.net *.split]
sunrunner20 has quit [*.net *.split]
jp has quit [*.net *.split]
byte512_ has quit [*.net *.split]
Cyrus has quit [*.net *.split]
z3uS has quit [*.net *.split]
pelegreno has quit [*.net *.split]
edwardly has quit [*.net *.split]
naquad has quit [*.net *.split]
Biohazard has quit [*.net *.split]
hsiktas has quit [*.net *.split]
mr_rich101 has quit [*.net *.split]
mikkel- has quit [*.net *.split]
veloutin has quit [*.net *.split]
mluts has quit [*.net *.split]
linuxdaemon has quit [*.net *.split]
ndrst has quit [*.net *.split]
syndikate has quit [*.net *.split]
lvmbdv has quit [*.net *.split]
TheMoonMaster has quit [*.net *.split]
[reed] has quit [*.net *.split]
zululee has quit [*.net *.split]
agrecascino has quit [*.net *.split]
ltd has quit [*.net *.split]
ryotarai has quit [*.net *.split]
iszak has quit [*.net *.split]
tris has quit [*.net *.split]
Vashy has quit [*.net *.split]
vondruch_ is now known as vondruch
ryotarai_ is now known as ryotarai
hsiktas_ is now known as hsiktas
agrecascino_ is now known as agrecascino
z3uS| is now known as z3uS
sunrunner20_ is now known as sunrunner20
Vashy has joined #ruby
helpa-bot has quit [Remote host closed the connection]
tris has joined #ruby
TheMoonMaster_ has joined #ruby
Map has joined #ruby
helpa has joined #ruby
clemens3 has quit [Ping timeout: 248 seconds]
]reed[ is now known as [reed]
Map is now known as Guest21480
Biohazard has joined #ruby
mikecmpbll has joined #ruby
edwardly_ is now known as edwardly
jp| is now known as jp
leonthemisfit has joined #ruby
leonthemisfit has joined #ruby
leonthemisfit has quit [Changing host]
_zach has joined #ruby
apeiros has joined #ruby
linuxdaemon has joined #ruby
synthroid has joined #ruby
rgr has joined #ruby
apeiros has quit [Remote host closed the connection]
synthroid has quit [Remote host closed the connection]
synthroid has joined #ruby
apeiros has joined #ruby
Cyrus has joined #ruby
jcalla has joined #ruby
Cyrus is now known as Guest1156
mikkel- has joined #ruby
mluts has joined #ruby
yohji has joined #ruby
coffeejunk has joined #ruby
sleetdrop has quit [Quit: Computer has gone to sleep.]
ndrst has joined #ruby
lvmbdv has joined #ruby
ndrst is now known as Guest28081
aupadhye has quit [Remote host closed the connection]
n0m4d1c has joined #ruby
aupadhye has joined #ruby
ryzokuken has joined #ruby
hurricanehrndz has joined #ruby
willmichael has quit [Read error: Connection reset by peer]
goatish has quit [Quit: Hibernating]
nowhere_man has joined #ruby
Guest60031 has quit [Ping timeout: 240 seconds]
willmichael has joined #ruby
[Butch] has joined #ruby
willmichael has quit [Read error: Connection reset by peer]
willmichael has joined #ruby
spectra has quit [Ping timeout: 256 seconds]
bkxd has joined #ruby
hogetaro has joined #ruby
hogetaro_ has quit [Ping timeout: 240 seconds]
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
k0mpa has quit [Ping timeout: 255 seconds]
Vapez has joined #ruby
spectra has joined #ruby
conta has joined #ruby
bkxd has quit [Ping timeout: 268 seconds]
mtkd has quit []
nowhere_man has quit [Read error: Connection reset by peer]
nowhere_man has joined #ruby
mtkd has joined #ruby
cdg has quit [Ping timeout: 276 seconds]
cliq has joined #ruby
bokayio has quit [Quit: ZNC 1.6.3 - http://znc.in]
arthurnn has quit [Quit: bye...]
goatish has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
kliq has quit [Ping timeout: 245 seconds]
ricer2 has joined #ruby
banisterfiend has joined #ruby
karapetyan has joined #ruby
rgr has quit [Quit: rgr]
arthurnn has joined #ruby
yohji has quit [Remote host closed the connection]
Guest28081 is now known as ndrst
ndrst has quit [Changing host]
ndrst has joined #ruby
clemens3 has joined #ruby
karapetyan has quit [Ping timeout: 256 seconds]
jcarl43 has joined #ruby
Cavallari has joined #ruby
xfbs has joined #ruby
claudiuinberlin has quit [Quit: Textual IRC Client: www.textualapp.com]
Cavallari has quit [Remote host closed the connection]
Cavallari has joined #ruby
Serpent7776 has quit [Quit: Leaving]
krawchyk has joined #ruby
mozzarella has quit [Ping timeout: 276 seconds]
krawchyk has quit [Client Quit]
dionysus69 has joined #ruby
lele has quit [Ping timeout: 256 seconds]
banisterfiend has quit [Ping timeout: 256 seconds]
riotjoe has joined #ruby
lxsameer has quit [Ping timeout: 256 seconds]
riotjones has quit [Ping timeout: 252 seconds]
guacamole has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
rrutkowski has joined #ruby
lele has joined #ruby
TvL2386 has joined #ruby
mozzarella has joined #ruby
govg has quit [Ping timeout: 252 seconds]
guille-moe has quit [Ping timeout: 260 seconds]
cliq has quit [Ping timeout: 268 seconds]
conta has quit [Ping timeout: 276 seconds]
dmitriy_ has joined #ruby
dmitriy_ has quit [Read error: Connection reset by peer]
govg has joined #ruby
aupadhye has quit [Quit: Leaving]
nekomune has quit [Read error: Connection reset by peer]
darkhanb has joined #ruby
aufi has quit [Quit: Leaving]
govg has quit [Ping timeout: 245 seconds]
jaruga has quit [Quit: jaruga]
synthroi_ has joined #ruby
tessi_zz has joined #ruby
kies has quit [Ping timeout: 240 seconds]
Beams has joined #ruby
eckhardt_ has joined #ruby
riotjoe has quit [Remote host closed the connection]
synthroid has quit [Ping timeout: 245 seconds]
rcs has quit [Ping timeout: 240 seconds]
mistym has quit [Ping timeout: 256 seconds]
devyn has quit [Ping timeout: 256 seconds]
Liothen has quit [Ping timeout: 252 seconds]
miah has quit [Ping timeout: 240 seconds]
G_ has quit [Ping timeout: 256 seconds]
mistym has joined #ruby
mistym has joined #ruby
mistym has quit [Changing host]
GotHyper has joined #ruby
GotHyper has quit [Max SendQ exceeded]
devyn has joined #ruby
chmurifree is now known as chmuri
Coldblackice has quit [Remote host closed the connection]
orbyt_ has joined #ruby
G_ has joined #ruby
miah has joined #ruby
Coldblackice has joined #ruby
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rcs has joined #ruby
Coldblackice has quit [Remote host closed the connection]
mniip has quit [Ping timeout: 240 seconds]
Coldblackice has joined #ruby
ramfjord has joined #ruby
nadir has quit [Quit: Connection closed for inactivity]
guacamole has joined #ruby
guacamole has quit [Changing host]
guacamole has joined #ruby
mniip has joined #ruby
Liothen has joined #ruby
Liothen has joined #ruby
Coldblackice has quit [Remote host closed the connection]
Coldblackice has joined #ruby
Coldblackice has quit [Remote host closed the connection]
Coldblackice has joined #ruby
Coldblackice has quit [Remote host closed the connection]
Coldblackice has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
Coldblackice has quit [Max SendQ exceeded]
Mike11 has quit [Quit: Leaving.]
anisha has quit [Quit: This computer has gone to sleep]
Coldblackice has joined #ruby
memo1 has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
marxarelli|afk is now known as marxarelli
Coldblackice has quit [Read error: Connection reset by peer]
Coldblackice has joined #ruby
logoscoder_ has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
logoscoder has quit [Read error: Connection reset by peer]
Dimik has joined #ruby
ramfjord has joined #ruby
mniip has quit [Ping timeout: 240 seconds]
mniip has joined #ruby
n0m4d1c has quit [Remote host closed the connection]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has joined #ruby
ephemera__ has quit [Quit: No Ping reply in 180 seconds.]
RougeR has quit [Ping timeout: 256 seconds]
tvw has quit [Remote host closed the connection]
ephemera_ has joined #ruby
ramfjord has quit [Ping timeout: 276 seconds]
guest has quit [Quit: guest]
claudiuinberlin has joined #ruby
guille-moe has joined #ruby
ramfjord has joined #ruby
jnollette has quit [Remote host closed the connection]
jnollette has joined #ruby
karapetyan has joined #ruby
troys has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
starseed0000 has joined #ruby
<starseed0000> Does devise not sign users automatically when they sign up?
<havenwood> ?rails starseed0000
<ruby[bot]> starseed0000: Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
ramfjord has joined #ruby
shinnya has joined #ruby
kies has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
n0m4d1c has joined #ruby
ramfjord has joined #ruby
orbyt_ has joined #ruby
goatish has quit [Quit: Hibernating]
hahuang65 has quit [Quit: WeeChat 2.0.1]
TomyWork has quit [Ping timeout: 240 seconds]
kapil___ has quit [Quit: Connection closed for inactivity]
hahuang65 has joined #ruby
hahuang65 has quit [Client Quit]
mtkd has quit []
ramfjord has quit [Ping timeout: 252 seconds]
hahuang65 has joined #ruby
TheMoonMaster_ is now known as TheMoonMaster
quobo has joined #ruby
lytol has joined #ruby
goatish has joined #ruby
campbecf has joined #ruby
<havenwood> "Today, everyone knows Ruby's Hash is a OrderedHash." ~Matz
<campbecf> https://repl.it/repls/UsableLopsidedFactorial is this working as intended? Why does the method get overridden with nil?
<eam> campbecf: the assignment creates a local variable, which shadows the method
<havenwood> campbecf: The variable's shadow is pounching.
<eam> jinx
<havenwood> eam: o/
<havenwood> campbecf: puts "some_external_value #=> #{self.some_external_value}"
za1b1tsu has quit [Quit: Leaving]
<eam> related: I wish ruby's conditionals were proper blocks with scope. In perl, the variable would be scoped to the conditional
xfbs has quit []
<eam> or puts "some_external_value #=> #{some_external_value()}" :)
<eam> I like rigid syntax differentiation between values and methods
<campbecf> Thanks all
dviola has joined #ruby
mozzarella has quit [Ping timeout: 240 seconds]
cthulchu_ has joined #ruby
logoscoder_ is now known as logoscoder
mozzarella has joined #ruby
cthulchu| has quit [Ping timeout: 252 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ramfjord has joined #ruby
cthulchu| has joined #ruby
campbecf has quit [Quit: Leaving.]
John_Ivan has quit [Ping timeout: 248 seconds]
eldritch has quit [Quit: ZNC 1.6.5 - http://znc.in]
Guest21480 has quit [Quit: ZNC 1.6.5 - http://znc.in]
cthulchu_ has quit [Ping timeout: 256 seconds]
kliq has joined #ruby
dionysus69 has quit [Ping timeout: 276 seconds]
ramfjord has quit [Ping timeout: 276 seconds]
\void has joined #ruby
ramfjord has joined #ruby
n008f4g_ has joined #ruby
minimalism has joined #ruby
willmichael has quit [Ping timeout: 240 seconds]
willmichael has joined #ruby
ramfjord has quit [Ping timeout: 252 seconds]
ramfjord has joined #ruby
rrp has joined #ruby
rrp has left #ruby [#ruby]
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
chmuri has quit [Excess Flood]
hfp_work has quit [Ping timeout: 252 seconds]
bigblind has quit [Ping timeout: 240 seconds]
chmurifree has joined #ruby
guille-moe has quit [Remote host closed the connection]
guille-moe has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
weaksauce has joined #ruby
eam has quit [Changing host]
eam has joined #ruby
workmad3 has quit [Ping timeout: 276 seconds]
tomphp has joined #ruby
hfp_work has joined #ruby
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 268 seconds]
traxnov has joined #ruby
ramfjord has joined #ruby
guille-moe has quit [Ping timeout: 252 seconds]
LocaMocha has quit [Read error: Connection reset by peer]
sameerynho has joined #ruby
traxnov has quit [Quit: Mutter: www.mutterirc.com]
mtkd has joined #ruby
Matt___ has left #ruby [#ruby]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nowhereman_ has joined #ruby
nowhere_man has quit [Ping timeout: 240 seconds]
drewmcmillan has joined #ruby
rrutkowski has quit [Quit: rrutkowski]
cdg_ has joined #ruby
bkxd has joined #ruby
clemens3 has quit [Quit: WeeChat 1.0.1]
guille-moe has joined #ruby
cdg has quit [Ping timeout: 248 seconds]
rrutkowski has joined #ruby
cdg_ has quit [Ping timeout: 252 seconds]
bkxd has quit [Ping timeout: 248 seconds]
alfiemax has quit [Remote host closed the connection]
mtkd has quit []
shinnya has quit [Quit: ZNC - http://znc.in]
bkxd has joined #ruby
eckhardt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shinnya has joined #ruby
bkxd has quit [Ping timeout: 245 seconds]
pastorinni has quit [Ping timeout: 276 seconds]
KeyJoo has quit [Ping timeout: 245 seconds]
adlerdias has quit [Quit: adlerdias]
nickjj_ is now known as nickjj
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
n0m4d1c has quit [Remote host closed the connection]
fmccann has joined #ruby
rrutkowski has quit [Ping timeout: 240 seconds]
John_Ivan has joined #ruby
John_Ivan has joined #ruby
John_Ivan has quit [Changing host]
rrutkowski has joined #ruby
TLAXKIT has quit [Remote host closed the connection]
TLAXKIT has joined #ruby
bmurt has joined #ruby
TLAXKIT has quit [Remote host closed the connection]
bmurt has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
bmurt has joined #ruby
ryzokuken has quit [Ping timeout: 240 seconds]
xfbs has joined #ruby
mtkd has joined #ruby
memo1 has joined #ruby
<memo1> how i find the ruby irc log
<dminuoso> memo1: Check the topic.
workmad3 has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<memo1> dminuoso: :)
guille-moe has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 240 seconds]
guille-moe has joined #ruby
karapetyan has quit [Remote host closed the connection]
guille-moe has quit [Ping timeout: 260 seconds]
zenspider_ has joined #ruby
Psybur has quit [Ping timeout: 245 seconds]
mtkd has quit []
mtkd has joined #ruby
Beams has quit [Quit: .]
guacamole has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
bigblind has joined #ruby
eckhardt_ has joined #ruby
bigblind has quit [Ping timeout: 276 seconds]
Toggi3 has joined #ruby
mtkd has quit []
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mtkd has joined #ruby
bkxd has joined #ruby
memo1 has quit [Ping timeout: 240 seconds]
bkxd has quit [Ping timeout: 240 seconds]
veloutin_ has quit [Quit: ZNC - http://znc.in]
veloutin has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
orbyt_ has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rubycoder38 has joined #ruby
chouhoul_ has joined #ruby
<rubycoder38> hi
rubycoder38 has quit [Client Quit]
RougeR has quit [Ping timeout: 248 seconds]
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
chouhoulis has quit [Ping timeout: 252 seconds]
netherwolfe has joined #ruby
netherwolfe_ has quit [Ping timeout: 240 seconds]
veinofstars has left #ruby [#ruby]
kapil___ has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ledestin has joined #ruby
cdg has joined #ruby
cdg has quit [Remote host closed the connection]
tomphp has joined #ruby
cdg has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
banisterfiend has joined #ruby
cliq has joined #ruby
Cavallari has quit [Quit: Cavallari]
phaul has quit [Ping timeout: 260 seconds]
orbyt_ has joined #ruby
jenrzzz has joined #ruby
kliq has quit [Ping timeout: 240 seconds]
karapetyan has joined #ruby
clemens3 has joined #ruby
cdg_ has joined #ruby
RougeR has joined #ruby
cdg has quit [Ping timeout: 260 seconds]
dviola has quit [Quit: WeeChat 2.0.1]
rwb has quit [Ping timeout: 240 seconds]
FrostCandy has joined #ruby
dviola has joined #ruby
<FrostCandy> Is this now how you use strip? row["fluffybunny"].strip It gives me a noMethodError but the ruby docs sho " hello ".strip #=> "hello"
Rapture has joined #ruby
<dminuoso> FrostCandy: Read the NoMethodError closely
netherwolfe has quit [Ping timeout: 240 seconds]
<havenwood> >> row = {}; row["fluffybunny"]&.strip
<ruby[bot]> havenwood: # => nil (https://eval.in/964667)
<dminuoso> > 1.strip
<dminuoso> > nil.strip
<dminuoso> >> 1.strip
<ruby[bot]> dminuoso: # => undefined method `strip' for 1:Fixnum (NoMethodError) ...check link for more (https://eval.in/964668)
<dminuoso> >> nil.strip
krawchyk has joined #ruby
<ruby[bot]> dminuoso: # => undefined method `strip' for nil:NilClass (NoMethodError) ...check link for more (https://eval.in/964669)
<dminuoso> >> Class.strip
<ruby[bot]> dminuoso: # => undefined method `strip' for Class:Class (NoMethodError) ...check link for more (https://eval.in/964670)
<dminuoso> FrostCandy: As you can see, NoMethodError generally means "I can not find a matching method in the class/hierarchy of the thing you called it on"
netherwolfe has joined #ruby
<dminuoso> FrostCandy: That means either "the method does not exist", or "the thing you call it on, is something else". THe last thing can be checked, as the exception message tells you the exact class.
<dminuoso> undefined method `strip' for **Class:Class**
d9867eb has joined #ruby
chouhoul_ has quit [Remote host closed the connection]
<dminuoso> undefined method `strip' for **nil:NilClass**
<dminuoso> undefined method `strip' for **1:Fixnum**
<FrostCandy> oh ok dminuoso thanks i'll look
chouhoulis has joined #ruby
<FrostCandy> so you are right it was nil :D
eckhardt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
despai has quit [Quit: ...]
<FrostCandy> easy mistake, sorry to bother
<d9867eb> hi, I am using the latest available Ruby on debian stretch. when running bundle install i get: /usr/local/bin/bundle:23:in `load': cannot load such file -- /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.1/exe/bundle (LoadError)
<d9867eb> from /usr/local/bin/bundle:23:in `<main>'
ta_ has joined #ruby
<d9867eb> from /usr/local/bin/bundle:23:in `<main>'
nowhereman_ has quit [Read error: Connection reset by peer]
nowhereman_ has joined #ruby
eckhardt_ has joined #ruby
ta_ has quit [Client Quit]
rgiscard has joined #ruby
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has joined #ruby
dviola has quit [Quit: WeeChat 2.0.1]
<darix> d9867eb: check if you have a file with a suffix in /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.1/exe/bundle
<darix> and then rename it back to just /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.1/exe/bundle
<darix> it seems sometimes rubygems applies the binary suffix also to files in the /exe/ subdirectory.
bkxd has quit [Ping timeout: 252 seconds]
pastorinni has joined #ruby
nowhere_man has joined #ruby
<d9867eb> darix: /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.1/exe/bundle doesnt exist on my machine. should create that?
ams__ has quit [Quit: Connection closed for inactivity]
<darix> d9867eb: just run ls /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.1/exe/
<d9867eb> ok
drewmcmillan has joined #ruby
SeepingN has joined #ruby
krawchyk has quit [Quit: krawchyk]
xfbs has quit []
synthroi_ has quit []
bkxd has joined #ruby
dviola has joined #ruby
<d9867eb> darix, i ran ls /usr/lib/ruby/gems/2.3.0/gems/ and i got bundler-1.16.0 rdoc-4.2.1
<d9867eb> however i got bundler 1.16.1
<darix> so why does your /usr/local/bin/bundle think you had 1.16.1 ?
nowhereman_ has quit [Ping timeout: 268 seconds]
achen has joined #ruby
<d9867eb> darix, i dont know. anyway i ran sudo mv /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.0 /usr/lib/ruby/gems/2.3.0/gems/bundler-1.16.1 and i t works now
<d9867eb> thanks
<apeiros> that's not really a good idea
<apeiros> but it might show how you got to the current problem in the first place. randomly moving managed stuff around is a recipe for troubles.
bkxd has quit [Ping timeout: 268 seconds]
<dminuoso> apeiros: I regularly move things around on my coworkers desk when he's not there.
<dminuoso> So I can confirm: It's a recipe for trouble
<apeiros> dminuoso: got wireless keyboards? swapping those is always good fun.
<d9867eb> apeiros, but really I dont use bundler 1.16.
<dminuoso> apeiros: I did one better: Another coworker dropped in with his macbook. While they were out grabbing coffee, I switched the macbooks.
<apeiros> d9867eb: but it's really still a bad idea to randomly move managed stuff around
<apeiros> dminuoso: hah
<d9867eb> apeiros, then what should i do?
alex`` has quit [Ping timeout: 240 seconds]
<dminuoso> apeiros: For about 10 minutes he stared in disbelief after the 3rd time it woudnt accept his password. The rest of the time he was totally confused "since when does Apple have air logon to nearby macbooks..."
<apeiros> dminuoso: :D
<d9867eb> a dir for bundle was missing
<apeiros> d9867eb: if moving things around which you shouldn't is a habit - no idea. you might have broken an arbitrary number of things.
<dminuoso> apeiros: And if you have a coworker you _dont_ like, take some transparent adhesive tape, and stick it on the maglock right inside on the 4 pins.
<apeiros> I'd say just reinstalling/updating bundler would be the better approach. but hey, you said it works. so: good luck, I guess?
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<dminuoso> Watch him claw his eyes out when his battery runs out of juice, trying to figure out why "yet another power cord is broken"
<apeiros> dminuoso: only tb3 macbooks here anymore :-| (also I like my coworkers)
<eam> if you really, *really* don't like them, use foil tape
<d9867eb> apeiros, i jsut I ran gem update --system and then bundle wouldnt run. I am not sure about how I would have broken something.
<dminuoso> eam: Haha!
bigblind has joined #ruby
<eam> I spilled water on a yubikey in my usb port once and it shorted the 5v pins and melted it into my port
cpruitt has joined #ruby
<dminuoso> eam: Ever since the width of your notebook increased by 3cm?
<eam> thankfully the battery was fine
<eam> I burnt out the data pins though. The port could charge, but inactive data pins
shalok has joined #ruby
jcalla has quit [Quit: Leaving]
<eam> about 6mo later I worked on a project with a usb protocol analyzer and I found a whole bunch of garbage noise on the *other* usb port that still did work, so I swapped out the laptop and all was well
RougeR has quit [Ping timeout: 240 seconds]
<shalok> What's the right way to return a block from a function? https://ideone.com/7U3FyS
<dminuoso> shalok: a block is just a Proc without the Proc.
jenrzzz has quit [Ping timeout: 268 seconds]
<dminuoso> shalok: So just reify it with Proc/proc/lambda
<shalok> got it thanks
bmurt has joined #ruby
FrostCandy has quit []
amatas has quit [Quit: amatas]
<d9867eb> darix, is it better to use sass or just plain css?
hahuang61 has joined #ruby
FrostCandy has joined #ruby
<darix> d9867eb: what ever makes you happy.
<darix> there is also less.
<d9867eb> darix, what do you suggest?
gr33n7007h has joined #ruby
<d9867eb> darix, what is the best way source sass?
* darix is not a web developer
al2o3-cr has quit [Ping timeout: 240 seconds]
<d9867eb> darix, ok thanks anyway
d9867eb has quit [Quit: Leaving]
rwb has joined #ruby
rrutkowski has quit [Ping timeout: 260 seconds]
<shalok> I was a little surprised that this seems to work: https://ideone.com/7U3FyS
<shalok> Do local variables in ruby have lifetime that exceeds the scope?
nadir has joined #ruby
<eam> shalok: this is called a closure, the proc retains access to the scope
<eam> the scope isn't exceeded per se, it persists in the proc
Fusselgesicht has quit [Quit: leaving]
<shalok> Is there any difference between myvar and @myvar when I'm not in a class?
phaul has joined #ruby
<eam> when are you not in a class?
n008f4g_ has quit [Ping timeout: 268 seconds]
xfbs has joined #ruby
<eam> (the answer is that yes, local and instance variables are always different, but there's a larger question here)
<starseed0000> I feel like sass and less make people lazy and end up with ridiculous style heirarchy
<dminuoso> >> class A; def initialize; @a = 1; end; def f; -> { @a } end; end; puts A.new.f[]
<ruby[bot]> dminuoso: # => 1 ...check link for more (https://eval.in/964683)
<dminuoso> shalok: ^- A closure is a closure.
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
guacamole has joined #ruby
guacamole has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
claudiuinberlin has quit [Quit: Textual IRC Client: www.textualapp.com]
orbyt_ has joined #ruby
[Butch] has quit [Quit: Textual IRC Client: www.textualapp.com]
<shalok> eam: Like if not inside 'class' statement. e.g. https://ideone.com/7U3FyS
sameerynho has quit [Ping timeout: 240 seconds]
rgiscard has quit [Ping timeout: 252 seconds]
desperek has quit [Quit: xoxo]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
roshanavand has joined #ruby
Dimik has quit [Ping timeout: 276 seconds]
krawchyk has joined #ruby
TinkerTyper has quit [Quit: ZNC 1.7.x-nightly-20180214-1b69373b - https://znc.in]
logoscoder has quit [Ping timeout: 260 seconds]
TinkerTyper has joined #ruby
pastorinni has quit [Remote host closed the connection]
pastorinni has joined #ruby
agent_white has quit [Quit: brb]
pastorin_ has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<eam> shalok: you are always inside a class. At the toplevel, self is "main"
agent_white has joined #ruby
pastorinni has quit [Ping timeout: 256 seconds]
mtkd has quit []
mtkd has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
\void has quit [Quit: So long, and thanks for all the fish.]
karapetyan has quit [Remote host closed the connection]
<havenwood> >> class << self; remove_method :inspect end; self
logoscoder has joined #ruby
<ruby[bot]> havenwood: # => #<Object:0x4143934c> (https://eval.in/964696)
tcopeland has quit [Quit: tcopeland]
hndk has joined #ruby
logoscoder has quit [Max SendQ exceeded]
logoscoder has joined #ruby
logoscoder has quit [Max SendQ exceeded]
jenrzzz has quit [Ping timeout: 240 seconds]
<darix> We can also reopen havenwood and attach more methods to him
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
ldnunes has quit [Quit: Leaving]
<darix> easy way to teach new behavior, or overwrite undesirable behavior!
kapil___ has quit [Quit: Connection closed for inactivity]
marxarelli is now known as marxarelli|afk
Meow-J_ has quit [Ping timeout: 255 seconds]
andersh has quit [Ping timeout: 265 seconds]
genta has quit [Read error: Connection reset by peer]
cttttt has quit [Read error: Connection reset by peer]
rfv has quit [Ping timeout: 256 seconds]
avdi has quit [Ping timeout: 256 seconds]
kspencer has quit [Read error: Connection reset by peer]
mr-robert has quit [Ping timeout: 265 seconds]
cttttt has joined #ruby
kireevco has quit [Ping timeout: 276 seconds]
Travis-42 has quit [Read error: Connection reset by peer]
cttttt has quit [Max SendQ exceeded]
ReinH has quit [Ping timeout: 260 seconds]
Travis-42 has joined #ruby
kspencer has joined #ruby
incomprehensibly has quit [Ping timeout: 256 seconds]
hayden___ has quit [Ping timeout: 276 seconds]
mr-robert has joined #ruby
jetpack_joe has quit [Ping timeout: 256 seconds]
ckrailo has quit [Ping timeout: 256 seconds]
kspencer has quit [Max SendQ exceeded]
petems has quit [Ping timeout: 276 seconds]
olivierjanss has quit [Ping timeout: 276 seconds]
daxroc has quit [Ping timeout: 260 seconds]
andersh has joined #ruby
andersh has quit [Max SendQ exceeded]
ReinH has joined #ruby
Bosma has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
genta has joined #ruby
Yonk has quit [Ping timeout: 252 seconds]
[diecast] has quit [Ping timeout: 260 seconds]
incomprehensibly has joined #ruby
kspencer has joined #ruby
jnix has quit [Ping timeout: 256 seconds]
jetpack_joe has joined #ruby
machty has quit [Ping timeout: 265 seconds]
caw______ has quit [Ping timeout: 256 seconds]
daxroc has joined #ruby
hayden___ has joined #ruby
Diabolik_ has quit [Ping timeout: 255 seconds]
mrsolo has quit [Ping timeout: 260 seconds]
Meow-J_ has joined #ruby
kireevco has joined #ruby
colstrom has quit [Ping timeout: 265 seconds]
craysiii has quit [Ping timeout: 265 seconds]
Brak____________ has quit [Ping timeout: 256 seconds]
cardoni has quit [Ping timeout: 256 seconds]
nuck has quit [Ping timeout: 256 seconds]
micalexander has quit [Read error: Connection reset by peer]
mostlybadfly has quit [Read error: Connection reset by peer]
ckrailo has joined #ruby
jetpack_joe has quit [Max SendQ exceeded]
micalexander has joined #ruby
andersh has joined #ruby
karapetyan has quit [Remote host closed the connection]
petems has joined #ruby
kireevco has quit [Max SendQ exceeded]
Diabolik_ has joined #ruby
machty has joined #ruby
jxf has quit [Ping timeout: 265 seconds]
aarongodin has quit [Ping timeout: 260 seconds]
Diabolik_ has quit [Max SendQ exceeded]
mostlybadfly has joined #ruby
mrsolo has joined #ruby
mitsuhiko has quit [Ping timeout: 255 seconds]
Yonk has joined #ruby
Diabolik_ has joined #ruby
jnix has joined #ruby
cttttt has joined #ruby
olivierjanss has joined #ruby
Brak____________ has joined #ruby
rfv has joined #ruby
Fenhl has quit [Ping timeout: 256 seconds]
[diecast] has joined #ruby
olivierjanss has quit [Max SendQ exceeded]
Diabolik_ has quit [Max SendQ exceeded]
nuck has joined #ruby
Bosma has joined #ruby
bcavileer has quit [Ping timeout: 256 seconds]
achen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jxf has joined #ruby
caw______ has joined #ruby
Diabolik_ has joined #ruby
mostlybadfly has quit [Max SendQ exceeded]
galeido has quit [Ping timeout: 260 seconds]
jxf has quit [Max SendQ exceeded]
pizzaops has quit [Ping timeout: 256 seconds]
adambeynon has quit [Ping timeout: 256 seconds]
mroth has quit [Ping timeout: 252 seconds]
ggherdov has quit [Ping timeout: 265 seconds]
raggi has quit [Ping timeout: 255 seconds]
danzilio has quit [Ping timeout: 255 seconds]
aarongodin has joined #ruby
maciuszek has quit [Ping timeout: 276 seconds]
craysiii has joined #ruby
Lloyd has quit [Ping timeout: 256 seconds]
SeepingN has quit [Ping timeout: 240 seconds]
SeepingN_ has joined #ruby
[diecast] has quit [Max SendQ exceeded]
JJonah has quit [Ping timeout: 256 seconds]
mitsuhiko has joined #ruby
Diabolik_ has quit [Max SendQ exceeded]
clemens3 has quit [Ping timeout: 256 seconds]
chromis has quit [Ping timeout: 240 seconds]
yo61 has quit [Ping timeout: 276 seconds]
mattwc has quit [Ping timeout: 276 seconds]
Chew has quit [Read error: Connection reset by peer]
KnownSyntax has quit [Ping timeout: 265 seconds]
arcturiaen has quit [Ping timeout: 260 seconds]
pwillard has quit [Ping timeout: 260 seconds]
cardoni has joined #ruby
colstrom has joined #ruby
craysiii has quit [Max SendQ exceeded]
colstrom has quit [Max SendQ exceeded]
deimos has quit [Read error: Connection reset by peer]
adambeynon has joined #ruby
Iambchop has quit [Ping timeout: 265 seconds]
Chew has joined #ruby
podman has quit [Read error: Connection reset by peer]
Fenhl has joined #ruby
jxf has joined #ruby
justache has quit [Ping timeout: 260 seconds]
peteretep has quit [Ping timeout: 260 seconds]
mr-robert has quit [Ping timeout: 240 seconds]
Tony-St4rk has quit [Ping timeout: 256 seconds]
Bosma has quit [Max SendQ exceeded]
pizzaops has joined #ruby
kireevco has joined #ruby
karapetyan has joined #ruby
ggherdov has joined #ruby
kireevco has quit [Max SendQ exceeded]
danzilio has joined #ruby
bcavileer has joined #ruby
nuck has quit [Max SendQ exceeded]
Diabolik_ has joined #ruby
deimos has joined #ruby
mostlybadfly has joined #ruby
jxf has quit [Max SendQ exceeded]
[diecast] has joined #ruby
Mutsuhito has quit [Ping timeout: 256 seconds]
deimos has quit [Max SendQ exceeded]
olivierjanss has joined #ruby
podman has joined #ruby
tfitts has quit [Ping timeout: 265 seconds]
ReinH has quit [Ping timeout: 240 seconds]
mroth has joined #ruby
pizzaops has quit [Max SendQ exceeded]
Fenhl has quit [Max SendQ exceeded]
danzilio has quit [Max SendQ exceeded]
Diabolik_ has quit [Max SendQ exceeded]
mostlybadfly has quit [Max SendQ exceeded]
JJonah has joined #ruby
ggherdov has quit [Max SendQ exceeded]
seanh has quit [Ping timeout: 276 seconds]
ckrailo has quit [Ping timeout: 252 seconds]
caw______ has quit [Max SendQ exceeded]
avdi has joined #ruby
mroth has quit [Max SendQ exceeded]
Chew has quit [Max SendQ exceeded]
Bosma has joined #ruby
untitaker has quit [Ping timeout: 276 seconds]
lipoqil has quit [Ping timeout: 240 seconds]
craysiii has joined #ruby
knowtheory has quit [Ping timeout: 256 seconds]
avdi has quit [Max SendQ exceeded]
galeido has joined #ruby
Bosma has quit [Client Quit]
[diecast] has quit [Max SendQ exceeded]
JJonah has quit [Max SendQ exceeded]
pizzaops has joined #ruby
pizzaops has quit [Max SendQ exceeded]
galeido has quit [Max SendQ exceeded]
hayden___ has quit [Ping timeout: 240 seconds]
mostlybadfly has joined #ruby
arcturiaen has joined #ruby
raggi has joined #ruby
nuck has joined #ruby
mroth has joined #ruby
avdi has joined #ruby
podman has quit [Max SendQ exceeded]
olivierjanss has quit [Max SendQ exceeded]
mitsuhiko has quit [Max SendQ exceeded]
craysiii has quit [Max SendQ exceeded]
Chew has joined #ruby
Fenhl has joined #ruby
ircmaxell has quit [Ping timeout: 276 seconds]
jxf has joined #ruby
JJonah has joined #ruby
maciuszek has joined #ruby
Brak____________ has quit [Ping timeout: 240 seconds]
pwillard has joined #ruby
nuck has quit [Max SendQ exceeded]
mroth has quit [Max SendQ exceeded]
hsiktas has quit [Ping timeout: 256 seconds]
jabreity has quit [Ping timeout: 256 seconds]
galeido has joined #ruby
pizzaops has joined #ruby
ReinH has joined #ruby
[diecast] has joined #ruby
avdi has quit [Max SendQ exceeded]
maciuszek has quit [Max SendQ exceeded]
hayden___ has joined #ruby
parsnip0 has joined #ruby
Tony-St4rk has joined #ruby
olivierjanss has joined #ruby
peteretep has joined #ruby
arcturiaen has quit [Max SendQ exceeded]
deimos has joined #ruby
jxf has quit [Max SendQ exceeded]
JJonah has quit [Max SendQ exceeded]
pizzaops has quit [Max SendQ exceeded]
danzilio has joined #ruby
galeido has quit [Max SendQ exceeded]
deimos has quit [Max SendQ exceeded]
Iambchop has joined #ruby
mitsuhiko has joined #ruby
mattwc has joined #ruby
tfitts has joined #ruby
podman has joined #ruby
peteretep has quit [Max SendQ exceeded]
iamdevnul has quit [Ping timeout: 260 seconds]
manveru has quit [Ping timeout: 256 seconds]
Brak____________ has joined #ruby
<parsnip0> trying `s3_website push` gives `connect': SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: tlsv1 alert protocol version (OpenSSL::SSL::SSLError)
avdi has joined #ruby
galeido has joined #ruby
tfitts has quit [Max SendQ exceeded]
olivierjanss has quit [Max SendQ exceeded]
mroth has joined #ruby
mostlybadfly has quit [Max SendQ exceeded]
maciuszek has joined #ruby
pwillard has quit [Max SendQ exceeded]
danzilio has quit [Max SendQ exceeded]
maciuszek has quit [Max SendQ exceeded]
mattwc has quit [Max SendQ exceeded]
ggherdov has joined #ruby
Diabolik_ has joined #ruby
peteretep has joined #ruby
jabreity has joined #ruby
Tony-St4rk has quit [Max SendQ exceeded]
jxf has joined #ruby
Lloyd has joined #ruby
JJonah has joined #ruby
pizzaops has joined #ruby
galeido has quit [Max SendQ exceeded]
justache has joined #ruby
arcturiaen has joined #ruby
deimos has joined #ruby
nuck has joined #ruby
jxf has quit [Max SendQ exceeded]
ggherdov has quit [Max SendQ exceeded]
olivierjanss has joined #ruby
peteretep has quit [Max SendQ exceeded]
deimos has quit [Max SendQ exceeded]
nuck has quit [Max SendQ exceeded]
pwillard has joined #ruby
tfitts has joined #ruby
danzilio has joined #ruby
jhill_ has quit [Ping timeout: 265 seconds]
arcturiaen has quit [Max SendQ exceeded]
[diecast] has quit [Max SendQ exceeded]
craysiii has joined #ruby
JJonah has quit [Max SendQ exceeded]
Mutsuhito has joined #ruby
KnownSyntax has joined #ruby
avdi has quit [Max SendQ exceeded]
untitaker has joined #ruby
ircmaxell has joined #ruby
galeido has joined #ruby
maciuszek has joined #ruby
pwillard has quit [Max SendQ exceeded]
maciuszek has quit [Max SendQ exceeded]
mostlybadfly has joined #ruby
olivierjanss has quit [Max SendQ exceeded]
ckrailo has joined #ruby
tfitts has quit [Max SendQ exceeded]
tycoon177 has quit [Ping timeout: 256 seconds]
Fenhl has quit [Max SendQ exceeded]
justache has quit [Max SendQ exceeded]
Tony-St4rk has joined #ruby
mattwc has joined #ruby
mr-robert has joined #ruby
Mutsuhito has quit [Max SendQ exceeded]
avdi has joined #ruby
nuck has joined #ruby
arcturiaen has joined #ruby
JJonah has joined #ruby
peteretep has joined #ruby
danzilio has quit [Max SendQ exceeded]
galeido has quit [Max SendQ exceeded]
jxf has joined #ruby
knowtheory has joined #ruby
[diecast] has joined #ruby
jxf has quit [Max SendQ exceeded]
arcturiaen has quit [Max SendQ exceeded]
deimos has joined #ruby
deimos has quit [Max SendQ exceeded]
untitaker has quit [Max SendQ exceeded]
pwillard has joined #ruby
nuck has quit [Max SendQ exceeded]
Tony-St4rk has quit [Max SendQ exceeded]
peteretep has quit [Max SendQ exceeded]
olivierjanss has joined #ruby
maciuszek has joined #ruby
tfitts has joined #ruby
avdi has quit [Max SendQ exceeded]
JJonah has quit [Max SendQ exceeded]
galeido has joined #ruby
maciuszek has quit [Max SendQ exceeded]
[diecast] has quit [Max SendQ exceeded]
Mutsuhito has joined #ruby
Fenhl has joined #ruby
arcturiaen has joined #ruby
danzilio has joined #ruby
iamdevnul has joined #ruby
tfitts has quit [Max SendQ exceeded]
peteretep has joined #ruby
nuck has joined #ruby
arcturiaen has quit [Max SendQ exceeded]
avdi has joined #ruby
olivierjanss has quit [Max SendQ exceeded]
galeido has quit [Max SendQ exceeded]
lipoqil has joined #ruby
jxf has joined #ruby
untitaker has joined #ruby
pwillard has quit [Max SendQ exceeded]
[diecast] has joined #ruby
[diecast] has quit [Max SendQ exceeded]
maciuszek has joined #ruby
caw______ has joined #ruby
deimos has joined #ruby
maciuszek has quit [Max SendQ exceeded]
danzilio has quit [Max SendQ exceeded]
seanh has joined #ruby
peteretep has quit [Max SendQ exceeded]
Mutsuhito has quit [Max SendQ exceeded]
nuck has quit [Max SendQ exceeded]
Tony-St4rk has joined #ruby
tfitts has joined #ruby
colstrom has joined #ruby
Fenhl has quit [Max SendQ exceeded]
arcturiaen has joined #ruby
galeido has joined #ruby
doesntbyte has quit [Ping timeout: 260 seconds]
JJonah has joined #ruby
olivierjanss has joined #ruby
jetpack_joe has joined #ruby
jxf has quit [Max SendQ exceeded]
FrostCandy has quit []
peteretep has joined #ruby
arcturiaen has quit [Max SendQ exceeded]
maciuszek has joined #ruby
deimos has quit [Max SendQ exceeded]
danzilio has joined #ruby
jetpack_joe has quit [Max SendQ exceeded]
nuck has joined #ruby
pwillard has joined #ruby
Mutsuhito has joined #ruby
[diecast] has joined #ruby
galeido has quit [Max SendQ exceeded]
[diecast] has quit [Max SendQ exceeded]
maciuszek has quit [Max SendQ exceeded]
untitaker has quit [Max SendQ exceeded]
peteretep has quit [Max SendQ exceeded]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tfitts has quit [Max SendQ exceeded]
Fenhl has joined #ruby
ggherdov has joined #ruby
tycoon177 has joined #ruby
manveru has joined #ruby
nuck has quit [Max SendQ exceeded]
jxf has joined #ruby
arcturiaen has joined #ruby
deimos has joined #ruby
galeido has joined #ruby
pwillard has quit [Max SendQ exceeded]
jetpack_joe has joined #ruby
deimos has quit [Max SendQ exceeded]
peteretep has joined #ruby
jxf has quit [Max SendQ exceeded]
maciuszek has joined #ruby
manveru has quit [Max SendQ exceeded]
tfitts has joined #ruby
untitaker has joined #ruby
nuck has joined #ruby
[diecast] has joined #ruby
yo61 has joined #ruby
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
galeido has quit [Max SendQ exceeded]
deimos has joined #ruby
pwillard has joined #ruby
jxf has joined #ruby
nuck has quit [Max SendQ exceeded]
manveru has joined #ruby
galeido has joined #ruby
tfitts has quit [Max SendQ exceeded]
doesntbyte has joined #ruby
jhill_ has joined #ruby
nuck has joined #ruby
tfitts has joined #ruby
justache has joined #ruby
orbyt_ has joined #ruby
kireevco has joined #ruby
hsiktas has joined #ruby
Vapez has quit [Remote host closed the connection]
hahuang65 has quit [Quit: WeeChat 2.0.1]
netherwolfe has quit [Ping timeout: 252 seconds]
hahuang65 has joined #ruby
Barrt has joined #ruby
bkxd has joined #ruby
Dimik has joined #ruby
Puffball has joined #ruby
bkxd has quit [Ping timeout: 260 seconds]
RougeR has quit [Ping timeout: 245 seconds]
<raynold> ahh it's a wonderful day
John_Ivan has quit [Ping timeout: 245 seconds]
n0m4d1c has joined #ruby