<cADO>
Hey guys, I'm using rails 5 and the devise gem, does some1 knows how to have two devise models with custom controllers so I can have different sign up forms?
<cADO>
im having trouble using the same ApplicationController
podman is now known as podman[USC]
ramfjord has joined #ruby
blackmesa has quit [Ping timeout: 255 seconds]
bmurt has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mtkd has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mtkd has joined #ruby
cADO has quit [Ping timeout: 260 seconds]
rails-girls-exam has joined #ruby
<rails-girls-exam>
hi!
<zanoni>
#devise has a channel, you may have already know, best answer i can give
Puffball_ has quit [Read error: Connection reset by peer]
mikecmpbll has quit [Quit: inabit. zz.]
rcs has quit [Remote host closed the connection]
Puffball has joined #ruby
rcs has joined #ruby
rails-girls-exam has quit [Ping timeout: 260 seconds]
mikecmpbll has joined #ruby
workmad3 has joined #ruby
<banisterfiend>
does anyone know how to specifcy the bundler version for travis
workmad3 has quit [Ping timeout: 248 seconds]
skotchpine has quit [Ping timeout: 252 seconds]
orbyt_ has joined #ruby
naprimer2 has quit [Quit: Leaving]
jphase has quit [Remote host closed the connection]
uZiel has quit [Ping timeout: 248 seconds]
marr has quit [Ping timeout: 240 seconds]
cschneid_ has quit [Remote host closed the connection]
uZiel has joined #ruby
jphase has joined #ruby
tongueroo has joined #ruby
jphase_ has joined #ruby
jphase__ has joined #ruby
jphase has quit [Ping timeout: 252 seconds]
cschneid_ has joined #ruby
cschnei__ has joined #ruby
jphase_ has quit [Ping timeout: 252 seconds]
jphase__ has quit [Ping timeout: 252 seconds]
cschneid_ has quit [Ping timeout: 255 seconds]
meadmoon has joined #ruby
uZiel has quit [Quit: leaving]
oleo has quit [Remote host closed the connection]
oleo has joined #ruby
John__ has quit [Read error: Connection reset by peer]
<tongueroo>
wondering if any rubyist can help explain how thor parses the "desc" and "method_options" to use internally later. https://github.com/erikhuda/thor/wiki
<havenwood>
So just: before_install: gem install bundler
<havenwood>
banisterfiend: it takes a little while extra, but i actually do a: before_install: gem update
<havenwood>
which would also handle it
<banisterfiend>
yeah the weird thing is it's only using an ancient version on one ruby verson build
<banisterfiend>
on the other ones it's using the most recent
<banisterfiend>
shrug
<havenwood>
I figure since we actually use latest bundled and default gems in production, that updating those pre-`bundle` actually gets it the closest to prod.
<ruby[bot]>
apeiros: # => /tmp/execpad-f57602297e4f/source-f57602297e4f:7: syntax error, unexpected end-of-input, expecting ke ...check link for more (https://eval.in/884480)
<apeiros>
"people use X wrongly, therefore we should just go ahead and use the wrong tool instead"? that argument doesn't resonate with me :)
<apeiros>
as far as I see it, globals could just be dropped entirely from the language
<matthewd>
My argument looks more like "people often don't use unique-property-of-X, therefore X and Y seem interchangeable for those use cases"
<apeiros>
they may superficially seem, but they aren't. I can do more about constants than I can do about globals.
<apeiros>
even if you use constants like globals, *I* still can do more about it
<apeiros>
so even in that situation, I prefer you using constants
<apeiros>
besides of the fact of course that every gem/application should stuff its things under a single top level constant - which isn't possible with globals.
<matthewd>
There is no you and I on the application side
<apeiros>
of course there is
<apeiros>
unless your application doesn't make any use of any 3rd party code.
<matthewd>
3rd party code isn't application code, it's library code, and as I said, has no business playing with globals
<apeiros>
ok. I still feel its pointless and not a good idea.
<apeiros>
another point of you and I re application: me exploring your code. it's easier to figure what things belong to and exist for if you have the tree structure of constants vs. flat-thing globals.
<matthewd>
I think I like the idea partly *because* libraries have no business there: it gives the application a free namespace
<matthewd>
Sure, but we're talking about things that are intended to be globally accessible -- which to me implies they're going to get a top-level constant anyway
<apeiros>
as said before: I don't think that's not how it should be done.
<apeiros>
or YourApplication.your_globally_accesible_thing
<apeiros>
but never ::YourGloballyAccesibleThing when you have ::YourApplication
_aeris_ has quit [Remote host closed the connection]
_aeris has joined #ruby
_aeris is now known as _aeris_
<apeiros>
one gem, one library, one application - each of those should have one top-level constant and that's it. if you want to access things without the top level constant, make it a module and include it in your files.
<matthewd>
Yes, if you're going to namespace everything you define, you're treating your application more like a library, and the rule would then apply
tmm88 has joined #ruby
tmm88 has joined #ruby
tmm88 has quit [Changing host]
<matthewd>
IME people don't actually structure their applications that way, though
<matthewd>
(and not just Rails)
<apeiros>
bad role models breeds bad successors *shrugs*
cschneid_ has joined #ruby
<matthewd>
That wasn't the prevailing convention pre-Rails, either
Freshnuts has joined #ruby
<apeiros>
correct. if it had been, rails might have done better too.
<apeiros>
though rails ignored a couple of conventions even at its inception. so who knows, it might have ignored that one too.
Freshnuts has quit [Remote host closed the connection]
lxsameer has joined #ruby
cschneid_ has quit [Ping timeout: 255 seconds]
tmm88 has quit [Ping timeout: 240 seconds]
Fenhl has joined #ruby
mim1k has joined #ruby
cschneid_ has joined #ruby
CrazyEddy has joined #ruby
_whitelogger has joined #ruby
cschneid_ has quit [Ping timeout: 252 seconds]
anisha has joined #ruby
BTRE has quit [Read error: Connection reset by peer]
BTRE has joined #ruby
cschneid_ has joined #ruby
zanoni has joined #ruby
mikecmpbll has joined #ruby
cschneid_ has quit [Ping timeout: 252 seconds]
conta has joined #ruby
<Hexafox[I]>
apeiros, Why are constants better than globals?
<apeiros>
because you can namespace them.
<matthewd>
Also because you get a warning if you reassign them
<Hexafox[I]>
I was told everything that starts with an upper case letter is a global
<matthewd>
No, they're constants
<apeiros>
everything that starts with a $ is a global
<matthewd>
.. which are globally accessible, but are not "global variables", which start with $
<Hexafox[I]>
Oh
tmm88 has joined #ruby
tmm88 has quit [Changing host]
tmm88 has joined #ruby
<Hexafox[I]>
I don't think I have ever seen a global then.
<matthewd>
Yeah, apart from a couple that control ruby itself, they're rare in modern code
<Hexafox[I]>
I have seen namespaced constants in rails though, one website I made had stuff like Spree::Product
fullstack has quit [Ping timeout: 260 seconds]
<matthewd>
Yes, that is a thing (was that a question?)
<Hexafox[I]>
Nah I think I have it worked out now.
<Hexafox[I]>
So classes are constants as well?
fullstack has joined #ruby
<matthewd>
Classes are stored in / named by constants
<matthewd>
The constant is separate from the class itself, though
<matthewd>
>> class A; def hello; "hi"; end; end; B = A; B.new.hello
<matthewd>
(the first constant a class is assigned to is actually special, because the class remembers that as its name.. but they're still fundamentally not the same thing)
<matthewd>
When a constant is assigned, if the value is a class and the class doesn't have a name yet, it names itself after that constant
<matthewd>
When we set B, the value already has a name, so nothing happens
<matthewd>
>> c = Class.new; A = c; A = 7; B = c; [c.name, A]
<ruby[bot]>
matthewd: # => /tmp/execpad-017e6f726ffe/source-017e6f726ffe:2: warning: already initialized constant A ...check link for more (https://eval.in/884517)
<matthewd>
>> $-w = nil; c = Class.new; A = c; A = 7; B = c; [c.name, A]
<tyil>
ruby would do fine for your usecase, and so would perl 6 or python
<tyil>
look at some code examples and see which syntax you like the most tbh
cschneid_ has joined #ruby
<scorpiosec>
tyil: so which should i start with perl 6 and python then ruby ?
<scorpiosec>
zanoni: i need to hear from you in you experience
<tyil>
I personally greatly prefer perl 6, but it's mostly personal preference
<scorpiosec>
ok so what can i do with perl
<Harzilein>
scorpiosec: there will be some bias when you ask in the respecive communities, don't you think?
<Harzilein>
-.-
<tyil>
perl 6, the number is important, but there are little things it cant do
<Harzilein>
scorpiosec: all mentioned programming languages are turing complete
dionysus69 has quit [Ping timeout: 252 seconds]
dionysus70 has joined #ruby
dionysus70 is now known as dionysus69
<Harzilein>
scorpiosec: all of perl5, python, ruby have mature collections of community-written libraries. (i'm not sure about perl6, does it have its own cpan?)
<tyil>
perl 6 has sockets for network programming (both sync and async), grammars for parsing data (and optionally acting upon certain constructs, to create your own DSL for instance), it has interfaces to load c or python libraries if you need them, it has a c-like syntax
cschneid_ has quit [Ping timeout: 246 seconds]
<tyil>
Harzilein: perl 6 has its own cpan, but it can make use of perl 5 modules too
<Harzilein>
scorpiosec: imho you could do worse than starting w/ ruby
<tyil>
it seems someone is working on Inline::Ruby for perl 6, so in some time it can load ruby modules too probably
<scorpiosec>
Harzilein: so what should i do ?
<Harzilein>
scorpiosec: like people said above, look into the introductory materials for those languages and pick one that resonates with you
<tyil>
scorpiosec: its impossible to say which lang is "best" for you, it all depends on what style fits you
<tyil>
and what exact problem you want to solve
<tyil>
ruby and python are arguably easier to learn than any perl version
<scorpiosec>
ok can you give examples of projects you work on in each language
<matthewd>
scorpiosec: Why do you "want to learn programming"?
cschneid_ has joined #ruby
<Harzilein>
scorpiosec: you want a random problem? ok, i'll tell you something i made in the 90s: find formulae for blood alcohol concentration after ingesting x ml of y proof alcohol w/ blood amount estimated from body weight. then find the formula about rate of metabolized alcohol. make a dialog for entering persons w/ their body weight.
<scorpiosec>
to be able to solve crypto challenges and learn more about web apps
<tyil>
scorpiosec: I mostly have perl 6 examples, I'm here just to get help on an issue I have with running a ruby application
<Harzilein>
scorpiosec: make a dialog for selecting a person and a drink
__Yiota has quit [Remote host closed the connection]
<scorpiosec>
Harzilein: cool
<Harzilein>
scorpiosec: have it determine, calculated from the metabolism rate, how drunk each person is
__Yiota has joined #ruby
<Harzilein>
scorpiosec: you'll have some i/o in there, some calculations, compound data structures, mild "system" level stuff to find the current time.
<scorpiosec>
ok security professionals what they learn
<scorpiosec>
infosec
alfiemax has joined #ruby
cschneid_ has quit [Ping timeout: 258 seconds]
workmad3 has joined #ruby
<Harzilein>
scorpiosec: they might actually build their own from whatever they are used to
<Harzilein>
scorpiosec: since it involves manipulating some kind of runtime or the other, you just want to have abstractions for your manipulations so you can try more things and more focused things. all mentioned languages allow you to do this. depending on the subject matter, the runtime you are trying to manipulate might be close to the metal, so you'd pick up c and any platform's assembly as a necessity.
<scorpiosec>
so c is what what is should go to
<scorpiosec>
for solving ctfs
<Harzilein>
scorpiosec: i'd not overthink your decision, it'll be almost unavoidable to learn multiple languages
<scorpiosec>
so how can i practices problem solving challenges
workmad3 has quit [Ping timeout: 258 seconds]
<matthewd>
If you already know Java, why not use that?
<Harzilein>
right
<scorpiosec>
ok
<scorpiosec>
so now i need to practices problem solving
<Harzilein>
scorpiosec: think about it like you apply the programming to a subject matter that happens to be programming. that has always be the case anyway, infosec or not.
alnewkirk has quit [Ping timeout: 246 seconds]
<tyil>
programming is a means to an end
<scorpiosec>
is there like changes website to practices on
<tyil>
you have a problem, and some program might be able to solve it
<tyil>
so you write a program to solve it
<scorpiosec>
where i can find problem to solve
<tyil>
go to any office, ask for the manager and apply for a job
<Harzilein>
scorpiosec: 6502 assembly can be picked up in a weekend. both java and ruby have libraries for interpreting opcodes. write an emulator/debugger to see which part of a 6502 binary (think nes game) changes a particular memory location.
<tyil>
they'll give you many problems to solve
<Harzilein>
scorpiosec: that'll be pretty close to the things you might want to figure out in an infosec capacity
alnewkirk has joined #ruby
<scorpiosec>
so what about resources like lynda and pluralsight
<Harzilein>
never heard of them. are those the kind of didactics that taught you java?
alnewkirk has quit [Ping timeout: 260 seconds]
cschneid_ has joined #ruby
<zanoni>
if you want problems to solve, go to CodeWars, they have a ton of challenges, and support multiple languages
cschneid_ has quit [Ping timeout: 252 seconds]
zanoni has quit [Read error: Connection reset by peer]
zanoni has joined #ruby
scorpiosec has quit [Read error: Connection reset by peer]
<Harzilein>
i think he might have a motivation problem if he can only think of "i want to use the big boys' tools" as a goal
gnufied has joined #ruby
_sfiguser has joined #ruby
conta has joined #ruby
dionysus69 has quit [Ping timeout: 248 seconds]
mjolnird has quit [Ping timeout: 246 seconds]
Psybur has joined #ruby
Bhootrk_ has joined #ruby
anisha has quit [Quit: This computer has gone to sleep]
Bhootrk_ has quit [Max SendQ exceeded]
alfiemax has quit [Remote host closed the connection]
alfiemax has joined #ruby
ryzokuken has quit [Quit: Connection closed for inactivity]
mjolnird has joined #ruby
blackmesa has joined #ruby
Hexafox[I] has quit [Ping timeout: 246 seconds]
Hexafox[I] has joined #ruby
cschneid_ has joined #ruby
sepp2k1 has joined #ruby
sepp2k has quit [Ping timeout: 240 seconds]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ryzokuken has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
conta has quit [Ping timeout: 248 seconds]
pmunt has joined #ruby
cschneid_ has joined #ruby
conta has joined #ruby
cschneid_ has quit [Ping timeout: 255 seconds]
alfiemax has quit [Remote host closed the connection]
alfiemax has joined #ruby
alnewkirk has joined #ruby
blackmesa has quit [Ping timeout: 264 seconds]
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
Guest65208 has joined #ruby
alnewkirk has quit [Ping timeout: 246 seconds]
Hexafox[I] has quit [Ping timeout: 240 seconds]
houhoulis has joined #ruby
alnewkirk has joined #ruby
blackmesa has joined #ruby
govg has quit [Ping timeout: 252 seconds]
alnewkirk has quit [Ping timeout: 258 seconds]
idefine has joined #ruby
claudiuinberlin has joined #ruby
idefine has quit [Ping timeout: 248 seconds]
alnewkirk has joined #ruby
rgr has joined #ruby
DLSteve has joined #ruby
alnewkirk has quit [Ping timeout: 240 seconds]
shinnya has quit [Ping timeout: 248 seconds]
workmad3 has joined #ruby
conta has quit [Ping timeout: 255 seconds]
alnewkirk has joined #ruby
hanmac has joined #ruby
workmad3 has quit [Ping timeout: 252 seconds]
alnewkirk has quit [Ping timeout: 248 seconds]
John__ has joined #ruby
Devalo has joined #ruby
alnewkirk has joined #ruby
jphase has joined #ruby
fmccann has joined #ruby
Devalo has quit [Ping timeout: 255 seconds]
herbmillerjr has quit [Ping timeout: 252 seconds]
Vile` has joined #ruby
johnkpaul has quit [Quit: Connection closed for inactivity]
alnewkirk has quit [Ping timeout: 246 seconds]
dionysus69 has joined #ruby
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alnewkirk has joined #ruby
houhouli_ has joined #ruby
planigan has quit [Ping timeout: 240 seconds]
houhoulis has quit [Ping timeout: 248 seconds]
Defenestrate has quit [Quit: This computer has gone to sleep]
<prutheus>
Im ny gtk main window, I have a vertical box which contains some stuff and at the bottom there is a scrollable box with an horizontal box inside. But why are the buttons inside this box so big? see here https://imgur.com/hu4qbAD
planigan has quit [Read error: Connection reset by peer]
lel has quit [Ping timeout: 248 seconds]
rabajaj has joined #ruby
quiller has joined #ruby
lel has joined #ruby
quiller has quit [Client Quit]
quiller has joined #ruby
jphase has quit [Remote host closed the connection]
alfiemax has quit [Remote host closed the connection]
planigan has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has joined #ruby
<ineb>
prutheus: why are you asking a gtk specific question in #ruby?
<prutheus>
hm
jxv has joined #ruby
rgr has quit [Ping timeout: 255 seconds]
<prutheus>
ineb: can you help?
<ineb>
no :<
jxv has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
Qommand0r has quit [Quit: WeeChat 1.9.1]
basket has quit [Ping timeout: 260 seconds]
blackmesa has joined #ruby
alfiemax_ has joined #ruby
ioggstream has joined #ruby
jxv has joined #ruby
rabajaj has quit [Quit: Leaving]
herbmillerjr has joined #ruby
alfiemax has quit [Ping timeout: 248 seconds]
tongueroo has quit []
jxv has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rgr has joined #ruby
jxv has joined #ruby
AxelAlex has joined #ruby
mjuszczak has joined #ruby
fullstack has quit [Ping timeout: 264 seconds]
orbyt_ has joined #ruby
fullstack has joined #ruby
blackmesa has quit [Ping timeout: 255 seconds]
ryzokuken has quit [Quit: Connection closed for inactivity]
herbmillerjr has quit [Quit: Konversation terminated!]
AxelAlex has quit [Quit: AxelAlex]
Psybur has quit [Ping timeout: 252 seconds]
meadmoon has joined #ruby
workmad3 has joined #ruby
alfiemax_ has quit [Remote host closed the connection]
raynold has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
pilne has joined #ruby
nadir has joined #ruby
Devalo has quit [Remote host closed the connection]
pmunt has quit [Remote host closed the connection]
mjuszczak has quit []
ledestin has joined #ruby
bruno- has quit [Ping timeout: 260 seconds]
ledestin has quit [Ping timeout: 248 seconds]
jxv has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby
anisha has quit [Quit: This computer has gone to sleep]
bruno- has quit [Ping timeout: 246 seconds]
alfiemax has joined #ruby
Technodrome has joined #ruby
alfiemax has quit [Remote host closed the connection]
conta has joined #ruby
lubekpl has joined #ruby
alfiemax has joined #ruby
conta has quit [Quit: conta]
rgr has quit [Ping timeout: 246 seconds]
alfiemax_ has joined #ruby
rgr has joined #ruby
alfiemax_ has quit [Remote host closed the connection]
ioggstream has quit [Ping timeout: 248 seconds]
milardovich has joined #ruby
idefine has joined #ruby
millerti has joined #ruby
alfiemax has quit [Ping timeout: 264 seconds]
Puffball has quit [Ping timeout: 240 seconds]
idefine has quit [Ping timeout: 240 seconds]
dviola has joined #ruby
DTZUZO has joined #ruby
Emmanuel_Chanel has joined #ruby
guille-moe has joined #ruby
fmcgeough has joined #ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Dimik has joined #ruby
ioggstream has joined #ruby
houhoulis has joined #ruby
Devalo has joined #ruby
guille-moe has quit [Ping timeout: 248 seconds]
chmurifree has quit [Ping timeout: 252 seconds]
houhouli_ has quit [Ping timeout: 240 seconds]
dviola has quit [Quit: WeeChat 1.9.1]
alnewkirk has joined #ruby
chmurifree has joined #ruby
Rodya_ has joined #ruby
Devalo has quit [Remote host closed the connection]
idefine has joined #ruby
lubekpl has quit [Ping timeout: 264 seconds]
idefine has quit [Ping timeout: 240 seconds]
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
houhoulis has quit [Ping timeout: 248 seconds]
ramfjord has joined #ruby
sagax has quit [Ping timeout: 255 seconds]
anisha has joined #ruby
cabotto has joined #ruby
fantazo has joined #ruby
mjolnird has quit [Remote host closed the connection]
fantazo has quit [Client Quit]
DTZUZU has quit [Ping timeout: 255 seconds]
prutheus has quit [Quit: Page closed]
ldepandis has joined #ruby
DTZUZU has joined #ruby
milardovich has quit [Remote host closed the connection]
cabotto has quit []
alnewkirk has quit [Ping timeout: 240 seconds]
alnewkir1 has joined #ruby
workmad3 has joined #ruby
Devalo has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
ioggstream has quit [Ping timeout: 248 seconds]
lubekpl has joined #ruby
DTZUZO has quit [Ping timeout: 248 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
dviola has joined #ruby
idefine has joined #ruby
Silthias has joined #ruby
imode has joined #ruby
Silthias1 has quit [Ping timeout: 248 seconds]
AxelAlex has joined #ruby
idefine has quit [Ping timeout: 255 seconds]
milardovich has joined #ruby
lubekpl has quit [Quit: WeeChat 1.9.1]
blackmesa has joined #ruby
meadmoon has quit [Quit: I am functioning within established parameters.]
Dimik has quit [Ping timeout: 248 seconds]
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Technodrome has joined #ruby
turt2live has quit [Ping timeout: 240 seconds]
torarne has quit [Ping timeout: 246 seconds]
QualityAddict has joined #ruby
chaos95 has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
aagdbl[m] has quit [Ping timeout: 255 seconds]
dtcristo has quit [Ping timeout: 240 seconds]
M107262[m] has quit [Ping timeout: 246 seconds]
velu_aon[m] has quit [Ping timeout: 246 seconds]
Orbixx[m] has quit [Ping timeout: 246 seconds]
itmerc[m] has quit [Ping timeout: 264 seconds]
Tagami[m] has quit [Ping timeout: 264 seconds]
jonjits[m] has quit [Ping timeout: 252 seconds]
cdg has quit [Remote host closed the connection]
yana[m] has quit [Ping timeout: 240 seconds]
dman[m] has quit [Ping timeout: 246 seconds]
alfiemax has joined #ruby
watzon has quit [Ping timeout: 248 seconds]
gokul_mr[m] has quit [Ping timeout: 240 seconds]
Matt[m]2 has quit [Ping timeout: 276 seconds]
lasenna[m] has quit [Ping timeout: 276 seconds]
astronavt[m] has quit [Ping timeout: 264 seconds]
haylon has quit [Ping timeout: 240 seconds]
Hanma[m] has quit [Ping timeout: 255 seconds]
Giphy[m] has quit [Ping timeout: 240 seconds]
KevinMGranger has quit [Ping timeout: 255 seconds]
zalipuha[m] has quit [Ping timeout: 248 seconds]
aviraldg has quit [Ping timeout: 240 seconds]
kua[m] has quit [Ping timeout: 255 seconds]
Devalo has quit [Remote host closed the connection]
alfiemax has quit [Remote host closed the connection]
nikivi has quit [Ping timeout: 248 seconds]
Rodya_ has quit [Remote host closed the connection]
32NAA8BPJ has joined #ruby
32NAA8BPJ has quit [Quit: 32NAA8BPJ]
goyox86 has joined #ruby
milardovich has quit [Read error: Connection reset by peer]
milardovich has joined #ruby
conta has joined #ruby
conta has quit [Client Quit]
goyox86 has quit [Client Quit]
goyox86 has joined #ruby
thomasv314 has joined #ruby
Vile` has joined #ruby
milardovich has quit [Read error: Connection reset by peer]
thomasv314 has quit [Client Quit]
milardovich has joined #ruby
thomasv314 has joined #ruby
idefine has joined #ruby
alnewkir1 has quit [Ping timeout: 248 seconds]
idefine has quit [Ping timeout: 255 seconds]
dionysus69 has joined #ruby
dinfuehr has quit [Ping timeout: 252 seconds]
dinfuehr has joined #ruby
Mia has quit [Read error: Connection reset by peer]
alnewkirk has joined #ruby
milardovich has quit [Remote host closed the connection]
AxelAlex has quit [Quit: AxelAlex]
QualityAddict has quit [Quit: Leaving]
mtkd has quit [Read error: Connection reset by peer]
mtkd has joined #ruby
blackmesa1 has joined #ruby
Tagami[m] has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
cdg has joined #ruby
anisha has quit [Quit: This computer has gone to sleep]
workmad3 has joined #ruby
uneeb has joined #ruby
cdg has quit [Ping timeout: 252 seconds]
goyox86 has quit [Quit: goyox86]
workmad3 has quit [Ping timeout: 252 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
alnewkirk has quit [Ping timeout: 255 seconds]
goyox86 has joined #ruby
thomasv314 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Hanma[m] has joined #ruby
jonjits[m] has joined #ruby
aviraldg has joined #ruby
watzon has joined #ruby
dtcristo has joined #ruby
yana[m] has joined #ruby
lasenna[m] has joined #ruby
torarne has joined #ruby
M107262[m] has joined #ruby
velu_aon[m] has joined #ruby
Orbixx[m] has joined #ruby
astronavt[m] has joined #ruby
turt2live has joined #ruby
haylon has joined #ruby
Giphy[m] has joined #ruby
dman[m] has joined #ruby
gokul_mr[m] has joined #ruby
KevinMGranger has joined #ruby
aagdbl[m] has joined #ruby
kua[m] has joined #ruby
zalipuha[m] has joined #ruby
itmerc[m] has joined #ruby
Matt[m]2 has joined #ruby
jrafanie has joined #ruby
jrafanie has quit [Client Quit]
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
charliesome has joined #ruby
thomasv314 has joined #ruby
thomasv314 has quit [Client Quit]
lexruee has quit [Ping timeout: 255 seconds]
ahrs has quit [Remote host closed the connection]
thomasv314 has joined #ruby
ahrs has joined #ruby
mtkd has quit [Ping timeout: 246 seconds]
thomasv314 has quit [Client Quit]
DTZUZU has quit [Quit: WeeChat 1.9]
mtkd has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
fullstack has quit [Ping timeout: 255 seconds]
k_89 has joined #ruby
k_89 has quit [Client Quit]
lxsameer has quit [Read error: Connection reset by peer]
fullstack has joined #ruby
cen5848 has joined #ruby
ramfjord has joined #ruby
dionysus69 has quit [Ping timeout: 255 seconds]
milardovich has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
mtkd has quit [Read error: Connection reset by peer]
^mtkd has joined #ruby
thomasv314 has joined #ruby
duderonomy has joined #ruby
postmodern has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
kies has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
guille-moe has joined #ruby
selim has quit [Ping timeout: 255 seconds]
selim has joined #ruby
cschneid_ has joined #ruby
NightMonkey has quit [Ping timeout: 255 seconds]
goyox86 has quit [Quit: goyox86]
Devalo has joined #ruby
mjuszczak has joined #ruby
blackmesa1 has quit [Ping timeout: 252 seconds]
blackmesa has joined #ruby
chamunks has quit [Ping timeout: 260 seconds]
cschneid_ has quit [Ping timeout: 258 seconds]
NightMonkey has joined #ruby
goyox86 has joined #ruby
charliesome has joined #ruby
Devalo has quit [Ping timeout: 258 seconds]
rgr has quit [Ping timeout: 258 seconds]
mjuszczak has quit [Ping timeout: 258 seconds]
Rodya_ has joined #ruby
Antiarc has quit [Ping timeout: 258 seconds]
enterprisey has joined #ruby
Antiarc has joined #ruby
guacamole has joined #ruby
claudiuinberlin has quit [Read error: Connection reset by peer]
guacamole has quit [Client Quit]
guacamole has joined #ruby
guacamole has quit [Client Quit]
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
QualityAddict has joined #ruby
alex`` has quit [Ping timeout: 264 seconds]
bronson_ has quit [Read error: Connection reset by peer]
bronson has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Cohedrin_ has joined #ruby
workmad3 has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
workmad3 has quit [Ping timeout: 240 seconds]
charliesome has joined #ruby
steffes has joined #ruby
workmad3 has joined #ruby
workmad3 has quit [Ping timeout: 248 seconds]
snickers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chamunks has joined #ruby
AnoHito_ has quit [Ping timeout: 258 seconds]
blackmesa has quit [Quit: WeeChat 1.9.1]
thomasv314 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
thomasv314 has joined #ruby
jphase has joined #ruby
blackmesa has joined #ruby
blackmesa1 has joined #ruby
apeiros has quit [Remote host closed the connection]
jphase has quit [Ping timeout: 252 seconds]
AnoHito has joined #ruby
blackmesa has quit [Ping timeout: 258 seconds]
Rodya_ has quit [Remote host closed the connection]
Rodya_ has joined #ruby
idefine has joined #ruby
oleo has quit [Remote host closed the connection]
oleo has joined #ruby
^mtkd has quit [Ping timeout: 248 seconds]
cdg has joined #ruby
mim1k has joined #ruby
mtkd has joined #ruby
Defenestrate has joined #ruby
apeiros has joined #ruby
Defenestrate has quit [Quit: This computer has gone to sleep]
Defenestrate has joined #ruby
Defenestrate has quit [Client Quit]
Defenestrate has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Defenestrate has quit [Client Quit]
Defenestrate has joined #ruby
Defenestrate has quit [Client Quit]
goyox86 has quit [Quit: goyox86]
Defenestrate has joined #ruby
Defenestrate has quit [Client Quit]
jjaii9 has joined #ruby
Defenestrate has joined #ruby
cschneid_ has joined #ruby
Defenestrate has quit [Client Quit]
marr has quit [Ping timeout: 255 seconds]
cschneid_ has quit [Ping timeout: 252 seconds]
enterprisey has quit [Ping timeout: 240 seconds]
_sfiguser has quit [Quit: Leaving]
jjaii9_ has joined #ruby
jjaii9_ has quit [Client Quit]
jjaii9_ has joined #ruby
jjaii9 has quit [Ping timeout: 252 seconds]
jjaii9_ is now known as hello0
hello0 is now known as hello9
cschneid_ has joined #ruby
cschneid_ has quit [Ping timeout: 240 seconds]
guille-moe has quit [Ping timeout: 248 seconds]
Freshnuts has joined #ruby
guille-moe has joined #ruby
naprimer2 has joined #ruby
guille-moe has quit [Ping timeout: 240 seconds]
Psybur has joined #ruby
naprimer has quit [Ping timeout: 260 seconds]
alveric has joined #ruby
alveric4 has quit [Ping timeout: 260 seconds]
_whitelogger has joined #ruby
moei has quit [Quit: Leaving...]
nofxx has quit [Ping timeout: 240 seconds]
enterprisey has joined #ruby
workmad3 has joined #ruby
Devalo has joined #ruby
John__ has quit [Read error: Connection reset by peer]