apeiros_ changed the topic of #ruby-lang to: Ruby 2.2.0; 2.1.5; 2.0.0-p598; 1.9.3-p551: http://ruby-lang.org || Paste code on http://gist.github.com
rbowlby has quit [Remote host closed the connection]
gwendall has quit [Ping timeout: 252 seconds]
ocdmw has joined #ruby-lang
tkuchiki has joined #ruby-lang
<|jemc|> it's not hard to make a suppression file, just unnerving when you have to
rbowlby has joined #ruby-lang
ghostpl has quit [Remote host closed the connection]
lytol has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
chadwtaylor has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
iliketurtles has joined #ruby-lang
b_hoffman has joined #ruby-lang
RobertBirnie has quit [Ping timeout: 245 seconds]
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
ged__ is now known as ged
RobertBirnie has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
micmus has quit [Ping timeout: 245 seconds]
iliketurtles has quit [Quit: zzzzz…..]
ap4y has joined #ruby-lang
nathanstitt has joined #ruby-lang
havenwood has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
Bwild has quit [Ping timeout: 246 seconds]
wallerdev has quit [Quit: wallerdev]
Bwild has joined #ruby-lang
wallerdev has joined #ruby-lang
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
wallerdev has quit [Client Quit]
fujimura has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
fujimura has quit [Ping timeout: 264 seconds]
tunaCanBruh has quit [Ping timeout: 245 seconds]
wallerdev has joined #ruby-lang
sparky89_ has quit [Ping timeout: 246 seconds]
Bwild has quit [Ping timeout: 252 seconds]
simi has quit [Ping timeout: 264 seconds]
Bwild has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
Lewix has quit [Ping timeout: 246 seconds]
marr has quit [Ping timeout: 246 seconds]
|jemc| has quit [Ping timeout: 245 seconds]
dik_dak has quit [Quit: Textual IRC Client: www.textualapp.com]
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ocdmw has joined #ruby-lang
stardiviner has quit [Ping timeout: 245 seconds]
ocdmw has quit [Ping timeout: 255 seconds]
iliketurtles has joined #ruby-lang
amsi has quit [Quit: Leaving]
mattyohe has quit [Quit: Connection closed for inactivity]
ap4y has quit [Ping timeout: 250 seconds]
yfeldblum has joined #ruby-lang
stardiviner has joined #ruby-lang
shinnya has quit [Ping timeout: 265 seconds]
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
KINGSABRI has joined #ruby-lang
|jemc| has joined #ruby-lang
amclain has joined #ruby-lang
KINGSABRI has quit [Read error: Connection reset by peer]
KINGSABRI has joined #ruby-lang
<KINGSABRI> Hola guys
hendranata_ has joined #ruby-lang
<KINGSABRI> I've a 121 size array and I need to find All sum of 3-values that if we subtract from 0x1035E8EA wil give us 0x1035FFB4
<KINGSABRI> but permutation for 121 long array and iterate for all values 3 times like takes forever
<KINGSABRI> any good and faster solution ?
mattyohe has joined #ruby-lang
<bnagy> eliminate all values > 0x1035E8EA - 0x1035FFB4 ? ;)
<KINGSABRI> here a snappit of code
<bnagy> wait.. wat
<bnagy> >> 0x1035E8EA - 0x1035FFB4
<eval-in__> bnagy => -5834 (https://eval.in/283687)
<KINGSABRI> I need to sum of 3-values that if we subtract from 0x1035E8EA wil give us 0x1035FFB4
<bnagy> not good. Rephrase problem?
<bnagy> you mean add in 2s complement?
<bnagy> or what
<KINGSABRI> I need some thing like that
<KINGSABRI> offsec = ( 0x1035E8EA - 0x55554d66 - 0x55554b66 - 0x5555506a )
<KINGSABRI> this equals 0x1035FFB4
<bnagy> >> 0x1035E8EA - 0x55554d66 - 0x55554b66 - 0x5555506a
<eval-in__> bnagy => -4022992972 (https://eval.in/283688)
<bnagy> like.. no
<KINGSABRI> I need to find all values like ( 0x55554d66 - 0x55554b66 - 0x5555506a) that equals 0x1035FFB4
<KINGSABRI> my idea what perimative to iterate around all items 3 times and sum it then compare
<KINGSABRI> but it take long time for 2 bytes
<bnagy> ok well unless you have more information on how your negative numbers are going to start with 0x10 in hex then I'm out
tenderlo_ has quit [Quit: Leaving...]
<KINGSABRI> actually the process hang and die
<KINGSABRI> bnagy: no problem about negative
<KINGSABRI> that's why I finish my calculation in decimal then take the absolute value to compare with the original value
<bnagy> anyway, combination(3) for a 121 item array takes like less than a second for me
<bnagy> as for the rest I think your maths is broken
<KINGSABRI> I'm doing permiutations then iterate on this iteration 3 times , which take long time
<bnagy> why would you do that?
<KINGSABRI> it 14520 of 14520 of 14520
<bnagy> you want to find any 3 values in your array that add up to some number, yes?
<bnagy> (ignoring for now that your maths is still wrong)
<bnagy> so just take ary.combination(3)
slawrence00 has joined #ruby-lang
<KINGSABRI> bnagy: working on an exploit and I have limited allowed characters which are in CHARS array
ghostpl has joined #ruby-lang
gwendall_ has joined #ruby-lang
<bnagy> >> (0..121).to_a.combination(3).select {|a| a.inject(:+) == 100}.first 3
<eval-in__> bnagy => [[0, 1, 99], [0, 2, 98], [0, 3, 97]] (https://eval.in/283691)
maso has joined #ruby-lang
gwendall has quit [Ping timeout: 252 seconds]
cornerma1 has joined #ruby-lang
<zenspider> I like maff. what's the problem?
<zenspider> why are they strings? why are they in the wrong number of columns? why is this being done manually?
<zenspider> why are there globals?
roamingdog has quit [Remote host closed the connection]
cornerman has quit [Ping timeout: 264 seconds]
ghostpl has quit [Ping timeout: 255 seconds]
cornerma1 is now known as cornerman
roamingdog has joined #ruby-lang
chouhoulis has quit [Ping timeout: 245 seconds]
<zenspider> https://github.com/seattlerb/debride poke at it pls
<zenspider> KINGSABRI: that code makes no sense at any level
<zenspider> nor does your problem description
<zenspider> nor does your interactions with bnagy who pointed out HUGE flaws in your description that you pretty much ignored
roamingdog has quit [Remote host closed the connection]
lytol has quit [Remote host closed the connection]
iliketurtles has quit [Remote host closed the connection]
rbowlby has quit [Remote host closed the connection]
tunaCanBruh has joined #ruby-lang
ap4y has joined #ruby-lang
vozcelik has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
jo_ has quit [Quit: Connection closed for inactivity]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fujimura has joined #ruby-lang
fujimura has quit [Ping timeout: 265 seconds]
fujimura has joined #ruby-lang
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
Lewix has joined #ruby-lang
Lewix has joined #ruby-lang
duderonomy has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
postmodern has quit [Quit: Leaving]
Lewix has joined #ruby-lang
wallerdev_ has joined #ruby-lang
spuk_ has joined #ruby-lang
wmoxam_ has joined #ruby-lang
swemoney has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
<swemoney> https://gist.github.com/swemoney/be4a85aad87aa708e3a8 <— Anyone know a good way of taking the 3 arrays here and merge them to end up with the last array as a result? Feel like there’s some really simple ruby magic I’m not thinking about.
duderonomy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yfeldblum has quit [Ping timeout: 245 seconds]
vlad_sta- has joined #ruby-lang
<womble> swemoney: If you want to merge based on the value of some key, rather than merge based on position in the arrays, you can join the arrays all together and then do some fancy collect dance.
wallerdev has quit [*.net *.split]
spuk has quit [*.net *.split]
pepperbreath has quit [*.net *.split]
wmoxam has quit [*.net *.split]
Obfuscate has quit [*.net *.split]
maloik has quit [*.net *.split]
vlad_starkov has quit [*.net *.split]
wallerdev_ is now known as wallerdev
maloik has joined #ruby-lang
<swemoney> womble: that sounds simple enough.. let me see if I can’t get that to work.
fragamus has joined #ruby-lang
<Lewix> whoever can refactor this https://gist.github.com/anonymous/519a12320a73ca810c34 - thumbs up
ghostpl has joined #ruby-lang
<KINGSABRI> zenspider: I didn't mean to igone his solution just it dosn't fix the core problem for me ,
pepperbreath has joined #ruby-lang
ocdmw has joined #ruby-lang
<Lewix> apeiros: ?
<KINGSABRI> and about the whys , it's special allowed chars for a particular case in exploitaion dev.
<KINGSABRI> no matter the case of characters , strings,Fixnum we can solve that easly
Obfuscate has joined #ruby-lang
<womble> Lewix: query.select_all.each { |i| i.keys.each { |k| foo[k.to_sym] += i[k].to_i } }
<KINGSABRI> but the main problem was I descriped before and it didn't make sence to you :)
<Lewix> womble: youre awesome
<womble> I know.
<Lewix> womble: i take it back
<womble> Modest, too.
<Lewix> womble: im awesome
<womble> Not to mention *extremely* good looking.
ocdmw has quit [Remote host closed the connection]
ghostpl has quit [Ping timeout: 252 seconds]
<havenwood> swemoney: inject(:zip).map { |a| a.flatten.inject(:merge) }
amystephen has quit [Quit: amystephen]
<swemoney> havenwood: wow. that works beautifully! Would have taken me a long time to find a far less efficient solution myself. thank you much.
<havenwood> swemoney: you're welcome :)
<womble> Oh, yeah, zip... Haven't thought about that method in ages..
stardiviner has quit [Ping timeout: 252 seconds]
<Lewix> havenwood: what does inject do
<havenwood> Lewix: it's the same thing as #reduce. it can be handy! http://ruby-doc.org/core-2.2.0/Enumerable.html#method-i-inject
<Lewix> ahh
symm- has quit [Ping timeout: 246 seconds]
wallerdev has quit [Quit: wallerdev]
nofxx has joined #ruby-lang
lytol has joined #ruby-lang
<nofxx> OT, anyone got a 4k display? wondering if it's good for reading, coding... thinking 27" instead of my current 2x23" setup
<nofxx> well, that and a keyboard pretty on topic for coding ruby
<womble> nofxx: I don't have one, but everyone who does have one says nice things about it.
yfeldblu_ has quit [Remote host closed the connection]
lytol has quit [Ping timeout: 264 seconds]
ur5us has quit [Remote host closed the connection]
fragamus has quit [Quit: Computer has gone to sleep.]
houhoulis has joined #ruby-lang
<nofxx> womble, yeah seems like it's perfect for working
roamingdog has joined #ruby-lang
rahul_j has joined #ruby-lang
wprice has quit [Quit: wprice]
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
<jdecuirm> Good night!
<jdecuirm> i have a question about paths i guess.
<jdecuirm> I have an structured project with folders
<jdecuirm> like data, ext, lib/project_name, tests and so on
<jdecuirm> but something funny happens when i try to run rake and running the main script
<jdecuirm> when i put require 'script_name.rb' the main script works normally
<jdecuirm> but not the tests
arooni-mobile has joined #ruby-lang
<jdecuirm> then, i change the path in require like require './lib/exercise_name/script_name.rb'
<jdecuirm> the tests works
<jdecuirm> but not the main script
<jdecuirm> i have a rakefile to accomplish the task of tests
donovan has joined #ruby-lang
<jdecuirm> so, i want to know what to do in order to run both, how should i require the path for the tests and the script run??
auzty has joined #ruby-lang
<bnagy> is it homework o'clock already?
<jdecuirm> lol
<jdecuirm> this is not homework
<jdecuirm> i'm learning to code
<bnagy> arguably
Asher has joined #ruby-lang
<jdecuirm> i have already finished university
<bnagy> you're asking questions that are covered in earlier exercises in the same set of problems that you're doing
<bnagy> so maybe go more slowly, or re-do some stuff
yfeldblum has joined #ruby-lang
<jdecuirm> i did them as the book said
<jdecuirm> but there are those errors
<bnagy> either that or ask specific, well constructed questions
<bnagy> because stuff like "I am waving a thing like.. that way, and it has an error, help!"
<bnagy> is not useful
<jdecuirm> how should i require a .rb so both tests and the escript run?
<bnagy> not useful
<jdecuirm> it's just that question
<bnagy> "I have laid out my project like (example) and I have a script (full code) and a rakefile (code) and when I run (command) I get error (error)"
<jdecuirm> i don't know why requiring a file in one way makes the escript run, but not the tests
<bnagy> neither do we!
<bnagy> because we CAN'T ACTUALLY SEE YOUR SCREEN
<jdecuirm> lol
Mr0rris0 has quit [Ping timeout: 265 seconds]
<bnagy> it's just going to be require paths
rahul_j has quit [Quit: rahul_j]
<jdecuirm> ok, let me see if i can show the problem in a gist
<bnagy> I expect you're trying to require the same relative path from two different locations, which means that one of the two will not ork
<bnagy> ever
<bnagy> so use absolute paths or paths from a known base ( like you would in a gem )
ocdmw has joined #ruby-lang
spuk_ has quit [Ping timeout: 245 seconds]
rahul_j has joined #ruby-lang
spuk has joined #ruby-lang
ap4y has quit [Read error: Connection reset by peer]
JoshuaPaling has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
amystephen has joined #ruby-lang
amystephen has quit [Client Quit]
<jdecuirm> hope this is more understandable
tunaCanBruh has quit [Ping timeout: 264 seconds]
jo_ has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
lytol has joined #ruby-lang
skyrocker has quit [Read error: Connection reset by peer]
lytol has quit [Ping timeout: 250 seconds]
roamingdog has joined #ruby-lang
kyb3r_ has joined #ruby-lang
dellavg_ has joined #ruby-lang
<jdecuirm> anyone?... lol
riotjones has joined #ruby-lang
cmckni3 has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
arooni-mobile has quit [Ping timeout: 250 seconds]
jdecuirm has quit [Remote host closed the connection]
jdecuirm has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
riotjones has quit [Ping timeout: 264 seconds]
cmckni3 has quit [Quit: Textual IRC Client: www.textualapp.com]
Thecrazylumberja has joined #ruby-lang
postmodern has joined #ruby-lang
rahul_j has joined #ruby-lang
ghostpl has joined #ruby-lang
rahul_j has quit [Client Quit]
gix has quit [Ping timeout: 265 seconds]
ghostpl has quit [Ping timeout: 255 seconds]
gix has joined #ruby-lang
rahul_j has joined #ruby-lang
rahul_j has quit [Client Quit]
havenwood has quit []
AKASkip has joined #ruby-lang
nofxx has quit [Ping timeout: 252 seconds]
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 252 seconds]
lytol has joined #ruby-lang
donovan has quit [Quit: MOM! HANG UP THE PHO)(*&$^@!*#(... NO CARRIER]
vipaca has joined #ruby-lang
<weaksauce> jdecuirm have you tried require_relative?
donovan has joined #ruby-lang
<vipaca> I was trying to define a private instance operator method, but in order for the method to be invoke it cannot be private and I must self. the invokation. Can anyone tell me why the lookup on this method differs from non-operator defined methods.
roamingdog has quit [Remote host closed the connection]
Voker57 has quit [Ping timeout: 245 seconds]
<weaksauce> vipaca can you gist some code?
swemoney has quit [Quit: Loading Quit Message...]
ocdmw has quit [Remote host closed the connection]
<vipaca> was pastie caboo a thing?
<weaksauce> vipaca gist.github.com is preferred
<weaksauce> but pastie works
tkuchiki_ has joined #ruby-lang
tkuchiki has quit [Ping timeout: 256 seconds]
deol has joined #ruby-lang
chadwtaylor has joined #ruby-lang
deol has quit [Client Quit]
jefus_ has joined #ruby-lang
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
djellemah has quit [Quit: Leaving]
jefus has quit [Ping timeout: 252 seconds]
djellemah has joined #ruby-lang
duderonomy has joined #ruby-lang
mikecmpbll has quit [Quit: ciao.]
<vipaca> It's weird the above link doesn't work for me.
chadwtaylor has quit [Remote host closed the connection]
<weaksauce> not sure how to do that
<vipaca> nm that's to access the gist via git, git clone ^
AKASkip has quit [Ping timeout: 264 seconds]
dellavg_ has quit [Ping timeout: 264 seconds]
<djellemah> jdecuirm: use require 'project/ex48_convert.rb', and make sure that lib is in $: Don't use require './ex48_convert.rb' because that will tie you down to whatever path the requiring. Also, do you have a directory called EX48?
<djellemah> s/the requiring/the requiring file is in/
tkuchiki has joined #ruby-lang
tkuchiki_ has quit [Ping timeout: 252 seconds]
ledestin has quit [Quit: ledestin]
bastilian has joined #ruby-lang
Lumio has joined #ruby-lang
bastilian has quit [Remote host closed the connection]
Lumio has quit [Ping timeout: 245 seconds]
maso has quit [Remote host closed the connection]
zav has joined #ruby-lang
roamingdog has joined #ruby-lang
donovan has quit [Quit: MOM! HANG UP THE PHO)(*&$^@!*#(... NO CARRIER]
ocdmw has joined #ruby-lang
<djellemah> vipaca: I think you can't pass more than one parameter to an operator. But when you call it using the . syntax, you can.
kerunaru has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
zav has quit [Ping timeout: 246 seconds]
<vipaca> djellemah: I tested it by dropping splat and the operator mathod behaved the same with regard to scope
ghostpl has joined #ruby-lang
lytol has quit [Remote host closed the connection]
charliesome has quit [Quit: zzz]
ghostpl has quit [Ping timeout: 252 seconds]
<djellemah> vipaca: when I run the code from your gist, >> does call thread_first. So I'm not understanding what is going wrong?
micmus has joined #ruby-lang
<vipaca> I'm looking for a way to both remove the self. and possibly make the >> method private.
<vipaca> I would like the sytax for the operator to be the same as a named method, but there seems to be some rules I don't understand about operator methods.
kerunaru has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
AKASkip has joined #ruby-lang
<djellemah> vipaca: From Matz's book: "Private methods are implicitly invoked on self , and may not be explicitly invoked on an object. If m is a private method, then you must invoke it in functional style as m . You cannot write o.m or even self.m ."
<djellemah> vipaca: so you can't use the multi-argument form of an operator (self.>>) when >> is declared private.
<vipaca> That doesn't seem to follow for me.
<vipaca> But, when you remove self. and move the method >> to private space the method is not found. Why is this different then a named method.
<vipaca> That the comparison I'm trying to draw from my gist. And the above to me does not indicate anything about method arity.
<djellemah> vipaca: so it looks like operators can
riotjones has joined #ruby-lang
<djellemah> vipaca: can't be private. Yeah, it looks you can't even do self >> "", without the dot-syntax. So yeah the problem is that private requires no explicit receiver. The >1 arity is a consequence.
Averna has quit [Quit: Leaving.]
<djellemah> djellemah: actually thinking about it I'll just go with the arity being a red herring ;-)
<vipaca> djellemah: Yeah I'm just trying to get this code to next level, e.g. operator, but it seems that named method is the only way to get the style right. My hope was to replicate functional style here. -> (thread-frist) ->> (thread-last)
tunaCanBruh has joined #ruby-lang
apeiros_ has quit [Remote host closed the connection]
<djellemah> vipaca: defining operators in ruby is somewhat inflexible, compared to say scala or haskell (although I barely know those)
apeiros_ has joined #ruby-lang
hahuang62 has quit [Ping timeout: 250 seconds]
tunaCanBruh has quit [Ping timeout: 245 seconds]
apeiros_ has quit [Ping timeout: 250 seconds]
jo_ has quit [Quit: Connection closed for inactivity]
<bnagy> vipaca: consider just writing idiomatic ruby
<bnagy> especially for a private method, I mean jeez :/
<bnagy> there's not even the 'makes the API pretty' excuse
dvorkbjel has quit [Remote host closed the connection]
jefus_ has quit [Quit: Leaving]
jefus_ has joined #ruby-lang
jefus_ is now known as jefus
arBmind has joined #ruby-lang
Forgetful_Lion has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 246 seconds]
lea_ has joined #ruby-lang
lea has quit [Quit: Page Closed]
lea_ has quit [Changing host]
lea_ has joined #ruby-lang
lea_ is now known as lea
symm- has joined #ruby-lang
lea has quit [Quit: Page Closed]
lea has joined #ruby-lang
kapil___ has joined #ruby-lang
<[spoiler]> Morning, guys
symm- has quit [Quit: Leaving...]
ocdmw has joined #ruby-lang
gwendall_ has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
dvorkbjel has joined #ruby-lang
gwendall has quit [Ping timeout: 252 seconds]
ocdmw has quit [Ping timeout: 255 seconds]
lea_ has joined #ruby-lang
lea_ is now known as figment
simi has joined #ruby-lang
figment has quit [Changing host]
figment has joined #ruby-lang
kapil___ has quit [Changing host]
kapil___ has joined #ruby-lang
ur5us has joined #ruby-lang
bastilian68 has joined #ruby-lang
figment has left #ruby-lang ["cha"]
Lewix has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
|jemc| has quit [Ping timeout: 264 seconds]
Lewix has quit [Remote host closed the connection]
bastilian68 is now known as bastilian
Mr0rris0 has joined #ruby-lang
figment has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
mattyohe has quit [Quit: Connection closed for inactivity]
amclain has quit [Quit: Leaving]
postmodern has quit [Quit: Leaving]
fusillicode has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
skade has joined #ruby-lang
roamingdog has joined #ruby-lang
roamingdog has quit [Read error: No route to host]
roamingdog has joined #ruby-lang
rbowlby has joined #ruby-lang
strixd has joined #ruby-lang
ghostpl has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
ghostpl has quit [Ping timeout: 252 seconds]
arBmind has quit [Ping timeout: 245 seconds]
skade has quit [Quit: Computer has gone to sleep.]
symm- has joined #ruby-lang
ur5us has quit [Remote host closed the connection]
micmus has quit [Ping timeout: 246 seconds]
kapil___ has quit []
gwendall has joined #ruby-lang
roamingdog has joined #ruby-lang
gwendall has quit [Ping timeout: 252 seconds]
ledestin has joined #ruby-lang
lytol has joined #ruby-lang
figment has quit [Remote host closed the connection]
Integralist has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
micmus has joined #ruby-lang
marr has joined #ruby-lang
elia has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
tunaCanBruh has quit [Ping timeout: 265 seconds]
ur5us has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
skade has joined #ruby-lang
mikecmpbll has joined #ruby-lang
PhaseCode has joined #ruby-lang
fragamus has joined #ruby-lang
ghostpl has joined #ruby-lang
solars has joined #ruby-lang
kyb3r_ has quit [Read error: Connection reset by peer]
Bwild has quit [Ping timeout: 240 seconds]
dagda1_ has quit [Remote host closed the connection]
dagda1 has joined #ruby-lang
michael_mbp has quit [Excess Flood]
dagda1 has quit [Read error: Connection reset by peer]
dagda1 has joined #ruby-lang
apeiros_ has joined #ruby-lang
michael_mbp has joined #ruby-lang
skarn has quit [Killed (orwell.freenode.net (Nickname regained by services))]
postmodern has joined #ruby-lang
skarn_ has joined #ruby-lang
solars has quit [Quit: WeeChat 0.4.2]
<yorickpeterse> morning
gwendall has joined #ruby-lang
benlovell has joined #ruby-lang
ocdmw has joined #ruby-lang
vozcelik has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Forgetful_Lion has quit [Remote host closed the connection]
Guest61116 has joined #ruby-lang
<Guest61116> I need assistance
<Guest61116> I'm trying to build a compiler for the hack language in ruby
<Guest61116> and I keep getting an "undefined method [] error" but I can't see why as I've used these same conventions before
ocdmw has quit [Remote host closed the connection]
JoshuaPaling has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<ljarvis> Guest61116: .match could return nil, do use `parts[...]` but parts might be nil
<Guest61116> im literally banging my head against the wall
<Guest61116> what the fuck does it MEAN?
<Guest61116> I'm essentially trying to check if certain matches are there or not
<Guest61116> because each match requires different assembly
<Guest61116> so how can I do what I am trying to do
<ljarvis> it means you thought something match, but it didn't so you need to check if parts is nil
<apeiros_> use the backtrace
<Guest61116> before I start checking the individual pieces of parts
<apeiros_> it tells you where it happens
ghostpl has quit [Remote host closed the connection]
<apeiros_> instead of reading all of your code over and over…
<ljarvis> ^
<apeiros_> then work your way back
<Guest61116> i mean i know where it happens
<ljarvis> although that *is* the problem :)
<apeiros_> you did not tell us
oleo has joined #ruby-lang
<Guest61116> i was looking at line 106
ghostpl has joined #ruby-lang
<Guest61116> i just did not think that it was treating parts as nil
<Guest61116> i need to be better at that
<apeiros_> and I for one am not going to even look at your code without a backtrace.
<Guest61116> HackAssembler.rb:105:in `block in <main>': undefined method `[]' for nil:NilClass (NoMethodError)
<Guest61116> from HackAssembler.rb:88:in `each'
<Guest61116> from HackAssembler.rb:88:in `<main>'
<ljarvis> so in other news, i forgot adding a column with a default to postgres backfilled the table :( :( :(
<Guest61116> how am I supposed to read that intuitively
<ljarvis> Guest61116: it means you're using the method [] on a nil value, which mean parts is nil, which tracing back means instruction.lstrip.match(CCommand) returned nil
<apeiros_> Guest61116: line for line. it tells you file, line and method
<ljarvis> checking the documentation for match shows us that it returns nil if no match is found
<ljarvis> success!
<apeiros_> feel free to suggest a better format
<Guest61116> im not :P
<Guest61116> ruby is just not like c++ in the ways i am used to thinking
yfeldblum has quit [Ping timeout: 245 seconds]
oleo__ has quit [Ping timeout: 255 seconds]
<Guest61116> thanks for the help
Guest61116 has quit [Quit: Leaving]
marr has quit [Ping timeout: 264 seconds]
<apeiros_> I love it when people complain about stuff they don't understand because they didn't spend a second to figure it out…
<apeiros_> "it doesn't implant the data directly into my head!!!"
hhatch has quit [Ping timeout: 264 seconds]
<yorickpeterse> ljarvis: enjoy that table lock of yours
<ljarvis> yorickpeterse: yarly :(
benlovell has quit [Ping timeout: 246 seconds]
<yorickpeterse> better to add a null column, then add a default using UPDATE and then set the default
<yorickpeterse> that way you only need 1283091283190238192 row locks
gwendall has quit [Remote host closed the connection]
arBmind has joined #ruby-lang
Thecrazylumberja has quit [Read error: Connection reset by peer]
benlovell has joined #ruby-lang
gwendall has joined #ruby-lang
lytol has quit [Remote host closed the connection]
<ljarvis> yeah i actually wanted a not-null constraint but i didn't add that because i knew it would lock. I thought adding the default wouldn't lock since it would only affect new columns. But that's only the case if the column exists already, adding it as a new column backfills
<ljarvis> lesson learnt
roamingdog has joined #ruby-lang
Bwild has joined #ruby-lang
roamingdog has quit [Ping timeout: 252 seconds]
hendranata_ has quit [Ping timeout: 256 seconds]
<yorickpeterse> oh hey half a million new reviews in our DB
stef204 has joined #ruby-lang
<yorickpeterse> and pg doesn't even break a sweat
Bwild has quit [Remote host closed the connection]
<yorickpeterse> I guess it was a wise decision to use a beefy pg instance instead of picking something smaller
Bwild has joined #ruby-lang
JoshuaPaling has joined #ruby-lang
<yorickpeterse> 12GB of data now, notbad.jpg
ledestin has quit [Quit: ledestin]
Integralist has quit [Ping timeout: 244 seconds]
Integralist has joined #ruby-lang
benlovell has quit [Ping timeout: 240 seconds]
ur5us has quit [Remote host closed the connection]
benlovell has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
<yorickpeterse> ljarvis: do you happen to know if Pg has some way of telling how much it has loaded into RAM?
<yorickpeterse> RDS only has that freeable memory crap but that's super confusing to read
<yorickpeterse> and I don't think there's a guarantee that indexes are always in memory
ldnunes has joined #ruby-lang
ocdmw has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 245 seconds]
workmad3 has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
ocdmw has joined #ruby-lang
Bwild has quit [Ping timeout: 252 seconds]
ocdmw has quit [Remote host closed the connection]
ghostpl has quit [Remote host closed the connection]
ghostpl has joined #ruby-lang
Bwild has joined #ruby-lang
JoshuaPaling has quit [Quit: Textual IRC Client: www.textualapp.com]
Bwild has quit [Client Quit]
intinig has joined #ruby-lang
fusillicode has quit [Ping timeout: 265 seconds]
marr has joined #ruby-lang
fusillicode has joined #ruby-lang
centrx has joined #ruby-lang
skade has quit [Read error: Connection reset by peer]
fujimura has quit [Remote host closed the connection]
lytol has joined #ruby-lang
fujimura has joined #ruby-lang
fusillicode has quit [Ping timeout: 252 seconds]
shazaum has joined #ruby-lang
fujimura has quit [Ping timeout: 245 seconds]
lytol has quit [Ping timeout: 264 seconds]
the_real_intinig has joined #ruby-lang
shazaum has quit [Changing host]
shazaum has joined #ruby-lang
simi has quit [Ping timeout: 245 seconds]
ruskie has quit [Quit: ...]
tkuchiki has quit [Ping timeout: 246 seconds]
intinig has quit [Ping timeout: 256 seconds]
fusillicode has joined #ruby-lang
roamingdog has joined #ruby-lang
yfeldblum has joined #ruby-lang
skyrocker has joined #ruby-lang
stamina has joined #ruby-lang
roamingdog has quit [Ping timeout: 245 seconds]
rikkipitt has joined #ruby-lang
<zenspider> hrm... that wasn't nand2tetris... what was the design from/for?
auzty has quit [Quit: Leaving]
djinni` has quit [Read error: Connection reset by peer]
ruskie has joined #ruby-lang
djinni` has joined #ruby-lang
AlexAltea has joined #ruby-lang
simi has joined #ruby-lang
<[spoiler]> yorickpeterse: just check how much RAM the pg process is using, or do you want more specifics?
ocdmw has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
ocdmw has joined #ruby-lang
Integralist has quit [Ping timeout: 264 seconds]
ruskie has joined #ruby-lang
<yorickpeterse> This is on RDS
<yorickpeterse> so I only get their "freeable memory" stuff of which I'm not sure how accurate it is
ocdmw has quit [Remote host closed the connection]
ocdmw has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
Integralist has joined #ruby-lang
benlovell has quit [Ping timeout: 245 seconds]
tunaCanBruh has joined #ruby-lang
the_real_intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
djellemah has quit [Quit: Leaving]
djellemah has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 250 seconds]
djellemah has quit [Client Quit]
charliesome has joined #ruby-lang
intinig has quit [Ping timeout: 245 seconds]
djellemah has joined #ruby-lang
postmodern has quit [Quit: Leaving]
elia has quit [Quit: Computer has gone to sleep.]
banister has joined #ruby-lang
lytol has joined #ruby-lang
djellemah has quit [Quit: Leaving]
djellemah has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 256 seconds]
lytol has quit [Ping timeout: 246 seconds]
intinig has joined #ruby-lang
roamingdog has joined #ruby-lang
mahmoudmahfouz has joined #ruby-lang
ocdmw has joined #ruby-lang
simi has quit [Ping timeout: 250 seconds]
<ljarvis> yorickpeterse: we've hooked rds up to librato and we have those metrics
roamingdog has quit [Ping timeout: 265 seconds]
elia has joined #ruby-lang
<yorickpeterse> hmm
ocdmw has quit [Remote host closed the connection]
ocdmw has joined #ruby-lang
benlovell has joined #ruby-lang
oleo has quit [Quit: Verlassend]
shinnya has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
rikkipitt has quit [Quit: Leaving...]
ocdmw has quit [Remote host closed the connection]
arBmind has quit [Ping timeout: 245 seconds]
Miphix has joined #ruby-lang
Integralist has quit [Ping timeout: 265 seconds]
roamingdog has joined #ruby-lang
chinmay_dd has joined #ruby-lang
chouhoulis has joined #ruby-lang
charliesome has quit [Quit: zzz]
oleo has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
mkaesz has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
sankaber has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
Mr0rris0 has quit [Excess Flood]
Mr0rris0 has joined #ruby-lang
AKASkip has quit [Ping timeout: 245 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
malconis has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 244 seconds]
skade has joined #ruby-lang
simi has joined #ruby-lang
amystephen has joined #ruby-lang
miqui_ has joined #ruby-lang
arBmind has joined #ruby-lang
tkuchiki has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
Integralist has joined #ruby-lang
chouhoulis has joined #ruby-lang
yfeldblum has joined #ruby-lang
jgpawletko has joined #ruby-lang
sideshowcoder has quit [Ping timeout: 246 seconds]
sideshowcoder has joined #ruby-lang
slawrence00 has joined #ruby-lang
mkaesz has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
ghostpl has quit [Remote host closed the connection]
ocdmw has joined #ruby-lang
cornerma1 has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
ocdmw has joined #ruby-lang
mskaesz has joined #ruby-lang
cornerman has quit [Ping timeout: 255 seconds]
cornerma1 is now known as cornerman
ghostpl has joined #ruby-lang
strixd has quit [Quit: 500]
tcopeland has quit [Quit: Leaving.]
mkaesz has quit [Ping timeout: 245 seconds]
roamingdog has quit []
lytol has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
roamingdog has joined #ruby-lang
ocdmw has quit [Remote host closed the connection]
lytol has quit [Ping timeout: 265 seconds]
strixd has joined #ruby-lang
AKASkip has joined #ruby-lang
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
intinig has quit [Remote host closed the connection]
the_real_intinig has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
tunaCanBruh has joined #ruby-lang
ghostpl has quit [Remote host closed the connection]
ghostpl has joined #ruby-lang
Vivex has quit [Read error: Connection reset by peer]
corecode has joined #ruby-lang
<corecode> hi
<corecode> is there a way to redefine operator || for a class?
<tobiasvl> no
pothibo has joined #ruby-lang
fujimura has joined #ruby-lang
<corecode> is there a way to imitate it?
<corecode> i.e. to make an object evaluate to false/nil
<corecode> so that the rhs is being picked?
pothibo has quit [Client Quit]
pothibo has joined #ruby-lang
<centrx> corecode, That sounds like some bad architecture/design
<apeiros_> corecode: no again
<apeiros_> there's no way to pretend being falsy
<corecode> it's a proxy object
donovan has joined #ruby-lang
<corecode> okay
houhoulis has quit [Remote host closed the connection]
symm- has quit [Ping timeout: 250 seconds]
momomomomo has joined #ruby-lang
tcopeland has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
enebo has joined #ruby-lang
fujimura has joined #ruby-lang
nathanstitt has joined #ruby-lang
fujimura has quit [Ping timeout: 256 seconds]
mattyohe has joined #ruby-lang
timanema has joined #ruby-lang
donovan is now known as donovan|away
pothibo has quit [Quit: pothibo]
ghostpl has quit [Remote host closed the connection]
jo_ has joined #ruby-lang
donovan|away is now known as donovan
bastilian has quit [Remote host closed the connection]
rippa has joined #ruby-lang
fusillicode has quit [Ping timeout: 256 seconds]
<epitron> lol
<epitron> apeiros_: you're such a baby
chinmay_dd is now known as chinmay_dd|away
epitron was banned on #ruby-lang by apeiros_ [epitron!*@*]
epitron was kicked from #ruby-lang by apeiros_ [same rules are in effect here too]
fusillicode has joined #ruby-lang
whippythellama has joined #ruby-lang
<yorickpeterse> police brutality!
ghostpl has joined #ruby-lang
arBmind has quit [Ping timeout: 245 seconds]
chadwtaylor has joined #ruby-lang
dzejrou has joined #ruby-lang
arBmind has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 245 seconds]
bruno- has joined #ruby-lang
chouhoul_ has joined #ruby-lang
cntrx has joined #ruby-lang
M3M0CooL has joined #ruby-lang
gwendall has quit [Remote host closed the connection]
centrx has quit [Disconnected by services]
cntrx has quit [Client Quit]
centrx has joined #ruby-lang
M3M0CooL has quit [Client Quit]
bruno- has quit [Ping timeout: 245 seconds]
ocdmw has joined #ruby-lang
chouhoulis has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
donovan is now known as donovan|away
tenderlove has joined #ruby-lang
stamina has quit [Quit: WeeChat 1.1.1]
donovan|away is now known as donovan
ocdmw has quit [Remote host closed the connection]
bastilian has joined #ruby-lang
ocdmw has joined #ruby-lang
wmoxam_ is now known as wmoxam
tunaCanBruh has joined #ruby-lang
wmoxam has quit [Changing host]
wmoxam has joined #ruby-lang
bastilian has quit [Remote host closed the connection]
bruno- has quit [Quit: leaving]
centrx has quit [Quit: Shutting down, Please wait...]
bastilian has joined #ruby-lang
bastilian has quit [Client Quit]
ocdmw has quit [Ping timeout: 245 seconds]
bastilian has joined #ruby-lang
bastilian has quit [Remote host closed the connection]
momomomomo has quit [Quit: momomomomo]
bastilian has joined #ruby-lang
bastilian has quit [Remote host closed the connection]
bastilian has joined #ruby-lang
slawrenc_ has joined #ruby-lang
riotjones has quit [Remote host closed the connection]
bastilian has quit [Remote host closed the connection]
bastilian has joined #ruby-lang
bastilian has quit [Client Quit]
lytol has joined #ruby-lang
whippythellama has quit [Quit: whippythellama]
whippythellama has joined #ruby-lang
symm- has joined #ruby-lang
yfeldblum has joined #ruby-lang
lytol has quit [Ping timeout: 245 seconds]
tcopeland has quit [Quit: Leaving.]
yfeldblum has quit [Ping timeout: 240 seconds]
RitterJack has joined #ruby-lang
Integralist has quit [Ping timeout: 252 seconds]
cHarNe2 has joined #ruby-lang
momomomomo has joined #ruby-lang
Mon_Ouie has quit [Quit: WeeChat 1.1.1]
havenwood has joined #ruby-lang
|jemc| has joined #ruby-lang
<Silex> given the owner of #ruby is not smart enough to want to redirect to this channel, how about we do better and redirect #ruby-lang to #ruby?
ocdmw has joined #ruby-lang
benlovell has quit [Ping timeout: 265 seconds]
<Silex> <officialwebsiterecommandingthischandoesnotcount>
Mon_Ouie has joined #ruby-lang
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby-lang
apeiros_ has joined #ruby-lang
<Silex> the official channel should be #ruby anyway, for simplicity's sake
mando has joined #ruby-lang
* strixd points his gun at Silex
Integralist has joined #ruby-lang
chinmay_dd|away is now known as chinmay_dd
apeiros_ has quit [Ping timeout: 250 seconds]
<strixd> Silex make a bot that does it
benlovell has joined #ruby-lang
<yorickpeterse> Silex: except #ruby is not the official channel
<yorickpeterse> https://www.ruby-lang.org/en/community/ <- #ruby-lang
davispuh has joined #ruby-lang
slawrence00 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
scampbell has joined #ruby-lang
<havenwood> yorickpeterse: have it be the official redirect? or change that link? https://github.com/ruby/www.ruby-lang.org/
<yorickpeterse> Why would we redirect to #ruby?
<havenwood> I don't really mind having multiple Ruby channels. Though maybe it'd be better for new folk to consolidate.
ghostpl has quit [Remote host closed the connection]
<havenwood> yorickpeterse: It's a better populated, more active channel.
benlovell has quit [Ping timeout: 245 seconds]
marr has quit [Ping timeout: 256 seconds]
<havenwood> With the exact same topic subject.
<havenwood> Just about three times as many people.
<yorickpeterse> because the size matters right?
gwendall has joined #ruby-lang
mahmoudmahfouz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<yorickpeterse> tbh I couldn't care less, but I don't really see why one should redirect to the other. As far as I can tell the amount of troll is also higher in #ruby
<yorickpeterse> but I could be mistaken
<workmad3> yorickpeterse: #ruby doesn't require nick registration, while here it's needed for voice, I believe
<havenwood> workmad3: I don't think that's still true though.
<yorickpeterse> workmad3: nick reg was lifted a while ago by zenspider I believe
<workmad3> ah, ok
<yorickpeterse> and it was in place to combat heavy spam
<workmad3> could be down to me limiting my trolling to #ruby then :P
<workmad3> personally, I tend to notice that the types of conversation are different in #ruby and #ruby-lang
gwendall has quit [Ping timeout: 265 seconds]
mahmoudmahfouz has joined #ruby-lang
|jemc| has quit [Quit: WeeChat 1.0.1]
<havenwood> yorickpeterse: But yeah, size matters. An empty channel isn't valuable to people looking for help or feedback. A well-populated, responsive channel is lovely.
<yorickpeterse> 332 people isn't exactly empty
<havenwood> Not that his channel is dead. People get good help here. :)
<havenwood> yorickpeterse: Indeed!
<yorickpeterse> Plus, I could have 120938109238109 bots /join and based on that argument this channel would be better
<workmad3> yorickpeterse: bot party!!!!
<yorickpeterse> as far as I know this channel is responsive enough
<workmad3> yorickpeterse: it would be awesome! especially if they talked to each other!!!
<havenwood> yorickpeterse: less than if they were consolidated, but sufficient to not be a problem
<yorickpeterse> workmad3: a few years ago I bumped into these two bots that would do some sort of dance or w/e with each other
ghostpl has joined #ruby-lang
<yorickpeterse> it was pretty cool, though I Forgot the name
<havenwood> (I'm actually a bot sent to bolster this channel's numbers. Shhhh.)
micmus has quit [Ping timeout: 252 seconds]
|jemc| has joined #ruby-lang
Integralist has quit [Ping timeout: 245 seconds]
tcopeland has joined #ruby-lang
bzalasky has joined #ruby-lang
thebastl has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
fujimura has joined #ruby-lang
djellemah_ has joined #ruby-lang
fujimura has quit [Ping timeout: 265 seconds]
djellemah has quit [Ping timeout: 256 seconds]
fusillicode has quit [Ping timeout: 246 seconds]
mskaesz has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
arBmind has quit [Ping timeout: 245 seconds]
riotjones has joined #ruby-lang
dagda1 has quit [Read error: Connection reset by peer]
arBmind has joined #ruby-lang
mkaesz has quit [Ping timeout: 245 seconds]
chouhoul_ has quit [Remote host closed the connection]
riotjones has quit [Ping timeout: 244 seconds]
chouhoulis has joined #ruby-lang
__butch__ has joined #ruby-lang
dagda1 has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
davispuh has quit [Read error: Connection reset by peer]
roamingdog has quit [Remote host closed the connection]
davispuh has joined #ruby-lang
davispuh has quit [Read error: Connection reset by peer]
the_real_intinig has quit [Remote host closed the connection]
lusaisai has joined #ruby-lang
bb010g has quit [Quit: Connection closed for inactivity]
lusaisai has quit [Client Quit]
davispuh has joined #ruby-lang
strixd has quit [Quit: 500]
amsi has joined #ruby-lang
davispuh has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
roamingdog has joined #ruby-lang
skade has joined #ruby-lang
mikecmpbll has quit [Ping timeout: 245 seconds]
thelastinuit has joined #ruby-lang
skade has quit [Remote host closed the connection]
fusillicode has joined #ruby-lang
skade has joined #ruby-lang
skade has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
micmus has joined #ruby-lang
momomomomo has quit [Quit: momomomomo]
jefus_ has joined #ruby-lang
skade has joined #ruby-lang
fusillicode1 has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 245 seconds]
deol has joined #ruby-lang
jefus has quit [Ping timeout: 256 seconds]
benlovell has joined #ruby-lang
Miphix has quit [Quit: Leaving]
fusillicode has quit [Ping timeout: 246 seconds]
solars has joined #ruby-lang
benlovell has quit [Ping timeout: 264 seconds]
tunaCanBruh has quit [Ping timeout: 252 seconds]
fusillicode has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
lytol has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 250 seconds]
jkyle has quit [Disconnected by services]
jkyle1 has joined #ruby-lang
Grey__ has joined #ruby-lang
lytol has quit [Ping timeout: 252 seconds]
wallerdev has joined #ruby-lang
yfeldblum has joined #ruby-lang
Voker57 has joined #ruby-lang
Voker57|2 has joined #ruby-lang
jefus_ has quit [Quit: Leaving]
dereck has joined #ruby-lang
simi has quit [Ping timeout: 246 seconds]
dereck is now known as jefus
mikecmpbll has joined #ruby-lang
ghostpl has quit [Remote host closed the connection]
fusillicode has quit [Ping timeout: 250 seconds]
yfeldblum has quit [Ping timeout: 245 seconds]
Voker57 has quit [Ping timeout: 246 seconds]
GBrawl has joined #ruby-lang
fusillicode has joined #ruby-lang
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
riotjones has joined #ruby-lang
fusillicode1 has joined #ruby-lang
heftig has quit [Remote host closed the connection]
donove has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
fusillicode has quit [Ping timeout: 264 seconds]
riotjones has quit [Ping timeout: 246 seconds]
GBrawl has quit [Read error: Connection reset by peer]
sarkyniin has joined #ruby-lang
ayonkhan has joined #ruby-lang
Lumio has joined #ruby-lang
hahuang62 has joined #ruby-lang
fusillicode has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
rbowlby has joined #ruby-lang
dellavg_ has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 246 seconds]
bzalasky has joined #ruby-lang
scampbell has quit [Remote host closed the connection]
fusillicode1 has joined #ruby-lang
fusillicode has quit [Ping timeout: 244 seconds]
arBmind has quit [Quit: Leaving.]
Lumio has quit [Quit: Lumio]
Lumio has joined #ruby-lang
workmad3 has quit [Ping timeout: 245 seconds]
wprice has joined #ruby-lang
Voker57|2 has quit [Remote host closed the connection]
Voker57 has joined #ruby-lang
fujimura has joined #ruby-lang
RitterJack has quit [Remote host closed the connection]
rcvalle has joined #ruby-lang
fujimura has quit [Ping timeout: 250 seconds]
bzalasky has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby-lang
davispuh has joined #ruby-lang
rcvalle has quit [Quit: rcvalle]
gwendall has quit [Remote host closed the connection]
bzalasky has quit [Remote host closed the connection]
havenwood has quit [Ping timeout: 252 seconds]
bzalasky has joined #ruby-lang
gwendall has joined #ruby-lang
bzalasky has quit [Ping timeout: 252 seconds]
fragamus has joined #ruby-lang
gwendall has quit [Ping timeout: 252 seconds]
gwendall has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
fragamus has joined #ruby-lang
momomomomo has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
RobertBirnie has joined #ruby-lang
donove has quit [Quit: Quitte]
arooni-mobile has joined #ruby-lang
lytol has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
dik_dak has joined #ruby-lang
gwendall has quit []
yfeldblum has joined #ruby-lang
banister has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 264 seconds]
chinmay_dd has quit [Quit: Connection closed for inactivity]
yfeldblum has quit [Ping timeout: 250 seconds]
solars has quit [Quit: WeeChat 0.4.2]
duderonomy has joined #ruby-lang
momomomomo has quit [Quit: momomomomo]
brownbathrobe has joined #ruby-lang
poikon has quit [Ping timeout: 245 seconds]
ayonkhan has quit [Quit: (null)]
avdi has quit [Ping timeout: 250 seconds]
manveru has quit [Ping timeout: 245 seconds]
ur5us has joined #ruby-lang
chrisseaton has quit [Ping timeout: 245 seconds]
poikon has joined #ruby-lang
timanema has quit [Quit: leaving]
ritek has quit [Ping timeout: 265 seconds]
avdi has joined #ruby-lang
chrisseaton has joined #ruby-lang
ldnunes has quit [Quit: Leaving]
shazaum has quit [Quit: Leaving]
manveru has joined #ruby-lang
cmckni3 has joined #ruby-lang
Vivex has joined #ruby-lang
ritek has joined #ruby-lang
ap4y has joined #ruby-lang
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
wallerdev has quit [Quit: wallerdev]
fujimura has joined #ruby-lang
postmodern has joined #ruby-lang
AlxAltea has joined #ruby-lang
AlexAltea has quit [Quit: Leaving]
fujimura has quit [Ping timeout: 256 seconds]
<yorickpeterse> oh hey, ruby hero awards are here again
<yorickpeterse> and I don't know of anyone to nominate :<
<pipework> yorickpeterse: Try brixen.
lytol has quit [Remote host closed the connection]
mando has quit [Ping timeout: 245 seconds]
<yorickpeterse> he already won in 2013
<yorickpeterse> Hm, I have an idea
<yorickpeterse> I get my cat a Github account
<yorickpeterse> then get everybody to vote for my cat
corecode has left #ruby-lang ["ERC Version 5.3 (IRC client for Emacs)"]
* chris2 wonders when he last wrote ruby code :P
<yorickpeterse> I wrote quite a bit of C/Java in the past few weeks :<
<apeiros_> chris2: what are you writing nowadays?
<chris2> mostly ocaml that doesnt work ._.
<chris2> and shell :P
yfeldblum has joined #ruby-lang
dik_dak has quit [Ping timeout: 252 seconds]
dik_dak has joined #ruby-lang
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dagda1 has joined #ruby-lang
ghostpl has joined #ruby-lang
rcvalle has joined #ruby-lang
ghostpl has quit [Ping timeout: 264 seconds]
dik_dak has quit [Remote host closed the connection]
ap4y has quit [Ping timeout: 265 seconds]
dik_dak has joined #ruby-lang
mando has joined #ruby-lang
mando is now known as Guest88955
Guest88955 is now known as mando_
mando_ is now known as _mando
wallerdev has joined #ruby-lang
dellavg_ has quit [Ping timeout: 264 seconds]
roamingdog has joined #ruby-lang
dorei has joined #ruby-lang
arooni-mobile has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
thebastl has quit [Quit: Leaving...]
roamingdog has joined #ruby-lang
Grey__ is now known as grey_rabbit
grey_rabbit has quit [Quit: Leaving]
lytol has joined #ruby-lang
lytol has quit [Ping timeout: 240 seconds]
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dik_dak_ has joined #ruby-lang
dik_dak_ has quit [Client Quit]
cored has joined #ruby-lang
cored has joined #ruby-lang
skade has quit [Remote host closed the connection]
Mon_Ouie has quit [Quit: WeeChat 1.1.1]
dik_dak has quit [Ping timeout: 250 seconds]
deol has joined #ruby-lang
elia has joined #ruby-lang
cored has quit [Ping timeout: 246 seconds]
donovan has quit [Max SendQ exceeded]
marr has joined #ruby-lang
sarkyniin has quit [Quit: Quit]
donovan has joined #ruby-lang
oleo is now known as Guest9538
oleo__ has joined #ruby-lang
skade has joined #ruby-lang
ap4y has joined #ruby-lang
Guest9538 has quit [Ping timeout: 246 seconds]
Bwild has joined #ruby-lang
matp_ has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 250 seconds]
matp has quit [Ping timeout: 245 seconds]
valeri_ufo has quit [Read error: Connection reset by peer]
valeri_ufo has joined #ruby-lang
charliesome has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
rcvalle has quit [Ping timeout: 240 seconds]
yfeldblum has joined #ruby-lang
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arooni-mobile has joined #ruby-lang
jigglemaster has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
tunaCanBruh has quit [Ping timeout: 245 seconds]
momomomomo has joined #ruby-lang
mkosaki has quit [Quit: Leaving...]
skade has quit [Remote host closed the connection]
centrx has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
jigglemaster has left #ruby-lang [#ruby-lang]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hahuang62 has quit [Ping timeout: 245 seconds]
skade has joined #ruby-lang
_mando has quit [Ping timeout: 245 seconds]
lytol has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
dagda1 has joined #ruby-lang
symm- has quit [Ping timeout: 252 seconds]
lytol has quit [Ping timeout: 246 seconds]
skade has quit [Quit: Textual IRC Client: www.textualapp.com]
symm- has joined #ruby-lang
roamingdog has joined #ruby-lang
brownbathrobe has quit [Remote host closed the connection]
momomomomo has quit [Quit: momomomomo]
elia has quit [Quit: Computer has gone to sleep.]
donovan has quit [Quit: MOM! HANG UP THE PHO)(*&$^@!*#(... NO CARRIER]
AKASkip has quit [Ping timeout: 255 seconds]
roamingdog has quit [Remote host closed the connection]
dorei has quit []
_mando has joined #ruby-lang
roamingdog has joined #ruby-lang
elia has joined #ruby-lang
charliesome has quit [Quit: zzz]
__butch__ has quit [Quit: Leaving.]
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
momomomomo has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
whippythellama has quit [Quit: whippythellama]
dik_dak has joined #ruby-lang
yfeldblum has joined #ruby-lang
_mando has quit [Quit: WeeChat 1.0.1]
charliesome has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
enebo has quit [Quit: enebo]
Mon_Ouie has joined #ruby-lang
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby-lang
ap4y has quit [Ping timeout: 252 seconds]
hahuang62 has joined #ruby-lang
Mr0rris0 has quit [Ping timeout: 255 seconds]
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
riotjones has joined #ruby-lang
fujimura has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 250 seconds]
stef204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
riotjones has quit [Ping timeout: 265 seconds]
brownbathrobe has joined #ruby-lang
Lumio has quit [Quit: ...]
lytol has joined #ruby-lang
wprice has quit [Quit: wprice]
elia has quit [Quit: Computer has gone to sleep.]
nathanstitt has quit [Ping timeout: 256 seconds]
lytol has quit [Ping timeout: 255 seconds]
yfeldblum has quit [Ping timeout: 245 seconds]
<yorickpeterse> \0/ finally released my parser generator
<yorickpeterse> took almost 2 months
<yorickpeterse> now to spend another 2 replacing my racc parsers, fixing bugs, etc
<yorickpeterse> (https://github.com/YorickPeterse/ruby-ll for the curious)
momomomomo has quit [Quit: momomomomo]
yfeldblum has joined #ruby-lang
TTilus has quit [Ping timeout: 256 seconds]
slawrenc_ has quit [Quit: Textual IRC Client: www.textualapp.com]