havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.4.2, 2.3.5 & 2.2.8: 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
lagweezle is now known as lagweezle_away
troys is now known as troys_
ramfjord has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
ramfjord has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
ramfjord has joined #ruby
blackmesa has joined #ruby
ramfjord has quit [Ping timeout: 255 seconds]
cschneid_ has joined #ruby
ramfjord has joined #ruby
skweek has joined #ruby
cschneid_ has quit [Ping timeout: 258 seconds]
_aeris_ has quit [Remote host closed the connection]
_aeris_ has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
orbyt_ has joined #ruby
nicesignal has quit [Remote host closed the connection]
ramfjord has joined #ruby
nicesignal has joined #ruby
7ITABQ7DJ has joined #ruby
workmad3 has joined #ruby
mjolnird has quit [Quit: Leaving]
cajone has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 258 seconds]
Freshnuts has quit [Remote host closed the connection]
Freshnuts has joined #ruby
ramfjord has joined #ruby
7ITABQ7DJ has quit [Client Quit]
workmad3 has quit [Ping timeout: 248 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cajone has joined #ruby
ramfjord has quit [Ping timeout: 255 seconds]
ramfjord has joined #ruby
tristanp has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
AxelAlex has joined #ruby
ramfjord has joined #ruby
bronson has joined #ruby
PaulCapestany has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 255 seconds]
bronson has quit [Ping timeout: 248 seconds]
ramfjord has joined #ruby
statelesscode has quit [Quit: statelesscode]
jud has quit [Read error: Connection reset by peer]
coderphive has joined #ruby
<coderphive> https://ruby-lang.org/ cert is borked
<matthewd> coderphive: Where did you encounter that URL?
<coderphive> in the topic
<coderphive> NET::ERR_CERT_COMMON_NAME_INVALID
<matthewd> The topic says https://www.ruby-lang.org
<elomatreb> www. works though
PaulCapestany has joined #ruby
selim has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 255 seconds]
ramfjord has joined #ruby
selim has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
coderphive has quit [Quit: coderphive]
bronson has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
d10n-work has quit [Quit: Connection closed for inactivity]
tvw has quit [Ping timeout: 246 seconds]
imode has joined #ruby
bronson has joined #ruby
Cohedrin_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bronson has quit [Ping timeout: 240 seconds]
d^sh has quit [Ping timeout: 240 seconds]
d^sh has joined #ruby
blackmesa has quit [Ping timeout: 255 seconds]
jinie has quit [Ping timeout: 248 seconds]
mim1k has joined #ruby
alnewkirk has joined #ruby
jinie has joined #ruby
agent_white has quit [Quit: bbl]
mim1k has quit [Ping timeout: 248 seconds]
alnewkirk has quit [Ping timeout: 240 seconds]
mson has quit [Quit: Connection closed for inactivity]
cschneid_ has joined #ruby
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
CrazyEddy has quit [Ping timeout: 240 seconds]
belmoussaoui has joined #ruby
belmoussaoui has quit [Remote host closed the connection]
megamos has quit [Ping timeout: 240 seconds]
belmoussaoui has joined #ruby
gusrub has quit []
cschneid_ has quit [Read error: Connection reset by peer]
cschneid_ has joined #ruby
mson has joined #ruby
skweek has quit [Ping timeout: 240 seconds]
chouhoulis has joined #ruby
_whitelogger has joined #ruby
eckhardt has joined #ruby
cdg has joined #ruby
uZiel has quit [Ping timeout: 248 seconds]
enterprisey has joined #ruby
cdg has quit [Ping timeout: 240 seconds]
RickHull has joined #ruby
bronson has joined #ruby
orbyt_ has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
ledestin has joined #ruby
workmad3 has joined #ruby
kapil___ has joined #ruby
ledestin has quit [Ping timeout: 255 seconds]
workmad3 has quit [Ping timeout: 255 seconds]
<RickHull> is there any good integration for rocco with github's gh-pages feature?
<RickHull> specifically, I want to run rocco on e.g. master branch. this drops an .html file on the filesystem. ideally, it would go to the gh-pages branch and be easily published and go live
<RickHull> i can't think of a good way for e.g. a rake task to operate on/within the master branch, and yet have an output of that rake task make changes on the gh-pages branch
cdg has joined #ruby
uZiel has joined #ruby
<RickHull> you could do it with `git merge` I suppose, but it's kinda weird since gh-pages isn't *really* a branch off master
<elomatreb> Operate on master, move the result out of the way, checkout gh-pages, commit, checkout master again? Hacky though
<RickHull> yeah, that's basically what i'm doing now. looking to unhack it :)
<RickHull> it's especially gnarly because any automation tricks (e.g. Rakefile) get blown away by switching branches
<RickHull> it seems like there should be a really slick way to do this
<RickHull> if not, i'll probably just delete the gh-pages branch and send rocco's output directly to my username.github.io repo
<elomatreb> I think that's better IMO, mixing branches that actually don't have anything directly to do with a software into the repo seems like bad practice to me
<RickHull> yep, gh-pages is kind of the real hack
<RickHull> rtomayko pls halp
cadillac_ has quit [Quit: I quit]
cadillac_ has joined #ruby
<RickHull> ah, it looks like I can/should publish from master
uZiel has quit [Ping timeout: 248 seconds]
jamesaxl has quit [Ping timeout: 255 seconds]
gix has quit [Ping timeout: 240 seconds]
uZiel has joined #ruby
<RickHull> I think that's a relatively newer feature; either you publish everything under master, or everything under master's docs/ subdir
shinnya has quit [Ping timeout: 255 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kn-928 has quit [Ping timeout: 255 seconds]
gix has joined #ruby
cagmz has joined #ruby
dviola has joined #ruby
cagmz_ has joined #ruby
cagmz has quit [Ping timeout: 240 seconds]
mjolnird has joined #ruby
bronson has joined #ruby
rfoust has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cadillac_ has quit [Ping timeout: 240 seconds]
cadillac_ has joined #ruby
bronson has quit [Ping timeout: 258 seconds]
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
eckhardt has joined #ruby
kn-928 has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
guardianx has joined #ruby
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
mim1k has joined #ruby
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
__Yiota has joined #ruby
eckhardt has joined #ruby
alnewkirk has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
Apocalypse has quit [Remote host closed the connection]
kn-928 has quit [Ping timeout: 240 seconds]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
mim1k has quit [Ping timeout: 255 seconds]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
alnewkirk has quit [Ping timeout: 260 seconds]
eckhardt has joined #ruby
cdg has quit [Remote host closed the connection]
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
alnewkirk has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
alnewkirk has quit [Ping timeout: 240 seconds]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
eckhardt has joined #ruby
eckhardt has quit [Client Quit]
Apocalypse has joined #ruby
ledestin has joined #ruby
apparition has joined #ruby
mson has quit [Quit: Connection closed for inactivity]
lacour has quit [Quit: Leaving]
ramfjord has joined #ruby
AxelAlex has quit [Quit: AxelAlex]
pilne has quit [Quit: Quitting!]
mjolnird has quit [Quit: Leaving]
ramfjord has quit [Ping timeout: 248 seconds]
apparition has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
bronson has joined #ruby
guardianx has quit []
rexb0t has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
chouhoulis has quit [Remote host closed the connection]
cagmz_ has quit [Quit: Leaving]
rexb0t has quit [Quit: Mutter: www.mutterirc.com]
workmad3 has joined #ruby
tristanp has quit [Remote host closed the connection]
tristanp has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
mim1k has joined #ruby
tristanp has quit [Ping timeout: 240 seconds]
troys_ is now known as troys
Bhootrk_ has joined #ruby
Bhootrk_ has quit [Max SendQ exceeded]
Cohedrin_ has joined #ruby
mim1k has quit [Ping timeout: 248 seconds]
coderphive has joined #ruby
cschneid_ has quit [Remote host closed the connection]
cschneid_ has joined #ruby
mson has joined #ruby
__Yiota has joined #ruby
cschneid_ has quit [Ping timeout: 255 seconds]
cschneid_ has joined #ruby
SeepingN has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cschneid_ has quit [Ping timeout: 246 seconds]
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Bock has joined #ruby
thejamespinto has joined #ruby
uZiel has quit [Ping timeout: 248 seconds]
uZiel has joined #ruby
djbkd has joined #ruby
mjolnird has joined #ruby
coderphive has quit [Quit: coderphive]
dviola has quit [Quit: WeeChat 1.9.1]
Bock has quit [Ping timeout: 240 seconds]
alnewkirk has joined #ruby
Bock has joined #ruby
bronson has joined #ruby
kies has quit [Ping timeout: 246 seconds]
alnewkirk has quit [Ping timeout: 248 seconds]
bronson has quit [Ping timeout: 260 seconds]
CHIPPY has joined #ruby
Bock has quit [Ping timeout: 248 seconds]
Bock has joined #ruby
shinnya has joined #ruby
cschneid_ has joined #ruby
Guiri has left #ruby ["WeeChat 1.9.1"]
cschneid_ has quit [Ping timeout: 246 seconds]
cdg has joined #ruby
dionysus69 has joined #ruby
Bock has quit [Ping timeout: 248 seconds]
Bock has joined #ruby
cdg has quit [Ping timeout: 255 seconds]
troys is now known as troys_
SuperTaz has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 260 seconds]
jphase has joined #ruby
jphase has quit [Ping timeout: 258 seconds]
cschneid_ has joined #ruby
Cohedrin_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bronson has joined #ruby
cschneid_ has quit [Ping timeout: 258 seconds]
CHIPPY has quit [Excess Flood]
bronson has quit [Ping timeout: 255 seconds]
FahmeF_ has joined #ruby
dionysus69 has quit [Ping timeout: 255 seconds]
dionysus69 has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 258 seconds]
nadir has quit [Quit: Connection closed for inactivity]
opekktar has joined #ruby
kies has joined #ruby
cschneid_ has joined #ruby
tenakoe has joined #ruby
thejamespinto has quit [Remote host closed the connection]
thejamespinto has joined #ruby
Cohedrin_ has joined #ruby
cschneid_ has quit [Ping timeout: 264 seconds]
thejamespinto has quit [Ping timeout: 240 seconds]
dionysus69 has quit [Remote host closed the connection]
dionysus69 has joined #ruby
opekktar has quit [Quit: Leaving]
tenakoe has quit [Quit: Mutter: www.mutterirc.com]
kapil___ has quit [Quit: Connection closed for inactivity]
enterprisey has quit [Remote host closed the connection]
kn-928 has joined #ruby
imode has quit [Ping timeout: 258 seconds]
bronson has joined #ruby
cschneid_ has joined #ruby
kn-928 has quit [Ping timeout: 260 seconds]
FahmeF_ has quit []
kn-928 has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
cschneid_ has quit [Ping timeout: 255 seconds]
kn-928 has quit [Ping timeout: 260 seconds]
Dimik has quit [Ping timeout: 240 seconds]
djbkd has quit [Remote host closed the connection]
Freshnuts has quit [Quit: Leaving]
djbkd has joined #ruby
eckhardt has joined #ruby
megamos has joined #ruby
djbkd has quit [Ping timeout: 258 seconds]
Cohedrin_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Yxhuvud has quit [Remote host closed the connection]
Yxhuvud has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
nickjj_ has joined #ruby
nickjj has quit [Ping timeout: 258 seconds]
Silthias has joined #ruby
Silthias1 has quit [Ping timeout: 246 seconds]
impermanence has joined #ruby
kapil___ has joined #ruby
nadir has joined #ruby
cschneid_ has joined #ruby
ramfjord has joined #ruby
erlend has quit [Ping timeout: 255 seconds]
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<impermanence> what's the best way to read a binary file in Ruby?
<impermanence> rn I'm using IO.binread...
cschneid_ has quit [Ping timeout: 255 seconds]
ramfjord has quit [Ping timeout: 258 seconds]
erlend has joined #ruby
_sfiguser has quit [Ping timeout: 248 seconds]
marr has joined #ruby
milardovich has joined #ruby
baweaver is now known as baweaver_away
<RickHull> probably not much better than that, if you want a binary read
milardovich has quit [Remote host closed the connection]
quobo has joined #ruby
impermanence has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
impermanence has joined #ruby
mson has quit [Quit: Connection closed for inactivity]
<matthewd> ?best impermanence
<ruby[bot]> impermanence: "better" and "best" depend entirely on your context. Try to describe what quality would make one thing better than the other.
bronson has joined #ruby
<RickHull> fastest, least resource consumption
<impermanence> matthewd: fair enough
<RickHull> golfiest too
eckhardt has joined #ruby
Guest97372 has joined #ruby
megamosaren has joined #ruby
megamosaren has quit [Client Quit]
postmodern has quit [Quit: Leaving]
eckhardt has quit [Client Quit]
bronson has quit [Ping timeout: 260 seconds]
workmad3 has joined #ruby
RickHull has quit [Quit: Page closed]
_sfiguser has joined #ruby
yaewa has joined #ruby
blackmesa has joined #ruby
moei has quit [Ping timeout: 260 seconds]
workmad3 has quit [Ping timeout: 255 seconds]
raynold has quit [Quit: Connection closed for inactivity]
blackmesa has quit [Quit: WeeChat 1.9.1]
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 258 seconds]
ahrs has quit [Remote host closed the connection]
ahrs has joined #ruby
Qiong` has joined #ruby
Qiong has quit [Ping timeout: 255 seconds]
cschneid_ has joined #ruby
rhyselsmore has joined #ruby
belmoussaoui has quit [Quit: belmoussaoui]
conta has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
thejamespinto has joined #ruby
impermanence has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
thejamespinto has quit [Ping timeout: 260 seconds]
A124 has quit [Read error: Connection reset by peer]
mjolnird has quit [Ping timeout: 246 seconds]
A124 has joined #ruby
megamos has quit [Ping timeout: 240 seconds]
nahra has quit [Remote host closed the connection]
bronson has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
cschneid_ has joined #ruby
dionysus69 has quit [Quit: dionysus69]
elementaru has joined #ruby
dionysus69 has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
DTZUZO has quit [Ping timeout: 248 seconds]
amigoo1123 has joined #ruby
consti has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
conta has quit [Ping timeout: 258 seconds]
nickjj_ is now known as nickjj
Injecti0n has joined #ruby
<Injecti0n> hi
<al2o3-cr> o/
alex`` has quit [Quit: WeeChat 1.9.1]
amigoo1123 has quit [Quit: Page closed]
alex`` has joined #ruby
tmm88 has joined #ruby
alex`` has quit [Client Quit]
alex`` has joined #ruby
<morfin> if binary file has some structure is not it better to mmap it?
<morfin> as example i has some TOC in the beginning of file and then N blocks(every block could have different size) i can mmap, read TOC and then access any block i need
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
tsglove has quit [Ping timeout: 255 seconds]
alex`` has quit [Quit: WeeChat 1.9.1]
cschneid_ has joined #ruby
bronson has joined #ruby
alex`` has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
bronson has quit [Ping timeout: 255 seconds]
workmad3 has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
Injecti0n has quit [Quit: Leaving]
workmad3 has quit [Ping timeout: 248 seconds]
kies has quit [Ping timeout: 248 seconds]
cdg has joined #ruby
Ltem has joined #ruby
cdg has quit [Ping timeout: 246 seconds]
tmm88 has quit [Quit: Lost terminal]
consti has quit [Quit: consti]
kies has joined #ruby
InfinityFye has joined #ruby
blackmesa has joined #ruby
apparition has joined #ruby
minimalism has quit [Quit: minimalism]
charliesome has joined #ruby
cschneid_ has joined #ruby
jamesaxl has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
InfinityFye has quit [Ping timeout: 240 seconds]
InfinityFye has joined #ruby
bronson has joined #ruby
alfiemax has joined #ruby
sepp2k has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
blackmesa has quit [Ping timeout: 240 seconds]
alfiemax has quit [Remote host closed the connection]
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
dionysus70 has joined #ruby
cschneid_ has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
dionysus70 is now known as dionysus69
cschneid_ has quit [Ping timeout: 246 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has joined #ruby
millerti has quit [Ping timeout: 240 seconds]
charliesome has quit [Client Quit]
gizmore has joined #ruby
jinie has quit [Ping timeout: 240 seconds]
jinie has joined #ruby
adam12 has left #ruby ["Leaving..."]
impermanence has joined #ruby
impermanence has quit [Client Quit]
ShalokShalom_ has joined #ruby
John__ has joined #ruby
John__ has quit [Read error: Connection reset by peer]
ShalokShalom has quit [Ping timeout: 240 seconds]
John__ has joined #ruby
ta has quit [Remote host closed the connection]
mjolnird has joined #ruby
rhyselsmore has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Devalo has joined #ruby
cschneid_ has joined #ruby
bronson has joined #ruby
cschneid_ has quit [Ping timeout: 255 seconds]
nofxx has quit [Ping timeout: 255 seconds]
bronson has quit [Ping timeout: 248 seconds]
nofxx has joined #ruby
InfinityFye has quit [Quit: Leaving]
tristanp has joined #ruby
thinkpad has joined #ruby
tristanp has quit [Ping timeout: 240 seconds]
sepp2k1 has joined #ruby
bruce_lee has joined #ruby
bruce_lee has quit [Changing host]
bruce_lee has joined #ruby
marcux has quit [Ping timeout: 255 seconds]
sepp2k has quit [Ping timeout: 240 seconds]
bruno-_ has quit [Ping timeout: 248 seconds]
ShalokShalom_ is now known as ShalokShalom
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
fmcgeough has joined #ruby
marcux has joined #ruby
marcux has quit [Remote host closed the connection]
marcux has joined #ruby
edward_ has quit [Ping timeout: 246 seconds]
marcux has quit [Client Quit]
bruno- has joined #ruby
thejamespinto has joined #ruby
thejamespinto has quit [Ping timeout: 240 seconds]
bruno- has quit [Ping timeout: 240 seconds]
edward_ has joined #ruby
bruno- has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bruno- has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
bronson has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
jnj has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
<jnj> Hey guys I'm having issues install ffi. I did just get a brand new laptop and I'm running linux mint, so I think I may be missing some basic stuff that I need.
<jnj> I keep on getting an error saying "unable to make makefiles", but I already have gcc installed
edward_ has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
<jhass> jnj: it should print you somewhere the path to mkmf.log, check it
<jhass> (or gist it if it says nothing to you)
tamouse__ has joined #ruby
soc42 has joined #ruby
<jnj> jhass: nice timing, I was just looking at it. At the top I have "package configuration for libffi is not found"
skweek has joined #ruby
<jhass> do you have the libffi-dev package installed?
bruno- has joined #ruby
<jnj> jhass: Nope, installing it now!
coderphive has joined #ruby
<jnj> jhas
<jnj> jhass: Now when trying out sudo gem install ffi I get the error: No such file or directory - getcwd
bruno- has quit [Read error: Connection reset by peer]
<jhass> huh, did you manage to delete the folder your shell is in or something? :D
<jnj> jhass: Nope haha
techn1cs has joined #ruby
<jnj> jhass: Should I just rm the ffi folder and try gem install again?
<jnj> I just want jekyll to work :`(
<jhass> what ffi folder? :o
jrafanie has joined #ruby
<jnj> the one here: /var/lib/gems/2.3.0/extensions/x86_64-linux/2.3.0/
<jhass> could you gist the entire output of what you're doing?
troulouliou_div2 has joined #ruby
bruno- has joined #ruby
<jnj> Sure!
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
megamos has joined #ruby
chopin has joined #ruby
nowhere_man has joined #ruby
Devalo has quit [Remote host closed the connection]
<jhass> weird
<jhass> can you type cd and then cd again to your working directory for me pls? :P
Devalo has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
<jnj> jhass: As in for me to just go to the directory I'm trying this in?
bruno- has joined #ruby
<jhass> kinda, I mean the gem install you can run from anywhere really
<jhass> all I can find on the net on this error is people that messed with their working directory in another shell :P
<jnj> jhass: Ok, so I was trying this in ~Code/jonnycyr.github.io
<jnj> jhass: Huh, yeah I never tried to mess with my working directory
<jnj> jhass: Is there a gem command to delete a gem, maybe reinstall will work/
<jhass> I mean like deleting/recreating it
<jhass> would be gem uninstall I doubt it'll help or even work at this point though
bruno- has quit [Read error: Connection reset by peer]
<jnj> Ah ok
<jhass> so it fails the same even from your ~
<jhass> ?
coderphive has quit [Quit: coderphive]
Devalo has quit [Ping timeout: 248 seconds]
<jnj> jhass: Yeah, there's a new output tho! I'll post it in the gist
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
bruno- has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
<jhass> okay, this time it's complaining about missing C standard library headers
<jhass> thanks debian for splitting every single file into its own package, sigh
<jhass> anything against just installing build-essential?
<jnj> jhass: Nope, I'll do that
<jnj> jhass: I had a feeling it was just me missing some C packages, I assumed that build-essential was already installed
rabajaj has joined #ruby
<jnj> jhass: Ayy, it's working! Thanks so much.
<jhass> I would've assumed that stuff is in the gcc package :D
<jhass> yw
<jnj> jhass: Same tbh. I'm trying to install github-pages now too but it says I do not have zlib. Do you what zlib is called in apt-get?
bruno- has joined #ruby
<jhass> zlib-dev ;D
megamos has quit [Quit: Leaving]
Devalo has quit [Ping timeout: 248 seconds]
<jnj> jhass: Huh, I can't find it. I'm just following the instructions here: https://geeksww.com/tutorials/libraries/zlib/installation/installing_zlib_on_ubuntu_linux.php
bruno- has quit [Read error: Connection reset by peer]
<jnj> Do you know the right dir for me to install zlib? Does /usr/local/zlib work/
<jnj> ?
<jhass> huh
<jhass> it really really should be a package
<jhass> maybe they finally fixed the name and it's libz-dev now?
* jhass doesn't really use debian based systems anymore
<jnj> jhass: Ayy that works. And what systems do you use now?
<jhass> arch :)
<jnj> jhass: Dude, I was literally about to guess that haha.
<jhass> :P
<jnj> how awesome is it? What machine do you program on?
alex`` has quit [Quit: WeeChat 1.9.1]
bruno- has joined #ruby
<jhass> well this kind of stuff is largely personal preference, but it's incredibly stable for my type of usage, I even run it on all my personal servers by now
<jhass> for work I have a mac but everything else is mac
<jhass> is *arch, sigh
<jhass> the main advantage I see is that the packaging system is so easy to learn, I never have to do that terrible sudo make install from that "tutorial" you linked anymore :P
bruno- has quit [Read error: Connection reset by peer]
<jnj> Ahh, so pacman is that good?
<jhass> let's say that simple ;)
<jnj> I recently bought a used thinkpad t530 and I love it. I got it for $425 it has 8gb ram, ssd, and an i7 quadcore processor - things a beast!
alex`` has joined #ruby
cschneid_ has joined #ruby
<jnj> jhass: I've thought about learning arch in the future, that level of configuration is sort of what I really like
shinnya has quit [Ping timeout: 255 seconds]
<jnj> My love of configuration is what makes me use emacs
<jhass> yeah, definitely worth if you want to understand the linux stack/know how your system comes together without going all LFS
<jhass> if you just want it for the package manager and maybe the rolling release though go with antergos
bruno- has joined #ruby
reaVer has quit [Ping timeout: 248 seconds]
chopin has quit [Remote host closed the connection]
<jnj> jhass: i tried out antergos before, I thought it was alright
cschneid_ has quit [Ping timeout: 246 seconds]
bruno- has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
Devalo has joined #ruby
cagmz has joined #ruby
reaVer has joined #ruby
<cagmz> what's the difference between these 2 Ruby methods? I don't understand why you would make this change. https://hastebin.com/tisapukoju.rb
bruno- has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
<matthewd> cagmz: They behave differently (on the second+ call) if get_bar returns nil or false
<cagmz> matthewd, so in `foo`, `get_bar()` may return nil and assign it to @bar? where as in `other_foo`, once we get a non-nil value from `get_bar()` and assign it to `@bar`, we "protect it" by returning early if it is defined?
dionysus69 has quit [Remote host closed the connection]
<cagmz> actually, that still doesn't make sense. in `foo`, we can get a non-nil value from `get_bar()` and on the second call, @bar would not be redefined by `get_bar()`
<matthewd> Why not?
dionysus69 has joined #ruby
<cagmz> because it is already defined? I thought ||= only redefines a variable if the variable is falsey
nahra has joined #ruby
bronson has joined #ruby
<cagmz> on the first call to `foo`, `@bar` can be assigned a non-nil value by `get_bar()`. then on the second call, since `@bar` is already defined, `get_bar()` would not be called again. as far as I understand, anyways
<matthewd> Sure. *If* get_bar returns a truthy value.
workmad3 has joined #ruby
snickers has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
snickers has quit [Client Quit]
workmad3 has quit [Ping timeout: 240 seconds]
dviola has joined #ruby
__Yiota has joined #ruby
reaVer has quit [Ping timeout: 260 seconds]
skweek has quit [Ping timeout: 260 seconds]
mjolnird has quit [Quit: Leaving]
reaVer has joined #ruby
chopin has joined #ruby
Devalo has joined #ruby
rfoust has joined #ruby
thejamespinto has joined #ruby
blackmesa has joined #ruby
reaVer has quit [Ping timeout: 260 seconds]
__Yiota has quit [Max SendQ exceeded]
__Yiota has joined #ruby
Devalo has quit [Ping timeout: 255 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
tamouse__ has quit [Ping timeout: 240 seconds]
Devalo has joined #ruby
blackmesa has quit [Ping timeout: 255 seconds]
skweek has joined #ruby
Genya has quit [Quit: ZNC 1.6.5 - http://znc.in]
johnzorn has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
__Yiota has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
soc42 has quit [Ping timeout: 240 seconds]
soc42 has joined #ruby
megamos has joined #ruby
dinfuehr has quit [Ping timeout: 240 seconds]
dinfuehr has joined #ruby
Emmanuel_Chanel has quit [Ping timeout: 255 seconds]
cschneid_ has joined #ruby
fmcgeough has quit [Quit: fmcgeough]
Genya has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
cadillac_ has quit [Ping timeout: 258 seconds]
ddffg has joined #ruby
cadillac_ has joined #ruby
jrheaton has joined #ruby
bronson has joined #ruby
Devalo has joined #ruby
wnd has quit [Excess Flood]
wnd has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
bruno- has quit [Ping timeout: 260 seconds]
soc42 has quit [Read error: No route to host]
pilne has joined #ruby
postmodern has joined #ruby
megamos has quit [Ping timeout: 260 seconds]
techn1cs has quit [Ping timeout: 260 seconds]
techn1cs has joined #ruby
techn1cs has quit [Changing host]
techn1cs has joined #ruby
alex`` has quit [Ping timeout: 255 seconds]
alex`` has joined #ruby
megamos has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
mson has joined #ruby
skweek has quit [Ping timeout: 248 seconds]
Devalo has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
orbyt_ has joined #ruby
Devalo has joined #ruby
megamos has quit [Ping timeout: 240 seconds]
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Dimik has joined #ruby
apparition has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
troulouliou_div2 has quit [Quit: Leaving]
hknaxu has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
chopin has quit [Remote host closed the connection]
Devalo has joined #ruby
dasher00 has joined #ruby
dasher00 has quit [Max SendQ exceeded]
dasher00 has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
dasher00 has quit [Remote host closed the connection]
ta has joined #ruby
jrheaton has quit [Quit: Textual IRC Client: www.textualapp.com]
jrheaton has joined #ruby
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chopin has joined #ruby
chopin has quit [Remote host closed the connection]
chopin has joined #ruby
chopin has quit [Remote host closed the connection]
thinkpad has quit [Ping timeout: 240 seconds]
blackmesa has joined #ruby
_whitelogger has joined #ruby
santi has quit [Quit: Leaving]
bronson has joined #ruby
ddffg has quit [Ping timeout: 248 seconds]
workmad3 has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
<havenwood> halloooo
workmad3 has quit [Ping timeout: 248 seconds]
chopin has joined #ruby
MrBismuth has quit [Ping timeout: 258 seconds]
rabajaj has quit [Quit: Leaving]
chopin has quit [Ping timeout: 240 seconds]
santi has joined #ruby
coderphive has joined #ruby
imode has joined #ruby
Lyubo1 has quit [Ping timeout: 260 seconds]
mgorbach has quit [Ping timeout: 246 seconds]
reaVer has joined #ruby
Lyubo1 has joined #ruby
reaVer has quit [Ping timeout: 260 seconds]
reaVer has joined #ruby
alex`` has quit [Quit: WeeChat 1.9.1]
nickjj has quit [Read error: Connection reset by peer]
reaVer has quit [Ping timeout: 240 seconds]
alex`` has joined #ruby
reaVer has joined #ruby
raynold has joined #ruby
Devalo has joined #ruby
Ltem has quit [Quit: Leaving]
lighght has joined #ruby
FooMunki has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
lighght has quit [Client Quit]
reaVer has quit [Ping timeout: 248 seconds]
nofxx has quit [Ping timeout: 248 seconds]
tenakoe has joined #ruby
bruno- has joined #ruby
dionysus70 has joined #ruby
dionysus69 has quit [Ping timeout: 255 seconds]
dionysus70 is now known as dionysus69
bronson has joined #ruby
tenakoe has quit [Quit: Mutter: www.mutterirc.com]
tenakoe has joined #ruby
bronson has quit [Ping timeout: 260 seconds]
MrBismuth has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
nofxx has joined #ruby
tenakoe has quit [Ping timeout: 255 seconds]
Devalo has quit [Ping timeout: 240 seconds]
Paraxial has quit [Ping timeout: 260 seconds]
impermanence has joined #ruby
pilne has quit [Quit: Quitting!]
lacour has joined #ruby
ta has quit [Remote host closed the connection]
ta has joined #ruby
<impermanence> I have a one-liner that is returning a value that is double-quoted. I'm trying to then pass this value to a hash, but it doesn't correctly access the hash I suppose to the double quotes around my value. Where am I going wrong here?
guille-moe has joined #ruby
<impermanence> *because of the double quotes, that should have read
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Mon_Ouie has joined #ruby
Paraxial has joined #ruby
<impermanence> k, well change my hash keys to double-quoted instead of single has done the trick so far...
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
troulouliou_div2 has joined #ruby
reaVer has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
mson has quit [Quit: Connection closed for inactivity]
bruno- has quit [Ping timeout: 248 seconds]
fmcgeough has joined #ruby
Devalo has joined #ruby
kculpis has joined #ruby
Cohedrin_ has joined #ruby
Devalo has quit [Ping timeout: 260 seconds]
Bock has quit [Ping timeout: 240 seconds]
nocaberi has joined #ruby
jrafanie has joined #ruby
Cohedrin_ has quit [Ping timeout: 248 seconds]
skweek has joined #ruby
hknaxu has quit [Quit: Textual IRC Client: www.textualapp.com]
imode has quit [Ping timeout: 255 seconds]
minimalism has joined #ruby
coderphive has quit [Quit: coderphive]
r3kz has joined #ruby
bronson has joined #ruby
workmad3 has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 240 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 240 seconds]
cdg has joined #ruby
santi has quit [Remote host closed the connection]
guille-moe has quit [Ping timeout: 248 seconds]
mson has joined #ruby
santi has joined #ruby
Devalo has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
jnj has quit [Ping timeout: 255 seconds]
Devalo has joined #ruby
dn` has quit [Quit: dn`]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Devalo has quit [Ping timeout: 260 seconds]
^mtkd has quit [Read error: Connection reset by peer]
mtkd has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
fmcgeough has quit [Quit: fmcgeough]
belmoussaoui has joined #ruby
belmoussaoui has quit [Remote host closed the connection]
<havenwood> 22>> lambda &:itself
<ruby[bot]> havenwood: # => #<Proc:0x420243f0> (https://eval.in/880122)
<havenwood> 23>> lambda &:itself
<ruby[bot]> havenwood: # => #<Proc:0x41c89c54(&:itself)> (https://eval.in/880123)
blackmesa has joined #ruby
Devalo has joined #ruby
megamos has joined #ruby
tenakoe has joined #ruby
Devalo has quit [Ping timeout: 260 seconds]
troulouliou_div2 has quit [Remote host closed the connection]
tenakoe has quit [Client Quit]
Cohedrin_ has joined #ruby
troys_ is now known as troys
milardovich has joined #ruby
govg has quit [Ping timeout: 248 seconds]
Devalo has joined #ruby
uZiel has quit [Ping timeout: 248 seconds]
Devalo has quit [Ping timeout: 255 seconds]
SuperTaz has quit [Read error: Connection reset by peer]
bronson has joined #ruby
bronson has quit [Ping timeout: 248 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
milardovich has quit [Remote host closed the connection]
milardovich has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
milardovich has quit [Ping timeout: 240 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
belmoussaoui has joined #ruby
nocaberi is now known as Bock
Devalo has quit [Ping timeout: 240 seconds]
jnj has joined #ruby
belmoussaoui has quit [Remote host closed the connection]
Devalo has joined #ruby
thejamespinto has quit [Remote host closed the connection]
DTZUZU has quit [Quit: WeeChat 1.9]
cdg has quit [Remote host closed the connection]
radanisk has joined #ruby
Devalo has quit [Ping timeout: 255 seconds]
DTZUZU has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
troys is now known as troys_
megamos has quit [Ping timeout: 260 seconds]
GodFather has joined #ruby
skweek has quit [Ping timeout: 255 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
DTZUZU has quit [Ping timeout: 255 seconds]
DTZUZU has joined #ruby
GodFather has quit [Ping timeout: 255 seconds]
chopin has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
cdg has joined #ruby
charliesome has joined #ruby
cdg has quit [Ping timeout: 246 seconds]
SeepingN has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
bruno- has joined #ruby
bronson has joined #ruby
radanisk has quit []
workmad3 has joined #ruby
AxelAlex has joined #ruby
AxelAlex has quit [Remote host closed the connection]
Devalo has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 248 seconds]
workmad3 has quit [Ping timeout: 255 seconds]
Mon_Ouie has quit [Ping timeout: 255 seconds]
nowhere_man has quit [Quit: Konversation terminated!]
nowhere_man has joined #ruby
Emmanuel_Chanel has joined #ruby
meadmoon has joined #ruby
DTZUZU has quit [Ping timeout: 260 seconds]
DTZUZU has joined #ruby
chopin has quit [Remote host closed the connection]
thejamespinto has joined #ruby
nickjj has joined #ruby
Devalo has joined #ruby
thejamespinto has quit [Ping timeout: 240 seconds]
rhyselsmore has joined #ruby
Mon_Ouie has joined #ruby
alex`` has quit [Ping timeout: 255 seconds]
Devalo has quit [Ping timeout: 248 seconds]
enterprisey has joined #ruby
rgr has quit [Ping timeout: 240 seconds]
elementaru has quit [Read error: Connection reset by peer]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
enterprisey has quit [Ping timeout: 258 seconds]
raynold has quit [Quit: Connection closed for inactivity]
Devalo has quit [Ping timeout: 264 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
bronson has joined #ruby
sepp2k has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
sepp2k1 has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
enterprisey has joined #ruby
techn1cs has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 240 seconds]
Devalo has quit [Ping timeout: 258 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
FernandoBasso has joined #ruby
kn-928 has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
hfp_work has quit [Ping timeout: 255 seconds]
elcontrastador has joined #ruby
kn-928 has quit [Ping timeout: 258 seconds]
Devalo has quit [Ping timeout: 258 seconds]
jnj has quit [Quit: Leaving]
kliq has quit [Ping timeout: 240 seconds]
chopin has joined #ruby
Devalo has joined #ruby
Azure has quit [Read error: Connection reset by peer]
duderonomy has joined #ruby
Azure has joined #ruby
chopin has quit [Ping timeout: 240 seconds]
Devalo has quit [Ping timeout: 246 seconds]
lunarkitty7 has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
hfp_work has joined #ruby
Devalo has joined #ruby
jrheaton has quit [Quit: Textual IRC Client: www.textualapp.com]
Devalo has quit [Ping timeout: 240 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Genya has quit [Ping timeout: 248 seconds]
jrheaton has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
jrheaton has quit [Client Quit]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Genya has joined #ruby
ledestin has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
fnord_ has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
electrostat has quit [Ping timeout: 252 seconds]
Devalo has quit [Remote host closed the connection]
enterprisey has quit [Remote host closed the connection]
John__ has quit [Ping timeout: 260 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
imode has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Devalo has joined #ruby
acmeraptor has quit [Ping timeout: 255 seconds]
blackmesa has quit [Ping timeout: 240 seconds]
Devalo has quit [Ping timeout: 240 seconds]
morfin has quit []
bronson has joined #ruby
workmad3 has joined #ruby
charliesome has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 258 seconds]
Devalo has joined #ruby
blackmesa has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
baweaver_away is now known as baweaver
weaksauce has joined #ruby
Devalo has quit [Ping timeout: 258 seconds]
milardovich has quit []
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
thejamespinto has joined #ruby
rhyselsmore has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Devalo has joined #ruby
sepp2k has quit [Read error: Connection reset by peer]
dionysus69 has quit [Ping timeout: 240 seconds]
megamos has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
jinie has quit [Ping timeout: 255 seconds]
jinie has joined #ruby
meadmoon has quit [Quit: I am functioning within established parameters.]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
Devalo has joined #ruby
skweek has joined #ruby
megamos has quit [Ping timeout: 258 seconds]
tenakoe has joined #ruby
Devalo has quit [Ping timeout: 240 seconds]
tenakoe has quit [Client Quit]
Devalo has joined #ruby
shinnya has joined #ruby
Devalo has quit [Ping timeout: 248 seconds]
skweek has quit [Ping timeout: 240 seconds]
ta has quit [Read error: Connection reset by peer]
tamouse__ has joined #ruby
r3kz has quit [Quit: Connection closed for inactivity]
rgr has joined #ruby
ta has joined #ruby
orbyt_ has joined #ruby
bronson has joined #ruby
Antiarc has quit [Read error: Connection reset by peer]
Antiarc has joined #ruby
Devalo has joined #ruby
Devalo has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 248 seconds]
santi has quit [Remote host closed the connection]