havenwood changed the topic of #ruby to: Rules & more: http://ruby-community.com || Ruby 2.3.0; 2.2.4; 2.1.8; 2.0.0-p648: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
<toretore> law, it's easier to help if you explain what you're trying to do in more detail
dlitvak_ has quit [Ping timeout: 272 seconds]
<law> I have this big ol' ugly JSON object that I'm pulling from an API
dlitvak has quit [Ping timeout: 250 seconds]
<law> I want Sensu to check certain keys/values in that json object, and graph others
<law> I figure if I can get my ruby script to print out the data in 'perfdata' format (just "<check status> | key1=value1, key2=value2, keyN=valueN" format)
Rodya_ has joined #ruby
<law> that would make my life much less hateful
betabet has quit [Ping timeout: 260 seconds]
<law> so, in preparation for flattening the hash for printing certain keys/values, I want to build a new hash in a slightly different format
techietrash has quit [Max SendQ exceeded]
techietrash has joined #ruby
amoeba has joined #ruby
phredus_ has quit [Quit: No Ping reply in 180 seconds.]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
phredus has joined #ruby
garethrees has joined #ruby
garethrees is now known as ghr
<_Tariq> How do I read Request Headers using the 'socket' library?
dudedudeman has joined #ruby
mrmargolis has joined #ruby
<Ox0dea> Not sure how you feel about that, but it's a start in the right direction.
dsilfen has quit [Read error: Connection reset by peer]
<Ox0dea> Define your translation map and use it to drive the process of building the new Hash.
<law> ...whoa
<law> wtf is going on here?
<law> I understand... SOME of those idioms :-)
<toretore> _Tariq, socket doesn't know anything about http headers
<_Tariq> Oh dear, toretore
<law> you're taking an array of hashes in people, mapping them, and 'doing stuff'
<Ox0dea> law: Sure, it's all just mapping, really.
iateadonut has joined #ruby
<law> I don't quite grok lines 25 thru 29
<Ox0dea> >> [[:a, 1], [:b, 2]].to_h # law
<ruby[bot]> Ox0dea: # => {:a=>1, :b=>2} (https://eval.in/512157)
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Ox0dea> A Hash is literally just a buncha key-value pairs. :)
<law> what is [dest, src ? person.dig(*src) : person[dest]] doing?
<toretore> law, you want to do this, but first check that all the necessary values are present?
Uranio has quit [Ping timeout: 240 seconds]
<law> toretore: yes
dudedudeman has quit [Quit: dudedudeman]
danielwzd has joined #ruby
pawnbox has joined #ruby
* Canar smokes some Hash
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Ox0dea> law: This should clear things up a bit: https://eval.in/512158
dsilfen has joined #ruby
<Ox0dea> Shun such imperative code relentlessly!
mrmargolis has quit [Ping timeout: 240 seconds]
k13nox has joined #ruby
<toretore> law, pretty = ugly.each_with_object{|station, result| if this && that; result[station['name']] = {this => that} end }
<toretore> i think imperative is good enough to begin with, if you're new inject, dig and friends can be intimidating
<toretore> better to get it working and the improve
IrishGringo has quit [Ping timeout: 252 seconds]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<toretore> law, all you have to do is have an `if` that sanity checks and then populates the result if it passes
pawnbox has quit [Ping timeout: 245 seconds]
Brklyn has quit [Ping timeout: 264 seconds]
mrmargolis has joined #ruby
<toretore> _Tariq: what are you trying to do?
<_Tariq> toretore: I am building my own web server for a school project
<_Tariq> and one of the assignments is that I need to find out the User Agent string
<_Tariq> of the browser who is attending my webserver
<_Tariq> so that I can track how many times that same browser sees my website
<_Tariq> The thing is that I don't know how to even access the Request Headers
vishwa has joined #ruby
<_Tariq> since I need those Request Headers do be able to know the User String
<toretore> _Tariq: does it say to use a socket directly?
<havenwood> _Tariq: What are the constraints? Do you have to? ^
TomPeed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<toretore> _Tariq: parsing http is only really something you do if you're writing a parser, or as an educational excercise
<_Tariq> It does not say to use a socket directly
whatsupdoc_ has joined #ruby
B1n4r10 has joined #ruby
<havenwood> _Tariq: Are you familiar with Rack?
<toretore> then you should probably be using an http library
<_Tariq> The goal is to create a webserver though, havenwood, so I don't think Rack would work
<toretore> that's what rack is for
<havenwood> _Tariq: You can create a Rack webserver.
<_Tariq> Okay, I got it, the only limitation seems to be that I should use TCPServer
kirillzh has joined #ruby
<havenwood> _Tariq: ah
<toretore> _Tariq: it depends on what ie expected from you
Timberwo|f has joined #ruby
<toretore> if the point is to learn about sockets, then you should be using sockets, if the point is to learn how to make a web server then you should probably be using something like rack
nettoweb has joined #ruby
firstdayonthejob has quit [Ping timeout: 250 seconds]
SCHAAP137 has quit [Remote host closed the connection]
<_Tariq> I think the unstated implication in these instructions is that I would be using sockets to build something like Rack
<_Tariq> I am afraid that if I use Rack, my assignment might become much more easier than it's supposed to be
zacstewart has joined #ruby
whatsupdoc_ has quit [Quit: Mutter: www.mutterirc.com]
zacstewa_ has quit [Read error: Connection reset by peer]
whatsupdoc_ has joined #ruby
<toretore> ok, so then you have to parse the http as it comes off the socket
Jardayn has quit [Quit: Leaving]
azul1 has joined #ruby
<toretore> http 1 is fairly simple to parse, so writing a simple standalone server is feasible
victoryismine has joined #ruby
<toretore> basically it's ["METHOD PATH", *[header1, header2], '', *body].join("\r\n")
meves has quit [Remote host closed the connection]
<_Tariq> Yeah, that's done
<_Tariq> I mean, I can parse simple queries
<_Tariq> even POST requests
<_Tariq> er...no
<_Tariq> not POST requests
<_Tariq> GET requests with parameters
victoryismine has left #ruby [#ruby]
<_Tariq> but is the only thing I'm getting just the HTTP as it come off the socket?
<toretore> ok, so then you should be able to separate the headers from the rest
<toretore> yes, that's all there is to it
<_Tariq> Oh dear.
<_Tariq> Let me see if I can get my code
<_Tariq> maybe I made a mistake of some kind that is only allowing me to see something like 'GET /home' and nothing eles
<_Tariq> *else
Limix has quit [Quit: Limix]
<toretore> method_path = line1; headers = read each line until empty line; body = read #{Content-Length} bytes
<Ox0dea> toretore: Do you happen to know more about why \r\n was chosen to delimit headers?
<toretore> no idea really.. maybe to please both unix and windows users?
<toretore> there is actually more to parsing headers afaicr, but most cases are this simple
<eam> Ox0dea: from the teletype and original ASCII standards I imagine
<law> ahh ok
dsilfen has quit [Read error: Connection reset by peer]
<Ox0dea> eam: It's defined in RFC 2616.
atomical_ has joined #ruby
spider-mario has quit [Read error: Connection reset by peer]
<eam> yeah \r\n is the canonical line separator for internet things
<toretore> _Tariq: if there existed a good standalone http parser for ruby you could use that.. but alas, that doesn't wxist
<eam> I thought you were asking why they made that choice
william3 has quit [Remote host closed the connection]
<Ox0dea> eam: I am...
<Ox0dea> Were the CERN folks Windows users?
uri_ has quit [Quit: --]
<_Tariq> I have seen \r\n before in my debugging
<eam> no, this predates windows - CRLF was common on teletypes
<eam> and many mainframes
kalopsian has joined #ruby
<_Tariq> But if I read all lines
<_Tariq> not just the first line
<toretore> Ox0dea: first web server was a next i think
<Ox0dea> toretore: You're right.
<_Tariq> maybe I might get the headers
<eam> Ox0dea: MSDOS took CRLF from CP/M
<toretore> _Tariq: your parser should probably take an io object
<toretore> then read lines off of it until it's "done"
<eam> multics is the oddball system that started the lone LF as a line terminator
<eam> unix then copied that
atomical has quit [Ping timeout: 264 seconds]
<eam> teletypes predate unix and multics both
<eam> ASCII dates back to the telegraph
<Ox0dea> CR is vestigial as fuck.
dsilfen has joined #ruby
whatsupdoc_ has quit [Ping timeout: 252 seconds]
<eam> control characters were invented in 1901
<Ox0dea> I'm not knocking control characters in general.
<_Tariq> Got it, thanks toretore
<eam> CR/LF I believe date back to the mid 1800s https://en.wikipedia.org/wiki/Baudot_code
<toretore> _Tariq: when it gets to the body, you should have read the Content-Length header to know how many bytes are in it
<eam> "Baudot's code became known as International Telegraph Alphabet No. 1"
hahuang65 has joined #ruby
<toretore> _Tariq: and if not present, body is until EOF
antgel has quit [Ping timeout: 248 seconds]
<_Tariq> Okay, this is going to be tough then
<Ox0dea> From then to not very long ago, CR meant to move the damned writing head back to the far left.
<eam> but here comes johnny come lately mr self-important multics in the 1960s thinking it ought to just change around the line terminators
<_Tariq> but, wait, requests shouldn't have a body, right?
<eam> Ox0dea: it still does!
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Ox0dea> eam: On sane systems! :P
<eam> your pty is a tty virtual device implementing the mechanical logic of the telegraph
<toretore> _Tariq: you mean GET? they can, but usually don't
<eam> stty sane
<toretore> _Tariq: but your parser should handle all types, GET, POST, PUT, etc
<_Tariq> Well, I mean the request that the browser makes to a server
<Ox0dea> Why use two characters where one suffices? :/
mostlybadfly has joined #ruby
<_Tariq> not the HTTP Method
<eam> well, then you lose the ability to reposition in each dimension independently
<toretore> _Tariq: yes, requests do have bodies sometimes
<_Tariq> Like, I thought you do a request "GET /home" with its request headers, and then the browser sends its own page and response headers
uber has quit [Changing host]
uber has joined #ruby
<_Tariq> Oh
<_Tariq> What are the purpose of these bodies then?
<Ox0dea> eam: I'm speaking specifically about the choice to use CRLF for HTTP headers again.
<toretore> _Tariq: there are many types of requests. POST is one of them and it usualy includes a body
<_Tariq> Fair enough
<_Tariq> Man, this parser is going to be difficult
<eam> Ox0dea: arguably no one ever stopped
<Ox0dea> Heh.
lianj_ is now known as lianj
<Ox0dea> I appreciate CR where it's appropriate; I disagree with RFC 2616 in that regard.
sepp2k has quit [Quit: Leaving.]
<eam> well RFC 2616 didn't set the standard -- it was published in the late 90s and just acknowledged it
<eam> the standard predates unix
hahuang65 has quit [Ping timeout: 245 seconds]
k13nox has quit [Remote host closed the connection]
<Ox0dea> The standard for...?
<eam> newlines
lemur has joined #ruby
<eam> remember unix only took off in the 80s
pawnbox has joined #ruby
betabet has joined #ruby
<eam> a minority of internet participating systems used LF back when these protocols were being first invented
<toretore> unix was the one to deviate from the standard afaik
<eam> (unix? Is that the thing AT&T just published?)
<eam> toretore: multics, but yeah
<eam> multics dates to the 60s, but it wasn't dominant
<toretore> well ok yes :)
^CrYpto^ has joined #ruby
<toretore> cr+lf makes sense in that that's what it took to move to the next line on a typewriter type device
wldcordeiro has joined #ruby
<Ox0dea> To the beginning of the next line.
<toretore> yes
<Ox0dea> That distinction doesn't seem particularly applicable to HTTP headers is the point I mean to make.
k13nox has joined #ruby
<Ox0dea> I get that it was just "the done thing".
<eam> Ox0dea: which protocols came before http?
Ebok has joined #ruby
<eam> http is one of the much later ones
<VeryBewitching> eam: That would be a bit of a list.
lemur has quit [Ping timeout: 250 seconds]
<toretore> i guess they wanted to have a "line based" protocol, and cr+lf is what "line" meant
_Tariq has quit [Remote host closed the connection]
pawnbox has quit [Ping timeout: 276 seconds]
<Ox0dea> ¯\_(ツ)_/¯
<VeryBewitching> I think with HTTP it comes down to "Let's not add extra syntax when a line break is data enough."
<VeryBewitching> It's a single character that separates headers, pretty effective.
ftj has quit [Quit: Textual IRC Client: www.textualapp.com]
<eam> we're discussing why the line break sequence is \r\n and not just \n
moeabdol1 has quit [Quit: WeeChat 1.4]
<toretore> i don't know.. frames seem simpler to me
<eam> and it's because the very early internet stuff was essentially about virtualizing a tty over the packet switched networks
<VeryBewitching> Because no one in the industry necessarily plays nicely?
<eam> and the original tty stuff is all \r\n, a decision which is traced directly back to Emile Baudot in the 1800s
<toretore> eam: that's a good point. it's just the way people were thinking back then
volty has quit [Quit: Konversation terminated!]
<toretore> the tty legacy is visible everywhere
<eam> the telegraph legacy, really
<VeryBewitching> The print medium is hard to let go of.
aupadhye has joined #ruby
<toretore> we shoud have moved on from that a few decades ago
<VeryBewitching> This is OT though, so I'm going to hide from the bat.
<eam> Baudot code became the International Telegraph Alphabet
<VeryBewitching> Everything starts somewhere.
<eam> assuming "\n" instead of honoring a flexible newline separator sequence is commonly called "unix brain damage" and ruby suffers from it in a few places
<Ox0dea> "The pure and simple truth is rarely pure and never simple."
william3 has joined #ruby
<VeryBewitching> ^
symm- has quit [Ping timeout: 248 seconds]
<Ox0dea> Down with progress, you say?
aupadhye has quit [Ping timeout: 252 seconds]
<eam> why is unix brain damage progress?
dsilfen has quit [Read error: Connection reset by peer]
TheHodge has quit [Quit: Connection closed for inactivity]
<Ox0dea> How do you overwrite the current line in Windows?
marr has quit [Ping timeout: 240 seconds]
c0ncealed has quit [Remote host closed the connection]
william3 has quit [Ping timeout: 250 seconds]
kirillzh has joined #ruby
c0ncealed has joined #ruby
<Ox0dea> This is apparently one way to do it: http://superuser.com/a/492067
<Ox0dea> In Unix, we just say \r.
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<mg^> Depends on if ANSI.SYS is loaded or not :)
<eam> I haven't used windows in a long time, but why wouldn't \r work?
<Ox0dea> I guess it might.
dsilfen has joined #ruby
<eam> that's kind of the point of the multibyte sequence -- each component can be invoked independently
<eam> a better question is: how do you advance the line without resetting the cursor to the left margin on unix?
<Ox0dea> \e[B :(
<eam> ANSI!
<toretore> lol
<Ox0dea> Does \n just move down a row on Windows, then?
<eam> I think it should -- I haven't used cmd.exe in decades
ja has joined #ruby
<VeryBewitching> OT: I run Windows for games only. I have no other use for it.
<eam> btw, re: RFC 2616, I'd suggest this is just an explicit statement of the implicit assumptions found in RFC 1 (which talked about virtualizing the tty over the internet)
<ja> Hi peeps! I’m curoius: Has any of you ever used Float#phase? What’s the point? I find it very intriguing.
<eam> it only took them 30 years to realize they should spell it out
jottr_ has quit [Ping timeout: 272 seconds]
<ja> “Returns 0 if the value is positive, pi otherwise.” — Who would *ever* need something like that? It’s probably a math thing that I don’t understand.
<Ox0dea> ja: Complex#phase is a little more interesting.
bruce_lee has quit [Read error: Connection reset by peer]
<Ox0dea> Never mind.
moeabdol has joined #ruby
<havenwood> ΔΘ
aryaching has joined #ruby
Guest93237 has quit [Quit: Guest93237]
kobain has quit [Ping timeout: 240 seconds]
<Ox0dea> Someone's got their phaser set to stun.
<VeryBewitching> Phaser.stun :Ox0dea
<ja> Reading Complex#phase’s documentation only confused me further
<Ox0dea> VeryBewitching: That really oughta be an instance method.
yoongkan_ has joined #ruby
<Ox0dea> And I'm a perfectly valid numeric literal, thank you!
<VeryBewitching> LOL
<VeryBewitching> Maybe Phaser is a module.
<toretore> Phaser.stun implies firing all pharers at once
<toretore> or setting, i guess
<shevy> I would append a ! because it excites us more
<Ox0dea> ObjectSpace.each_object Phaser, &:stun
bronson has joined #ruby
<VeryBewitching> Existence.all :phaser do |p|; p.stun 0x0dea; end
<VeryBewitching> That would take a long time to run I bet.
<eam> did you hear about the ensign and her troubles with the ship's security team?
aupadhye has joined #ruby
<eam> no matter how hard they tried they couldn't phase her
yoongkan_ has quit [Ping timeout: 240 seconds]
atomical has joined #ruby
<eam> yes but the double entendre you see
<eam> just a moment let me explain this joke
<Ox0dea> :P
moeabdol1 has joined #ruby
<shevy> lol
<eam> hangon I swear it will be much more funny after a lengthy explanation
<Ox0dea> A woman walks into a bar and asks for a double entendre; the barman gives it to her.
jbrhbr1 has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
<shevy> I don't get it
jbrhbr has quit [Ping timeout: 245 seconds]
craysiii has joined #ruby
<shevy> the only one who should make jokes is baweaver cuz they are dam funny
<eam> shevy: nice
binaryplease has quit [Quit: WeeChat 1.3]
<mg^> They hold back lots of water?
atomical_ has quit [Ping timeout: 245 seconds]
Rodya_ has quit [Remote host closed the connection]
<mg^> in an amusing fashion, no less?
<shevy> I learned in ecology that they are "system engineers"
Rodya_ has joined #ruby
atomical_ has joined #ruby
moeabdol has quit [Ping timeout: 272 seconds]
<mg^> and damn, I should have gotten that sooner
<mg^> I blame 5 PM
bronson has quit [Ping timeout: 256 seconds]
baweaver has quit [Remote host closed the connection]
youch has joined #ruby
Sucks has joined #ruby
dsilfen has joined #ruby
atomical has quit [Ping timeout: 250 seconds]
Rodya_ has quit [Remote host closed the connection]
tenderlove has joined #ruby
Rodya_ has joined #ruby
tenderlove has quit [Remote host closed the connection]
<arthropododo> what does the i in the symbol array %i(example example example) stand for?
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Mon_Ouie> 'interned' (symbols being interned strings)
dontpauseyet has joined #ruby
mpistone has quit [Remote host closed the connection]
lessless has joined #ruby
<dontpauseyet> ho. im getting this error when i try to run msfcli http://pastie.org/10706335
^CrYpto^ has quit [Ping timeout: 272 seconds]
<dontpauseyet> is this a dependency issue?
Rodya_ has quit [Remote host closed the connection]
<shevy> invalid multibyte escape: /\xff\xed\xff\xfd\x06/
<arthropododo> Mon_Ouie: the more you know. thanks
Rodya_ has joined #ruby
triplekmafia has joined #ruby
<triplekmafia> hello i would like to know if you have to give up foreign citizenships if you want to get a security clearance
Rodya_ has quit [Remote host closed the connection]
<craysiii> this might be the wrong room for that
<triplekmafia> where should i ask
jam_ has joined #ruby
<Ox0dea> !cops
<toretore> lol
Rodya_ has joined #ruby
<shevy> lol
baweaver has joined #ruby
<shevy> triplekmafia what do you have to say about this
<havenwood> !troll triplekmafia
triplekmafia was kicked from #ruby by ruby[bot] [trolling is a bannable offense, see http://ruby-community.com/pages/user_rules]
<Ox0dea> Danke.
dlitvak has joined #ruby
<Ox0dea> Gotta love the new trigger.
<shevy> lol
Spami has quit [Quit: This computer has gone to sleep]
dsilfen has quit [Read error: Connection reset by peer]
jam_ has quit [Ping timeout: 250 seconds]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<eam> he didn't even clarify as to what state the security clearance was for
TomPeed has joined #ruby
<eam> supply sufficient information with your questions, folks
jgt2 has quit [Ping timeout: 248 seconds]
dlitvak__ has quit [Ping timeout: 272 seconds]
dontpauseyet has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
DLSteve has joined #ruby
<mg^> Well, I could speak to probable outcomes when applying for a U.S. clearance, but this is not the place.
x77686d has quit [Quit: x77686d]
ljames has quit []
lektrik has joined #ruby
dsilfen has joined #ruby
chouhoul_ has quit [Ping timeout: 248 seconds]
stevemackinnon has quit [Remote host closed the connection]
dc4 has quit [Quit: WeeChat 1.3]
lektrik has quit [Remote host closed the connection]
uri_ has joined #ruby
youch has quit [Ping timeout: 256 seconds]
babblebre has quit [Quit: Connection closed for inactivity]
<Ox0dea> eam: 3J#Eq
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
hahuang65 has joined #ruby
<Ox0dea> >> Encoding::ITA2 rescue :/
<ruby[bot]> Ox0dea: # => :/ (https://eval.in/512169)
Rodya_ has quit [Remote host closed the connection]
DEA7TH has quit [Quit: DEA7TH]
Rodya_ has joined #ruby
uri_ has quit [Quit: --]
kirillzh has joined #ruby
kirillzh has quit [Client Quit]
hahuang65 has quit [Ping timeout: 260 seconds]
dlitvak_ has joined #ruby
stevemackinnon has joined #ruby
shinnya has quit [Ping timeout: 256 seconds]
ferr has quit [Ping timeout: 256 seconds]
dlitvak has quit [Ping timeout: 240 seconds]
FooMunki has quit [Quit: FooMunki]
dsilfen has quit [Read error: Connection reset by peer]
meves has joined #ruby
vagnerd has quit [Ping timeout: 240 seconds]
cschneid_ has quit [Remote host closed the connection]
stevemac_ has joined #ruby
p1k has joined #ruby
stevemackinnon has quit [Ping timeout: 250 seconds]
dsilfen has joined #ruby
youch has joined #ruby
shellie_ is now known as shellie
atomical has joined #ruby
<Ox0dea> eam: Never mind. :( I messed it up by having an extra 0 in my NUL escape: https://eval.in/512170
krobzaur_ has joined #ruby
pawnbox has joined #ruby
atomical_ has quit [Ping timeout: 250 seconds]
nanoz has joined #ruby
uri_ has joined #ruby
vagnerd has joined #ruby
vagnerd has joined #ruby
vagnerd has quit [Changing host]
pawnbox has quit [Ping timeout: 264 seconds]
uri_ has quit [Client Quit]
ElFerna_ has quit [Ping timeout: 240 seconds]
meves has quit [Remote host closed the connection]
jottr_ has joined #ruby
babblebre has joined #ruby
DEA7TH has joined #ruby
hanmac has joined #ruby
hahuang65 has joined #ruby
danielwzd has quit [Ping timeout: 260 seconds]
mrmargolis has quit [Remote host closed the connection]
amclain_ has quit [Quit: Leaving]
tuelz1 has quit [Ping timeout: 256 seconds]
uri_ has joined #ruby
at46_ has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
TomPeed has quit [Ping timeout: 248 seconds]
bb010g has joined #ruby
uri_ has quit [Client Quit]
youch has quit [Ping timeout: 256 seconds]
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
atomical has quit [Ping timeout: 256 seconds]
jottr_ has quit [Ping timeout: 260 seconds]
arthropodado has quit [Quit: AndroidIrc Disconnecting]
dsilfen has joined #ruby
<eam> well then
dcunit3d has joined #ruby
ferz_ has joined #ruby
dlitvak has joined #ruby
Ebok has joined #ruby
at46_ has quit [Remote host closed the connection]
B1n4r10 has quit [Ping timeout: 272 seconds]
dlitvak_ has quit [Ping timeout: 250 seconds]
DEA7TH has quit [Quit: DEA7TH]
Bloomer has joined #ruby
<Ox0dea> I didn't mean for it to be a goose chase, I swear. :(
Bloomer has quit [Remote host closed the connection]
baweaver has quit [Remote host closed the connection]
<Ox0dea> I was so glad that "HI THERE" came out to all printable characters too.
zambini has quit [Quit: Leaving.]
Alazoral has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Alazoral has joined #ruby
hxegon has quit [Ping timeout: 264 seconds]
DEA7TH has joined #ruby
Snowy has quit []
uri_ has joined #ruby
atomical has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
zeroDivisible has quit [Quit: WeeChat 1.3]
uri_ has quit [Client Quit]
yoongkan_ has joined #ruby
sankaber has joined #ruby
youch has joined #ruby
cassioscabral has joined #ruby
dsilfen has joined #ruby
cassioscabral has quit [Client Quit]
aryaching_ has joined #ruby
yoongkan_ has quit [Ping timeout: 240 seconds]
aryaching has quit [Ping timeout: 250 seconds]
KensoDev has quit [Remote host closed the connection]
rkazak has joined #ruby
govg has quit [Ping timeout: 250 seconds]
jbrhbr1 has quit [Quit: Leaving.]
Channel6 has joined #ruby
VeryBewitching has quit [Quit: Konversation terminated!]
sankaber has quit [Remote host closed the connection]
sankaber has joined #ruby
baweaver has joined #ruby
Axy has quit [Ping timeout: 256 seconds]
finisherr has quit [Quit: finisherr]
dlitvak_ has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
dlitvak has quit [Ping timeout: 240 seconds]
baweaver has quit [Ping timeout: 250 seconds]
moeabdol2 has joined #ruby
dlitvak_ has quit [Remote host closed the connection]
krobzaur_ has quit [Ping timeout: 240 seconds]
moeabdol1 has quit [Ping timeout: 245 seconds]
dsilfen has joined #ruby
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
DLSteve has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
ecksit has joined #ruby
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
law has left #ruby [#ruby]
AnoHito has quit [Quit: Leaving]
Bloomer has joined #ruby
jackjackdripper1 has joined #ruby
hxegon has joined #ruby
jackjackdripper1 has quit [Client Quit]
dopamean_ has joined #ruby
newbie22 has joined #ruby
jackjackdripper has quit [Ping timeout: 245 seconds]
jgt2 has joined #ruby
dangeranger has joined #ruby
arescorpio has joined #ruby
atomical has quit [Ping timeout: 240 seconds]
chouhoulis has joined #ruby
tuelz1 has joined #ruby
ecksit is now known as jacobbednarz
ramfjord has quit [Ping timeout: 250 seconds]
jgt2 has quit [Ping timeout: 248 seconds]
Bloomer has quit []
meves has joined #ruby
tuelz1 has quit [Ping timeout: 240 seconds]
aryaching_ has quit [Ping timeout: 272 seconds]
dsilfen has quit [Read error: Connection reset by peer]
nanoz has quit [Read error: Connection reset by peer]
Bloomer has joined #ruby
dsilfen has joined #ruby
yqt has quit [Ping timeout: 248 seconds]
pilne has quit [Quit: Quitting!]
<newbie22> *: I have a question, is there anyone there ??? And do not forget my name is newbie22
bhaak has joined #ruby
frem has quit [Quit: Connection closed for inactivity]
marchelzo has quit [Ping timeout: 245 seconds]
<havenwood> newbie22: hi
<newbie22> I solve it, thanks anyway
<newbie22> I was using irb
atomical has joined #ruby
<Ox0dea> That's a paddlin'.
<newbie22> and the question was about "require", but then I found out about "load" so, thanks anyway
uri_ has joined #ruby
krobzaur_ has joined #ruby
<newbie22> What is a paddlin ??
newbie22 has quit [Quit: Leaving]
jam_ has joined #ruby
jacobbednarz has quit [Ping timeout: 250 seconds]
KensoDev has joined #ruby
uri_ has quit [Quit: --]
dsilfen has quit [Read error: Connection reset by peer]
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
uri_ has joined #ruby
ecksit has joined #ruby
atomical has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ecksit has quit [Max SendQ exceeded]
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
jam_ has quit [Ping timeout: 250 seconds]
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
Darmani has joined #ruby
<Darmani> Hey kids<3
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
ledestin has joined #ruby
ecksit has joined #ruby
ecksit has quit [Max SendQ exceeded]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
uri_ has quit [Client Quit]
sneakerhax has joined #ruby
dsilfen has joined #ruby
dangeranger has quit [Quit: Textual IRC Client: www.textualapp.com]
tjohnson has quit [Quit: Connection closed for inactivity]
krobzaur_ has quit [Ping timeout: 256 seconds]
<Ox0dea> Darmani: Let's write a linear congruential generator!
<Darmani> Ox0dea - Lol
<Ox0dea> inb4 OMGWTFLCG
uri_ has joined #ruby
<Darmani> Why you so mean Q.Q
hxegon is now known as hxegon_AFK
<Ox0dea> ?
pawnbox has joined #ruby
davedev24 has quit []
<Darmani> inb4 omgwtflcg lol
uri_ has quit [Client Quit]
hxegon_AFK is now known as hxegon
uri_ has joined #ruby
<al2o3-cr> prick
Channel6 has quit [Quit: Leaving]
<Ox0dea> >> ?= * rand(6) + ?D + ?~ * rand(6)
<ruby[bot]> Ox0dea: # => "D~~~~" (https://eval.in/512265)
<Ox0dea> A paltry showing, ruby[bot].
rkazak has quit [Quit: Sleep.....ing....]
<al2o3-cr> biggen at they
<al2o3-cr> fool
dsilfen has quit [Read error: Connection reset by peer]
hxegon has quit [Quit: BRB]
dsilfen has joined #ruby
william3 has joined #ruby
youch has quit [Ping timeout: 256 seconds]
uri_ has quit [Quit: --]
shadoi has quit [Quit: Leaving.]
exadeci has joined #ruby
jgt2 has joined #ruby
<Darmani> Ox0dea - yo
<Ox0dea> Myes?
<Darmani> I found that Ruby book that everyone likes, fundamentals of ruby or pragmatic ruby whatever the fuck its called
<Darmani> there's like a fat lady on the front cover.
tuelz1 has joined #ruby
<Ox0dea> Haha.
<Darmani> Anyway, I found it free as a pdf on the internet but it's outdated. It's like for 1.9.3
<Darmani> Can I still read it? Would it help
jgt2 has quit [Ping timeout: 248 seconds]
Mon_Ouie has quit [Quit: WeeChat 1.3]
<Ox0dea> No, 1.9.3 is kill.
ZeeNoodleyGamer has quit [Ping timeout: 240 seconds]
<Darmani> ah.
<Darmani> okay.
arlek has quit [Ping timeout: 252 seconds]
babblebre has quit [Quit: Connection closed for inactivity]
<Ox0dea> Darmani: https://eval.in/512276
braincrash has quit [Quit: bye bye]
<Darmani> Alright for sure. I was just looking for some new material to read.
<Darmani> Ox0dea - thanks ^^
ZeeNoodleyGamer has joined #ruby
<Ox0dea> What's with the change of heart? :P
Brklyn has joined #ruby
baweaver has joined #ruby
<Darmani> What do you mean?
tuelz1 has quit [Ping timeout: 272 seconds]
jottr_ has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
<Darmani> LOL
<Darmani> You would have that saved
zast has joined #ruby
* baweaver reads a ton
<Darmani> baweaver - Hey gorgeous<3
krz has joined #ruby
^CrYpto^ has joined #ruby
solocshaw has quit [Ping timeout: 240 seconds]
youch has joined #ruby
<Darmani> Ox0dea - I actually just started some office job today. It's not that difficult and I have my own room so I was looking for some stuff to read on my down time.
<Darmani> If you must know.
<Ox0dea> Er, does your room have a door...?
<Darmani> yeah... Lol
<Ox0dea> Does it close?
Brklyn has quit [Ping timeout: 250 seconds]
dsilfen has joined #ruby
<Darmani> yeah.....
<Ox0dea> Does it lock?
<Darmani> what the fuck
<Darmani> what color is it
<Darmani> do you have air conditioning
<Darmani> How many questions are you going to ask lol
jottr_ has quit [Ping timeout: 264 seconds]
User458764 has joined #ruby
<Ox0dea> No further questions.
ICantCook has quit [Read error: Connection reset by peer]
nbdy has joined #ruby
braincrash has joined #ruby
<Darmani> Ox0dea - I was actually pretty tired after work today. I didn't even want to read or do anything with programming. But I feel like I should at least do a little something everyday...
<Darmani> Otherwise everything I've gained up until this point will have been a waste
* Darmani sigh
ICantCook has joined #ruby
nbdy has quit [Max SendQ exceeded]
adgtl has joined #ruby
<Ox0dea> [commitment escalates]
<Ox0dea> (Last time, I promise.)
Rodya_ has quit [Remote host closed the connection]
oetjenj has joined #ruby
<Darmani> Here's the problem with that theory. It's that I have not committed myself to any other path (as far as career-wise). Nor do I have any inclination to begin to learn something again from square one. I can do this. I mean the concepts are understandable, what I lack is the connections. Yeah they might not come to me as easily as they came to you but I can learn them. I know that much...
<Darmani> Ox0dea - Perhaps you're right. But nonetheless I won't give up, not yet anyway.
zast has quit [Ping timeout: 252 seconds]
k13nox has quit [Remote host closed the connection]
adgtl has quit [Remote host closed the connection]
<Darmani> But thank you for that wonderful tidbit. The encouragement and empathy that you offer me is truly astonishing.
Darmani has quit [Quit: Page closed]
moeabdol3 has joined #ruby
krobzaur_ has joined #ruby
moeabdol2 has quit [Ping timeout: 240 seconds]
nchambers is now known as ncampers
zast has joined #ruby
arthropododo has quit [Remote host closed the connection]
radgeRayden has quit [Ping timeout: 276 seconds]
arthropodado has joined #ruby
akaiiro has quit [Quit: Leaving]
yoongkan_ has joined #ruby
yfeldblum has quit [Remote host closed the connection]
dsilfen has quit [Read error: Connection reset by peer]
dsilfen has joined #ruby
william3 has quit [Remote host closed the connection]
yoongkan_ has quit [Ping timeout: 240 seconds]
arthropodado has quit [Ping timeout: 264 seconds]
yfeldblum has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
meves has quit [Remote host closed the connection]
meves has joined #ruby
meves_ has joined #ruby
danielwzd has joined #ruby
jbrhbr has joined #ruby
AnoHito has joined #ruby
oetjenj has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
davedev24 has joined #ruby
meves has quit [Ping timeout: 250 seconds]
gix has quit [Ping timeout: 276 seconds]
jbrhbr has quit [Ping timeout: 240 seconds]
davedev24 has quit [Client Quit]
jbrhbr has joined #ruby
Mia has joined #ruby
arthropodado has joined #ruby
krz has quit [Read error: Connection reset by peer]
graffix222 has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
gix has joined #ruby
yfeldblum has quit [Ping timeout: 264 seconds]
barhum2013 has joined #ruby
krz has joined #ruby
ncampers is now known as nchambers
zambini has joined #ruby
nchambers is now known as dtscode
kirillzh has joined #ruby
kirillzh has quit [Max SendQ exceeded]
zambini has quit [Client Quit]
freerobby has quit [Quit: Leaving.]
dsilfen has joined #ruby
moeabdol3 has quit [Quit: WeeChat 1.4]
krobzaur_ has quit [Ping timeout: 240 seconds]
17WABPBLQ has quit [Quit: Textual IRC Client: www.textualapp.com]
kalopsian has quit [Ping timeout: 245 seconds]
ferz_ has quit [Quit: Leaving]
hxegon has joined #ruby
jgt2 has joined #ruby
saneax_AFK is now known as saneax
ElSif has joined #ruby
jam_ has joined #ruby
dtscode has quit [Changing host]
dtscode has joined #ruby
Sucks has quit [Remote host closed the connection]
tuelz1 has joined #ruby
dtscode has quit [Changing host]
dtscode has joined #ruby
meves_ has quit [Remote host closed the connection]
jgt2 has quit [Ping timeout: 240 seconds]
arescorpio has quit [Quit: Leaving.]
tuelz1 has quit [Ping timeout: 260 seconds]
Sucks has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
poguez_ has quit [Quit: Connection closed for inactivity]
toretore has quit [Ping timeout: 240 seconds]
bronson has joined #ruby
s00pcan has quit [Remote host closed the connection]
DarthGandalf has joined #ruby
krz has quit [Ping timeout: 240 seconds]
hahuang65 has quit [Ping timeout: 250 seconds]
ta has quit [Remote host closed the connection]
dsilfen has joined #ruby
kaka__ has quit [Ping timeout: 240 seconds]
kaka__ has joined #ruby
bronson has quit [Ping timeout: 256 seconds]
moeabdol has joined #ruby
elifoster has quit [Ping timeout: 245 seconds]
duderonomy has joined #ruby
ta has joined #ruby
rkazak has joined #ruby
dopie has quit [Quit: Lost terminal]
jbrhbr has quit [Quit: Leaving.]
dsilfen has quit [Read error: Connection reset by peer]
rkazak has quit [Client Quit]
barhum2013 has quit [Quit: barhum2013]
Ebok has joined #ruby
vdamewood has joined #ruby
dsilfen has joined #ruby
ta has quit [Remote host closed the connection]
saneax is now known as saneax_AFK
arup_r has joined #ruby
Sucks has quit [Remote host closed the connection]
barhum2013 has joined #ruby
ZeeNoodleyGamer has quit [Changing host]
ZeeNoodleyGamer has joined #ruby
ZeeNoodleyGamer is now known as kspencer
yfeldblum has joined #ruby
nisstyre has joined #ruby
yfeldblum has quit [Read error: Connection reset by peer]
Sucks has joined #ruby
nisstyre has quit [Changing host]
nisstyre has joined #ruby
yfeldblum has joined #ruby
moei has joined #ruby
dtscode is now known as 64MAAYGZ0
saneax_AFK is now known as saneax
c355e3b has quit [Quit: Connection closed for inactivity]
64MAAYGZ0 is now known as mniip
vishwa has left #ruby [#ruby]
ta has joined #ruby
elifoster has joined #ruby
mniip has quit [Killed (kornbluth.freenode.net (Nickname regained by services))]
zapata has quit [Quit: WeeChat 1.3]
phredus has quit [Remote host closed the connection]
phredus_ has joined #ruby
nchambers has joined #ruby
krz has joined #ruby
Eiam_ has joined #ruby
DEA7TH has quit [Quit: DEA7TH]
juddey has quit [Ping timeout: 256 seconds]
hxegon has quit [Quit: BRB]
ur5us has quit [Remote host closed the connection]
dsilfen has quit [Read error: Connection reset by peer]
zapata has joined #ruby
Sucks has quit [Read error: Connection reset by peer]
moeabdol1 has joined #ruby
k13nox has joined #ruby
moeabdol has quit [Ping timeout: 260 seconds]
terminalrecluse has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Sucks has joined #ruby
terminalrecluse has joined #ruby
dsilfen has joined #ruby
iateadonut has left #ruby [#ruby]
danielwzd has quit [Quit: Leaving]
k13nox has quit [Ping timeout: 240 seconds]
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nchambers is now known as I
I is now known as Guest72381
moeabdol2 has joined #ruby
Guest72381 is now known as nchambers
jgt2 has joined #ruby
moeabdol1 has quit [Ping timeout: 250 seconds]
iateadonut has joined #ruby
PedramT has joined #ruby
tuelz1 has joined #ruby
iateadonut has left #ruby [#ruby]
stryek_ has quit [Ping timeout: 240 seconds]
jgt2 has quit [Ping timeout: 248 seconds]
jam_ has quit [Remote host closed the connection]
mdw has joined #ruby
Axy has joined #ruby
PedramT has quit [Ping timeout: 240 seconds]
tuelz1 has quit [Ping timeout: 240 seconds]
jottr_ has joined #ruby
Mia has quit [Ping timeout: 256 seconds]
dsilfen has quit [Read error: Connection reset by peer]
Abrin has quit [Ping timeout: 245 seconds]
mdw has quit [Client Quit]
aibot_ has quit [Ping timeout: 260 seconds]
jottr_ has quit [Ping timeout: 250 seconds]
govg has joined #ruby
n00bdev has joined #ruby
dsilfen has joined #ruby
stryek has joined #ruby
baweaver has quit [Remote host closed the connection]
baweaver has joined #ruby
graffix222 has quit [Ping timeout: 250 seconds]
rkazak has joined #ruby
ziyadb has quit [Quit: Connection closed for inactivity]
lemur has joined #ruby
PedramT has joined #ruby
mary5030 has joined #ruby
ur5us has joined #ruby
PedramT has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 252 seconds]
govg_ has joined #ruby
govg has quit [Ping timeout: 240 seconds]
dsilfen has quit [Read error: Connection reset by peer]
Sucks has quit [Remote host closed the connection]
yoongkan_ has joined #ruby
graffix222 has joined #ruby
ur5us has joined #ruby
PedramT has joined #ruby
Musashi007 has joined #ruby
ramfjord has joined #ruby
speakingcode has quit [Ping timeout: 272 seconds]
aganov has joined #ruby
speakingcode has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
yoongkan_ has quit [Ping timeout: 240 seconds]
dsilfen has joined #ruby
at46 has joined #ruby
djbkd has quit [Quit: My people need me...]
psy_ has quit [Ping timeout: 260 seconds]
anisha has joined #ruby
ur5us has quit [Ping timeout: 260 seconds]
Mon_Ouie has joined #ruby
atmosx has joined #ruby
user083 has quit [Ping timeout: 250 seconds]
adgtl has joined #ruby
adgtl has quit [Changing host]
adgtl has joined #ruby
Musashi007 has quit [Quit: Musashi007]
lessless has quit [Ping timeout: 248 seconds]
ec is now known as ELLIOTTCABLE
hahuang65 has joined #ruby
djbkd has joined #ruby
yfeldblum has quit [Ping timeout: 272 seconds]
william3 has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
lemur has quit [Read error: Connection reset by peer]
lemur has joined #ruby
hahuang65 has quit [Ping timeout: 264 seconds]
william3 has quit [Ping timeout: 250 seconds]
at46 has quit [Remote host closed the connection]
MrSamuel has joined #ruby
lemur is now known as baweaver
claw has quit [Ping timeout: 250 seconds]
kaka__ has quit [Remote host closed the connection]
yfeldblum has joined #ruby
TomyLobo has joined #ruby
claw has joined #ruby
dsilfen has joined #ruby
last_staff has joined #ruby
last_staff has quit [Client Quit]
kwesidev has joined #ruby
troulouliou_div2 has joined #ruby
kwesidev has left #ruby [#ruby]
tuelz1 has joined #ruby
solars has joined #ruby
Mon_Ouie has quit [Ping timeout: 245 seconds]
tvw has joined #ruby
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
Guest84191 has joined #ruby
stevemac_ has quit [Remote host closed the connection]
tuelz1 has quit [Ping timeout: 252 seconds]
PedramT has quit [Remote host closed the connection]
karapetyan has joined #ruby
karapetyan has joined #ruby
PedramT has joined #ruby
psy_ has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
zarubin has joined #ruby
zarubin has quit [Read error: Connection reset by peer]
roshanavand has joined #ruby
mhoungbo has joined #ruby
infra-red has joined #ruby
roshanavand has quit [Remote host closed the connection]
roshanavand has joined #ruby
roshanavand has quit [Remote host closed the connection]
roshanavand has joined #ruby
ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bjmllr has quit [Ping timeout: 240 seconds]
Dimik has quit [Ping timeout: 250 seconds]
bjmllr has joined #ruby
dsilfen has joined #ruby
symm- has joined #ruby
sandstrom has joined #ruby
PedramT has quit [Read error: Connection reset by peer]
PedramT_ has joined #ruby
scepticulous has joined #ruby
PedramT has joined #ruby
PedramT_ has quit [Read error: Connection reset by peer]
Burgestrand has joined #ruby
nodejunkie has joined #ruby
mondok has joined #ruby
elifoster has quit [Ping timeout: 240 seconds]
karapetyan has quit [Remote host closed the connection]
terminalrecluse has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
karapetyan has joined #ruby
enkristoffer has left #ruby ["❤"]
andikr has joined #ruby
wethu has joined #ruby
infra-red has quit [Remote host closed the connection]
dsilfen has quit [Read error: Connection reset by peer]
infra-red has joined #ruby
<wethu> Hey, how does :[] work? As in, I know the effects of defining [](property) and []=(property, value), I just would like to know how to get more info on the internals of how the work being called like object[:accessor] and object[:mutator]= "foo", is there a term that defines them special that i could google for ?
william3 has joined #ruby
aufi has joined #ruby
TomyLobo has quit [Ping timeout: 256 seconds]
<heftig> wethu: it's just transformed into a method call at syntax level
phredus_ has quit [Quit: No Ping reply in 180 seconds.]
<Ox0dea> wethu: heftig is correct: https://git.io/vgt2H
dsilfen has joined #ruby
nunchuck has quit [Ping timeout: 264 seconds]
<wethu> heftig, Ah right, a bit like how #mutator = Value works when its defined foo=
phredus_ has joined #ruby
<wethu> Awesome, thank you both
<Ox0dea> Sure thing.
<heftig> hm, actually there seem to be special bytecodes for a[]= and a[]
<heftig> opt_aset for the former and opt_aref for the latter
<Ox0dea> There's a difference between tokens and bytecode instructions, of course.
karapetyan has quit [Remote host closed the connection]
<heftig> rubinius seems to handle operators like other methods even at the bytecode level
william3 has quit [Remote host closed the connection]
PedramT has quit [Read error: Connection reset by peer]
ur5us has joined #ruby
PedramT has joined #ruby
<Ox0dea> MRI does too, for the most part, but it's also got all the `opt_` instructions to grasp at better performance.
karapetyan has joined #ruby
Brklyn has joined #ruby
MrSamuel has quit [Ping timeout: 240 seconds]
juddey has joined #ruby
blt has joined #ruby
mary5030 has quit [Remote host closed the connection]
mary5030 has joined #ruby
firstdayonthejob has joined #ruby
Azulinho has quit [Ping timeout: 240 seconds]
Brklyn has quit [Ping timeout: 245 seconds]
azul1 has quit [Ping timeout: 250 seconds]
symm- has quit [Ping timeout: 250 seconds]
heftig has quit [Read error: Connection reset by peer]
heftig has joined #ruby
<Ox0dea> Weird that there's an `opt_ltlt`, but no `opt_gtgt`.
eGGsha has joined #ruby
Bloomer has quit [Remote host closed the connection]
Bloomer has joined #ruby
Bloomer has quit [Remote host closed the connection]
kalopsian has joined #ruby
william3 has joined #ruby
Bloomer has joined #ruby
JaReAx has quit [Read error: Connection reset by peer]
howdoi has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
bruce_lee has joined #ruby
adgtl has quit [Remote host closed the connection]
<al2o3-cr> ffs
srenatus has joined #ruby
djbkd has quit [Remote host closed the connection]
Xeago has quit [Remote host closed the connection]
IrishGringo has joined #ruby
kalopsian has quit [Ping timeout: 248 seconds]
dsilfen has joined #ruby
Spami has joined #ruby
yoongkang has joined #ruby
jgt2 has joined #ruby
<heftig> Ox0dea: not worth it, I guess. << is used as lot to mean append, but >> is hardly popular
william3 has quit [Remote host closed the connection]
yoongkang has quit [Ping timeout: 250 seconds]
tuelz1 has joined #ruby
<heftig> (If you want to speed up number crunching with a lot of right shifts, you would want to write an extension anyway)
jgt2 has quit [Ping timeout: 252 seconds]
jam_ has joined #ruby
Azulinho has joined #ruby
TomyWork has joined #ruby
jottr_ has joined #ruby
tuelz1 has quit [Ping timeout: 260 seconds]
jam_ has quit [Ping timeout: 240 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
Kero has joined #ruby
glcx has joined #ruby
chouhoulis has quit [Remote host closed the connection]
tomphp has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
Azulinho1 has joined #ruby
mdw has joined #ruby
jottr_ has quit [Ping timeout: 240 seconds]
mdw has quit [Client Quit]
n00bdev has quit []
jbrhbr has joined #ruby
SCHAAP137 has joined #ruby
dsilfen has joined #ruby
sepp2k has joined #ruby
mdw has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
ur5us has quit [Remote host closed the connection]
anisha has quit [Quit: Leaving]
User458764 has joined #ruby
einarj has joined #ruby
arup_r has quit []
shadeslayer has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
sandstrom has joined #ruby
ur5us has joined #ruby
Macaveli has joined #ruby
mauricio has joined #ruby
haraoka has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
jbrhbr has quit [Quit: Leaving.]
adac has joined #ruby
dsilfen has joined #ruby
Eiam_ has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
vondruch has joined #ruby
firstdayonthejob has quit [Ping timeout: 245 seconds]
passcod has joined #ruby
mauricio has quit [Remote host closed the connection]
aupadhye has quit [Quit: Leaving]
c0m0 has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nettoweb has joined #ruby
adgtl has joined #ruby
antgel has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
baweaver has quit [Remote host closed the connection]
skakri` is now known as skakri
dcunit3d has quit [Ping timeout: 260 seconds]
Macaveli has quit [Ping timeout: 252 seconds]
craysiii has quit [Remote host closed the connection]
mondok has quit [Ping timeout: 245 seconds]
dsilfen has joined #ruby
zenlot1 is now known as zenlot
yardenbar has joined #ruby
adgtl has quit [Remote host closed the connection]
craysiii has joined #ruby
adgtl has joined #ruby
Eising_ is now known as Eising
Macaveli has joined #ruby
rgtk has quit [Remote host closed the connection]
astrofog has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
craysiii has quit [Client Quit]
craysiii has joined #ruby
PedramT has quit [Remote host closed the connection]
sandstrom has joined #ruby
skade has joined #ruby
tomphp has joined #ruby
PedramT has joined #ruby
jgt2 has joined #ruby
mondok has joined #ruby
karapetyan has quit [Remote host closed the connection]
blaxter has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
UtkarshRay has joined #ruby
UtkarshRay has quit [Max SendQ exceeded]
Averna has joined #ruby
UtkarshRay has joined #ruby
karapetyan has joined #ruby
UtkarshRay has quit [Max SendQ exceeded]
dionysus69 has joined #ruby
UtkarshRay has joined #ruby
thomas has joined #ruby
k13nox_ has joined #ruby
UtkarshRay has quit [Max SendQ exceeded]
blaxter has quit [Ping timeout: 245 seconds]
UtkarshRay has joined #ruby
mark3 has joined #ruby
mark3 has quit [Max SendQ exceeded]
vdamewood has quit [Quit: Life beckons.]
dsilfen has joined #ruby
william3 has joined #ruby
mark3 has joined #ruby
mark3 has quit [Max SendQ exceeded]
mark3 has joined #ruby
futilegames has joined #ruby
Xeago has joined #ruby
sftrabbit has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
futilegames has left #ruby [#ruby]
aef has joined #ruby
rvchangue has joined #ruby
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
marr has joined #ruby
william3 has quit [Ping timeout: 276 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
codecop has joined #ruby
william3 has joined #ruby
sandstrom has joined #ruby
eregon_ is now known as eregon
rdark has joined #ruby
b3nt_pin has joined #ruby
ympeg has joined #ruby
b3nt_pin is now known as Guest29540
futilegames has joined #ruby
blaxter has joined #ruby
mary5030 has quit [Remote host closed the connection]
mary5030 has joined #ruby
Azulinho1 has quit [Ping timeout: 256 seconds]
zyzioziom has joined #ruby
yoongkang has joined #ruby
roshanavand has quit [Remote host closed the connection]
Azulinho has quit [Ping timeout: 240 seconds]
crank1988 has quit [Ping timeout: 250 seconds]
exadeci has quit [Quit: Connection closed for inactivity]
DoubleMalt has joined #ruby
digidog has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
kalopsian has joined #ruby
dmolina has joined #ruby
yardenbar has quit [Ping timeout: 240 seconds]
tuelz1 has joined #ruby
mondok has quit [Ping timeout: 240 seconds]
dsilfen has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
AlexRussia has quit [Quit: WeeChat 1.4-dev]
kalopsian has quit [Ping timeout: 245 seconds]
tuelz1 has quit [Ping timeout: 250 seconds]
AlexRussia has joined #ruby
sgambino has joined #ruby
f4cl3y has joined #ruby
IrishGringo has quit [Ping timeout: 250 seconds]
UtkarshRay has quit [Remote host closed the connection]
karapetyan has quit [Ping timeout: 240 seconds]
aibot has joined #ruby
bruce_lee has quit [Read error: Connection reset by peer]
bruce_lee has joined #ruby
User458764 has joined #ruby
flughafen_ has joined #ruby
lyoshajapan has joined #ruby
blackgoat has quit [Quit: WeeChat 1.3]
<lyoshajapan> Hey there
<lyoshajapan> If I get an object in debugger looking something like this: #<#<Class*0x00734534534>::0x00fe09e8098e> how do I find how was it generated
kerunaru has joined #ruby
huyderman has joined #ruby
n00bdev has joined #ruby
sepp2k has quit [Ping timeout: 240 seconds]
ur5us has quit [Remote host closed the connection]
dcunit3d has joined #ruby
dlitvak has joined #ruby
Coldblackice has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
darkf has joined #ruby
CloCkWeRX has quit [Quit: Leaving.]
dsilfen has quit [Read error: Connection reset by peer]
ready has joined #ruby
victortyau has joined #ruby
betabet has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nodejunkie has quit [Ping timeout: 252 seconds]
lyoshajapan has quit [Remote host closed the connection]
karapetyan has quit [Remote host closed the connection]
dsilfen has joined #ruby
yardenbar has joined #ruby
ferr has joined #ruby
jam_ has joined #ruby
baweaver has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
antgel has quit [Remote host closed the connection]
dajobat has quit [Read error: Connection reset by peer]
voidDotClass has joined #ruby
Hounddog has joined #ruby
jottr_ has joined #ruby
jam_ has quit [Ping timeout: 256 seconds]
<voidDotClass> in the following code: https://gist.github.com/aliakhtar/e4705c113041cf14d1f3 , the second 'if' block runs even if restaurant.nil is true, and i get an error about calling update_attribute on Nil
mikecmpbll has joined #ruby
<voidDotClass> but if I change the else to elsif ! restaurant.nil? , then it works as expected. why is that?
rodfersou has joined #ruby
dajobat has joined #ruby
baweaver has quit [Ping timeout: 252 seconds]
lessless has joined #ruby
dlitvak has quit [Remote host closed the connection]
deuterium has joined #ruby
dlitvak has joined #ruby
antgel has joined #ruby
<jhass> voidDotClass: your gist has only one if
<jhass> so what do you mean by "second if block"?
<apeiros> voidDotClass: do you mean "the else block"?
potsmoker has joined #ruby
<voidDotClass> jhass, yes, sorry
<voidDotClass> if i change the else to elseif
<voidDotClass> elsif
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
f4cl3y has quit [Ping timeout: 240 seconds]
<jhass> what you describe is highly unlikely
jottr_ has quit [Ping timeout: 256 seconds]
<apeiros> voidDotClass: a) are you sure the if block AND the else block are running?
<jhass> I'm inclined to say you observe the behavior wrong
<voidDotClass> aren't they supposed to run?
<apeiros> if/else is either/or
<apeiros> it's *never* both
<voidDotClass> I know, which is why this is weird
<apeiros> which is why I concur with jhass - I think your observation is wrong
<voidDotClass> if I literally change the elsif ! restaurant.nil? to just 'else', it runs
<voidDotClass> how is it wrong
Macaveli has quit [Quit: Textual IRC Client: www.textualapp.com]
<apeiros> voidDotClass: make a full chain of logouts. that is: `p restaurant: restaurant` before the if, add a `p :creating` in the if, and a `p updating: restaurant` in the else
<apeiros> I'm pretty sure you'll figure from there what's going on
dlitvak has quit [Ping timeout: 248 seconds]
n00bdev has quit [Remote host closed the connection]
betabet has joined #ruby
fumk has quit [Remote host closed the connection]
<voidDotClass> looks like the restaurant is not nil before the if
<voidDotClass> but on entering the else, it becomes nil
<jhass> voidDotClass: is restaurant a local variable or a method call (like an attr_reader/accessor)?
<voidDotClass> looks like its due to restaurant= and not self.restaurant=
<voidDotClass> inside the if
<voidDotClass> but that's retarded because the if is not even called
yoongkang has quit []
william3 has quit [Remote host closed the connection]
dsilfen has quit [Read error: Connection reset by peer]
yoongkang has joined #ruby
fumk has joined #ruby
william3 has joined #ruby
<jhass> ruby creates locals when seeing an assignment, prior running the code
<jhass> their default value is nil
<voidDotClass> very intuitive
futilegames has quit [Quit: futilegames]
Bloomer has quit [Remote host closed the connection]
ldnunes has joined #ruby
Mirza has joined #ruby
dsilfen has joined #ruby
x0f has joined #ruby
mhoungbo has quit [Ping timeout: 240 seconds]
Ebok has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
AlexJakeGreen has joined #ruby
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Cohedrin has joined #ruby
Brklyn has joined #ruby
PedramT has quit [Remote host closed the connection]
agit0 has joined #ruby
Azulinho has joined #ruby
ferr has quit [Ping timeout: 240 seconds]
PlasmaStar has joined #ruby
Cohedrin has quit [Ping timeout: 240 seconds]
trinaldi has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
Hounddog has quit [Remote host closed the connection]
mhoungbo has joined #ruby
Brklyn has quit [Ping timeout: 248 seconds]
Mirza has left #ruby [#ruby]
astrofog has quit [Quit: Quite]
akem has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
workmad3 has joined #ruby
antgel has quit [Ping timeout: 245 seconds]
FooMunki has joined #ruby
Pumukel has joined #ruby
<mikecmpbll> does anyone know which facility Ruby 2.0.0's Syslog::Logger logs to? http://ruby-doc.org/stdlib-2.0.0/libdoc/syslog/rdoc/Syslog/Logger.html
Azulinho has quit [Remote host closed the connection]
antgel has joined #ruby
tuelz1 has joined #ruby
blackmesa has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
nettoweb has quit [Ping timeout: 250 seconds]
hamed_r has joined #ruby
nettoweb has joined #ruby
agit0 has quit [Read error: No route to host]
sgambino has joined #ruby
Burgestrand has joined #ruby
agit0 has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
araujo has joined #ruby
tuelz1 has quit [Ping timeout: 240 seconds]
victortyau has quit [Quit: Textual IRC Client: www.textualapp.com]
ropeney has joined #ruby
araujo has quit [Max SendQ exceeded]
arup_r has joined #ruby
araujo has joined #ruby
dsilfen has joined #ruby
araujo has quit [Max SendQ exceeded]
araujo has joined #ruby
antgel has quit [Ping timeout: 240 seconds]
araujo has quit [Max SendQ exceeded]
dionysus69 has joined #ruby
araujo has joined #ruby
Azulinho has joined #ruby
ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
araujo has quit [Max SendQ exceeded]
araujo has joined #ruby
tvw has quit [Remote host closed the connection]
yoongkang has quit [Remote host closed the connection]
araujo has quit [Max SendQ exceeded]
araujo has joined #ruby
bjensen82 has joined #ruby
agit0 has quit [Quit: I'm off]
<bjensen82> lets say I have an array a = [1,54,2,9,44,22,999] how would you guys remove for example all the odd numbers and append it afterwards to the list?
araujo has quit [Max SendQ exceeded]
agit0 has joined #ruby
yoongkang has joined #ruby
araujo has joined #ruby
aryaching has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
araujo has quit [Max SendQ exceeded]
Yeomra has joined #ruby
bjensen82 has quit [Read error: Connection reset by peer]
araujo has joined #ruby
<jhass> with more patience than 3 minutes
william3 has quit [Remote host closed the connection]
dsilfen has quit [Read error: Connection reset by peer]
araujo has quit [Max SendQ exceeded]
BaroMeter has joined #ruby
karapetyan has joined #ruby
PedramT has joined #ruby
araujo has joined #ruby
Cohedrin has joined #ruby
<jhass> >> [1,54,2,9,44,22,999].sort {|a, b| (a.odd? && b.odd?) || (a.even? && b.even?) ? a <=> b : a.odd? ? 1 : -1 }
<ruby[bot]> jhass: # => [2, 22, 44, 54, 1, 9, 999] (https://eval.in/512492)
<jhass> there's probably something prettier
araujo has quit [Max SendQ exceeded]
<mikecmpbll> nvm worked it out it's log_ndelay
<mikecmpbll> :/
moeabdol3 has joined #ruby
<mikecmpbll> woops, no
moeabdol2 has quit [Ping timeout: 250 seconds]
<mikecmpbll> log-user
dsilfen has joined #ruby
araujo has joined #ruby
karapetyan has quit [Ping timeout: 240 seconds]
araujo has quit [Max SendQ exceeded]
infra-re_ has joined #ruby
araujo has joined #ruby
User458764 has joined #ruby
araujo has quit [Max SendQ exceeded]
sankaber has joined #ruby
ccooke has quit [Ping timeout: 240 seconds]
araujo has joined #ruby
DEA7TH has joined #ruby
sankaber has quit [Remote host closed the connection]
platzhirsch has joined #ruby
moeabdol3 has quit [Ping timeout: 276 seconds]
infra-red has quit [Ping timeout: 264 seconds]
bronson has joined #ruby
sankaber has joined #ruby
krz has quit [Ping timeout: 256 seconds]
twintail has joined #ruby
AlexJakeGreen has quit [Quit: Leaving]
<apeiros> jhass: partition + +, even if that needs multiple statements :)
f4cl3y has joined #ruby
<apeiros> e,o = a.partition(&:even?); e+o
<jhass> well and 3 array allocations
HunterQ has joined #ruby
<apeiros> that's less than N allocations sort uses ;-p
<jhass> mh, those aren't optimized?
<apeiros> ah, though, actually that happens only with things like Hash#each
bronson has quit [Ping timeout: 256 seconds]
kristofferR has joined #ruby
FernandoBasso has joined #ruby
moeabdol3 has joined #ruby
n00bdev has joined #ruby
dlitvak has joined #ruby
FernandoBasso has quit [Client Quit]
UtkarshRay has joined #ruby
infra-red has joined #ruby
n00bdev has quit [Ping timeout: 240 seconds]
infra-re_ has quit [Ping timeout: 264 seconds]
et0r has joined #ruby
glcx has quit [Quit: This computer has gone to sleep]
dsilfen has quit [Read error: Connection reset by peer]
ccooke has joined #ruby
platzhirsch has left #ruby [#ruby]
kalopsian has joined #ruby
HunterQ has quit []
infra-re_ has joined #ruby
ramfjord has quit [Ping timeout: 272 seconds]
dsilfen has joined #ruby
dlitvak has quit [Ping timeout: 250 seconds]
FernandoBasso has joined #ruby
atmosx has quit [Quit: Lost in trance]
dlitvak has joined #ruby
moeabdol3 has quit [Ping timeout: 240 seconds]
infra-red has quit [Ping timeout: 240 seconds]
kalopsian has quit [Ping timeout: 250 seconds]
zarubin has joined #ruby
PedramT has quit [Remote host closed the connection]
moeabdol3 has joined #ruby
evidex has joined #ruby
dlitvak has quit [Ping timeout: 256 seconds]
BaroMeter has quit [Remote host closed the connection]
dlitvak has joined #ruby
roshanavand has joined #ruby
aryaching has quit [Read error: Connection reset by peer]
PedramT has joined #ruby
Xeago has quit [Remote host closed the connection]
et0r has left #ruby ["Textual IRC Client: www.textualapp.com"]
Spami has quit [Quit: Leaving]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
haraoka has quit [Ping timeout: 272 seconds]
aryaching has joined #ruby
roshanavand has quit [Ping timeout: 250 seconds]
moeabdol3 has quit [Ping timeout: 250 seconds]
tuelz1 has joined #ruby
kristofferR has quit [Quit: Textual IRC Client: www.textualapp.com]
dsilfen has quit [Read error: Connection reset by peer]
blackmesa has quit [Ping timeout: 272 seconds]
User458764 has joined #ruby
Spami has joined #ruby
cpup has quit [Ping timeout: 264 seconds]
joonty has joined #ruby
cpup has joined #ruby
tuelz1 has quit [Ping timeout: 240 seconds]
neanderslob has quit [Read error: Connection reset by peer]
fsapo has joined #ruby
dsilfen has joined #ruby
rgtk has joined #ruby
tvw has joined #ruby
yoongkang has quit []
f4cl3y has quit [Ping timeout: 240 seconds]
brendan- has quit [Ping timeout: 248 seconds]
william3 has joined #ruby
voidDotClass has quit [Remote host closed the connection]
askhat has joined #ruby
ElFerna_ has joined #ruby
brendan- has joined #ruby
sandstrom has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
brendan- has quit [Max SendQ exceeded]
Burgestrand has joined #ruby
mauricio has joined #ruby
william3 has quit [Remote host closed the connection]
f4cl3y has joined #ruby
Xeago has joined #ruby
PedramT has quit [Remote host closed the connection]
DEA7TH has quit [Quit: DEA7TH]
roshanavand has joined #ruby
c355e3b has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
zzz has joined #ruby
^CrYpto^ has quit [Ping timeout: 276 seconds]
zzz is now known as Guest52305
phredus_ has left #ruby ["Going out for tacos."]
ympeg has quit [Ping timeout: 252 seconds]
roshanavand has quit [Ping timeout: 240 seconds]
jottr_ has joined #ruby
Mon_Ouie has joined #ruby
jam_ has joined #ruby
baweaver has joined #ruby
dsilfen has joined #ruby
brendan- has joined #ruby
jam_ has quit [Ping timeout: 250 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
f4cl3y has quit [Ping timeout: 260 seconds]
askhat has quit [Quit: Textual IRC Client: www.textualapp.com]
_mirko_ has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
<_mirko_> I have trouble using gems. Adding PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH" to .zshrc doesn't solve the problem. I'm running arch linux. Any idea?
skade has joined #ruby
<shevy> ah that is for jhass :)
saneax is now known as saneax_AFK
sftrabbit has quit [Quit: sftrabbit]
ropeney has joined #ruby
brendan- has quit [Ping timeout: 248 seconds]
PedramT has joined #ruby
<_mirko_> It's weird I installed sass and in gem list output there is no sass.
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
blackmesa has joined #ruby
ropeney has quit [Client Quit]
william3 has joined #ruby
n00bdev has joined #ruby
<shevy> do you have more than one gem or do you install into your home dir? can you put the "gem env" output on gist and say how you installed ruby
freerobby has joined #ruby
kalopsian has joined #ruby
chipotle has quit [Quit: cheerio]
freerobby has quit [Client Quit]
_mirko_ has quit [Quit: WeeChat 1.4]
ferr has joined #ruby
william3 has quit [Ping timeout: 250 seconds]
blackmesa has quit [Ping timeout: 240 seconds]
n00bdev has quit [Ping timeout: 250 seconds]
dsilfen has quit [Read error: Connection reset by peer]
dcunit3d has quit [Ping timeout: 272 seconds]
krz has joined #ruby
brendan- has joined #ruby
<SebastianThorn> shevy: haha, i do that mistake all the time, "what the ****, i just installed that ****, why cant i use it"
wethu has quit [Quit: This computer has gone to sleep]
adgtl has quit [Remote host closed the connection]
_mirko_ has joined #ruby
<_mirko_> shevy: Thanks, I got it working. I needed to restart tmux process not just terminal emulator.
jottr has joined #ruby
adgtl has joined #ruby
Kero_ has joined #ruby
evidex_ has joined #ruby
ta_ has joined #ruby
dsilfen has joined #ruby
yarden_ has joined #ruby
kerunaru has quit [Ping timeout: 250 seconds]
digidog_ has joined #ruby
mostlybadfly_ has joined #ruby
evidex has quit [Ping timeout: 240 seconds]
Kero has quit [Ping timeout: 240 seconds]
sarlalian has quit [Ping timeout: 240 seconds]
agit0 has quit [Ping timeout: 240 seconds]
vqrs has quit [Ping timeout: 240 seconds]
yardenbar has quit [Ping timeout: 240 seconds]
digidog has quit [Ping timeout: 240 seconds]
mostlybadfly has quit [Ping timeout: 240 seconds]
jottr_ has quit [Ping timeout: 240 seconds]
Guest52305 has quit [Ping timeout: 240 seconds]
flughafen_ has quit [Ping timeout: 240 seconds]
ta has quit [Ping timeout: 240 seconds]
SirCmpwn has joined #ruby
mostlybadfly_ is now known as mostlybadfly
vqrs has joined #ruby
Pisuke has quit [Quit: WeeChat 1.4-dev]
<potsmoker> will knowing ruby and looking at the metasploit source help me to become a hacker?
flughafen_ has joined #ruby
Musashi007 has joined #ruby
william3 has joined #ruby
sarlalian has joined #ruby
adgtl has quit [Ping timeout: 272 seconds]
brendan- has quit [Ping timeout: 248 seconds]
ropeney has joined #ruby
<ddv> potsmoker: lol
<potsmoker> ddv: lol?
trinaldi has quit [Quit: WeeChat 1.5-dev]
<potsmoker> ddv: not a yes or a no or even a maybe?
<ddv> potsmoker: the answer is no
<potsmoker> ddv: well thats constructive.
<potsmoker> alright thanks.
huyderman has quit [Ping timeout: 250 seconds]
lyoshajapan has joined #ruby
yarden_ has quit [Quit: Leaving]
pdoherty has joined #ruby
lipoqil has joined #ruby
<SebastianThorn> well, any language would help to become a hacker?
william3 has quit [Ping timeout: 240 seconds]
benhuda has joined #ruby
carella_ has joined #ruby
<shevy> hmm... a nick called "potsmoker" ... asking about metasploit ...
<potsmoker> yeah this computer shit is getting really easy
<potsmoker> even a skiddie can do it
<potsmoker> not that pot has anything to do with that, though
Averna has quit [Quit: Ex-Chat]
<potsmoker> but would learning Ruby, and so many metasploit modules being written in ruby, what would that allow a hacker to do
dsilfen has quit [Read error: Connection reset by peer]
<potsmoker> not much besides reading some modules that could be rewritten in any language probably.
zapata has quit [Ping timeout: 240 seconds]
<shevy> smoke pot, get rich
lyoshajapan has quit [Ping timeout: 250 seconds]
<potsmoker> right?
<potsmoker> oh if only metasploit was written in python.
<potsmoker> Why wasnt it?
huyderman has joined #ruby
<shevy> metasploit would be useless in any programming language
fsapo has quit [Remote host closed the connection]
brendan- has joined #ruby
<ddv> potsmoker: without understanding the software the exploit is exploiting you won't learn anything
<potsmoker> shevy its not about being useless, its about the sweet spot
<Burgestrand> It will help you become a hacker.
<potsmoker> what advantages does it have from a venn diagram point of view
<potsmoker> what aspects does it encompass as opposed to other combinations of technology
tuelz1 has joined #ruby
<shevy> you are a philosopher potsmoker
<potsmoker> no im a wannabe-1337-haxxor
<potsmoker> lmk?
<Burgestrand> gs
<shevy> you don't code
Yeomra has quit [Ping timeout: 240 seconds]
<potsmoker> i haven't been coding the past 10 years?
<potsmoker> you mean c, c++, objective c, c#, java, php, python, ruby, Go, javascript etc aren't code?
<shevy> you excel at chaining words together
<potsmoker> I can understand dissing visual basic
rashmirathi has joined #ruby
<potsmoker> but all those?
<potsmoker> you excel at spitting jibberish.
<potsmoker> so whos cooler?
<potsmoker> I excel at many things, faggot.
Yeomra has joined #ruby
<shevy> :)
<potsmoker> you excel at faggotry.
<potsmoker> keep it to yourself.
<potsmoker> kthx
dsilfen has joined #ruby
<ddv> potsmoker: lol php
<Burgestrand> apeiros sup?
<potsmoker> people on the internet care so much about presentation
<potsmoker> illusions are for losers
<potsmoker> I wonder how con artists can feel good about themselves after using persuasion, manipulation, and deception to get what they want.
<ddv> potsmoker: are you 12 or something?
<potsmoker> you think you can sprinkle shitty sprinkles on something great and make it shitty
<potsmoker> your sprinkles don't control everything.
<potsmoker> you think you can control everyones perspective by mocking people?
<potsmoker> thats childish.
<potsmoker> stop that.
tuelz1 has quit [Ping timeout: 250 seconds]
anisha has joined #ruby
dlitvak has quit [Ping timeout: 245 seconds]
<potsmoker> well thanks for making yourselves look stupid
<potsmoker> ...to an expert.
blackmesa has joined #ruby
* potsmoker scratches head
ElFerna_ has quit [Ping timeout: 250 seconds]
dlitvak has joined #ruby
<Burgestrand> potsmoker sup?
* potsmoker rips the pipe
<shevy> potsmoker be patient and wait for the ops man
* potsmoker codes beast mode
dlitvak has quit [Remote host closed the connection]
<potsmoker> shevy: I like to ban evade channels that troll me I'm bored.
<potsmoker> er
<potsmoker> When I'm bored.
jottr has quit [Read error: Connection reset by peer]
<potsmoker> some people act like changing their IP is impossible.
<Burgestrand> Can't you troll in a fun way instead. :(
<potsmoker> like theres not a million public servers out there to bounce through.
<potsmoker> not when idiots antagonize me
jottr has joined #ruby
<potsmoker> i'm forced to stoop down to their level of stupidity
<potsmoker> of course.
joonty has quit [Ping timeout: 240 seconds]
<Burgestrand> I mean, with more style.
<potsmoker> people are so childish when they cling to the status quo.
<potsmoker> you want me to be more like this one thing that you've seen before.
<potsmoker> its silly
<potsmoker> just accept that every individual is a bit different.
<Burgestrand> I mean, anybody can spout insults or spam, where's the fun in that.
<potsmoker> any one can also accurately express what they have to say.
<potsmoker> but someone they don't do it that often
<potsmoker> they just troll like faggots and expect to get a reaction out of people by being a smart ass
<potsmoker> using sarcasm etc
<potsmoker> how about this: "lets just be honest, lets just be real"
ElFerna_ has joined #ruby
<Burgestrand> Hang loose.
<potsmoker> indeed.
* potsmoker does the hang loose hand sign
sepp2k has joined #ruby
<Burgestrand> I would once like to have a troll completely blow the channel's mind, like those epic trolls you only read about.
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Burgestrand> Something smart that you don't see coming until it's too late and hits you in the face.
<shevy> metasploit just is not good troll training material
yfeldblum has quit [Ping timeout: 240 seconds]
<potsmoker> I'm not a big connoisseur of this "trolling" you speak of.
zapata has joined #ruby
<potsmoker> I prefer friendly conversations.
<potsmoker> but I despise idiocy just as much as the next man.
<potsmoker> of course
<Burgestrand> You're just arrogant.
<potsmoker> lol
<Burgestrand> Like me, so I kind of get it!
<potsmoker> I choose not to let people broadcast illusions.
<potsmoker> I break right through them.
<potsmoker> I cut through bullshit with an exacto blade, metaphorically
<potsmoker> or so I've been told.
zzz has joined #ruby
<potsmoker> I like to get right to the bottom of things,
<potsmoker> and teasing often distracts from that.
<potsmoker> lmk?
zzz is now known as Guest11070
PedramT has quit [Remote host closed the connection]
vqrs has quit [Ping timeout: 245 seconds]
<potsmoker> but I also am aware that there is no reason we all can't get along.
<Burgestrand> What kind of illusions?
<potsmoker> misleading ones
Xeago has quit [Remote host closed the connection]
<Burgestrand> Like the one you're trying to give me?
vqrs has joined #ruby
<potsmoker> no, that is an illusion.
<potsmoker> :P
<potsmoker> see why they are unhelpful?
<potsmoker> I knew you would.
<Burgestrand> I'm clever that way.
<potsmoker> You're a fast learner, Burgestrand.
ElFerna_ has quit [Ping timeout: 264 seconds]
Xeago has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
<potsmoker> I like you.
<Burgestrand> I don't like you.
<potsmoker> Thats because I just started using illusions to demonstrate how foolish they are.
PedramT has joined #ruby
<potsmoker> and as you can see, they can be fairly annoying.
blackmesa has quit [Ping timeout: 245 seconds]
<Burgestrand> No, I think you're too much like me but slightly meaner.
<shevy> potsmoker simply is bored
ElFerna_ has joined #ruby
<Burgestrand> I hope not, I'm having a blast.
<potsmoker> Which is why I don't appreciate people creating an illusion that LEARNING about metasploit, or having the name "potsmoker" has nothing to do with... Me.
<potsmoker> namely shevy
<potsmoker> and yes I am very bored.
<potsmoker> and bored.'
mooru has joined #ruby
sepp2k has quit [Quit: Leaving.]
sepp2k has joined #ruby
<potsmoker> so there I hope we can all understand the context of this conversation now.
hobodave has joined #ruby
<Burgestrand> You'll get there soon.
<potsmoker> That is an illusion.
william3 has joined #ruby
radgeRayden has joined #ruby
Pupeno has joined #ruby
<potsmoker> "Cuz everytime I try to go where I really want - to -be, its already where I am... CUZ I FUCKIN NEED TO LEAVE"
<Burgestrand> It would've been, but I liked the future the way it looked.
arian0n has quit [Quit: WeeChat 1.1.1]
dlitvak has joined #ruby
<Burgestrand> This was fun. Please don't be mean, you can troll and still be nice to others, it just takes more skill.
<potsmoker> the kabucha mushroom people, sitting around all day.
<potsmoker> who can believe you? who can believe you?
dsilfen has joined #ruby
<potsmoker> ok.
<potsmoker> </troll>
<potsmoker> see, I code.
<potsmoker> durp
pdoherty has quit [Ping timeout: 276 seconds]
<dajobat> Afternoon all.
arian0n has joined #ruby
sepp2k has quit [Ping timeout: 250 seconds]
moeabdol has joined #ruby
blackmesa has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
<potsmoker> ddv: thats a good bit of wisdom, about understand the software that the exploit is exploiting.
mooru has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
PedramT has quit [Remote host closed the connection]
bkxd has joined #ruby
DEA7TH has joined #ruby
mfb2 has joined #ruby
huyderman has quit [Ping timeout: 276 seconds]
minimalism has quit [Quit: minimalism]
PedramT has joined #ruby
ropeney has quit [Quit: Textual IRC Client: www.textualapp.com]
<potsmoker> so what do you guys know about alestor crowley?
huyderman has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Lochez has joined #ruby
mooru has joined #ruby
kerunaru has joined #ruby
digidog_ has quit [Quit: leaving]
lurch_ has joined #ruby
f4cl3y has joined #ruby
n00bdev has joined #ruby
synthroid has joined #ruby
potsmoker has quit [Quit: Leaving]
dsilfen has quit [Read error: Connection reset by peer]
arthropodado has quit [Quit: AndroidIrc Disconnecting]
Burgestrand has joined #ruby
Ebok has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
deuterium has quit [Quit: Textual IRC Client: www.textualapp.com]
n00bdev has quit [Ping timeout: 252 seconds]
potsmoker has joined #ruby
ziyadb has joined #ruby
dsilfen has joined #ruby
PedramT has quit [Remote host closed the connection]
sepp2k has joined #ruby
glcx has joined #ruby
glcx has joined #ruby
Xeago has quit [Remote host closed the connection]
rashmirathi has quit [Remote host closed the connection]
mary5030 has quit [Remote host closed the connection]
theRealAlexz has quit [Ping timeout: 272 seconds]
arup_r has left #ruby [#ruby]
<ddv> ?offtopic potsmoker
<ruby[bot]> potsmoker: this seems to be off-topic. Please move your discussion to #ruby-offtopic, to keep this channel free for Ruby related problems. Thanks!
sonOfRa has quit [Remote host closed the connection]
<potsmoker> ok. sorry for the offtopicness.
theRealAlexz has joined #ruby
Jardayn has joined #ruby
<potsmoker> If you could please direct me to a channel where they talk about this?
skingsbu has joined #ruby
sonOfRa has joined #ruby
mfb2 has quit [Remote host closed the connection]
bkxd has quit [Ping timeout: 240 seconds]
PedramT has joined #ruby
<dajobat> I believe that message does so
hxegon has joined #ruby
<shevy> :D
sepp2k has quit [Ping timeout: 240 seconds]
ferr has quit [Ping timeout: 260 seconds]
skade has joined #ruby
Shaboum has joined #ruby
IrishGringo has joined #ruby
_mirko_ has quit [Quit: WeeChat 1.4]
<potsmoker> no you are generalising a bit too much
<potsmoker> I want a chat room specifically focused on that subject.
pdoherty has joined #ruby
<dajobat> You should discuss this further in a channel for finding channels.
Xeago has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
mfb2 has joined #ruby
arup_r has joined #ruby
<EdwardIII> hrm is it satanic to say self.new(params)? like this? https://gist.github.com/EdwardIII/9e276ff0a56854037397#file-r-rb-L20 ?
Musashi007 has quit [Quit: Musashi007]
tuelz1 has joined #ruby
william3 has quit [Remote host closed the connection]
kalopsian has quit [Ping timeout: 240 seconds]
sdothum has joined #ruby
<ljarvis> EdwardIII: no, the rest of the code is weird though
<ljarvis> EdwardIII: don't use return in blocks
william3 has joined #ruby
<ljarvis> heck, dont use return anywhere unless you want to return early
<EdwardIII> just use implicit return?
<ljarvis> EdwardIII: also, self is implied, so new(raw_rate) works too
<ljarvis> yes
zapata has quit [Ping timeout: 240 seconds]
agit0 has joined #ruby
<Mon_Ouie> >> def f; [1, 2, 3].each { |x| return x }; return 4; end; f
<ruby[bot]> Mon_Ouie: # => 1 (https://eval.in/512567)
<ljarvis> ^
<EdwardIII> ljarvis: even inside a class method (you call 'em a class method in ruby, right?)
aegis3121 has joined #ruby
<ljarvis> EdwardIII: self is always implied, you should only use it when you want to be explicit for some reason (i.e variable name conflicts, or keywords)
shredding has joined #ruby
joonty has joined #ruby
<ljarvis> or use it and be explicit, it's not a written rule; it's a style preference
<EdwardIII> ljarvis: but isn't def self.name the way to define a class method? as opposed to def name for instance methods?
dsilfen has joined #ruby
arup_r has quit [Ping timeout: 272 seconds]
dlitvak_ has joined #ruby
<ljarvis> EdwardIII: yes, and inside the class method self is the class level
<EdwardIII> ok neat
tuelz1 has quit [Ping timeout: 250 seconds]
dlitvak has quit [Ping timeout: 256 seconds]
Rodya_ has joined #ruby
<dajobat> EdwardIII: You could try using the Eigenclass (horrible name) to define your class methods instead, I think that's used more often.
<dajobat> Though I may be wrong
<EdwardIII> Eigenclass doesn't sound very japanese heh
<dajobat> see the Eigenclass bit at the end of this gist: http://gist.github.com/rsliter/4216800]
infra-red has joined #ruby
arthropododo has joined #ruby
<dajobat> Well, I messed up that URL.
k13nox_ has quit [Ping timeout: 250 seconds]
<EdwardIII> no i got it heh
k13nox has joined #ruby
<Mon_Ouie> It's called singleton class in the Ruby documentation and in the methods that are related to it
<EdwardIII> a class... inheriting... from an instance!?
arthropododo has quit [Remote host closed the connection]
ta has joined #ruby
<dajobat> Mon_Ouie: Ah, I'm out of date then. As ever!
hamed_r has quit [Ping timeout: 250 seconds]
joonty has quit [Ping timeout: 264 seconds]
<Mon_Ouie> No, inheritance is '<', class << some_object; …; end is to open some_object's singleton class.
infra-re_ has quit [Ping timeout: 240 seconds]
PedramT has quit [Remote host closed the connection]
<EdwardIII> ljarvis: is that more idomatic? https://gist.github.com/EdwardIII/cee0cfb9b02bb66b48c3
dlitvak_ has quit [Ping timeout: 264 seconds]
ta_ has quit [Ping timeout: 245 seconds]
eGGsha has quit [Quit: Textual IRC Client: www.textualapp.com]
youch has quit [Ping timeout: 256 seconds]
Rodya_ has quit [Ping timeout: 272 seconds]
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
PedramT has joined #ruby
treehug88 has joined #ruby
sftrabbit has joined #ruby
pink_vampire has joined #ruby
zapata has joined #ruby
ESpiney has joined #ruby
Xeago has quit [Remote host closed the connection]
sepp2k has joined #ruby
moeabdol has quit [Ping timeout: 252 seconds]
dlitvak has joined #ruby
eugenekgn has joined #ruby
arup_r has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
aegis3121 has quit [Ping timeout: 240 seconds]
Rodya_ has joined #ruby
PedramT has quit [Remote host closed the connection]
dsilfen has joined #ruby
jam_ has joined #ruby
<ljarvis> EdwardIII: yes, I would move the class methods above initialize though, but again that's a style preference (class methods first, instance methods to follow)
<eugenekgn> Hi there, I am new to Ruby world as I've been .Net developer for about 6 years and after looking at my teams code base I am really questioning what is claimed to be "the best ruby practices" i.e I am not sure how a I feel about place queries in a controller given that's part of business logic which should be hidden in (service or model), why are models so FAT (This is clear violation of (S) in SOLID -- is there a noition of PLAIN OLD RUBY OBJECT? Should
<eugenekgn> there really be logic in Rabl files -- why not just have ViewModel that sends back the data with prescribe schema?
PedramT has joined #ruby
Demetrio has joined #ruby
<Demetrio> Morning!
hamed_r has joined #ruby
baweaver has joined #ruby
<ljarvis> eugenekgn: the query logic should be inside of the model, but the query itself is obviously in the controller
<eugenekgn> right so you should not have Model.find(id: id) correct?
<Demetrio> I'm not used to working in Ruby, so bare with me, but can someone show me how to add an option to this code to use TLSv1? I'm stumped.
<ljarvis> eugenekgn: that in a controller is fine
<eugenekgn> but that would hit the db in a way?
Demetrio has quit [Read error: Connection reset by peer]
<ljarvis> of course, why is it bad to do that in a controller?
platzhirsch has joined #ruby
cdg has joined #ruby
Demetrio has joined #ruby
dexter__ has quit [Read error: Connection reset by peer]
<Demetrio> Sorry, hexchat dc'd.
<ljarvis> controllers are meant to execute business logic
<ljarvis> application logic, rather
Bloomer has joined #ruby
<ljarvis> which includes making queries to the business end (a model)
jam_ has quit [Ping timeout: 272 seconds]
duckpuppy has joined #ruby
<ljarvis> which is exactly what Model.find does
sgambino has joined #ruby
<eugenekgn> because I want my business logic to live inside some object given that manages business rules so if the query becomes more complex it is easy to change it in one central place
<Demetrio> I keep getting SSL issues using this gem. I was adviced that I add an option to use TLSv12.
<Demetrio> I have no idea how. Can someone help me?
dexter__ has joined #ruby
hobodave has quit [Quit: Computer has gone to sleep.]
<ljarvis> eugenekgn: if it becomes more complex then it belongs in a Model. Your example is not complex and belongs in the controller
hxegon is now known as hxegon_AFK
<eugenekgn> so what is used a judgement?
baweaver has quit [Ping timeout: 250 seconds]
<ljarvis> eugenekgn: I don't understand the question
<eugenekgn> why not stick to the rule that keep queries out of controllers?
vondruch has quit [Quit: Ex-Chat]
Bloodshot has joined #ruby
blackmesa has quit [Read error: Connection reset by peer]
<ljarvis> eugenekgn: so how would you abstract this?: Model.find(id)
<EdwardIII> ljarvis: cool, thanks for your feedback
<eugenekgn> meaning how do you determine which queries should live in controller and which should not
Mon_Ouie has quit [Ping timeout: 240 seconds]
rkazak has joined #ruby
Bloodshot has quit [Client Quit]
andikr has quit [Remote host closed the connection]
joonty has joined #ruby
<ljarvis> eugenekgn: right yeah, use judgement. For me, when you start doing JOINs and add conditions then that belongs in the model and exposed as a class method
<eugenekgn> Model.get_element_by_id(id) // so if your db blows up the fallback is in the Model, you're handling null case in the model, and you test your model for something very specific and your controller only for hTTP codes
<ljarvis> and when it gets even more complex, then a service object
<eugenekgn> So is there a concept for PORO?
dlitvak has quit [Ping timeout: 240 seconds]
<EdwardIII> hmm you want something like unit-of-work instead of activerecord by the sounds of it
<ljarvis> what's PORO?
<EdwardIII> eugenekgn: right?
<ljarvis> POLS perhaps
<EdwardIII> L?
<eugenekgn> PLAIN OLD RUBY OBJECT
<dajobat> ljarvis: plain old ruby object. I think he's trying to make it similar to the java POJO ideal
jottr has quit [Ping timeout: 245 seconds]
<ljarvis> right i see
<ljarvis> i mean, I don't agree with that blog post
<Demetrio> ljarvis, while I appreciate the LMGTFY, I'm at a loss as to how and where to implement this.
<ljarvis> so it's really your own judgement
kalopsian has joined #ruby
JDiPierro has joined #ruby
Vitor_ has joined #ruby
<ljarvis> Demetrio: yeah it seems like it's non-trivial I'm afraid, so I was hoping that SO answer might steer in the right direction. Otherwise I have no ideas
<eugenekgn> @ljarvis have you read the article carefully and considered the points that the has author made?
vondruch has joined #ruby
<ljarvis> yes I've read this before
Stratus3D has joined #ruby
<Demetrio> I appreciate the help all the same, thanks ljarvis.
rkazak has quit [Quit: Sleep.....ing....]
kerunaru has quit [Ping timeout: 272 seconds]
<ljarvis> eugenekgn: I'm a fan of plain Ruby objects, but it's easy to add abstractions to *all the things*
<EdwardIII> imo UoW is more 'correct' but ActiveRecord is probably more useful
<ljarvis> the examples are just bad, imo
<EdwardIII> i've done a lot with DIC and UoW stuff lately on symfony and it's just... so, so clunky
<EdwardIII> ror, django & laravel are not really about that from what i've learned heh
sandstrom has quit [Quit: My computer has gone to sleep.]
dsilfen has quit [Read error: Connection reset by peer]
PedramT has quit [Remote host closed the connection]
pdoherty has quit [Ping timeout: 264 seconds]
flughafen_ has quit [Quit: WeeChat 1.3]
n00bdev has joined #ruby
roshanavand has joined #ruby
<Stratus3D> Can someone help me with an issue I am having with `to_i`? I have a string (pp outputs "\u00004\u00009\u00000\u0000" when I print it), that when I call .to_i on it to_i returns 0, which is not what I expected
<eugenekgn> are you sure it's a string not some other object?
<Stratus3D> can anyone explain why this is happening and what I can do to convert this UTF-8 string to the integer 490?
<Stratus3D> eugenekgn: just re-ran my script and printed the class of the variable, it's String
dsilfen has joined #ruby
platzhirsch has left #ruby [#ruby]
<Stratus3D> which is what I expect, since this is coming from a text file
VeryBewitching has joined #ruby
<eugenekgn> it's a string of bytes
krobzaur_ has joined #ruby
<eugenekgn> it should probably be a stream
<VeryBewitching> Good morning folks.
<dajobat> Stratus3D: What method are you using to read the file?
atomical has joined #ruby
<dajobat> Stratus3D: If you're using the IO#read method, then that reads out bytes. If you want to read out strings, use the readlines method instead.
william3 has quit [Ping timeout: 240 seconds]
adgtl has joined #ruby
bMalum has joined #ruby
n00bdev has quit [Ping timeout: 260 seconds]
TomPeed has joined #ruby
dlitvak has joined #ruby
kies^ has quit [Ping timeout: 250 seconds]
PedramT has joined #ruby
victortyau has joined #ruby
<Stratus3D> dajobat: file = File.open(file, "rb")
<Stratus3D> text = file.read
mrmargolis has joined #ruby
<Stratus3D> file.close
<Stratus3D> I think that should return a string
centrx has joined #ruby
<EdwardIII> sorry for the basic question but how do i make my object accessible like you'd access a hash? e.g. myprop['thingy']
PedramT has quit [Remote host closed the connection]
chipotle has joined #ruby
barhum2013 has quit [Quit: barhum2013]
PedramT has joined #ruby
<ljarvis> Stratus3D: why are you reading in binmode?
<EdwardIII> i see i can do def [] but that seems more for arrays?
yos7ph has joined #ruby
lessless has quit [Ping timeout: 252 seconds]
<ljarvis> Stratus3D: text = File.read(file)
vqrs has quit [Quit: ZNC 1.6.1 - http://znc.in]
anisha has quit [Quit: Leaving]
<shevy> EdwardIII it is just a method; def [](argument); and def self.[](argument)
yos7ph has quit [Client Quit]
mostlybadfly has quit [Quit: Connection closed for inactivity]
<EdwardIII> oh, sorry!
Guest29540 is now known as beagles
JohnBat26 has joined #ruby
mrmargolis has quit []
JDiPierro has quit [Remote host closed the connection]
IrishGringo has quit [Ping timeout: 260 seconds]
icbm has quit [Quit: Computer sleeping]
skingsbu has quit [Quit: Textual IRC Client: www.textualapp.com]
<dajobat> Stratus3D: as ljarvis says, the File.open(file, "rb") is the issue there. "rb" reads in binary mode.
hxegon_AFK has quit [Quit: BRB]
Snowy has joined #ruby
PedramT has quit [Remote host closed the connection]
PaulCapestany has quit [Read error: Connection reset by peer]
Yiota has joined #ruby
vqrs has joined #ruby
B1n4r10 has joined #ruby
centrx has quit [Quit: If you meet the Buddha on the road, kill him.]
PaulCapestany has joined #ruby
Xeago has joined #ruby
Xeago has quit [Remote host closed the connection]
william3 has joined #ruby
malconis has joined #ruby
malconis has quit [Remote host closed the connection]
sepp2k has quit [Ping timeout: 250 seconds]
malconis has joined #ruby
freerobby has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
william3 has quit [Remote host closed the connection]
ramortegui has joined #ruby
tuelz1 has joined #ruby
Snowy_ has joined #ruby
symbol has joined #ruby
<dajobat> Demetrio: Does this help at all? It looks like it's meant to set the TLS version. https://www.proctor-it.com/ruby-tuesday-ssl-version-in-ruby/
Snowy is now known as Guest15014
Snowy_ is now known as Snowy
JDiPierro has joined #ruby
symbol has quit [Client Quit]
william3 has joined #ruby
dsilfen has joined #ruby
<Demetrio> dajobat, that gives me a clue about where I can start from, thanks!
<Demetrio> I'll give it a read through and see what I get.
eugenekgn has quit [Quit: Textual IRC Client: www.textualapp.com]
darkxploit has quit [Ping timeout: 276 seconds]
Guest15014 has quit [Ping timeout: 250 seconds]
Mon_Ouie has joined #ruby
hxegon has joined #ruby
<Demetrio> Sorry for the pedant mode, dajobat, but using the first two code examples in his article, are those supposed to run in irb? I'm on windows and they return undefined constants.
tuelz1 has quit [Ping timeout: 256 seconds]
PedramT has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
stannard has joined #ruby
dlitvak has joined #ruby
<dajobat> Demetrio: The requires?
<Demetrio> That and the OpenSSL. I keep getting back errors when I try them.
<dajobat> Interesting. I'm running IRB on windows as well and it works fine. What ruby installation do you have?
<dajobat> What does your RUBY_VERSION give you?
vondruch has quit [Ping timeout: 250 seconds]
kerunaru has joined #ruby
chipotle has quit [Quit: cheerio]
kerunaru has quit [Client Quit]
PedramT has quit [Remote host closed the connection]
william3 has quit [Read error: Connection reset by peer]
william3_ has joined #ruby
<Demetrio> I can't run that. I just used ruby -v in Git Bash and I get 2.2.3
<Demetrio> I'm used RubyInstaller if that matters.
iamvery has joined #ruby
iamvery has quit [Client Quit]
sankaber has joined #ruby
Kero_ is now known as Kero
dlitvak has quit [Ping timeout: 250 seconds]
Bloomer has quit [Remote host closed the connection]
<dajobat> Hm. That's strange. Sounds like your irb is doing something a little weird.
sankaber has quit [Remote host closed the connection]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dopamean_ has quit [Ping timeout: 248 seconds]
<Demetrio> Oh, that's great to hear then. :S
sankaber has joined #ruby
<dajobat> Yeah. I assume it's a new session of IRB?
arup_r has left #ruby [#ruby]
moeabdol has joined #ruby
polishdub has joined #ruby
<Demetrio> If you mean I opened a new window, yeah.
PedramT has joined #ruby
<ddv> Demetrio: doing any ruby or rails development on Windows will be pain
<Demetrio> Should I be running ruby within irb? Not to ask for a whole course on it, but..
<Demetrio> ddv, I'm learning this. I'm just trying to run Jekyll so I can redevelop my github pages site. XD
meves has joined #ruby
<dajobat> Nah, irb drops you straight into a ruby session
<ddv> Demetrio: use linux or osx
<Demetrio> ddv I'm coming to Windows from Mac actually.
<Demetrio> My old machine was getting slow and I needed something with some more power behind it. Getting into C#.
PedramT has quit [Remote host closed the connection]
<Demetrio> dajobat, what are some basic ruby commands to test.
<ddv> Demetrio: well Windows is just a weird choice for ruby/rails development
dlitvak has joined #ruby
darkxploit has joined #ruby
mauricio has quit [Remote host closed the connection]
<dajobat> Demetrio: str = "hello"
<dajobat> puts str
<dajobat> see if that outputs hello
<Demetrio> ddv, I'm sure, but again, I'm not doing a lot of ruby dev.
<dajobat> also, do Gem.path
dsilfen has quit [Read error: Connection reset by peer]
<Demetrio> Alright, I'm getting outputs here.
<dajobat> I think you might have an old version of ruby installed or something
Brklyn has joined #ruby
barhum2013 has joined #ruby
<Demetrio> 2.2.0 according to this.
<dajobat> Demetrio: Well damn.
<Demetrio> Might that be my problem then?
<dajobat> No, that sounds fine.
moeabdol has quit [Ping timeout: 272 seconds]
<Demetrio> Is this something that would run in irb? OpenSSL::SSL::SSLContext::DEFAULT_PARAMS[:ssl_version]
dhollinger has joined #ruby
<Demetrio> Would that pull up the ssl_version?
<dajobat> only if the require 'openssl' has run, because it's using a class from that module.
akem has quit [Remote host closed the connection]
jtzero1 has joined #ruby
jtzero1 has left #ruby [#ruby]
jtzero1 has joined #ruby
<Demetrio> Alright, there we go. I was duncing it.
dsilfen has joined #ruby
<Demetrio> Apparently, my params are set to SSLv32.
<Demetrio> SSLv23*
<dajobat> Had you missed out the quotation marks around the module names?
s00pcan has joined #ruby
vondruch has joined #ruby
<dajobat> Cool, in that case that blog post should enable you to set them to TLS
Burgestrand has joined #ruby
infra-red has quit [Remote host closed the connection]
lipoqil has quit [Quit: Connection closed for inactivity]
arup_r has joined #ruby
<Demetrio> No dice.
<Demetrio> The only difference is that if I use `ssl_version: :SSLv3` it gives me a handshake failure.
sanguisdex has joined #ruby
treehug88 has quit [Read error: Connection reset by peer]
<sanguisdex> can some one point me to a rake algorithm that will allow me to add a --watch flag to a rake funtion and run that function on ever change?
sandstrom has joined #ruby
jottr has joined #ruby
mondok has joined #ruby
agentmeerkat has joined #ruby
sumark has quit [Remote host closed the connection]
<dajobat> Demetrio: I need to pop off and do some work for a while, but I'll be back in a bit to have another look.
<Demetrio> dajobat: Thanks for the help!
whippythellama has joined #ruby
nofacade has joined #ruby
sumark has joined #ruby
bb010g has quit [Quit: Connection closed for inactivity]
dlitvak_ has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
william3_ has quit [Remote host closed the connection]
sgambino has joined #ruby
zerowaitstate has joined #ruby
william3 has joined #ruby
meves has quit [Remote host closed the connection]
atomical has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
decoponio has joined #ruby
The_Phoenix has joined #ruby
william3 has quit [Remote host closed the connection]
atomical has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
<jhass> sanguisdex: you probably want to use the guard gem
dopamean_ has joined #ruby
* sanguisdex reads up on guard :)
Vitor_ has quit [Remote host closed the connection]
PedramT has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
Stratus31 has joined #ruby
n00bdev has joined #ruby
william3 has joined #ruby
william3 has quit [Remote host closed the connection]
william3 has joined #ruby
Xeago has joined #ruby
blackmesa has joined #ruby
momomomomo has joined #ruby
DEA7TH has quit [Quit: DEA7TH]
jgpawletko has joined #ruby
jottr has quit [Ping timeout: 260 seconds]
Stratus3D has quit [Ping timeout: 240 seconds]
ElFerna_ has quit [Ping timeout: 245 seconds]
<Demetrio> So I can get this to work no problem. WIth OpenSSL::SSL::VERIFY_NONE.
<Demetrio> So that's not going live any time soon.
betabet has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Stratus31 has quit [Ping timeout: 240 seconds]
dsilfen has joined #ruby
icbm has joined #ruby
n00bdev has quit [Ping timeout: 240 seconds]
Stratus3D has joined #ruby
User458764 has joined #ruby
Musashi007 has joined #ruby
<jhass> can't be bothered to read all that up, mind a quick recap?
kies^ has joined #ruby
dionysus69 has quit [Ping timeout: 250 seconds]
aganov has quit [Remote host closed the connection]
jpoole has left #ruby [#ruby]
mary5030 has joined #ruby
mary5030 has quit [Read error: Connection reset by peer]
mary5030 has joined #ruby
<Demetrio> jhass, basically, I'm having trouble with a gem, jekyll-gist.
mary5030 has quit [Remote host closed the connection]
meves has joined #ruby
<Demetrio> I've been getting SSLv3 errors, in that it can't verify certificates.
ihme-TTilus is now known as TTilus
<Demetrio> I submitted an issue, and was told that updating the ssl to TLSv1_2 should help.
mary5030 has joined #ruby
Bloomer has joined #ruby
<Demetrio> In trying to do that, I attempted running jekyll using the Poole theme with OpenSSL::SSL::VERIFY_NONE flagged in the jekyll-gist gem.
nrsk has joined #ruby
<Demetrio> It runs without error. So while that's great for production, I'm very much rather not let that go into live production.
<Demetrio> Even if it's just my github page.
davedev24 has joined #ruby
potsmoker has quit [Read error: Connection reset by peer]
shinnya has joined #ruby
platzhirsch has joined #ruby
last_staff has joined #ruby
platzhirsch has left #ruby [#ruby]
sepp2k has joined #ruby
Pothead has joined #ruby
Pothead has quit [Remote host closed the connection]
coderMe has joined #ruby
potsmoker has joined #ruby
<jhass> what's your OS?
Stratus3D has quit [Quit: leaving]
barhum2013 has quit [Quit: barhum2013]
skade has quit [Quit: Computer has gone to sleep.]
Xeago has quit [Remote host closed the connection]
karapetyan has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sgambino has joined #ruby
Guest38 has joined #ruby
<Demetrio> jhass: Windows.
B1n4r10 has quit [Ping timeout: 240 seconds]
<Demetrio> clear
<Demetrio> whoop wrong window
<jhass> I see the culprit :P
dopie has joined #ruby
Kruppe has quit [Quit: ZNC - http://znc.in]
bluOxigen has joined #ruby
spex has joined #ruby
bluOxigen has left #ruby [#ruby]
<jhass> my rough guess would be that your ruby is built against an ancient openssl or doesn't have access to a proper CA store
meves has quit [Remote host closed the connection]
ferr has joined #ruby
<jhass> depends on the full error message
spex has quit [Client Quit]
coderMe has quit [Quit: Textual IRC Client: www.textualapp.com]
AlexJakeGreen has joined #ruby
<Demetrio> I can link you the initial cause of all of this: the gem.
tuelz1 has joined #ruby
Kruppe has joined #ruby
huddy has joined #ruby
<jhass> Demetrio: yeah that comment is plain wrong, the SSL/TLS version shouldn't be the issue here, that would result in a protocol error otherwise
<jhass> and hence turning of certificate validation helps
<jhass> thus no protocol issue
william3 has quit [Remote host closed the connection]
<Demetrio> So what you're saying is my solution is fine.
<jhass> I don't work with windows, so I'm not clear on the specifics, but I'd try to get curl's CA bundle (https://curl.haxx.se/docs/caextract.html) and make ruby use it for validation
Bloomer has quit [Remote host closed the connection]
<jhass> no
<jhass> not harmful in this case but nothing that should be spread as solution to that error message
glcx has quit [Read error: Connection reset by peer]
The_Phoenix has quit [Quit: Leaving.]
<Demetrio> Pretty sure I've downloaded this, but I have no idea how to point ruby to it.
tuelz1 has quit [Ping timeout: 260 seconds]
nrsk has quit [Quit: Bye]
william3 has joined #ruby
nrsk has joined #ruby
<Demetrio> Would the implementation be that different across OSs?
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
karapetyan has quit [Remote host closed the connection]
treehug88 has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
dsilfen has quit [Read error: Connection reset by peer]
william3 has quit [Remote host closed the connection]
huyderman has quit [Remote host closed the connection]
karapetyan has joined #ruby
<jhass> well, normally your OS has a bundle which ruby (or rather openssl) just uses
glcx has joined #ruby
glcx has joined #ruby
glcx has quit [Changing host]
<jhass> since it's a compiled in default location then
<jhass> not sure you can set it globally, mmh
nofacade has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Burgestrand has joined #ruby
PedramT has quit [Remote host closed the connection]
Sucks has joined #ruby
<Demetrio> My concern about this is that it might not work when hosted on GitHub Pages.
mhoungbo has quit [Ping timeout: 250 seconds]
PedramT has joined #ruby
<Demetrio> At this point, I'm tinking that it might just be easiest for me to not use gists in my posts. I can use <code> and link anything I might need to share.
barhum2013 has joined #ruby
solars has quit [Ping timeout: 245 seconds]
Lochez has quit [Quit: Textual IRC Client: www.textualapp.com]
Lochez has joined #ruby
SenpaiSilver has joined #ruby
mpistone has joined #ruby
scepticulous has quit [Ping timeout: 248 seconds]
dlitvak_ has quit [Ping timeout: 260 seconds]
adgtl has quit [Remote host closed the connection]
dlitvak has joined #ruby
Musashi007 has quit [Quit: Musashi007]
vondruch has quit [Ping timeout: 276 seconds]
webopsx has joined #ruby
chipotle has joined #ruby
dsilfen has joined #ruby
agit0 has quit [Quit: zzzZZZ….]
william3 has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
jam_ has joined #ruby
mondok has quit [Ping timeout: 250 seconds]
zyzioziom has quit [Ping timeout: 240 seconds]
Bloomer has joined #ruby
Abrin has joined #ruby
vondruch has joined #ruby
baweaver has joined #ruby
infra-red has joined #ruby
shinnya has quit [Ping timeout: 245 seconds]
<apeiros> Burgestrand: tons and tons of meetings
mhoungbo has joined #ruby
dudedudeman has joined #ruby
<Burgestrand> apeiros oh, you've joined the land of non-coders now?
chouhoulis has joined #ruby
<apeiros> partially
aegis3121 has joined #ruby
x77686d has joined #ruby
<apeiros> we shall see where it leads
jam_ has quit [Ping timeout: 245 seconds]
<apeiros> and what are you up to? :)
mark3 has left #ruby ["PART #RubyOnRails :PART #jquery :PART #reactjs :PART ##javascript :PART #elixir-lang :PART #debian :PART #zsh :PART #nethunter :PONG :wilhelm.freenode.net"]
dsilfen has quit [Read error: Connection reset by peer]
karapetyan has quit [Remote host closed the connection]
dsilfen has joined #ruby
* apeiros suspects mark3 to be a poorly coded bot :D
<Burgestrand> Quit Elabs and moved to Stockholm (wanted to live closer to family), so now I'm with a product-ish company doing Rails/JS/Elixir :)
<Burgestrand> Hah, indeed
<apeiros> nice
yos7ph has joined #ruby
<codehotter> If GC.stat shows heap_sorted_length 13xx, does that mean ruby managed heap is only 20 or so MB?
jbrhbr has joined #ruby
PedramT has quit [Remote host closed the connection]
<codehotter> why is my process memory over 400 MB?
<codehotter> Where is that memory allocated? By what? How do I find out?
<jhass> Demetrio: I'm pretty sure GH pages will not suffer from this issue since it's pretty much a setup problem
baweaver has quit [Ping timeout: 250 seconds]
Xeago has joined #ruby
<Burgestrand> apeiros time to end the day though, TTYL. :)
<apeiros> cya!
kedare has joined #ruby
Burgestrand has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
PedramT has joined #ruby
p1k has quit [Ping timeout: 264 seconds]
arup_r has left #ruby [#ruby]
ferr has quit [Ping timeout: 250 seconds]
TomPeed has quit [Quit: Textual IRC Client: www.textualapp.com]
tomchap__ has joined #ruby
TomPeed has joined #ruby
yos7ph has quit [Client Quit]
cschneid_ has joined #ruby
william3 has quit [Remote host closed the connection]
dlitvak_ has joined #ruby
PedramT has quit [Remote host closed the connection]
rgtk has quit [Remote host closed the connection]
selfadhesivefilm has joined #ruby
toretore has joined #ruby
dlitvak has quit [Ping timeout: 250 seconds]
qyjxmx has joined #ruby
agit0 has joined #ruby
trinaldi has joined #ruby
skade has joined #ruby
adgtl has joined #ruby
Bloomer has quit [Remote host closed the connection]
nofacade has joined #ruby
agit0 has quit [Client Quit]
n00bdev has joined #ruby
sneakerhax has quit [Ping timeout: 252 seconds]
sandstrom has joined #ruby
chipotle has quit [Quit: cheerio]
adgtl has quit [Ping timeout: 250 seconds]
duckpuppy has quit [Quit: WeeChat 1.4]
synthroid has quit [Remote host closed the connection]
adgtl has joined #ruby
n00bdev has quit [Ping timeout: 240 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
william3 has joined #ruby
duckpuppy has joined #ruby
potsmoker has quit [Quit: Leaving]
hobodave has joined #ruby
duckpuppy has quit [Client Quit]
al2o3-cr has quit [Ping timeout: 248 seconds]
dsilfen has quit [Ping timeout: 240 seconds]
Bloomer has joined #ruby
akem has joined #ruby
Lucky has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
aufi has quit [Ping timeout: 272 seconds]
meves has joined #ruby
dionysus69 has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
zyzioziom has joined #ruby
platzhirsch has joined #ruby
zyzioziom has quit [Client Quit]
rakm has joined #ruby
dsilfen has joined #ruby
william3 has quit [Remote host closed the connection]
duckpuppy has joined #ruby
duckpuppy has quit [Client Quit]
<Sp4rKy> W 9
frem has joined #ruby
<apeiros> how to spot emacs users in irc, lesson 1…
lurch_ has quit [Quit: lurch_]
JoshL has quit [Ping timeout: 276 seconds]
blackmesa has quit [Ping timeout: 245 seconds]
rgtk has joined #ruby
diegoviola has joined #ruby
SirFunk has quit [Ping timeout: 276 seconds]
SenpaiSilver has quit [Quit: Leaving]
webopsx has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AlexJakeGreen has quit [Quit: Leaving]
shortdudey123 has joined #ruby
arup_r has joined #ruby
aep_ has quit [Ping timeout: 276 seconds]
SCHAAP137 has quit [Remote host closed the connection]
aep has joined #ruby
SirFunk has joined #ruby
diegoviola has quit [Client Quit]
ghr has quit [Ping timeout: 276 seconds]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
JoshL has joined #ruby
ryotarai has joined #ruby
YaknotiS has quit [Ping timeout: 276 seconds]
vbatts|work has joined #ruby
moeabdol has joined #ruby
roshanavand has quit [Remote host closed the connection]
tuelz1 has joined #ruby
cfloare has joined #ruby
ghr has joined #ruby
ghr is now known as Guest41438
YaknotiS has joined #ruby
duckpuppy has joined #ruby
duracrisis has joined #ruby
duracrisis is now known as Guest73968
william3 has joined #ruby
blackmesa has joined #ruby
moeabdol has quit [Ping timeout: 240 seconds]
tuelz1 has quit [Ping timeout: 250 seconds]
duckpuppy has quit [Client Quit]
agit0 has joined #ruby
dlitvak_ has quit [Ping timeout: 245 seconds]
duckpuppy has joined #ruby
ramortegui has quit [Quit: Ex-Chat]
infra-re_ has joined #ruby
babblebre has joined #ruby
Guest73968 has quit [Changing host]
Guest73968 has joined #ruby
Pupeno has quit [Remote host closed the connection]
Guest73968 is now known as starship
william3 has quit [Ping timeout: 248 seconds]
infra-red has quit [Ping timeout: 245 seconds]
dlitvak has joined #ruby
Xeago has quit [Read error: Connection reset by peer]
meves has quit [Remote host closed the connection]
akem has quit [Remote host closed the connection]
rgtk has quit []
mdw has quit [Quit: Sleeping Zzzzz]
[Butch] has joined #ruby
oetjenj has joined #ruby
JDiPierro has quit [Remote host closed the connection]
karapetyan has joined #ruby
lyoshajapan has joined #ruby
dmolina has quit [Quit: Leaving.]
s00pcan has quit [Ping timeout: 260 seconds]
dmolina has joined #ruby
agit0 has quit [Quit: zzzZZZ….]
vondruch has quit [Quit: Ex-Chat]
zast has quit [Remote host closed the connection]
Guest41438 has quit [Remote host closed the connection]
aegis3121 has quit [Ping timeout: 240 seconds]
infra-red has joined #ruby
B1n4r10 has joined #ruby
davedev24 has quit [Ping timeout: 250 seconds]
s00pcan has joined #ruby
davedev24 has joined #ruby
karapetyan has quit [Remote host closed the connection]
kalopsian has quit [Quit: leaving]
amclain has joined #ruby
infra-re_ has quit [Ping timeout: 276 seconds]
lyoshajapan has quit [Ping timeout: 240 seconds]
duckpuppy has quit [Ping timeout: 276 seconds]
nrsk_ has joined #ruby
tjohnson has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
zambini has joined #ruby
dmolina has quit [Ping timeout: 272 seconds]
karapetyan has joined #ruby
amb77 has joined #ruby
ramfjord has joined #ruby
jottr has joined #ruby
Guest11070 has quit [Quit: Leaving...]
amb77 has quit [Quit: amb77]
User458764 has joined #ruby
Pupeno has joined #ruby
nrsk_ has quit [Client Quit]
nrsk has quit [Ping timeout: 240 seconds]
nrsk has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
einarj has quit [Remote host closed the connection]
blackmesa has quit [Ping timeout: 248 seconds]
mooru has quit [Ping timeout: 260 seconds]
momomomomo has quit [Quit: momomomomo]
sftrabbit has quit [Quit: sftrabbit]
ElFerna_ has joined #ruby
Snowy has quit [Read error: Connection reset by peer]
adac has quit [Ping timeout: 250 seconds]
jottr has quit [Ping timeout: 245 seconds]
amb77 has joined #ruby
Snowy has joined #ruby
davedev24 has quit [Ping timeout: 250 seconds]
symm- has joined #ruby
sftrabbit has joined #ruby
agit0 has joined #ruby
agit0 has quit [Client Quit]
nrsk_ has joined #ruby
<tubbo> apeiros: us vim users cantbb'i be detected!^haha,
dlitvak has joined #ruby
<tubbo> fuck emacsESCdd
ramfjord has quit [Ping timeout: 264 seconds]
nrsk has quit [Ping timeout: 240 seconds]
bronson has joined #ruby
<yorickpeterse> 5/7
rdark has quit [Ping timeout: 250 seconds]
sneakerhax has joined #ruby
sgambino has joined #ruby
Guest38 has quit [Read error: Connection reset by peer]
aryaching has quit []
bronson has quit [Ping timeout: 256 seconds]
<zambini> C-x M-w perfect-score
hadronzoo has joined #ruby
ElFerna_ has quit [Ping timeout: 250 seconds]
Pumukel has quit [Ping timeout: 250 seconds]
LuckyABA has joined #ruby
Snowy has quit []
sorah has quit [Ping timeout: 240 seconds]
<hadronzoo> Does anyone have a recommendation for an HTTP client library, ideally with keepalive support?
<jhass> typhoeus (the hydra interface)
<hadronzoo> jhass: thanks, I was just looking at that library, and libcurl isn't a problem.
<jhass> in case you want to pump out a lot of requests that is
chouhoulis has quit [Remote host closed the connection]
ElFerna_ has joined #ruby
<hadronzoo> jhass: indeed that's my constraint. We're having reliability and throughput issues with Faraday.
diegoviola has joined #ruby
<jhass> be aware that typhoeus can ramp up quite some memory usage though
<hadronzoo> jhass: how much memory (order of magnitude)? 100 Mb or 5 GB?
n00bdev has joined #ruby
<hadronzoo> (per process)?
<jhass> depends on the workload really
meves has joined #ruby
<jhass> per process yes
jbrhbr has quit [Quit: Leaving.]
glcx has quit [Quit: Quitte]
<jhass> the default pool settings are quite big, I've seen it take up a gig and more
The_Phoenix has joined #ruby
<jhass> but usually you should stay below 200 I think
stannard has quit [Remote host closed the connection]
<jhass> anyway, worth a shot, might be because I was requesting to a lot of different hosts
chouhoulis has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Guest38 has joined #ruby
<hadronzoo> I'm only requesting to a few internal API servers, but the number of requests is significant.
Tristan-Speccy has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<hadronzoo> That makes sense, memory grows proportional to the number of hosts.
Sucks has quit [Ping timeout: 264 seconds]
Sucks_ has joined #ruby
Tristan-Speccy is now known as Guest82831
synthroid has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
shredding has quit [Ping timeout: 276 seconds]
n00bdev has quit [Ping timeout: 260 seconds]
pdoherty has joined #ruby
adgtl has quit [Remote host closed the connection]
nrsk_ has quit [Quit: Bye]
<hadronzoo> jhass: thanks for your help. I'll test it and see if it's reasonable given the number unicorn processes per host.
nrsk has joined #ruby
jackjackdripper has joined #ruby
JDiPierro has joined #ruby
meves has quit [Read error: Connection reset by peer]
meves has joined #ruby
platzhirsch has left #ruby [#ruby]
roshanavand has joined #ruby
dsilfen has joined #ruby
synthroid has quit [Ping timeout: 252 seconds]
davedev24 has joined #ruby
mikecmpbll has quit [Ping timeout: 240 seconds]
Pupeno has quit [Remote host closed the connection]
ferr has joined #ruby
ElFerna_ has quit [Ping timeout: 272 seconds]
despai has joined #ruby
<codehotter> I recompiled ruby with jemalloc, and now I cannot make it leak memory anymore!!! ????
<codehotter> What effects does using jemalloc have? Can just switching out libc malloc for jmalloc fix a memory leak?
ZoffixW has joined #ruby
ZoffixW has left #ruby ["Leaving"]
sneakerhax has quit [Ping timeout: 252 seconds]
maho has joined #ruby
TomyWork has quit [Ping timeout: 248 seconds]
<maho> Can someone provide me a link to the solution of the NP-Complete Set Partition Problem?
SCHAAP137 has joined #ruby
JDiPierro has quit [Ping timeout: 276 seconds]
roshanavand has quit [Ping timeout: 252 seconds]
<maho> Also, I need links to solutions for solving the Countdown Game Show Numbers
amb77 has quit [Ping timeout: 260 seconds]
pilne has joined #ruby
roshanavand has joined #ruby
newbie22 has joined #ruby
<newbie22> Hello
sorah has joined #ruby
amb77 has joined #ruby
elifoster has joined #ruby
fedexo has joined #ruby
<lagweezle> o.O
baweaver has joined #ruby
<lagweezle> I'm not even sure what you asked, moho ... :(
<lagweezle> newbie22: hello
<jhass> lagweezle: sounds like homework
<dajobat> maho: If you're looking to run a solution to an NP complete problem, i'd say you might want to consider using a language a little faster than ruby.
Bloomer has quit [Remote host closed the connection]
newbie22 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
maho has left #ruby [#ruby]
nrsk_ has joined #ruby
ramfjord has joined #ruby
nrsk_ has quit [Client Quit]
nrsk_ has joined #ruby
* lagweezle goes to find out what the countdown numbers game is.
duckpuppy has joined #ruby
nrsk has quit [Read error: Connection reset by peer]
tuelz1 has joined #ruby
newbie22 has joined #ruby
ghr has joined #ruby
stannard has joined #ruby
<dajobat> lageweezle: It's where you get a set of numbers e.g. 5 10 1 2 3 and a total number to get like 436 and then you have to get as close to the total as possible, using any/all of the provided numbers once only, along with + - * /
<shevy> ruby is not slow - it is just misunderstood :(
webopsx has joined #ruby
<dajobat> That was an awful description by me there I think.
<shevy> lagweezle will heroically decipher it
<dajobat> shevy: Sorry, my mistake. Would it be better to say that there are probably languages that can solve that problem significantly faster?
joonty has quit [Ping timeout: 276 seconds]
<shevy> haha nah I was not being serious
<shevy> I just read that article about eval in javascript not being evil, but just misunderstood
<lagweezle> dajobat: Good enough for me to grok. Thank you!
* lagweezle does a heroes pose, cape waving in the breeze.
lemur has joined #ruby
<baweaver> shevy: that's what it wants you to think
tuelz1 has quit [Ping timeout: 240 seconds]
SenpaiSilver has joined #ruby
<lagweezle> At least ES6 has drug JavaScript further towards not horrible. :)
dlitvak has quit [Remote host closed the connection]
agentmeerkat has quit [Ping timeout: 240 seconds]
<dajobat> lagweezle: You should probably watch some countdown though, it's flipping great. Simultaneously interesting, tedious and pointless, it's basically the epitome of britishness.
stannard has quit [Ping timeout: 250 seconds]
<lagweezle> Disturbingly, I'd probably love it.
dlitvak has joined #ruby
<dajobat> As you should.
nrsk_ has quit [Ping timeout: 260 seconds]
c0m0 has quit [Ping timeout: 240 seconds]
<baweaver> Street countdown, it's like countdown but on the street
newbie22 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
lemur has quit [Ping timeout: 272 seconds]
Demetrio has quit [Read error: Connection reset by peer]
ElFerna_ has joined #ruby
Demetrio has joined #ruby
<Ox0dea> dajobat: Exponentiation and roots are technically permitted, right?
jbrhbr has joined #ruby
baweaver has quit [Remote host closed the connection]
kirun has joined #ruby
<dajobat> 0x0dea: I don't know, I sort of assumed they weren't but I'm no countdownologist.
_ht has joined #ruby
JDiPierro has joined #ruby
william3 has joined #ruby
Bloomer has joined #ruby
skade has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
william3 has quit [Remote host closed the connection]
PedramT has joined #ruby
despai has quit [Read error: Connection reset by peer]
Brklyn has quit [Ping timeout: 272 seconds]
despai has joined #ruby
jam_ has joined #ruby
<lagweezle> Oif. That number game hurts my head.
sftrabbit has quit [Quit: sftrabbit]
PedramT has quit [Ping timeout: 245 seconds]
stannard has joined #ruby
anisha has joined #ruby
hxegon has quit [Quit: BRB]
dlitvak_ has joined #ruby
ferr has quit [Quit: WeeChat 1.3]
tomphp has joined #ruby
jam_ has quit [Ping timeout: 264 seconds]
Brklyn has joined #ruby
camillo has joined #ruby
joonty has joined #ruby
confounds has joined #ruby
stannard has quit [Ping timeout: 250 seconds]
dlitvak has quit [Ping timeout: 260 seconds]
sol_ has quit [Ping timeout: 240 seconds]
camillo is now known as sol_
qyjxmx has quit [Remote host closed the connection]
nofacade has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
k13nox has quit [Remote host closed the connection]
aegis3121 has joined #ruby
arup_r has quit []
karapetyan has quit [Remote host closed the connection]
Demetrio has quit [Ping timeout: 264 seconds]
<Ox0dea> >> (1..6).reduce(0) { |t, n| t + [*n.times].permutation.size + %i[+ - * /].repeated_permutation(n).size }
<ruby[bot]> Ox0dea: # => 6333 (https://eval.in/512673)
<Ox0dea> lagweezle: Brute-forcing it is perfectly viable. ^
<Ox0dea> For larger inputs, you need to reach for dynamic programming or the like.
skade has quit [Quit: Computer has gone to sleep.]
william3 has joined #ruby
<lagweezle> That's ... delicious.
<lagweezle> I was figuring permutations would be the way to go, but that's ... kind of beautiful.
Pupeno has joined #ruby
<lagweezle> Dynamic programming ... I could not wrap my head around that very well when reading about it. :(
<lagweezle> Recent interview I had make me think that I'd be good as a Junior / standard Dev, but finding a place that'll give me the time of day is ... challenging.
Brklyn has quit [Ping timeout: 264 seconds]
<Ox0dea> Dynamic programming ~= recursion * memoization.
hightower3 has quit [Ping timeout: 240 seconds]
<lagweezle> Memoization is ... basically "caching", kind of?
n00bdev has joined #ruby
<Ox0dea> Yeah, no sense performing the same calculation more than once.
<lagweezle> Well, more, keep the result about after solving it, in case you need it (or can use it as a sub-solution) later?
<Ox0dea> Yep.
B1n4r10 has quit [Ping timeout: 240 seconds]
<lagweezle> Welp ... I guess I DO understand it. Heh.
mikecmpbll has joined #ruby
PedramT has joined #ruby
synthroid has joined #ruby
<lagweezle> Wait, where is the input for the value to solve for in that?
hightower3 has joined #ruby
despai_ has joined #ruby
hahuang65 has joined #ruby
sgambino has joined #ruby
<Ox0dea> In what?
TomyLobo has joined #ruby
nofacade has joined #ruby
<Ox0dea> Oh, that up there was just showing the worst-case number of possibilities you'd have to check.
arlek has joined #ruby
nofacade has quit [Client Quit]
sanguisdex has quit [Ping timeout: 250 seconds]
<Ox0dea> You'd zip up the numbers and the operators, reduce over them, and return if you found that they came out to the target number.
diego2 has joined #ruby
The_Phoenix1 has joined #ruby
diego2 has quit [Changing host]
diego2 has joined #ruby
The_Phoenix has quit [Ping timeout: 250 seconds]
diegoviola is now known as Guest31848
diego2 is now known as diegoviola
ht__ has joined #ruby
Guest31848 has quit [Ping timeout: 248 seconds]
despai has quit [Ping timeout: 272 seconds]
mhoungbo has quit [Remote host closed the connection]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
^CrYpto^ has joined #ruby
arlek has quit [Ping timeout: 252 seconds]
<lagweezle> OH!
<dajobat> Right, I'm off. Cheerio all.
momomomomo has joined #ruby
<dajobat> Demetrio: i'll be back on tonight if you're still around to have another crack at that HTTPS thing if it's not been solved already.
<dajobat> \quit
B1n4r10 has joined #ruby
<dajobat> damn.
dajobat has quit [Quit: Leaving]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
moeabdol has joined #ruby
william3 has quit [Remote host closed the connection]
CoderPuppy has joined #ruby
dlitvak has joined #ruby
karapetyan has joined #ruby
vondruch has joined #ruby
Pupeno has quit [Remote host closed the connection]
benhuda has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AndroUser2 has joined #ruby
<AndroUser2> *: hello
cpup has quit [Ping timeout: 245 seconds]
dlitvak_ has quit [Ping timeout: 240 seconds]
lyoshajapan has joined #ruby
konsolebox has joined #ruby
moeabdol has quit [Ping timeout: 256 seconds]
troulouliou_div2 has quit [Remote host closed the connection]
dsilfen has quit [Read error: Connection reset by peer]
FooMunki has quit [Quit: FooMunki]
ccooke has quit [Ping timeout: 245 seconds]
FooMunki has joined #ruby
PedramT_ has joined #ruby
sanguisdex has joined #ruby
stannard has joined #ruby
skade has joined #ruby
lyoshajapan has quit [Ping timeout: 240 seconds]
PedramT has quit [Ping timeout: 276 seconds]
fedexo has quit [Ping timeout: 252 seconds]
barhum2013 has quit [Quit: barhum2013]
Xeago has joined #ruby
shellie has quit [Ping timeout: 256 seconds]
Sirithcam has joined #ruby
n00bdev has quit []
jbrhbr has quit [Quit: Leaving.]
AndroUser2 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
zambini has quit [Quit: Leaving.]
shellie has joined #ruby
Bloomer has quit [Remote host closed the connection]
nrsk has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
skade has quit [Quit: Computer has gone to sleep.]
Xeago has quit [Ping timeout: 252 seconds]
nunchuck has joined #ruby
amb77 has quit [Ping timeout: 264 seconds]
amb77_ has joined #ruby
tuelz1 has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
agentmeerkat has joined #ruby
shadoi has joined #ruby
ccooke has joined #ruby
adac has joined #ruby
momomomomo has quit [Quit: momomomomo]
baweaver has joined #ruby
toretore has quit [Ping timeout: 248 seconds]
zambini has joined #ruby
despai has joined #ruby
tuelz1 has quit [Ping timeout: 245 seconds]
depesz has joined #ruby
[Butch] has quit [Read error: Connection reset by peer]
nettoweb has joined #ruby
<depesz> hi. I'm using Kernel.select() with 2 IO objects. when I get them back, how to I check which one I'm reading from at the moment?
infra-re_ has joined #ruby
firstdayonthejob has joined #ruby
mooru has joined #ruby
despai_ has quit [Ping timeout: 252 seconds]
dsilfen has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
infra-red has quit [Ping timeout: 240 seconds]
trinaldi has quit [Quit: WeeChat 1.5-dev]
<drbrain> depesz: select returns an array of IOs you should read from
<drbrain> you have to loop through them separately
lurch_ has joined #ruby
<depesz> drbrain: i know.
<depesz> and I will. but I have to know which is which.
<drbrain> why?
<drbrain> do you need to read different things from each?
<depesz> because output should go to different places depending on which fh it is.
baweaver has joined #ruby
arthropododo has joined #ruby
<depesz> basically, i'm running open3, and getting output from stdout and stderr.
hamed_r has quit [Quit: Leaving]
<drbrain> two solutions: a) track IO#fileno, b) select with timeout on each IO separately
dfockler has joined #ruby
<depesz> ok. fileno seems like better solution. thanks.
<drbrain> there's a third solution, use threads, but that's much more work, I'm sure
william3 has joined #ruby
ht__ has quit [Quit: Konversation terminated!]
<drbrain> depesz: if you're using open3, can Kernel#spawn's redirection features make your life easier?
ht__ has joined #ruby
icbm has quit [Quit: Computer sleeping]
<depesz> not sure how threads can help me with distinguishing stdout/stderr from single command.
[Butch] has joined #ruby
<drbrain> Threads replace using select at all
elifoster has quit [Ping timeout: 240 seconds]
<depesz> drbrain: apparently i have to run my own reading code, because open3 doesn't work well with timeout.
dudedudeman has quit [Quit: dudedudeman]
Cohedrin has joined #ruby
<drbrain> so one thread handles open3 out, the other open3 err
baweaver has quit [Remote host closed the connection]
<depesz> basically i'm trying to convert this code: https://gist.github.com/lpar/1032297 so that it will return stdout and stderr separately
Brklyn has joined #ruby
User458764 has joined #ruby
govg_ has quit [Ping timeout: 264 seconds]
jbrhbr has joined #ruby
aegis3121 has quit [Ping timeout: 272 seconds]
shellie has quit [Quit: .]
<drbrain> yeah, spawn will make this much easier, I think
dudedudeman has joined #ruby
ironcame1 is now known as ironcamel
infra-red has joined #ruby
<depesz> i don't see it having redirect to variable.
FernandoBasso has quit [Quit: Leaving]
<drbrain> near the bottom it shows redirecting to a pipe
<drbrain> then you can read from the pipe directly after the command is finished without blocking the process
bb010g has joined #ruby
stannard has quit [Remote host closed the connection]
infra-re_ has quit [Ping timeout: 250 seconds]
<depesz> i'm not sure about it. will try to convert first the code from github. if it will fail, will look into spawn, but I'm not sure if I want to deal with pipes.
neanderslob has joined #ruby
JohnBat26 has joined #ruby
stannard has joined #ruby
<depesz> not to mention that I don't understand the example.
dionysus69 has quit [Ping timeout: 248 seconds]
<depesz> it seems to read from log_r, but I don't see anywhere that it's being used for anything.
<drbrain> understandable, I don't like to maintain things I don't understand either
despai has quit [Ping timeout: 240 seconds]
<depesz> undefined method `fileno' for [#<IO:(closed)>]:Array
yfeldblum has joined #ruby
infra-re_ has joined #ruby
<drbrain> call it on the #<IO> inside the Array
<depesz> i think that the select() returns something else than I expected. I thought it will be array of IO objects, but it doesn't look that way
<depesz> stupid me.
jottr has joined #ruby
<drbrain> nah, select is tricky
<drbrain> it took me a long time to understand what it does, it still feels very cumbersome to use
dyre17 has joined #ruby
Musashi007 has joined #ruby
<depesz> thanks a lot - got to jet. will bookmark spawn() docs, and maybe will get back to it tomorrow.
<drbrain> select returns an Array with more arrays inside which contain IOs
<drbrain> cool, good luck
infra-red has quit [Ping timeout: 260 seconds]
aegis3121 has joined #ruby
dyre17 has quit [Client Quit]
joe42 has joined #ruby
<joe42> Is ruby still one of the most used languages? Also, can one do decent development without using rails?
<drbrain> I don't know how to quantify the first, other than to say it is still popular and powers many businesses
<drbrain> yes, you can do decent development without using rails
jottr has quit [Ping timeout: 252 seconds]
DoubleMalt has quit [Remote host closed the connection]
<drbrain> there are some Japanese companies that run ruby on mainframes
<drbrain> I highly suspect they don't use Rails for that
<drbrain> I work for Fastly and we use Sinatra instead of Rails for many services, but that's still webbish
fmcgeough has joined #ruby
Polymorphism has quit [Remote host closed the connection]
<joe42> drbrain: Thanks. I was reading many articles/blog posts which say ruby is not scalable. I found that hard to believe considering it is just a kanguage, but wanted to ask anyway. Is it?
ht__ has quit [Quit: Konversation terminated!]
<joe42> typo; language
Conflict has joined #ruby
Burgestrand has joined #ruby
<drbrain> I think you can make arguments about most languages if you narrow your criteria enough
pawnbox has quit [Remote host closed the connection]
slawrence00 has joined #ruby
baweaver has joined #ruby
zeroDivisible has joined #ruby
<drbrain> there are a bunch of problems ruby is not as well suited-to as some other language
ht__ has joined #ruby
sneakerhax has joined #ruby
baweaver has quit [Remote host closed the connection]
k13nox has joined #ruby
kfpratt has quit [Ping timeout: 252 seconds]
kenpoint has joined #ruby
hayden_ has quit [Quit: Connection closed for inactivity]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
despai has joined #ruby
cdg has quit [Remote host closed the connection]
pawnbox has joined #ruby
sdothum has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
vagnerd has quit [Read error: Connection reset by peer]
vagnerd has joined #ruby
vagnerd has quit [Changing host]
vagnerd has joined #ruby
jgt2 has quit [Ping timeout: 240 seconds]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
krz has quit [Quit: WeeChat 1.2]
benhuda has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
uri_ has joined #ruby
mdw has joined #ruby
dsilfen has joined #ruby
tuelz1 has joined #ruby
IrishGringo has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
blaxter has quit [Ping timeout: 250 seconds]
pawnbox has quit [Ping timeout: 250 seconds]
selfadhe_ has joined #ruby
Jackneill has joined #ruby
dudedudeman has quit [Quit: dudedudeman]
User458764 has joined #ruby
dudedudeman has joined #ruby
despai has quit [Read error: Connection reset by peer]
nettoweb has joined #ruby
despai has joined #ruby
selfadhesivefilm has quit [Ping timeout: 248 seconds]
k13nox has quit [Remote host closed the connection]
sandstrom has joined #ruby
minimalism has joined #ruby
elifoster has joined #ruby
slash_join is now known as slash_wait
joonty has quit [Ping timeout: 245 seconds]
ur5us has joined #ruby
joe42 has quit [Quit: Page closed]
sneakerhax has quit [Read error: Connection reset by peer]
meves has quit [Remote host closed the connection]
spider-mario has joined #ruby
anisha has quit [Quit: Leaving]
Jackneill has quit [Quit: Leaving]
jpoole has joined #ruby
<jpoole> how do I check if a variable is in my defined array named CONSTANT. include?
<jpoole> better said, not defined, found in/included in the constant.
djbkd has joined #ruby
despai_ has joined #ruby
slackbotgz has joined #ruby
Burgestrand has quit [Ping timeout: 240 seconds]
<drbrain> >> CONSTANT = [1, 'a', :c]; v = :c; CONSTANT.include? v
<ruby[bot]> drbrain: # => true (https://eval.in/512711)
<drbrain> jpoole: ↑ like this?
_lazarevsky has joined #ruby
<_lazarevsky> hey all
neanderslob has quit [Ping timeout: 276 seconds]
despai has quit [Ping timeout: 272 seconds]
<_lazarevsky> I have two arrays - A = ["a", "c", "e] and B = ["b", "d", "f"]. I need to write a function which would output A = ["a", null, "c", null, "e", null] and B = [null, "b", "null", "d", null, "f"]
<drbrain> _lazarevsky: look at Array#zip
<_lazarevsky> I have done it for the case where the values in the arrays are numbers
<_lazarevsky> but am not too sure how I can check if a string is greater than another string
sanguisdex has quit [Ping timeout: 272 seconds]
infra-red has joined #ruby
<_lazarevsky> the lists are sorted alphabetically
<bougyman> anyone play with ldap? Looking for something higher-level than ruby-ldap but not as blot as ActiveLDAP
<_lazarevsky> bougyman: I have
<bougyman> seeing treequel, but doesn't seem to be very current on maintenance... maybe it's just Done?
meves has joined #ruby
<bougyman> _lazarevsky: what do you use?
<_lazarevsky> dunno, lemme check
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<drbrain> _lazarevsky: why do you need to know if one string is creater than the other?
BTRE has quit [Quit: Leaving]
ElFerna_ has quit [Ping timeout: 248 seconds]
<bougyman> _lazarevsky: yep, used Net::LDAP before, too.
<bougyman> it's pure ruby, iirc.
<_lazarevsky> drbrain: cuz that's a business requirement
<_lazarevsky> drbrain: users are comparing scenarios
<_lazarevsky> each scenario has multiple projects
<bougyman> ruby-ldap wraps libldap, and this is for benchmarking an ldap server so I was looking towards that.
<_lazarevsky> projects featured in both scenarios should be lined up (they are represented in a juxtaposed tables)
confounds has quit []
<drbrain> _lazarevsky: I mean, what does comparing strings have to do with making an Array with nils in it?
dionysus69 has joined #ruby
infra-re_ has quit [Ping timeout: 264 seconds]
<_lazarevsky> drbrain: I've failing to articulate my problem correctly, I apologise
jgpawletko has quit [Quit: jgpawletko]
<_lazarevsky> drbrain: just look at the original question and the desired output
<_lazarevsky> on the front-end I'm returning 2 scenarios along with the scenario projects side loaded
<_lazarevsky> there are two tables juxtaposed
<drbrain> so the table has a, b, c, d, e, f
despai_ has quit [Read error: Connection reset by peer]
<_lazarevsky> the data should be presented in the following way, given the input above
<_lazarevsky> Scenario 1 | Scenario 2
<drbrain> and you want two arrays that maintain the order of items?
<_lazarevsky> A | null
<_lazarevsky> null | B
<drbrain> with omitted items replaced by nil?
<_lazarevsky> C | null
<_lazarevsky> null | D
<_lazarevsky> ...
despai has joined #ruby
<_lazarevsky> if say.. Z was featured in both scenarios
<_lazarevsky> then it would be
<_lazarevsky> Z | Z
<_lazarevsky> so the returned arrays should be of the same size, regarding of the lengths of the original arrays
<drbrain> I think that matches my explanation
<_lazarevsky> regardless*
<drbrain> yes, with position maintained
<_lazarevsky> yup
<_lazarevsky> ok
<_lazarevsky> lemme look at the zip method
<drbrain> zip might not be enough to do what you need, I thought you just needed to stick nils in at regular intervals
gheegh has joined #ruby
<drbrain> you can compare strings by value with < and >
<_lazarevsky> really?!
<_lazarevsky> well in that case it's problem solved
<_lazarevsky> I already have a function which does that
<drbrain> >> "a" < "b"
<ruby[bot]> drbrain: # => true (https://eval.in/512713)
<drbrain> "apple" > "banana"
momomomomo has joined #ruby
<drbrain> oops, that would be false ↑
<_lazarevsky> I just need to parametarise the model attribute
aegis3121 has quit [Ping timeout: 245 seconds]
<_lazarevsky> drbrain: thanks for yer help man
<_lazarevsky> :)
<_lazarevsky> bougyman: I hope you come right mate
<_lazarevsky> bougyman: I found the lib very easy to work with once I read up on the ldap protocol
<bougyman> _lazarevsky: yep i've used them many times before. this time I specifically need speed, though.
<bougyman> I'll just wrap some stuff around ruby-ldap.
<_lazarevsky> oh ok
Musashi007 has quit [Quit: Musashi007]
<_lazarevsky> g'luck with that too :)
ElFerna_ has joined #ruby
<bougyman> thanks for the input, just didn't want to miss out on some Big Deal that I didn't know about in the ruby->ldap space.
<_lazarevsky> ya I know what you mean.. querying ldap was very sometimes slow for us too
<_lazarevsky> was sometimes very*
Sucks_ has quit [Read error: Connection reset by peer]
<_lazarevsky> so instead decided to use POSIX groups to logically group users
<bougyman> ActiveLDAP works great if idiots have to modify the code
neanderslob_ has joined #ruby
neanderslob_ has quit [Read error: Connection reset by peer]
dopamean_ has quit [Ping timeout: 245 seconds]
neanderslob has joined #ruby
matp has quit [Quit: Textual IRC Client: www.textualapp.com]
aegis3121 has joined #ruby
sgambino has joined #ruby
matp has joined #ruby
Guest34193 is now known as ged
dfockler has quit [Ping timeout: 245 seconds]
sanguisdex has joined #ruby
Burgestrand has joined #ruby
<ged> bougyman: Yeah, we just stopped needing to change Treequel since it just works (for us), but please do let us know if you find anything that needs adding/fixing.
despai has quit [Ping timeout: 252 seconds]
BTRE has joined #ruby
karapetyan has quit [Remote host closed the connection]
elifoster has quit [Ping timeout: 245 seconds]
karapetyan has joined #ruby
geekbri has joined #ruby
pawnbox has joined #ruby
dopamean_ has joined #ruby
arup_r has joined #ruby
jottr has joined #ruby
jordanm has quit [Ping timeout: 260 seconds]
ht__ has quit [Quit: Konversation terminated!]
Burgestrand has quit [Ping timeout: 240 seconds]
ht__ has joined #ruby
n_blownapart has joined #ruby
baweaver has joined #ruby
despai has joined #ruby
dlitvak has quit [Ping timeout: 264 seconds]
jam_ has joined #ruby
synthroid has quit [Remote host closed the connection]
lilvim has joined #ruby
rodfersou has quit [Quit: leaving]
pawnbox has quit [Ping timeout: 245 seconds]
ht__ has quit [Client Quit]
starship is now known as duracrisis
ht__ has joined #ruby
^CrYpto^ has quit [Ping timeout: 245 seconds]
dlitvak has joined #ruby
jam_ has quit [Ping timeout: 256 seconds]
blackmesa has joined #ruby
ldnunes has quit [Quit: Leaving]
bluOxigen_ has joined #ruby
FernandoBasso has joined #ruby
dlitvak has quit [Remote host closed the connection]
slash_wait is now known as slash_part
shadoi has quit [Quit: Leaving.]
dlitvak has joined #ruby
shadoi has joined #ruby
slackbotgz has quit [Remote host closed the connection]
slackbotgz has joined #ruby
jordanm has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
celly has joined #ruby
Ruby_Rocks_007 has joined #ruby
arup_r has quit [Read error: Connection reset by peer]
dudedudeman has quit [Ping timeout: 245 seconds]
mdw has quit [Quit: Sleeping Zzzzz]
PedramT_ has quit [Remote host closed the connection]
^CrYpto^ has joined #ruby
Cohedrin has joined #ruby
Musashi007 has joined #ruby
betabet has joined #ruby
dcunit3d has joined #ruby
dopamean_ has quit [Ping timeout: 240 seconds]
ht__ has quit [Quit: Konversation terminated!]
ht__ has joined #ruby
k13nox has joined #ruby
dlitvak_ has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
dsilfen has quit [Remote host closed the connection]
supremekay has joined #ruby
fantazo has joined #ruby
ht__ has quit [Client Quit]
betabet has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mhoungbo has joined #ruby
ht__ has joined #ruby
duckpuppy has joined #ruby
PedramT has joined #ruby
dlitvak has quit [Ping timeout: 272 seconds]
joonty has joined #ruby
kalopsian has joined #ruby
arooni has joined #ruby
<jpoole> drbrain yes, thanks :)
dsilfen has joined #ruby
dajobat has joined #ruby
juddey has quit [Read error: Connection reset by peer]
juddey has joined #ruby
ht__ has quit [Quit: Konversation terminated!]
PedramT has quit [Ping timeout: 276 seconds]
ht__ has joined #ruby
Yeomra has quit [Ping timeout: 245 seconds]
PedramT has joined #ruby
dlitvak_ has quit [Remote host closed the connection]
joonty has quit [Ping timeout: 276 seconds]
FooMunki has quit [Quit: FooMunki]
FooMunki has joined #ruby
aef has quit [Remote host closed the connection]
ht__ has quit [Quit: Konversation terminated!]
ht__ has joined #ruby
^CrYpto^ has quit [Ping timeout: 245 seconds]
dopamean_ has joined #ruby
serbalgi has joined #ruby
treehug88 has quit [Quit: Textual IRC Client: www.textualapp.com]
tomphp has joined #ruby
cdg has joined #ruby
IrishGringo has quit [Ping timeout: 250 seconds]
kenpoint has quit []
Sirithcam has quit [Quit: Leaving]
djbkd has quit [Remote host closed the connection]
Felix444 has joined #ruby
keebz has joined #ruby
keebz has quit [Client Quit]
ht__ has quit [Quit: Konversation terminated!]
keebz has joined #ruby
webopsx has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
DoubleMalt has joined #ruby
slackbotgz has quit [Remote host closed the connection]
keebz has left #ruby [#ruby]
lemur has joined #ruby
mooru has quit [Quit: Textual IRC Client: www.textualapp.com]
Channel6 has joined #ruby
synthroid has joined #ruby
webopsx has joined #ruby
infra-re_ has joined #ruby
dlitvak has joined #ruby
srenatus has quit [Quit: Connection closed for inactivity]
geekbri has quit []
ht__ has joined #ruby
IrishGringo has joined #ruby
dopamean_ has quit [Ping timeout: 245 seconds]
Pupeno has joined #ruby
infra-red has quit [Ping timeout: 250 seconds]
lemur has quit [Ping timeout: 260 seconds]
dionysus69 has quit [Ping timeout: 240 seconds]
Yeomra has joined #ruby
mary5030 has quit [Remote host closed the connection]
hakunin_ has joined #ruby
PedramT has quit []
jbrhbr has quit [Quit: Leaving.]
n_blownapart has quit [Remote host closed the connection]
ht__ has quit [Quit: Konversation terminated!]
ht__ has joined #ruby
zambini has quit [Quit: Leaving.]
mostlybadfly has joined #ruby
dopamean_ has joined #ruby
Lochez has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
meves has quit [Remote host closed the connection]
yalue has quit [Quit: return 0;]
sandstrom has joined #ruby
baweaver has quit [Remote host closed the connection]
bluOxigen has joined #ruby
ferr has joined #ruby
dfockler has joined #ruby
bluOxigen_ has quit [Ping timeout: 245 seconds]
Azure has quit [Ping timeout: 250 seconds]
unreal has quit [Read error: Connection reset by peer]
codecop has quit [Remote host closed the connection]
djkeebz has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dopamean_ has quit [Ping timeout: 245 seconds]
tomphp has joined #ruby
icbm has joined #ruby
speaking1ode has joined #ruby
Azure has joined #ruby
dsilfen has quit [Remote host closed the connection]
hakunin_ is now known as hakunin
ht__ has quit [Quit: Konversation terminated!]
dopamean_ has joined #ruby
ht__ has joined #ruby
nerium has joined #ruby
dsilfen has joined #ruby
infra-re_ has quit [Remote host closed the connection]
despai has quit [Ping timeout: 240 seconds]
blackmesa has quit [Ping timeout: 240 seconds]
mfb2 has quit [Remote host closed the connection]
adac has quit [Ping timeout: 248 seconds]
meves has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
djkeebz has left #ruby [#ruby]
dsilfen has quit [Remote host closed the connection]
unreal has joined #ruby
Felix444 has quit [Ping timeout: 240 seconds]
skade has joined #ruby
TomyLobo has quit [Disconnected by services]
TomyLobo has joined #ruby
moeabdol has joined #ruby
dsilfen has joined #ruby
<kbni> So I'm using pry.. but one of my objects contains a rather large child object that makes using it kind of difficult, how can I prevent one object from showing up?
jtzero1 has quit [Remote host closed the connection]
duckpuppy has quit [Ping timeout: 250 seconds]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
karapetyan has quit [Ping timeout: 250 seconds]
dopamean_ has quit [Ping timeout: 272 seconds]
Conflict has quit [Remote host closed the connection]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Shaboum has quit [Ping timeout: 248 seconds]
infernix has quit [Ping timeout: 245 seconds]
dsilfen has quit [Remote host closed the connection]
tomphp has joined #ruby
tomphp has quit [Client Quit]
B1n4r10 has quit [Ping timeout: 272 seconds]
shanemcd has joined #ruby
baweaver has joined #ruby
k13nox has quit [Remote host closed the connection]
momomomomo has quit [Quit: momomomomo]
bluOxigen_ has joined #ruby
RegulationD has joined #ruby
bluOxigen has quit [Ping timeout: 245 seconds]
dsilfen has joined #ruby
k13nox has joined #ruby
william3 has quit [Remote host closed the connection]
ElFerna_ has quit [Ping timeout: 240 seconds]
adac has joined #ruby
AnxiousCarrot has joined #ruby
dsilfen_ has joined #ruby
bb010g has quit [Quit: Connection closed for inactivity]
moeabdol1 has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
k13nox has quit [Remote host closed the connection]
ElFerna_ has joined #ruby
glcx has joined #ruby
nrsk_ has joined #ruby
moeabdol has quit [Ping timeout: 252 seconds]
shanemcd has quit [Remote host closed the connection]
dopie has quit [Ping timeout: 256 seconds]
tomphp has joined #ruby
nrsk has quit [Ping timeout: 252 seconds]
solars has joined #ruby
baweaver has quit [Remote host closed the connection]
<shadoi> kbni: you could customize the print setting
<shadoi> kbni: Pry.config.print = proc { |output, value| output.puts "=> #{value.inspect}" } # add your exceptions in here
<shevy> that's the problem with those big kids - they just become too big to stay at home
dopamean_ has joined #ruby
chipotle has joined #ruby
silentdanni has joined #ruby
momomomomo has joined #ruby
nrsk_ has quit [Read error: Connection reset by peer]
nrsk has joined #ruby
hxegon has joined #ruby
<kbni> doesn't Pry.config.print hit only for the first thing?
yfeldblum has joined #ruby
<shadoi> kbni: probably, though I guess you could just override that object type's inspect method
joonty has joined #ruby
<kbni> hm, yeah was hoping to avoid that.
<kbni> oh, I guess I can just override that from another module, nbd
<shadoi> well I'd probably just do it in pry only
<shadoi> for debugging
pawnbox has joined #ruby
djbkd has joined #ruby
B1n4r10 has joined #ruby
nrsk has quit [Ping timeout: 272 seconds]
toretore has joined #ruby
dubek has joined #ruby
joonty has quit [Ping timeout: 276 seconds]
ht__ has quit [Quit: Konversation terminated!]
meves has quit [Remote host closed the connection]
ht__ has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
momomomomo has quit [Ping timeout: 264 seconds]
s00pcan has quit [Ping timeout: 240 seconds]
pawnbox has quit [Ping timeout: 272 seconds]
william3 has joined #ruby
momomomomo has joined #ruby
iamvery has joined #ruby
dsilfen_ has quit [Read error: Connection reset by peer]
dsilfen has joined #ruby
<dajobat> Good evening all.
bronson has joined #ruby
william3 has quit [Ping timeout: 240 seconds]
dlitvak has joined #ruby
IrishGringo has quit [Ping timeout: 240 seconds]
symm-_ has joined #ruby
symm- has quit [Ping timeout: 264 seconds]
synthroid has quit []
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
ht__ has quit [Quit: Konversation terminated!]
ht__ has joined #ruby
fmcgeough has quit [Quit: fmcgeough]
GinoManWorks has joined #ruby
treehug88 has joined #ruby
ferr has quit [Ping timeout: 250 seconds]
hxegon has quit [Quit: BRB]
shanemcd has joined #ruby
shanemcd has quit [Remote host closed the connection]
blackgoat has joined #ruby
bratchley has joined #ruby
hosttor has joined #ruby
ht__ has quit [Client Quit]
shanemcd has joined #ruby
roshanavand has quit [Remote host closed the connection]
william3 has joined #ruby
IrishGringo has joined #ruby
roshanavand has joined #ruby
infernix has joined #ruby
dsilfen has quit [Read error: Connection reset by peer]
JDiPierro has quit [Remote host closed the connection]
dsilfen_ has joined #ruby
momomomomo has quit [Quit: momomomomo]
Pupeno has quit [Remote host closed the connection]
JDiPierro has joined #ruby
stevemackinnon has joined #ruby
hxegon has joined #ruby
treehug88 has quit [Quit: Textual IRC Client: www.textualapp.com]
victortyau has quit [Quit: Leaving]
IrishGringo has quit [Ping timeout: 250 seconds]
atomical has quit [Ping timeout: 250 seconds]
selfadhe_ has quit []
jbrhbr has joined #ruby
dcunit3d has quit [Ping timeout: 250 seconds]
zambini has joined #ruby
nrsk has joined #ruby
william3 has quit [Ping timeout: 256 seconds]
last_staff has quit [Quit: last_staff]
JDiPierro has quit [Ping timeout: 260 seconds]
B1n4r10 has quit [Ping timeout: 240 seconds]
unreal has quit [Ping timeout: 240 seconds]
djbkd has quit [Quit: My people need me...]
PsionTheory has joined #ruby
AnxiousCarrot has quit [Ping timeout: 250 seconds]
futilegames has joined #ruby
coyo has quit []
unreal has joined #ruby
<cschneid_> I'm seeing a hang on a line: `STDOUT.puts data` -- in what case could that pause (indefinately). I thought that the OS allowed that buffer to get arbitrarily large, until crash?
baweaver has joined #ruby
blackmesa has joined #ruby
solars has quit [Remote host closed the connection]
dsilfen_ has quit [Remote host closed the connection]
jam_ has joined #ruby
dlitvak has quit [Ping timeout: 245 seconds]
ferr has joined #ruby
ElFerna_ has quit [Quit: WeeChat 1.3]
lubekpl has joined #ruby
TomPeed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dlitvak has joined #ruby
adac has quit [Ping timeout: 240 seconds]
ElFerna has joined #ruby
Musashi007 has quit [Quit: Musashi007]
<Ox0dea> cschneid_: You're certain that's the line that's hanging?
<cschneid_> ya, I log before & after. I think it's related to https://thraxil.org/users/anders/posts/2008/03/13/Subprocess-Hanging-PIPE-is-your-enemy/ -- The stdout pipe is being listened to from a Go program that's using this ruby process as a subprocess
<lubekpl> exit
lubekpl has quit [Client Quit]
<cschneid_> turns out pipes have max sizes maybe?
<cschneid_> which is rather awkward for me. :-/
momomomomo has joined #ruby
dsilfen has joined #ruby
shanemcd has quit []
mondok has joined #ruby
jam_ has quit [Ping timeout: 240 seconds]
Cihan has quit []
betabet has joined #ruby
Xeago has joined #ruby
evidex_ has quit [Remote host closed the connection]
lemur has joined #ruby
zyzioziom has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
silentdanni has quit [Read error: Connection reset by peer]
tomphp has joined #ruby
lubekpl has joined #ruby
amb77_ has left #ruby [#ruby]
Cihan has joined #ruby
baweaver has quit [Ping timeout: 240 seconds]
fantazo has quit [Ping timeout: 272 seconds]
s00pcan has joined #ruby
darkf has quit [Quit: Leaving]
jottr_ has joined #ruby
lemur has quit [Ping timeout: 248 seconds]
tomphp has quit [Client Quit]
polishdub has quit [Quit: Leaving]
jottr has quit [Ping timeout: 245 seconds]
n_blownapart has joined #ruby
dlitvak has quit [Remote host closed the connection]
<adaedra> cschneid_: pipe data is stored in a kernel buffer while going between processes. Theses buffers are not infinite.
<cschneid_> ya, but I don't have stupidly large data
<cschneid_> lines are on the order of 100k (json silliness)
<cschneid_> but it looks like 64k is standard there
<cschneid_> I'm rearchitecting instead of trying to force down this path
<adaedra> sounds about right
TomyLobo has quit [Ping timeout: 256 seconds]
dlitvak has joined #ruby
<adaedra> pipes are not made to be storing lots of data
supremekay has quit [Ping timeout: 252 seconds]
mhoungbo has quit [Ping timeout: 245 seconds]
baweaver has joined #ruby
<cschneid_> well, there's a go app at the other end that I thought was consuming, but timing is probably off.
Xeago has quit [Remote host closed the connection]
<cschneid_> like, it write everything, hits a barrier, but the goapp doesn't start reading until a flush or something. Whatever, reworking things :)
<adaedra> Be careful that Ruby tend to not flush often also
pawnbox has joined #ruby
solocshaw has joined #ruby
Musashi007 has joined #ruby
<shadoi> cschneid_: have you tried using $stdout.sync = true
s00pcan has quit [Ping timeout: 256 seconds]
Xeago has joined #ruby
<cschneid_> Have not. Changing business requirements a bit ends up being easier. I'm always iffy on communicating processes like this (was a hack to support old versions of data that were ruby marshal encoded).
<cschneid_> I think there's a way to just not do this work in the first place. Was surprising that a simple line like STDOUT.puts hung though :)
<shadoi> well sync will make it unbuffered, should just make the issue go away.
n_blownapart has quit []
<cschneid_> thanks. I'll give it a try
s00pcan has joined #ruby
pawnbox has quit [Ping timeout: 245 seconds]
Coldblackice has joined #ruby
LoneHerm_ has joined #ruby
The_Phoenix1 has quit [Read error: Connection reset by peer]
symm-_ is now known as symm-
lurch_ has quit [Quit: lurch_]
joonty has joined #ruby
momomomomo_ has joined #ruby
momomomomo has quit [Ping timeout: 256 seconds]
momomomomo_ is now known as momomomomo
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dlitvak_ has joined #ruby
tomchap__ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
govg has joined #ruby
moeabdol1 has quit [Ping timeout: 240 seconds]
joonty has quit [Ping timeout: 264 seconds]
moeabdol has joined #ruby
dlitvak has quit [Ping timeout: 272 seconds]
supremekay has joined #ruby
chipotle has quit [Quit: cheerio]
zenlot1 has joined #ruby
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
zenlot has quit [Ping timeout: 252 seconds]
blackmesa has quit [Ping timeout: 245 seconds]
aegis3121 has quit [Ping timeout: 248 seconds]
tuelz1 has quit [Ping timeout: 264 seconds]
celly_ has joined #ruby
solocshaw has quit [Ping timeout: 240 seconds]
n_blownapart has joined #ruby
ElFerna has quit [Ping timeout: 245 seconds]
celly has quit [Ping timeout: 250 seconds]
serbalgi has quit [Quit: Ex-Chat]
jackjackdripper has quit [Read error: Connection reset by peer]
jackjackdripper has joined #ruby
ready has quit [Ping timeout: 252 seconds]
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
momomomomo has quit [Quit: momomomomo]
Snowy has joined #ruby
aegis3121 has joined #ruby
tvw has quit [Remote host closed the connection]
uri_ has quit [Ping timeout: 252 seconds]
peterevjan has joined #ruby
dlitvak_ has quit [Remote host closed the connection]
ledestin has joined #ruby
hobodave has quit [Quit: Computer has gone to sleep.]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dlitvak has joined #ruby
lemur has joined #ruby
FernandoBasso has quit [Quit: Leaving]
_lazarevsky has quit [Ping timeout: 252 seconds]
Nympth has joined #ruby
dfockler has quit [Ping timeout: 245 seconds]
<Nympth> Heya
Nympth is now known as Nymph
Nymph is now known as nymph
jgt2 has joined #ruby
victortyau has joined #ruby
wethu has joined #ruby
VeryBewitching has quit [Quit: Konversation terminated!]
<dajobat> Hi
futilegames has quit [Quit: futilegames]
lemur has quit [Ping timeout: 260 seconds]
yqt has joined #ruby
william3 has joined #ruby
celly_ has quit [Remote host closed the connection]
LoneHerm_ has quit [Remote host closed the connection]
wethu has quit [Ping timeout: 240 seconds]
user083 has joined #ruby
dopamean_ has quit [Ping timeout: 240 seconds]
zyzioziom has quit [Quit: zyzioziom]
Musashi007 has quit [Quit: Musashi007]
[Butch] has quit [Quit: I'm out . . .]
<lubekpl> dajobat hello
davedev24 has quit [Remote host closed the connection]
william3 has quit [Ping timeout: 245 seconds]
despai has joined #ruby
cdg has quit [Remote host closed the connection]
blackmesa has joined #ruby
nymph is now known as JackRousseau
glcx has quit [Quit: Quitte]
ReK2 has joined #ruby
meves has joined #ruby
meves has quit [Remote host closed the connection]
kies^ has quit [Ping timeout: 250 seconds]
mjc__ has joined #ruby
william3 has joined #ruby
diegoviola has quit [Ping timeout: 256 seconds]
s00pcan has quit [Ping timeout: 264 seconds]
Xeago has quit [Remote host closed the connection]
s00pcan has joined #ruby
davedev24 has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
stannard has quit [Remote host closed the connection]
KnownSyntax has quit [Ping timeout: 276 seconds]
<dajobat> I say hi, but I'm actually going to head to bed. Cheerio
dajobat has quit [Quit: Leaving]
KnownSyntax has joined #ruby
KnownSyntax has quit [Changing host]
KnownSyntax has joined #ruby
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Demetrio has joined #ruby
jackjackdripper has quit [Quit: Leaving.]
lubekpl has quit [Quit: WeeChat 1.3]
meves has joined #ruby
AlexRussia has left #ruby [#ruby]
sanguisdex has quit [Ping timeout: 272 seconds]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mg^^ has joined #ruby
peterevjan has quit [Ping timeout: 272 seconds]
kirun has quit [Quit: Client exiting]
mg^ has quit [Ping timeout: 256 seconds]
solocshaw has joined #ruby
jottr_ is now known as jottr
stevemackinnon has quit [Remote host closed the connection]
krobzaur_ has quit [Ping timeout: 250 seconds]
stevemackinnon has joined #ruby
stevemackinnon has quit [Remote host closed the connection]
stevemackinnon has joined #ruby
decoponio has quit [Quit: Leaving...]
ropeney has joined #ruby
dhollinger has quit [Quit: WeeChat 1.4]
meves has quit [Remote host closed the connection]
joonty has joined #ruby
djbkd has joined #ruby
meves has joined #ruby
Snowy has quit []
whippythellama has quit [Quit: WeeChat 1.4]
tuelz1 has joined #ruby
joonty has quit [Ping timeout: 240 seconds]
dlitvak has quit [Ping timeout: 252 seconds]
nerium has quit [Quit: nerium]
flughafen has quit [Ping timeout: 272 seconds]
tuelz1 has quit [Ping timeout: 252 seconds]
davedev24 has quit [Ping timeout: 250 seconds]
Yeomra has quit [Quit: WeeChat 1.4]
meves has quit [Remote host closed the connection]
davedev24 has joined #ruby
davedev24 has quit [Remote host closed the connection]
spider-mario has quit [Remote host closed the connection]
davedev24 has joined #ruby
NeverTired has joined #ruby
n_blownapart has quit []
stevemackinnon has quit [Remote host closed the connection]
diegoviola has joined #ruby
peterevjan has joined #ruby
freerobby has quit [Quit: Leaving.]
iamvery has quit [Quit: Leaving...]
flughafen has joined #ruby
pwnd_nsfw has quit [Read error: Connection reset by peer]
symm- has quit [Quit: Leaving...]
zerowaitstate has quit [Quit: leaving]
northfurr has joined #ruby
pwnd_nsfw has joined #ruby
SCHAAP137 has quit [Read error: Connection reset by peer]