apeiros changed the topic of #ruby-lang to: Ruby 2.1.5; 2.0.0-p598; 1.9.3-p551: http://ruby-lang.org || Paste code on http://gist.github.com
btiefert has quit [Quit: Leaving]
<calebk> learn something new =_=
<ljarvis> are the "x" coordinates unique? (as waxjar is asking)
<ljarvis> im assuming they must be
<calebk> no
<ljarvis> otherwise this is flawed :)
<ljarvis> ok, if you "find" something by the "x" coordinate, wouldn't that find multiple things?
<calebk> i just need to test if “x” cordinate exists
<ljarvis> ah
<calebk> within the master list
<waxjar> your best option is a Set than really, set.select { |p| p.x == 1 }
RobertBirnie has joined #ruby-lang
RobertBirnie has quit [Client Quit]
<ljarvis> find is what you want
<ljarvis> not select
<waxjar> i'm a slow typer :(
AKASkip has quit [Ping timeout: 265 seconds]
<ljarvis> select would traverse every element in your set, find will stop at the first (just pointing that out to calebk)
<ljarvis> calebk: this is probably fast enough, if you want o(1) then you'd need to store x coordinates in a separate set
<ljarvis> then you could use include?
<calebk> so select would continue traversing after its first match
<ljarvis> correct, it would return all matches
<waxjar> i suppose if performance is really an option, you could also use a Hash of form { x => [y, y, y] }
<waxjar> i suppose if performance is really an option, you could also use a Hash of form { x => [y, y, y] }
<ljarvis> that would work
<waxjar> but you might lose more time / memory putting your data in that format :P
<ljarvis> calebk: when you say a lot, what are we talking?
<calebk> https://github.com/Scootie/BTCNetworkMap, so i need to keep track of unique nodes (BTC wallets), the list is growing to like half a million [x,y] coordinates
<calebk> like BTC wallet 1, to BTC wallet 2
<calebk> those links are unique
<calebk> but BTC wallet 1 can connect to others too
<ljarvis> you just need to assume the worst outcome (which is your "x" could be the last element in the array, and thus it hits every item)
<calebk> ah…. wouldn’t that make select and find about equal then in terms of performance?
mcclurmc has joined #ruby-lang
<ljarvis> if you assume the worst to happen 100% of the time, then yes :P
tcopeland has joined #ruby-lang
<calebk> :p well I guess the other extreme would be find grabbing it from 1st element
<ljarvis> right
<calebk> well ty for being the sounding board…. I figure once I have at least a month of ruby, i’ll get these syntax nuiances memorized
<ljarvis> ideally you'd be able to use "x" as a hash key though, so if you cant work your data into that format, then that would be the best thing for lookups
<ljarvis> also, benchmark the crap out of it if it's a concern / or you just want to learn
<calebk> my VM completely crapped a brick when I tried benchmarking this… i didn’t know it would poop out half a million connections
<calebk> right, the problem is that in this particular case “x” value is not unique, otherwise hashes would be great
<ljarvis> sure
mcclurmc has quit [Remote host closed the connection]
diegoviola has quit [Remote host closed the connection]
skade has joined #ruby-lang
sankaber has joined #ruby-lang
esmet____ has quit [Quit: Connection closed for inactivity]
<hakunin> weird, have an script.rb file with require_relative 'lib/foo' in it, and in lib/foo.rb simple requires like require 'foo/bar', but when i run ruby script.rb it keeps loading foo gem instead of foo from lib
<hakunin> didn't happen before ruby 2.x i think
<hakunin> or maybe rubygems loaded not sure
__butch__ has quit [Quit: Leaving.]
<zenspider> don't use require_relative in script.rb ... assuming you're gonna package this up as a gem or something similar
<hakunin> zenspider: yes, it is a gem, ok removing
<hakunin> zenspider: but script.rb is like sample usage
<zenspider> use load paths properly... ala the gemspec / rubygems
<hakunin> zenspider: yes the script.rb thing is like a loose file in root of gem acting as an example
<zenspider> hakunin: so you've got ["script.rb", "lib/foo.rb", "lib/foo/bar.rb"] and each refers to the next?
skade has quit [Read error: Connection reset by peer]
<hakunin> zenspider: yes
<zenspider> and you also have the same (older) gem installed
<hakunin> yes
<hakunin> exactly
<zenspider> and you're testing out new changes, presumably... but you're picking up the installed gem instead
<zenspider> no bundler?
<zenspider> say no bundler
<hakunin> zenspider: no bundler
<zenspider> say it again... like you mean it
<hakunin> zenspider: damn you
<hakunin> i do have it
<hakunin> :)
<zenspider> but you're not using it? or does foo have one of those bundle require thingies?
<zenspider> ok. good. the "right way" to run this is `ruby -Ilib:test script.rb` (might not need :test, depending on your goal)
<hakunin> zenspider: i have Gemfile that says "gemspec" in it, and i think when i run via bunde exec it works
<zenspider> ignore bundler for now
<zenspider> if script.rb is just for exploratory purposes, I don't see why a require_relative didn't work
<hakunin> zenspider: ruby -Ilib is how i run (individual) tests, was thinking it's avoidable for this file
<hakunin> zenspider: -Ilib works too
<zenspider> paths = $:.dup; p paths; require_relative "lib/foo" (maybe try foo.rb?); p $: - pathts
<zenspider> paths.
<hakunin> (using foo.rb vs foo doesn't work)
<zenspider> kk
<zenspider> ok. on second thought, this makes sense ... I think
<zenspider> require_relative probably IS working
<zenspider> but that second require, since you don't have lib in $:, is activating the gem
<zenspider> so in script.rb, push "lib" into $: and try require_relative
<hakunin> zenspider: i realized that 2nd require is activating the gem once i expand_path on lib/foo
<hakunin> zenspider: and still got gem
nathanstitt has joined #ruby-lang
<ljarvis> calebk: see the benchmark output included
<calebk> ooo nice
<zenspider> ljarvis: keep em sorted and you can use binary search
<ljarvis> yep good shout
<jhass> hakunin: always use bundle exec or ruby -Ilib to test your local stuff instead of the installed version, it's the proper way
<hakunin> zenspider: pushing 'lib' into $: works, but perhaps -Ilib is cleaner
<jhass> hakunin: and use require, not require_relative
<zenspider> never use bundle exec. if you can help it.
<jhass> any reasons?
<hakunin> zenspider: actually it half works
<zenspider> complexity and time
<hakunin> zenspider: so does -Ilib. half works, need to understand what's happening
<jhass> so nothing strong
caseypatrickdris has quit [Remote host closed the connection]
<hakunin> jhass: zenspider: bundle exec seems to be the only thing where inner requires aren't activating gem
<hakunin> everything else gets into gem eventually
gwendall_ has joined #ruby-lang
<jhass> hakunin: weird -Ilib does should work too
<zenspider> hakunin: shouldn't. I do this all the time
<jhass> yeah me too
<zenspider> double check that you don't have an explicit `gem` activation call... or that you're not requiring a missing (in new code) file, or or or
<zenspider> and obvs check that bundler isn't getting in the way
<hakunin> checking everything now
<hakunin> (with -Ilib and require_relative, no other changes)
gwendall has quit [Ping timeout: 258 seconds]
<zenspider> also, for my edification, test with -Ilib + require
<zenspider> I only work the latter way
<hakunin> zenspider: i think the -Ilib is pebkac
<hakunin> (checking further)
<zenspider> hrm?
<hakunin> zenspider: problem exists between keyboard and chair
<zenspider> right. but to what end?
<zenspider> hrm... I need code to grab my current data off of fitbit
<hakunin> zenspider: "double check […] that you're not requiring a missing (in new code) file […]"
<hakunin> ^ that
<hakunin> now it's working with -Ilib
<hakunin> (removed stale require)
<hakunin> zenspider: much obliged
<zenspider> if the script is long lived (but not part of the user-facing code for the gem) then pushing onto $: should be fine and make it so you can just run ./script.rb
<zenspider> for all of this type of stuff, I flip it into the rakefile anyhow
<hakunin> zenspider: yeah, might just do that, i believe nobody except me will really run it though
loincloth has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 265 seconds]
<hakunin> zenspider: fyi "for my edification, test with -Ilib + require" <- doesn't work if simply require 'lib/foo'
<hakunin> works with './lib/foo'
<ljarvis> if you -Ilib why would you ever ./lib/foo
KINGSABRI has joined #ruby-lang
<hakunin> ljarvis: good point
<hakunin> works with require 'foo' and -Ilib
<hakunin> (just trying to answer y'all quickly)
<hakunin> final decision - at the start of script.rb: $:.push('lib'); require 'foo'
<ljarvis> lol
<hakunin> (and no -Ilib)
<hakunin> s/.push('lib')/ << 'lib'/ :)
bears has joined #ruby-lang
<zenspider> hakunin: it'd just be require "foo"
<zenspider> simpler is better
<zenspider> nice and clean
bears__ has joined #ruby-lang
<zenspider> lions and tigers and...
<ljarvis> bearrrsss
yfeldblum has joined #ruby-lang
bears has quit [Ping timeout: 240 seconds]
_djbkd has joined #ruby-lang
Menorah has quit [Quit: This computer has gone to sleep]
banister has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
banister has quit [Max SendQ exceeded]
bears_ has joined #ruby-lang
bears__ has quit [Ping timeout: 265 seconds]
apeiros_ has quit [Remote host closed the connection]
gwendall_ has quit [Ping timeout: 272 seconds]
apeiros_ has joined #ruby-lang
Bwild has joined #ruby-lang
loincloth has joined #ruby-lang
hendranata_ has joined #ruby-lang
marr has quit [Ping timeout: 245 seconds]
loincloth has quit [Ping timeout: 255 seconds]
Steve_Jobs has quit [Read error: Connection reset by peer]
<hakunin> zenspider: agree
<hakunin> zenspider: esp with the tigers part
Steve_Jobs has joined #ruby-lang
_djbkd has quit [Quit: My people need me...]
mikecmpbll has quit [Quit: ciao.]
Menorah has joined #ruby-lang
Musashi007 has joined #ruby-lang
bears___ has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bears_ has quit [Ping timeout: 265 seconds]
banister has joined #ruby-lang
bears___ has quit [Ping timeout: 256 seconds]
bears_ has joined #ruby-lang
alicanyilmaz has quit [Quit: alicanyilmaz]
havenwood has joined #ruby-lang
snoopybbt has quit [Ping timeout: 250 seconds]
symm- has quit [Ping timeout: 264 seconds]
Miphix has joined #ruby-lang
amsi has quit [Quit: Leaving]
bmichelsen has quit [Quit: ZZZzzz…]
bears___ has joined #ruby-lang
calebk has quit [Quit: calebk]
bears_ has quit [Ping timeout: 264 seconds]
dorei has quit []
caseypatrickdris has joined #ruby-lang
Yserz_ has joined #ruby-lang
Menorah has quit [Quit: This computer has gone to sleep]
bears___ has quit [Ping timeout: 250 seconds]
Yserz_1 has quit [Ping timeout: 258 seconds]
loincloth has joined #ruby-lang
dik_dak has joined #ruby-lang
sankaber has joined #ruby-lang
kirin` has quit [Ping timeout: 272 seconds]
bears_ has joined #ruby-lang
kirin` has joined #ruby-lang
jo__ has quit [Quit: Connection closed for inactivity]
dabradley has quit [Ping timeout: 264 seconds]
araujo has quit [Read error: Connection reset by peer]
loincloth has quit [Ping timeout: 258 seconds]
araujo has joined #ruby-lang
yusuf has joined #ruby-lang
mcclurmc has joined #ruby-lang
dik_dak has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Musashi007 has quit [Ping timeout: 264 seconds]
toretore has quit [Quit: This computer has gone to sleep]
Iskarlar has joined #ruby-lang
Musashi007 has joined #ruby-lang
bears_ has quit [Ping timeout: 265 seconds]
bears has joined #ruby-lang
dabradley has joined #ruby-lang
hahuang61 has joined #ruby-lang
Musashi007 has quit [Ping timeout: 265 seconds]
bb010g has joined #ruby-lang
bears has quit [Ping timeout: 250 seconds]
Musashi007 has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
kavita has joined #ruby-lang
bmichelsen has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
ItSANgo has quit [Quit: Leaving...]
bears_ has joined #ruby-lang
bmichelsen has quit [Remote host closed the connection]
sankaber has joined #ruby-lang
spastorino has quit [Quit: Connection closed for inactivity]
gwendall has joined #ruby-lang
bears___ has joined #ruby-lang
kavita has quit []
<Yserz_> Would someone help me overriding a module in a Vagrant plugin please?
havenwood has quit []
mistym has quit [Remote host closed the connection]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ItSANgo has joined #ruby-lang
bears_ has quit [Ping timeout: 240 seconds]
<Yserz_> test
bears has joined #ruby-lang
britt_ has joined #ruby-lang
bears___ has quit [Ping timeout: 255 seconds]
Musashi007 has quit [Ping timeout: 250 seconds]
o010n9 has quit [Ping timeout: 250 seconds]
t3h_j4n170r has quit [Ping timeout: 250 seconds]
gwendall has quit [Remote host closed the connection]
bears has quit [Ping timeout: 265 seconds]
gwendall has joined #ruby-lang
Musashi007 has joined #ruby-lang
o010n9 has joined #ruby-lang
t3h_j4n170r has joined #ruby-lang
hahuang61 has quit [Ping timeout: 272 seconds]
araujo has quit [Quit: Leaving]
gwendall has quit [Ping timeout: 272 seconds]
bears has joined #ruby-lang
joast has quit [Quit: Leaving.]
<nofxx__> Yserz_, just reopen de module and re'def'ine what you need
Musashi007 has quit [Quit: Musashi007]
caseypatrickdris has quit [Remote host closed the connection]
<Yserz_> nofxx__: how do i reopen it correctly? here's a gist
joast has joined #ruby-lang
<Yserz_> nofxx__: I think i have to init it. But i don't know how :/
<Yserz_> the link in line 3 points to the original
Musashi007 has joined #ruby-lang
mattyohe has quit [Quit: Connection closed for inactivity]
bears has quit [Remote host closed the connection]
bears_ has joined #ruby-lang
<nofxx__> Yserz_, as you're not exteding it but fixing it, why not fork and do a pull request?
<nofxx__> while the author don't merge you keep using your fork
bears_ has quit [Ping timeout: 245 seconds]
<Yserz_> I don't know how to hang into the plugin-system of vagrant…i also reported the issue and i'm willing to post the monkeypatch
jxie has quit [Ping timeout: 255 seconds]
rbowlby has quit [Remote host closed the connection]
deryl has joined #ruby-lang
<Yserz_> also I don't know if the patch will work as expected that's what i want to test :)
<nofxx__> Yserz_, do as I said, fork the project, fix it, use the fixed and submit pull request
Bwild has quit [Quit: leaving]
t3h_j4n170r has quit [Ping timeout: 245 seconds]
o010n9 has quit [Ping timeout: 264 seconds]
<Yserz_> kay, thx
mrod has joined #ruby-lang
t3h_j4n170r has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
o010n9 has joined #ruby-lang
rbowlby has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
rbowlby has quit [Remote host closed the connection]
mistym has joined #ruby-lang
Yserz_ has quit [Quit: Leaving.]
kapil__ has joined #ruby-lang
Iskarlar has joined #ruby-lang
Musashi007 has quit [Ping timeout: 265 seconds]
Musashi007 has joined #ruby-lang
yfeldblum has joined #ruby-lang
amclain has joined #ruby-lang
shinnya has quit [Ping timeout: 258 seconds]
Musashi007 has quit [Ping timeout: 255 seconds]
hahuang61 has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
Musashi007 has joined #ruby-lang
hahuang61 has quit [Ping timeout: 258 seconds]
gwendall has joined #ruby-lang
gwendall has quit [Ping timeout: 245 seconds]
charliesome has joined #ruby-lang
siwica1 has joined #ruby-lang
siwica has quit [Ping timeout: 245 seconds]
tenderlove has quit [Quit: Leaving...]
<nofxx__> That filenames text search textmate/emacs ido uses, has a name? "fb" matches "foobar", like "fb".chars.map { |c| ".*#{c}.*" }.join
<nofxx__> it's not substring, it's no fuzzy...
Musashi007 has quit [Ping timeout: 255 seconds]
<nofxx__> and better than a name, a better way to write than what I did
mostlybadfly has quit [Quit: Connection closed for inactivity]
yfeldblum has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
gjaldon has joined #ruby-lang
gix has quit [Ping timeout: 255 seconds]
<waxjar> nofxx__: Alfred calls it "full fuzzy match from word boundary"
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<nofxx__> waxjar, I think of it as "lazy fuzzy" ... ain't there something in regex to do this magically?
gix has joined #ruby-lang
<waxjar> nofxx__: i doubt it, i think your best bet is looking at some diff algorithms
Forgetful_Lion has joined #ruby-lang
pr0ton has joined #ruby-lang
gjaldon has quit []
zgrogan has joined #ruby-lang
deegill has joined #ruby-lang
yusuf has quit [Quit: Leaving.]
mostlybadfly has joined #ruby-lang
Iskarlar has joined #ruby-lang
funkpuppet has joined #ruby-lang
gnufied has quit [Ping timeout: 265 seconds]
nathanstitt has quit [Quit: I growing sleepy]
cornerma1 has joined #ruby-lang
gnufied has joined #ruby-lang
17WAAN33E has joined #ruby-lang
cornerman has quit [Ping timeout: 264 seconds]
cornerma1 is now known as cornerman
Musashi007 has joined #ruby-lang
_fritchie has quit [Quit: Textual IRC Client: www.textualapp.com]
<zgrogan> so i've been studying ruby for a short time and i've got a naive programmer's question, ok?
<zgrogan> it's clearly crazy productive and you can do all sorts of awesome things. why no ruby -> c (or machine) compiler?
<zgrogan> problem too large?
Musashi007 has quit [Client Quit]
funkpuppet has quit [Quit: Leaving]
revath has joined #ruby-lang
siwica1 has quit [Ping timeout: 240 seconds]
shubhamgoyal has joined #ruby-lang
charliesome has quit [Quit: zzz]
deryl has quit [Ping timeout: 244 seconds]
charliesome has joined #ruby-lang
Musashi007 has joined #ruby-lang
hendranata_ has quit [Remote host closed the connection]
shubhamgoyal has quit [Remote host closed the connection]
deryl has joined #ruby-lang
deryl has quit [Client Quit]
deryl has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
jxie has joined #ruby-lang
gwendall has joined #ruby-lang
deryl has quit []
deryl has joined #ruby-lang
mistym has quit [Remote host closed the connection]
<mrod> I made this PR (https://github.com/archSeer/ruby-mpd/pull/22) for a gem I use and change frequently so I could easily load modified versions from a local git branch instead of the official version in RubyGems. The article I linked in the PR comment seems to make a good argument for using 'require_relative' whenever possible. However, most of the gems I come across use 'require'. Is there something I am missing or is it just not commo
deryl has quit []
deryl has joined #ruby-lang
Musashi007 has joined #ruby-lang
loincloth has joined #ruby-lang
rbowlby has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
loincloth has quit [Ping timeout: 250 seconds]
rbowlby has quit [Ping timeout: 240 seconds]
enitiz has quit [Ping timeout: 256 seconds]
mistym has joined #ruby-lang
gwendall has quit [Remote host closed the connection]
gwendall has joined #ruby-lang
Iskarlar_ has joined #ruby-lang
Iskarlar has quit [Max SendQ exceeded]
jibaly has joined #ruby-lang
gwendall has quit [Ping timeout: 265 seconds]
zgrogan has quit [Ping timeout: 258 seconds]
ConstantineXVI has quit [Ping timeout: 258 seconds]
amclain has quit [Ping timeout: 258 seconds]
DefV_ has quit [Ping timeout: 258 seconds]
rbowlby has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
DefV has joined #ruby-lang
Vivex_ has joined #ruby-lang
lguardiola has quit [Ping timeout: 258 seconds]
manveru has quit [Ping timeout: 258 seconds]
lacrosse__ has quit [Ping timeout: 258 seconds]
cschneid has quit [Ping timeout: 258 seconds]
ramblinpeck_ has quit [Ping timeout: 258 seconds]
skarn has quit [Ping timeout: 258 seconds]
drewdavis has quit [Ping timeout: 258 seconds]
wizonesolutions has quit [Ping timeout: 258 seconds]
shennyg_ has quit [Ping timeout: 258 seconds]
adambeynon_ has quit [Ping timeout: 258 seconds]
hahuang65 has joined #ruby-lang
hahuang62 has quit [Ping timeout: 258 seconds]
segy has quit [Ping timeout: 258 seconds]
ramblinpeck_ has joined #ruby-lang
Y_Ichiro_ has joined #ruby-lang
Y_Ichiro_ has quit [Changing host]
Y_Ichiro_ has joined #ruby-lang
Vivex has quit [Ping timeout: 258 seconds]
Y_Ichiro has quit [Ping timeout: 258 seconds]
mostlybadfly has quit [Ping timeout: 258 seconds]
postmodern has quit [Ping timeout: 258 seconds]
linc01n has quit [Ping timeout: 258 seconds]
nifoc has quit [Ping timeout: 258 seconds]
ReinH has quit [Ping timeout: 258 seconds]
chancancode has quit [Ping timeout: 258 seconds]
Shoffner____ has quit [Ping timeout: 258 seconds]
lguardiola has joined #ruby-lang
shennyg_ has joined #ruby-lang
cout has quit [Ping timeout: 258 seconds]
manveru has joined #ruby-lang
drewdavis has joined #ruby-lang
adambeynon__ has joined #ruby-lang
cout has joined #ruby-lang
Shoffner____ has joined #ruby-lang
cschneid has joined #ruby-lang
Kejento has joined #ruby-lang
mostlybadfly has joined #ruby-lang
shubhamg_ has joined #ruby-lang
Vivex_ has quit [Ping timeout: 258 seconds]
lacrosse__ has joined #ruby-lang
DarkBushido has quit [Ping timeout: 258 seconds]
linc01n has joined #ruby-lang
mcclurmc has quit [Remote host closed the connection]
chancancode has joined #ruby-lang
Vivex_ has joined #ruby-lang
ggherdov has quit [Ping timeout: 258 seconds]
jibaly has quit [Ping timeout: 258 seconds]
twe4ked has quit [Ping timeout: 258 seconds]
loincloth has joined #ruby-lang
shubhamgoyal has quit [Ping timeout: 255 seconds]
<zenspider> mrod: you can use the gem w/o installation, but you need to add its lib to your load path
<zenspider> eg ruby -Ilib blah.rb
wizonesolutions has joined #ruby-lang
dlackty_ has quit [Ping timeout: 258 seconds]
Paradox has quit [Ping timeout: 258 seconds]
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<zenspider> or in your case, prolly `ruby -Ilib -S pry`
cschneid has quit [Ping timeout: 258 seconds]
bougyman has quit [Ping timeout: 258 seconds]
Kejento has quit [Ping timeout: 258 seconds]
twe4ked has joined #ruby-lang
DarkBushido has joined #ruby-lang
jibaly has joined #ruby-lang
womble has quit [Ping timeout: 258 seconds]
Paradox has joined #ruby-lang
<zenspider> commented on the ticket in case you miss this mrod
transiency has quit [Ping timeout: 258 seconds]
segy has joined #ruby-lang
segy has quit [Changing host]
segy has joined #ruby-lang
dlackty_ has joined #ruby-lang
t_ has joined #ruby-lang
loincloth has quit [Ping timeout: 255 seconds]
linc01n has quit [Ping timeout: 258 seconds]
<mrod> Thanks zenspider, I thought that might be a better solution since it's also compatible with <1.9.2
linc01n has joined #ruby-lang
womble has joined #ruby-lang
twe4ked has quit [Ping timeout: 258 seconds]
ggherdov has joined #ruby-lang
gianlucadv has joined #ruby-lang
postmodern has joined #ruby-lang
Paradox has quit [Ping timeout: 258 seconds]
linc01n has quit [Ping timeout: 258 seconds]
deegill has quit [Remote host closed the connection]
jibaly has quit [Remote host closed the connection]
linc01n has joined #ruby-lang
twe4ked has joined #ruby-lang
meizaps has quit [Ping timeout: 258 seconds]
Paradox has joined #ruby-lang
bougyman has joined #ruby-lang
ConstantineXVI has joined #ruby-lang
sk_0_ has quit [Ping timeout: 258 seconds]
shubhamg_ has quit [Read error: Connection reset by peer]
sk_0 has joined #ruby-lang
skarn has joined #ruby-lang
nifoc has joined #ruby-lang
meizaps has joined #ruby-lang
Musashi007 has quit [Quit: Musashi007]
Musashi007 has joined #ruby-lang
ReinH has joined #ruby-lang
gjaldon has joined #ruby-lang
deryl has quit []
yfeldblum has quit [Ping timeout: 250 seconds]
djellemah has joined #ruby-lang
cantonic has quit [Quit: cantonic]
rbowlby has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
jxie has quit [Ping timeout: 240 seconds]
jxie has joined #ruby-lang
rippa has joined #ruby-lang
rbowlby has joined #ruby-lang
kapil__ has quit [Quit: Connection closed for inactivity]
spuk has quit [Ping timeout: 250 seconds]
spuk has joined #ruby-lang
ruby-lang932 has joined #ruby-lang
<ruby-lang932> hey im trying to convert a string into an array seperated by commas. Can anyone help?
hahuang61 has joined #ruby-lang
nofxx__ has quit [Ping timeout: 256 seconds]
gwendall has joined #ruby-lang
<godd2> ruby-lang932 can you give an example of a string and desired array?
<godd2> one interpretation would be "some,string,here".split(",") == ["some", "string", "here"] but I wasn't sure if you meant you wanted to split on the commas in the string
hahuang61 has quit [Ping timeout: 272 seconds]
Musashi007 has quit [Quit: Musashi007]
gareim has joined #ruby-lang
gwendall has quit [Ping timeout: 265 seconds]
<gareim> I'm writing a Web crawler and it got stuck on a url that includes a 1/2 symbol. how do I get past it
cantonic has joined #ruby-lang
Musashi007 has joined #ruby-lang
gjaldon has quit [Remote host closed the connection]
<godd2> gareim what do you mean "got stuck"? Did it raise an exception?
spuk has quit [Ping timeout: 255 seconds]
<zenspider> last time I looked at a uri spec, a 1/2 symbol wasn't valid to begin with
<godd2> gareim convert it to %C2%BD ?
spuk has joined #ruby-lang
jxie has quit [Ping timeout: 245 seconds]
<gareim> godd2, Er, lost the error message but it just said that it was an invalid url. how can I easily automatically convert it? pulling the links straight off a table of contents
jxie has joined #ruby-lang
<godd2> okay so you're grabbing a link as a string, and then converting it to some sort of uri object?
<godd2> if that's true, then before you create the uri object out of the string, run a quick check on the string if there are any invalid characters, and replace them
cantonic has quit [Quit: cantonic]
<godd2> but then I don't know how you're grabbing this list of uris and what you're doing with that list once you get it.
<ruby-lang932> its like this : "+++++-+++" . I want an array that is [+,+,+,+,+,-,+,+,+]. How do i get to that?
<godd2> ruby-lang932 str.split ""
<godd2> >> "+++++-+++".split ""
<eval-in__> godd2 => ["+", "+", "+", "+", "+", "-", "+", "+", "+"] (https://eval.in/236833)
shubhamgoyal has joined #ruby-lang
<godd2> or str.chars.to_a
<godd2> which reads string characters to array
<godd2> I'm sure there are other ways to do it
Musashi007 has quit [Quit: Musashi007]
<gareim> godd2, Hm, that sounds like a good plan, I'll try it. thanks!
djbkd has quit [Remote host closed the connection]
<ruby-lang932> sweet thanks!
djbkd has joined #ruby-lang
<godd2> ruby-lang932 don't forget you can always look through the list of string methods here: http://www.ruby-doc.org/core-2.1.4/String.html
<godd2> It would behoove you read through them at some point
<godd2> But I'm not your mom :)
<ruby-lang932> ur not? all this time...
<godd2> haha
__JokerDoom has quit [Quit: Leaving]
britt_ has quit [Quit: (null)]
jxie has quit [Ping timeout: 240 seconds]
jxie has joined #ruby-lang
<ruby-lang932> if i call .class on my string after i called split on it, ruby tells me its a String and not an Array. How come?
<gareim> I tried replacing the character using sub, but it didn't have any effect at all. :/ http://pastie.org/9791129
djbkd has quit [Remote host closed the connection]
<godd2> try link.sub("\u00BD", "%C2%BD")
Menorah has joined #ruby-lang
<godd2> (and make sure your encoding is utf-8)
revath has quit [Quit: Leaving]
revath has joined #ruby-lang
revath has left #ruby-lang [#ruby-lang]
<gareim> still doesn't change it. is my idea right? does doing link.sub actually modify the link? I'm trying to replace h and it won't replace that either
<godd2> >> "asdf".sub("a", "xyz")
<eval-in__> godd2 => "xyzsdf" (https://eval.in/236834)
<whitequark> no. #sub returns a new string
<whitequark> #sub! will modify it in-place
<godd2> oooh that's the problem
<godd2> mutability strikes again!
kapil__ has joined #ruby-lang
<gareim> argh, I feel like the mutability should have fixed it, but my strings still aren't changing
<gareim> Oh wait
GBrawl has joined #ruby-lang
<gareim> I think it's because it's not actually a string. it's a Nokogiri::XML::Element
<gareim> I'll try to convert it to a string
spuk has quit [Ping timeout: 250 seconds]
djellemah has quit [Read error: Connection reset by peer]
<godd2> gareim you may want to try link.text ?
yfeldblum has joined #ruby-lang
spuk has joined #ruby-lang
<godd2> iff it's a Nokogiri::XML::Element then it should have #content and #content=
shinnya has joined #ruby-lang
<gareim> that seems promising, I'll try that
yfeldblum has quit [Ping timeout: 272 seconds]
<godd2> dont forget that in the DOM, nodes have inner text or whatever
Gropatra has joined #ruby-lang
<gareim> I don't think it's working. here's what I tried: http://pastie.org/9791147
<godd2> do you have pry installed?
Gropatra has left #ruby-lang [#ruby-lang]
<gareim> I don't think so. what does pry do?
<godd2> magic
<godd2> gem install pry
<godd2> and then on the line before links.each put require 'pry'
<godd2> and then on the next line
<godd2> binding.pry
<godd2> then run your script
<gareim> binding.pry comes right after require 'pry'?
<godd2> it will open up what looks like irb but at the line you put binding.pry at
GBrawl has quit [Quit: (null)]
<gareim> Okay, got it open
<godd2> type links and press enter
<gareim> got it. debugger? I've used gdb a few times
<gareim> How do I step forward?
<godd2> a couple ways
<godd2> one is to drop binding.pry several places
<godd2> you can always exit
<godd2> if you type exit it will go to the next binding.pry or finish the script
<godd2> brb
<gareim> interesting, thanks
fusillicode1 has joined #ruby-lang
fusillicode has quit [Ping timeout: 272 seconds]
fusillicode1 has quit [Client Quit]
fusillicode has joined #ruby-lang
druznek has joined #ruby-lang
<gareim> Okay, so I figured out that the include? is totally working. if I puts something if include? the 1/2, it puts something. but using pry, I can see that sub! isn't doing anything
fusillicode has quit [Read error: Connection reset by peer]
<gareim> I've saved the video you linked, will watch it tomorrow, thanks. it's getting late here and I'm going to sleep and tackle this tomorrow. :/
fusillicode has joined #ruby-lang
<gareim> thanks for the tremendous help though, pry is a very cool tool and you've put me on the right path, I think
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
fusillicode1 has joined #ruby-lang
mostlybadfly has quit [Quit: Connection closed for inactivity]
fusillicode has quit [Ping timeout: 256 seconds]
ruby-lang932 has quit [Quit: Page closed]
Iskarlar has joined #ruby-lang
spuk has quit [Ping timeout: 264 seconds]
rbowlby has quit [Remote host closed the connection]
spuk has joined #ruby-lang
workmad3 has joined #ruby-lang
gix has quit [Ping timeout: 255 seconds]
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
gix has joined #ruby-lang
charliesome has quit [Quit: zzz]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
yfeldblum has joined #ruby-lang
Menorah has quit [Quit: Leaving]
spuk has quit [Ping timeout: 250 seconds]
yfeldblum has quit [Ping timeout: 255 seconds]
djbkd has joined #ruby-lang
spuk has joined #ruby-lang
Iskarlar has joined #ruby-lang
toretore has joined #ruby-lang
djbkd has quit [Ping timeout: 256 seconds]
ikrima has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
Musashi007 has joined #ruby-lang
mistym has quit [Remote host closed the connection]
deegill has joined #ruby-lang
deegill has quit [Ping timeout: 250 seconds]
stamina has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
oleo is now known as Guest26089
oleo__ has joined #ruby-lang
loincloth has joined #ruby-lang
wprice has quit [Quit: wprice]
tkuchiki has joined #ruby-lang
Guest26089 has quit [Ping timeout: 264 seconds]
loincloth has quit [Ping timeout: 258 seconds]
Iskarlar has joined #ruby-lang
Versality has joined #ruby-lang
Iskarlar has quit [Client Quit]
cantonic has joined #ruby-lang
yfeldblum has joined #ruby-lang
yfeldblum has quit [Ping timeout: 258 seconds]
Iskarlar has joined #ruby-lang
Iskarlar has quit [Client Quit]
Iskarlar has joined #ruby-lang
charliesome has joined #ruby-lang
Iskarlar has quit [Client Quit]
jds has joined #ruby-lang
workmad3 has quit [Ping timeout: 240 seconds]
chinmay_dd has joined #ruby-lang
Yserz_ has joined #ruby-lang
charliesome has quit [Quit: zzz]
yfeldblum has joined #ruby-lang
charliesome has joined #ruby-lang
arBmind has joined #ruby-lang
druznek has quit [Ping timeout: 240 seconds]
yfeldblum has quit [Ping timeout: 245 seconds]
petertretyakov has joined #ruby-lang
robbyoconnor has joined #ruby-lang
gareim has quit [Ping timeout: 265 seconds]
Musashi007 has quit [Quit: Musashi007]
cantonic has quit [Quit: cantonic]
yfeldblum has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
red_menace has joined #ruby-lang
dorei has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
yfeldblu_ has quit [Ping timeout: 255 seconds]
stamina has quit [Quit: WeeChat 1.0.1]
oleo__ has quit [Quit: Verlassend]
charliesome has quit [Quit: zzz]
charliesome has joined #ruby-lang
druznek has joined #ruby-lang
Mon_Ouie has quit [Ping timeout: 264 seconds]
oleo has joined #ruby-lang
AKASkip has joined #ruby-lang
AKASkip has quit [Ping timeout: 245 seconds]
cantonic has joined #ruby-lang
ledestin has quit [Quit: ledestin]
gjaldon has joined #ruby-lang
gjaldon has quit [Remote host closed the connection]
dagda1 has quit [Ping timeout: 250 seconds]
symm- has joined #ruby-lang
yfeldblum has joined #ruby-lang
druznek has quit [Ping timeout: 244 seconds]
Forgetful_Lion has quit [Remote host closed the connection]
dagda1 has joined #ruby-lang
yfeldblum has quit [Ping timeout: 244 seconds]
shazaum has joined #ruby-lang
Bwild has joined #ruby-lang
Vivex_ is now known as Vivex
gss has joined #ruby-lang
gss_ has joined #ruby-lang
shaman42 has quit [Remote host closed the connection]
gss has quit [Ping timeout: 272 seconds]
chinmay_dd has quit [Quit: Leaving]
cyndis has quit [Read error: Connection reset by peer]
sankaber has joined #ruby-lang
rahul_j has joined #ruby-lang
chinmay_dd has joined #ruby-lang
cantonic has quit [Quit: cantonic]
17WAAN33E has quit [Remote host closed the connection]
bears_ has joined #ruby-lang
bears_ has quit [Remote host closed the connection]
bears_ has joined #ruby-lang
Vivex_ has joined #ruby-lang
cyndis has joined #ruby-lang
GBrawl has joined #ruby-lang
banister has quit [Ping timeout: 240 seconds]
Vivex has quit [Ping timeout: 240 seconds]
jamo_ has joined #ruby-lang
bears_ has quit [Ping timeout: 264 seconds]
Yserz_ has quit [Ping timeout: 245 seconds]
shaman42 has joined #ruby-lang
yfeldblum has joined #ruby-lang
kapil__ has quit [Quit: Connection closed for inactivity]
yfeldblum has quit [Ping timeout: 252 seconds]
siwica has joined #ruby-lang
rippa has joined #ruby-lang
hahuang61 has joined #ruby-lang
Yserz_ has joined #ruby-lang
chinmay_dd has quit [Quit: Leaving]
hahuang61 has quit [Ping timeout: 276 seconds]
charliesome has quit [Quit: zzz]
enitiz has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
rahul_j has joined #ruby-lang
jamo_ has quit [Quit: Lost terminal]
jamo_ has joined #ruby-lang
houhoulis has quit [Remote host closed the connection]
enebo has joined #ruby-lang
fusillicode has joined #ruby-lang
petertretyakov has quit [Quit: Be back later ...]
cantonic has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
fusillicode1 has quit [Ping timeout: 264 seconds]
cantonic has quit [Read error: Connection reset by peer]
chinmay_dd has joined #ruby-lang
spastorino has joined #ruby-lang
cantonic has joined #ruby-lang
gwendall has joined #ruby-lang
kiyote23 has quit []
cantonic has quit [Quit: cantonic]
elastik has joined #ruby-lang
petertretyakov has joined #ruby-lang
kiyote23 has joined #ruby-lang
<elastik> Hello guys!
<elastik> I am stuck again. Looking for a little help after a lot of reading and testing.
fusillicode1 has joined #ruby-lang
<elastik> I am trying to close a pop up window in Windows 7 after running rkill.
<elastik> The program runs but the pop up doesn't close.
rahul_j has joined #ruby-lang
yfeldblum has joined #ruby-lang
fusillicode has quit [Ping timeout: 240 seconds]
Menorah has joined #ruby-lang
yfeldblum has quit [Ping timeout: 276 seconds]
<elastik> I am going to cross channel post. I will let this channel know if my problem gets solved. Thnaks
<apeiros_> kudos for informing
shubhamgoyal has joined #ruby-lang
jgpawletko has joined #ruby-lang
jgpawletko has quit [Client Quit]
kiyote23 has quit []
kiyote23 has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
shubhamgoyal has quit [Ping timeout: 264 seconds]
anekos_ has quit [Remote host closed the connection]
anekos has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
loincloth has joined #ruby-lang
druznek has joined #ruby-lang
shubhamgoyal has quit [Ping timeout: 256 seconds]
loincloth has quit [Ping timeout: 252 seconds]
banister has joined #ruby-lang
gss_ has quit [Remote host closed the connection]
cantonic has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wprice has joined #ruby-lang
<elastik> Hey guys I got it to work.
shubhamg_ has joined #ruby-lang
Kejento has joined #ruby-lang
gss has joined #ruby-lang
Vivex_ has quit [Ping timeout: 240 seconds]
funkpuppet has joined #ruby-lang
cantonic has quit [Quit: cantonic]
shubhamg_ has quit [Ping timeout: 250 seconds]
stamina has joined #ruby-lang
shazaum has quit [Quit: Leaving]
havenwood has joined #ruby-lang
Xney2 has joined #ruby-lang
yfeldblum has joined #ruby-lang
deg_ has joined #ruby-lang
zeusmns_ has joined #ruby-lang
vieq_ has joined #ruby-lang
apeiros__ has joined #ruby-lang
_br_- has joined #ruby-lang
nofxx__ has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
hachiya_ has joined #ruby-lang
yfeldblum has quit [Ping timeout: 265 seconds]
apeiros_ has quit [Disconnected by services]
apeiros__ is now known as apeiros_
ericwood_ has joined #ruby-lang
klmlfl has joined #ruby-lang
bnagy_ has joined #ruby-lang
ironcame1 has joined #ruby-lang
faces has joined #ruby-lang
Gaelane has joined #ruby-lang
funnel_ has joined #ruby-lang
chinmay_dd is now known as cdd|dinner
rx has joined #ruby-lang
_whitelogger_ has joined #ruby-lang
EvilJStoker_ has joined #ruby-lang
ericwood has joined #ruby-lang
segy has joined #ruby-lang
rx has quit [*.net *.split]
eristic_ is now known as eristic
SkramX_ is now known as SkramX
surrounder has joined #ruby-lang
jayne_ has joined #ruby-lang
lacrosse__ has joined #ruby-lang
nomadicoder has joined #ruby-lang
dorei has joined #ruby-lang
mjc__ is now known as mjc_
kirin` has quit [Ping timeout: 245 seconds]
ItSANg___ has joined #ruby-lang
pr0ton_ has joined #ruby-lang
Menorah has quit [Read error: Connection reset by peer]
womble has joined #ruby-lang
kirin` has joined #ruby-lang
saltsa has joined #ruby-lang
ihme-TTilus has joined #ruby-lang
deg_ has quit [*.net *.split]
druznek has quit [*.net *.split]
rippa has quit [*.net *.split]
cout has quit [*.net *.split]
pr0ton has quit [*.net *.split]
ItSANgo has quit [*.net *.split]
Miphix has quit [*.net *.split]
chouhoul_ has quit [*.net *.split]
weaksauce has quit [*.net *.split]
havenwood has quit [*.net *.split]
iamninja has quit [*.net *.split]
pr0ton_ is now known as pr0ton
unsymbol_ has joined #ruby-lang
duderonomy has quit [Max SendQ exceeded]
ramblinpeck__ has joined #ruby-lang
hackeron_ has quit [Ping timeout: 255 seconds]
gwendall has quit [Remote host closed the connection]
priodev has quit [Ping timeout: 255 seconds]
drbrain has quit [Ping timeout: 255 seconds]
TTilus has quit [Ping timeout: 255 seconds]
drbrain has joined #ruby-lang
dvorak has quit [Ping timeout: 255 seconds]
ramblinpeck__ has quit [Ping timeout: 255 seconds]
jayne has quit [Read error: Connection reset by peer]
avdi has joined #ruby-lang
druznek has joined #ruby-lang
tekmaster has joined #ruby-lang
mbr has joined #ruby-lang
hackeron has joined #ruby-lang
pabs has quit [Ping timeout: 255 seconds]
aef_ has quit [Ping timeout: 255 seconds]
chouhoul_ has joined #ruby-lang
priodev has joined #ruby-lang
tekmaster is now known as Guest70070
dagda1_ has joined #ruby-lang
shaman42_ has joined #ruby-lang
chris2 has joined #ruby-lang
hakunin has quit [Ping timeout: 265 seconds]
kramsee_ has quit [Ping timeout: 265 seconds]
ndrst has quit [Ping timeout: 265 seconds]
michael_mbp has quit [Ping timeout: 265 seconds]
nivardus_ has quit [Ping timeout: 265 seconds]
canton7 has joined #ruby-lang
benlakey_ has joined #ruby-lang
petertretyakov has quit [*.net *.split]
ericwood_ has quit [*.net *.split]
gss has quit [*.net *.split]
kiyote23 has quit [*.net *.split]
shaman42 has quit [*.net *.split]
GBrawl has quit [*.net *.split]
kith has quit [*.net *.split]
tekacs has quit [*.net *.split]
EvilJStoker has quit [*.net *.split]
Guest70070 is now known as tekacs
EvilJStoker_ is now known as EvilJStoker
nivardus has joined #ruby-lang
symm- has joined #ruby-lang
nivardus has quit [Changing host]
nivardus has joined #ruby-lang
canton7 has quit [Changing host]
canton7 has joined #ruby-lang
vondruch has joined #ruby-lang
bnagy_ has quit [*.net *.split]
wprice has quit [*.net *.split]
dagda1 has quit [*.net *.split]
aarellano has quit [*.net *.split]
tekacs is now known as Guest83413
bahar has joined #ruby-lang
nofxx__ has joined #ruby-lang
t3h_j4n170r has quit [Quit: leaving]
kiyote23 has joined #ruby-lang
aarellano has joined #ruby-lang
wprice has joined #ruby-lang
aef has joined #ruby-lang
nisstyre has joined #ruby-lang
cornerman has joined #ruby-lang
jtdoncas has joined #ruby-lang
kramsee has joined #ruby-lang
cout has joined #ruby-lang
bnagy has joined #ruby-lang
fusillicode has joined #ruby-lang
kalzz has joined #ruby-lang
ramblinpeck_ has joined #ruby-lang
tommylommykins has joined #ruby-lang
dvorak has joined #ruby-lang
slumos has joined #ruby-lang
deg has joined #ruby-lang
petertretyakov_ has quit [Quit: Be back later ...]
eristic has quit [Changing host]
eristic has joined #ruby-lang
pskosinski has quit [Changing host]
pskosinski has joined #ruby-lang
dlackty__ has joined #ruby-lang
dlackty__ has quit [Changing host]
Shoffner____ has quit [Changing host]
Shoffner____ has joined #ruby-lang
mjc_ has quit [Changing host]
mjc_ has joined #ruby-lang
moogumbo has quit [Changing host]
moogumbo has joined #ruby-lang
adambeynon__ has quit [Changing host]
adambeynon__ has joined #ruby-lang
SkramX has quit [Changing host]
SkramX has joined #ruby-lang
petertretyakov_ has joined #ruby-lang
jlpeters has quit [Changing host]
jlpeters has joined #ruby-lang
bradland has quit [Quit: bradland]
bcardarella_ has quit [Changing host]
bcardarella_ has joined #ruby-lang
chancancode has quit [Changing host]
chancancode has joined #ruby-lang
pabs has joined #ruby-lang
lacrosse__ has quit [Changing host]
lacrosse__ has joined #ruby-lang
nomadicoder has quit [Changing host]
nomadicoder has joined #ruby-lang
kirin` has quit [Changing host]
kirin` has joined #ruby-lang
clamstar has joined #ruby-lang
avdi has quit [Changing host]
avdi has joined #ruby-lang
cdd|dinner is now known as chinmay_dd
benlakey_ has quit [Changing host]
benlakey_ has joined #ruby-lang
ramblinpeck_ has quit [Changing host]
ramblinpeck_ has joined #ruby-lang
michael_mbp has joined #ruby-lang
diegoviola has joined #ruby-lang
gjaldon has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
klmlfl_ has quit [Remote host closed the connection]
iamninja has joined #ruby-lang
havenwood has joined #ruby-lang
enebo has quit [Quit: enebo]
tpope_ is now known as tpope
gss_ has quit [Remote host closed the connection]
druznek has quit [Ping timeout: 264 seconds]
yfeldblum has joined #ruby-lang
nathanstitt has joined #ruby-lang
yfeldblum has quit [Ping timeout: 252 seconds]
elastik has quit [Ping timeout: 258 seconds]
Blackhol_ has joined #ruby-lang
gjaldon has quit [Remote host closed the connection]
emmesswhy has quit [Quit: Leaving]
Astrologos_ has joined #ruby-lang
dorei has quit [Ping timeout: 264 seconds]
Astrologos_ has quit [Ping timeout: 255 seconds]
loincloth has joined #ruby-lang
gbanis has joined #ruby-lang
dorei has joined #ruby-lang
cornerma1 has joined #ruby-lang
chinmay_dd has quit [Quit: Leaving]
loincloth has quit [Ping timeout: 244 seconds]
gjaldon has joined #ruby-lang
spastorino has quit [Quit: Connection closed for inactivity]
cornerman has quit [Ping timeout: 264 seconds]
cornerma1 is now known as cornerman
gwendall has joined #ruby-lang
Menorah has joined #ruby-lang
malconis has joined #ruby-lang
elastik has joined #ruby-lang
gss has joined #ruby-lang
gwendall has quit [Ping timeout: 265 seconds]
gwendall has joined #ruby-lang
mistym has joined #ruby-lang
yfeldblum has joined #ruby-lang
yfeldblum has quit [Ping timeout: 258 seconds]
elastik has quit [Ping timeout: 256 seconds]
stamina has quit [Ping timeout: 250 seconds]
gjaldon has quit []
crbnthg8 has joined #ruby-lang
jtzero1 has joined #ruby-lang
AKASkip has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
crbnthg8 has quit [Client Quit]
znz_jp has joined #ruby-lang
malconis has joined #ruby-lang
joast has quit [Quit: Leaving.]
henrikhodne has joined #ruby-lang
joast has joined #ruby-lang
mostlybadfly has joined #ruby-lang
majeure has joined #ruby-lang
majeure has left #ruby-lang [#ruby-lang]
kiyote23 has quit [Remote host closed the connection]
joast has quit [Quit: Leaving.]
revath has joined #ruby-lang
ndrst has joined #ruby-lang
joast has joined #ruby-lang
bkutil_ has joined #ruby-lang
loincloth has joined #ruby-lang
joast has quit [Client Quit]
joast has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
stamina has joined #ruby-lang
loincloth has quit [Ping timeout: 258 seconds]
joast has quit [Quit: Leaving.]
capin_ is now known as capin
mattyohe has joined #ruby-lang
yfeldblum has joined #ruby-lang
joast has joined #ruby-lang
tkuchiki has joined #ruby-lang
gwendall has quit [Remote host closed the connection]
gss has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 245 seconds]
tkuchiki has quit [Ping timeout: 240 seconds]
gbanis has quit [Quit: gbanis]
britt_ has joined #ruby-lang
joast has quit [Quit: Leaving.]
joast has joined #ruby-lang
oak has joined #ruby-lang
petertretyakov_ has quit [Quit: Be back later ...]
Bwild has quit [Quit: leaving]
kiyote23 has joined #ruby-lang
deryl has joined #ruby-lang
jtzero1 has left #ruby-lang [#ruby-lang]
gianlucadv has quit [Ping timeout: 250 seconds]
alicanyilmaz has joined #ruby-lang
<alicanyilmaz> guys is it good idea to use postgresql for production??
<alicanyilmaz> #rubyOnRails
<deryl> if you need it, yes. if you're more familiar with a different rdbms then use it
hahuang61 has joined #ruby-lang
<yorickpeterse> alicanyilmaz: this is IRC, you don't need to add hash tags to your messages
<alicanyilmaz> i have used the hashtag to enter the channel mate yorickpeterse
<alicanyilmaz> absolutely i know hashtags are not needed
<apeiros_> that's not a hashtag mate, that's a channelname
<yorickpeterse> m8
<yorickpeterse> also that question is as vague as asking "should I use something"
<apeiros_> (and no, channel names are not required to start with a #)
<alicanyilmaz> mate when you click to channel name with hashtag
<apeiros_> postgres is an excellent rdbms
<alicanyilmaz> anyways
<alicanyilmaz> apeiros:
<yorickpeterse> alicanyilmaz: mate you don't need to put in channel names as messages, you can just /join ...
<yorickpeterse> mate
<alicanyilmaz> yorickpeterse: i’m sorry im net at ircs
<apeiros_> but whether it suits your needs is a different question
<alicanyilmaz> thanks for your great advie
<alicanyilmaz> advice*
revath has quit [Read error: Connection reset by peer]
<yorickpeterse> np mate
hahuang61 has quit [Ping timeout: 258 seconds]
<alicanyilmaz> apeiros: i’m coming from .Net and really its hard to adapt the open source systems :)
<alicanyilmaz> in sql server , i was have tons of sources :)
<alicanyilmaz> apeiros: is postgres fast in very big web apps ? :)
nathanstitt has quit [Quit: I growing sleepy]
<apeiros_> alicanyilmaz: you know, there's this completely new company
<apeiros_> it's called goggle, gougle or somesuch
nisstyre has quit [Changing host]
nisstyre has joined #ruby-lang
mliqu has joined #ruby-lang
<alicanyilmaz> :D
<alicanyilmaz> u fun
<apeiros_> yes, postgres is fast. yes, postgres can handle lots of data, and just for fun it's one of the most ansi sql compliant rdbms in existence.
Guest92 has joined #ruby-lang
<apeiros_> and I would be surprised if postgres wasn't more capable than mssql in almost all regards
yfeldblum has joined #ruby-lang
redline6561 has joined #ruby-lang
<alicanyilmaz> i understood apeiros_
<alicanyilmaz> thanks so much, do not angry with me mate, i’m completely new and was really adapted with ms’s ready gui. I was developing back-end systems with azure and vs and its was really easy to deploy existing wep api to the cloud. But in this side, i’m looking almost every professional and experienced programmers go with open source. I like it but it’s really hard to develop. But its exciting, i’m learning day by day. And i Hope will be a great
<alicanyilmaz> hacker in future. :) Thanks for your supp
yfeldblum has quit [Ping timeout: 256 seconds]
alicanyilmaz has quit [Quit: alicanyilmaz]
kiyote23 has quit [Remote host closed the connection]
kyb3r_ has joined #ruby-lang
alicanyilmaz has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nathanstitt has joined #ruby-lang
banister has joined #ruby-lang
britt_ has quit [Ping timeout: 255 seconds]
gwendall has joined #ruby-lang
ruby-lang937 has joined #ruby-lang
ruby-lang937 has quit [Client Quit]
thgye566 has joined #ruby-lang
alicanyilmaz has quit [Quit: alicanyilmaz]
gwendall has quit [Ping timeout: 265 seconds]
lapide_viridi has joined #ruby-lang
banister has quit [Read error: Connection reset by peer]
KINGSABRI_ has joined #ruby-lang
diegoviola has quit [Quit: WeeChat 1.0.1]
diegoviola has joined #ruby-lang
diegoviola has quit [Client Quit]
diegoviola has joined #ruby-lang
KINGSABRI has quit [Ping timeout: 264 seconds]
redline6561 has left #ruby-lang ["ERC Version 5.3 (IRC client for Emacs)"]
JohnBat26 has joined #ruby-lang
GBrawl has joined #ruby-lang
thgye566 has quit []
enitiz has quit [Remote host closed the connection]
Guest92 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yfeldblum has joined #ruby-lang
yfeldblum has quit [Ping timeout: 245 seconds]
Guest92 has joined #ruby-lang
snoopybbt has joined #ruby-lang
mistym has quit [Remote host closed the connection]
deegill has joined #ruby-lang
Versality has quit [Quit: Lingo: www.lingoirc.com]
jo__ has joined #ruby-lang
GBrawl has quit [Quit: (null)]
tkuchiki has joined #ruby-lang
tkuchiki has quit [Ping timeout: 252 seconds]
petertretyakov_ has joined #ruby-lang
kiyote23 has joined #ruby-lang
malconis has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
malconis has quit [Quit: Textual IRC Client: www.textualapp.com]
elastik has joined #ruby-lang
yfeldblum has joined #ruby-lang
Guest92 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
lapide_viridi has quit [Quit: Leaving]
weaksauce has joined #ruby-lang
yfeldblum has quit [Ping timeout: 252 seconds]
elastik has quit [Ping timeout: 244 seconds]
deegill has quit [Remote host closed the connection]
oak has quit [Ping timeout: 244 seconds]
soahccc has quit [Read error: Connection reset by peer]
klmlfl has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
klmlfl has quit [Remote host closed the connection]
stamina has quit [Remote host closed the connection]
malconis has joined #ruby-lang
elastik has joined #ruby-lang
mattyohe has quit [Quit: Connection closed for inactivity]
mattyohe has joined #ruby-lang
yfeldblum has joined #ruby-lang
JohnBat26 has quit [Ping timeout: 272 seconds]
elastik has quit [Ping timeout: 244 seconds]
nathanstitt has quit [Quit: I growing sleepy]
petertretyakov_ has quit [Quit: Be back later ...]
yfeldblum has quit [Ping timeout: 244 seconds]
ddd has joined #ruby-lang
elia has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
deryl has quit [Ping timeout: 255 seconds]
ddd is now known as deryl
malconis has joined #ruby-lang
kmw7339 has joined #ruby-lang
kmw7339 has left #ruby-lang [#ruby-lang]
KINGSABRI_ has quit [Remote host closed the connection]
duderonomy has joined #ruby-lang
GBrawl has joined #ruby-lang
elastik has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
tkuchiki has joined #ruby-lang
oleo is now known as Guest30153
oleo__ has joined #ruby-lang
nofxx_ has joined #ruby-lang
nofxx_ has quit [Changing host]
nofxx_ has joined #ruby-lang
Guest30153 has quit [Ping timeout: 252 seconds]
tkuchiki has quit [Ping timeout: 244 seconds]
nathanstitt has joined #ruby-lang
nofxx__ has quit [Ping timeout: 240 seconds]
o010n9 has quit [Ping timeout: 250 seconds]
kiyote23 has joined #ruby-lang
snoopybbt has quit [Quit: leaving]
o010n9 has joined #ruby-lang
rikkipitt has joined #ruby-lang
AKASkip has quit [Ping timeout: 245 seconds]
arBmind1 has joined #ruby-lang
marr has joined #ruby-lang
arBmind has quit [Ping timeout: 258 seconds]
charliesome has joined #ruby-lang
yfeldblum has quit [Read error: Connection reset by peer]
symm- has quit [Ping timeout: 256 seconds]
soahccc has joined #ruby-lang
yfeldblum has joined #ruby-lang
caseypatrickdris has quit [Remote host closed the connection]
GBrawl has quit [Ping timeout: 258 seconds]
jxie has joined #ruby-lang
arBmind has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
arBmind1 has quit [Ping timeout: 244 seconds]
elastik has quit [Ping timeout: 255 seconds]
Menorah has quit [Quit: This computer has gone to sleep]
Narzew has joined #ruby-lang
caseypatrickdris has quit [Remote host closed the connection]
rbowlby has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
loincloth has joined #ruby-lang
rbowlby has quit [Ping timeout: 240 seconds]
rbowlby has joined #ruby-lang
hahuang61 has joined #ruby-lang
loincloth has quit [Ping timeout: 244 seconds]
kiyote23 has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
Kejento has quit [Read error: Connection reset by peer]
hahuang61 has quit [Ping timeout: 272 seconds]
araujo has joined #ruby-lang