havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.7.0, 2.6.5, 2.5.7: 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!
fphilipe has joined #ruby
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #ruby
fphilipe has quit [Ping timeout: 246 seconds]
tsrt^ has joined #ruby
nibbo_ has quit [Ping timeout: 250 seconds]
segy has quit [Ping timeout: 265 seconds]
segy has joined #ruby
ElFerna has quit [Quit: ElFerna]
ElFerna has joined #ruby
ur5us has quit [Ping timeout: 260 seconds]
reyfi9e has joined #ruby
turbo_choo has quit [Ping timeout: 240 seconds]
reyfi9e has left #ruby [#ruby]
stryek has quit [Quit: Connection closed for inactivity]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ur5us has joined #ruby
davidw has quit [Ping timeout: 268 seconds]
phaul_ has joined #ruby
axsuul has quit [Ping timeout: 250 seconds]
phaul_ has quit [Ping timeout: 260 seconds]
axsuul has joined #ruby
phaul_ has joined #ruby
Nicolab has quit [Quit: Leaving.]
davidw has joined #ruby
phaul_ has quit [Ping timeout: 265 seconds]
ElFerna has quit [Quit: ElFerna]
phaul_ has joined #ruby
nibbo has joined #ruby
phaul_ has quit [Ping timeout: 268 seconds]
phaul_ has joined #ruby
davidw has quit [Read error: Connection reset by peer]
davidw has joined #ruby
davidw has quit [Changing host]
davidw has joined #ruby
phaul_ has quit [Ping timeout: 265 seconds]
phaul_ has joined #ruby
turbo_choo has joined #ruby
phaul_ has quit [Ping timeout: 260 seconds]
phaul_ has joined #ruby
turbo_choo has quit [Ping timeout: 268 seconds]
davidw has quit [Ping timeout: 265 seconds]
turbo_choo has joined #ruby
dkmueller has quit [Quit: WeeChat 2.7]
phaul_ has quit [Ping timeout: 268 seconds]
baxterpowers has joined #ruby
ElFerna has joined #ruby
bvdw has quit [Quit: bvdw]
phaul_ has joined #ruby
Ai9zO5AP has joined #ruby
ElFerna has quit [Client Quit]
i9zO5AP has quit [Ping timeout: 258 seconds]
phaul_ has quit [Ping timeout: 265 seconds]
phaul_ has joined #ruby
bvdw has joined #ruby
phaul_ has quit [Ping timeout: 265 seconds]
phaul_ has joined #ruby
_vircung_ has joined #ruby
vircung has quit [Ping timeout: 260 seconds]
ElFerna has joined #ruby
phaul_ has quit [Ping timeout: 268 seconds]
ElFerna has quit [Ping timeout: 258 seconds]
phaul_ has joined #ruby
wildtrees has quit [Quit: Leaving]
phaul_ has quit [Ping timeout: 258 seconds]
phaul_ has joined #ruby
postmodern has quit [Quit: Leaving]
orbyt_ has joined #ruby
phaul_ has quit [Ping timeout: 258 seconds]
ElFerna has joined #ruby
phaul_ has joined #ruby
poontangmessiah has quit [Quit: WeeChat 2.7]
nofxx has joined #ruby
phaul_ has quit [Ping timeout: 265 seconds]
ajsharma has joined #ruby
markopasha has quit [Remote host closed the connection]
ElFerna has quit [Read error: Connection reset by peer]
ElFerna has joined #ruby
phaul_ has joined #ruby
Esa_ has quit [Ping timeout: 265 seconds]
lxsameer has quit [Ping timeout: 258 seconds]
phaul_ has quit [Ping timeout: 258 seconds]
fphilipe has joined #ruby
fphilipe has quit [Ping timeout: 260 seconds]
phaul_ has joined #ruby
gix- has joined #ruby
gix has quit [Disconnected by services]
ElFerna has quit [Quit: ElFerna]
phaul_ has quit [Ping timeout: 258 seconds]
freedom has quit [Ping timeout: 268 seconds]
phaul_ has joined #ruby
phaul_ has quit [Ping timeout: 268 seconds]
phaul_ has joined #ruby
phaul_ has quit [Ping timeout: 240 seconds]
AJA4350 has quit [Quit: AJA4350]
phaul_ has joined #ruby
greypack has quit [Read error: Connection reset by peer]
greypack has joined #ruby
guzzlefry has quit [Quit: ZNC - http://znc.in]
guzzlefry has joined #ruby
guzzlefry has quit [Changing host]
guzzlefry has joined #ruby
<teardown> does ruby have some class methods to get a filesystem as a hash?
phaul_ has quit [Ping timeout: 265 seconds]
Technodrome has joined #ruby
phaul_ has joined #ruby
FrankyCyborg has joined #ruby
cthulchu_ has joined #ruby
phaul_ has quit [Ping timeout: 258 seconds]
aces1up has joined #ruby
<aces1up> hey all not much action on rubyonrails channel need some help with this bit of active record query code
<aces1up> any help appreciated.
phaul_ has joined #ruby
houhoulis has joined #ruby
<havenwood> teardown: you want to hash the content and location of every file?
<teardown> havenwood: no, i want to represent a filesystem heirarchy as a nested hash
phaul_ has quit [Ping timeout: 258 seconds]
phaul_ has joined #ruby
Mia has quit [Read error: Connection reset by peer]
poontangmessiah has joined #ruby
gigetoo has quit [Ping timeout: 265 seconds]
ajsharma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
phaul_ has quit [Ping timeout: 258 seconds]
ajsharma has joined #ruby
<uplime> you mean like { "/" => [ "usr", "bin" => [ "echo" ], "tmp" ] }
<uplime> ?
phaul_ has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jmcgnh has quit [Read error: Connection reset by peer]
phaul_ has quit [Ping timeout: 260 seconds]
<teardown> uplime: yeah
<uplime> not that i know of, but it should be pretty easy to hack up
<teardown> yeah im willing to hack it up but didnt want to do something ugly if there was a common class for it
<teardown> thank you uplime and havenwood
phaul_ has joined #ruby
<havenwood> teardown: You could do it with Find in the stdlib: https://docs.ruby-lang.org/en/2.7.0/Find.html
jmcgnh has joined #ruby
gigetoo has joined #ruby
<teardown> havenwood: ty. looking into that now
itarato has joined #ruby
<havenwood> aces1up: I'm rusty, but would that be?: campaigns.where('emails.sent = true').limit(25)
<aces1up> haven i can try it but i do not think so.
poontangmessiah_ has joined #ruby
<havenwood> aces1up: Or?: campaigns.where(emails: {sent: true}).limit(25)
<havenwood> aces1up: Happy to look it up if one of those don't work. bbiab
gix has joined #ruby
poontangmessiah has quit [Ping timeout: 260 seconds]
gix- has quit [Ping timeout: 268 seconds]
ajsharma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
phaul_ has quit [Ping timeout: 258 seconds]
ajsharma has joined #ruby
ajsharma has quit [Client Quit]
cd has quit [Quit: cd]
phaul_ has joined #ruby
gnufr33dom has joined #ruby
fphilipe has joined #ruby
phaul_ has quit [Ping timeout: 240 seconds]
fphilipe has quit [Ping timeout: 252 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<havenwood> aces1up: Back. Curious why you think that looks wrong? Any luck?
ur5us has quit [Ping timeout: 260 seconds]
Ai9zO5AP has quit [Ping timeout: 260 seconds]
akemhp has quit [Ping timeout: 240 seconds]
Ai9zO5AP has joined #ruby
gnufr33dom has quit [Quit: gnufr33dom]
davispuh has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
orbyt_ has joined #ruby
cthulchu_ has quit [Ping timeout: 258 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
akemhp has joined #ruby
CalimeroTeknik has quit [Quit: バイバイ]
CalimeroTeknik has joined #ruby
itarato has quit [Ping timeout: 268 seconds]
CalimeroTeknik has quit [Quit: バイバイ]
gix has quit [Ping timeout: 268 seconds]
CalimeroTeknik has joined #ruby
_whitelogger has joined #ruby
tsrt^ has quit []
cthulchu_ has joined #ruby
fphilipe has joined #ruby
cthulchu_ has quit [Ping timeout: 268 seconds]
uplime is now known as uptime
aces1up has quit [Remote host closed the connection]
sauvin has joined #ruby
houhoulis has quit [Remote host closed the connection]
sergioro has joined #ruby
ur5us has joined #ruby
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
ur5us has quit [Ping timeout: 260 seconds]
infinityfye has joined #ruby
Mrgoose845701915 has quit [Ping timeout: 240 seconds]
duderonomy has joined #ruby
duderono_ has joined #ruby
duderonomy has quit [Ping timeout: 258 seconds]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #ruby
poontangmessiah_ has quit [Remote host closed the connection]
poontangmessiah has joined #ruby
Swyper has quit [Remote host closed the connection]
schne1der has joined #ruby
poontangmessiah has quit [Quit: WeeChat 2.7]
phaul_ has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
gix has joined #ruby
skx86 has quit [Quit: Connection closed for inactivity]
reber has joined #ruby
reber_ has joined #ruby
conta has joined #ruby
reber_ has quit [Remote host closed the connection]
TCZ has joined #ruby
sphex has quit [Ping timeout: 260 seconds]
sphex has joined #ruby
nowhere_man has quit [Ping timeout: 252 seconds]
lineus has quit [Ping timeout: 240 seconds]
rubydoc has quit [Remote host closed the connection]
rubydoc has joined #ruby
TCZ has quit [Quit: Bye Bye]
TCZ has joined #ruby
orbyt_ has joined #ruby
Swyper has joined #ruby
Swyper has quit [Ping timeout: 258 seconds]
lxsameer has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
GodFather has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
tsujp has joined #ruby
_whitelogger has joined #ruby
voker57 has quit [Quit: voker57]
rippa has joined #ruby
chalkmonster has joined #ruby
phaul_ has quit [Ping timeout: 265 seconds]
phaul_ has joined #ruby
ElFerna has joined #ruby
solars has joined #ruby
ElFerna has quit [Client Quit]
alex`` has joined #ruby
alexherbo2 has joined #ruby
turbo_choo has quit [Ping timeout: 268 seconds]
conta has quit [Quit: conta]
TCZ has quit [Quit: Bye Bye]
tsujp has quit [Quit: Textual IRC Client: www.textualapp.com]
rubydoc has quit [Ping timeout: 258 seconds]
rubydoc has joined #ruby
finmuffin has quit [Read error: Connection reset by peer]
phaul_ has quit [Ping timeout: 268 seconds]
phaul_ has joined #ruby
phaul_ is now known as phaul
fphilipe has quit [Ping timeout: 248 seconds]
turbo_choo has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.7]
lineus has joined #ruby
fphilipe has joined #ruby
ElFerna has joined #ruby
AJA4350 has joined #ruby
ElFerna has quit [Quit: ElFerna]
_whitelogger has joined #ruby
fphilipe has quit [Ping timeout: 246 seconds]
alexherbo2 has quit [Ping timeout: 258 seconds]
turbo_choo has quit [Ping timeout: 260 seconds]
alexherbo2 has joined #ruby
alex`` has quit [Ping timeout: 258 seconds]
alex`` has joined #ruby
turbo_choo has joined #ruby
turbo_choo has quit [Max SendQ exceeded]
wickedbloodfart has joined #ruby
turbo_choo has joined #ruby
ElFerna has quit [Ping timeout: 260 seconds]
ElFerna_ has joined #ruby
ElFerna_ is now known as ElFerna
<al2o3-cr> &>> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<al2o3-cr> >> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<ruby[bot]> al2o3-cr: # => "10 hours, 51 minutes and 47 seconds to go." (https://eval.in/1124406)
<rubydoc> # => "10 hours, 48 minutes and 29 seconds to go." (https://carc.in/#/r/8bes)
<al2o3-cr> new year, new beginning! ;)
<al2o3-cr> and it's the year of the rat, which is me ;)
alexherbo21 has joined #ruby
alex`` has quit [Ping timeout: 268 seconds]
alexherbo2 has quit [Ping timeout: 258 seconds]
alexherbo21 is now known as alexherbo2
alex`` has joined #ruby
ElFerna has quit [Read error: Connection reset by peer]
ElFerna has joined #ruby
bsdband35 has joined #ruby
ElFerna has quit [Read error: Connection reset by peer]
ElFerna has joined #ruby
ElFerna_ has joined #ruby
bsdbandit-01 has quit [Ping timeout: 268 seconds]
ElFerna_ has quit [Client Quit]
ElFerna has quit [Ping timeout: 260 seconds]
ElFerna has joined #ruby
ElFerna has quit [Quit: ElFerna]
ElFerna has joined #ruby
dkmueller has joined #ruby
ElFerna has quit [Client Quit]
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #ruby
FrankyCyborg has quit [Ping timeout: 240 seconds]
fphilipe has joined #ruby
ElFerna has joined #ruby
davispuh has joined #ruby
cd has joined #ruby
skx86 has joined #ruby
rubyguy_ has quit [Ping timeout: 265 seconds]
yann-kaelig has joined #ruby
ellcs has joined #ruby
itarato has joined #ruby
fphilipe has quit [Ping timeout: 246 seconds]
ElFerna has quit [Quit: ElFerna]
romanblanco has quit [Ping timeout: 258 seconds]
davispuhh has joined #ruby
davispuh has quit [Ping timeout: 268 seconds]
ElFerna has joined #ruby
phaul has quit [Ping timeout: 260 seconds]
uptime is now known as uplime
suukim has joined #ruby
fphilipe has joined #ruby
bsdbandit-01 has joined #ruby
bsdband35 has quit [Ping timeout: 268 seconds]
fphilipe has quit [Ping timeout: 245 seconds]
phaul has joined #ruby
Technodrome has joined #ruby
infinityfye has quit [Quit: Leaving]
mstorms has joined #ruby
ElFerna has quit [Ping timeout: 260 seconds]
Swyper has joined #ruby
ellcs has quit [Remote host closed the connection]
fphilipe has joined #ruby
mstorms has quit [Quit: WeeChat 2.7]
ellcs has joined #ruby
itarato has quit [Ping timeout: 260 seconds]
orbyt_ has joined #ruby
phaul has quit [Ping timeout: 265 seconds]
bambanx has joined #ruby
Emmanuel_Chanel has quit [Ping timeout: 268 seconds]
ElFerna has joined #ruby
bsdband8 has joined #ruby
Emmanuel_Chanel has joined #ruby
ElFerna has quit [Client Quit]
bsdbandit-01 has quit [Ping timeout: 260 seconds]
fphilipe has quit [Ping timeout: 248 seconds]
bsdband8 has quit [Ping timeout: 260 seconds]
phaul has joined #ruby
Swyper has quit [Remote host closed the connection]
yann-kaelig has quit [Quit: yann-kaelig]
akemhp_ has joined #ruby
bsdbandit-01 has joined #ruby
chalkmonster has joined #ruby
akemhp has quit [Ping timeout: 260 seconds]
akemhp_ has quit [Ping timeout: 240 seconds]
davidw has joined #ruby
davidw has joined #ruby
Swyper has joined #ruby
skryking has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
akemhp has joined #ruby
paraxial has quit [Quit: The Lounge - https://thelounge.chat]
paraxial has joined #ruby
paraxial has quit [Client Quit]
paraxial has joined #ruby
ellcs has quit [Ping timeout: 248 seconds]
g3funk has joined #ruby
bsdbandit-01 has quit [Quit: -a- Connection Timed Out]
bsdbandit-01 has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<al2o3-cr> christmas is coming late for me :(
fphilipe has joined #ruby
lalitmee has joined #ruby
bambanx has quit [Quit: Leaving]
fphilipe has quit [Ping timeout: 248 seconds]
fphilipe has joined #ruby
Swyper has quit [Remote host closed the connection]
fphilipe has quit [Ping timeout: 248 seconds]
chalkmonster has quit [Quit: WeeChat 2.7]
itarato has joined #ruby
dkmueller has quit [Quit: WeeChat 2.7]
reber_ has joined #ruby
reber has quit [Ping timeout: 260 seconds]
schne1der has quit [Ping timeout: 265 seconds]
suukim has quit [Ping timeout: 268 seconds]
skryking has quit [Quit: WeeChat 1.9.1]
skryking has joined #ruby
reber_ has quit [Ping timeout: 258 seconds]
cthulchu_ has joined #ruby
lalitmee has quit [Quit: Leaving]
william1 has joined #ruby
spacesuitdiver has joined #ruby
fphilipe has joined #ruby
bsdbandit-01 has quit [Ping timeout: 265 seconds]
<adam12> al2o3-cr: uh oh
<baxterpowers> what is the proper nomenclature for the syntax like <<END ... END
<al2o3-cr> baxterpowers: heredoc
<al2o3-cr> adam12: yeah, ruby 2.7 still isn't in the repos :(
<baxterpowers> thanks old sport
<al2o3-cr> baxterpowers: yw young one ;)
<baxterpowers> and yeah its not. just installed a kali vm yesterday and found this out
<baxterpowers> think it only had 2.5.7 in the repos
<al2o3-cr> baxterpowers: debian will never be a rolling release
bsdband32 has joined #ruby
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<adam12> al2o3-cr: I mostly gave up with distro packaged Ruby. Similar to FreeBSD, it's .. meh.
<al2o3-cr> adam12: yep, next setup will be just ruby-install + chruby for definite.
spacesuitdiver has joined #ruby
<adam12> al2o3-cr: FreeBSD definitely tracks later releases of Ruby. I'm pretty sure CentOS 7 is still on Ruby 2.0 :O The rest being a part of the SCL.
<adam12> I kind of wish Ruby had something akin to Nodejs where you can download pre-built tarballs. I think RVM has something similar but it would be nice to see as part of Ruby core.
itarato has quit [Ping timeout: 260 seconds]
<al2o3-cr> using arch linux here, it might be a few days or so before it's out of testing, but it'll get there.
<al2o3-cr> always seems to take a long time with the ruby binary.
spacesuitdiver has quit [Client Quit]
<adam12> ie. (fetch -O - ruby-lang.org/releases/ruby-2.7.0-linux_x86_64.tgz | tar -xvf --strip-components=1 -) && ./ruby -v
<adam12> al2o3-cr: That's not bad.
<adam12> For development, I've completely gone the old way. fetch / extract / configure / make / make install. Then usually using direnv to PATH_add ~/.rubies/ruby-version. No version manager.
<al2o3-cr> adam12: yep, simple and sweet.
<al2o3-cr> it's got to be done sometimes.
<adam12> Sometimes I need to run a specific gem binstub for a version (ie. referral requires minimum 2.6? I think), so I use a simple 'ruby-exec' shim. https://gist.github.com/fd8d5873167400deee8af9e27be4dc90
<al2o3-cr> adam12: just make sure your using all the horsepowers when compiling.
<adam12> al2o3-cr: Hah! I actually was just about to use -j numproc a few days ago.
<adam12> al2o3-cr: I'm pretty sure it's broken when using gcc on freebsd.
<adam12> s/about/able
spacesuitdiver has joined #ruby
<adam12> Building Ruby seems to prefer GCC and I had yanked all GCC deps a few days ago, and compiling native extensions uses the compiler the Ruby was built with, which meant everything broke. Rip out all gcc, rip out all Ruby, recompile Ruby + gems again.
<al2o3-cr> oh dear :(
<al2o3-cr> what version is freebsd on now?
<al2o3-cr> i remember trying it in VM
<adam12> FreeBSD or Ruby packaged with FreeBSD?
<al2o3-cr> freebsd itself.
<adam12> 12.1 is the latest release.
<adam12> It's quite enjoyable. I hadn't touched it in 20 years but started using it on a regular basis almost 2 years ago. Not sure I could switch back to Linux again.. except maybe t oVoid.
<al2o3-cr> adam12: you little red devil you ;)
<adam12> al2o3-cr: Hah. I got tired trying to remember how to configure network devices. Is it /etc/network/interfaces? no, it's netplan. No it's rc files managed by NetworkManager... wrongo. It's networkd.
<al2o3-cr> personally, arch linux is solid
<al2o3-cr> adam12: iwd
<al2o3-cr> is the new wpa_supplicant
<adam12> Fun.
<al2o3-cr> early stages though yet.
<william1> what hardware do you run arch on al203-cr
<william1> what hardware do you run arch on al2o3-cr
<adam12> I run Windows as a desktop O_O And then run VcxSrv + SSH to a FreeBSD VM running in HyperV, which loads the suckless terminal. It's strange... but I mess with it very little.
<al2o3-cr> william1: t460 at the minute, until i put an ssd in the t490s.
<al2o3-cr> adam12: networkmanager is good.
<lupine> debian innit
<al2o3-cr> it has cli, gui, tui ;)
<al2o3-cr> lupine: first started out on debian
<lupine> no need for anything else
<william1> i'm on ubuntu xps 13
<lupine> all the other distros should just fold into it
<william1> loved debian in the past
<al2o3-cr> lupine: it's a solid distro.
<william1> definitely
<william1> was on xfce
<al2o3-cr> william1: thing with arch is, you start from the foundations upwards ;)
<al2o3-cr> make it whatever you desire.
<william1> so i've heard
<al2o3-cr> lupine: i've still got love for debian :)
<william1> not sure how much of an undertaking that is
houhoulis has joined #ruby
fphilipe has quit [Ping timeout: 245 seconds]
<al2o3-cr> william1: depends what you want.
<adam12> al2o3-cr: How's the 460 compare to the 490s? I use an x230 :O
<havenwood> adam12: Fullstaq Ruby is the closest I've seen to that, apart from RVM and Travis efforts. I gave up compiling the static macOS binaries for RVM since it was such a pain. Someone should start doing that again. So. Many. Builds.
<adam12> havenwood: I wonder if they'd be open (and if it's possible .. not sure what nodejs bin is linked to) to just have tarballs.
<adam12> havenwood: s/just have/have also/
<havenwood> adam12: The difference for Ruby to make it portable is using static rather than dynamic links when you compile.
g3funk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<havenwood> adam12: RVM/Travis/Fullstaq binaries are statically linked.
<adam12> havenwood: Interesting! I didn't know they were statically linked.
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<havenwood> adam12: But as Traveling Ruby notes, "You can't just add -static as compiler flag and expect everything to work."
<adam12> havenwood: I wonder if they are linking against musl? glibc has some weird edgecases around static linking and network stuff.
<havenwood> adam12: Or some half measure, where you carefully dynamically link against libc but statically link against openssl and friends.
<havenwood> adam12: I didn't find it "fun" to do the macOS ones, but I kinda feel guilty for stopping every time I see RVM not have a macOS precompiled binary.
<havenwood> I ran into a an issue I couldn't sort out by myself and stopped doing it a few years back.
Swyper has joined #ruby
<havenwood> raelgc maintains the Ubuntu static binaries
<al2o3-cr> adam12: t460 is has an i5 6300u, 12gb ram 256gb sata ssd which runs hella fine for linux. my t490s is a i7 8665u, 32bg ram 512gb toshiba nvme ssd (later upgrading to samsung evo plus 1tb) runs windows like lightning so i can't wait to put arch on it ;) but the ultimate one i end up using is my x270 i7 7600u 16gb 512gb evo zippy little thing (12.5 inch screen) that is the one i love most ;)
Swyper has quit [Remote host closed the connection]
<adam12> I wonder how the buildpack/heroku folks do it. They control the distro base (cedar, whatever) so presumably they can just compile to /opt in the base and package it up, dynamically linked.
<adam12> al2o3-cr: Do you find build quality changed? I'm tempted to buy a new one but the 230 is a workhourse, sans the tiny screen :) In reality tho, if a new 13 Macbook pro drops with the good keyboard I might just switch back to Mac.
<william1> so many laptops al2o3-cr
<william1> what do you think of macbooks?
<william1> i've used one for years and was fed up of the lack of escape key
spacesuitdiver has joined #ruby
<william1> so moved to dell
<william1> main experience lacking on this hardware is the trackpad and speakers
<william1> network hardware seems to perform better than my work macbook 13
<william1> and ubuntu is an overall better experience imo
<william1> once my muscle memory changed
Swyper has joined #ruby
<al2o3-cr> adam12: the build quality of t490s is second to none, magnesium alloy base and lightweight and upto now stands solid with my x270 (that thing is a beast). keyboard is better on the t490s. the only thing lenovo are getting wrong is upgradablity options, everything is soldered down :(
spacesuitdiver has quit [Client Quit]
<al2o3-cr> even internal batteries since x280/t480
<al2o3-cr> so no hot-swapping
g3funk has joined #ruby
<al2o3-cr> that t490s i just got is rapid though, even though it's 8th gen cpu
<william1> how you benchmarking? just feels?
<al2o3-cr> william1: no benchmarking
<al2o3-cr> i gotta feeling (black eyed peas) :)
spacesuitdiver has joined #ruby
vondruch has quit [Quit: vondruch]
spacesuitdiver has quit [Client Quit]
<al2o3-cr> i wouldn't be surprised if the i7 8665u out performs ryzen 7 pro 3700u in benchmarking though.
<al2o3-cr> adam12: what's your x230 got, i7 3520M?
phaul has quit [Ping timeout: 265 seconds]
Swyper has quit [Remote host closed the connection]
<al2o3-cr> william1: ditch dell, join us.
Exuma has joined #ruby
<lupine> get a pinebook pro instead
<lupine> delicious aarch64
<adam12> al2o3-cr: i5 3320M, 8GB RAM. I ended up buying it in a pinch when my 2013 MBA died. I was waiting to get a new drive for the MBA (which ended up being impossible because Apple swaps pins on the M2 port to make their drives proprietary). My original contingency plan was to just go buy a new Mac but the keyboards were an issue and I wasn't interested in wasting money. This was an offlease for $300 at my local
<al2o3-cr> lupine: you got the phone too? :)
<adam12> vendor. I picked up a 1 TB SSD for $300 and I've been using it for almost 2 years now.
<lupine> al2o3-cr: it's on order
<lupine> they don't ship till jan or so
<al2o3-cr> lupine: leave feedback here please :)
<lupine> my feedback will simply be "runs linux, am happy"
<al2o3-cr> adam12: apple and their proprietary shit.
<al2o3-cr> lupine: :)
<adam12> al2o3-cr: Rediculous. They wouldn't fix it either :\ And with the keyboards being the way they were with no replacement program, I wasn't going to spend $3k on one. The MBA lasted me 5 years for $1400. Best laptop I ever owned.
<lupine> it comes without an OS, which is pretty cool
<adam12> al2o3-cr: Thinkpad needs to put the X1 screen in the T490s. The fact that only the X1 has the good screen is kinda rediculous.
<william1> main thing is keyboard al2o3-cr
<william1> but am using external keyboard now so would be happy to :D
<al2o3-cr> adam12: it's a business lappy though, so i doubt that'll be an option. though would be nice ;)
<al2o3-cr> adam12: saying that, different regions get different specs which i find a bit shitty.
<al2o3-cr> william1: you prefer a mechanical keyboard?
<william1> i'm on a logitech keyboard, actually.
<william1> not mechanical
<william1> have been tempted to take dive
skx86 is now known as {{{{{{{{[}}}}}}}
<al2o3-cr> william1: that dissapoints me :(
<william1> had really good experience at previous work with ^^
<william1> link to your one?
<al2o3-cr> william1: i use the one on the, you know, thinkpad ;)
<william1> ;)
bsdband32 has quit [Quit: -a- Connection Timed Out]
<al2o3-cr> shame the t490s uses a proprietary port for rj11
<al2o3-cr> 40 smakaroons that adapter, sacrilege :/
bsdbandit-01 has joined #ruby
<al2o3-cr> >> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<ruby[bot]> al2o3-cr: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
gremax has quit [Remote host closed the connection]
<al2o3-cr> >> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<ruby[bot]> al2o3-cr: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
<al2o3-cr> &>> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<rubydoc> # => "04 hours, 43 minutes and 58 seconds to go." (https://carc.in/#/r/8bgq)
<al2o3-cr> excited much :)
{{{{{{{{[}}}}}}} is now known as skx86
Swyper has joined #ruby
Swyper has quit [Remote host closed the connection]
bsdband60 has joined #ruby
bsdbandit-01 has quit [Ping timeout: 265 seconds]
<adam12> I'm not sure I've ever seen ruby[bot] apologize before.
burningserenity has joined #ruby
<al2o3-cr> adam12: it must be on the cinzano, maybe? :)
phaul has joined #ruby
Swyper has joined #ruby
envex has joined #ruby
<adam12> al2o3-cr: lol maybe. A little New Years cheer?
<al2o3-cr> adam12: probably :)
sergioro has left #ruby [#ruby]
Swyper has quit [Remote host closed the connection]
Swyper has joined #ruby
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #ruby
<al2o3-cr> this year as flown by. seriously, where did it go!
<adam12> al2o3-cr: I feel the same way. I'm working on November and December books today. It's been a super busy year that's for sure.
<al2o3-cr> well, let's hope next year slows down, i feel age creeping up on me haha ;)
<adam12> al2o3-cr: kids?
errst has joined #ruby
<al2o3-cr> nope, not yet.
<adam12> al2o3-cr: Kids make time passing visible. It's eerie.
<william1> how many adam12?
<al2o3-cr> there's time left in this spring chicken :)
<adam12> william1: Had my second in July. 3.5 and 0.5
<william1> cute :)
<william1> we want some soon
<adam12> william1: Lots of fun. Less time for evening hacking tho :)
<william1> am scared/excited
<william1> ha
<adam12> william1: I've loved every minute of it. Wouldn't change a thing.
wildtrees has joined #ruby
<william1> that's awesome
<al2o3-cr> adam12: and so you should :)
<adam12> al2o3-cr: Indeed :)
ellcs has joined #ruby
g3funk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Exuma has quit [Quit: Textual IRC Client: www.textualapp.com]
g3funk has joined #ruby
vondruch has joined #ruby
wickedbloodfart has quit [Quit: wickedbloodfart]
ellcs has quit [Ping timeout: 240 seconds]
<william1> anyone got anything i can use to pentest a rails app?
<al2o3-cr> william1: a brain?
<william1> i mean standard scripts/tools
<william1> i.e. low hanging fruit
<william1> not inventing my own exploits :P
itarato has joined #ruby
<william1> we've previously used external companies that specialise in pentesting
g3funk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<al2o3-cr> william1: this is not the channel for this sort of discussion.
<william1> okey doke
<adam12> william1: Pretty sure there is an OWASP example project if you're looking to improve the security of your own app ;)
bsdband60 has quit [Quit: -a- Connection Timed Out]
william1 has quit [Quit: WeeChat 1.9.1]
<adam12> william1: It's called Railsgoat.
<adam12> Oh well.
william1 has joined #ruby
<adam12> william1: It's called Railsgoat.
<william1> found :)
<william1> just cloned locally
bsdbandit-01 has joined #ruby
ellcs has joined #ruby
CrazyEddy has quit [Ping timeout: 246 seconds]
<al2o3-cr> william1: exploiting anything in general requires knowledge.
<al2o3-cr> be a good gem name
<william1> yeah, not really focused my mind on breaking stuff before
<william1> generally just building features/avoiding obvious attack vectors
davidw has quit [Ping timeout: 258 seconds]
<al2o3-cr> william1: now really about breaking stuff, more about code is already broken ;)
<al2o3-cr> *not
<william1> :P
<al2o3-cr> william1: that's on the premise an exploit is found.
<al2o3-cr> but anyway.
<william1> I guess I didn't really mean writing bugs, I meant searching for ways to break existing systems
<al2o3-cr> william1: i knew what you meant as soon as you mentioned kali ;)
<william1> :)
Swyper has quit [Remote host closed the connection]
fphilipe has joined #ruby
phaul has quit [Ping timeout: 260 seconds]
alexherbo2 has quit [Ping timeout: 265 seconds]
alex`` has quit [Ping timeout: 258 seconds]
ellcs has quit [Ping timeout: 240 seconds]
dasher00 has joined #ruby
itarato has quit [Ping timeout: 265 seconds]
phaul has joined #ruby
fphilipe has quit [Ping timeout: 245 seconds]
im0nde_ has joined #ruby
skx86 is now known as bancat
gremax has joined #ruby
Tempesta has quit [Quit: See ya!]
im0nde has quit [Ping timeout: 258 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
bancat is now known as bannedcat
itarato has joined #ruby
bannedcat is now known as skx86
TCZ has joined #ruby
burningserenity has quit [Quit: The Lounge - https://thelounge.chat]
Tempesta has joined #ruby
alexherbo2 has joined #ruby
<adam12> I swear I saw a blog post about Heroku deciding they were going to strip BUNDLED WITH from lock files. Does this ring a bell to anyone? Google'fu is failing me.
fphilipe has joined #ruby
<adam12> Actually it was a Twitter thread: https://twitter.com/schneems/status/1179413794583392257
alexherbo2 has quit [Ping timeout: 258 seconds]
Tempesta has quit [Quit: See ya!]
bsdband53 has joined #ruby
<al2o3-cr> &>> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<rubydoc> # => "02 hours, 15 minutes and 40 seconds to go." (https://carc.in/#/r/8bie)
<al2o3-cr> getting close for some ;)
bsdbandit-01 has quit [Ping timeout: 268 seconds]
Tempesta has joined #ruby
<william1> ended up not even being able to compile ruby 2.3 using asdf so ended up using docker
<william1> opened a pr against railsgoat
<william1> gets me to a point of running through the "koans"
<william1> anyway, should spend some time with the wife. happy new year all
<al2o3-cr> william1: all the best!
<william1> you too :)
william1 has quit [Quit: WeeChat 1.9.1]
<al2o3-cr> william1: thanks ;)
<havenwood> al2o3-cr: Ran my Ruby script to get champagne delivered and ready for the year of Ruby 3!
<al2o3-cr> haha can't wait ;)
<havenwood> This year I plan to use more Isolates.
<havenwood> Resolution—use fewer threads.
<al2o3-cr> havenwood: i'm trying to find a tweet, you'll love it!
<uplime> for my resolution ill probably be switching dns providers, so its more stable
<al2o3-cr> havenwood: at the minute i can't find it ;(
<al2o3-cr> havenwood: it was something along the lines of... "don't die until ruby 3 comes out!" :p
<al2o3-cr> from one of the ruby core, had me laughing for a week, seriously ;)
alex`` has joined #ruby
spacesuitdiver has joined #ruby
reber has joined #ruby
Technodrome has joined #ruby
fphilipe has quit [Ping timeout: 252 seconds]
ur5us has joined #ruby
al2o3-cr is now known as Boobies4Life
william1 has joined #ruby
william1 has quit [Client Quit]
william1 has joined #ruby
william1 has quit [Client Quit]
william1 has joined #ruby
TCZ has quit [Quit: Bye Bye]
errst has quit [Changing host]
errst has joined #ruby
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<reaVer> HAPPY NEW YEAR!!!
<Boobies4Life> &>> Time.at(Time.utc(2020,1,1) - Time.now).utc.strftime("%H hours, %M minutes and %S seconds to go.")
<rubydoc> # => "00 hours, 57 minutes and 34 seconds to go." (https://carc.in/#/r/8bje)
<Boobies4Life> reaVer: nearly for me, happy new year!
orbyt_ has joined #ruby
spacesuitdiver has joined #ruby
william1 has quit [Ping timeout: 260 seconds]
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bsdbandit-01 has joined #ruby
spacesuitdiver has joined #ruby
bsdband53 has quit [Ping timeout: 248 seconds]
bsdbandit-01 has quit [Ping timeout: 265 seconds]
bsdband1 has joined #ruby
bsdband1 has quit [Ping timeout: 260 seconds]
ernanir has joined #ruby
<ernanir> hey
<ernanir> How are you guys doing?
<ernanir> Any of you ever played around with the instagram API?
bsdband4 has joined #ruby
mn3m has joined #ruby
ernanir has quit [Client Quit]
kaleido has quit [Quit: ZNC 1.6.6+deb1ubuntu0.2 - http://znc.in]
jinie has quit [Ping timeout: 258 seconds]
william1 has joined #ruby
kaleido has joined #ruby
kaleido has quit [Changing host]
kaleido has joined #ruby
jinie has joined #ruby
bsdband4 has quit [Read error: Connection reset by peer]
Swyper has joined #ruby
bsdband89 has joined #ruby
Swyper has quit [Remote host closed the connection]
Swyper has joined #ruby
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]