havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.7.1, 2.6.6, 2.5.8: 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!
TCZ has quit [Quit: Leaving]
davispuh has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
mossplix has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
lightstalker has quit [Ping timeout: 260 seconds]
lightstalker has joined #ruby
<adam12> AndreYuhai: What happens with only a few threads?
SeepingN has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SeepingN has joined #ruby
<AndreYuhai> adam12, you mean only using HTTP like in the dpaste link?
<adam12> AndreYuhai: you're opening 200 threads for 200 connections. I'm saying, what happens if you just do like 3-5 threads.
<adam12> AndreYuhai: This sounds like a server issue and not a Ruby issue, unless you were retrying. 503 is either a throttle or you've possibly depleted a worker pool.
banisterfiend has joined #ruby
banisterfiend has quit [Remote host closed the connection]
<AndreYuhai> adam12, As long as I am using only HTTP like in the dpaste link it any number of threads work, but when I try the wrapper then I get 503 even with 5 threads.
<adam12> AndreYuhai: Sorry I'm not following.
<AndreYuhai> adam12, oh thank you anyway. :) This is really weird haha. Their back-end is really bad anyway so I am not surprised.
SeepingN has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drincruz has joined #ruby
cthulchu_ has quit [Read error: Connection reset by peer]
cthulchu_ has joined #ruby
znz_jp has quit [Remote host closed the connection]
BSaboia has quit [Quit: This computer has gone to sleep]
robotmay has quit [Quit: No Ping reply in 180 seconds.]
<havenwood> adam12: A small connection pool of persistent connections would be ideal.
<havenwood> adam12: Oops, MT.
<havenwood> AndreYuhai: ^^
<havenwood> adam12: You already know that, haha. Autocomplete fail.
<AndreYuhai> havenwood, but in the case of using proxies?
robotmay has joined #ruby
znz_jp has joined #ruby
<havenwood> AndreYuhai: That doesn't seem like a problem.
<AndreYuhai> havenwood, alright thank you, I will try that and be back here.
<havenwood> AndreYuhai: I'd suggest this template: https://github.com/httprb/http/wiki/Thread-Safety
<havenwood> AndreYuhai: HTTP.rb is nicely chainable, so you can just add a proxy at the HTTP.persistent step IIR.
ur5us has quit [Ping timeout: 244 seconds]
<havenwood> AndreYuhai: It'd be done for you under the hood with a Typhoeus Hydra setup, if you prefer.
<AndreYuhai> Oh I'd used connection pool before but then I don't know why I commented it out.
<AndreYuhai> But there is one thing I wanna ask. If the connection is persistent, does not that mean connection alive?
sjwvuie has quit [Ping timeout: 272 seconds]
<AndreYuhai> I mean connection: keep-alive sorry
<havenwood> AndreYuhai: Yeah, a persistent connection stays alive.
<AndreYuhai> But then if the IP is rotating how is it possible in this case?
<havenwood> AndreYuhai: Then you use a connection pool, so you have multiple living connections.
CommunistWolf has quit [Ping timeout: 256 seconds]
<AndreYuhai> Oh but the proxy ip is always the same.
<havenwood> AndreYuhai: You'd for example have 19 conections, each with a different proxy IP, if I'm understanding your purpose.
bsdbandit-01 has quit [Quit: -a- Connection Timed Out]
bsdbandit-01 has joined #ruby
<havenwood> AndreYuhai: You can pair a nice thread pool, like a Concurrent::ThreadPoolExecutor for jobs with a ConnectionPool for persistent connections.
<AndreYuhai> havenwood, yes that's right. Since the proxy ip is always the same then that's OK. I just got confused with the IP rotation.
<havenwood> AndreYuhai: Sec, lemme dig up some of my code that does this with the HTTP gem.
<AndreYuhai> Sure
robotmay has quit [Ping timeout: 256 seconds]
<havenwood> AndreYuhai: I just extracted these parts from some of my code ^, but hopefully it makes sense in isolation. ;)
<havenwood> AndreYuhai: Note how each connection has settings.
<havenwood> AndreYuhai: (You can avoid this bit-lower-level code with Typhoeus.)
<havenwood> AndreYuhai: Or HTTP with ConnectionPool and Concurrent work great.
CommunistWolf has joined #ruby
<havenwood> You just have to think about these things.
<AndreYuhai> Yes, I see. Thank you! By the way, I just wonder, what's the purpose of the alias? :D
<AndreYuhai> I mean connect instead of connection_pool
<AndreYuhai> isn't that ambiguous?
<havenwood> AndreYuhai: It was just specific to my code. I copied these parts out quickly without much pruning.
<AndreYuhai> Oh yea alright haha. Thank you :)
wymillerlinux has quit [Ping timeout: 256 seconds]
<AndreYuhai> I will try that now.
SeepingN has joined #ruby
CommunistWolf has quit [Ping timeout: 244 seconds]
dfucci has joined #ruby
AndreYuhai has quit [Quit: Leaving]
dfucci has quit [Ping timeout: 272 seconds]
ur5us has joined #ruby
anandprabhu has joined #ruby
sjwvuie has joined #ruby
anandprabhu has quit [Quit: Leaving]
CommunistWolf has joined #ruby
tau has joined #ruby
tau has joined #ruby
anandprabhu has joined #ruby
tau has quit [Remote host closed the connection]
drincruz has quit [Ping timeout: 272 seconds]
nebiros has joined #ruby
kinduff has quit [Read error: Connection reset by peer]
kinduff has joined #ruby
<adam12> havenwood: ohai
anandprabhu has quit [Ping timeout: 246 seconds]
gix has quit [Ping timeout: 272 seconds]
<apteryx> hello Ruby! I asked some time ago, but didn't get many answers: how should a package manager builder script proceed to build a gem? Using 'rake', or using 'gem build package.gemspec' ??
<apteryx> (i.e., what is the most general/bullet proof way to build a gem?)
<adam12> apteryx: Probably better luck using gem build gemspec
<apteryx> Currently we use 'gem build package-name.gemspec', which seem to work for any Ruby package, but if someone tell me 'rake' would do just as good or better, I'd be happy to switch as it seems to handle tests slightly better.
<adam12> apteryx: rake with a build task isn't ubiquitous.
<apteryx> OK :-/
<apteryx> thank you for your answer!
Guest48 has joined #ruby
Guest48 has quit [Client Quit]
Guest48 has joined #ruby
<adam12> apteryx: cheers
gavlee has joined #ruby
ChmEarl has quit [Quit: Leaving]
<apteryx> When attempting to build cucumber-messages-ruby, I get: LoadError: cannot load such file -- protobuf/tasks/compile.rake. This comes from: https://github.com/cucumber/messages-ruby/blob/65b486a6336201bc40a91f59b99a288dc7186f9e/rake/protobuf.rb
braincra- has quit [Quit: bye bye]
gnufied has quit [Quit: Leaving]
<apteryx> yet protobuf-3.10.3/lib/protobuf/tasks.rb exists in my protobuf gem and is protobuf is in my GEM_PATH.
<apteryx> Ideas?
braincrash has joined #ruby
<apteryx> seems it should be require
wymillerlinux has joined #ruby
cthulchu_ has quit [Ping timeout: 258 seconds]
<adam12> apteryx: `load` is probably fine in this instance, tbh.
<apteryx> err, earlier, I meant that 'protobuf-3.10.3/lib/protobuf/tasks/compile.rake' exists
<apteryx> right, I tried require and the result is the same
<adam12> apteryx: Can you paste the stack trace of the LoadError?
<adam12> apteryx: You're using `gem build`?
<apteryx> yes, my package manager is using 'gem build' under the hood
<apteryx> (package manager == GNU Guix)
<apteryx> but for the check phase (running the tests), it uses 'rake test'
<adam12> apteryx: That's ok (tho `rake test` isn't ubiquitous either :P)
<apteryx> the trace doesn't say much: https://paste.debian.net/1155425/
jenrzzz has joined #ruby
Guest48 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<apteryx> so currently it fails at 'rake test'
<apteryx> adam12: you're right, I hadn't paid much attention about that rake command already being used for tests.
<adam12> apteryx: Issue here is likely that file is in a dependency (the protobuf gem) and it's not installed here.
<adam12> apteryx: Simple solution may be using bundler to install dependencies then run tests. `bundle install && bundle exec rake test` or something.
<apteryx> it should though; the GEM_PATH looks like: https://paste.debian.net/1155426/
<apteryx> OK, I can try this and see if it works, thanks
jennis has quit [Ping timeout: 260 seconds]
gsingh93 has quit [Ping timeout: 260 seconds]
gsingh93 has joined #ruby
quazimodo has quit [Ping timeout: 256 seconds]
buckworst has joined #ruby
quazimodo has joined #ruby
bamdad has quit [Remote host closed the connection]
bamdad has joined #ruby
<apteryx> adam12: eh, funny, same error with bundle env
wymillerlinux has quit [Quit: wymillerlinux]
<apteryx> bed for now :-) thanks for the help!
wymillerlinux has joined #ruby
<adam12> apteryx: Me too. Later.
Industrial` has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
alfiemax has joined #ruby
tau has joined #ruby
tau has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
polishdub has quit [Remote host closed the connection]
bamdad has quit [Remote host closed the connection]
bamdad has joined #ruby
bamdad has quit [Remote host closed the connection]
Technodrome has joined #ruby
bamdad has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
sarna has joined #ruby
bocaneri has joined #ruby
ur5us has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
tau has left #ruby [#ruby]
dfucci has joined #ruby
wymillerlinux has quit [Ping timeout: 260 seconds]
dfucci has quit [Ping timeout: 256 seconds]
quazimodo has quit [Ping timeout: 260 seconds]
schne1der has joined #ruby
<rapha> apteryx: I have a "build" task in my Rakefile which runs "gem build blah.gemspec" ¯\_(ツ)_/¯
quazimodo has joined #ruby
dfucci has joined #ruby
dionysus69 has joined #ruby
dfucci has quit [Ping timeout: 265 seconds]
bsdbandit-01 has quit [Ping timeout: 272 seconds]
schne1der has quit [Ping timeout: 264 seconds]
greypack has quit [Ping timeout: 246 seconds]
bsdbandit-01 has joined #ruby
Industrial` has quit [Ping timeout: 256 seconds]
hiroaki has quit [Ping timeout: 264 seconds]
chalkmonster has joined #ruby
alexherbo2 has joined #ruby
mossplix has joined #ruby
Mawile has quit [Read error: Connection reset by peer]
jenrzzz has quit [Ping timeout: 246 seconds]
graphicsv has quit [Quit: Connection closed for inactivity]
howdoi has quit [Quit: Connection closed for inactivity]
jenrzzz has joined #ruby
sarna has quit [Ping timeout: 256 seconds]
camilasan has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Read error: Connection reset by peer]
camilasan has joined #ruby
jenrzzz has joined #ruby
bamdad has quit [Ping timeout: 240 seconds]
bamdad has joined #ruby
buckworst has quit [Quit: WeeChat 2.8]
Industrial` has joined #ruby
apteryx is now known as Guest60472
Guest60472 has quit [Killed (tolkien.freenode.net (Nickname regained by services))]
apteryx has joined #ruby
dfucci has joined #ruby
snickers has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
dfucci has quit [Ping timeout: 256 seconds]
user1212313 has joined #ruby
<user1212313> Hi, can someone help me fix the indentation for this ruby template?
<user1212313> if the output isn't visible correctly then you can check this question I posted on stackoverflow.. https://stackoverflow.com/questions/62769302/ruby-template-indentation-issue-puppet
imode has quit [Ping timeout: 272 seconds]
<TheBrayn> I'm pretty sure the 3rd block's behaviour is because you end the penultimate line with a -%> instead of just %> which gets rid of the newline
<TheBrayn> I'd look into -%> vs %> but I'm not 100% sure anymore how they differ in which places
<user1212313> thebrayn: Okay that works but when the @postrotate is false then the third block as a empty line and then }
<user1212313> is there a way to prevent that empty line?
<user1212313> that's what it looks like when the variable is false
TomyWork has joined #ruby
arzWZM has joined #ruby
<user1212313> also wonder why the arr.each method second value isn't indented correctly
anandprabhu has joined #ruby
ur5us has joined #ruby
snickers_ has joined #ruby
snickers has quit [Ping timeout: 246 seconds]
chalkmonster has quit [Quit: WeeChat 2.8]
mossplix has quit [Remote host closed the connection]
postmodern has quit [Remote host closed the connection]
mossplix has joined #ruby
alfiemax has quit [Remote host closed the connection]
lmat has quit [Ping timeout: 256 seconds]
mossplix_ has joined #ruby
user1212313 has quit [Ping timeout: 245 seconds]
lmat has joined #ruby
mossplix has quit [Ping timeout: 272 seconds]
arzWZM has quit [Ping timeout: 260 seconds]
alfiemax has joined #ruby
arzWZM has joined #ruby
schne1der has joined #ruby
oddp has joined #ruby
robotmay has joined #ruby
Furai has quit [Quit: WeeChat 2.8]
Furai has joined #ruby
snickers_ has quit [Ping timeout: 246 seconds]
fercell has joined #ruby
TvL2386 has joined #ruby
TvL2386_ has quit [Ping timeout: 256 seconds]
alfiemax has quit [Remote host closed the connection]
giorgian has joined #ruby
GodFather has quit [Remote host closed the connection]
alfiemax has joined #ruby
alfiemax has quit [Remote host closed the connection]
anandprabhu has quit [Ping timeout: 246 seconds]
nebiros has left #ruby [#ruby]
BSaboia has joined #ruby
BSaboia has quit [Read error: Connection reset by peer]
cnsvc has quit [Ping timeout: 240 seconds]
fercell has quit [Quit: WeeChat 2.8]
fercell has joined #ruby
mossplix_ has quit [Remote host closed the connection]
markoong has joined #ruby
donofrio has joined #ruby
markoong is now known as kongmar
kongmar is now known as margeas
margeas is now known as markoong
markoong has quit [Client Quit]
markoong has joined #ruby
markoong has quit [Client Quit]
markoong has joined #ruby
chalkmonster has joined #ruby
chalkmonster has quit [Client Quit]
kinduff has quit [Read error: Connection reset by peer]
kinduff has joined #ruby
alfiemax has joined #ruby
BSaboia has joined #ruby
dfucci has joined #ruby
mossplix has joined #ruby
anandprabhu has joined #ruby
anandprabhu has quit [Client Quit]
ur5us has quit [Ping timeout: 244 seconds]
alfiemax has quit [Remote host closed the connection]
BSaboia has quit [Quit: This computer has gone to sleep]
BSaboia has joined #ruby
TCZ has joined #ruby
lmat has quit [Ping timeout: 246 seconds]
Fusl has quit [Max SendQ exceeded]
snickers has joined #ruby
Fusl has joined #ruby
fercell has quit [Read error: Connection reset by peer]
FetidToot has quit [Quit: Ping timeout (120 seconds)]
FetidToot has joined #ruby
BSaboia has quit [Quit: This computer has gone to sleep]
lmat has joined #ruby
arooni_team_b has joined #ruby
arooni has quit [Ping timeout: 256 seconds]
Guest48 has joined #ruby
alfiemax has joined #ruby
banisterfiend has joined #ruby
alfiemax has quit [Read error: No route to host]
alfiemax has joined #ruby
Guest48 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has quit [Ping timeout: 246 seconds]
drincruz has joined #ruby
Guest48 has joined #ruby
nebiros has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
sarna has joined #ruby
Guest48 has quit [Client Quit]
GodFather has joined #ruby
drincruz has quit [Ping timeout: 272 seconds]
BSaboia has joined #ruby
BSaboia has quit [Quit: This computer has gone to sleep]
BSaboia has joined #ruby
BSaboia has quit [Client Quit]
jenrzzz has joined #ruby
BSaboia has joined #ruby
mossplix has quit [Remote host closed the connection]
burningserenity has joined #ruby
camilasan has quit [Ping timeout: 240 seconds]
BSaboia has quit [Quit: This computer has gone to sleep]
drincruz has joined #ruby
camilasan has joined #ruby
burningserenity has quit [Ping timeout: 260 seconds]
BSaboia has joined #ruby
drincruz has quit [Ping timeout: 260 seconds]
bmurt has joined #ruby
bmurt has quit [Client Quit]
drincruz has joined #ruby
jetchisel has quit [Quit: Unfortunately time is always against us -- [Morpheus]]
mossplix has joined #ruby
alexherbo2 has quit [Ping timeout: 265 seconds]
burningserenity has joined #ruby
snickers has quit [Ping timeout: 256 seconds]
jenrzzz has quit [Ping timeout: 256 seconds]
sarna has quit [Quit: Connection closed]
fercell has joined #ruby
AndreYuhai has joined #ruby
<AndreYuhai> havenwood, yesterday I wanted to ask you about persistent connections but I couldn't explain. Now I figured out. What I wanted to ask you was, I am using proxies like HTTP.via(*proxy)...
camilasan has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<AndreYuhai> havenwood, but the URL that I give HTTP.persistent() is the URL of the website that I am trying to connect to.
camilasan has joined #ruby
<AndreYuhai> havenwood, how is it possible to have a persistent connection with the proxy in this case?
TCZ has quit [Quit: Leaving]
alexherbo2 has joined #ruby
huma has joined #ruby
jenrzzz has joined #ruby
stdedos has quit [Quit: Connection closed]
jenrzzz has quit [Ping timeout: 240 seconds]
chalkmonster has joined #ruby
BrianWGray has joined #ruby
FetidToot has quit [Quit: The Lounge - https://thelounge.chat]
FetidToot has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.8]
nebiros has left #ruby [#ruby]
ttoocs has quit [Ping timeout: 258 seconds]
greypack has joined #ruby
jenrzzz has joined #ruby
greypack has quit [Ping timeout: 258 seconds]
Archenoth has joined #ruby
greypack has joined #ruby
kinduff has quit [Read error: Connection reset by peer]
colins has joined #ruby
kinduff2 has joined #ruby
dfucci has quit [Ping timeout: 258 seconds]
kinduff2 is now known as kinduff
kinduff2 has joined #ruby
rippa has joined #ruby
kinduff2 has quit [Client Quit]
kinduff5 has joined #ruby
kinduff5 has quit [Client Quit]
kinduff7 has joined #ruby
kinduff has quit [Ping timeout: 272 seconds]
kinduff7 is now known as kinduff
kinduff has quit [K-Lined]
josealobato has joined #ruby
<josealobato> quit
josealobato has quit [Quit: Lost terminal]
nebiros has joined #ruby
arzWZM has quit [Ping timeout: 265 seconds]
arzWZM has joined #ruby
huma has quit [Ping timeout: 256 seconds]
anandprabhu has joined #ruby
Archenoth has quit [Quit: Leaving]
wymillerlinux has joined #ruby
theunraveler has joined #ruby
SeepingN has joined #ruby
greypack has quit [Ping timeout: 256 seconds]
theunraveler has quit [Client Quit]
theunraveler has joined #ruby
howdoi has joined #ruby
dfucci has joined #ruby
Archenoth has joined #ruby
greypack has joined #ruby
anandprabhu has quit [Ping timeout: 264 seconds]
dfucci has quit [Ping timeout: 260 seconds]
chalkmonster has joined #ruby
Archenoth has left #ruby ["Leaving"]
dfucci has joined #ruby
dfucci has quit [Ping timeout: 264 seconds]
Industrial` has quit [Ping timeout: 256 seconds]
BSaboia has quit [Quit: This computer has gone to sleep]
jenrzzz has quit [Ping timeout: 246 seconds]
theunraveler has quit []
chalkmonster has quit [Quit: WeeChat 2.8]
mossplix has quit [Remote host closed the connection]
bamdad has quit [Remote host closed the connection]
bamdad has joined #ruby
segy has quit [Excess Flood]
burningserenity has quit [Remote host closed the connection]
lmat has quit [Ping timeout: 246 seconds]
segy has joined #ruby
sjwvuie has quit [Ping timeout: 256 seconds]
dfucci has joined #ruby
lmat has joined #ruby
giorgian has quit [Ping timeout: 256 seconds]
mossplix has joined #ruby
fercell has quit [Quit: WeeChat 2.8]
graphicsv has joined #ruby
dfucci has quit [Ping timeout: 256 seconds]
nebiros has left #ruby [#ruby]
Esa__ has joined #ruby
jenrzzz has joined #ruby
gbristol has joined #ruby
gbristol has left #ruby [#ruby]
burak_ has joined #ruby
burak_ is now known as Guest34718
cthu| has joined #ruby
AndreYuhai has quit [Ping timeout: 272 seconds]
sjwvuie has joined #ruby
schne1der has quit [Ping timeout: 260 seconds]
alexherbo2 has quit [Ping timeout: 258 seconds]
dionysus69 has quit [Ping timeout: 265 seconds]
Guest90533 is now known as baweaver
baweaver is now known as Guest67237
sjwvuie has quit [Ping timeout: 256 seconds]
u0_a260 has joined #ruby
dfucci has joined #ruby
burningserenity has joined #ruby
u0_a260 has quit [Quit: WeeChat 2.8]
sjwvuie has joined #ruby
BSaboia has joined #ruby
dfucci has quit [Ping timeout: 264 seconds]
TomyWork has quit [Remote host closed the connection]
sjwvuie has quit [Ping timeout: 264 seconds]
Guest34718 has quit [Quit: Leaving]
AndreYuhai has joined #ruby
_0x03b5 has joined #ruby
<apteryx> hello, when attempting to load 'protobuf/tasks/compile.rake', buy says: NoMethodError: undefined method `namespace' for main:Object
<apteryx> ideas?
ChmEarl has joined #ruby
Industrial` has joined #ruby
alexherbo2 has joined #ruby
orbyt_ has joined #ruby
<apteryx> ah, I think namespaces are a Rake thing
stdedos has joined #ruby
alexherbo2 has quit [Ping timeout: 260 seconds]
sjwvuie has joined #ruby
Mikaela has quit [Quit: Mikaela]
Mikaela has joined #ruby
greypack has quit [Ping timeout: 260 seconds]
sjwvuie has quit [Ping timeout: 256 seconds]
Eiam has joined #ruby
sjwvuie has joined #ruby
BSaboia has quit [Quit: This computer has gone to sleep]
greypack has joined #ruby
<adam12> apteryx: indeed they are part of rake, at least in this context.
anandprabhu has joined #ruby
bocaneri has quit [Read error: Connection reset by peer]
dfucci has joined #ruby
anandprabhu has quit [Quit: Konversation terminated!]
chalkmonster has joined #ruby
dfucci has quit [Ping timeout: 258 seconds]
dfucci has joined #ruby
s2013 has joined #ruby
dfucci has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 246 seconds]
houhoulis has joined #ruby
jenrzzz has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jenrzzz_ has joined #ruby
jenrzzz has quit [Read error: Connection reset by peer]
alexherbo2 has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
banisterfiend has joined #ruby
cacheerror has joined #ruby
cyrus_mc_ has joined #ruby
colins has quit [Quit: WeeChat 2.8]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
banisterfiend has joined #ruby
schne1der has joined #ruby
_0x03b5 has quit [Remote host closed the connection]
burningserenity has quit [Ping timeout: 244 seconds]
burningserenity has joined #ruby
seydar has joined #ruby
DTZUZU has quit [Ping timeout: 264 seconds]
<seydar> i'm looking for text format ideas
<seydar> actually i'm an idiot
cnsvc has joined #ruby
<seydar> i think i just needed to type my first sentence in a public forum before my brain would proceed to the next step
<seydar> thank you everyone for bearing witness to this
jenrzzz_ has quit [Ping timeout: 264 seconds]
<adam12> IRC rubber ducking at it's finest
DTZUZU has joined #ruby
hiroaki has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.8]
AndreYuhai has quit [Quit: Leaving]
seydar has quit [Quit: leaving]
cyrus_mc_ has quit [Quit: Connection closed]
SeepingN has quit [Read error: Connection reset by peer]
SeepingN has joined #ruby
<apotheon> If seydar was still here, I might say "Markdown! You could use the redrug gem. It's easy."
orbyt_ has joined #ruby
fercell has joined #ruby
nopolitica has joined #ruby
jenrzzz has joined #ruby
jetchisel has joined #ruby
cliluw has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
gix has joined #ruby
hiroaki has quit [Ping timeout: 244 seconds]
bambanx has joined #ruby
nopolitica has quit [Quit: WeeChat 2.6]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
ur5us has joined #ruby
arzWZM has quit [Ping timeout: 256 seconds]
arzWZM has joined #ruby
dualfade has quit [Ping timeout: 260 seconds]
cthu| has quit [Read error: Connection reset by peer]
cthu| has joined #ruby
dualfade has joined #ruby
akem has quit [Ping timeout: 256 seconds]
ldepandis has joined #ruby
fercell has quit [Quit: WeeChat 2.8]
quazimodo has quit [Quit: leaving]
burningserenity has quit [Quit: Leaving.]
Mia has quit [Read error: Connection reset by peer]
Industrial` has quit [Ping timeout: 246 seconds]
mossplix has quit [Remote host closed the connection]
wymillerlinux has quit [Ping timeout: 256 seconds]
cliluw has quit [Ping timeout: 272 seconds]
cliluw has joined #ruby
cliluw has quit [Read error: Connection reset by peer]
justache has quit [Remote host closed the connection]
shelby has joined #ruby
justache has joined #ruby
colins has joined #ruby
shelby has quit [Client Quit]
colins has quit [Quit: WeeChat 2.8]
methos1 is now known as GGMethos
akem has joined #ruby
plutes has quit [Ping timeout: 244 seconds]
schne1der has quit [Ping timeout: 256 seconds]
gmcintire has quit [Ping timeout: 244 seconds]
d10n-work has quit [Ping timeout: 246 seconds]
Mutsuhito has quit [Ping timeout: 240 seconds]
gmcintire has joined #ruby
d10n-work has joined #ruby
jetpack_joe has quit [Ping timeout: 246 seconds]
integral has quit [Ping timeout: 246 seconds]
pyrmont has quit [Ping timeout: 244 seconds]
MentalPower has quit [Ping timeout: 244 seconds]
dualfade has quit [Ping timeout: 258 seconds]
redlegion has quit [Ping timeout: 244 seconds]
cstrahan has quit [Ping timeout: 244 seconds]
Pillus has quit [Ping timeout: 244 seconds]
alnk has quit [Ping timeout: 244 seconds]
dualfade has joined #ruby
markin has quit [Ping timeout: 240 seconds]
fowlduck has quit [Ping timeout: 244 seconds]
lipoqil has quit [Ping timeout: 246 seconds]
siasmj has quit [Ping timeout: 260 seconds]
ctOS has quit [Ping timeout: 244 seconds]
CustosLimen has quit [Ping timeout: 244 seconds]
zipkid has quit [Ping timeout: 272 seconds]
gorsuch has quit [Ping timeout: 272 seconds]
peteretep has quit [Ping timeout: 246 seconds]
nuck has quit [Ping timeout: 246 seconds]
timwis has quit [Ping timeout: 246 seconds]
BuildTheRobots has quit [Ping timeout: 260 seconds]
hahuang65 has quit [Ping timeout: 260 seconds]
itok has quit [Ping timeout: 260 seconds]
Liothen has quit [Ping timeout: 260 seconds]
coffeejunk has quit [Ping timeout: 240 seconds]
gajus has quit [Ping timeout: 244 seconds]
matti has quit [Ping timeout: 244 seconds]
jrhorn424 has quit [Ping timeout: 265 seconds]
ReinH has quit [Ping timeout: 260 seconds]
JayDoubleu has quit [Ping timeout: 246 seconds]
jnoon has quit [Ping timeout: 246 seconds]
Argorok has quit [Ping timeout: 240 seconds]
Lewix has quit [Ping timeout: 240 seconds]
jhill has quit [Ping timeout: 256 seconds]
entel has quit [Ping timeout: 260 seconds]
maxmanders_ has quit [Ping timeout: 260 seconds]
kozowu has quit [Ping timeout: 258 seconds]
gmcintire has quit [Ping timeout: 272 seconds]
englishm has quit [Ping timeout: 272 seconds]
podman has quit [Ping timeout: 272 seconds]
Chew has quit [Ping timeout: 240 seconds]
strmpnk has quit [Ping timeout: 260 seconds]
jerme_ has quit [Ping timeout: 260 seconds]
hodbogi has quit [Ping timeout: 260 seconds]
en10n has quit [Ping timeout: 256 seconds]
KnownSyntax has quit [Ping timeout: 240 seconds]
rann has quit [Ping timeout: 260 seconds]
graphicsv has quit [Ping timeout: 272 seconds]
dputtick has quit [Ping timeout: 272 seconds]
manveru has quit [Ping timeout: 272 seconds]
howdoi has quit [Ping timeout: 244 seconds]
Atro has quit [Ping timeout: 246 seconds]
kermit has quit [Ping timeout: 246 seconds]
kevinsjoberg has quit [Ping timeout: 246 seconds]
Iambchop has quit [Ping timeout: 246 seconds]
r3my has quit [Ping timeout: 246 seconds]
teej_ has quit [Ping timeout: 244 seconds]
d0liver has quit [Ping timeout: 246 seconds]
ec has quit [Ping timeout: 260 seconds]
Net has quit [Ping timeout: 240 seconds]
Fenhl has quit [Ping timeout: 244 seconds]
pitastrudl has quit [Ping timeout: 244 seconds]
darthThorik has quit [Ping timeout: 244 seconds]
afisher has quit [Ping timeout: 256 seconds]
grvgr has quit [Ping timeout: 272 seconds]
meinside has quit [Ping timeout: 260 seconds]
d10n-work has quit [Ping timeout: 256 seconds]
skx86 has quit [Ping timeout: 272 seconds]
s2013 has quit [Ping timeout: 264 seconds]
plutes has joined #ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
houhoulis has quit [Remote host closed the connection]
ldepandis has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
evdubs has quit [Quit: Leaving]
evdubs has joined #ruby
alexherbo2 has quit [Ping timeout: 272 seconds]
yaiyaichu has joined #ruby
cacheerror has quit [Quit: WeeChat 2.8]
troulouliou_dev has quit [Quit: Leaving]
drincruz has quit [Ping timeout: 256 seconds]
jenrzzz has quit [Ping timeout: 258 seconds]
Guest48 has joined #ruby
mossplix has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 264 seconds]
mossplix has quit [Remote host closed the connection]