apeiros changed the topic of #ruby-lang to: RIP Jim || Ruby 2.1.1; 2.0.0-p451; 1.9.3-p545: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com
elliotec has joined #ruby-lang
lewix has quit [Remote host closed the connection]
joelroa has quit [Ping timeout: 264 seconds]
havenwood has quit [Remote host closed the connection]
vondruch has quit [Ping timeout: 244 seconds]
lewix has joined #ruby-lang
havenwood has joined #ruby-lang
vondruch has joined #ruby-lang
lewix has quit [Remote host closed the connection]
dingus_khan has joined #ruby-lang
iliketur_ has joined #ruby-lang
iliketur_ has quit [Read error: Connection reset by peer]
havenwood has quit [Ping timeout: 240 seconds]
mistym_ has quit [Remote host closed the connection]
vlad_sta_ has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
iliketurtles has quit [Ping timeout: 252 seconds]
vondruch has quit [Ping timeout: 240 seconds]
vlad_starkov has quit [Remote host closed the connection]
tockitj has quit [Ping timeout: 240 seconds]
Coincidental has quit [Remote host closed the connection]
Coincidental has joined #ruby-lang
vondruch has joined #ruby-lang
mr-foobar has quit [Remote host closed the connection]
mr-foobar has joined #ruby-lang
cnivolle has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
Coincidental has quit [Ping timeout: 240 seconds]
Coincidental has joined #ruby-lang
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
mr-foobar has quit [Ping timeout: 240 seconds]
elliotec has joined #ruby-lang
vondruch has quit [Ping timeout: 264 seconds]
adurity has joined #ruby-lang
Coincide_ has joined #ruby-lang
Coincidental has quit [Ping timeout: 264 seconds]
Coincide_ has quit [Read error: Connection reset by peer]
khaase has quit [Remote host closed the connection]
Coincide_ has joined #ruby-lang
khaase has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
khaase has quit [Ping timeout: 264 seconds]
Johz has quit [Read error: Connection reset by peer]
khaase has joined #ruby-lang
ashishsfb has quit [Read error: Connection reset by peer]
Melpaws has quit [Remote host closed the connection]
Melpaws has joined #ruby-lang
Elico has joined #ruby-lang
Elico has quit [Client Quit]
Elico has joined #ruby-lang
Elico has quit [Client Quit]
VTLob has quit [Quit: VTLob]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
Melpaws has quit [Ping timeout: 264 seconds]
vondruch has joined #ruby-lang
khaase has quit [Remote host closed the connection]
khaase has joined #ruby-lang
khaase has joined #ruby-lang
khaase has quit [Changing host]
Elico has joined #ruby-lang
kalehv has joined #ruby-lang
Elico has quit [Client Quit]
Elico has joined #ruby-lang
khaase has quit [Ping timeout: 264 seconds]
joelroa has joined #ruby-lang
havenwood has joined #ruby-lang
joelroa has quit [Ping timeout: 241 seconds]
iliketurtles has joined #ruby-lang
devgiant has quit [Quit: Leaving]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jhass is now known as jhass|off
workmad3 has quit [Ping timeout: 240 seconds]
vondruch has quit [Ping timeout: 252 seconds]
heavyhorse has quit [Quit: Computer has gone to sleep]
heavyhorse has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
vondruch has joined #ruby-lang
heavyhor1e has joined #ruby-lang
heavyhor1e has quit [Client Quit]
heavyhorse has quit [Read error: Connection reset by peer]
heavyhor1e has joined #ruby-lang
Alexis_Evo has joined #ruby-lang
<Alexis_Evo> Is there anyway to use an integer and then increment it at the same time? Kinda like array[i++] would in C?
yubrew has joined #ruby-lang
<Alexis_Evo> I actually can't remember if it's array[i++] or array[++i]
sdouglas has joined #ruby-lang
<Alexis_Evo> but it should be equivalent to array[i]; i++;
havenwood has quit [Ping timeout: 240 seconds]
vlad_starkov has joined #ruby-lang
heavyhor1e has quit [Ping timeout: 252 seconds]
yubrew has quit [Ping timeout: 240 seconds]
adurity has quit [Remote host closed the connection]
sdouglas has quit [Ping timeout: 265 seconds]
elliotec has joined #ruby-lang
khaase has joined #ruby-lang
khaase has joined #ruby-lang
khaase has quit [Changing host]
vlad_starkov has quit [Ping timeout: 252 seconds]
vondruch has quit [Ping timeout: 252 seconds]
gix has joined #ruby-lang
khaase has quit [Ping timeout: 264 seconds]
ledestin has quit [Read error: Connection reset by peer]
mechan1c has quit [Ping timeout: 240 seconds]
<tsou> Alexis_Evo: assignments have values
<tsou> Alexis_Evo: so you can do something like: k = [10,20,30]; k[i = 1];
robbyoconnor has joined #ruby-lang
pr0ton has quit [Quit: pr0ton]
dingus_khan has quit [Remote host closed the connection]
<Alexis_Evo> tsou: that returns the value after the assignment though, I'm looking for before :p
<Alexis_Evo> string = "hello"; pos = 0; string[pos += 1]; #=> "e"
<Alexis_Evo> should be "h"
pr0ton has joined #ruby-lang
<tsou> ah, ok, so you want C's array[--i]
<Alexis_Evo> right
<Alexis_Evo> like I said, I can never remember which one is which, and it's been years since I've touched c :p
<tsou> btw, is there a reason why you don't want to do it in two separate statements besides trying to make your code harder to read? :P
<Alexis_Evo> I like terse code ok
<Alexis_Evo> also it ends up being three lines instead of one, as I have to return the first line
<Alexis_Evo> byte = self[@pos]; @pos += 1; return byte;
terabytest has joined #ruby-lang
<Alexis_Evo> vs return self[@pos += 1]
<Alexis_Evo> I could increment @pos, then do return self[@pos -= 1], but that's even less readable
<tsou> well, you could array[(i = 3) -1]
<tsou> but that's ugly :P
<Alexis_Evo> err yeah that, not -=
<tsou> i mean... array[(i += 1) - 1]
<Alexis_Evo> I guess I'll just leave it as three lines :(
<tsou> i don't see anything wrong with array[(i += 1) - 1] if you want an one-liner
<Alexis_Evo> hinders legibility too much -- I think most people are familiar with array[++i] syntax so if it existed in ruby it'd work great
Coincide_ has quit [Remote host closed the connection]
ledestin has joined #ruby-lang
robbyoconnor has quit [Excess Flood]
<tsou> Alexis_Evo: heh, sure, but on the other hand, the very fact that you weren't sure if you needed ++i or i++ should be a good-enough warning for your own code
robbyoconnor has joined #ruby-lang
<Alexis_Evo> I guess :P
vondruch has joined #ruby-lang
Elico has quit [Quit: Elico]
cnivolle has quit [Remote host closed the connection]
ledestin has quit [Read error: Connection reset by peer]
robbyoconnor has quit [Ping timeout: 240 seconds]
joelroa has joined #ruby-lang
robbyoconnor has joined #ruby-lang
Coincidental has joined #ruby-lang
heavyhorse has joined #ruby-lang
heavyhorse has quit [Client Quit]
joelroa has quit [Ping timeout: 264 seconds]
havenwood has joined #ruby-lang
terabytest has quit [Quit: Computer has gone to sleep.]
adurity has joined #ruby-lang
yubrew has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
Prandium has quit [Read error: Connection reset by peer]
tylersmith has quit [Ping timeout: 240 seconds]
sdouglas has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
nisstyre has quit [Quit: WeeChat 0.4.3]
robbyoconnor has quit [Ping timeout: 240 seconds]
Raynes has quit [Excess Flood]
Raynes has joined #ruby-lang
charliesome has joined #ruby-lang
sdouglas has quit [Ping timeout: 264 seconds]
elliotec has quit [Remote host closed the connection]
havenwood has quit [Ping timeout: 252 seconds]
elia has quit [Quit: Computer has gone to sleep.]
kalehv has quit [Remote host closed the connection]
shinnya has quit [Ping timeout: 240 seconds]
lewix has joined #ruby-lang
rue|w_ has quit [Read error: Connection reset by peer]
mbj has left #ruby-lang [#ruby-lang]
EeinBlack has quit [Ping timeout: 264 seconds]
kalehv has joined #ruby-lang
markphd has joined #ruby-lang
kalehv has quit [Ping timeout: 252 seconds]
alexju has quit [Remote host closed the connection]
joelroa has joined #ruby-lang
yubrew has joined #ruby-lang
joelroa has quit [Ping timeout: 240 seconds]
JMcAfreak has left #ruby-lang ["Textual IRC Client: www.textualapp.com"]
Willox has quit [Quit: Connection closed for inactivity]
Coincidental has quit [Remote host closed the connection]
yubrew has quit [Ping timeout: 264 seconds]
xcesariox has joined #ruby-lang
xcesariox has quit [Client Quit]
iliketurtles has quit [Quit: zzzzz…..]
havenwood has joined #ruby-lang
prc has quit [Ping timeout: 240 seconds]
robbyoconnor has joined #ruby-lang
<freedrull> wait can anyone release a new version of a gem? i don't see a link like 'add people to this gem' or anything...
xcesariox has joined #ruby-lang
mykoweb has joined #ruby-lang
khaase has joined #ruby-lang
khaase has joined #ruby-lang
khaase has quit [Changing host]
khaase has quit [Read error: Operation timed out]
havenwood has quit [Ping timeout: 252 seconds]
bzalasky has joined #ruby-lang
saxy has joined #ruby-lang
mistym has joined #ruby-lang
lele has quit [Ping timeout: 246 seconds]
kalehv has joined #ruby-lang
kalehv has quit [Client Quit]
itsraining has joined #ruby-lang
nertzy has joined #ruby-lang
saarinen has quit [Quit: saarinen]
elliotec has joined #ruby-lang
joelroa has joined #ruby-lang
saxy has quit [Remote host closed the connection]
saxy has joined #ruby-lang
omegahm has quit [Ping timeout: 245 seconds]
joelroa has quit [Read error: Operation timed out]
saxy has quit [Ping timeout: 264 seconds]
Alexis_Evo has left #ruby-lang ["WeeChat 0.4.2"]
vlad_starkov has joined #ruby-lang
nertzy has quit [Quit: Leaving]
Raynes has quit [*.net *.split]
Melpaws has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
Melpaws has quit [Read error: Connection reset by peer]
Melpaws has joined #ruby-lang
Melpaws has quit [Remote host closed the connection]
Raynes has joined #ruby-lang
Melpaws has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 240 seconds]
michaeldeol has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pr0ton has quit [Quit: pr0ton]
bougyman has quit [Read error: Connection reset by peer]
bougyman has joined #ruby-lang
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
itsraining has quit [Ping timeout: 264 seconds]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
CaptainJet has quit []
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Eein has joined #ruby-lang
sdouglas has joined #ruby-lang
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
michaeldeol has joined #ruby-lang
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
lewix has quit [Remote host closed the connection]
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Remote host closed the connection]
nisstyre has joined #ruby-lang
lewix has joined #ruby-lang
Eein has quit [Ping timeout: 240 seconds]
orangejuicejame has joined #ruby-lang
joelroa has joined #ruby-lang
orangejuicejame has quit [Client Quit]
dingus_khan has joined #ruby-lang
dingus_khan has quit [Remote host closed the connection]
joelroa has quit [Ping timeout: 264 seconds]
agarie has quit [Remote host closed the connection]
ssj4mo has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
shinnya has joined #ruby-lang
khaase has joined #ruby-lang
khaase_ has joined #ruby-lang
khaase has quit [Ping timeout: 240 seconds]
khaase_ has quit [Ping timeout: 264 seconds]
rippa has joined #ruby-lang
houhoulis has quit [Remote host closed the connection]
ssj4mo has quit [Remote host closed the connection]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
unsymbol has quit [Ping timeout: 264 seconds]
unsymbol has joined #ruby-lang
yubrew has joined #ruby-lang
saarinen has joined #ruby-lang
rahul_j has joined #ruby-lang
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
yubrew has quit [Ping timeout: 264 seconds]
saarinen has quit [Quit: saarinen]
adurity has quit [Remote host closed the connection]
iliketurtles has joined #ruby-lang
sepp2k1 has quit [Read error: Connection reset by peer]
adurity has joined #ruby-lang
Coincidental has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 264 seconds]
joelroa has joined #ruby-lang
adurity has quit [Remote host closed the connection]
kotk has joined #ruby-lang
joelroa has quit [Ping timeout: 240 seconds]
ecnalyr has quit [Quit: Macbook has gone to sleep. . .]
rahul_j has quit [Quit: rahul_j]
bzalasky has joined #ruby-lang
ecnalyr has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
ecnalyr has quit [Client Quit]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
rahul_j has joined #ruby-lang
mr-foobar has joined #ruby-lang
sree has joined #ruby-lang
tylersmith has joined #ruby-lang
ssj4mo has quit []
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
tylersmith has quit [Remote host closed the connection]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
tylersmith has joined #ruby-lang
Eein has joined #ruby-lang
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
KindOne_ has joined #ruby-lang
KindOne_ has quit [Excess Flood]
khaase has joined #ruby-lang
KindOne_ has joined #ruby-lang
KindOne_ has quit [Excess Flood]
rahul_j has joined #ruby-lang
khaase has quit [Read error: Operation timed out]
ssj4mo has quit [Remote host closed the connection]
KindOne_ has joined #ruby-lang
robbyoconnor has joined #ruby-lang
adurity has joined #ruby-lang
ssj4mo has joined #ruby-lang
rue_XIW has joined #ruby-lang
adurity has quit [Read error: Connection reset by peer]
sree has quit []
Cakey has joined #ruby-lang
yubrew has joined #ruby-lang
x0f has quit [Ping timeout: 264 seconds]
yubrew has quit [Ping timeout: 240 seconds]
ssj4mo has quit [Remote host closed the connection]
ssj4mo_s has joined #ruby-lang
x0f has joined #ruby-lang
ssj4mo has joined #ruby-lang
ssj4mo_s has quit [Remote host closed the connection]
ssj4mo has quit [Read error: Connection reset by peer]
ssj4mo has joined #ruby-lang
saxy has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
ssj4mo has quit [Excess Flood]
ssj4mo has joined #ruby-lang
amclain has quit [Quit: Leaving]
bzalasky has joined #ruby-lang
Eein has quit [Ping timeout: 252 seconds]
centrx has quit [Quit: All this computer hacking is making me thirsty]
alexju has joined #ruby-lang
Cakey has quit [Ping timeout: 252 seconds]
joelroa has joined #ruby-lang
kitak has joined #ruby-lang
joelroa has quit [Ping timeout: 240 seconds]
ssj4mo has quit [Remote host closed the connection]
ssj4mo has joined #ruby-lang
sdouglas has quit [Remote host closed the connection]
sdouglas_ has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 264 seconds]
ssj4mo has quit [Remote host closed the connection]
ssj4mo has joined #ruby-lang
vlad_starkov has joined #ruby-lang
dc5ala has joined #ruby-lang
mr-foobar has quit [Remote host closed the connection]
KindOne_ has quit [Quit: .]
mr-foobar has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 264 seconds]
saxy has quit [Remote host closed the connection]
mr-foobar has quit [Ping timeout: 264 seconds]
saxy has joined #ruby-lang
saxy has quit [Read error: Connection reset by peer]
saxy has joined #ruby-lang
yubrew has joined #ruby-lang
saxy_ has joined #ruby-lang
saxy has quit [Ping timeout: 264 seconds]
adurity has joined #ruby-lang
yubrew has quit [Ping timeout: 264 seconds]
rahul_j has quit [Quit: rahul_j]
saxy_ has quit [Client Quit]
adurity has quit [Ping timeout: 240 seconds]
bzalasky has quit [Remote host closed the connection]
amerine has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 240 seconds]
khaase has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
lele has joined #ruby-lang
khaase has quit [Ping timeout: 264 seconds]
shinnya has quit [Ping timeout: 240 seconds]
jsilver-ipod has joined #ruby-lang
jsilver-ipod has quit [Client Quit]
joelroa has joined #ruby-lang
sdouglas_ has quit [Remote host closed the connection]
elimS has joined #ruby-lang
joelroa has quit [Ping timeout: 240 seconds]
jtw has quit []
tbuehlmann has joined #ruby-lang
khaase has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
iliketurtles has quit [Quit: zzzzz…..]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tylersmith has quit [Ping timeout: 264 seconds]
Tn6o has joined #ruby-lang
yubrew has joined #ruby-lang
yubrew has quit [Ping timeout: 264 seconds]
adurity has joined #ruby-lang
solars has joined #ruby-lang
adurity has quit [Ping timeout: 240 seconds]
alexju has quit [Remote host closed the connection]
alexju has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
marcdel has quit []
elliotec has quit [Remote host closed the connection]
alexju has quit [Read error: Operation timed out]
elliotec has joined #ruby-lang
elimS has quit []
markphd has quit [Read error: Connection reset by peer]
phansch has joined #ruby-lang
charliesome has joined #ruby-lang
tylersmith has joined #ruby-lang
lewix has quit [Remote host closed the connection]
mechan1c has joined #ruby-lang
<mechan1c> #join bitcoind
<mechan1c> oh sorry
joelroa has joined #ruby-lang
sdouglas has joined #ruby-lang
Coincidental has quit [Remote host closed the connection]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby-lang
joelroa has quit [Ping timeout: 252 seconds]
sdouglas has quit [Read error: Operation timed out]
kitak has quit [Remote host closed the connection]
hahuang61 has joined #ruby-lang
caral has joined #ruby-lang
Tn6o has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 245 seconds]
mistym has quit [Remote host closed the connection]
achiu has joined #ruby-lang
yubrew has joined #ruby-lang
mr-foobar has joined #ruby-lang
caral has quit [Quit: caral]
yubrew has quit [Ping timeout: 264 seconds]
kitak has joined #ruby-lang
kitak has quit [Remote host closed the connection]
kitak has joined #ruby-lang
benanne has joined #ruby-lang
anannie has quit [Remote host closed the connection]
anannie has joined #ruby-lang
anannie has quit [Changing host]
anannie has joined #ruby-lang
anannie has quit [Remote host closed the connection]
adurity has joined #ruby-lang
adurity has quit [Read error: Connection reset by peer]
Atw has quit [Ping timeout: 244 seconds]
dlackty has quit [Quit: Connection closed for inactivity]
shinnya has joined #ruby-lang
caral has joined #ruby-lang
caral has quit [Client Quit]
tylersmith has quit [Remote host closed the connection]
relix has joined #ruby-lang
tylersmith has joined #ruby-lang
rahul_j has joined #ruby-lang
jhass|off is now known as jhass
tylersmith has quit [Ping timeout: 252 seconds]
dilated_dinosaur has joined #ruby-lang
GBrawl has joined #ruby-lang
GBrawl has quit [Client Quit]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
joelroa has joined #ruby-lang
joelroa has quit [Ping timeout: 252 seconds]
phansch has quit [Quit: WeeChat 0.4.2]
dilated_dinosaur has quit [Ping timeout: 252 seconds]
dilated_dinosaur has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yubrew has joined #ruby-lang
hahuang61 has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
hahuang61 has quit [Ping timeout: 245 seconds]
anannie has joined #ruby-lang
anannie has joined #ruby-lang
anannie has quit [Changing host]
ledestin has joined #ruby-lang
VTLob has joined #ruby-lang
JoshuaPaling has joined #ruby-lang
adurity has joined #ruby-lang
elia has joined #ruby-lang
adurity has quit [Ping timeout: 252 seconds]
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
tockitj has joined #ruby-lang
yfeldblum has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
arBmind has joined #ruby-lang
mr-foobar has quit [Remote host closed the connection]
mr-foobar has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
joelroa has joined #ruby-lang
mr-foobar has quit [Ping timeout: 240 seconds]
Coincidental has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
yubrew has joined #ruby-lang
mehlah has joined #ruby-lang
joelroa has quit [Ping timeout: 252 seconds]
devgiant has joined #ruby-lang
Coincidental has quit [Ping timeout: 264 seconds]
yubrew has quit [Ping timeout: 240 seconds]
retro|cz has joined #ruby-lang
Coincidental has joined #ruby-lang
Coincidental has quit [Remote host closed the connection]
mr-foobar has joined #ruby-lang
vlad_starkov has joined #ruby-lang
tockitj has quit [Changing host]
tockitj has joined #ruby-lang
vlad_starkov has quit [Ping timeout: 240 seconds]
elliotec has quit [Remote host closed the connection]
JoshuaPaling has quit [Quit: Textual IRC Client: www.textualapp.com]
elliotec has joined #ruby-lang
adurity has joined #ruby-lang
diegoviola has joined #ruby-lang
adurity has quit [Ping timeout: 240 seconds]
vlad_starkov has joined #ruby-lang
Melpaws has quit [Quit: Leaving...]
anannie has quit [Remote host closed the connection]
Elico has joined #ruby-lang
Elico1 has joined #ruby-lang
tbuehlmann has joined #ruby-lang
Elico has quit [Ping timeout: 240 seconds]
yubrew has joined #ruby-lang
joelroa has joined #ruby-lang
yubrew has quit [Ping timeout: 264 seconds]
Pupeno_ has joined #ruby-lang
joelroa has quit [Ping timeout: 252 seconds]
charliesome has joined #ruby-lang
anannie has joined #ruby-lang
elia has joined #ruby-lang
Tn6o has joined #ruby-lang
adurity has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
araujo has quit [Read error: Operation timed out]
araujo has joined #ruby-lang
araujo has quit [Changing host]
araujo has joined #ruby-lang
adurity has quit [Ping timeout: 240 seconds]
anannie has quit [Remote host closed the connection]
jxie has quit [Ping timeout: 252 seconds]
jxie has joined #ruby-lang
prc has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
jxie has quit [Read error: Connection reset by peer]
jxie has joined #ruby-lang
cnivolle has joined #ruby-lang
rahul_j has joined #ruby-lang
joelroa has joined #ruby-lang
sdouglas has joined #ruby-lang
joelroa has quit [Ping timeout: 240 seconds]
sdouglas has quit [Ping timeout: 265 seconds]
Coincidental has joined #ruby-lang
pabloh has quit [Ping timeout: 252 seconds]
anannie has joined #ruby-lang
anannie has quit [Changing host]
anannie has joined #ruby-lang
pabloh has joined #ruby-lang
Coincidental has quit [Ping timeout: 240 seconds]
adurity has joined #ruby-lang
dilated_dinosaur has quit [Ping timeout: 252 seconds]
adurity has quit [Ping timeout: 240 seconds]
imperator has joined #ruby-lang
retro|cz has quit [Read error: Operation timed out]
shinnya has quit [Ping timeout: 252 seconds]
rahul_j has quit [Quit: rahul_j]
rahul_j has joined #ruby-lang
dilated_dinosaur has joined #ruby-lang
sepp2k has joined #ruby-lang
dilated_dinosaur has quit [Ping timeout: 240 seconds]
minim has joined #ruby-lang
joelroa has joined #ruby-lang
Willox has joined #ruby-lang
judofyr has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
anannie has quit [Remote host closed the connection]
dilated_dinosaur has joined #ruby-lang
joelroa has quit [Ping timeout: 264 seconds]
adurity has joined #ruby-lang
itsraining has joined #ruby-lang
<imperator> good morning
<imperator> offtopic, but why do system headers include typedefs to structs that are nothing but a single member?
<imperator> why bother making it a struct?
prc has quit [Ping timeout: 252 seconds]
itsraining_ has joined #ruby-lang
itsraining has quit [Ping timeout: 264 seconds]
itsraining_ is now known as itsraining
<Senjai> So Celluloid is officially :good-times:
diegoviola has quit [Quit: WeeChat 0.4.3]
kotk1 has joined #ruby-lang
<imperator> but does it work on windows? ;)
kotk has quit [Ping timeout: 240 seconds]
kitak has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
kitak has joined #ruby-lang
robbyoconnor has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
r0bby has joined #ruby-lang
tbuehlmann has quit [Ping timeout: 252 seconds]
robbyoconnor has quit [Ping timeout: 240 seconds]
workmad3 has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
r0bby is now known as robbyoconnor
kitak has quit [Remote host closed the connection]
kitak has joined #ruby-lang
robbyoconnor has quit [Quit: Konversation terminated!]
tbuehlmann has joined #ruby-lang
anannie has joined #ruby-lang
phansch has joined #ruby-lang
prc has joined #ruby-lang
rahul_j has joined #ruby-lang
ulisescab has joined #ruby-lang
joelroa has joined #ruby-lang
cored has quit [Ping timeout: 252 seconds]
Mon_Ouie has joined #ruby-lang
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby-lang
joelroa has quit [Ping timeout: 264 seconds]
ulisescab has quit [Ping timeout: 252 seconds]
kitak has quit [Remote host closed the connection]
Coincidental has joined #ruby-lang
prc has quit [Ping timeout: 264 seconds]
prc has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
lewix has joined #ruby-lang
Coincidental has quit [Ping timeout: 264 seconds]
ledestin has quit [Read error: Connection reset by peer]
Johz has joined #ruby-lang
<Senjai> Probably
<Senjai> Not sure
<Senjai> Most likely
|jemc| has joined #ruby-lang
bzalasky has joined #ruby-lang
yfeldblum has joined #ruby-lang
Cakey has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 265 seconds]
minim has quit []
minim has joined #ruby-lang
jtw has joined #ruby-lang
minim has quit [Ping timeout: 264 seconds]
vlad_starkov has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
itsraining has quit [Ping timeout: 240 seconds]
havenwood has joined #ruby-lang
vlad_starkov has joined #ruby-lang
nathanstitt has joined #ruby-lang
itsraining has joined #ruby-lang
Mon_Ouie has quit [Read error: Operation timed out]
anannie has quit [Remote host closed the connection]
joelroa has joined #ruby-lang
dc5ala has quit [Quit: Ex-Chat]
mykoweb has joined #ruby-lang
joelroa has quit [Ping timeout: 264 seconds]
henrik_hodne has quit []
imperator has quit [Quit: Leaving]
seanlinsley has quit [Read error: Connection reset by peer]
seanlinsley has joined #ruby-lang
yubrew has joined #ruby-lang
Eein has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
cir0x has joined #ruby-lang
cir0x has quit [Remote host closed the connection]
anannie has joined #ruby-lang
marcdel has joined #ruby-lang
Cakey has quit [Ping timeout: 264 seconds]
yfeldblum has joined #ruby-lang
dragon_ has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
dragon_ has quit [Client Quit]
mykoweb has quit [Remote host closed the connection]
saarinen has joined #ruby-lang
anannie has quit [Ping timeout: 264 seconds]
anannie has joined #ruby-lang
rahul_j has joined #ruby-lang
anannie has quit [Remote host closed the connection]
joelroa has joined #ruby-lang
dik_dak has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
joelroa has quit [Ping timeout: 240 seconds]
relix has joined #ruby-lang
sdouglas has joined #ruby-lang
anannie has joined #ruby-lang
anannie has quit [Changing host]
anannie has joined #ruby-lang
D9 has quit [Read error: Connection reset by peer]
D9 has joined #ruby-lang
D9 has quit [Read error: Connection reset by peer]
xcesariox has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
D9 has joined #ruby-lang
D9 has quit [Read error: Connection reset by peer]
D9 has joined #ruby-lang
sree has joined #ruby-lang
D9 has quit [Read error: Connection reset by peer]
hahuang61 has joined #ruby-lang
D9 has joined #ruby-lang
D9 has quit [Read error: Connection reset by peer]
dik_dak has quit [Ping timeout: 264 seconds]
D9 has joined #ruby-lang
D9 has quit [Read error: Connection reset by peer]
cid404 has quit [Quit: cid404]
D9 has joined #ruby-lang
omegahm has joined #ruby-lang
hahuang61 has quit [Ping timeout: 244 seconds]
yubrew has joined #ruby-lang
Coincidental has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
sree has quit []
Coincidental has quit [Ping timeout: 264 seconds]
anannie has quit [Remote host closed the connection]
mistym has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
elliotec_ has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
elliotec has quit [Ping timeout: 240 seconds]
elliotec_ has quit [Ping timeout: 264 seconds]
yfeldblum has joined #ruby-lang
havenwood has quit [Ping timeout: 252 seconds]
anannie has joined #ruby-lang
anannie has quit [Changing host]
anannie has joined #ruby-lang
elliotec has joined #ruby-lang
itsraining has quit [Ping timeout: 240 seconds]
yfeldblum has quit [Ping timeout: 264 seconds]
AOP_ has joined #ruby-lang
saarinen has quit [Quit: saarinen]
lewix has quit [Remote host closed the connection]
D9 has quit [Ping timeout: 264 seconds]
AOP_ has quit [Read error: Connection reset by peer]
elliotec has quit [Remote host closed the connection]
AOP_ has joined #ruby-lang
elliotec has joined #ruby-lang
AOP_ has quit [Read error: Connection reset by peer]
AOP_ has joined #ruby-lang
tbuehlmann has quit [Quit: Leaving]
AOP_ has quit [Read error: Connection reset by peer]
elliotec has quit [Remote host closed the connection]
AOP_ has joined #ruby-lang
elliotec has joined #ruby-lang
joelroa has joined #ruby-lang
heavyhorse has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
elliotec_ has joined #ruby-lang
joelroa has quit [Ping timeout: 240 seconds]
elliotec has quit [Ping timeout: 264 seconds]
elliotec_ has quit [Remote host closed the connection]
yubrew has joined #ruby-lang
elliotec has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
hahuang61 has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
AOP_ has quit [Read error: Connection reset by peer]
AOP_ has joined #ruby-lang
elliotec has quit [Ping timeout: 240 seconds]
sepp2k1 has joined #ruby-lang
sepp2k has quit [Ping timeout: 240 seconds]
hahuang61 has quit [Ping timeout: 245 seconds]
AOP_ has quit [Ping timeout: 264 seconds]
AOP_ has joined #ruby-lang
AOP_ has quit [Read error: Connection reset by peer]
yfeldblum has joined #ruby-lang
<yorickpeterse> drbrain: ping
mykoweb has joined #ruby-lang
diegoviola has joined #ruby-lang
havenwood has joined #ruby-lang
sdouglas has quit [Remote host closed the connection]
sdouglas has joined #ruby-lang
havenwood has quit [Ping timeout: 240 seconds]
Thanatermesis has quit [Quit: ɯlɐɔ uı ʞɹoʍ oʇ ƃuıoƃ]
sdouglas has quit [Remote host closed the connection]
ulisescab has joined #ruby-lang
sdouglas has joined #ruby-lang
ayonkhan has joined #ruby-lang
amclain has joined #ruby-lang
lewix has joined #ruby-lang
tbuehlmann has joined #ruby-lang
devgiant has quit [Ping timeout: 240 seconds]
lewix has quit [Ping timeout: 264 seconds]
joelroa has joined #ruby-lang
yubrew has joined #ruby-lang
joelroa has quit [Ping timeout: 264 seconds]
yubrew has quit [Read error: Operation timed out]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
Coincidental has joined #ruby-lang
mr-foobar has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 252 seconds]
Coincidental has quit [Ping timeout: 240 seconds]
simono has joined #ruby-lang
elliotec has joined #ruby-lang
Coincidental has joined #ruby-lang
iliketurtles has joined #ruby-lang
ayonkhan has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
lsegal has joined #ruby-lang
judofyr has quit [Remote host closed the connection]
judofyr has joined #ruby-lang
phansch has quit [Read error: Connection reset by peer]
diegoviola has quit [Quit: WeeChat 0.4.3]
phansch has joined #ruby-lang
judofyr has quit [Ping timeout: 265 seconds]
Voker57 has joined #ruby-lang
alexju has joined #ruby-lang
havenwood has quit [Ping timeout: 264 seconds]
alexju has quit [Remote host closed the connection]
alexju has joined #ruby-lang
yubrew has joined #ruby-lang
joelroa has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
joelroa has quit [Ping timeout: 264 seconds]
judofyr has joined #ruby-lang
wallerdev has joined #ruby-lang
judofyr has quit [Read error: No route to host]
judofyr has joined #ruby-lang
jcs222 has quit [Quit: leaving]
iliketurtles has quit [Quit: zzzzz…..]
judofyr has quit [Ping timeout: 265 seconds]
rickyrickyrice has joined #ruby-lang
rickyrickyrice has quit [Remote host closed the connection]
rickyrickyrice has joined #ruby-lang
simono has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
shinnya has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
bushido has joined #ruby-lang
michaeldeol has joined #ruby-lang
Bosox20051 has joined #ruby-lang
bushido has quit [Client Quit]
bushido has joined #ruby-lang
saarinen has joined #ruby-lang
havenwood has joined #ruby-lang
Elico1 is now known as Elico
centrx has joined #ruby-lang
Elico has quit [Quit: Elico]
havenwood has quit [Ping timeout: 244 seconds]
robmiller has joined #ruby-lang
rickyrickyrice has quit []
yubrew has joined #ruby-lang
Asher has quit [Quit: Leaving.]
benanne has quit [Quit: kbai]
tbuehlmann has quit [Remote host closed the connection]
yubrew has quit [Ping timeout: 240 seconds]
workmad3 has joined #ruby-lang
Pupeno_ has quit [Read error: Operation timed out]
heavyhorse has quit [Quit: Computer has gone to sleep]
heavyhorse has joined #ruby-lang
joelroa has joined #ruby-lang
ratmav has joined #ruby-lang
kalehv has joined #ruby-lang
heavyhorse has quit [Ping timeout: 264 seconds]
joelroa has quit [Ping timeout: 244 seconds]
houhoulis has joined #ruby-lang
jcs222 has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
ratmav has quit [Quit: Leaving]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
heavyhorse has joined #ruby-lang
Atw has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
elliotec has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
mistym has quit [Remote host closed the connection]
Asher has joined #ruby-lang
anannie has quit [Remote host closed the connection]
michaeldeol has joined #ruby-lang
vondruch has quit [Quit: Ex-Chat]
elia has joined #ruby-lang
saarinen has quit [Quit: saarinen]
amerine has joined #ruby-lang
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mykoweb has joined #ruby-lang
bushido has quit []
bushido has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
elliotec has quit [Remote host closed the connection]
jcs222 has quit [Ping timeout: 265 seconds]
alexju has quit [Remote host closed the connection]
kalehv_ has joined #ruby-lang
bushido has left #ruby-lang [#ruby-lang]
elliotec has joined #ruby-lang
kalehv has quit [Read error: Connection reset by peer]
jcs222 has joined #ruby-lang
webgen has joined #ruby-lang
<webgen> can anyone point me to how to use emacs rubymode ? I am new to both emacs and ruby ! I have ruby and emacs both installed on my lubuntu, whats next?
yubrew has joined #ruby-lang
Johz has quit [Read error: Operation timed out]
adurity has quit [Quit: Leaving...]
yubrew has quit [Ping timeout: 240 seconds]
khaase has quit [Remote host closed the connection]
Johz has joined #ruby-lang
simono has joined #ruby-lang
simono has quit [Client Quit]
anannie has joined #ruby-lang
<TTilus> i think emacs23 comes with ruby mode
<TTilus> just M-x ruby-mode<ret>
<TTilus> if your .rb files don't default to ruby-mode, you need to add (add-to-list 'auto-mode-alist '("\\.rb$" . ruby-mode)) to your ~/.emacs
elliotec has quit [Remote host closed the connection]
ledestin has joined #ruby-lang
elliotec has joined #ruby-lang
joelroa has joined #ruby-lang
nisstyre has quit [Quit: WeeChat 0.4.3]
joelroa has quit [Ping timeout: 244 seconds]
Eein has quit [Ping timeout: 240 seconds]
centrx has quit [Quit: All this computer hacking is making me thirsty]
centrx has joined #ruby-lang
jcs222 has quit [Quit: leaving]
sdouglas has quit [Remote host closed the connection]
sdouglas has joined #ruby-lang
lcdhoffman has joined #ruby-lang
yfeldblu_ has quit [Read error: Connection reset by peer]
yfeldblum has joined #ruby-lang
hahuang61 has joined #ruby-lang
sdouglas has quit [Ping timeout: 265 seconds]
elliotec has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 245 seconds]
elliotec has joined #ruby-lang
Coincidental has quit [Remote host closed the connection]
phansch has quit [Quit: WeeChat 0.4.2]
solars has quit [Quit: WeeChat 0.4.1]
heavyhorse has quit [Quit: Computer has gone to sleep]
heavyhorse has joined #ruby-lang
woollyams has joined #ruby-lang
heavyhorse has quit [Ping timeout: 265 seconds]
yfeldblu_ has joined #ruby-lang
yfeldblum has quit [Read error: Connection reset by peer]
iliketurtles has joined #ruby-lang
yubrew has joined #ruby-lang
jhass is now known as jhass|off
itsraining has joined #ruby-lang
mdub has joined #ruby-lang
woollyams has quit [Ping timeout: 252 seconds]
havenwood has joined #ruby-lang
yubrew has quit [Ping timeout: 240 seconds]
sdouglas has joined #ruby-lang
havenwood has quit [Ping timeout: 264 seconds]
R3g4z0 has joined #ruby-lang
sdouglas has quit [Ping timeout: 240 seconds]
mehlah has quit [Quit: Leaving...]
<R3g4z0> HELLO
<R3g4z0> hello
khaase has joined #ruby-lang
khaase has joined #ruby-lang
khaase has quit [Changing host]
<webgen> hi
<R3g4z0> I am new at irc
<R3g4z0> and I'm learning ruby
<webgen> same here
<R3g4z0> what is this about? learning? ???
<R3g4z0> that's nice
<webgen> its more like troublshooting i imagine
workmad3 has quit [Read error: Operation timed out]
<webgen> join channel #ruby, it is more active
<R3g4z0> what are you learning now?
<webgen> right now i am trying to setup text editor learn ruby and then rails
<R3g4z0> hummm
<R3g4z0> Well I m doing almost the same
<R3g4z0> I started with emacs
<webgen> hehe cool
nathansoz has joined #ruby-lang
<webgen> i tried too but there was no support, I am almost gonna give up vim
* centrx recommends vim
<R3g4z0> what text editor are you using?
<webgen> trying out vim but I dont figure out a way to install addons yet...
<R3g4z0> humm
ulisescab has quit [Ping timeout: 264 seconds]
<webgen> its retarded
<centrx> webgen, I don't use any addons myself
<centrx> webgen, What add-on are you looking for?
<R3g4z0> but there are some good emacs' videos on youtube
<webgen> centrx any simple addon, text coloring, at least
<centrx> webgen, Add "syntax on" to your .vimrc file
<R3g4z0> well I not using vim
<webgen> centrx, thats what I mean i have no idea where that file is :D
<centrx> webgen, You can create it in your home directory
<R3g4z0> what OS are you using?
<webgen> R3g4z0 i heard vim is better for ruby
khaase has quit [Ping timeout: 240 seconds]
<webgen> R3g4z0 virtual lubuntu
<centrx> webgen, Here is my .vimrc file (commas are new lines): syntax on, set expandtab, set tabstop=2, set autoindent
<webgen> centrx, and this only works if you are working in the file with .rb extension ?
<R3g4z0> are you readig a book ?
<R3g4z0> or just getting the stuff from the internet?
<centrx> webgen, It works for any file type, using the extension to determine what type
<webgen> R3g4z0 not really just bless the kopimi lynda vids
<centrx> Syntax highlighting that is
<webgen> centrx ok i ll try and post results hehe thx
joelroa has joined #ruby-lang
kotk1 has quit [Ping timeout: 252 seconds]
judofyr has joined #ruby-lang
heavyhorse has joined #ruby-lang
<webgen> centrx how do i save file ? so far I learned how to :quit without saving :S
<centrx> :w saves a file
<centrx> (w for Write)
<centrx> :x or :wq will save and quit
<webgen> cool thx i saved it
joelroa has quit [Ping timeout: 240 seconds]
vlad_starkov has quit [Remote host closed the connection]
<webgen> centrx when I am trying to open a random file called 1, it says no syntax items defined for this buffer? :S
<centrx> webgen, Maybe you only have vim-tiny installed without syntax highlighting? (I am not especially familiar with Lubuntu)
<centrx> webgen, Try apt-get install vim
<centrx> webgen, That will install the full version of vim
<webgen> centrx thats the command i used to install vim :P
judofyr has quit [Ping timeout: 265 seconds]
<centrx> webgen, What does your .vimrc file look like?
VTLob has quit [Quit: VTLob]
<webgen> centrx: syntax.on n set expandtab \n set tabstop
<webgen> set autoindent
<webgen> with spaces instead of \n
<centrx> Is that really a period between syntax and on ?
<webgen> yep its a period
<centrx> Use a space
<webgen> centrx, thanks, thats emberassing :D
elliotec has quit [Remote host closed the connection]
mdub has quit [Ping timeout: 252 seconds]
elliotec has joined #ruby-lang
<webgen> centrx yep " looks centrx yep there is some movement hehe quote is purple and text within is red, do you have the same coloring?
kalehv_ has quit [Remote host closed the connection]
<centrx> Yes
kalehv has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
<webgen> centrx thanks dude! thats a good start xD
Eein has joined #ruby-lang
woollyams has joined #ruby-lang
kalehv has quit [Ping timeout: 240 seconds]
Coincidental has joined #ruby-lang
charliesome has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
elliotec has joined #ruby-lang
joh______ has joined #ruby-lang
joh______ has quit [Client Quit]
john_____ has joined #ruby-lang
elliotec has quit [Remote host closed the connection]
john_____ has quit [Client Quit]
arBmind has quit [Ping timeout: 264 seconds]
elliotec has joined #ruby-lang
elliotec has quit [Ping timeout: 265 seconds]
yubrew has joined #ruby-lang
yubrew has quit [Ping timeout: 244 seconds]
dingus_khan has joined #ruby-lang
vlad_starkov has joined #ruby-lang