apeiros changed the topic of #ruby to: http://ruby-community.com || Ruby 2.2.2; 2.1.6; 2.0.0-p645: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org, other public logging is prohibited
ikeike44_ has joined #ruby
Aswebb_ has quit [Remote host closed the connection]
sriehl has joined #ruby
predator117 has quit [Ping timeout: 250 seconds]
<sohrab> qua: it depends on who you ask, but for me its when i run out of ideas. if it's 1 minute then it's one minute. sometimes it's 3 days
workmad3 has quit [Ping timeout: 272 seconds]
ikeike443 has quit [Ping timeout: 252 seconds]
<qua> sohrab> I guess I lack to training to determine when I've exhausted all of the options I can think of
<qua> er
<qua> lack *the
RandyT has joined #ruby
zachrab has quit [Remote host closed the connection]
mostlybadfly has quit [Quit: Connection closed for inactivity]
robustus has quit [Ping timeout: 255 seconds]
dopie has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
aef has quit [Remote host closed the connection]
aef has joined #ruby
robustus|Off has joined #ruby
aef has quit [Remote host closed the connection]
robustus|Off is now known as robustus
aef has joined #ruby
lkba_ has joined #ruby
icarus has quit [Ping timeout: 256 seconds]
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lkba has quit [Ping timeout: 255 seconds]
<Devoth> Is it possible to access a key-value pair in hash by their number?
ponga has joined #ruby
threh has joined #ruby
<apeiros> Devoth: yes, but you should not.
<apeiros> hashes are not made for positional access.
nhhagen has joined #ruby
<Devoth> apeiros: I know, that's why I'm questioning a bit my app's logic
<Devoth> I have this hash: @@patches = { :header_row => "Header rows", :general_row => "General (break) rows", :time_cell => "Time cells" }
<heftig> apeiros: out of curiosity, I think the current impl is a linked list with a hash table?
<Devoth> that I want to present to user as options to choose from, and I want them to just respond with number (instead of writing more)
<apeiros> heftig: yes, the key/value pairs are in a double linked list
ponga has quit [Ping timeout: 248 seconds]
<apeiros> heftig: that allows to keep O(1) insertion/deletion
soulcake has quit [Quit: Quack.]
<apeiros> and O(1) key-lookup of course
<heftig> well, amortized O(1)
<apeiros> yes
basiclaser has quit [Quit: Connection closed for inactivity]
<Devoth> apeiros: that's why I wanted to list hash numbers in the first place
soulcake has joined #ruby
<apeiros> Devoth: with such a small hash it probably won't matter. one way would be @@patches.to_a[index]
yaw has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Devoth> otherwise I would have to store numbers in the hash (which would probably be silly)
<Devoth> :)
<Devoth> thank you :)
<heftig> or use @@patches.keys for the duration of the prompt
zubov has quit [Quit: Leaving]
Fingel has joined #ruby
<Devoth> heftig: thanks
dopie has quit [Quit: This computer has gone to sleep]
nhhagen has quit [Ping timeout: 252 seconds]
<heftig> Devoth: is there a reason you need to have it as a hash at all?
jwinder has quit [Ping timeout: 276 seconds]
<heftig> If you have an array of arrays [[:header_row, "Header rows"], ...] you can use Array#assoc to look up by first item
<Devoth> heftig: I will do a lot of things in various places depending on the option chosen, probably including some switch cases, etc and I prefer to pass or react to symbol than number
swgillespie has joined #ruby
<heftig> with a three-item array it might even be faster than a hash
<heftig> (not that it would matter much, anyway)
diegoviola has quit [Remote host closed the connection]
<Devoth> heftig: :)
jottr has quit [Ping timeout: 264 seconds]
Soda has quit [Remote host closed the connection]
freerobby1 has joined #ruby
freerobby has quit [Ping timeout: 256 seconds]
Igorshp has joined #ruby
lfox has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Matachines has quit [Quit: Textual IRC Client: www.textualapp.com]
thatslifeson has joined #ruby
freerobby1 has quit [Quit: Leaving.]
Azure has joined #ruby
balazs has quit [Remote host closed the connection]
DerisiveLogic has quit [Remote host closed the connection]
DerisiveLogic has joined #ruby
balazs has joined #ruby
thatslif_ has quit [Ping timeout: 256 seconds]
mrmargolis has joined #ruby
Brozo has quit [Remote host closed the connection]
goggy has joined #ruby
goggy has quit [Read error: Connection reset by peer]
Igorshp has quit [Remote host closed the connection]
ReK2 has quit [Quit: Konversation terminated!]
Vile` has quit [Remote host closed the connection]
tkuchiki has joined #ruby
AlphaAtom has quit [Ping timeout: 256 seconds]
bintelli has joined #ruby
Devoth has left #ruby ["Textual IRC Client: www.textualapp.com"]
Vile` has joined #ruby
doodlehaus has joined #ruby
tkuchiki has quit [Ping timeout: 264 seconds]
lfox has joined #ruby
dcarper has joined #ruby
sevvie has joined #ruby
<sohrab> how can i access a variable thats defined outside of a method without sending it in as a parameter?
doodlehaus has quit [Ping timeout: 256 seconds]
<heftig> sohrab: some code that shows what you want to do?
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
freerobby has joined #ruby
<heftig> sohrab: use define_method(:sup) { string }
<heftig> that makes a method from the closure
gazay has joined #ruby
<sohrab> hm, where do i do that? and i have a bunch of methods that do this.. :(
swgillespie has joined #ruby
<heftig> instead of def sup
<sohrab> then isn't it basically a parameter?
duderonomy has joined #ruby
C1V0 has quit []
<heftig> no, it's captured from the environment
<sohrab> where would the parameters go?
Juanchito has quit [Quit: Connection closed for inactivity]
<heftig> define_method(:foobar) { |a,b,c| ... }
swgillespie has quit [Client Quit]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<sohrab> is that the only solution?
<heftig> what do you want?
tubuliferous has joined #ruby
<sohrab> the string is part of an url to call an api. i want to reuse the string in all the different methods taht call the api
<sohrab> i've never used define_method before and cant experiment w this project
<heftig> make it an instance variable
<sohrab> its not inside a class. does tha tmatter?
<heftig> or a constant, if that's more appropriate
qua1 has joined #ruby
<heftig> FOO = "blah"; def sup; FOO; end
qua has quit [Ping timeout: 250 seconds]
<sohrab> i tried using a global variable but it didnt work
<gr33n7007h> >> @string = "hi there"; def sup; @string; end; sup
swgillespie has joined #ruby
<ruboto> gr33n7007h # => "hi there" (https://eval.in/318862)
zachrab has joined #ruby
<gr33n7007h> or constant as heftig said
<gr33n7007h> but that a funny way of going about things
<heftig> if it doesn't need to change at runtime, make it a constant
qua1 is now known as qua
<sohrab> k, thanks guys
RegulationD has joined #ruby
tubuliferous has quit [Ping timeout: 245 seconds]
IrishGringo has joined #ruby
lzco has joined #ruby
Guest35574 has quit [Remote host closed the connection]
RegulationD has quit [Ping timeout: 265 seconds]
sriehl has quit []
Lucky__ has joined #ruby
bintelli has quit [Ping timeout: 246 seconds]
serivich has joined #ruby
mgberlin has joined #ruby
arescorpio has joined #ruby
balazs has quit [Ping timeout: 240 seconds]
nhhagen has joined #ruby
GnuYawk has joined #ruby
aphprentice has joined #ruby
lzco has quit []
PaulCape_ has joined #ruby
nhhagen has quit [Ping timeout: 250 seconds]
soulcake has quit [Quit: Quack.]
a346 has quit [Remote host closed the connection]
sohrab has quit [Quit: leaving]
PaulCapestany has quit [Ping timeout: 276 seconds]
soulcake has joined #ruby
bim has joined #ruby
bim is now known as Guest98002
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Guest98002 has quit [Ping timeout: 256 seconds]
jonr22 has joined #ruby
Channel6 has joined #ruby
swgillespie has joined #ruby
juanpablo___ has joined #ruby
Igorshp has joined #ruby
_blizzy_ is now known as beginner
beginner is now known as beginners
beginners is now known as _blizzy_
Brozo has joined #ruby
juanpablo___ has quit [Ping timeout: 240 seconds]
DigitallyBrn has joined #ruby
workmad3 has joined #ruby
DigitallyBorn has quit [Ping timeout: 248 seconds]
Meow-J has joined #ruby
weemsledeux has quit [Ping timeout: 264 seconds]
Guest54848 has quit [Ping timeout: 255 seconds]
workmad3 has quit [Ping timeout: 255 seconds]
Mohan has joined #ruby
Mohan is now known as Guest25049
Brozo has quit [Ping timeout: 252 seconds]
mgberlin_ has joined #ruby
DigitallyBrn has quit [Ping timeout: 256 seconds]
Biohazard has joined #ruby
thejoecarroll_ has joined #ruby
Biohazard is now known as Guest22687
tekku has joined #ruby
gkra_ has joined #ruby
chipotl__ has joined #ruby
kke_ has joined #ruby
prambaud_ has joined #ruby
ReK2GnULinuX has joined #ruby
ReK2GnULinuX has joined #ruby
freerobby has quit [Quit: Leaving.]
aef_ has joined #ruby
atomi has joined #ruby
jeramy_s has joined #ruby
framling has joined #ruby
dhruvasagar_ has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dcarper_ has joined #ruby
lanemeyer has joined #ruby
tekk has quit [Ping timeout: 264 seconds]
thejoecarroll has quit [Ping timeout: 264 seconds]
Guest85510 has quit [Ping timeout: 264 seconds]
aef has quit [Ping timeout: 264 seconds]
gkra has quit [Ping timeout: 264 seconds]
mcpierce has quit [Ping timeout: 264 seconds]
mgberlin has quit [Ping timeout: 264 seconds]
kke has quit [Ping timeout: 264 seconds]
atomi_ has quit [Ping timeout: 264 seconds]
PierreRambaud has quit [Ping timeout: 264 seconds]
ninjazach has quit [Ping timeout: 264 seconds]
troyready has quit [Ping timeout: 264 seconds]
zz_Outlastsheep has quit [Ping timeout: 264 seconds]
ukd1_ has quit [Ping timeout: 264 seconds]
Kovensky has quit [Ping timeout: 264 seconds]
dhruvasagar has quit [Ping timeout: 264 seconds]
chipotle_ has quit [Read error: Connection reset by peer]
threh has quit [Ping timeout: 264 seconds]
DarthGandalf has quit [Ping timeout: 264 seconds]
lanemeyer_ has quit [Ping timeout: 264 seconds]
SHyx0rmZ has quit [Ping timeout: 264 seconds]
Sou|cutter has quit [Ping timeout: 264 seconds]
Guest72244 has quit [Ping timeout: 264 seconds]
dyce has quit [Ping timeout: 264 seconds]
dcarper has quit [Ping timeout: 264 seconds]
anekos has quit [Ping timeout: 264 seconds]
A124 has quit [Ping timeout: 264 seconds]
ReK2WiLdS has quit [Read error: Connection reset by peer]
Lucky__ has quit [Ping timeout: 264 seconds]
ukd1 has joined #ruby
ixx has joined #ruby
A124 has joined #ruby
ixx is now known as Guest37733
piotrj has quit [Remote host closed the connection]
Kovensky has joined #ruby
threh has joined #ruby
philtr has quit [Ping timeout: 264 seconds]
piotrj has joined #ruby
dyce has joined #ruby
mcpierce has joined #ruby
philtr has joined #ruby
balazs has joined #ruby
DarthGandalf has joined #ruby
crazymykl has quit [Quit: Konversation terminated!]
Feyn has joined #ruby
Sou|cutter has joined #ruby
troyready has joined #ruby
anekos has joined #ruby
crazymykl has joined #ruby
icebourg has joined #ruby
ninjazach has joined #ruby
Igorshp has quit [Remote host closed the connection]
Hanumaiv has joined #ruby
edwinvdg_ has quit [Ping timeout: 245 seconds]
swgillespie has joined #ruby
TheHodge has quit [Quit: Connection closed for inactivity]
davedev24_ has quit []
rkazak has quit [Ping timeout: 252 seconds]
hgl has quit [Max SendQ exceeded]
bintelli has joined #ruby
dorei has quit []
weemsledeux has joined #ruby
Hanumaiv has quit [Quit: Hanumaiv]
duderonomy has quit [Ping timeout: 248 seconds]
jonr22 has quit [Ping timeout: 265 seconds]
fred1807 has joined #ruby
hgl has joined #ruby
zz_Outlastsheep has joined #ruby
plutonic has joined #ruby
hgl has quit [Max SendQ exceeded]
hgl has joined #ruby
M-Technic has quit [Quit: leaving]
ohaibbq has quit [Remote host closed the connection]
bintelli has quit [Ping timeout: 246 seconds]
Eiam_ has joined #ruby
DigitallyBorn has joined #ruby
DigitallyBorn is now known as Guest63262
balazs has quit [Remote host closed the connection]
threh has quit [Quit: Leaving]
Feyn has quit [Ping timeout: 272 seconds]
threh has joined #ruby
diegoviola has joined #ruby
fedexo has joined #ruby
iotouch has joined #ruby
yeticry has quit [Ping timeout: 272 seconds]
freerobby has joined #ruby
yeticry has joined #ruby
yeticry has quit [Ping timeout: 240 seconds]
Guest63262 has quit [Quit: Lost terminal]
yeticry has joined #ruby
hgl has quit [Max SendQ exceeded]
mrmargolis has quit [Remote host closed the connection]
hgl has joined #ruby
freerobby has quit [Quit: Leaving.]
rkazak has joined #ruby
hgl has quit [Max SendQ exceeded]
gilest has joined #ruby
yeticry has quit [Ping timeout: 255 seconds]
gilest has quit [Client Quit]
yeticry has joined #ruby
tus has quit []
Brozo has joined #ruby
threh has quit [Quit: Leaving]
tkuchiki has joined #ruby
ohaibbq has joined #ruby
psy_ has quit [Ping timeout: 255 seconds]
PhantomSpank has quit [Read error: Connection reset by peer]
Mon_Ouie has quit [Quit: WeeChat 1.1.1]
PhantomSpank has joined #ruby
doodlehaus has joined #ruby
Brozo has quit [Ping timeout: 276 seconds]
tubuliferous has joined #ruby
tkuchiki has quit [Ping timeout: 256 seconds]
nux443 has quit [Ping timeout: 245 seconds]
laurentide has quit [Ping timeout: 265 seconds]
doodlehaus has quit [Ping timeout: 276 seconds]
tubuliferous has quit [Ping timeout: 250 seconds]
RegulationD has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sevvie has quit [Ping timeout: 255 seconds]
djbkd has quit [Quit: Leaving...]
ReK2 has joined #ruby
ReK2 is now known as Guest74098
RegulationD has quit [Ping timeout: 250 seconds]
fred1807 has quit [Ping timeout: 252 seconds]
zorak8 has joined #ruby
Guest74098 is now known as ReKWiLdS2
ponga has joined #ruby
fred1807 has joined #ruby
braincrash has quit [Quit: bye bye]
ReKWiLdS2 is now known as rek2wilds
rek2wilds is now known as Guest15199
Guest15199 has quit [Client Quit]
sevenseacat has joined #ruby
ponga has quit [Ping timeout: 264 seconds]
threh has joined #ruby
C1V0 has joined #ruby
braincrash has joined #ruby
eshiffob has joined #ruby
djbkd has joined #ruby
r0bby_ has joined #ruby
robbyoconnor has quit [Ping timeout: 256 seconds]
multi_io_ has quit [Ping timeout: 248 seconds]
cefkamcau has quit [Ping timeout: 245 seconds]
nux443 has joined #ruby
multi_io has joined #ruby
lfox has quit [Ping timeout: 276 seconds]
Feyn has joined #ruby
PhantomSpank has left #ruby [#ruby]
PhantomSpank has joined #ruby
PhantomSpank has quit []
psy_ has joined #ruby
gazay has quit [Quit: gazay]
jeramy_s has quit [Quit: Peace out!]
mostlybadfly has joined #ruby
gazay has joined #ruby
Feyn has quit [Ping timeout: 256 seconds]
nhhagen has joined #ruby
juanpablo___ has joined #ruby
juanpablo___ has quit [Ping timeout: 245 seconds]
workmad3 has joined #ruby
ohaibbq_ has joined #ruby
nhhagen has quit [Ping timeout: 265 seconds]
ohaibbq has quit [Ping timeout: 256 seconds]
Peetooshock has joined #ruby
workmad3 has quit [Ping timeout: 255 seconds]
_blizzy_ has quit [Ping timeout: 272 seconds]
mrmargolis has joined #ruby
sagittarian has quit [Ping timeout: 252 seconds]
Deele has quit [Ping timeout: 256 seconds]
gazay has quit [Quit: gazay]
gazay has joined #ruby
A205B064 has quit [Ping timeout: 264 seconds]
n008f4g_ has quit [Ping timeout: 264 seconds]
diegoviola has quit [Quit: WeeChat 1.1.1]
nobitanobi has joined #ruby
fedexo has quit [Read error: Connection reset by peer]
IrishGringo has quit [Ping timeout: 256 seconds]
sagittarian has joined #ruby
sevenseacat has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
coderhs has quit [Quit: Leaving]
Meow-J has quit [Quit: Connection closed for inactivity]
balazs_ has joined #ruby
dseitz has quit [Quit: Textual IRC Client: www.textualapp.com]
exadeci has quit [Quit: Connection closed for inactivity]
sevenseacat has joined #ruby
Feyn has joined #ruby
sevenseacat has quit [Client Quit]
balazs_ has quit [Ping timeout: 244 seconds]
lidenskap has joined #ruby
nobitanobi has quit [Remote host closed the connection]
nobitanobi has joined #ruby
PaulCapestany has joined #ruby
arescorpio has quit [Excess Flood]
PaulCape_ has quit [Ping timeout: 240 seconds]
vikaton has quit [Quit: Connection closed for inactivity]
qua1 has joined #ruby
StephenOTT has joined #ruby
StephenOTT has quit [Client Quit]
qua has quit [Ping timeout: 256 seconds]
wmoxam_ is now known as wmoxam
iotouch has quit [Quit: This computer has gone to sleep]
wmoxam has joined #ruby
wmoxam has quit [Changing host]
iotouch has joined #ruby
framling has quit [Ping timeout: 256 seconds]
qua1 has quit [Ping timeout: 276 seconds]
dopie has joined #ruby
vivekananda has quit [Ping timeout: 255 seconds]
sargas has joined #ruby
iotouch has quit [Quit: This computer has gone to sleep]
nhhagen has joined #ruby
PaulCape_ has joined #ruby
qua has joined #ruby
PaulCapestany has quit [Ping timeout: 265 seconds]
mgberlin_ has quit [Remote host closed the connection]
Brozo has joined #ruby
nhhagen has quit [Ping timeout: 252 seconds]
The_Phoenix has joined #ruby
psy_ has quit [Ping timeout: 244 seconds]
psy_ has joined #ruby
Brozo has quit [Ping timeout: 255 seconds]
tubuliferous has joined #ruby
mitchellhenke has joined #ruby
RegulationD has joined #ruby
tubuliferous has quit [Ping timeout: 256 seconds]
r0bby_ is now known as robbyoconnor
<ght> Question: What is the way to figure out the difference in days between two date objects?
robert_|disconne has quit [Changing host]
robert_|disconne has joined #ruby
tkuchiki has joined #ruby
lxsameer has joined #ruby
robert_|disconne is now known as robert_
RegulationD has quit [Ping timeout: 256 seconds]
sevenseacat has joined #ruby
Soda has joined #ruby
dcarper_ has quit [Remote host closed the connection]
doodlehaus has joined #ruby
Filete has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tkuchiki has quit [Ping timeout: 256 seconds]
plutonic has quit [Quit: plutonic]
simonewestphal has joined #ruby
duckpunch has quit [Ping timeout: 256 seconds]
luriv has joined #ruby
doodlehaus has quit [Ping timeout: 256 seconds]
predator217 has quit [Ping timeout: 248 seconds]
duckpunch has joined #ruby
Channel6 has quit [Quit: Leaving]
PaulCapestany has joined #ruby
EasyCo has joined #ruby
PaulCape_ has quit [Ping timeout: 248 seconds]
<ght> -=\
<ght> +{}"p0-p
artm has joined #ruby
artm has left #ruby [#ruby]
mrmargolis has quit [Remote host closed the connection]
MatthewsFace has joined #ruby
agent_white has joined #ruby
<agent_white> Evenin'
<sevenseacat> hallo agent_white
pipework has quit [Excess Flood]
pipework has joined #ruby
threh has quit [Quit: Leaving]
<agent_white> sevenseacat: How goes it? :)
<sevenseacat> not bad, having a lazy sunday watching football, you?
<agent_white> sevenseacat: Very nice! Just got off work and about to enjoy my Saturday evening!
<sevenseacat> partyin' partyin'??
musashi1 has quit [Remote host closed the connection]
<agent_white> By myself, pretty much!
* agent_white boogies in chair
<sevenseacat> best kind of party.
<pipework> Party is as party does.
juanpablo___ has joined #ruby
jcdesimp has quit [Quit: Leaving...]
MatthewsFace has quit [Read error: Connection reset by peer]
MatthewsFace has joined #ruby
nobitanobi has quit [Remote host closed the connection]
dcarper has joined #ruby
juanpablo___ has quit [Ping timeout: 276 seconds]
workmad3 has joined #ruby
predator117 has joined #ruby
plutonic has joined #ruby
luriv has quit [Ping timeout: 256 seconds]
workmad3 has quit [Ping timeout: 250 seconds]
PaulCape_ has joined #ruby
PaulCapestany has quit [Ping timeout: 250 seconds]
riotjones has joined #ruby
fred1807 has quit [Quit: fred1807]
PaulCape_ has quit [Max SendQ exceeded]
ohaibbq_ has quit [Remote host closed the connection]
MatthewsFace has quit [Ping timeout: 265 seconds]
PaulCapestany has joined #ruby
nhhagen has joined #ruby
lavros has joined #ruby
riotjones has quit [Ping timeout: 255 seconds]
nobitanobi has joined #ruby
lavros_ has quit [Ping timeout: 265 seconds]
MatthewsFace has joined #ruby
artm has joined #ruby
serivich has quit [Ping timeout: 256 seconds]
icebourg has quit []
nhhagen has quit [Ping timeout: 252 seconds]
toertore has joined #ruby
toretore has quit [Read error: No route to host]
yfeldblum has quit [Ping timeout: 265 seconds]
Rhainur1 has left #ruby [#ruby]
luriv has joined #ruby
MatthewsFace has quit [Read error: Connection reset by peer]
CloCkWeRX has joined #ruby
MatthewsFace has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
Guest25049 has quit [Ping timeout: 244 seconds]
artm has quit [Quit: artm]
Mohan has joined #ruby
MatthewsFace has joined #ruby
Mohan is now known as Guest98449
PaulCape_ has joined #ruby
Mon_Ouie has joined #ruby
yfeldblum has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
kyrylo has joined #ruby
DerisiveLogic has quit [Remote host closed the connection]
DerisiveLogic has joined #ruby
_djbkd has joined #ruby
sargas has quit [Quit: Leaving]
duderonomy has joined #ruby
thatslifeson has quit [Remote host closed the connection]
Brozo has joined #ruby
Axy has quit [Read error: Connection reset by peer]
elaptics_away is now known as elaptics
iotouch has joined #ruby
Mia has joined #ruby
Mia has joined #ruby
zorak8 has quit [Ping timeout: 252 seconds]
PaulCapestany has joined #ruby
LJT has quit [Quit: Sleeping...]
musashi1 has joined #ruby
PaulCape_ has quit [Ping timeout: 244 seconds]
sevenseacat has quit [Quit: Me dun like you no more.]
musashi1 has quit [Remote host closed the connection]
rippa has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tubuliferous has joined #ruby
musashi1 has joined #ruby
riotjones has joined #ruby
unclouded has quit [Ping timeout: 265 seconds]
dcarper has quit [Remote host closed the connection]
_blizzy_ has joined #ruby
tubuliferous has quit [Ping timeout: 250 seconds]
RegulationD has joined #ruby
riotjones has quit [Ping timeout: 255 seconds]
mitchellhenke has quit [Quit: Computer has gone to sleep.]
nhhagen has joined #ruby
jeromelanteri has joined #ruby
Feyn has quit [Ping timeout: 250 seconds]
RegulationD has quit [Ping timeout: 240 seconds]
sameerynho has joined #ruby
basiclaser has joined #ruby
nhhagen has quit [Ping timeout: 252 seconds]
qua has quit [Read error: Connection reset by peer]
A205B064 has joined #ruby
nobitanobi has quit [Remote host closed the connection]
lxsameer has quit [Ping timeout: 256 seconds]
qua has joined #ruby
ta_ has joined #ruby
towler2 has quit [Quit: WeeChat 0.3.8]
duncannz has joined #ruby
zz_Outlastsheep has quit [Ping timeout: 245 seconds]
ponga has joined #ruby
hectortrope has joined #ruby
ohaibbq has joined #ruby
tkuchiki has joined #ruby
lxsameer_ has joined #ruby
_djbkd has quit [Quit: My people need me...]
ponga has quit [Ping timeout: 250 seconds]
doodlehaus has joined #ruby
mrmargolis has joined #ruby
tkuchiki has quit [Ping timeout: 252 seconds]
sameerynho has quit [Ping timeout: 264 seconds]
AlexRussia has joined #ruby
User458764 has joined #ruby
iotouch has quit [Quit: This computer has gone to sleep]
doodlehaus has quit [Ping timeout: 276 seconds]
mrmargolis has quit [Ping timeout: 248 seconds]
qua has quit [Remote host closed the connection]
qua has joined #ruby
chinmay_dd has quit [Ping timeout: 265 seconds]
jeromelanteri has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
juanpablo___ has joined #ruby
jeromelanteri has joined #ruby
dopie has quit [Quit: This computer has gone to sleep]
chinmay_dd has joined #ruby
qua has quit [Remote host closed the connection]
qua has joined #ruby
ohaibbq has quit [Quit: Leaving...]
jeromelanteri has quit [Ping timeout: 250 seconds]
juanpablo___ has quit [Ping timeout: 276 seconds]
SouL_|_ has joined #ruby
zotherstupidguy has joined #ruby
User4587_ has joined #ruby
chinmay_dd has quit [Ping timeout: 250 seconds]
thatslifeson has joined #ruby
User458764 has quit [Ping timeout: 244 seconds]
zotherstupidguy has quit [Client Quit]
ta_ has quit [Remote host closed the connection]
dvlwrk has joined #ruby
PaulCape_ has joined #ruby
thatslifeson has quit [Ping timeout: 256 seconds]
PaulCapestany has quit [Ping timeout: 256 seconds]
vt102 has quit [Ping timeout: 250 seconds]
PaulCape_ has quit [Max SendQ exceeded]
jeromelanteri has joined #ruby
PaulCapestany has joined #ruby
vivekananda has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hanmac has quit [Ping timeout: 256 seconds]
Feyn has joined #ruby
ponga has joined #ruby
roshanavand has joined #ruby
hollywood has joined #ruby
antgel has joined #ruby
idempotent has quit [Remote host closed the connection]
codecop has joined #ruby
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
gagrio has joined #ruby
<shevy> a party with ruby
jeromelanteri has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
jeromelanteri has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
roshanavand1 has joined #ruby
hanmac has joined #ruby
nhhagen has joined #ruby
roshanavand has quit [Ping timeout: 256 seconds]
Oka has quit [Quit: さようなら]
mlev has quit [Read error: Connection reset by peer]
aef_ has quit [Remote host closed the connection]
nhhagen has quit [Ping timeout: 264 seconds]
aef has joined #ruby
zzing has quit [Quit: Textual IRC Client: www.textualapp.com]
PaulCape_ has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
kenndel has joined #ruby
<agent_white> everyday!
antgel has quit [Ping timeout: 264 seconds]
elaptics is now known as elaptics_away
antgel has joined #ruby
agent_white has quit [Ping timeout: 240 seconds]
agent_white has joined #ruby
latemus has joined #ruby
colorisco has quit [Ping timeout: 250 seconds]
lordkryss has joined #ruby
mlev has joined #ruby
ndrei has quit [Ping timeout: 248 seconds]
Peetooshock has quit [Remote host closed the connection]
livcd has quit [Ping timeout: 256 seconds]
latemus has left #ruby [#ruby]
vickleton has joined #ruby
iotouch has joined #ruby
zz_Outlastsheep has joined #ruby
PaulCapestany has joined #ruby
<Brozo> lol
PaulCape_ has quit [Ping timeout: 255 seconds]
lidenskap has quit [Remote host closed the connection]
C1V0 has quit []
tubuliferous has joined #ruby
vivekananda has quit [Quit: Leaving]
iotouch has quit [Quit: This computer has gone to sleep]
Aswebb_ has joined #ruby
towski_ has quit [Remote host closed the connection]
towski_ has joined #ruby
EasyCo has quit [Quit: Connection closed for inactivity]
towski_ has quit [Remote host closed the connection]
RegulationD has joined #ruby
tubuliferous has quit [Ping timeout: 276 seconds]
Pupeno has joined #ruby
iotouch has joined #ruby
exadeci has joined #ruby
unclouded has joined #ruby
elaptics_away is now known as elaptics
RegulationD has quit [Ping timeout: 276 seconds]
mtakkman has joined #ruby
lidenskap has joined #ruby
iotouch has quit [Quit: This computer has gone to sleep]
PaulCape_ has joined #ruby
PaulCapestany has quit [Ping timeout: 245 seconds]
Aswebb_ has quit []
nhhagen has joined #ruby
mrmargolis has joined #ruby
User4587_ has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
nhhagen has quit [Ping timeout: 252 seconds]
mrmargolis has quit [Ping timeout: 256 seconds]
greenbagels_ has joined #ruby
SouL_|_ has quit [Ping timeout: 245 seconds]
mtakkman has quit [Quit: ERC (IRC client for Emacs 24.5.1)]
lkba_ has quit [Ping timeout: 252 seconds]
greenbagels has quit [Ping timeout: 245 seconds]
tkuchiki has joined #ruby
vasilakisfil has joined #ruby
Brozo has quit [Remote host closed the connection]
juanpablo___ has joined #ruby
doodlehaus has joined #ruby
Brozo has joined #ruby
tkuchiki has quit [Ping timeout: 276 seconds]
nszceta has joined #ruby
greenbagels_ has quit [Ping timeout: 256 seconds]
qua has quit [Ping timeout: 264 seconds]
mtakkman has joined #ruby
juanpablo___ has quit [Ping timeout: 255 seconds]
lxsameer_ has quit [Ping timeout: 256 seconds]
Guest98449 has quit [Ping timeout: 265 seconds]
doodlehaus has quit [Ping timeout: 272 seconds]
mtakkman has quit [Remote host closed the connection]
Brozo has quit [Ping timeout: 252 seconds]
Mohan has joined #ruby
Mohan is now known as Guest2311
nhhagen has joined #ruby
thatslifeson has joined #ruby
lxsameer_ has joined #ruby
User458764 has joined #ruby
PaulCapestany has joined #ruby
mtakkman has joined #ruby
PaulCape_ has quit [Ping timeout: 244 seconds]
bkxd has joined #ruby
thatslifeson has quit [Ping timeout: 245 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
zz_Outlastsheep has quit [Ping timeout: 272 seconds]
ndrei has joined #ruby
greenbagels_ has joined #ruby
lxsameer_ has quit [Ping timeout: 276 seconds]
piotrj has quit [Remote host closed the connection]
piotrj has joined #ruby
Jackneill has joined #ruby
lxsameer_ has joined #ruby
rocknrollmarc has joined #ruby
rocknrollmarc has quit [Max SendQ exceeded]
rocknrollmarc has joined #ruby
A205B064 has quit [Ping timeout: 256 seconds]
agent_white has quit [Quit: night]
mtakkman has quit [Quit: ERC (IRC client for Emacs 24.5.1)]
gaussblurinc1 has joined #ruby
nhhagen has quit []
rocknrollmarc has quit [Ping timeout: 252 seconds]
nszceta has quit [Remote host closed the connection]
PaulCape_ has joined #ruby
nszceta has joined #ruby
roshanavand1 has quit [Ping timeout: 264 seconds]
PaulCapestany has quit [Ping timeout: 244 seconds]
roshanavand has joined #ruby
charliesome has quit [Quit: zzz]
m8 has joined #ruby
m8 has quit [Max SendQ exceeded]
blackmesa has joined #ruby
vasilakisfil has quit [Ping timeout: 265 seconds]
roshanavand1 has joined #ruby
roshanavand has quit [Ping timeout: 252 seconds]
SouL_|_ has joined #ruby
alex88 has joined #ruby
vasilakisfil has joined #ruby
lessless has joined #ruby
gaussblurinc1 has quit [Quit: Leaving.]
nfk has joined #ruby
gaussblurinc1 has joined #ruby
kirun has joined #ruby
Stalkr has joined #ruby
KnownSyntax has quit [Quit: Connection closed for inactivity]
Deele has joined #ruby
Brozo has joined #ruby
banister has joined #ruby
last_staff has joined #ruby
greenbagels_ has quit [Quit: Leaving]
Joufflu has quit [Read error: Connection reset by peer]
Brozo has quit [Ping timeout: 244 seconds]
simonewestphal has quit [Quit: simonewestphal]
n008f4g_ has joined #ruby
tubuliferous has joined #ruby
Contigi777 has quit [Ping timeout: 240 seconds]
Stalkr^ has joined #ruby
jimms has joined #ruby
Contigi777 has joined #ruby
Stalkr has quit [Ping timeout: 264 seconds]
tubuliferous has quit [Ping timeout: 244 seconds]
RegulationD has joined #ruby
ghr has joined #ruby
SouL_|_ has quit [Ping timeout: 272 seconds]
RegulationD has quit [Ping timeout: 240 seconds]
ixti has quit [Ping timeout: 250 seconds]
ghr has quit [Read error: No route to host]
ghr has joined #ruby
bluOxigen has joined #ruby
bim has joined #ruby
bim is now known as Guest27140
ghr has quit [Ping timeout: 255 seconds]
PaulCapestany has joined #ruby
nszceta has quit [Read error: Connection reset by peer]
vasilakisfil has quit [Ping timeout: 265 seconds]
nszceta_ has joined #ruby
PaulCape_ has quit [Ping timeout: 252 seconds]
dvlwrk has quit [Ping timeout: 265 seconds]
doodlehaus has joined #ruby
lidenskap has quit [Remote host closed the connection]
Peetooshock has joined #ruby
aryaching has joined #ruby
sdothum has joined #ruby
doodlehaus has quit [Remote host closed the connection]
mrmargolis has joined #ruby
duncannz has quit [Read error: Connection reset by peer]
bkxd has quit [Ping timeout: 255 seconds]
dcarper has joined #ruby
lessless has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
DerisiveLogic has quit [Ping timeout: 250 seconds]
mrmargolis has quit [Ping timeout: 265 seconds]
doodlehaus has joined #ruby
dcarper has quit [Ping timeout: 240 seconds]
bkxd has joined #ruby
doodlehaus has quit [Remote host closed the connection]
Feyn has quit [Ping timeout: 244 seconds]
hollywood has quit [Ping timeout: 265 seconds]
juanpablo___ has joined #ruby
iotouch has joined #ruby
motto has joined #ruby
juanpablo___ has quit [Ping timeout: 240 seconds]
doodlehaus has joined #ruby
User458764 has joined #ruby
yeticry has quit [Ping timeout: 248 seconds]
last_staff has quit [Ping timeout: 244 seconds]
PaulCape_ has joined #ruby
yeticry has joined #ruby
PaulCapestany has quit [Ping timeout: 255 seconds]
thatslifeson has joined #ruby
gaussblurinc1 has quit [Ping timeout: 272 seconds]
lessless has joined #ruby
tkuchiki has joined #ruby
serivich has joined #ruby
hollywood has joined #ruby
thatslifeson has quit [Ping timeout: 256 seconds]
piotrj has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 256 seconds]
piotrj has joined #ruby
CloCkWeRX has quit [Quit: Leaving.]
AlphaAtom has joined #ruby
nszceta_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
edwinvdgraaf has joined #ruby
nszceta has joined #ruby
doodlehaus has quit [Remote host closed the connection]
jimms_ has joined #ruby
jimms has quit [Read error: Connection reset by peer]
Brozo has joined #ruby
rdark has joined #ruby
jimms_ has quit [Read error: Connection reset by peer]
jimms has joined #ruby
lkba has joined #ruby
Brozo has quit [Ping timeout: 264 seconds]
piotrj_ has joined #ruby
narcan has joined #ruby
quimrstorres has joined #ruby
edwinvdgraaf has quit [Read error: Connection reset by peer]
piotrj has quit [Ping timeout: 264 seconds]
edwinvdgraaf has joined #ruby
aryaching has quit [Ping timeout: 256 seconds]
rdark has quit [Quit: leaving]
rdark has joined #ruby
jeromelanteri has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
jeromelanteri has joined #ruby
ixti has joined #ruby
aryaching has joined #ruby
gaussblurinc1 has joined #ruby
PaulCapestany has joined #ruby
hiyosi has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
PaulCape_ has quit [Ping timeout: 244 seconds]
platzhirsch has joined #ruby
rdark has quit [Quit: leaving]
rdark has joined #ruby
ki0 has quit [Remote host closed the connection]
ki0 has joined #ruby
postmodern has quit [Quit: Leaving]
edwinvdgraaf has quit [Remote host closed the connection]
lidenskap has joined #ruby
gaussblurinc1 has quit [Ping timeout: 250 seconds]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<shevy> not much happening today
<shevy> sundays are sleepy days
zz_Outlastsheep has joined #ruby
lidenskap has quit [Ping timeout: 264 seconds]
mostlybadfly has joined #ruby
jimms has quit [Remote host closed the connection]
quimrstorres has quit [Remote host closed the connection]
rocknrollmarc has joined #ruby
jeromelanteri has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
<jhass> DeBot: !hangman ruby
<DeBot> ␣␣␣␣␣␣␣␣␣␣ [] 0/12
<jhass> DeBot: :
<DeBot> ␣␣␣␣␣␣␣␣␣␣ [:] 1/12
<jhass> DeBot: #
<DeBot> ␣␣␣␣#␣␣␣␣␣ [:] 1/12
<jhass> shevy: your turn
<shevy> I only see ugly line noise
quimrstorres has joined #ruby
<jhass> you still didn't fix it?
<shevy> you emit broken characters
<jhass> no, you just can't interpret them
banister has joined #ruby
<shevy> you send correct ones elsewhere so why not above
<jhass> which one should I send?
<ponga> !hangman ruby
<ponga> DeBot: !hangman ruby
<DeBot> ␣␣␣␣#␣␣␣␣␣ [:] 1/12
<shevy> dunno
<ponga> DeBot: s
<DeBot> ␣␣␣␣#␣␣␣␣␣ [:s] 2/12
<shevy> the latter ones :)
<ponga> DeBot: a
<DeBot> ␣␣␣␣#␣␣␣␣␣ [:sa] 3/12
<jhass> shevy: example?
<ponga> isn't it hangman?
<jhass> ponga: it is
<ponga> DeBot: e
<DeBot> ␣␣␣e#␣␣␣␣e [:sa] 3/12
<ponga> gud
<shevy> jhass I can read all but the bot ones so far
<ponga> DeBot: t
<DeBot> ␣␣␣e#␣t␣␣e [:sa] 3/12
<jhass> shevy: you mean you can see this one: ☃ ?
<shevy> no
<ponga> i can
<jhass> see, I said that one several times before
<ponga> jhass: what font is it
jottr has joined #ruby
quimrstorres has quit [Remote host closed the connection]
<jhass> ponga: the snowman? symbola should have it
fgo has joined #ruby
gaussblurinc1 has joined #ruby
<jhass> DeBot: n
<DeBot> ␣␣␣e#␣t␣␣e [:san] 4/12
tomphp has joined #ruby
<Mon_Ouie> DeBot: D
<DeBot> ␣␣␣e#␣t␣␣e [:sand] 5/12
iasoon has joined #ruby
RegulationD has joined #ruby
quimrstorres has joined #ruby
<jhass> DeBot: i
<DeBot> ␣i␣e#␣ti␣e [:sand] 5/12
FaresKAlaboud has quit [Quit: Quit~]
banister has quit [Client Quit]
<Mon_Ouie> DeBot: mu
<DeBot> ␣i␣e#mtime [:sandu] 6/12
<Mon_Ouie> DeBot: Fl
<DeBot> File#mtime [:sandu] 6/12 You won!
PaulCape_ has joined #ruby
<jhass> DeBot: !hangman gems
<DeBot> ␣␣␣␣␣␣␣␣␣ [] 0/12
tkuchiki has joined #ruby
<jhass> DeBot: -_
<DeBot> ␣␣␣␣_␣␣␣␣ [-] 1/12
piotrj_ has quit [Remote host closed the connection]
FaresKAlaboud has joined #ruby
<jhass> DeBot: e
<DeBot> ␣␣␣␣_␣␣␣␣ [-e] 2/12
<jhass> DeBot: ai
<DeBot> ␣␣␣␣_␣␣␣␣ [-eai] 4/12
<jhass> DeBot: ou
<DeBot> ␣␣␣␣_␣␣o␣ [-eaiu] 5/12
<jhass> oO
PaulCapestany has quit [Ping timeout: 256 seconds]
jimms has joined #ruby
<jhass> DeBot: stn
<DeBot> ␣␣␣s_␣␣o␣ [-eaiutn] 7/12
hiyosi has joined #ruby
<jhass> DeBot: r
<DeBot> ␣␣␣s_␣␣o␣ [-eaiutnr] 8/12
<jhass> DeBot: h
<DeBot> ␣␣␣s_␣␣o␣ [-eaiutnrh] 9/12
<jhass> DeBot: l
<DeBot> ␣␣␣s_␣lo␣ [-eaiutnrh] 9/12
RegulationD has quit [Ping timeout: 250 seconds]
<jhass> DeBot: p
<DeBot> ␣␣␣s_␣lo␣ [-eaiutnrhp] 10/12
<jhass> DeBot: b
<DeBot> ␣␣␣s_blo␣ [-eaiutnrhp] 10/12
<jhass> DeBot: g
<DeBot> ␣␣␣s_blog [-eaiutnrhp] 10/12
edwinvdgraaf has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
lolmaus has joined #ruby
mlev has quit [Read error: Connection reset by peer]
Peetooshock has quit [Remote host closed the connection]
sumark_ has quit [Ping timeout: 245 seconds]
pandaant has quit [Remote host closed the connection]
edwinvdgraaf has quit [Remote host closed the connection]
jenrzzz has joined #ruby
sumark has joined #ruby
LJT has joined #ruby
edwinvdgraaf has joined #ruby
LJT has quit [Remote host closed the connection]
quimrstorres has quit [Remote host closed the connection]
tubuliferous has joined #ruby
LJT has joined #ruby
<shevy> got a question
<shevy> does defining a method on a class slow the class down?
quimrstorres has joined #ruby
<shevy> like, let's say I have 500 methods, but only 3 will be used
ghr has joined #ruby
rocknrollmarc has quit [Read error: Connection reset by peer]
<ytti> answer is obviously 'yes'
<wasamasa> shevy: we're no longer in the mainframe times
<ytti> but does it slow down meaningfully in realistic method count
<ytti> i can't answer to that
tubuliferous has quit [Ping timeout: 244 seconds]
<jhass> I would assume no actually
<jhass> since there's a method lookup cache, and once that warmed up it shouldn't make a diff
<jhass> hardly measurable in any case though, yeah
<ytti> for pathological cases questions like these are easily anwered when you mentally extrapolate it to absurd
<ytti> but that answer usually isn't particularly interesting
<jhass> wasamasa: shevy tends to use software that still is though
<wasamasa> jhass: seriously?
<jhass> non of it seems to have unicode support at least
Brozo has joined #ruby
ghr has quit [Ping timeout: 276 seconds]
PaulCapestany has joined #ruby
thatslifeson has joined #ruby
ponga has quit [Remote host closed the connection]
iotouch has quit [Quit: This computer has gone to sleep]
PaulCape_ has quit [Ping timeout: 256 seconds]
yfeldblum has quit [Ping timeout: 265 seconds]
edwinvdgraaf has quit [Remote host closed the connection]
LJT has quit [Quit: Quiting...]
Soda has quit [Remote host closed the connection]
Brozo has quit [Ping timeout: 265 seconds]
<shevy> we don't need unicode
thatslifeson has quit [Ping timeout: 276 seconds]
<jhass> why not?
<shevy> what for?
jenrzzz has quit [Ping timeout: 245 seconds]
<wasamasa> to end encoding madness
mlev has joined #ruby
<shevy> unicode has solved the encoding madness?
<jhass> ^ one encoding for all scripts
<wasamasa> unless you happen to be a native speaker of an insufficiently represented asian script of course
<jhass> pretty much
<shevy> I am surprised - I am gonna take you guys as quote here
<wasamasa> then you're allowed to rage against the unicode
<shevy> wat
<wasamasa> shevy: unicode is a concept
<shevy> do you hate asians
<wasamasa> shevy: no, it's just a fact that some of them can't write their name using unicode
<shevy> just because they draw asciimen as font symbols
<shevy> unicode even has the snowman
<shevy> which looks very similar to chinese
<jhass> there's still enough room to fix ^ though
<shevy> I like the emoji keyboard
Vektorweg1 has joined #ruby
<shevy> ? Heavy black heart
<shevy> haha
<wasamasa> jhass: oh sure, but I get the impression that the latest additions do not address these problems
Peetooshock has joined #ruby
<wasamasa> "ҭЋаt ωoulδ βε σutragєѳuѕ."
<jhass> just saying it's not a reason to reinvent unicode yet
Vektorweg1 has left #ruby [#ruby]
blackmesa has quit [Ping timeout: 255 seconds]
<shevy> you guys are not keeping things simple!
<jhass> shevy: we could play chess with unicode: ♔
lolmaus has quit [Quit: Konversation terminated!]
<jhass> we are, we make the question "which encoding should I use?" obsolete
<shevy> 640kB ought to be enough for everyone
lolmaus has joined #ruby
<shevy> you make it larger and larger and bigger and bigger
<shevy> look at the snowman!
<wasamasa> shevy: unicode is the concept of having numbers (codepoints) associated to glyphs
<wasamasa> shevy: the numbers are encoded in an utf-* encoding
<jhass> U+2603, two bytes
<wasamasa> shevy: like utf-8, the most commonly used one on the internet
<wasamasa> shevy: because it's compatible with ascii
lukequaint has joined #ruby
<shevy> UTF-16 is better
<shevy> it has a higher number
<jhass> UTF-32 you mean
<wasamasa> I bet that's what the java folks thought
<jhass> but that's wasteful
alex88 has quit [Remote host closed the connection]
<shevy> oh god
<shevy> java
<shevy> it's now ranked #1 on TIOBE
<jhass> UTF-8 can represent all of it
<jhass> UTF-16 can only represent half
<shevy> are you saying, the higher the number, the worse it gets?
<wasamasa> s/worse/more wasteful/
<jhass> UTF-8 is the most efficient encoding, it can represent all unicode copdepoints while using the fewest bytes per codepoint possible
<jhass> UTF-16 always uses two bytes, UTF-32 always uses four bytes
<wasamasa> it's a bit slower/harder to deal with
gazay has quit [Read error: Connection reset by peer]
mrmargolis has joined #ruby
<wasamasa> or so the argumentation goes in favour of using utf-16/32 in language implementations for internal encoding
quimrstorres has quit [Remote host closed the connection]
sagittarian has quit [Ping timeout: 252 seconds]
towski_ has joined #ruby
<jhass> well, you don't really use UTF-16 or UTF-32 internally either, you'd use an array of unsigned 16/32 bit codepoints instead of storing the string encoded in a byte buffer
aryaching has quit [Ping timeout: 240 seconds]
<jhass> it's a tradeoff between memory footprint and access efficiency, yeah
gazay has joined #ruby
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
<jhass> shevy: you didn't answer my question though, why not use Unicode/UTF-8 as default?
mrmargolis has quit [Ping timeout: 272 seconds]
<shevy> jhass I can't
<jhass> why not?
<shevy> I'd have to change everything including my editor
<toertore> oh no
DEA7TH has joined #ruby
towski_ has quit [Ping timeout: 272 seconds]
<jhass> I don't even investigate if it's worth using a software if it doesn't have UTF-8 support these days
<toertore> i didn't have to change anything to switch to utf8
DerisiveLogic has joined #ruby
<shevy> toertore I guess you don't use german umlauts
DerisiveLogic has quit [Remote host closed the connection]
<jhass> I do, lots
gemini_cricket_ has joined #ruby
DerisiveLogic has joined #ruby
<toertore> i was being sarcastic
<shevy> jhass yeah but you also use sublime
<toertore> switch = change
aryaching has joined #ruby
<jhass> shevy: all editors I ever touched supported UTF-8
<jhass> I bet even notepad.exe does
juanpablo___ has joined #ruby
<shevy> jhass can you install bluefish 1 from here please :) http://www.bennewitz.com/bluefish/stable/source/bluefish-1.0.7.tar.gz
<jhass> no, why should I
banister has joined #ruby
<shevy> because you could help me switch
gemini_cricket_ has quit [Client Quit]
nszceta has quit [Quit: Textual IRC Client: www.textualapp.com]
<jhass> why would that help
<shevy> it would be a very noble gesture from you
edwinvdgraaf has joined #ruby
<shevy> because you could provide specific routes of action
<jhass> not going to write a package for it
<shevy> those stinkers!
<shevy> but it's ok, you can compile from source
<jhass> no, I won't pollute my system that way
<shevy> you only need gtk2
<shevy> that is ok, you can do "make uninstall" afterwards right?
<jhass> besides I still don't get why it would help with anything
<jhass> IME those don't work
<jhass> that's why we have package managers
<shevy> you are a hardy man
<shevy> and everyone has a different package manager
enebo has joined #ruby
fred1807 has joined #ruby
<jhass> what feature of bluefish would you miss in another editor?
<shevy> many things - for instance, you can freely re-assign keyboards through the menu
<shevy> the default text colouring is superior; it is essentially a better gedit variant
<ytti> vim 4 lyfe
sagittarian has joined #ruby
juanpablo___ has quit [Ping timeout: 272 seconds]
<shevy> I don't even know if you can have projects in gedit
claw has quit [Ping timeout: 250 seconds]
<shevy> actually, let me try out the latest gedit 3.16.1
claw has joined #ruby
<shevy> lots of schemes, lots of crap
<shevy> sublime has some cool features though
<shevy> I like that jump-window thingy
PaulCape_ has joined #ruby
<shevy> dunno much about the other features it has
<shevy> jhass do you have a terminal in sublime? like vte or something similar
ponga has joined #ruby
parus_ is now known as parus
<jhass> I'm sure there's a plugin somewhere
PaulCapestany has quit [Ping timeout: 256 seconds]
lessless has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ki0 has quit [Remote host closed the connection]
<jokke> hey
<jokke> ?
<jokke> i can't define abbreviations in my vimrc
<jokke> get an error E492: Not an editor command: Abolish widht width
PaulCape_ has quit [Max SendQ exceeded]
<elaptics> I use it, but never used it for abbreviations
<jokke> elaptics: hm..
<jokke> might be an issue with NeoBundle..
<elaptics> to be accurate - I've never tried. I only use it for the convenient renaming
<jokke> elaptics: would you mind trying to define an abbreviation in your vimrc?
<jokke> except if you're using neobundle too
<elaptics> I don't even know what neobundle is - so pretty sure I'm not using that :)
<jokke> kay :)
PaulCapestany has joined #ruby
<jokke> supports lazy loading of plugins etc
<elaptics> jokke: I just tried abbreviations but didn't seem to do anything...
ponga has quit [Remote host closed the connection]
<jokke> elaptics: so what exactly did you do?
edwinvdgraaf has quit [Remote host closed the connection]
<jokke> :Abolish widht width
<jokke> should correct widht to width when you write
<elaptics> I tried normal vim abbreviations and the abolish commands as per readme - just running them in normal and then switched to insert and wrote the incorrect words but they didn't correct themselves
<jokke> you need to add at least one char after widht
bkxd has quit [Ping timeout: 248 seconds]
<elaptics> I did
<jokke> and nothing happened?
<jokke> that's weird. using :Abolish works for me
<jokke> just not in vimrc
<elaptics> just checking I don't have something preventing in my vimrc
iotouch has joined #ruby
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
<elaptics> works if I use something other than space
jimms has quit [Read error: Connection reset by peer]
jimms_ has joined #ruby
<jokke> ok... weird
<jokke> works with space here
<jokke> so what if you try defining it in your vimrc?
<elaptics> it maybe something to do with autopairing
<jokke> hm ok
sevenseacat has joined #ruby
<elaptics> ah, yeah it was an autoclose plugin causing it
ndrei has quit [Ping timeout: 256 seconds]
<elaptics> but now that I've removed it Abolish doesn't work from my vimrc only if I add it as a command directly
iasoon has quit [Quit: WeeChat 1.1.1]
iasoon has joined #ruby
dseitz has joined #ruby
mrmargolis has joined #ruby
<elaptics> jokke: may be relevant https://github.com/tpope/vim-abolish/issues/25
delinquentme has joined #ruby
<delinquentme> $ gem install rails -v 4.2.0 this installs a ton of packages
PaulCape_ has joined #ruby
<delinquentme> $ gem uninstall rails -v 4.2.0 completed too quickly for me to believe that it uninstalled all of those packages
iotouch has quit [Quit: This computer has gone to sleep]
bluOxigen has quit [Ping timeout: 250 seconds]
PaulCapestany has quit [Ping timeout: 256 seconds]
Stalkr^ has quit [Quit: Leaving...]
<elaptics> jokke: Abolish! works for me
<jokke> oooh
<jokke> cool
<jokke> thanks!
<elaptics> jokke: also thanks to you - I think I'm now going to start using abbreviations :)
<jokke> elaptics: win win! :)
edwinvdgraaf has joined #ruby
lolmaus has quit [Ping timeout: 256 seconds]
<shevy> whoa
<shevy> a double win
<shevy> we are getting very excited here
lxsameer_ has quit [Quit: Leaving]
freddie76 has joined #ruby
<freddie76> ciao
<freddie76> !list
freddie76 has left #ruby [#ruby]
baash05 has joined #ruby
thumpba has joined #ruby
TDJACR has quit [Ping timeout: 272 seconds]
lidenskap has joined #ruby
Soda has joined #ruby
jimms_ has quit [Remote host closed the connection]
thumpba has quit [Ping timeout: 240 seconds]
TDJACR has joined #ruby
Brozo has joined #ruby
lidenskap has quit [Ping timeout: 264 seconds]
blizzy has joined #ruby
JDiPierro has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
parduse has quit [Remote host closed the connection]
ponga has joined #ruby
Brozo has quit [Ping timeout: 252 seconds]
_blizzy_ has quit [Ping timeout: 244 seconds]
PaulCapestany has joined #ruby
centrx has joined #ruby
Matachines has joined #ruby
baash05 has quit [Ping timeout: 240 seconds]
parduse has joined #ruby
PaulCape_ has quit [Ping timeout: 255 seconds]
Matachines has quit [Client Quit]
jimms has joined #ruby
RegulationD has joined #ruby
platosha has quit [Quit: Leaving]
RegulationD has quit [Ping timeout: 240 seconds]
edwinvdgraaf has quit [Remote host closed the connection]
yxhuvud has quit [Remote host closed the connection]
platosha has joined #ruby
tubuliferous has joined #ruby
juanpablo___ has joined #ruby
tkuchiki has quit [Remote host closed the connection]
Rollabunna has quit [Quit: Leaving...]
tkuchiki has joined #ruby
tubuliferous has quit [Ping timeout: 244 seconds]
doodlehaus has joined #ruby
claw has quit [Ping timeout: 244 seconds]
vikaton has joined #ruby
lesnik_ has quit [Quit: leaving]
PaulCape_ has joined #ruby
juanpablo___ has quit [Ping timeout: 276 seconds]
momomomomo has joined #ruby
User458764 has joined #ruby
tkuchiki has quit [Ping timeout: 250 seconds]
quimrstorres has joined #ruby
PaulCapestany has quit [Ping timeout: 244 seconds]
quimrstorres has quit [Remote host closed the connection]
thatslifeson has joined #ruby
Abhijit has joined #ruby
Abhijit has left #ruby [#ruby]
ndrei has joined #ruby
doodlehaus has quit [Remote host closed the connection]
thatslifeson has quit [Ping timeout: 264 seconds]
tkuchiki has joined #ruby
lessless has joined #ruby
zeleiadi has joined #ruby
relix has joined #ruby
claw has joined #ruby
edwinvdgraaf has joined #ruby
zeleiadi has left #ruby [#ruby]
alex88 has joined #ruby
pwattste has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
DEA7TH has quit [Changing host]
DEA7TH has joined #ruby
davedev24_ has joined #ruby
ndrei has quit [Ping timeout: 255 seconds]
iotouch has joined #ruby
lfox has joined #ruby
ndrei has joined #ruby
alex88 has quit [Ping timeout: 256 seconds]
Zai00 has joined #ruby
iamninja_ has quit [Read error: Connection reset by peer]
mtakkman has joined #ruby
iamninja_ has joined #ruby
rocknrollmarc has joined #ruby
mistergibson has quit [Ping timeout: 255 seconds]
ndrei has quit [Ping timeout: 276 seconds]
ndrei has joined #ruby
mgberlin has joined #ruby
mistergibson has joined #ruby
blizzy is now known as _blizzy_
serivich has quit [Ping timeout: 240 seconds]
ghr has joined #ruby
quimrstorres has joined #ruby
dfinninger has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
serivich has joined #ruby
mtakkman has quit [Quit: ERC (IRC client for Emacs 24.5.1)]
dfinninger has joined #ruby
workmad3 has joined #ruby
dfinninger has quit [Remote host closed the connection]
quimrstorres has quit [Remote host closed the connection]
dfinninger has joined #ruby
mlev has quit [Read error: Connection reset by peer]
workmad3 has quit [Ping timeout: 252 seconds]
DerisiveLogic has quit [Ping timeout: 256 seconds]
pwattste has quit [Ping timeout: 245 seconds]
serivich has quit [Ping timeout: 255 seconds]
dfinninger has quit [Ping timeout: 244 seconds]
lolmaus has joined #ruby
Pharaoh2 has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
ascarter has joined #ruby
doertedev has joined #ruby
ascarter has quit [Client Quit]
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
dcarper has joined #ruby
ascarter has joined #ruby
iotouch has quit [Quit: 离开]
mlev has joined #ruby
serivich has joined #ruby
shellfu has joined #ruby
yxhuvud has joined #ruby
PaulCapestany has joined #ruby
greenbagels has joined #ruby
lukequaint has quit [Quit: Bye!]
PaulCape_ has quit [Ping timeout: 255 seconds]
momomomomo has quit [Quit: momomomomo]
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby
shellfu has quit [Remote host closed the connection]
fbidu has joined #ruby
thatslifeson has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 264 seconds]
ryan___ has joined #ruby
dfinninger has joined #ruby
mitchellhenke has joined #ruby
thatslifeson has quit [Ping timeout: 255 seconds]
dfinninger has quit [Remote host closed the connection]
fbidu has quit [Ping timeout: 265 seconds]
ghr has quit [Ping timeout: 256 seconds]
momomomomo has joined #ruby
edwinvdgraaf has joined #ruby
edwinvdgraaf has quit [Read error: Connection reset by peer]
edwinvdgraaf has joined #ruby
mlev has quit [Read error: Connection reset by peer]
Brozo has joined #ruby
fred1807 has quit [Ping timeout: 248 seconds]
shellfu has joined #ruby
lfox has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lolmaus has quit [Ping timeout: 256 seconds]
lolmaus has joined #ruby
alex88 has joined #ruby
Brozo has quit [Ping timeout: 256 seconds]
gagrio has quit [Ping timeout: 245 seconds]
PaulCape_ has joined #ruby
ghr has joined #ruby
PaulCapestany has quit [Ping timeout: 248 seconds]
Rollabunna has joined #ruby
Matachines has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
gaussblurinc1 has quit [Quit: Leaving.]
alex88 has quit [Ping timeout: 256 seconds]
sankaber has joined #ruby
perrier has quit [Remote host closed the connection]
audy has quit [Remote host closed the connection]
enebo has quit [Quit: enebo]
dfinninger has joined #ruby
fbidu has joined #ruby
joast has quit [Quit: Leaving.]
sankaber has quit [Ping timeout: 250 seconds]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
RegulationD has joined #ruby
mlev has joined #ruby
ascarter has joined #ruby
mitchellhenke has quit [Quit: Computer has gone to sleep.]
jhass has quit [Quit: Bye]
centrx has quit [Ping timeout: 276 seconds]
crowell_ has joined #ruby
ndrei has quit [Ping timeout: 252 seconds]
jhass has joined #ruby
fbidu has quit [Ping timeout: 245 seconds]
RegulationD has quit [Ping timeout: 250 seconds]
crowell has quit [Remote host closed the connection]
ndrei has joined #ruby
crowell_ is now known as crowell
plutonic has quit [Quit: plutonic]
crowell has quit [Changing host]
crowell has joined #ruby
iasoon has quit [Ping timeout: 256 seconds]
dfinninger has quit [Read error: Connection reset by peer]
FernandoBasso has joined #ruby
crowell has quit [Remote host closed the connection]
dfinninger has joined #ruby
crowell has joined #ruby
jottr has joined #ruby
doertedev has quit [Ping timeout: 250 seconds]
Matachines has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yaw has joined #ruby
crowell_ has joined #ruby
momomomomo has quit [Quit: momomomomo]
lfox has joined #ruby
JDiPierro has quit [Remote host closed the connection]
jwinder has joined #ruby
tubuliferous has joined #ruby
Mon_Ouie has quit [Ping timeout: 250 seconds]
freerobby has joined #ruby
idealexit has joined #ruby
centrx has joined #ruby
juanpablo___ has joined #ruby
PaulCapestany has joined #ruby
doertedev has joined #ruby
lfox has quit [Ping timeout: 256 seconds]
pauly_oc has joined #ruby
OrbitalKitten has joined #ruby
tubuliferous has quit [Ping timeout: 256 seconds]
konsolebox has joined #ruby
juanpablo___ has quit [Ping timeout: 240 seconds]
PaulCape_ has quit [Ping timeout: 256 seconds]
roshanavand has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
roshanavand1 has quit [Ping timeout: 252 seconds]
pauly_oc has quit [Client Quit]
dfinninger has joined #ruby
joast has joined #ruby
dfinninger has quit [Remote host closed the connection]
SouL_|_ has joined #ruby
fbidu has joined #ruby
roshanavand has quit [Remote host closed the connection]
jottr has quit [Ping timeout: 252 seconds]
ki0 has joined #ruby
thecoolguy has quit [Ping timeout: 256 seconds]
bruno- has joined #ruby
bruno- is now known as Guest23900
wwwBUKOLAYcom has joined #ruby
crowell has quit [Remote host closed the connection]
havenwood has joined #ruby
crowell has joined #ruby
crowell has quit [Changing host]
crowell has joined #ruby
lolmaus has quit [Read error: Connection reset by peer]
Fingel has quit [Ping timeout: 264 seconds]
lolmaus has joined #ruby
bruno-_ has joined #ruby
Guest23900 has quit [Ping timeout: 244 seconds]
<pipework> elaptics: As in iabbrev and abbrev?
freerobby has quit [Quit: Leaving.]
crowell has quit [Remote host closed the connection]
bruno-_ has quit [Ping timeout: 244 seconds]
<elaptics> pipework: yes, that and abolish's extras
bruno-_ has joined #ruby
ki0 has quit [Remote host closed the connection]
shevy has quit [Ping timeout: 252 seconds]
zorak8 has joined #ruby
dfinninger has joined #ruby
shellfu has quit [Remote host closed the connection]
Channel6 has joined #ruby
quimrstorres has joined #ruby
gaussblurinc1 has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
PaulCape_ has joined #ruby
dfinninger has joined #ruby
Filete has joined #ruby
konsolebox has quit [Ping timeout: 264 seconds]
<duderonomy> interesting... Glue is like MPW shell, reinvented
PaulCapestany has quit [Ping timeout: 256 seconds]
dfinninger has quit [Read error: Connection reset by peer]
Brozo has joined #ruby
dfinninger has joined #ruby
PaulCape_ has quit [Max SendQ exceeded]
ghr has quit [Ping timeout: 256 seconds]
rdark has quit [Quit: leaving]
rdark has joined #ruby
mlev has quit [Read error: Connection reset by peer]
PaulCapestany has joined #ruby
lolmaus has quit [Ping timeout: 256 seconds]
shevy has joined #ruby
lolmaus has joined #ruby
sagittarian has quit [Ping timeout: 252 seconds]
workmad3 has joined #ruby
Brozo has quit [Ping timeout: 248 seconds]
doodlehaus has joined #ruby
gkra_ has quit [Ping timeout: 240 seconds]
yqt has joined #ruby
workmad3 has quit [Ping timeout: 264 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
dcarper has quit [Remote host closed the connection]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lolmaus_ has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ki0 has joined #ruby
lkba has quit [Ping timeout: 276 seconds]
icebourg has joined #ruby
mikecmpbll has joined #ruby
User458764 has joined #ruby
OrbitalKitten has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
threh has joined #ruby
sagittarian has joined #ruby
lolmaus has quit [Ping timeout: 256 seconds]
dfinninger has joined #ruby
ascarter has joined #ruby
blizzy has joined #ruby
<hanmac> shevy: the cats i have at home are very talkactive. one was at the door ... i look down, the cat does look up ... i ask "do you want out?" the cat says: "ya", i ask: "did you ask my mother?" the cat says: "ya", and i ask again: "what did she say?" and the cat says: "na" ;P
doodlehaus has quit [Remote host closed the connection]
dfinninger has quit [Read error: Connection reset by peer]
greenbagels_ has joined #ruby
<shevy> yeah
<shevy> cats talk quite a lot
<cats> I do talk a bit
<shevy> lol what the...
balazs_ has joined #ruby
dfinninger has joined #ruby
balazs_ has quit [Remote host closed the connection]
platzhirsch has quit [Quit: Leaving.]
PaulCape_ has joined #ruby
<shevy> there is also a catsoup here
balazs_ has joined #ruby
<hanmac> shevy one of the cats did call my mother "mama", is she my brother now? ;P
mlev has joined #ruby
_blizzy_ has quit [Ping timeout: 256 seconds]
thatslifeson has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
jimms has quit [Read error: Connection reset by peer]
<shevy> nah
<shevy> too much fur
<shevy> too small
<shevy> and a big long tail
jimms has joined #ruby
<cats> haha
greenbagels has quit [Ping timeout: 244 seconds]
dfinninger has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
dfinninger has quit [Read error: Connection reset by peer]
dfinninger has joined #ruby
jimms has quit [Read error: Connection reset by peer]
dfinninger has quit [Read error: Connection reset by peer]
jimms has joined #ruby
fgo has quit [Quit: WeeChat 1.1.1]
ki0 has quit [Remote host closed the connection]
dfinninger has joined #ruby
juanpablo___ has joined #ruby
greenbagels_ has quit [Ping timeout: 256 seconds]
RegulationD has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
edwinvdgraaf has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
edwinvdgraaf has joined #ruby
ki0 has joined #ruby
hmsimha has joined #ruby
dfinninger has joined #ruby
juanpablo___ has quit [Ping timeout: 252 seconds]
ki0 has quit [Remote host closed the connection]
PaulCapestany has joined #ruby
RegulationD has quit [Ping timeout: 256 seconds]
jottr has joined #ruby
PaulCape_ has quit [Ping timeout: 252 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ki0 has joined #ruby
jimms has quit [Remote host closed the connection]
doertedev has quit [Quit: Lost terminal]
relix has joined #ruby
ghr has joined #ruby
jottr has quit [Ping timeout: 250 seconds]
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
OrbitalKitten has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
dfinninger has quit [Read error: Connection reset by peer]
swgillespie has joined #ruby
dfinninger has joined #ruby
griffindy has joined #ruby
fred1807 has joined #ruby
gaussblurinc1 has quit [Quit: Leaving.]
jwinder has quit [Ping timeout: 272 seconds]
PaulCape_ has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
dfinninger has joined #ruby
gaussblurinc1 has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
sevenseacat has quit [Quit: Me dun like you no more.]
FernandoBasso has quit [Ping timeout: 255 seconds]
dfinninger has quit [Read error: Connection reset by peer]
dorei has joined #ruby
FernandoBasso has joined #ruby
<shevy> hanmac why do you we talk about cats
<shevy> more than ruby
dfinninger has joined #ruby
towski_ has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
FernandoBasso has quit [Read error: Connection reset by peer]
towski_ has quit [Read error: Connection reset by peer]
<shevy> that should have been "why do we"
thoughnut has joined #ruby
<shevy> my brain is having another day off again
towski_ has joined #ruby
<shevy> I am autogenerating SQL statements through ruby right now :(
<thoughnut> what's the basics for ruby?
<shevy> depends. you know another programming language already?
dfinninger has joined #ruby
<thoughnut> yes
<shevy> hmm ok then you probably may think of this too simple: https://pine.fm/LearnToProgram/
tus has joined #ruby
<shevy> but I would go through it once anyway
<shevy> afterwards you will at least know blocks and procs
<hanmac> thoughnut: you mean what did ruby evolve from, or what you self need to learn ruby?
<shevy> I also recommend this old matz interview - the philosophy of ruby. it helps explain the way of ruby: http://www.artima.com/intv/ruby.html
<shevy> as for books, I think the pickaxe 3 is ok
<shevy> you have the whole stdlib reference in the second part
<thoughnut> hanmac what i self need to learn rbuy
<shevy> so even when you are no longer a newbie, you can still dig into the stdlib and use the various examples there
<thoughnut> certainly
<shevy> I think it is no longer called pickaxe
<shevy> but I still call it like that
<shevy> thoughnut though, if you actually know another programming language quite well, then you should be able to easily transition into ruby from zero as you go, just using online resources alone, the ruby webforum, the IRC channel here or on #ruby-lang
lidenskap has joined #ruby
<thoughnut> is #ruby-lang only for ruby lang?\
<shevy> when I was new to ruby, I bought the pickaxe 2 I think it was it. it was very good. I lateron bought pickaxe 3 too but it was not as useful to me anymore, so I was unsure whether that investment was worth the second time. first time was worth it though
<shevy> #ruby-lang is the "official" channel
<shevy> we are the liberal rebels here
ghr has quit [Read error: Connection reset by peer]
garethrees has joined #ruby
towski_ has quit [Ping timeout: 272 seconds]
<shevy> problem is, some people are only on #ruby, and some only on #ruby-lang, and vice versa. for instance, chris2 and manveru are only on #ruby
<thoughnut> so I'm in the r8 place
<shevy> and drbrain
<shevy> dunno
<shevy> those were quite influential people
<shevy> check out #ruby-lang at any rate :D
<thoughnut> yea for sure
<thoughnut> :D
<thoughnut> no thx I'll keep my moneye for now p:
<shevy> chris2 wrote rack, drbrain was one of the ones that got rubygems started (I think), manveru wrote ramaze (which I think has sort of become inactive when rack + sinatra became more popular)
<thoughnut> how can I save info on irssi?/
garethrees has quit [Client Quit]
<hanmac> shevy hm is #ruby-lang more like the republic or more like the imperion? ;P
<thoughnut> I use this but I'm not used to copy-psting
<shevy> hanmac dunno. we are more in numbers here
<thoughnut> so it's republic :P
<shevy> I guess
<hanmac> shevy like the clone troops or the droids? ;P
<shevy> jhass is the rebel leader
<thoughnut> those are quite well with literals
<shevy> he suggested to merge both channels
<thoughnut> not to sound very arrogant
<shevy> now he is an enemy on #ruby-lang
<thoughnut> it's impossible
shredding has joined #ruby
<thoughnut> jhass is a genius he knows what to do, but that's impossible
<shevy> hehe
<thoughnut> :D ofc
serivich has quit [Ping timeout: 240 seconds]
<shevy> perhaps if matz would decide on something
<thoughnut> let me see that
<shevy> the thing is, #ruby as name is more logical. it's like with #python
musashi1 has quit [Ping timeout: 250 seconds]
<hanmac> thoughnut: about learning ruby, did you already have exp in other programming languages?
<shevy> yeah he wrote that
PaulCapestany has joined #ruby
Rollabunna has quit [Remote host closed the connection]
ukk has joined #ruby
Rollabunna has joined #ruby
doertedev has joined #ruby
lessless has quit [Ping timeout: 264 seconds]
PaulCape_ has quit [Ping timeout: 248 seconds]
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mgberlin has quit [Remote host closed the connection]
jheg has joined #ruby
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ascarter has joined #ruby
<thoughnut> I'm looking for that article now
ukk has quit [Quit: leaving]
<thoughnut> brb
OrbitalKitten has joined #ruby
fbidu has quit [Quit: Leaving]
aryaching has quit []
tubuliferous has joined #ruby
The_Phoenix has quit [Ping timeout: 244 seconds]
<thoughnut> cr
<thoughnut> crap the book is too expensive
Brozo has joined #ruby
The_Phoenix has joined #ruby
<shevy> use online resources!
<xxneolithicxx> which book
PaulCape_ has joined #ruby
<shevy> I collected a lot of information from different areas
<shevy> after 2 or 3 weeks you'll have a lot of knowledge stored locally thoughnut
<shevy> I stored those things in german though - my brain is much faster reading german still ... :\
<thoughnut> however it works if you get the idea that One of the design philosophies in the Python community is providing one and only one way to do things.
<thoughnut> shevy mine too :\
<shevy> \o/
tubuliferous has quit [Ping timeout: 248 seconds]
<thoughnut> gotta go take a coffee break, my mind goes creepy when I'm having it too fast
PaulCapestany has quit [Ping timeout: 256 seconds]
<thoughnut> \o/
<shevy> well ruby has a similar philosophy in one regards
<shevy> you can pick "the best" philosophy
<thoughnut> yes ofc
<shevy> and stick to it
<shevy> the more-than-one-way is a focus on added flexibility
<thoughnut> the best philosophy is to have it quick and fast
yqt has quit [Ping timeout: 248 seconds]
tomphp has joined #ruby
<shevy> very often!
<shevy> until you must fly to the mars
<thoughnut> oh no...still got so much to do here
<thoughnut> :P
<xxneolithicxx> free for personal use
jimms has joined #ruby
<thoughnut> yes thanks xxneolithicxx
<xxneolithicxx> dl link is the first one
dcarper has joined #ruby
<thoughnut> ofc thx
dfinninger has quit [Remote host closed the connection]
gayfag has joined #ruby
<xxneolithicxx> shevy: you write some damn good english if german is your first language
lavros has quit [Quit: leaving]
<gayfag> that's because english and german are nearly identical
OrbitalKitten has quit [Quit: Textual IRC Client: www.textualapp.com]
tonyhb has joined #ruby
<gayfag> the english language is german for stupid people
<xxneolithicxx> lol
<apeiros> !kick gayfag we know who you are
gayfag was kicked from #ruby by ruboto [we know who you are]
<apeiros> first! sorry havenwood
<havenwood> apeiros: Fast on the draw!
hiyosi has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
kyrylo has quit [Ping timeout: 250 seconds]
Matachines has joined #ruby
ni291187 has joined #ruby
The_Phoenix has quit [Read error: Connection reset by peer]
* xxneolithicxx makes mental note to stear clear of the +o lol
shuber_ has joined #ruby
jheg has quit [Ping timeout: 256 seconds]
tonyhb has quit [Ping timeout: 245 seconds]
<adaedra> well, he's right on some point, english and german have some common things
FernandoBasso has joined #ruby
yqt has joined #ruby
ni291187 has quit [Remote host closed the connection]
balazs_ has quit [Remote host closed the connection]
<hfp> Hi all, I have a gem and I setup a :info rake task. But when I go into the gem's path and type `rake my_gem:info`, I get `Don't know how to build task 'my_plugin:info'`. Where do I start my investigation?
<xxneolithicxx> that could be said of most languages though especially if they come from a latin base
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<apeiros> hfp: your task is toplevel :info?
<apeiros> then it's just `rake info`, not `rake my_gem:info`
<adaedra> xxneolithicxx: go deeper: Germanic languages :)
<hfp> apeiros: well I have `tasks do namespace :my_gem do ...`
<apeiros> tasks do?
<hfp> so I'm assuming it's not top level?
<apeiros> hfp: stop the riddling and gist the code.
<adaedra> hfp: you can see available tasks with rake -T
<apeiros> and that's also a good idea :)
Morkel has joined #ruby
<jhass> -aT for those that have no description too
Morkel has quit [Client Quit]
hectortrope has quit [Quit: WeeChat 0.4.2]
<apeiros> hfp: oh, custom dsl to define rake tasks. how annoying.
<hfp> the only tasks I have with `rake -aT` are build, install and release
hectortrope has joined #ruby
Morkel has joined #ruby
<apeiros> then I guess the plugin's rake task defining code is not run
<apeiros> I'd assume that it is intended to be run in the plugin-hosting app
relix has joined #ruby
<apeiros> if you want to define tasks for your gem directly, edit the Rakefile in your gem.
<hfp> ah if I go to the root of the ruby app I have more tasks in `rake -aT`, including my defined tasks in the plugin
<hfp> Thanks apeiros, I'll tryand figure our how that plugin system wants it
gigetoo has quit [Ping timeout: 240 seconds]
mostlybadfly has quit [Quit: Connection closed for inactivity]
nfk|laptop has joined #ruby
claw_ has joined #ruby
claw has quit [Ping timeout: 265 seconds]
griffindy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dopie has joined #ruby
chinmay_dd has joined #ruby
n008f4g_ has quit [Ping timeout: 256 seconds]
PaulCapestany has joined #ruby
claptor has joined #ruby
PaulCape_ has quit [Ping timeout: 256 seconds]
gigetoo has joined #ruby
basiclaser has quit [Quit: Connection closed for inactivity]
Musashi007 has joined #ruby
jheg has joined #ruby
rocknrollmarc has quit [Ping timeout: 245 seconds]
ddarkpassenger has joined #ruby
gayfag has joined #ruby
<gayfag> can someone help me make a rails version of http://nambla.org/
<jhass> !mute gayfag
lkba has joined #ruby
<centrx> jhass, please don't use that language here
pontiki has joined #ruby
<pontiki> hi, folks
<apeiros> hi pontiki
<pontiki> watching some great talks from BathRuby2015
<apeiros> BathRuby? you're all in swimsuits in a pool?
<pontiki> wouldn't that be fun
<adaedra> centrx: haha
<pontiki> but Bath, England
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<apeiros> it'd be fabulous
<pontiki> "Best conference EVAR!"
sankaber has joined #ruby
<pontiki> even if you're all wrinkly by the end
<apeiros> heh, refreshingly uncommon - more female speakers on the front than male ones :D
it_tard has joined #ruby
<pontiki> indeed
<apeiros> yeah, confs usually drain me
<apeiros> that said, haven't been to one in a long time.
<apeiros> but plan to go to euruko this year
<adaedra> You need a good bath.
Rodya_ has joined #ruby
<pontiki> i went to a one day conf here on saturday, but it was not what i was led to believe.
jimms_ has joined #ruby
<pontiki> i can't sit in a conf chair all day listening to some guy talk
zorak8 has quit [Ping timeout: 256 seconds]
jimms has quit [Read error: Connection reset by peer]
noname has joined #ruby
nfk|laptop has quit [Ping timeout: 256 seconds]
noname has quit [Client Quit]
workmad3 has joined #ruby
shredding has quit [Ping timeout: 250 seconds]
noname has joined #ruby
icebourg has quit []
n008f4g_ has joined #ruby
quimrstorres has quit [Remote host closed the connection]
quimrstorres has joined #ruby
claptor has quit [Quit: this channel is bakas]
<centrx> "If we're afraid of artificial intelligence and robots taking our jobs, stop education assessed by tests that an AI could pass." - https://twitter.com/Joi/status/588718716122226690
quimrstorres has quit [Remote host closed the connection]
it_tard has quit [Quit: yawn]
<adaedra> clap clap
dcarper has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 265 seconds]
Zai00 has quit [Ping timeout: 250 seconds]
dcarper has joined #ruby
Zai00 has joined #ruby
gr33n7007h has quit [Ping timeout: 256 seconds]
dfinninger has joined #ruby
noname has quit [Quit: WeeChat 1.0.1]
PaulCape_ has joined #ruby
lidenskap has quit [Remote host closed the connection]
delinquentme has quit [Ping timeout: 255 seconds]
dcarper has quit [Ping timeout: 256 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
PaulCapestany has quit [Ping timeout: 250 seconds]
rdark has quit [Quit: leaving]
<shevy> centrx did you pass that test!!!
jottr has joined #ruby
gazay has quit [Quit: gazay]
<centrx> My name is Turing J. Complete
<shevy> pontiki what is the bigger torture - sitting in the chair, or listening to a guy talk
Filete has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Matachines has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jud has joined #ruby
ohaibbq has joined #ruby
jottr has quit [Ping timeout: 256 seconds]
Musashi007 has quit [Quit: Musashi007]
MasterPiece has joined #ruby
gayfag has quit [K-Lined]
<blizzy> til you can do this in ruby
<blizzy> ->(i){i % 3 == 0}.call(3)
jimms_ has quit [Read error: Connection reset by peer]
<pontiki> shevy, good question. Sitting in one of those stupid hotel chairs gets pretty painful quickly
noname has joined #ruby
jimms has joined #ruby
Joufflu has joined #ruby
<pontiki> shevy: but not being able to interact, discuss, explore questions, practice right away and try out things, is super painful for my learning
lidenskap has joined #ruby
fred1807 has quit [Quit: fred1807]
<havenwood> >> -> x { x.modulo(3).zero? }.(3)
<ruboto> havenwood # => true (https://eval.in/319022)
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
PaulCapestany has joined #ruby
<blizzy> oh
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<pontiki> shevy: how about for you?
<blizzy> shows how great ruby is.
<havenwood> blizzy: many ways to say the same thing!
<pontiki> blizzy: there's one for Java that's too funny
<blizzy> havenwood, yep.
juanpablo___ has joined #ruby
<blizzy> pontiki, FizzBuzzEnterpriseEdition?
<shevy> pontiki well it depends... I remember, in university lecture, when it was early, and warm in the hall, and many people were, I sort of became dizzy and often fell asleep when the topic was boring. then I would wake up when the others were making noise again, e.g. when they were leaving the hall
Musashi007 has joined #ruby
<shevy> it was some botany/plant geographic lecture back then
<pontiki> blizzy: that's the one!! :D
<blizzy> :D
swgillespie has joined #ruby
RegulationD has joined #ruby
<pontiki> shevy: that doesn't too torturous at all! :)
<shevy> I think it depends immensely on the topic itself
<shevy> biochemistry lectures were always more interesting, but I remember we had tiny wooden chairs that made squeaky and cranky noises at the tiniest movement
<shevy> was some 1880 lecture hall style :P
PaulCape_ has quit [Ping timeout: 256 seconds]
Mon_Ouie has joined #ruby
Mon_Ouie has joined #ruby
nfk|laptop has joined #ruby
nfk has quit [Remote host closed the connection]
nfk has joined #ruby
dcarper has joined #ruby
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nahtnam has quit [Quit: Connection closed for inactivity]
juanpablo___ has quit [Ping timeout: 250 seconds]
Musashi007 has quit [Client Quit]
RegulationD has quit [Ping timeout: 250 seconds]
jheg has quit [Quit: jheg]
dvlwrk has joined #ruby
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
diegoviola has joined #ruby
C1V0 has joined #ruby
bluOxigen has joined #ruby
blueOxigen has joined #ruby
relix has joined #ruby
relix has quit [Client Quit]
<ght> Question: I have a Date.parse() call in my method that creates a Date object from a string. Of course, if the string doesn't match the expected format, Date.parse() throws an exception.
<ght> Is there any way to verify whether or not the string is of a valid format prior to the Date.parse() call, or should I enclose the Date.parse() call in begin / rescue block to handle the potential exception?
mostlybadfly has joined #ruby
PaulCape_ has joined #ruby
Musashi007 has joined #ruby
bluOxigen has quit [Ping timeout: 248 seconds]
User458764 has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
dfinninger has quit [Remote host closed the connection]
yaw has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dreinull75 has joined #ruby
x1337807x has joined #ruby
<dorei> in a str.sub(a, b), what should be the vaule of a if I dont want any substitution to happen? something like /$^/ maybe
dopie has quit [Quit: This computer has gone to sleep]
tomphp has joined #ruby
<ytti> i'm almost certain you're doing something wrong earlier if this is requirement
<ytti> but yeah /$^/ sounds like an impossible regexp
x1337807x has quit [Client Quit]
blizzy is now known as _blizzy_
<pontiki> i don't think that would work, dorei
thoughnut has quit [Quit: leaving]
x1337807x has joined #ruby
hollywood has quit [Quit: Leaving]
<pontiki> well, i guess you can make such a RE
Mon_Ouie has quit [Ping timeout: 244 seconds]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
x1337807x has quit [Client Quit]
<pontiki> ght: personally, i'd just rescue from the parse
<pontiki> ght: otherwise it seems you'd have to write all the same code parse does to figure out if it's valid to pass through to parse
<ght> Yeah, that's what I'm doing, thank you.
nobitanobi has joined #ruby
<ght> I just used irb and tested Date.parse() with various invalid parameter types to see what all execptions are thrown and wrote a begin / rescue block around it.
enebo has joined #ruby
<pontiki> most common i've encountered is when a date is entered in north american format
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Mon_Ouie has joined #ruby
<ght> Well these should be formatted correctly, they're from a form attached to a rails model / table.
<ght> I'm using a seperate ruby app to interact with them, I'm just being anal.
<pontiki> are they coming from a database?
<ght> Yes.
<pontiki> then they should be good
<ght> It's fine, all is good, thank you.
<ght> Yes.
jeramy_s has joined #ruby
tomphp has joined #ruby
oetjenj has joined #ruby
Brozo has quit [Remote host closed the connection]
stef204 has joined #ruby
nfk|laptop has quit [Quit: yawn]
Joufflu has quit [Read error: Connection reset by peer]
FernandoBasso has quit [Quit: leaving]
PaulCapestany has joined #ruby
last_staff has joined #ruby
PaulCape_ has quit [Ping timeout: 244 seconds]
thatslifeson has quit [Ping timeout: 244 seconds]
PaulCapestany has quit [Max SendQ exceeded]
tubuliferous has joined #ruby
jasonwebster has joined #ruby
PaulCapestany has joined #ruby
serivich has joined #ruby
jottr has joined #ruby
jasonwebster has quit [Client Quit]
Musashi007 has quit [Quit: Musashi007]
PaulCapestany has quit [Max SendQ exceeded]
tubuliferous has quit [Ping timeout: 252 seconds]
thatslifeson has joined #ruby
shuber_ has quit [Remote host closed the connection]
shuber_ has joined #ruby
PaulCapestany has joined #ruby
diego2 has joined #ruby
diego2 has quit [Changing host]
diego2 has joined #ruby
diegoviola is now known as Guest30877
diego2 is now known as diegoviola
Musashi007 has joined #ruby
jottr has quit [Ping timeout: 264 seconds]
Guest30877 has quit [Ping timeout: 248 seconds]
shinydog has joined #ruby
Rickmasta has joined #ruby
dcarper has quit []
QualityAddict has joined #ruby
lordkryss has quit [Quit: Connection closed for inactivity]
towski_ has joined #ruby
ddarkpassenger has quit [Quit: Leaving]
nobitanobi has quit [Remote host closed the connection]
shinydog is now known as almostworking
almostworking has left #ruby ["Leaving"]
yaw has joined #ruby
momon has joined #ruby
mrmargolis has quit [Remote host closed the connection]
towski__ has joined #ruby
Musashi007 has quit [Quit: Musashi007]
elaptics is now known as elaptics_away
<momon> hello
towski_ has quit [Ping timeout: 256 seconds]
serivich has quit [Ping timeout: 272 seconds]
<apeiros> hi momon
<momon> how to convert number to an array like 5 to ["1", "2", "3", "4", "5"]
decoponio has quit [Quit: Leaving...]
PaulCape_ has joined #ruby
<jhass> Array.new(5) {|i| (i+1).to_s }, but depending on why you want that array, you may not even need it
Vivex has joined #ruby
yaw has quit [Ping timeout: 250 seconds]
<pontiki> >> (1..5).map(&:to_s)
<ruboto> pontiki # => ["1", "2", "3", "4", "5"] (https://eval.in/319033)
PaulCapestany has quit [Ping timeout: 256 seconds]
shuber_ has quit [Remote host closed the connection]
<adaedra> >> (1..5).to_a
<ruboto> adaedra # => [1, 2, 3, 4, 5] (https://eval.in/319034)
<adaedra> ah yes
<adaedra> nvm
Brozo has joined #ruby
PaulCape_ has quit [Max SendQ exceeded]
AlexRussia has quit [Ping timeout: 272 seconds]
fowl has joined #ruby
PaulCapestany has joined #ruby
lidenskap has quit [Remote host closed the connection]
Jackneill has quit [Read error: Connection reset by peer]
<pontiki> then there's
<pontiki> >> "five".length.downto(0).map{|n| n.succ.to_s}.reverse
<ruboto> pontiki # => ["1", "2", "3", "4", "5"] (https://eval.in/319037)
<adaedra> -_-
<pontiki> just kidding
<adaedra> I wonder if
<adaedra> >> ("1".."5").to_a
<ruboto> adaedra # => ["1", "2", "3", "4", "5"] (https://eval.in/319038)
<adaedra> \o/
<pontiki> sure
RegulationD has joined #ruby
lolmaus_ has quit [Ping timeout: 256 seconds]
naftilos76 has joined #ruby
<havenwood> >> Enumerator.new(Float::INFINITY) { |yielder| n = '0'; loop { yielder << n = n.next } }.first 5
<ruboto> havenwood # => ["1", "2", "3", "4", "5"] (https://eval.in/319042)
shuber_ has joined #ruby
<pontiki> havenwood++ !!
polyrob has joined #ruby
shuber_ has quit [Remote host closed the connection]
PaulCapestany has quit [Max SendQ exceeded]
Lingos has joined #ruby
RegulationD has quit [Ping timeout: 250 seconds]
PaulCapestany has joined #ruby
lolmaus_ has joined #ruby
shuber_ has joined #ruby
<momon> thanks. map(&:to_s) do the job :)
Morkel has quit [Quit: Morkel]
blueOxigen has quit [Ping timeout: 256 seconds]
<xxneolithicxx> i have two antique laptops, what are some good uses for them
threh has quit [Ping timeout: 256 seconds]
Dopagod has joined #ruby
PaulCapestany has quit [Max SendQ exceeded]
nobitanobi has joined #ruby
<pontiki> xxneolithicxx: do they still run?
<xxneolithicxx> lol
<havenwood> >> fiber = Fiber.new { |n| loop { Fiber.yield n = n.next } }; Array.new(5) { fiber.resume '0' }
<ruboto> havenwood # => ["1", "2", "3", "4", "5"] (https://eval.in/319047)
<xxneolithicxx> sorry, yes, they arent door stop status yet
<xxneolithicxx> single core, dont even remember how much ram, i need to kick em up and reimage them
PaulCapestany has joined #ruby
QualityAddict is now known as QualityAddict_Aw
vickleton has quit [Ping timeout: 240 seconds]
<c355E3B> xxneolithicxx: how old?
<c355E3B> like dial up old?
PaulCapestany has quit [Max SendQ exceeded]
nfk|laptop has joined #ruby
<pontiki> almost anything you would use a RPi for, except for needing more space, really
mrmargolis has joined #ruby
<xxneolithicxx> yea basically its probably as fast as RPi
PaulCapestany has joined #ruby
<xxneolithicxx> trying to find the hd on it but it has a celeron w/512mb ram
piotrj has joined #ruby
<c355E3B> try netbsd on them
<Nilium> That's the easy way out, though
<Nilium> netbsd runs on everything
<pipework> Build your own OS that's linux ABI compatible.
AlexRussia has joined #ruby
<Nilium> I'm still waiting on a running build of FreeBSD for my RPi2
shuber_ has quit [Remote host closed the connection]
rocknrollmarc has joined #ruby
shuber_ has joined #ruby
doodlehaus has joined #ruby
shuber_ has quit [Remote host closed the connection]
piotrj has quit [Remote host closed the connection]
shuber_ has joined #ruby
ndrei has quit [Ping timeout: 240 seconds]
vickleton has joined #ruby
piotrj has joined #ruby
piotrj has quit [Read error: Connection reset by peer]
piotrj has joined #ruby
ndrei has joined #ruby
lidenskap has joined #ruby
shuber_ has quit [Remote host closed the connection]
havenn has joined #ruby
AlexRussia has quit [Ping timeout: 245 seconds]
zachrab has quit [Remote host closed the connection]
zachrab has joined #ruby
sankaber has joined #ruby
shuber_ has joined #ruby
piotrj has quit [Remote host closed the connection]
Matachines has joined #ruby
balazs_ has joined #ruby
piotrj has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
havenwood has quit [Ping timeout: 272 seconds]
enebo has quit [Quit: enebo]
shuber_ has quit [Remote host closed the connection]
shuber_ has joined #ruby
icebourg has joined #ruby
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
yaw has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
QualityAddict_Aw is now known as QualityAddict
yaw has quit [Max SendQ exceeded]
havenn has quit [Ping timeout: 252 seconds]
Matachines has quit [Quit: Textual IRC Client: www.textualapp.com]
yaw has joined #ruby
havenwood has joined #ruby
jimms has quit [Read error: Connection reset by peer]
lfox has joined #ruby
hiyosi has joined #ruby
yaw has quit [Max SendQ exceeded]
balazs_ has quit [Ping timeout: 255 seconds]
jimms has joined #ruby
juanpablo___ has joined #ruby
<shevy> netbsd runs on water too
diegoviola has quit [Quit: WeeChat 1.1.1]
<shevy> it's like jesus here
<shevy> or was that moses...
<centrx> The water was parted before Moses because he refused to run on water
yaw has joined #ruby
<centrx> He only ran on one platform: land
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
SouL_|_ has quit [Ping timeout: 245 seconds]
daed_ has quit [Read error: Connection reset by peer]
shellfu has joined #ruby
blackmesa has joined #ruby
juanpablo___ has quit [Ping timeout: 276 seconds]
naftilos76 has quit [Remote host closed the connection]
Brozo has quit [Remote host closed the connection]
thatslifeson has quit []
M-Technic has joined #ruby
Pharaoh2 has quit [Ping timeout: 248 seconds]
Pharaoh2 has joined #ruby
claptor has joined #ruby
tomphp has joined #ruby
<pipework> netbsd doesn't run, it casually saunters toward its victims and seduces them.
mrmargolis has quit [Ping timeout: 255 seconds]
workmad3 has joined #ruby
PaulCape_ has joined #ruby
PaulCapestany has quit [Ping timeout: 240 seconds]
Lingos has quit [Quit: Lingo: www.lingoirc.com]
shellfu has quit [Remote host closed the connection]
dopie has joined #ruby
yfeldblum has joined #ruby
DerisiveLogic has joined #ruby
codecop has quit [Remote host closed the connection]
piotrj has quit [Remote host closed the connection]
piotrj has joined #ruby
zachrab has quit [Remote host closed the connection]
JDiPierro has joined #ruby
wookiehangover has quit [Ping timeout: 265 seconds]
nobitanobi has quit [Remote host closed the connection]
jottr has joined #ruby
<shevy> centrx I see
doodlehaus has quit [Remote host closed the connection]
towski__ has quit [Remote host closed the connection]
relix has joined #ruby
sinkensabe has joined #ruby
DerisiveLogic has quit [Ping timeout: 245 seconds]
sinkensabe has quit [Remote host closed the connection]
JDiPierro has quit [Remote host closed the connection]
sinkensabe has joined #ruby
jeramy_s has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
DerisiveLogic has joined #ruby
jottr has quit [Ping timeout: 272 seconds]
momon has quit [Quit: Leaving]
rocknrollmarc has quit [Read error: Connection reset by peer]
dling has joined #ruby
wookiehangover has joined #ruby
lolmaus_ has quit [Ping timeout: 256 seconds]
doodlehaus has joined #ruby
roqo has joined #ruby
zz_barkerd427 has joined #ruby
plutonic has joined #ruby
greenbagels has joined #ruby
doodlehaus has quit [Remote host closed the connection]
chinmay_dd_ has joined #ruby
nfk|laptop has quit [Read error: Connection reset by peer]
psyprus has joined #ruby
seanmarcia_ is now known as seanmarcia
shuber_ has quit [Remote host closed the connection]
lfox has quit [Quit: Textual IRC Client: www.textualapp.com]
chinmay_dd has quit [Ping timeout: 250 seconds]
nfk|laptop has joined #ruby
Rodya_ has quit [Quit: Leaving...]
shellfu has joined #ruby
shuber_ has joined #ruby
PaulCapestany has joined #ruby
doertedev has quit [Quit: Lost terminal]
zachrab has joined #ruby
nfk|laptop has quit [Read error: Connection reset by peer]
it_tard has joined #ruby
PaulCape_ has quit [Ping timeout: 272 seconds]
psy_ has quit [Ping timeout: 250 seconds]
it_tard has quit [Client Quit]
zachrab has quit [Remote host closed the connection]
it_tard has joined #ruby
mrmargolis has joined #ruby
icebourg has quit []
nobitanobi has joined #ruby
gr33n7007h has joined #ruby
jottr has joined #ruby
QualityAddict has quit [Quit: Konversation terminated!]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nobitanobi has quit [Client Quit]
relix has joined #ruby
tubuliferous has joined #ruby
jottr has quit [Read error: Connection reset by peer]
jottr has joined #ruby
relix has quit [Client Quit]
jeramy_s has joined #ruby
plutonic has quit [Quit: plutonic]
Igorshp has joined #ruby
joast has quit [Quit: Leaving.]
ghr has joined #ruby
tubuliferous has quit [Ping timeout: 245 seconds]
plutonic has joined #ruby
doodlehaus has joined #ruby
marr has joined #ruby
plutonic has quit [Client Quit]
idealexit has quit [Remote host closed the connection]
ghr has quit [Ping timeout: 256 seconds]
alex88 has joined #ruby
it_tard has quit [Ping timeout: 264 seconds]
nfk has quit [Quit: yawn]
kirun has quit [Quit: Client exiting]
bruno-_ has quit [Quit: Lost terminal]
starless has joined #ruby
duncannz has joined #ruby
duncannz has quit [Max SendQ exceeded]
matcouto has joined #ruby
duncannz has joined #ruby
nfk has joined #ruby
alex88 has quit [Ping timeout: 250 seconds]
PaulCape_ has joined #ruby
DEA7TH has quit [Ping timeout: 265 seconds]
threh has joined #ruby
PaulCapestany has quit [Ping timeout: 250 seconds]
chinmay_dd has joined #ruby
dfinninger has joined #ruby
kyrylo has joined #ruby
chinmay_dd_ has quit [Ping timeout: 256 seconds]
TheHodge has joined #ruby
yfeldblum has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
yfeldblum has joined #ruby
jenrzzz has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
jasonwebster has joined #ruby
jimms has quit [Read error: Connection reset by peer]
dfinninger has joined #ruby
jimms has joined #ruby
jeramy_s has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dfinninger has quit [Read error: Connection reset by peer]
joast has joined #ruby
matcouto has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
jimms has quit [Read error: Connection reset by peer]
dfinninger has joined #ruby
jimms has joined #ruby
Renich has joined #ruby
RegulationD has joined #ruby
jimms has quit [Read error: Connection reset by peer]
Renich has quit [Client Quit]
Renich has joined #ruby
jimms has joined #ruby
ddarkpassenger has joined #ruby
hellome has joined #ruby
alex88 has joined #ruby
jimms has quit [Read error: Connection reset by peer]
it_tard has joined #ruby
jimms has joined #ruby
RegulationD has quit [Ping timeout: 256 seconds]
jimms has quit [Read error: Connection reset by peer]
jimms has joined #ruby
alex88 has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: ciao.]
icarus has joined #ruby
sinkensabe has quit [Remote host closed the connection]
jimms has quit [Read error: Connection reset by peer]
it_tard has quit [Read error: Connection reset by peer]
jimms has joined #ruby
PaulCapestany has joined #ruby
roshanavand has joined #ruby
doodlehaus has quit [Remote host closed the connection]
bruno- has quit [Quit: Lost terminal]
roshanavand has quit [Client Quit]
PaulCape_ has quit [Ping timeout: 245 seconds]
icarus has quit [Ping timeout: 256 seconds]
icarus has joined #ruby
rbennacer has joined #ruby
doodlehaus has joined #ruby
dfinninger has quit [Read error: Connection reset by peer]
tcrypt has joined #ruby
Igorshp has quit [Read error: Connection reset by peer]
Igorshp has joined #ruby
dfinninger has joined #ruby
mrmargolis has quit [Ping timeout: 250 seconds]
nfk has quit [Quit: yawn]
Filete has joined #ruby
platzhirsch has joined #ruby
mjuszczak has joined #ruby
doodlehaus has quit [Remote host closed the connection]
zachrab has joined #ruby
yaw has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yqt has quit [Ping timeout: 265 seconds]
sagittarian has quit [Ping timeout: 252 seconds]
gayfag has joined #ruby
Renich has quit [Ping timeout: 244 seconds]
dvlwrk has quit [Ping timeout: 256 seconds]
Renich has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
serivich has joined #ruby
motto has quit [Quit: Sto andando via]
jenrzzz has joined #ruby
last_staff has quit [Remote host closed the connection]
mjuszczak has quit []
pietr0 has joined #ruby
pietr0 has quit [Client Quit]
serivich has quit [Ping timeout: 255 seconds]
juanpablo___ has joined #ruby
charliesome has joined #ruby
jasonwebster has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 264 seconds]
rbennacer has quit [Remote host closed the connection]
weemsledeux has joined #ruby
juanpablo___ has quit [Ping timeout: 244 seconds]
dfinninger has quit [Read error: Connection reset by peer]
PaulCape_ has joined #ruby
rbennacer has joined #ruby
dfinninger has joined #ruby
centrx has quit [Quit: Shutting down, Please wait...]
balazs has joined #ruby
PaulCapestany has quit [Ping timeout: 264 seconds]
Stichoza has joined #ruby
zzing has joined #ruby
lkba_ has joined #ruby
balazs has quit [Ping timeout: 265 seconds]
lkba has quit [Ping timeout: 256 seconds]
dfinninger has quit [Read error: Connection reset by peer]
cpt_yossarian has quit [Quit: And then he took off.]
cpt_yossarian has joined #ruby
workmad3 has quit [Ping timeout: 276 seconds]
dfinninger has joined #ruby
Pharaoh2 has quit [Remote host closed the connection]
Enki has quit [Quit: WeeChat 0.3.8]
TheMysticWyvern has quit []
Zai00 has quit [Ping timeout: 255 seconds]
dfinninger has quit [Read error: Connection reset by peer]
icarus has quit [Ping timeout: 264 seconds]
dfinninger has joined #ruby
freerobby has joined #ruby
blf has joined #ruby
icarus has joined #ruby
iamninja_ has quit [Read error: Connection reset by peer]
iamninja_ has joined #ruby
blf has quit [Client Quit]
dfinninger has quit [Read error: Connection reset by peer]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nahtnam has joined #ruby
dfinninger has joined #ruby
MasterPiece has quit [Quit: Leaving]
parduse has quit []
parduse has joined #ruby
davedev2_ has joined #ruby
davedev24_ has quit [Ping timeout: 248 seconds]
DerisiveLogic has quit [Ping timeout: 244 seconds]
rbennacer has quit [Remote host closed the connection]
Igorshp has quit [Remote host closed the connection]
Stichoza has quit [Quit: Be back later ...]
Brozo has joined #ruby
PaulCapestany has joined #ruby
hellome has quit [Read error: Connection reset by peer]
dfinninger has quit [Read error: Connection reset by peer]
gayfag has quit [Remote host closed the connection]
rbennacer has joined #ruby
PaulCape_ has quit [Ping timeout: 272 seconds]
tomphp has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
alex88 has joined #ruby
CloCkWeRX has joined #ruby
ddarkpassenger has quit [Quit: Leaving]
sinkensabe has joined #ruby
PaulCapestany has quit [Max SendQ exceeded]
Rickmasta has joined #ruby
crowell has joined #ruby
crowell has joined #ruby
PaulCapestany has joined #ruby
plutonic has joined #ruby
shuber_ has quit [Remote host closed the connection]
piotrj has quit [Remote host closed the connection]
alex88 has quit [Ping timeout: 264 seconds]
piotrj has joined #ruby
Brozo has quit [Quit: Leaving...]
crowell_ has quit [Remote host closed the connection]
_blizzy_ has quit [Read error: Connection reset by peer]
Igorshp has joined #ruby
Soda has quit [Remote host closed the connection]
tubuliferous has joined #ruby
dopie has quit [Quit: This computer has gone to sleep]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Zarthus- has joined #ruby
toertore has quit [Quit: This computer has gone to sleep]
stef204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
tubuliferous has quit [Ping timeout: 250 seconds]
rbennacer has quit [Remote host closed the connection]
malcolmva has quit [Ping timeout: 272 seconds]
rbennacer has joined #ruby
DerisiveLogic has joined #ruby
DerisiveLogic has quit [Remote host closed the connection]
DerisiveLogic has joined #ruby
pontiki has quit [Ping timeout: 252 seconds]
jimms_ has joined #ruby
jimms has quit [Ping timeout: 250 seconds]
gaussblurinc1 has quit [Quit: Leaving.]
PaulCape_ has joined #ruby
Filete has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gayfag has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
kerrizor has quit [Quit: Textual IRC Client: www.textualapp.com]
ponga has quit [Quit: Leaving...]
spacemud has quit [Ping timeout: 240 seconds]
doodlehaus has joined #ruby
Renich has quit [Ping timeout: 245 seconds]
mikecmpbll has joined #ruby
PaulCape_ has quit [Max SendQ exceeded]
doodlehaus has quit [Remote host closed the connection]
Renich has joined #ruby
PaulCapestany has joined #ruby
malcolmva has joined #ruby
rbennacer has quit [Remote host closed the connection]
kyrylo has quit [Ping timeout: 240 seconds]
rbennacer has joined #ruby
_blizzy_ has joined #ruby
hiyosi has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
leafybasil has joined #ruby
dkphenom has joined #ruby
growlove has joined #ruby
seanmarcia has left #ruby [#ruby]
Guest27140 has quit [Remote host closed the connection]
rbennacer has quit [Remote host closed the connection]
rbennacer has joined #ruby
gayfag has quit [Quit: I]
dkphenom has quit [Client Quit]
Filete has joined #ruby
tmtwd has joined #ruby
dkphenom has joined #ruby
claptor has quit [Quit: this channel is bakas]
RegulationD has joined #ruby
Feyn has joined #ruby
hiyosi has joined #ruby
blackmesa has quit [Ping timeout: 265 seconds]
RegulationD has quit [Ping timeout: 244 seconds]
spacemud has joined #ruby
ramfjord has joined #ruby
dkphenom has left #ruby ["Textual IRC Client: www.textualapp.com"]
jottr has quit [Ping timeout: 256 seconds]
MatthewsFace has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
lidenskap has quit [Remote host closed the connection]
PaulCape_ has joined #ruby
lidenskap has joined #ruby
jimms_ has quit [Read error: Connection reset by peer]
PaulCapestany has quit [Ping timeout: 256 seconds]
noname3 has quit [Ping timeout: 245 seconds]
tmtwd has quit [Remote host closed the connection]
eytanfb has joined #ruby
rbennacer has quit [Remote host closed the connection]
A205B064 has joined #ruby
jimms has joined #ruby
dfinninger has joined #ruby
blt has joined #ruby
charliesome has quit [Quit: zzz]
rbennacer has joined #ruby
icarus has quit [Quit: leaving]
charliesome has joined #ruby
dfinninger has quit [Ping timeout: 276 seconds]
shuber_ has joined #ruby
Mon_Ouie has quit [Ping timeout: 265 seconds]
lidenskap has quit [Remote host closed the connection]
DerisiveLogic has quit [Ping timeout: 264 seconds]
__main__ has quit [Ping timeout: 256 seconds]
shuber_ has quit [Ping timeout: 256 seconds]
ikeike443 has joined #ruby
scripore has joined #ruby
Pupeno has quit [Remote host closed the connection]
lidenskap has joined #ruby
blt has quit [Read error: Connection reset by peer]
Pupeno has joined #ruby
jimms has quit [Remote host closed the connection]
blt has joined #ruby
PaulCapestany has joined #ruby
ikeike44_ has quit [Ping timeout: 276 seconds]
juanpablo___ has joined #ruby
shuber_ has joined #ruby
regnartim has joined #ruby
PaulCape_ has quit [Ping timeout: 256 seconds]
Igorshp has quit [Remote host closed the connection]
predator217 has joined #ruby
Pupeno has quit [Ping timeout: 250 seconds]
Igorshp has joined #ruby
ylluminarious has joined #ruby
Mon_Ouie has joined #ruby
Mon_Ouie has joined #ruby
juanpablo___ has quit [Ping timeout: 240 seconds]