baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview2: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
<JJonah> Nice trick here: `meta_klass = class << self; self end`. I've been doing a lot of meta-programming lately but never thought to do that. Thanks for sharing.
<cthu|> my lovely fellas
<cthu|> is there a way to skip lines in file.each_line
<cthu|> no, I'm not gonna do that
<cthu|> I'm not gonna do it here, I'll have another loop
<blackhaze> I could resolve
<blackhaze> my probelm
<blackhaze> I installed sqlite3 in my distro
<baweaver> cthu|: define skip
<baweaver> probably `next`
<cthu|> no, I have a bigger problem
<cthu|> I need to combine one hash from a few lines
<cthu|> that's not done via this kind of loop
<baweaver> Examples?
<cthu|> I'm gonna just iterate with a counter where I can do i++ in the loop
<JJonah> that sounds like an un-rubyish solutino
<cthu|> in this log file I have lines that start with garbage or Category: or Action: or Label: C,A,L lines go one after another.
<cthu|> I need to create a large array with objects. each object has three fields
<cthu|> C, A, L
<cthu|> see? if I see C, I need to make an object using it and next two lines
<cthu|> after which I want to skip two lines, effectively doing i+=2
<cthu|> but I don't have access to the next lines from here and I don't want awkward logic
<baweaver> You have an example file and example output you want?
<cthu|> ok, forget about it
<cthu|> I think I have a few ways to go with it
<baweaver> Suit yourself
<JJonah> cthu: if the file large enough to load into memory, do one pass where you filter out the junk, then each_slice to get your C,A,L lines as chunks, then map to make the objects.
<JJonah> small enough to load into memory*
<baweaver> Read 3 lines, seek + 2, read 3 lines ...
orbyt_ has joined #ruby
Autolycus has joined #ruby
Francisco has joined #ruby
Fr4n has quit [Read error: Connection reset by peer]
ramfjord has quit [Ping timeout: 268 seconds]
Autolycus has quit []
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cthu| has quit [Ping timeout: 252 seconds]
DTZUZO has quit [Ping timeout: 246 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mzo has quit [Ping timeout: 246 seconds]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
aleph- has joined #ruby
chouhoulis has quit [Remote host closed the connection]
<aleph-> Hey there, so I was curious if anybody had a good quick primer for Ruby centered towards admins/devops?
pr0ton has quit [Quit: pr0ton]
<aleph-> Preferably for those with previous experience so as to cut through the cruft.
lxsameer has joined #ruby
<baweaver> define previous experience.
bmurt has joined #ruby
<aleph-> baweaver: Intermediate in Python, Bash, Rust, semi competent in C, Java and x86/MIPS/Thumb ASM, meh in Haskell, Scheme, etc.
<baweaver> This one is a bit basic - http://rubyforadmins.com/
<baweaver> Eloquent Ruby covers a lot of how to write Ruby like someone who writes Ruby
<baweaver> Past that it depends heavily on what you want to do or what type of work it is.
lxsameer has quit [Ping timeout: 268 seconds]
<aleph-> Gotcha, mainly scripts to plug in to the k8s api, general scripting work, plugins for Chef, auto provisioning over ssh in a pinch, graphing of data etc.
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dmitch has quit [Quit: Textual IRC Client: www.textualapp.com]
orbyt_ has joined #ruby
edwardthefma has joined #ruby
<edwardthefma> Sup all
blackhaze has left #ruby [#ruby]
<orbyt_> sup
Puffball has joined #ruby
fluxAeon has quit [Ping timeout: 252 seconds]
darkhanb has joined #ruby
cagomez has joined #ruby
c0ncealed3 has quit [Remote host closed the connection]
c0ncealed3 has joined #ruby
fluxAeon has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
fluxAeon has quit [Ping timeout: 260 seconds]
wildermind has quit [Quit: Connection closed for inactivity]
esrse has joined #ruby
teej has quit [Quit: Connection closed for inactivity]
dviola has quit [Quit: WeeChat 2.2]
* edwardthefma is looikng for someone who can dev a rbot plugin using My anime list plugin
<edwardthefma> My anime list api
Puffball has quit [Remote host closed the connection]
Puffball has joined #ruby
<baweaver> edwardthefma: for...?
<baweaver> We could also teach you to make one depending on what it is
<edwardthefma> Its a simple plugin that searches the my anime list data base
<edwardthefma> For anime buy name
millerti has quit [Ping timeout: 252 seconds]
<edwardthefma> Its for a channel im going to start on another server
braincrash has quit [Quit: bye bye]
<baweaver> So why Ruby?
braincrash has joined #ruby
Azure has joined #ruby
<edwardthefma> I know ruby isnt rescouce intensive
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dbz has joined #ruby
<edwardthefma> Well i g2g
<edwardthefma> Ttyl
edwardthefma has left #ruby ["Quit message"]
dbz has quit [Ping timeout: 252 seconds]
knight33 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
Francisco has quit [Read error: Connection reset by peer]
Fr4n has joined #ruby
<baweaver> Did a writeup on destructuring in Ruby: https://medium.com/@baweaver/destructuring-in-ruby-9e9bd2be0360
<baweaver> veers a bit advanced, but a lot of fun stuff around in it
sp3ncer has joined #ruby
<sp3ncer> I'm trying to build a gem for an executable ruby project and am having a lot of trouble
<sp3ncer> Could someone give me a hand if they have a minute?
dbz has joined #ruby
dbz has quit [Ping timeout: 245 seconds]
gnufied has quit [Ping timeout: 252 seconds]
uplime has joined #ruby
knight33 has joined #ruby
<uplime> is there a method for arrays like collect, but if the return value is nil don't add it to the array?
<sp3ncer> I think I finally figured it out
<sp3ncer> that was really not well documented
ramfjord has joined #ruby
<baweaver> uplime: typically map is more common, though you probably want compact as well
<uplime> thanks
<baweaver> [1, 2, 3].map { |n| n.even? x * 2 : nil }.compact
<uplime> that should just be [2] right?
<uplime> erm, 4
<baweaver> [4], but pretty much
<uplime> yeah thats perfect, thank you!
donofrio has quit [Remote host closed the connection]
<sp3ncer> great and someone already took my name
<sp3ncer> ugh
ramfjord has quit [Ping timeout: 252 seconds]
za1b1tsu has joined #ruby
cagomez has quit [Remote host closed the connection]
LiftLeft has quit [Ping timeout: 240 seconds]
knight33 has quit [Read error: Connection reset by peer]
LiftLeft has joined #ruby
APK has joined #ruby
lxsameer has joined #ruby
clemens3 has joined #ruby
Church_ has joined #ruby
sauvin_ has joined #ruby
lxsameer has quit [Ping timeout: 252 seconds]
aleph- has quit [*.net *.split]
sauvin has quit [*.net *.split]
alicef has quit [*.net *.split]
trif has quit [*.net *.split]
dhollinger has quit [*.net *.split]
Xiti has quit [*.net *.split]
Xeago has quit [*.net *.split]
AKPWD has quit [*.net *.split]
Cthulu201 has quit [*.net *.split]
yokel has quit [*.net *.split]
i8igmac has quit [*.net *.split]
z3uS has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
akhkharu has quit [*.net *.split]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Psy-Q has quit [Ping timeout: 252 seconds]
Scient has quit [Ping timeout: 252 seconds]
trif has joined #ruby
i8igmac has joined #ruby
z3uS has joined #ruby
yokel has joined #ruby
Cthulu201 has joined #ruby
akhkharu has joined #ruby
Xeago has joined #ruby
Emmanuel_Chanel has joined #ruby
Xiti has joined #ruby
dhollinger has joined #ruby
helpa has quit [Remote host closed the connection]
yokel has quit [Max SendQ exceeded]
Xiti has quit [Max SendQ exceeded]
Xiti has joined #ruby
yokel has joined #ruby
cschneid_ has joined #ruby
cschneid_ has quit [Read error: Connection reset by peer]
helpa has joined #ruby
Scient has joined #ruby
Psy-Q has joined #ruby
reber has joined #ruby
DTZUZO has joined #ruby
cschneid_ has joined #ruby
MoritaShinobu has joined #ruby
cschneid_ has quit [Ping timeout: 264 seconds]
cschneid_ has joined #ruby
Church_ has quit [Ping timeout: 246 seconds]
za1b1tsu has quit [Ping timeout: 252 seconds]
rspades has joined #ruby
rspades has quit [Client Quit]
cschneid_ has quit [Ping timeout: 268 seconds]
elphe has quit [Ping timeout: 245 seconds]
sp3ncer has quit [Quit: Textual IRC Client: www.textualapp.com]
n13z has quit [Ping timeout: 252 seconds]
elphe has joined #ruby
cschneid_ has joined #ruby
za1b1tsu has joined #ruby
ta_ has quit [Remote host closed the connection]
troys has quit [Quit: Bye]
dellavg_ has joined #ruby
sauvin_ is now known as Sauvin
ramfjord has joined #ruby
aupadhye has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
cschneid_ has quit [Ping timeout: 240 seconds]
clemens3 has quit [Ping timeout: 252 seconds]
clemens3 has joined #ruby
za1b1tsu has quit [Ping timeout: 252 seconds]
za1b1tsu has joined #ruby
Francisco has joined #ruby
Fr4n has quit [Read error: Connection reset by peer]
yohji has joined #ruby
vondruch has joined #ruby
phaul has joined #ruby
kapil____ has joined #ruby
aupadhye has quit [Ping timeout: 240 seconds]
mikecmpbll has joined #ruby
cd has quit [Quit: cd]
lxsameer has joined #ruby
schneider has joined #ruby
schneider has quit [Client Quit]
ramfjord has joined #ruby
schneider has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
Blaguvest has joined #ruby
stooj_ has joined #ruby
DTZUZO has quit [Ping timeout: 252 seconds]
stooj has quit [Ping timeout: 252 seconds]
Blaguvest has quit [Ping timeout: 252 seconds]
themsay has quit [Ping timeout: 246 seconds]
BTRE has quit [Remote host closed the connection]
im0nde_ has joined #ruby
BTRE has joined #ruby
ellcs has joined #ruby
ellcs has quit [Ping timeout: 252 seconds]
aufi_ has joined #ruby
Beams has joined #ruby
xfbs has joined #ruby
jkprg has joined #ruby
esrse has quit [Ping timeout: 268 seconds]
kreantos has joined #ruby
im0nde_ has quit [Ping timeout: 245 seconds]
jkprg has quit [Quit: jkprg]
aupadhye has joined #ruby
xfbs has quit [Quit: afk]
asphyxia has joined #ruby
<asphyxia> hey y'all, I have a uni assignment that is asking me to create a method with a parameter of (a). And I have no idea what they mean. Is that a built in ruby thing? so method_name(a) <-- I'm currently thinking they mean a for array?
im0nde_ has joined #ruby
bkxd has quit [Ping timeout: 252 seconds]
DTZUZO has joined #ruby
NL3limin4t0r has quit [Quit: WeeChat 1.9.1]
kapil____ has quit [Quit: Connection closed for inactivity]
ramfjord has joined #ruby
bkxd has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
Puffball has quit [Remote host closed the connection]
AJA4350 has joined #ruby
cschneid_ has joined #ruby
bkxd has quit [Ping timeout: 252 seconds]
bkxd has joined #ruby
Mike111 has joined #ruby
Blaguvest has joined #ruby
<canton7> asphyxia, that just means a method which has a single parameter, called 'a'. It could be an array, or anything else: there's no enough information to say
kreantos has quit [Remote host closed the connection]
cschneid_ has quit [Ping timeout: 246 seconds]
tdy has quit [Read error: Connection reset by peer]
tdy has joined #ruby
donofrio has joined #ruby
Cork has quit [Ping timeout: 246 seconds]
xfbs has joined #ruby
aupadhye has quit [Ping timeout: 244 seconds]
<asphyxia> canton7: ok sweet, ty ^^
<zenspider> working on a emacs mode to color methods based on flog scores... I'm undecided on how to do the score -> shading at this point. Suggestions?
<zenspider> (right now it goes from white through pink all the way up to full red linearly
jinie has quit [Quit: ZNC 1.6.1 - http://znc.in]
aupadhye has joined #ruby
devyn has joined #ruby
phaul has quit [Ping timeout: 252 seconds]
elphe has quit [Ping timeout: 240 seconds]
im0nde_ is now known as im0nde
phaul has joined #ruby
n13z has joined #ruby
cschneid_ has joined #ruby
gnufied has joined #ruby
ramfjord has joined #ruby
elphe has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
devyn has quit [Remote host closed the connection]
roshanavand has joined #ruby
elphe has quit [Ping timeout: 244 seconds]
gnufied has quit [Quit: Leaving]
devyn has joined #ruby
ramfjord has joined #ruby
roshanavand has quit [Quit: leaving]
ramfjord has quit [Ping timeout: 252 seconds]
cschneid_ has quit [Ping timeout: 268 seconds]
Mike111 has quit [Quit: Leaving.]
elphe has joined #ruby
chouhoulis has joined #ruby
im0nde has quit [Ping timeout: 252 seconds]
elphe has quit [Ping timeout: 252 seconds]
bmurt has joined #ruby
aupadhye has quit [Quit: Leaving]
aupadhye has joined #ruby
im0nde has joined #ruby
bkxd has quit [Ping timeout: 244 seconds]
vonfry has joined #ruby
rippa has joined #ruby
leeijaw_mobile has joined #ruby
akem__ has quit [Read error: Connection reset by peer]
fluxAeon has joined #ruby
leeijaw_mobile has quit [Client Quit]
akem has joined #ruby
cschneid_ has joined #ruby
uplime has quit [Ping timeout: 268 seconds]
vonfry has quit [Quit: WeeChat 2.2]
phaul has quit [Ping timeout: 252 seconds]
bkxd has joined #ruby
dmitch has joined #ruby
Cork has joined #ruby
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby
gnufied has joined #ruby
xfbs has quit [Quit: afk]
Rapture has joined #ruby
bkxd has quit [Ping timeout: 252 seconds]
edwardthefma has joined #ruby
<edwardthefma> Hello all
bkxd has joined #ruby
asphyxia has left #ruby [#ruby]
chouhoulis has quit [Remote host closed the connection]
bkxd has quit [Ping timeout: 268 seconds]
chouhoulis has joined #ruby
aufi_ has quit [Ping timeout: 268 seconds]
yohji has quit [Remote host closed the connection]
elphe has joined #ruby
dviola has joined #ruby
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby
SuperL4g is now known as SuperLag
bkxd has joined #ruby
SuperLag_ is now known as SuperL4g
uplime has joined #ruby
cschneid_ has quit [Ping timeout: 244 seconds]
apeiros_ has joined #ruby
fluxAeon has quit [Read error: Connection reset by peer]
fluxAeon has joined #ruby
cschneid_ has joined #ruby
aupadhye has quit [Ping timeout: 268 seconds]
cschneid_ has quit [Remote host closed the connection]
vondruch has left #ruby [#ruby]
sameerynho has joined #ruby
sticaz has joined #ruby
clemens3 has quit [Remote host closed the connection]
rrichardsr3 has joined #ruby
xfbs has joined #ruby
Cork has quit [Ping timeout: 268 seconds]
APK is now known as AKPWD
MoritaShinobu has quit [Quit: Leaving]
aufi_ has joined #ruby
orbyt_ has joined #ruby
aeze has joined #ruby
phaul has joined #ruby
<edwardthefma> Yawn
duderonomy has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has quit [Client Quit]
<Eiam> edwardthefma: hello
vondruch has joined #ruby
<edwardthefma> :)
spiette has quit [Read error: Connection reset by peer]
spiette has joined #ruby
emerson has quit [Quit: WeeChat 2.2]
Yxhuvud has joined #ruby
emerson has joined #ruby
lxsameer has quit [Ping timeout: 268 seconds]
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
DTZUZO has quit [Ping timeout: 252 seconds]
fredlinhares has joined #ruby
duderonomy has joined #ruby
za1b1tsu has quit [Ping timeout: 240 seconds]
orbyt_ has joined #ruby
duderonomy has quit [Client Quit]
duderonomy has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
fredlinhares has quit [Quit: WeeChat 1.4]
<edwardthefma> Its always so quiet hear
<edwardthefma> Other than people joining and leaving
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<apeiros_> edwardthefma: it's friday
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<havenwood> edwardthefma It gets active when someone has a Ruby question.
cthulchu_ has joined #ruby
apeiros has joined #ruby
<havenwood> edwardthefma: In the meantime, here's a little wrapper around TupleSpace - Ruby's lesser-used, thread-safe data structure: https://gist.github.com/havenwood/08e859ddd53c84be6c56
duderonomy has joined #ruby
<apeiros_> woot, two apeiros!
<apeiros> wooot, two apeiros!
apeiros_ has quit []
<apeiros> well, it was nice while it lasted.
akem has quit [Remote host closed the connection]
akem has joined #ruby
wildermind has joined #ruby
<edwardthefma> :)
duderonomy has quit [Client Quit]
cd has joined #ruby
darkhanb has joined #ruby
Cork has joined #ruby
dinfuehr has quit [Ping timeout: 268 seconds]
dinfuehr has joined #ruby
Beams has quit [Quit: .]
spiette has quit [Remote host closed the connection]
spiette has joined #ruby
hogetaro has quit [Quit: Leaving...]
knight33 has joined #ruby
orbyt_ has joined #ruby
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
tdy has quit [Ping timeout: 252 seconds]
Rapture has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Nicmavr has quit [Read error: Connection reset by peer]
orbyt_ has joined #ruby
Nicmavr has joined #ruby
rrichardsr3 has quit [Quit: He who dares .... wins.]
orbyt_ has quit [Client Quit]
mikecmpbll has joined #ruby
spiette has quit [Remote host closed the connection]
dbz has joined #ruby
dbz has quit [Remote host closed the connection]
spiette has joined #ruby
dbz has joined #ruby
dbz has quit [Remote host closed the connection]
dbz has joined #ruby
dbz has quit [Remote host closed the connection]
elphe has quit [Ping timeout: 252 seconds]
DTZUZO has joined #ruby
dbz has joined #ruby
ramfjord has joined #ruby
DTZUZO has quit [Ping timeout: 252 seconds]
za1b1tsu has joined #ruby
savolla has joined #ruby
bkxd has quit [Ping timeout: 260 seconds]
BloodyMary has joined #ruby
pr0ton has joined #ruby
DTZUZO has joined #ruby
Cork has quit [Ping timeout: 252 seconds]
Francisco has quit [Ping timeout: 252 seconds]
DTZUZO has quit [Ping timeout: 244 seconds]
DTZUZO has joined #ruby
duderonomy has joined #ruby
Cork has joined #ruby
xfbs has quit [Quit: afk]
za1b1tsu has quit [Ping timeout: 268 seconds]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
BloodyMary has quit [Quit: BloodyMary]
Emmanuel_Chanel has quit [Read error: Connection reset by peer]
duderonomy has quit [Client Quit]
dbz_ has joined #ruby
Emmanuel_Chanel has joined #ruby
dbz has quit [Ping timeout: 252 seconds]
bkxd has joined #ruby
duderonomy has joined #ruby
DTZUZO_ has joined #ruby
duderonomy has quit [Client Quit]
DTZUZO has quit [Ping timeout: 252 seconds]
chouhoulis has quit [Ping timeout: 244 seconds]
DTZUZO_ has quit [Read error: Connection reset by peer]
DTZUZO_ has joined #ruby
xfbs has joined #ruby
Fr4n has joined #ruby
dbz_ has quit [Remote host closed the connection]
dbz has joined #ruby
pr0ton has quit [Quit: pr0ton]
dbz has quit [Ping timeout: 264 seconds]
phaul has quit [Ping timeout: 272 seconds]
savolla has quit [Remote host closed the connection]
dviola has quit [Quit: WeeChat 2.2]
postmodern has joined #ruby
conta1 has joined #ruby
AJA4351 has joined #ruby
AJA4350 has quit [Ping timeout: 252 seconds]
AJA4351 is now known as AJA4350
fluxAeon has quit [Ping timeout: 252 seconds]
apeiros has quit []
AJA4350 has quit [Ping timeout: 245 seconds]
AJA4350 has joined #ruby
aufi_ has quit [Ping timeout: 252 seconds]
graphene has joined #ruby
duderonomy has joined #ruby
duderonomy has quit [Client Quit]
phaul has joined #ruby
DTZUZO_ has quit [Quit: WeeChat 2.0]
DTZUZO has joined #ruby
conta1 has quit [Remote host closed the connection]
apeiros_ has joined #ruby
unCork has joined #ruby
Cork has quit [Ping timeout: 246 seconds]
unCork is now known as Cork
SeepingN has joined #ruby
rserkov has joined #ruby
samort7 has joined #ruby
aleph- has joined #ruby
dbz has joined #ruby
dbz has quit [Remote host closed the connection]
dbz has joined #ruby
apeiros_ has quit []
ivanskie has joined #ruby
mikecmpbll has quit [Quit: inabit.]
kinduff has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kinduff has quit [Client Quit]
al2o3-cr has joined #ruby
dbz_ has joined #ruby
BloodyMary has joined #ruby
rserkov has quit [Ping timeout: 246 seconds]
dbz has quit [Ping timeout: 244 seconds]
graphene has quit [Remote host closed the connection]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
graphene has joined #ruby
uplime has quit [Ping timeout: 246 seconds]
chouhoulis has joined #ruby
chouhoulis has quit [Remote host closed the connection]
pr0ton has joined #ruby
uplime has joined #ruby
c0ncealed3 has quit [Read error: Connection reset by peer]
c0ncealed3 has joined #ruby
tdy has joined #ruby
im0nde has quit [Quit: im0nde]
tdy has quit [Ping timeout: 268 seconds]
ivanskie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
schneider has quit [Ping timeout: 252 seconds]
DTZUZO has quit [Ping timeout: 268 seconds]
dellavg_ has quit [Ping timeout: 268 seconds]
schneider has joined #ruby
BloodyMary has quit [Ping timeout: 252 seconds]
c0ncealed3 has quit [Read error: Connection reset by peer]
SeepingN has quit [Disconnected by services]
SeepingN_ has joined #ruby
c0ncealed3 has joined #ruby
schneider has quit [Ping timeout: 252 seconds]
apeiros_ has joined #ruby
BTRE has quit [Ping timeout: 245 seconds]
schneider has joined #ruby
dbz_ has quit [Remote host closed the connection]
dbz has joined #ruby
<baweaver> 404 users not found :D
baweaver is now known as lemur
<lemur> Aw, ruined it
ShekharReddy has joined #ruby
dbz has quit [Remote host closed the connection]
<apeiros_> lemur: I'm back :)
dbz has joined #ruby
<apeiros_> sorry, had to run a couple of target disk mode experiments
dbz has quit [Remote host closed the connection]
<lemur> not a problem
<apeiros_> and I gotta say, target mode is terrible on the 2018 models. ~330MB/s max.
apeiros_ is now known as apeiros
<apeiros> (connected two 2018 models and copied a 250GB file)
<lemur> I'm on both of my computers
<lemur> one is on baweaver
<lemur> as far as meta klass?
<lemur> Lazy googling
dbz has joined #ruby
schneider has quit [Ping timeout: 252 seconds]
<apeiros> :D
SCHAPiE has quit [Quit: ZNC - https://znc.in]
<apeiros> but nice article 👍🏻
xfbs has quit [Quit: afk]
schneider has joined #ruby
SCHAPiE has joined #ruby
ivanskie has joined #ruby
anothertorusr has joined #ruby
<lemur> It was a fun little jaunt
dbz has quit [Remote host closed the connection]
<lemur> Likely going to use it for destructuring in Qo later.
<lemur> Just not sure how to make it look nice
<apeiros> btw., why do you do the strict check and not just destructure kwargs?
<apeiros> I mean we could have `foo(1,2,destructure_only_this)`
<apeiros> with `def foo(a,b,c:,d:,e:)`
schneider has quit [Ping timeout: 272 seconds]
<zenspider> havenwood: maaaannn... I love rinda
<zenspider> I really need more reasons to use it
<zenspider> >> 1 + 2
<apeiros> isn't rinda part of drb?
<apeiros> rings a bell at least
<zenspider> built on top of it, yeah
<zenspider> apeiros: bot still brokey?
<apeiros> just wanted to check the logs. but new macbook, so my keychain is in disarray… :-S
<zenspider> hah. ouch.
<zenspider> that said... I've probably carried this ssh key a tad too far.
<apeiros> since when is the verify step when mounting a disk image mandatory? is that a mojave thing? o0
schneider has joined #ruby
<zenspider> if the image is signed, I believe
<zenspider> oh. you mean there is no "skip" button? that seems new
<apeiros> yeah, that
<zenspider> I'm holding off on mojave for a while... until at least .1
<apeiros> wanted to do that too. but new laptop. thought maybe it fixes my stupid target disk mode issues.
<apeiros> (it doesn't)
pr0ton has quit [Quit: pr0ton]
gnufied has quit [Remote host closed the connection]
BTRE has joined #ruby
<apeiros> huh? now there's a skip button. weird.
cthu| has joined #ruby
schneider has quit [Ping timeout: 244 seconds]
<apeiros> I still can't get used to journalctl
<apeiros> >> 1+2
cthulchu_ has quit [Ping timeout: 252 seconds]
ruby[bot] has joined #ruby
<apeiros> >> 1+2
<ruby[bot]> apeiros: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
graphene has quit [Remote host closed the connection]
<zenspider> haha. oh no
<apeiros> ah yeah, eval.in still broken. but don't know why it failed to recognize it as a command before. that's new and weird.
<apeiros> because it did see the message.
graphene has joined #ruby
<apeiros> well, my 3 month work timeout is soon-ish. will devote a few days for bot & website updates.
schneider has joined #ruby
tdy has joined #ruby
schneider has quit [Ping timeout: 252 seconds]
schneider has joined #ruby
schneider has quit [Ping timeout: 268 seconds]
schneider has joined #ruby
schneider has quit [Ping timeout: 246 seconds]
schneider has joined #ruby
reber has quit [Remote host closed the connection]
schneider has quit [Ping timeout: 244 seconds]
VeryBewitching has joined #ruby
apeiros has quit [Remote host closed the connection]
schneider has joined #ruby
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
elphe has joined #ruby
schneider has quit [Ping timeout: 245 seconds]
mroutis has joined #ruby
schneider has joined #ruby
StuckMojo has joined #ruby
schneider has quit [Ping timeout: 252 seconds]
<StuckMojo> hi. i've got a rakefile that's causing rake to bail immediately with "Don't know how to build task 'coverage'" and the only mention of "coverage" in it is: Rake::Task[:coverage].clear along with a comment about rcov not working. am i reading that right (zero ruby experince) as being a line that's supposed to *remove* the coverage task?
<StuckMojo> this is in a custom puppet module btw, if that matters at all
schneider has joined #ruby
bkxd has quit [Ping timeout: 245 seconds]
schneider has quit [Ping timeout: 244 seconds]
agent_white has joined #ruby
schneider has joined #ruby
mroutis has quit [Remote host closed the connection]
dr3w_ has joined #ruby
schneider has quit [Ping timeout: 272 seconds]
schneider has joined #ruby
schneider has quit [Ping timeout: 252 seconds]
<StuckMojo> nevermind, it was the version or rspec
<StuckMojo> s/or/of/
StuckMojo has left #ruby [#ruby]
nertzy has joined #ruby
apeiros has joined #ruby
ta_ has joined #ruby
schneider has joined #ruby
bkxd has joined #ruby
ta_ has quit [Ping timeout: 272 seconds]
aleph- has quit [Ping timeout: 252 seconds]
schneider has quit [Ping timeout: 268 seconds]
nertzy has quit [Quit: This computer has gone to sleep]
apeiros has quit [Ping timeout: 272 seconds]
schneider has joined #ruby
Blaguvest has quit [Remote host closed the connection]
schneider has quit [Ping timeout: 272 seconds]
schneider has joined #ruby
knight33 has quit [Quit: Textual IRC Client: www.textualapp.com]
uplime has quit [Ping timeout: 252 seconds]
ShekharReddy has quit [Quit: Connection closed for inactivity]
schneider has quit [Ping timeout: 245 seconds]
schneider has joined #ruby
sameerynho has quit [Ping timeout: 252 seconds]
schneider has quit [Ping timeout: 245 seconds]
phaul has quit [Quit: WeeChat 2.2]
DTZUZO has joined #ruby
AJA4350 has quit [Quit: AJA4350]
schneider has joined #ruby
ta_ has joined #ruby
ua has quit [Ping timeout: 268 seconds]
ivanskie has quit [Quit: Textual IRC Client: www.textualapp.com]
schneider has quit [Ping timeout: 245 seconds]
schneider has joined #ruby
schneider has quit [Ping timeout: 252 seconds]
schneider has joined #ruby