<lukevinc>
cleopatra: darn windows, the ide is not 100% free?
chipotle has quit [Quit: cya]
<sevenseacat>
good morning cleopatra
<cleopatra>
lukevinc, you mean rubymine?
<lukevinc>
cleopatra: yes
chrisliaw has quit [Quit: Leaving]
<cleopatra>
no is free ask for license
<cleopatra>
but in google there are many license keys
jko_ has joined #ruby
zhy has joined #ruby
<lukevinc>
there's no free ide anyway?
<cleopatra>
no
entrenador has quit [Quit: leaving]
<lukevinc>
cleopatra: thanks, sweet, see ya around
kevkev has joined #ruby
<cleopatra>
ahh maybe you like sublimetext
mikepack has joined #ruby
Quark has joined #ruby
<lukevinc>
i would like a tool to teach my students to learn ruby.
Quark has quit [Client Quit]
zhy has quit [Client Quit]
duncannz has joined #ruby
<cleopatra>
is relatively free
_1OfTheQuark_ has joined #ruby
<cleopatra>
or netbeams also i trink eclipse have a plugin for ruby
_1OfTheQuark_ has quit [Read error: Connection reset by peer]
timonv_ has joined #ruby
<lukevinc>
right.
_2OfTheQuark_ has joined #ruby
<cleopatra>
you can check aptana and raprails
<lukevinc>
it's a good oportunity to we, #ruby channel develop a free ide of ruby, huh?
<cleopatra>
RadRails - Aptana
fabrice31 has joined #ruby
<cleopatra>
hey you are teacher?
<lukevinc>
yes
kevkev has quit [Ping timeout: 245 seconds]
tkuchiki has joined #ruby
<cleopatra>
can you give me ruby lessons free
GluonQuark has joined #ruby
<cleopatra>
:P
b1nd has quit [Ping timeout: 258 seconds]
<lukevinc>
yes, what is your doubt, i'm learning it too, but 2 minds think better together
<cleopatra>
lol
<lukevinc>
i know the basics only, i think it's enough, i learned until modules
grenierm has joined #ruby
<lukevinc>
i will see if i will learn rails when i got some time
Wolland has joined #ruby
<cleopatra>
nothing special i just go into start ruby
<lukevinc>
could ask me anytime, sweet. i have a good tutorial to you start
<cleopatra>
I am currently making a small app in rails
<GluonQuark>
Hi all...
<lukevinc>
cleopatra: do you know ruby basis?
timonv_ has quit [Ping timeout: 246 seconds]
fabrice31 has quit [Ping timeout: 245 seconds]
InhalingPixels has quit []
<cleopatra>
lukevinc, a little, when I have problems I am going to books
yeboot has quit [Ping timeout: 260 seconds]
<lukevinc>
cleopatra: do the course of ruby in codeacademy.com. i learned a lot and fast.
<lukevinc>
it's a interactive tutorial, there's no way to you don't learn, you have to do what they ask you to do.
xcv has joined #ruby
<cleopatra>
xo money requiered?
elfo222_ has quit [Ping timeout: 246 seconds]
<lukevinc>
no, it's free, there are courses of php, jquery, javascript, ruby and others, i just made of ruby, i will see the others later, but ruby one is excelent. i learned the basis in 1 week.
Wolland has quit [Ping timeout: 272 seconds]
ixti has quit [Quit: WeeChat 1.0]
<cleopatra>
the problem is I do not speak much English my native language is Spanish
Es0teric has joined #ruby
<cleopatra>
but i ill try
davasaurous has joined #ruby
datreh___ has quit [Quit: Computer has gone to sleep.]
elfo222 has joined #ruby
sarkis has quit [Quit: WeeChat 1.0]
<lukevinc>
mine is portuguese, but it's simple english, no problem, use google translator if need help.
tokik has joined #ruby
<cleopatra>
i have start read that book The Ruby Programming Language by David Flanagan; Yukihiro Matsumoto
<cleopatra>
is good very good
phoo1234567 has joined #ruby
<cleopatra>
explain class methods file handlers and others thing
<cleopatra>
ye i ill do
phoo1234567 has quit [Max SendQ exceeded]
<lukevinc>
right
phoo1234567 has joined #ruby
pu22l3r has quit [Remote host closed the connection]
<lukevinc>
Yukihiro wrote Ruby, so he should explain clearly how the language works.
perrier has joined #ruby
<cleopatra>
yes
<lukevinc>
i will try to buy this book
<cleopatra>
you have money :P
jimmyy has joined #ruby
<cleopatra>
for leard rails you can buy the ebook from ryan bigg
nettoweb has joined #ruby
<cleopatra>
is too good
<lukevinc>
i will see if it's expensive, 100 bucks is the max for me.
melik has joined #ruby
perrier has quit [Remote host closed the connection]
perrier has joined #ruby
<cleopatra>
lukevinc, you good in html?
Sht0 has joined #ruby
<lukevinc>
cleopatra: yes, i have some experience with html
<cleopatra>
i mean you know to combine color palettes?
<lukevinc>
yes
<cleopatra>
can help me on some skin
<cleopatra>
?
jko_ has quit [Remote host closed the connection]
<lukevinc>
yes
<cleopatra>
ill pm you
jko_ has joined #ruby
<lukevinc>
the way you say it, it isn't better you use css?
nhjk has quit [Remote host closed the connection]
<cleopatra>
yes
<cleopatra>
scss*
rikai has quit [Quit: No Ping reply in 180 seconds.]
<cleopatra>
also i want to use some framework for js
<cleopatra>
called raptorjs from ebay
<lukevinc>
bootstrap
yfeldblum has joined #ruby
<cleopatra>
nah.... i no use booptrap i get the basic mixing from theys
nettoweb_ has joined #ruby
rikai has joined #ruby
jko_ has quit [Ping timeout: 260 seconds]
audy has joined #ruby
<audy>
if I override a method in a class, can I access what the overriding method returned before calling super?
danijoo has quit [Read error: Connection reset by peer]
yfeldblu_ has quit [Ping timeout: 244 seconds]
danijoo has joined #ruby
<audy>
for example: class A; def do_something; ...; end; end, class B < A; def do_something; 'foo'; super; end; end... Can I get the 'foo' in A.do_something?
jko_ has joined #ruby
nettoweb has quit [Ping timeout: 272 seconds]
bthesorceror has quit [Quit: bthesorceror]
<soahccc>
audy: it's dynamic... you can't tell without calling super.
geggam has joined #ruby
pu22l3r has joined #ruby
jko_ has quit [Remote host closed the connection]
thams has joined #ruby
jko_ has joined #ruby
mikepack has quit [Remote host closed the connection]
<audy>
soahccc you mean by calling super in the overriden method?
mikepack has joined #ruby
<audy>
that it's dynamic makes sense. probably shouldn't do it this way.
<audy>
soahccc I have a method in a class that is meant to be overriden. I want to take whatever the overriding class returns and do something with it in the overriden method
orionstein has joined #ruby
<soahccc>
audy: I would just not call them the same... You mean something like an interface right? Just define your "API" and call them from a differently named method...
pu22l3r has quit [Ping timeout: 272 seconds]
nettoweb_ has quit [Ping timeout: 272 seconds]
dphase has quit [Quit: oOo]
jko_ has quit [Ping timeout: 272 seconds]
ramfjord has quit [Ping timeout: 246 seconds]
nettoweb has joined #ruby
angusiguess has quit [Ping timeout: 260 seconds]
maestrojed has quit [Quit: Computer has gone to sleep.]
BBBThunda has joined #ruby
bruno- has joined #ruby
skammer2 has joined #ruby
mary5030 has joined #ruby
northfurr has joined #ruby
bruno- has quit [Ping timeout: 245 seconds]
jeremy04 has joined #ruby
nisstyre has quit [Changing host]
nisstyre has joined #ruby
andrewjanssen has joined #ruby
ramfjord has joined #ruby
devdazed has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
phoo1234567 has quit [Quit: Leaving]
skammer2 has quit [Ping timeout: 272 seconds]
fantnn has joined #ruby
devdazed has quit [Client Quit]
ariera has joined #ruby
jeremy04 has quit [Ping timeout: 272 seconds]
bthesorceror has joined #ruby
sectionme has joined #ruby
ariera has quit [Ping timeout: 245 seconds]
hamakn has joined #ruby
Vile` has quit [Remote host closed the connection]
Takle has joined #ruby
sectionme has quit [Ping timeout: 245 seconds]
pu22l3r has joined #ruby
jasonzzz has joined #ruby
Vile` has joined #ruby
jasonzzz has left #ruby [#ruby]
jasonzzz has joined #ruby
mutantspew has joined #ruby
kevkev has joined #ruby
cleopatra has quit [Ping timeout: 260 seconds]
chipotle has joined #ruby
Takle has quit [Ping timeout: 258 seconds]
timonv_ has joined #ruby
xcv has quit [Remote host closed the connection]
maestrojed has joined #ruby
angusiguess has joined #ruby
bogeyd6 has joined #ruby
kevkev has quit [Ping timeout: 272 seconds]
jasonzzz has left #ruby [#ruby]
Spami has quit [Quit: This computer has gone to sleep]
sepp2k1 has quit [Quit: Leaving.]
timonv_ has quit [Ping timeout: 260 seconds]
RandyT has joined #ruby
sepp2k has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
angusiguess has quit [Ping timeout: 272 seconds]
JavaTheHut has joined #ruby
<JavaTheHut>
hello ruby
kireevco has joined #ruby
rahult is now known as rahult_
kireevco has quit [Max SendQ exceeded]
<JavaTheHut>
what editor or IDE do the hard core ruby people use? like not hte noobs but the people like mattz, DHH, and other advanced life forms.
gilest has joined #ruby
jpdicosola has joined #ruby
emmesswhy has joined #ruby
<JavaTheHut>
what is the best linux irc channel for noobs?
<JavaTheHut>
cuz i'm a noob
jasonzzz_ has joined #ruby
jasonzzz_ has left #ruby [#ruby]
bricker`LA has quit [Ping timeout: 260 seconds]
<JavaTheHut>
how do i see how much memory an app is using in linux?
jasonzzz_ has joined #ruby
jasonzzz_ has left #ruby [#ruby]
JavaTheHut has left #ruby ["ERC Version 5.3 (IRC client for Emacs)"]
jasonzzz_ has joined #ruby
jpdicosola has quit [Client Quit]
KLVTZ has quit [Ping timeout: 258 seconds]
AngryEgret has joined #ruby
cirn0 has joined #ruby
jonr22 has quit [Ping timeout: 244 seconds]
mocfive has joined #ruby
twobit has quit [Ping timeout: 260 seconds]
rahult_ is now known as rahult
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
radic has quit [Disconnected by services]
rahult is now known as rahult_
radic_ has joined #ruby
glebm has joined #ruby
iamjarvo has joined #ruby
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
twobit has joined #ruby
livingstn has quit []
cirn0 has quit [Ping timeout: 246 seconds]
codeurge has joined #ruby
jasonzzz_ has left #ruby [#ruby]
St_Marx has quit [Quit: Ex-Chat]
rahult_ is now known as rahult
jasonzzz_ has joined #ruby
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
jasonzzz_ has left #ruby [#ruby]
kireevco has joined #ruby
meinside has quit [Quit: Connection closed for inactivity]
Spami has joined #ruby
kireevco has quit [Max SendQ exceeded]
yeboot has joined #ruby
davasaurous has quit [Remote host closed the connection]
davasaurous has joined #ruby
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
krz has joined #ruby
mutantspew has quit [Quit: Leaving]
kayloos has joined #ruby
andrewjanssen has quit [Quit: Leaving...]
sinkensabe has joined #ruby
preyalone has joined #ruby
fred-inRio has joined #ruby
maletor_ has joined #ruby
mocfive has quit [Remote host closed the connection]
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
Zesty has joined #ruby
mocfive has joined #ruby
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
kayloos has quit [Ping timeout: 245 seconds]
maletor_ has quit [Client Quit]
sinkensabe has quit [Ping timeout: 272 seconds]
davasaurous has quit [Remote host closed the connection]
livingstn has joined #ruby
oleo__ has joined #ruby
skammer2 has joined #ruby
mocfive has quit [Ping timeout: 258 seconds]
GriffinHeart has quit [Remote host closed the connection]
oleo is now known as Guest6629
GriffinHeart has joined #ruby
aspires has quit [Ping timeout: 245 seconds]
BTRE has quit [Read error: Connection reset by peer]
Guest6629 has quit [Ping timeout: 260 seconds]
lukevinc has quit [Quit: ChatZilla 0.9.90.1 [Firefox 24.8.0/20000101000000]]
BTRE has joined #ruby
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
krz has quit [Quit: WeeChat 1.0]
skammer2 has quit [Ping timeout: 245 seconds]
krz has joined #ruby
aspires has joined #ruby
ariera has joined #ruby
aspires has quit [Client Quit]
sectionme has joined #ruby
benzrf is now known as benzrf|offline
fabrice31 has joined #ruby
Lewix has joined #ruby
braincra- has quit [Quit: bye bye]
ariera has quit [Ping timeout: 246 seconds]
xorax has quit [Quit: leaving]
sectionme has quit [Ping timeout: 240 seconds]
fabrice31 has quit [Ping timeout: 260 seconds]
xorax has joined #ruby
xorax has quit [Client Quit]
davasaurous has joined #ruby
Es0teric has quit [Quit: Computer has gone to sleep.]
dukz has joined #ruby
threesixes has joined #ruby
braincrash has joined #ruby
Sp4rKy_ has quit [Ping timeout: 245 seconds]
dabar has joined #ruby
<dabar>
How do I teach my git repo that I want to pin a ruby version for it?
Es0teric has joined #ruby
xorax has joined #ruby
xorax has quit [Client Quit]
kevkev has joined #ruby
<soahccc>
dabar: git doesn't have to do anything with your ruby version... there is the .ruby-version file which is being recognized by rvm, chruby, rbenv, etc.
livingstn has quit []
Fezzler has joined #ruby
<dabar>
Ya, not git, sorry
<dabar>
My folder
benzrf|offline is now known as benzrf
<dabar>
Thank yo
angusiguess has joined #ruby
Fezzler has quit [Client Quit]
kevkev has quit [Ping timeout: 246 seconds]
Kricir has joined #ruby
Wolland has joined #ruby
davasaurous has quit [Remote host closed the connection]
Lewix has quit [Remote host closed the connection]
ariera has quit [Ping timeout: 258 seconds]
krz has quit [Ping timeout: 258 seconds]
Lewix has joined #ruby
ariera_ has quit [Ping timeout: 240 seconds]
sectionme has quit [Ping timeout: 260 seconds]
c107 is now known as hadarachvehaor
hadarachvehaor is now known as hadarachvhaor
hadarachvhaor is now known as c107
rdark has joined #ruby
Tentra has quit []
kevkev has joined #ruby
timonv_ has joined #ruby
pen has quit [Remote host closed the connection]
hiyosi has joined #ruby
bluOxigen has joined #ruby
voodoofish has quit [Ping timeout: 244 seconds]
voodoofish has joined #ruby
flowerhack has joined #ruby
angusiguess has joined #ruby
Wolland has joined #ruby
kevkev has quit [Ping timeout: 260 seconds]
krz has joined #ruby
spastorino has quit [Quit: Connection closed for inactivity]
timonv_ has quit [Ping timeout: 260 seconds]
rdark has quit [Quit: leaving]
gr33n7007h has joined #ruby
c107 has quit [Remote host closed the connection]
rahult_ is now known as rahult
Rollabunna has quit [Quit: Leaving...]
<dabar>
If after I run `rails s` I get "Could not find json-1.8.1 in any of the sources", and I did run `bundle`, that means that the gem is needed but not specified in the Gemfile?
hiyosi has quit [Ping timeout: 272 seconds]
Wolland has quit [Ping timeout: 245 seconds]
Kricir has quit [Remote host closed the connection]
anaeem1 has joined #ruby
angusiguess has quit [Ping timeout: 272 seconds]
Kricir has joined #ruby
HelperW______ has joined #ruby
anaeem1 has quit [Remote host closed the connection]
anaeem1 has joined #ruby
mary5030 has quit [Remote host closed the connection]
HelperW______ has quit [Read error: No route to host]
HelperW______ has joined #ruby
KLVTZ has joined #ruby
bthesorceror has joined #ruby
Kricir has quit [Ping timeout: 260 seconds]
<ericwood>
dabar: sounds about right
pu22l3r has joined #ruby
Synthead has joined #ruby
ChrisBolton has quit [Quit: ChrisBolton]
<dabar>
Ty
ChrisBolton has joined #ruby
geggam has quit [Quit: nighttime]
HelperW______ has quit [Ping timeout: 260 seconds]
gilest has quit [Quit: Leaving...]
<dabar>
Looks like I was missing bundle exec
<dabar>
Which is odd since I am using a gemset, but OK
<ericwood>
ah yeah that'd do it
<ericwood>
just put bundle exec in front of everything always to be safe
ChrisBolton has quit [Client Quit]
<dabar>
It's my vim probs. Running it with !rake …
<ericwood>
I always found it worked best not running things via Vim
ChrisBolton has joined #ruby
<dabar>
There must be a config for that
<ericwood>
switching between a console and Vim is pretty quick and less painless :)
pu22l3r has quit [Ping timeout: 272 seconds]
cirn0 has joined #ruby
cirn0 has quit [Ping timeout: 240 seconds]
anaeem1 has quit [Remote host closed the connection]
anaeem1 has joined #ruby
sepp2k has quit [Read error: Connection reset by peer]
oo_ has quit [Remote host closed the connection]
GriffinHeart has quit [Remote host closed the connection]
<nhjk>
I'm trying to work with process in ruby but when I fork and they complete their block, they don't die. E.g. if I 10.times { fork { puts "Hello World" } } and then ps -ax, I still get 10 ruby processes
GhettoJava has quit [Quit: Leaving]
hiyosi has quit [Ping timeout: 260 seconds]
angusiguess has quit [Ping timeout: 272 seconds]
awc737 has joined #ruby
awc737 has quit [Max SendQ exceeded]
OffTheRails has joined #ruby
GluonQuark has quit [Read error: Connection timed out]
GluonQuark has joined #ruby
GriffinHeart has joined #ruby
adironduck has joined #ruby
adironduck has quit [Client Quit]
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
Soda has quit [Remote host closed the connection]
codecop has joined #ruby
baltazore has quit [Remote host closed the connection]
ariera has joined #ruby
Wolland has joined #ruby
mengu has joined #ruby
baltazore has joined #ruby
timonv_ has quit [Remote host closed the connection]
northfurr has quit [Quit: northfurr]
timonv_ has joined #ruby
ariera_ has joined #ruby
dukz has joined #ruby
grenierm has quit [Quit: grenierm]
HelperW________ has joined #ruby
ariera has quit [Ping timeout: 245 seconds]
krz has quit [Ping timeout: 260 seconds]
dukz has quit [Remote host closed the connection]
tylersmith has quit [Remote host closed the connection]
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
<nhjk>
Found out the answer, some OS's wait for you to collect the status of a child process before terminating it, making it a zombie. Ruby has a Process#detach method that circumvents this by keeping a thread around just for reaping it
Tomme has joined #ruby
davasaurous has quit [Remote host closed the connection]
Trieste has left #ruby ["Odcházím"]
<jeaye>
It seems like ruby-openid can't parse http://localhost:8095/foo since it chokes on `invalid value for Integer(): ":"` Anyone seen this?
fabrice31 has joined #ruby
davasaurous has joined #ruby
fabrice31 has quit [Read error: Connection reset by peer]
fabrice31 has joined #ruby
ariera_ has quit [Remote host closed the connection]
hanjianwei has joined #ruby
sectionme has joined #ruby
agent_white has joined #ruby
KLVTZ has quit [Quit: Lost terminal]
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
kayloos has joined #ruby
wallerdev has quit [Quit: wallerdev]
tessi_zz is now known as tessi
himsin has joined #ruby
gr33n7007h has quit [Remote host closed the connection]
timonv_ has quit [Ping timeout: 246 seconds]
OffTheRails has quit [Ping timeout: 245 seconds]
kayloos has quit [Ping timeout: 244 seconds]
flughafen has quit [Quit: WeeChat 0.4.1]
francisfish has quit [Remote host closed the connection]
oo_ has quit [Quit: Leaving...]
pranny has joined #ruby
tomeara_ has joined #ruby
techsethi has quit [Quit: techsethi]
<Hanmac>
jeaye: does it say in which line the error appear?
<jeaye>
Yeah, I actually solved it just now. I think it's a bug in ruby-openid.
<jeaye>
If it looks reasonable, I'll shoot them a pull request when I'm finished.
skammer2 has joined #ruby
<Hanmac>
hmmm imo that should not be, because c.bytes.first should be an integer ...
<Hanmac>
hm the bigger problem i have with multibyte chars ...
six has left #ruby [#ruby]
tomeara_ has quit [Ping timeout: 240 seconds]
bruno- has quit [Ping timeout: 245 seconds]
bayed has joined #ruby
skammer2 has quit [Ping timeout: 260 seconds]
danijoo has quit [Read error: Connection reset by peer]
danijoo_ has joined #ruby
wallerdev has joined #ruby
Macaveli has joined #ruby
<Hanmac>
jeaye if you make a pull request you can replace line 233-241 with that: s.each_char.flat_map {|c| @@FILENAME_ALLOWED.include?(c) ? c : c.bytes.map {|b| "_%02X" % b } }.join
<apeiros>
aech: then this job pays lousy compared to by non-job
<apeiros>
s/by/my/
<krz>
so you are suggesting to store this as json, when storing in redis?
timonv_ has quit [Remote host closed the connection]
Avahey has quit [Quit: Connection closed for inactivity]
techsethi has quit [Quit: techsethi]
<krz>
should i store as ruby array? or json?
<krz>
in redis
<canton7>
krz, it looks surely, like Keen returns a ruby object, not a string?
sigurding has quit [Ping timeout: 272 seconds]
<krz>
yea ruby object
sigurding has joined #ruby
<canton7>
so not a string
<krz>
yea not a string
<canton7>
why are you trying to parse a ruby string, then?
<krz>
but redis cant store ruby arrays
<canton7>
of course not
<sevenseacat>
because he's storing what keen fives him, in redis
<sevenseacat>
*gives
<jle`>
it can store json tho
<canton7>
so serialize that ruby object into something sensible
<jle`>
or even yaml
blinkdesign has quit [Client Quit]
<canton7>
using json/yaml/*yuck*xml, etc
<krz>
ok got it
<aech>
apeiros: hehe
sinkensabe has quit [Remote host closed the connection]
hanjianwei has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
danijoo_ has quit [Ping timeout: 250 seconds]
St_Marx has joined #ruby
<apeiros>
oooh hurray… seems chrome decided to change how mouse scrolling events are reported…
Advocation has quit [Quit: Advocation]
<apeiros>
now custom scrollers all go in the wrong direction
<apeiros>
fun. fun. fun. excuse me while I go vomit.
sinkensabe has joined #ruby
elstif has joined #ruby
<sevenseacat>
hahahaha
<sevenseacat>
i actually saw that somewhere the other day
bMalum has joined #ruby
marr has joined #ruby
* apeiros
goes to ask boss for paid bat & ticket to mountainview
p0sixpscl has quit [Ping timeout: 245 seconds]
Vivekananda has joined #ruby
grn has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<apeiros>
not this kind of bat: data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBxITERMTEhMUFhUUExQYGRcYFBgXGRkaFhgXGBQWGBcYHCggIBolGxcWITEiJSksLi4uFx8zODMsNygtLisBCgoKDg0OGxAQGywmHyQsLCwsLDQsLC0sLCwsLCwsLCwsLCwsLCwsLC0sLCwsLCwsLDQsLCwsLCwsLCwsLCwsLP/AABEIALYBFQMBIgACEQEDEQH/xAAcAAEAAgMBAQEAAAAAAAAAAAAABQYDBAcCAQj/xAA+EAABAwIDBQUGBQIFBQEAAAABAAIRAyEEEjEFBkFRYSJxgZHwBxNCobHBIzJS0eGCohYzcpLiU2Ky0vEU/8QAGAEBAQEBAQAAAAAAAAAAAAAAAAIBAwT/xAAfEQEBAAIC
<apeiros>
mozzarella: google decided to make links to images in its search contain the image as base64 in the url
<msx>
for a split second i thought a bot was trying to flood the channel lol
<apeiros>
and I didn't notice before pasting
<apeiros>
I'm quite sure that was different just a bit ago :-/
krandi has quit [Remote host closed the connection]
<msx>
indeed
<jle`>
>_>
<jle`>
really?
kayloos has joined #ruby
niklasb has joined #ruby
<apeiros>
and because it was *technically* a single line, limechat didn't open its multiline paste dialogue :-|
<jle`>
:=|
EasyCo has quit [Quit: Connection closed for inactivity]
decoponio has joined #ruby
sevenseacat has quit [Remote host closed the connection]
<apeiros>
grn: yes, I think it can. it has different modes for how to treat private/protected/public/module_function
hmsimha has joined #ruby
ctp has joined #ruby
dumdedum has joined #ruby
resting has quit [Quit: Leaving.]
<krz>
eiue limechat
<grn>
apeiros, I've just checked and it supports indent and outdent styles where the modifier are aligned with method or they are dedented one level (often C++ uses that).
kayloos has quit [Ping timeout: 272 seconds]
<grn>
However I was thinking not about dedenting the modifier but rather additionally indenting the method. I was such style in some places.
danijoo has joined #ruby
catbusters has quit []
rkalfane has joined #ruby
Takle has quit [Remote host closed the connection]
bruno- has joined #ruby
tomeara_ has joined #ruby
Spami has joined #ruby
skammer2 has joined #ruby
bal has quit [Read error: Connection reset by peer]
bal has joined #ruby
arup_r has joined #ruby
bal has quit [Read error: Connection reset by peer]
joonty has joined #ruby
bal has joined #ruby
akaDaddy has joined #ruby
bruno- has quit [Ping timeout: 258 seconds]
tomeara_ has quit [Ping timeout: 272 seconds]
abuzze_ has joined #ruby
gr33n7007h has joined #ruby
Takle has joined #ruby
skammer2 has quit [Ping timeout: 240 seconds]
qba73 has joined #ruby
abuzze has quit [Ping timeout: 245 seconds]
ctp has quit [Ping timeout: 244 seconds]
himsin has quit [Quit: himsin]
ctp has joined #ruby
himsin has joined #ruby
arup_r has quit [Remote host closed the connection]
bal has quit [Read error: Connection reset by peer]
bal has joined #ruby
workmad3 has joined #ruby
bal has quit [Read error: Connection reset by peer]
bal has joined #ruby
AlexRussia has quit [Remote host closed the connection]
qqw has quit [Quit: leaving]
bal has quit [Read error: Connection reset by peer]
bal has joined #ruby
AlexRussia has joined #ruby
qqw has joined #ruby
AlSquire has joined #ruby
hiyosi has joined #ruby
arup_r has joined #ruby
Takle has quit [Remote host closed the connection]
AlexRussia is now known as LuckyLex
angusiguess has joined #ruby
crazydiamond has joined #ruby
hiyosi has quit [Ping timeout: 246 seconds]
niklasb has quit [Ping timeout: 245 seconds]
angusiguess has quit [Ping timeout: 272 seconds]
noop has joined #ruby
Takle has joined #ruby
sprihodko has joined #ruby
abuzze_ has quit [Remote host closed the connection]
kyb3r_ has quit [Read error: Connection reset by peer]
<aech>
apeiros: use a pastebin service next time
<aech>
<3
krisquigley has joined #ruby
Es0teric has quit [Quit: Computer has gone to sleep.]
freerobby has joined #ruby
PanPan has quit [Quit: ChatZilla 0.9.90.1 [Firefox 32.0.2/20140917194002]]
karupa is now known as zz_karupa
himsin has quit [Quit: himsin]
dANO has joined #ruby
krisquig_ has joined #ruby
Rollabunna has joined #ruby
krisquigley has quit []
krisquig_ is now known as krisquigley
hellangel7 has joined #ruby
dANO has quit [Client Quit]
dANO has joined #ruby
MCDev has quit [Quit: HydraIRC -> http://www.hydrairc.com <- It'll be on slashdot one day...]
nfk has joined #ruby
kirun has joined #ruby
<max06>
Good morning folks. I have a huge problem with savon, the problem is, I have no idea how to describe it. Here's a paste for you: http://pastebin.com/P5wTbYeN - Look at lines 10, 57 and 101. In the end, I need an xml-tag with attribute and value at the same time.
lkba has joined #ruby
<aech>
max06: I usually avoid using savon. For some reason it always stumbles on something
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
p0sixpscl has quit [Remote host closed the connection]
<max06>
aech: is there another simple solution for soap-Requests?
Takle has quit [Remote host closed the connection]
<arup_r>
Fixed..
<arup_r>
:-)
p0sixpscl has joined #ruby
kayloos has quit [Ping timeout: 260 seconds]
bruno- has joined #ruby
nouran has quit [Ping timeout: 246 seconds]
p0sixpscl has quit [Ping timeout: 272 seconds]
tomeara_ has joined #ruby
elstif has quit [Quit: Leaving.]
Mia has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
Takle has joined #ruby
tomeara_ has quit [Ping timeout: 260 seconds]
Nouranology has joined #ruby
<kith>
guys i'm calling an expect script within my ruby script via system(), it does output text onto stdout, is there an elegant way to get all of that into a variable within my ruby script?
<workmad3>
`` isn't suitable if you need user input in your command though... you'll need to look at p-open for that
Scotteh has joined #ruby
<kith>
ok i'll try that
<kith>
no user input required
bMalum has quit [Quit: bMalum]
roolo has joined #ruby
shanlar has joined #ruby
shanlar- has quit [Read error: Connection reset by peer]
Arahael has joined #ruby
<Arahael>
Why are some global variables, such as ENV, not prefixed with a dollar sign?
threesixes has quit [Remote host closed the connection]
<j416>
ENV is a constant
<j416>
not a variable
janmuffino has joined #ruby
mofai has joined #ruby
Takle has quit [Remote host closed the connection]
charliesome has quit [Quit: zzz]
<Arahael>
j416: It doesn't seem to be a constant in the classic sense, however even for constants, $FOO and FOO seem to be distinct.
<Arahael>
(Despite declaring FOO globally)
elstif has joined #ruby
freerobby has quit [Quit: Leaving.]
rkalfane has joined #ruby
<apeiros>
$FOO is not a constant
tomeara_ has joined #ruby
rao_ has quit [Ping timeout: 246 seconds]
<j416>
Arahael: it being a constant doesn't necessarily mean you cannot change its _content_, but you may not re-assign it without ruby giving you a warning
cocotton has quit [Remote host closed the connection]
mindlessdemon has joined #ruby
mindlessdemon has quit [Max SendQ exceeded]
cocotton has joined #ruby
yfeldblum has joined #ruby
mindlessdemon has joined #ruby
mengu has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
mindlessdemon has quit [Max SendQ exceeded]
Takle has joined #ruby
aclearman037 has joined #ruby
mindlessdemon has joined #ruby
mindlessdemon has quit [Max SendQ exceeded]
mindlessdemon has joined #ruby
mindlessdemon has quit [Max SendQ exceeded]
<flughafen>
is there a difference between < and <<?
gaussblurinc1 has joined #ruby
<gaussblurinc1>
hi
mindlessdemon has joined #ruby
mindlessdemon has quit [Max SendQ exceeded]
<gaussblurinc1>
does anybody work with skype api?
mindlessdemon has joined #ruby
mindlessdemon has quit [Max SendQ exceeded]
cocotton has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 260 seconds]
britneywright has joined #ruby
hiyosi has joined #ruby
<Arahael>
gaussblurinc1: isn't that discontinued by ms?
startupality has quit [Quit: startupality]
vt102 has joined #ruby
<jhass>
flughafen: they share the same ascii character, other than that I do not see how they relate
cocotton has joined #ruby
ndrei_ has joined #ruby
<Hanmac>
flughafen: "class << obj" is for opening the singletonclass
<flughafen>
Hanmac: ok.
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby
hiyosi has quit [Ping timeout: 258 seconds]
<gaussblurinc1>
Arahael: don't know, I want write simple skype-bot
<Arahael>
gaussblurinc1: then i suggest you find out!
willgo_ has quit [Remote host closed the connection]
<gaussblurinc1>
Arahael: oh, great, I want to solve this task in ruby-style - download gem :)
livingstn has joined #ruby
arup_r has quit [Remote host closed the connection]
startupality has joined #ruby
<Arahael>
gaussblurinc1: ruby is not the problem.
terlar has joined #ruby
<wasamasa>
the programmer is the problem
tkuchiki has joined #ruby
Aaaal has joined #ruby
arup_r has joined #ruby
thomasxie has joined #ruby
angusiguess has quit [Ping timeout: 260 seconds]
banister has quit [Read error: Connection reset by peer]
banister_ has joined #ruby
yfeldblum has joined #ruby
tokik has joined #ruby
<gaussblurinc1>
wasamasa: s/the/a/;
skammer3 has joined #ruby
<wasamasa>
oh right, it's no longer a single person's fault
Wolland has joined #ruby
GriffinHeart has joined #ruby
aspiers has joined #ruby
robscormack has left #ruby ["Leaving"]
skammer2 has quit [Ping timeout: 272 seconds]
yacks has joined #ruby
yfeldblum has quit [Ping timeout: 260 seconds]
sumark has quit [Remote host closed the connection]
Ghis_ has quit [Ping timeout: 260 seconds]
jottr has joined #ruby
emocakes__ has joined #ruby
bMalum has joined #ruby
sumark has joined #ruby
cocotton has quit [Remote host closed the connection]
emocakes__ has joined #ruby
atmosx has joined #ruby
LiohAu has quit [Quit: LiohAu]
thomasxie has left #ruby [#ruby]
emocakes has quit [Ping timeout: 245 seconds]
emocakes__ is now known as emocakes
<apeiros>
seriously, only IE… IE9 does not define console (JS). so console.log crashes. but if you load the dev tools to see the error, it defines console, so the error no longer appears. much awesome.
poulet_a has quit [Quit: Quitte]
<shevy>
hehe
DaniG2k has joined #ruby
coderhs has joined #ruby
tobago has quit [Remote host closed the connection]
<shevy>
emocakes!!! the intarnet brought you back again to wreak havoc!
mkaesz has joined #ruby
<emocakes>
shevy!
<emocakes>
liebling!
<emocakes>
schatzi!
<emocakes>
have you enjoyed summer?
<shevy>
omg we must not use other words than the english language!
<shevy>
there is summer in my mind all the time!
kristofferR has joined #ruby
dangerousdave has joined #ruby
jasonzzz_ has joined #ruby
jasonzzz_ has quit [Max SendQ exceeded]
cocotton has joined #ruby
jasonzzz_ has joined #ruby
jasonzzz_ has quit [Client Quit]
nouran has quit [Ping timeout: 246 seconds]
pontiki has quit [Quit: "Poets have been mysteriously silent on the subject of cheese." -- G.K.Chesterson]
mengu has quit [Remote host closed the connection]
cocotton has quit [Remote host closed the connection]
kayloos has joined #ruby
cocotton has joined #ruby
GriffinHeart has quit [Ping timeout: 246 seconds]
stef_204 has joined #ruby
northfurr has joined #ruby
anaeem___ has quit [Remote host closed the connection]
cocotton has quit [Remote host closed the connection]
bmurt has joined #ruby
kayloos has quit [Ping timeout: 260 seconds]
mengu has joined #ruby
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
LiohAu_ has joined #ruby
IceDragon has joined #ruby
iamjarvo has joined #ruby
LiohAu_ is now known as LiohAu
jeremy04 has joined #ruby
sectionme has quit [Ping timeout: 244 seconds]
Takle has quit [Remote host closed the connection]
jerius has quit []
dkphenom has joined #ruby
cpruitt has joined #ruby
Wolland_ has joined #ruby
codebaker has joined #ruby
jeremy04 has quit [Ping timeout: 245 seconds]
elstif has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fabrice31 has quit [Remote host closed the connection]
roolo_ has joined #ruby
roolo has quit [Read error: Connection reset by peer]
roolo_ is now known as roolo
Wolland has quit [Ping timeout: 246 seconds]
cocotton has joined #ruby
mkaesz has quit [Ping timeout: 246 seconds]
entrenador has joined #ruby
Hanmac has quit [Ping timeout: 260 seconds]
fabrice31 has joined #ruby
Takle has joined #ruby
narcan has joined #ruby
xcyclist has quit [Ping timeout: 246 seconds]
cocotton has quit [Remote host closed the connection]
narcan has quit [Client Quit]
dangerousdave has joined #ruby
pu22l3r has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
anarang has quit [Quit: Leaving]
nouran has joined #ruby
workmad3 has quit [Ping timeout: 245 seconds]
rkalfane has joined #ruby
mr-foobar has joined #ruby
cocotton has joined #ruby
kalusn has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
<flughafen>
anybody here familiar with curses?
<wasamasa>
only familiar with meta questions, sorry
arup_r has quit [Remote host closed the connection]
coderhs has joined #ruby
bMalum has joined #ruby
arup_r has joined #ruby
<DaniG2k>
where's a good place to buy a domain name?
Jackneill has joined #ruby
<DaniG2k>
Gandi.net ?
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
sailias has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
arup_r has quit [Remote host closed the connection]
mferrier has joined #ruby
_maes_ has quit [Ping timeout: 244 seconds]
arup_r has joined #ruby
silkfox has joined #ruby
arup_r has quit [Remote host closed the connection]
Spami has quit [Quit: This computer has gone to sleep]
arup_r has joined #ruby
<shevy>
>> ("txdv" + " omg a ncurses geek") * 2
Bira has joined #ruby
<eval-in___>
shevy => "txdv omg a ncurses geektxdv omg a ncurses geek" (https://eval.in/196885)
ducklobster has joined #ruby
hmsimha has quit [Ping timeout: 260 seconds]
rkalfane has joined #ruby
arup_r has quit [Remote host closed the connection]
Channel6 has joined #ruby
arup_r has joined #ruby
msx has quit [Remote host closed the connection]
duggiefresh has joined #ruby
yfeldblum has joined #ruby
klmlfl has joined #ruby
Ankhers has joined #ruby
Tuxero has left #ruby [#ruby]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
GriffinHeart has joined #ruby
pranny has quit [Quit: Leaving.]
pu22l3r has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
msx has joined #ruby
pu22l3r has joined #ruby
rkalfane has quit [Client Quit]
arup_r has joined #ruby
armyriad has quit [Ping timeout: 244 seconds]
<shevy>
we need knowledge chips
<shevy>
traditional learning takes way too long
rkalfane has joined #ruby
yfeldblum has quit [Ping timeout: 246 seconds]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
msx has quit [Remote host closed the connection]
narcan has joined #ruby
<txdv>
shevy: yeah i am
rkalfane has quit [Client Quit]
armyriad has joined #ruby
msx has joined #ruby
<txdv>
ncursesw to be specific
<txdv>
those utf chars don't render themselfs
ephemerian has joined #ruby
arup_r has quit [Remote host closed the connection]
himsin has quit [Quit: himsin]
echevemaster has joined #ruby
codebaker has left #ruby [#ruby]
arup_r has joined #ruby
vt102 has quit [Quit: Leaving]
iamjarvo has joined #ruby
rkalfane has joined #ruby
Tuxero has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
mwlang has joined #ruby
shackleford has joined #ruby
shackleford has quit [Remote host closed the connection]
Channel6 has quit [Quit: Leaving]
rkalfane has quit [Client Quit]
workmad3 has joined #ruby
arup_r has quit [Remote host closed the connection]
cocotton has quit [Remote host closed the connection]
ta has quit [Remote host closed the connection]
shackleford has joined #ruby
arup_r has joined #ruby
Aranshada|W_ has left #ruby [#ruby]
dangerousdave has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
Kricir has joined #ruby
benzrf is now known as benzrf|offline
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
jeremy04_ has joined #ruby
gwb3 has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
elstif has joined #ruby
_tpavel has joined #ruby
<shevy>
hehe
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
jeremy04 has quit [Ping timeout: 260 seconds]
joast has joined #ruby
arup_r has quit [Remote host closed the connection]
rkalfane has joined #ruby
freerobby has quit [Quit: Leaving.]
arup_r has joined #ruby
charliesome has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
zeroNones has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
snath has quit [Ping timeout: 272 seconds]
arup_r has quit [Remote host closed the connection]
IceDragon has quit [Ping timeout: 260 seconds]
IceDragon has joined #ruby
arup_r has joined #ruby
coderhs has quit [Ping timeout: 245 seconds]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
GriffinHeart has quit [Ping timeout: 245 seconds]
Wolland_ has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
ixti has joined #ruby
<mwlang>
can anyone suggest best way to connect to a SOAP or REST service that has NTLM authentication? I’ve tried variously savon, ruby-ntlm, typheous, and rest_client using examples in their docs (if provided) or from Stack Overflow answers.
arup_r has joined #ruby
Xeago has quit [Remote host closed the connection]
<mwlang>
I’m struggling to find a good, solid example that works.
mary5030 has joined #ruby
<aech>
mwlang: I would just use nokogiri to make the xml, httparty to send the request, ntlm no idea
arup_r has quit [Remote host closed the connection]
<mwlang>
yeah, its the ntlm part that’s killing me. I guess there’s not a great need for Ruby to connect to microsoft-backed endpoints.
arup_r has joined #ruby
mary5030 has quit [Remote host closed the connection]
im0b has joined #ruby
<aech>
mwlang: why can't you use ruby-ntlm?
mary5030 has joined #ruby
arup_r has quit [Remote host closed the connection]
<mwlang>
aech: I can’t figure it out from its limited docs.
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<aech>
seems to be pretty old
arup_r has joined #ruby
iinzng has joined #ruby
Scotteh has joined #ruby
ctp has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<mwlang>
aech: actually, scanning through the source, I found an example using mechanize, so I’ll give that a try now.
arup_r has quit [Remote host closed the connection]
<mwlang>
aech: I think the age of the ruby-ntlm library is getting in the way. mechanize has probably evolved a good deal since. “ruby-ntlm-0.0.1/lib/ntlm/mechanize.rb:9:in `<class:AuthHeaders>': undefined method `handle' for class `Mechanize::Chain::AuthHeaders' (NameError)”
<shevy>
so logically date should not have any conversion like that lukevinc
arup_r has joined #ruby
<lukevinc>
Are you sure? what happened in 11th September 2001?
<shevy>
is this a ruby question?
mferrier has quit [Ping timeout: 258 seconds]
Duikboot__ has joined #ruby
Ankhers has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
arup_r has quit [Remote host closed the connection]
moritzs has quit [Ping timeout: 260 seconds]
<shevy>
you can use the linguistic module
hiyosi has joined #ruby
<shevy>
5.en.ordinal # => "5th"
<lukevinc>
^just look at the ordinal number in date
<flughafen>
shevy: the first exmple works on my machine
<shevy>
hmm
<shevy>
as far as I know curses has been eliminated from ruby
<shevy>
and 2.0.0 isn't quite that recent is it
arup_r has quit [Remote host closed the connection]
<flughafen>
probably not
<shevy>
ok so it is Curses::Window
<shevy>
what an ugly piece of code that example is
<shevy>
crmode
arup_r has joined #ruby
<shevy>
getch
<shevy>
hehe
momomomomo has joined #ruby
mikepack has joined #ruby
<aech>
shevy: probably because it is more of a wrapper
<flughafen>
shevy: what is ugly about it?
<shevy>
for i in %w[HUP INT QUIT TERM]
<shevy>
if trap(i, "SIG_IGN") != 0 then # 0 for SIG_IGN
<shevy>
that guy even uses for loop flughafen
<shevy>
yeah aech
arup_r has quit [Remote host closed the connection]
lukevinc has quit [Quit: ChatZilla 0.9.90.1 [Firefox 24.8.0/20000101000000]]
<shevy>
he is a C coder most definitely
<flughafen>
what's wrong about using for loops? or is it better to use blocks?
arup_r has joined #ruby
GriffinHeart has joined #ruby
<shevy>
who uses for loops in ruby
<eam>
<--
<aech>
no one
<shevy>
eam is a perl dude
nettoweb has joined #ruby
* aech
curses eam
<shevy>
lol
<eam>
more like ncurses
wasamasa is now known as {{{
* shevy
ncurses eam
<aech>
lol
spectator has quit [Remote host closed the connection]
<flughafen>
there is perl in the codebase i work on, but luckily i don't have to touch it
<shevy>
that reminds me of nsync too much
wallerdev has quit [Quit: wallerdev]
arup_r has quit [Remote host closed the connection]
<eam>
perl as a language is a lot cleaner than ruby, the problem is that it's so easy to use a lot of non-programmers write bad code in it
<shevy>
flughafen usually you won't need for loops, in the above example .each would be more often used on an Array
<aech>
flughafen: working on and not touching is sounds kind of contractionary
<flughafen>
thanks shevy
<shevy>
perl is super clean, I see it every time I type §/()§%()&§()/&§ and some magic happens
arup_r has joined #ruby
lxsameer has quit [Read error: Connection reset by peer]
ndrei_ has quit [Ping timeout: 272 seconds]
ndrei has quit [Ping timeout: 272 seconds]
<flughafen>
as the old joke goes, perl is the only thing that looks the same before and after encryption
starkhalo has joined #ruby
Channel6 has joined #ruby
<aech>
perl and ruby have one in thing comon, who know what is is?
<aech>
it
{{{ is now known as wasamasa
bruno- has joined #ruby
<shevy>
the tim philosophy
<aech>
both authors are very religious :P
<eam>
shevy: §=1;/()§%()&&§()/&&§ is valid ruby
<eam>
jfyi
arup_r has quit [Remote host closed the connection]
<shevy>
yeah, ruby inherited a lot of perl's ugliness :(
<gregf_>
both are jewels
<aech>
gregf_ + 1
<eam>
>> §=1;/()§%()&&§()/&&§
lxsameer has joined #ruby
wasamasa is now known as }}}
<flughafen>
aech: there is java, perl, python, bash, and web stuff, the perl stuff is from a long time ago, we're actually thinking of getting rid of it. but the perl parts have been reduced over the years and ported to java
<shevy>
you broke the bot!
<eam>
I think that won't work because unicode
Lewix has joined #ruby
crazydiamond has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
arup_r has joined #ruby
<aech>
craigslist uses perl
<shevy>
I like this bot, he is like me - we both refuse to work with unicode
<aech>
and they don't give a shit
* shevy
cuddles eval-in___
nettoweb has quit [Client Quit]
<shevy>
aech I believe in TIOBE
<eam>
the world was better when we just had byte strings
<shevy>
TIOBE says ruby is dying
<ericwood>
TIOBE is a horrible indicator of anything
}}} is now known as wasamasa
arup_r has quit [Remote host closed the connection]
<txdv>
why do you refuse to work with unicode?
<ericwood>
Ruby will never die
<shevy>
oh no wait... stagnation now... still ranked 13, perl comes 12th
<mwlang>
shevy: same here, but when gem list doesn’t even show a 0.1.1 version installed, I gotta wonder!
ylluminate has joined #ruby
timonv_ has quit [Remote host closed the connection]
<shevy>
did you check your main path?
Logiztik_ has quit [Read error: Connection reset by peer]
<shevy>
it must reside somewhere, otherwise it could not find it
arup_r has quit [Remote host closed the connection]
timonv_ has joined #ruby
<shevy>
did you install both 0.3.2 and 0.1.1 via gems?
<workmad3>
mwlang: you can activate a specific version by doing 'gem "gem-name", "version" ' before requiring it
<mwlang>
shevy: no, I didn't.
arup_r has joined #ruby
iinzng has quit [Quit: Leaving]
<workmad3>
mwlang: it's not often you need to do that
<mwlang>
workmad3: ah, let me try that.
<shevy>
the gem() method comes from rubygems?
iinzng has joined #ruby
yfeldblum has quit [Ping timeout: 258 seconds]
<workmad3>
shevy: yes
arup_r has quit [Remote host closed the connection]
b00stfr3ak has joined #ruby
arup_r has joined #ruby
Kruppe has joined #ruby
emmesswhy has quit [Quit: Leaving]
Tomme has quit [Ping timeout: 246 seconds]
<shevy>
cool
freerobby has joined #ruby
Bira has joined #ruby
iinzng has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
iinzng has joined #ruby
arup_r has joined #ruby
gsd has joined #ruby
arup_r has quit [Remote host closed the connection]
startupality has quit [Quit: startupality]
timonv_ has quit [Ping timeout: 260 seconds]
milkohol has joined #ruby
arup_r has joined #ruby
flowerhack has joined #ruby
lxsameer has quit [Quit: Leaving]
kayloos has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
gregf has quit [Read error: Connection reset by peer]
momomomomo has quit [Ping timeout: 240 seconds]
arup_r has quit [Remote host closed the connection]
<mwlang>
Ugh…I think I have some serious namespace conflict issues. Savon appears to be picking up a gem named ‘ntlm-http’ rather than rubyntlm.
milkohol has quit [Client Quit]
arup_r has joined #ruby
b00stfr3ak has quit [Ping timeout: 245 seconds]
nettoweb_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
timonv_ has joined #ruby
arup_r has quit [Remote host closed the connection]
tonybird has joined #ruby
ffranz has joined #ruby
tonybird has quit [Max SendQ exceeded]
arup_r has joined #ruby
<shevy>
hehe
<mwlang>
https://gist.github.com/mwlang/f0fd5e7622494f757296 to see what I mean. ntlm-http came along when I installed mechanize. The error at line #16 was the erorr I was getting earlier before I started messing with trying mechanize.
arup_r has quit [Remote host closed the connection]
timonv_ has quit [Remote host closed the connection]
Lewix has joined #ruby
<aech>
mwlang: I wouldn't venture into that, nokogiri, require rubyntlm, httparty
arup_r has joined #ruby
Lewix has quit [Remote host closed the connection]
slash_nick has quit [Changing host]
slash_nick has joined #ruby
kayloos has quit [Ping timeout: 246 seconds]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
<mwlang>
aech: I’m looking for some examples of how to put that together … got one?
tkuchiki has joined #ruby
arup_r has quit [Remote host closed the connection]
<mwlang>
actually, I can figure out nokogiri, if I can just figure out httparty + ntlm
mattstratton has joined #ruby
danijoo has quit [Read error: Connection reset by peer]
arup_r has quit [Remote host closed the connection]
timonv_ has joined #ruby
Kruppe has joined #ruby
danijoo has joined #ruby
bricker`LA has joined #ruby
rkalfane has joined #ruby
arup_r has joined #ruby
ctp has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
roolo has quit [Remote host closed the connection]
himsin has joined #ruby
chirfi has joined #ruby
icebourg has joined #ruby
roolo has joined #ruby
himsin has quit [Client Quit]
nouran has quit [Quit: ChatZilla 0.9.90.1 [Firefox 32.0/20140830210550]]
arup_r has quit [Remote host closed the connection]
Wolland has joined #ruby
arup_r has joined #ruby
roolo has quit [Read error: Connection reset by peer]
b00stfr3ak has joined #ruby
roolo has joined #ruby
rkalfane has quit [Client Quit]
momomomomo has joined #ruby
rkalfane has joined #ruby
arup_r has quit [Remote host closed the connection]
Xeago has joined #ruby
timonv_ has quit [Remote host closed the connection]
<ericwood>
why not just use open-uri or net/http?
arup_r has joined #ruby
<ericwood>
when I'm feeling lazy I turn to open-uri :D
tkuchiki has quit [Remote host closed the connection]
<mwlang>
ericwood: for ntlm authentication?
arup_r has quit [Remote host closed the connection]
pasties has quit [Read error: Connection reset by peer]
hellangel7 has quit [Remote host closed the connection]
deric_skibotn has joined #ruby
arup_r has joined #ruby
timonv_ has joined #ruby
<ericwood>
oh idk what that is so ignore me
rkalfane has quit [Client Quit]
<eam>
NT lan manager!
<mwlang>
my biggest challenge is finding a working example in *any* html request library that can authenticate with NTLM and get the response.
ursooperduper has joined #ruby
<mwlang>
ntlm is definitely not a popular protocol used in Ruby.
arup_r has quit [Remote host closed the connection]
<ericwood>
I'm surprised I've never heard of it :o
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arup_r has joined #ruby
Hobogrammer has joined #ruby
pasties has joined #ruby
mkaesz has joined #ruby
arup_r has quit [Remote host closed the connection]
sectionme has joined #ruby
ctp has joined #ruby
arup_r has joined #ruby
rkalfane has joined #ruby
<workmad3>
mwlang: it doesn't help that when you google 'NTLM' and end up on the wiki page for 'NT Lan Manager' you get told that MS no longer recommends anyone use NTLM...
arup_r has quit [Remote host closed the connection]
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arup_r has joined #ruby
<mwlang>
workmad3: no kidding!
<mwlang>
:-D
<mwlang>
probably explains why nobody’s trying to do it anymore with Ruby.
<workmad3>
mwlang: mainly because it only supports broken/vulnerable crypto protocols :P
arup_r has quit [Remote host closed the connection]
gauke has quit [Quit: gauke]
mferrier_ has quit [Remote host closed the connection]
arup_r has joined #ruby
jeremywrowe has joined #ruby
mferrier has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
sectionme has quit [Ping timeout: 246 seconds]
endash has quit [Quit: endash]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
cocotton has quit [Remote host closed the connection]
keen_ has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
GriffinHeart has joined #ruby
arup_r has quit [Remote host closed the connection]
<flughafen>
shevy: i was accessing somewhere out of the window with the wrong x,y
tokik has quit [Ping timeout: 272 seconds]
arup_r has joined #ruby
cocotton has joined #ruby
vic3lord has joined #ruby
arup_r has quit [Remote host closed the connection]
pagioss has quit [Quit: I'm using a Free IRC Bouncer from BNC4FREE - http://bnc4free.com/]
jonr22 has joined #ruby
arup_r has joined #ruby
rkalfane has joined #ruby
Smujo__ has joined #ruby
Smujo506 has joined #ruby
Smujo_ has quit [Ping timeout: 240 seconds]
Smujo has quit [Ping timeout: 240 seconds]
arup_r has quit [Remote host closed the connection]
fabrice31 has quit [Remote host closed the connection]
arup_r has joined #ruby
GriffinHeart has quit [Ping timeout: 260 seconds]
gtrak has joined #ruby
vic3lord has quit [Remote host closed the connection]
charliesome has quit [Quit: zzz]
arup_r has quit [Remote host closed the connection]
j_mcnally has joined #ruby
arup_r has joined #ruby
Bira has quit [Remote host closed the connection]
geggam_ has joined #ruby
apeiros has quit [Remote host closed the connection]
gr33n7007h has quit [Ping timeout: 245 seconds]
geggam_ has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
apeiros has joined #ruby
arup_r has joined #ruby
ylluminate has quit [Quit: Bye!]
arup_r has quit [Remote host closed the connection]
SCHAAP137 has joined #ruby
arup_r has joined #ruby
<flughafen>
txdv: do you remember the function if i want to hide a window and show another? or is this simply showing a window over another and closing it
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
LangeOortjes has joined #ruby
ixti has quit [Quit: WeeChat 1.0]
mkaesz has quit [Ping timeout: 245 seconds]
cmaxw is now known as cmaxw
apeiros has quit [Ping timeout: 272 seconds]
bthesorceror has quit [Quit: bthesorceror]
_tpavel has quit [Quit: Leaving]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
setner has joined #ruby
sepp2k has joined #ruby
<txdv>
flughafen: I usually don't use the window functinoality provided by ncurses
Smujo__ has quit [Read error: Connection reset by peer]
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Smujo506 has quit [Read error: Connection reset by peer]
<txdv>
I have written my own window system
<flughafen>
txdv: thanks
<txdv>
and by usually i mean i dont use it
<flughafen>
lol
<flughafen>
ok
timonv_ has quit [Remote host closed the connection]
<txdv>
I use ncurses just so it would handle all the terminfo files and what needs to be updated on the terminal
arup_r has quit [Remote host closed the connection]
dANO has quit []
<txdv>
everything else is high level api which your app should manage
arup_r has joined #ruby
timonv_ has joined #ruby
<txdv>
just my opinion
<flughafen>
txdv: tanks
gaussblurinc1 has quit [Quit: Leaving.]
arup_r has quit [Remote host closed the connection]
yfeldblum has joined #ruby
koderok has quit [Ping timeout: 244 seconds]
arup_r has joined #ruby
spyderman4g63 has joined #ruby
<flughafen>
do you have a link to your library/
bthesorceror has joined #ruby
arup_r has quit [Remote host closed the connection]
mikecmpbll has quit [Ping timeout: 260 seconds]
arup_r has joined #ruby
failshell has joined #ruby
rkalfane has joined #ruby
timonv_ has quit [Ping timeout: 245 seconds]
arup_r has quit [Remote host closed the connection]
oleo__ has joined #ruby
oleo is now known as Guest99867
arup_r has joined #ruby
Duikboot___ has joined #ruby
coderhs has joined #ruby
yfeldblum has quit [Ping timeout: 244 seconds]
ixti has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
kobain has joined #ruby
arup_r has joined #ruby
Duikboot__ has quit [Ping timeout: 244 seconds]
kobain has quit [Max SendQ exceeded]
kobain has joined #ruby
kobain has quit [Client Quit]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
kristofferR has joined #ruby
Duikboot___ has quit [Ping timeout: 272 seconds]
Tuxero has left #ruby [#ruby]
Maitiu has joined #ruby
dabar has joined #ruby
arup_r has quit [Remote host closed the connection]
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
IceDragon has quit [Ping timeout: 260 seconds]
gaussblurinc1 has quit [Ping timeout: 272 seconds]
arup_r has joined #ruby
benzrf|offline is now known as benzrf
patrick99e99 has quit [Ping timeout: 244 seconds]
DaniG2k has quit [Quit: leaving]
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
chrishough has joined #ruby
<mwlang>
Does Net:HTTP automatically figure out its an HTTPS request? I can’t seem to find a Net:HTTPS corresponding class.
cpruitt has quit [Quit: cpruitt]
benzrf is now known as benzrf|offline
arup_r has quit [Remote host closed the connection]
snath has joined #ruby
cirn0 has joined #ruby
arup_r has joined #ruby
<mwlang>
nevermind, “use_ssl” is my ticket.
hiyosi has quit [Quit: WeeChat 1.0]
gregf has joined #ruby
<jhass>
that's why I only use abstractions upon it :P
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
<mwlang>
jhass: I’m trying to figure out how to get NTLM auth working, so I’m kinda forced into the broken libraries that portend to support ntlm auth and figure out why the heck things aren’t working.
<mwlang>
seems like everybody that ever did ntlm authentication libraries stopped abruptly a few years ago.
arup_r has quit [Remote host closed the connection]
cpruitt has joined #ruby
terlar has quit [Ping timeout: 245 seconds]
<jhass>
they probably realized something about it in the process of building a library for it and started migrating their systems away :P
arup_r has joined #ruby
thanwer has quit []
<workmad3>
jhass: my guess would be they all stopped working 4 years ago when MS told people to stop using NTLM because it's inherently insecure :)
arup_r has quit [Remote host closed the connection]
<jhass>
yeah that makes sense, I'm really not into the windows "news" at all anymore :D
cirn0 has quit [Ping timeout: 245 seconds]
<mwlang>
yeah, who wants to build inherently insecure software? :-p
arup_r has joined #ruby
<workmad3>
me neither... I found that out about 30 mins ago when mwlang first started asking questions :)
wallerdev has joined #ruby
<jhass>
ah, the german WP article doesn't make that as clear as the english one
jobewan has joined #ruby
arup_r has quit [Remote host closed the connection]
gsd has joined #ruby
<workmad3>
mwlang: I guess the client said 'I don't care if it's broken, use it anyway! because it's what we use!'
<workmad3>
?
arup_r has joined #ruby
oleo__ has quit [Quit: Verlassend]
<mwlang>
workmad3: more like, “its the only way we know”
mattstratton has joined #ruby
arup_r has quit [Remote host closed the connection]
arup_r has joined #ruby
goganchic has joined #ruby
mikesplain has joined #ruby
goganchic has quit [Max SendQ exceeded]
Takle has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
<workmad3>
mwlang: :(
arup_r has joined #ruby
arup_r has quit [Remote host closed the connection]
<jhass>
know for what? SSO?
IceDragon has joined #ruby
arup_r has joined #ruby
rkalfane has joined #ruby
aspiers has quit [Ping timeout: 260 seconds]
troyready has joined #ruby
oleo__ has joined #ruby
arup_r has quit [Remote host closed the connection]
cndiv has joined #ruby
spyderman4g63 has quit [Remote host closed the connection]
oleo__ is now known as oleo
yakko has joined #ruby
arup_r has joined #ruby
spyderman4g63 has joined #ruby
cocotton has quit [Remote host closed the connection]
skammer3 has joined #ruby
sinkensabe has quit [Remote host closed the connection]
LuckyLex has quit [Remote host closed the connection]
arup_r has quit [Remote host closed the connection]
AlexRussia has joined #ruby
AlexRussia is now known as LuckyLex
arup_r has joined #ruby
AngryEgret has joined #ruby
arup_r has quit [Remote host closed the connection]
cocotton has joined #ruby
garethrees has joined #ruby
cocotton has quit [Remote host closed the connection]
Xeago has quit [Remote host closed the connection]
kaspergrubbe_ has quit [Remote host closed the connection]
nettoweb has quit [Max SendQ exceeded]
starless has quit [Client Quit]
arup_r has quit [Remote host closed the connection]
C0deMaver1ck has joined #ruby
<miah>
networks with ntlm enabled; dump sam database; run against rainbowtables; enjoy access to 99% of the accounts
ghr has quit [Ping timeout: 260 seconds]
<miah>
(because who really uses a password >14 characters at work?)
nettoweb has joined #ruby
<mwlang>
jhass: They are a microsoft shop and their AD server is set up to authenticate NTLM. That’s basically what they know, so I gotta figure out how to work with it.
yakko has quit [Read error: Connection reset by peer]
<miah>
your situation is why i will never consult
<jhass>
sounds like you could just break into the server and install something better :P
<mwlang>
jhass: now there’s a thought…..
AngryEgret has quit []
dkphenom has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
hamakn has joined #ruby
hamakn has quit [Remote host closed the connection]
<miah>
i would say something about there being irony in a windows shop running something that not even MS would approve of these days since NTLM has been disabled by default for ~4 years
yakko has joined #ruby
pranny1 has joined #ruby
hamakn has joined #ruby
kevkev__ has quit [Quit: Computer has gone to sleep.]
<mwlang>
miah: the irony doesn’t escape me.
<miah>
it would be like encountering a 'nix shop insisting on using telnet because 'its what we use'
<miah>
BUT OUR PASSWORDS ARE ENCRYPTED
<mwlang>
hey! don’t knock telnet! Everything’s in the clear!
<jhass>
telnet, best IRC client ever
<atmosx>
miah: there's telnet+ssl
ursooperduper has joined #ruby
greenarrow has quit [Quit: 500]
<miah>
atmosx: lol
<atmosx>
jhass: imho netcat > telnet
<miah>
i hope its telnet + openssl
AngryEgret_ is now known as AngryEgret
<miah>
TOTALLY SAFE NOTHING TO SEE HERE MOVE ALONG
<jhass>
atmosx: nah, it's too easy to leave netcat
<workmad3>
miah: I think the chef 12 client is going to bump up to 2.1
<miah>
ya; i think i'll just go back to installing chef through bundler
baltazore has joined #ruby
<miah>
because omnibus is dumb anyways
nonmadden has quit [Remote host closed the connection]
nettoweb_ has joined #ruby
nettoweb_ has quit [Max SendQ exceeded]
<workmad3>
miah: stops me from trashing chef when I update ruby on an app server ;)
amil has quit [Quit: Leaving...]
<miah>
bundler --path
<miah>
if only that were the default or more people knew to use it
nettoweb_ has joined #ruby
milkohol has joined #ruby
yakko has quit [Read error: Connection reset by peer]
<miah>
by default bundle installs to the system ruby
<miah>
but with --path; it creates a segregated gem dir for your specific project
<miah>
and thus; upgrading chef doesnt trash ruby app server and vice versa
dabar has quit [Read error: Connection reset by peer]
lampd1_ has joined #ruby
<momomomomo>
the question is, why are you using system ruby
<miah>
im not
<workmad3>
miah: --deployment is the suggested flag for installing on a server
yakko has joined #ruby
<miah>
but i think you mis understood what i wrote
<workmad3>
miah: which handles the path + some other stuff
stunder has joined #ruby
<workmad3>
miah: also, I'm talking about updating the ruby install, not some gems on it
<miah>
ya; i use chruby. so i have multiple rubies installed
<workmad3>
miah: I already have chef handling bundle install into a vendor-specific install :P
roolo has quit [Ping timeout: 272 seconds]
nettoweb has quit [Ping timeout: 272 seconds]
<miah>
and updating / adding a ruby doesnt do anything
dabar has joined #ruby
benlieb has joined #ruby
<workmad3>
miah: and I don't bother with chruby on the server... unnecessary there, IMO... I've got chef set up to install and stamp out the environments for a specific ruby version on specific apps
dangerousdave has joined #ruby
<miah>
at this point; in my environment chef is just a minor framework used during build
<workmad3>
miah: the less time I spend sshed into my server the better, IMO :)
ptrrr has joined #ruby
timonv_ has joined #ruby
<miah>
same
roolo has joined #ruby
dabar has quit [Read error: Connection reset by peer]
<workmad3>
miah: I also use almost no community cookbooks... I've written LWRPs around everything we use and then a single recipe per server-type
<miah>
ya
<miah>
the community is pretty shite
voodoofish430 has quit [Quit: Leaving.]
dabar has joined #ruby
bthesorceror has quit [Quit: bthesorceror]
lampd1_ has quit [Ping timeout: 245 seconds]
<miah>
and i personally find lwrps to be the most annoying
<workmad3>
miah: as I also had a ton of issues in the past from cookbooks interacting badly... not to mention being horribly nasty to change the data binding to them
<miah>
mostly i hate dsl's that dont actually give you any advantage
momomomomo has quit [Read error: Connection reset by peer]
<workmad3>
miah: ah... I use 'LWRP' as a general term to mean 'custom resource provider'
<workmad3>
miah: I don't use the LWRP dsl :)
<miah>
i'm a pretty outspoken critic of the 'cookbook' development model
<miah>
if you search my nick + chef
<miah>
im sure you will see
<workmad3>
miah: I think we've talked about this in #chef a few times too :)
mikecmpbll has quit [Quit: i've nodded off.]
i_s has joined #ruby
<miah>
maybe
<miah>
i have scrubbed most of that channel from memory
<workmad3>
miah: I've started moving some of my custom resource providers away from templates, which I think was something you recommended too
<AlexRussia>
which class could contain information about directory?
bthesorceror has joined #ruby
<workmad3>
miah: and towards classes that stamp out the correct config syntax
<jhass>
AlexRussia: Dir?
<AlexRussia>
jhass: yep, thx
<miah>
workmad3: ya
pranny has joined #ruby
pranny1 has quit [Ping timeout: 245 seconds]
momomomomo has joined #ruby
yakko has quit [Read error: Connection reset by peer]
pranny has quit [Client Quit]
setner has quit [Quit: Saindo]
milkohol has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yakko has joined #ruby
andikr has quit [Remote host closed the connection]
<AlexRussia>
jhass: does i have some 'elegante' way to check class(like Dir) than 'var.class == Dir.new.class' ?
dabar has quit [Quit: Leaving.]
<jhass>
first of all Foo.new.class is redundant to Foo
<jhass>
but use is_a?
<jhass>
var.is_a? Dir
zorak8 has joined #ruby
g0bl1n has joined #ruby
brandonshowers has joined #ruby
milkohol has joined #ruby
<miah>
foo.kind_of?
<AlexRussia>
jhass: .is_a? seems nice, ty
<jhass>
miah: alias
<miah>
jhass: its a alias of is_a? makes sense =)
<workmad3>
also Dir === var
<miah>
its the == vs .eql? argument
<jhass>
I don't use === in code, for me it's just for case statements
<workmad3>
but that's only really of interest for case statements IMO... people who use === directly should be defenestrated :)
<miah>
+1
<workmad3>
the floor number for the defenestration corresponds to the number of times you've done it...
Hightower666 has joined #ruby
Soda has joined #ruby
anildigital has left #ruby [#ruby]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dabar1 has joined #ruby
diegoviola has joined #ruby
dabar1 has quit [Read error: Connection reset by peer]
kevkev__ has joined #ruby
thumpba_ has joined #ruby
hiyosi has joined #ruby
dabar1 has joined #ruby
dabar1 has quit [Client Quit]
Xiti has joined #ruby
yakko has quit [Read error: Connection reset by peer]
danijoo has quit [Read error: Connection reset by peer]
ephemerian has quit [Quit: Leaving.]
yakko has joined #ruby
danijoo has joined #ruby
max06 has quit [Ping timeout: 260 seconds]
dotrb has joined #ruby
<dotrb>
Hi everyone
thumpba_ has quit [Remote host closed the connection]
cajone has quit [Ping timeout: 272 seconds]
<AlexRussia>
jhass: there any way to understand, name is file or directory?
baroquebobcat has joined #ruby
Snarkz has joined #ruby
<jhass>
File.file? name or File.directory? name
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<jhass>
assuming name is a string with a path to a directory
cocotton has quit [Remote host closed the connection]
voodoofish430 has joined #ruby
nonmadden has joined #ruby
bthesorceror has joined #ruby
<miah>
that bot is useful
Duikboot___ has quit [Ping timeout: 272 seconds]
<AlexRussia>
@_@
<jhass>
that code involved the constant Foo, the method foo, the local variable foo, the local variable/parameter foo in another scope and the instance variable @foo
<jhass>
neither really conflicts with the other
ta has joined #ruby
russt has joined #ruby
roolo has quit [Ping timeout: 260 seconds]
kayloos has quit [Ping timeout: 272 seconds]
cocotton has joined #ruby
lolmaus_ has quit [Remote host closed the connection]
<jhass>
unshadow: you shouldn't need to call Thread.exit there, it should die on its own after all code is run. I see nothing obviously wrong in the code you've shown (though I don't get why @client needs to an instance variable), so I'd bet on synchronization issues in pass_ok
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
narcan has joined #ruby
kevkev__ has joined #ruby
AlSquire has quit [Quit: This computer has gone to sleep]
narcan has quit [Client Quit]
ghr has joined #ruby
sailias1 has quit [Quit: Leaving.]
mkaesz has quit [Read error: Connection reset by peer]
<jhass>
unshadow: how, Thread#new (#fork and so on) don't evaluate the block in their instance scope, so the block is evaluated in it's defined scope, which makes @client global state that is undeterminstically overwritten
<jhass>
*oh
reset has joined #ruby
einarj has quit [Remote host closed the connection]
kevkev__ has quit [Ping timeout: 272 seconds]
narph has quit [Quit: Connection closed for inactivity]
b00stfr3ak has joined #ruby
ghr has quit [Ping timeout: 272 seconds]
moritzs has joined #ruby
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<unshadow>
Ok ! now I get it, so the Client is getting lost every connection .... I thought it will stay unique for each thread (the reason for the '@' is I use that value for other things in the code that follows)
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sethen has joined #ruby
<jhass>
unshadow: if you can't be bothered to define your own Thread subclass and extract the code "that follows" into it, you want a thread local, see Thread.current and Thread#[], Thread#[]=
mary5030_ has quit [Read error: Connection reset by peer]
brandonshowers has joined #ruby
mattstratton has joined #ruby
fold has quit [Ping timeout: 260 seconds]
<jhass>
or just pass client explicitly around
choke has quit [Read error: Connection reset by peer]
Aaaal has quit [Quit: Aaaal]
mary5030 has joined #ruby
mskaesz has joined #ruby
mocfive has joined #ruby
Tomme has joined #ruby
sepp2k has quit [Read error: Connection reset by peer]
<banister>
Hanmac that's cool mang, keep up the good work
momomomomo has quit [Ping timeout: 245 seconds]
tectonic has joined #ruby
Pulpie has quit [Ping timeout: 246 seconds]
Tuxero has joined #ruby
Xeago has joined #ruby
bMalum has joined #ruby
freerobby has quit [Quit: Leaving.]
freerobby has joined #ruby
dukz has quit [Remote host closed the connection]
hamakn has joined #ruby
klmlfl has quit [Remote host closed the connection]
aclearman037 has quit [Ping timeout: 244 seconds]
cirn0 has quit [Ping timeout: 272 seconds]
hamakn has quit [Read error: Connection reset by peer]
hamakn has joined #ruby
shackleford has joined #ruby
<jhass>
Hanmac: why not make it a gem?
robustus has joined #ruby
aclearman037 has joined #ruby
shevy has quit [Ping timeout: 272 seconds]
shevy has joined #ruby
<Hanmac>
jhass: hm maybe if i rewrite the other ones too and then ship it as bundle of scripts ... doing a gem for a single file would be a bit overkill
fabrice31 has joined #ruby
<jhass>
would it?
<jhass>
also you have classes now, no harm in splitting them into multiple files ;)
foooobear___ has quit [Quit: Computer has gone to sleep.]
<jhass>
well, not the classes, but the script
yeticry has quit [Ping timeout: 272 seconds]
yeticry has joined #ruby
LiohAu has quit [Quit: LiohAu]
gvenkat_ has joined #ruby
MaciejCzyzewski has joined #ruby
<MaciejCzyzewski>
Hi folks!
elaptics is now known as elaptics`away
<MaciejCzyzewski>
What's going on?
hakunin has quit []
<centrx>
Ruby
shackleford has quit [Ping timeout: 245 seconds]
mskaesz has joined #ruby
mkaesz has quit [Read error: Connection reset by peer]
<MaciejCzyzewski>
...
russt has quit [Quit: russt]
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<MaciejCzyzewski>
centrx, you are always online on this channel?
<centrx>
negatory
<MaciejCzyzewski>
^^
russt has joined #ruby
gvenkat has quit [Ping timeout: 244 seconds]
fabrice31 has quit [Ping timeout: 272 seconds]
shackleford has joined #ruby
perrier has quit [Ping timeout: 245 seconds]
mikepack has quit [Remote host closed the connection]
kamilc__ has joined #ruby
Xeago has quit [Remote host closed the connection]
tobago has quit [Remote host closed the connection]
MaciejCzyzewski has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Aaaal has joined #ruby
foooobear___ has joined #ruby
jds has joined #ruby
gsd has joined #ruby
gvenkat__ has joined #ruby
russt has quit [Ping timeout: 245 seconds]
gvenkat_ has quit [Ping timeout: 272 seconds]
foooobear___ has quit [Client Quit]
mikepack has joined #ruby
hamakn has quit [Remote host closed the connection]
<benlieb>
claw__: I'm storing video timestamps as 00:00:00.000 strings, but I need to calculate the difference in time between them. I was using Duation, or Chronic Duration, but they drop the miliseconds
<benlieb>
claw__: they're not technically dates
<benlieb>
I guess they are times though
<benlieb>
hm
timonv_ has quit [Remote host closed the connection]
yfeldblu_ has joined #ruby
<yxhuvud>
benlieb: what version of ruby do you have?
<benlieb>
yxhuvud: this project is 1.8.7 (i know, i know)
mwlang has quit [Quit: mwlang]
lolmaus_ has quit [Remote host closed the connection]
rimenes has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
spyderma_ has joined #ruby
lolmaus_ has joined #ruby
sevvie has quit [Quit: leaving]
yfeldblum has quit [Ping timeout: 245 seconds]
<yxhuvud>
then the support for displaying milliseconds depends on time class.
shackleford has quit [Remote host closed the connection]
cirn0 has joined #ruby
Morkel has quit [Quit: Morkel]
aclearman037 has quit []
shackleford has joined #ruby
MaciejCzyzewski has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
paulfm has quit []
fsapo_ has quit [Remote host closed the connection]
Hightower666 has quit [Quit: Not that there is anything wrong with that]
jottr has joined #ruby
rbenv has joined #ruby
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mdw has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
chipotle has quit [Quit: cya]
cirn0 has quit [Ping timeout: 244 seconds]
tesaf has quit [Quit: Lost terminal]
JoshGlzBrk has joined #ruby
yfeldblu_ has quit [Remote host closed the connection]
brandonshowers has joined #ruby
RandyT has quit [Ping timeout: 260 seconds]
willgo has joined #ruby
yfeldblum has joined #ruby
fold has joined #ruby
yfeldblum has quit [Remote host closed the connection]
RandyT has joined #ruby
Bira has joined #ruby
yfeldblum has joined #ruby
spider-mario has quit [Remote host closed the connection]
chrisja has joined #ruby
willgo has quit [Remote host closed the connection]
klmlfl_ has joined #ruby
claymore has quit [Quit: Leaving]
nanoyak has quit [Read error: Connection reset by peer]
omosoj has quit [Ping timeout: 245 seconds]
KC9YDN-2 has joined #ruby
Bira has quit [Ping timeout: 245 seconds]
Lewix has quit [Remote host closed the connection]
jerius has quit []
nanoyak has joined #ruby
hmsimha has joined #ruby
tessi is now known as tessi_zz
jherbst has quit [Ping timeout: 272 seconds]
klmlfl_ has quit [Ping timeout: 272 seconds]
Beoran_ has quit [Ping timeout: 260 seconds]
RandyT has quit [Ping timeout: 258 seconds]
britneywright has joined #ruby
chrishough has joined #ruby
RandyT has joined #ruby
KC9YDN has quit [Ping timeout: 260 seconds]
b00stfr3ak has joined #ruby
failshell has quit []
ldnunes has quit [Quit: Leaving]
fold has quit [Ping timeout: 260 seconds]
benzrf is now known as benzrf|offline
codecop has quit [Ping timeout: 260 seconds]
neersighted has quit []
neersighted has joined #ruby
bigkevmcd has quit [Read error: Network is unreachable]
codecop has joined #ruby
nonmadde_ has quit [Remote host closed the connection]
bigkevmcd has joined #ruby
nonmadden has joined #ruby
graydot has joined #ruby
tkuchiki has joined #ruby
mikepack has quit [Remote host closed the connection]
sevvie has joined #ruby
kevkev__ has joined #ruby
mferrier_ has joined #ruby
Hobogrammer has joined #ruby
Beoran_ has joined #ruby
nobitano_ has joined #ruby
rp__ has quit [Ping timeout: 258 seconds]
Deele has quit [Ping timeout: 258 seconds]
profelm has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<profelm>
Hey guys, I have a question. I'm writing a module. This module reads from txt files and creates an array of strings. Is there a way that I can cache that result so that I don't always read each file?
MaciejCzyzewski has joined #ruby
nonmadden has quit [Ping timeout: 244 seconds]
mferrier has quit [Ping timeout: 245 seconds]
<profelm>
This is Breevy can automatically correct your spelling errors (typos) in any application, too.
<wallerdev_>
just people who dont know what theyre doing pasting random snippets from blogs until they have something working
<shevy>
well ok
<shevy>
I googled for "draggable html elements"
<shevy>
the first answer was "use jquery"... the second was to use some grid-layout.js stuff (which actually is quite cool, but I needed free movement, not grid-constrained box movement)
<shevy>
third result - again jquery
<shevy>
and that drag and drop actually works
<shevy>
it's just so ugly :(
neersighted has quit [Quit: neersighted away!]
spyderma_ has quit [Remote host closed the connection]
<wallerdev_>
haha well if you search like build a dynamic website, the top results are php
<wallerdev_>
no different
slowcon has quit []
spyderman4g63 has joined #ruby
aspiers has joined #ruby
doodlehaus has quit [Remote host closed the connection]
tectonic has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<shevy>
this part I don't quite understand
livingstn has quit []
<shevy>
I mean you can extend ruby to rival php right? most of the stuff that php gives is already available in core ruby
neersighted has joined #ruby
RandyT has quit [Ping timeout: 245 seconds]
b1nd has joined #ruby
neersighted is now known as Guest23341
<wallerdev_>
well php is built for the web, and people who write ruby dont really want it to be php
<wallerdev_>
they like object oriented things
<wallerdev_>
organization and all that
benzrf|offline is now known as benzrf
<shevy>
php got OOP :)
spyderman4g63 has quit [Ping timeout: 258 seconds]
<wallerdev_>
yeah but the people reading/writing the intro tutorials don't want to teach someone OOP just to make a site that displays the current date lol
<wallerdev_>
and php has a crazy install base and easy setup, like i can search web host, click the first one and upload a php file to their ftp and have a site up, thats just how easy it is haha
RandyT has joined #ruby
Notte has quit [Remote host closed the connection]
<wmoxam>
There is no step 3!
graydot has quit [Remote host closed the connection]
graydot has joined #ruby
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
codecop has quit [Remote host closed the connection]
Spami has joined #ruby
<shevy>
I remember when I first worked through PHP OOP I thought
<shevy>
"hey... I finally understand what OOP is all about"
kaspertidemann has quit []
<wallerdev_>
ive got no idea how php OO works haha, someone wanted to work with me a long way back on a php project and he was using OO and i had no idea what any of the code did, i ended up learning OO from a book on java when my AP computer science teacher couldnt explain it lol
afhammad has quit []
sevvie has quit [Ping timeout: 260 seconds]
mikepack has joined #ruby
sepp2k has quit [Quit: Leaving.]
willgo has joined #ruby
bthesorceror has quit [Quit: bthesorceror]
sepp2k has joined #ruby
bthesorceror has joined #ruby
mary5030 has quit [Remote host closed the connection]
deric_skibotn has quit [Ping timeout: 245 seconds]
GhettoJava has quit [Quit: Leaving]
bthesorceror has quit [Client Quit]
JoshGlzBrk has quit [Read error: Connection reset by peer]
patrick99e99 has joined #ruby
nanoyak has quit [Read error: Connection reset by peer]
JoshGlzBrk has joined #ruby
<shevy>
hmm
JoshGlzBrk has quit [Max SendQ exceeded]
nanoyak has joined #ruby
mark07 has joined #ruby
JoshGlzBrk has joined #ruby
sevvie has joined #ruby
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
angusigu1ss has quit [Ping timeout: 260 seconds]
ursooperduper has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<benzrf>
ew
RandyT has quit [Ping timeout: 272 seconds]
msmith_ has quit [Remote host closed the connection]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Hanmac>
i recently tryed to wrote something like Rubyis Enumerable in PHP (like a module that define many methods that each depend on one method) ... you can FORGET it because you cant write something like that in PHP ... or i dont know how
rkalfane has joined #ruby
InhalingPixels has joined #ruby
mikepack has quit [Ping timeout: 272 seconds]
banister is now known as banisterfiend
ryanleesipes has quit [Quit: Leaving]
relix has joined #ruby
deric_skibotn has joined #ruby
shackleford has quit [Remote host closed the connection]
RandyT has joined #ruby
bthesorceror has joined #ruby
<shevy>
the better language brings you farther down the road
<shevy>
ruby now autogenerates the jquery code for me
<shevy>
drag_and_drop :id_here
JoshGlzB_ has joined #ruby
<shevy>
it would be so much better if I could just use pure ruby though
andrewlio has quit [Remote host closed the connection]
Lewix has joined #ruby
JoshGlzB_ has quit [Read error: Connection reset by peer]
hiyosi has quit [Ping timeout: 258 seconds]
JoshGlzB_ has joined #ruby
JoshGlzBrk has quit [Read error: Connection reset by peer]
icarus has quit [Remote host closed the connection]
certainty has joined #ruby
hiyosi has joined #ruby
kevkev__ has joined #ruby
jonr22 has quit [Ping timeout: 272 seconds]
postmodern has joined #ruby
lnong has quit [Excess Flood]
<shevy>
I still haven't understood opal yet
matchaw has quit [Ping timeout: 260 seconds]
caveat- has joined #ruby
hfp has quit [Quit: bye]
hfp_work has quit [Quit: bye]
pombreda has joined #ruby
bruno- has quit [Ping timeout: 260 seconds]
benzrf is now known as tears
tears is now known as benzrf
Guest25966 has joined #ruby
Squarepy has quit [Quit: Leaving]
mkaesz has quit [Ping timeout: 260 seconds]
kevkev__ has quit [Ping timeout: 272 seconds]
pombreda has left #ruby [#ruby]
zeroNones has joined #ruby
freerobby has quit [Quit: Leaving.]
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lampd1_ has joined #ruby
hfp has joined #ruby
certainty has quit [Ping timeout: 272 seconds]
maestrojed has joined #ruby
karmatr0n has quit [Remote host closed the connection]
hfp_work has joined #ruby
iceden has quit [Read error: Connection reset by peer]
certainty has joined #ruby
Tricon has quit [Quit: Leaving...]
geggam has quit [Ping timeout: 258 seconds]
livingstn has joined #ruby
klmlfl has joined #ruby
Wolland_ has joined #ruby
lampd1_ has quit [Ping timeout: 258 seconds]
mocfive has joined #ruby
northfurr has joined #ruby
BadQuanta has joined #ruby
despai has quit [Quit: This computer has gone to sleep]
Wolland has quit [Ping timeout: 245 seconds]
rgcouk has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
babykosh has joined #ruby
naw_ has quit []
mxweas has joined #ruby
mxweas has quit [Client Quit]
BadQuanta has quit [Read error: Connection reset by peer]
fabrice31 has joined #ruby
Guest___ has joined #ruby
BadQuanta has joined #ruby
certainty has quit [Ping timeout: 240 seconds]
vt102 has quit [Remote host closed the connection]
Killerkeksdose has quit [Quit: No Ping reply in 180 seconds.]
_lexjm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Killerkeksdose has joined #ruby
naw_ has joined #ruby
fabrice31 has quit [Ping timeout: 258 seconds]
ramfjord has joined #ruby
hmsimha has quit [Ping timeout: 260 seconds]
Killerkeksdose has quit [Client Quit]
shackleford has quit [Remote host closed the connection]
iceden has joined #ruby
Killerkeksdose has joined #ruby
ursooperduper has joined #ruby
ursooperduper has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hellangel7 has joined #ruby
hellangel7 has quit [Max SendQ exceeded]
bruno- has joined #ruby
Killerkeksdose has quit [Client Quit]
Killerkeksdose has joined #ruby
JoshGlzB_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
aspires has quit []
Killerkeksdose has quit [Client Quit]
fennec has joined #ruby
gtrak has quit [Ping timeout: 260 seconds]
mikepack has joined #ruby
<fennec>
heyo. anyone in here know how to set up C extensions? i've got the basic approach but I'm having some trouble with the extconf.rb and other namey-things.
<eam>
fennec: sure what's up?
Killerkeksdose has joined #ruby
milkohol has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<jhass>
fennec: I don't but as an advice, ask your question, not for a person that might or might not have the answer
<fennec>
eam - so i've got a class and it's got a method that's hot as hellfire (sez the profiler) and I'd like to make it faster.
sevvie has quit [Ping timeout: 260 seconds]
<fennec>
and I'm trying to put _just that method_ into C, and I'm a little uncertain what the C-code layout should be
caveat- has quit [Ping timeout: 260 seconds]
matchaw has joined #ruby
<eam>
can you share the method?
northfurr has quit [Quit: northfurr]
<fennec>
i guess I could but I want help with the layout first. if I've got a Foo::Bar::Node class and I want to set it up, is it convention to make a void Init_foo_bar_node_node(void) {} initializer and put it in an ext/foo/bar/node directory as node.c?
Tricon has joined #ruby
mikepack has quit [Ping timeout: 245 seconds]
<fennec>
then require foo/bar/node/node in the Ruby class on top of it?
cirn0 has joined #ruby
gvenkat_ has quit [Ping timeout: 245 seconds]
hmsimha has joined #ruby
bthesorceror has quit [Quit: bthesorceror]
* fennec
lumbers over to the gist with a bunch of files in the meantime
apeiros has joined #ruby
mikepack has joined #ruby
ursooperduper has joined #ruby
diegoviola has quit [Remote host closed the connection]
Blizzy has joined #ruby
shelling_ has quit [Quit: Connection closed for inactivity]
cirn0 has quit [Ping timeout: 245 seconds]
JeffBonds has joined #ruby
KillerFox has quit [Ping timeout: 250 seconds]
gvenkat_ has joined #ruby
KillerFox has joined #ruby
Mia has quit [Read error: Connection reset by peer]
<fennec>
yes, this is for an interview problem, which is the only reason that I'm bothering trying to make a treap in Ruby. no, the c extension isn't part of the interview problem explicitly, it's me going for bonus points and learning a new thing :b
davasaurous has joined #ruby
zorak8 has joined #ruby
chipotle has quit [Quit: cya]
nanoyak has quit [Read error: Connection reset by peer]
nanoyak has joined #ruby
Bira has joined #ruby
spacemud has quit [Ping timeout: 260 seconds]
jonr22 has joined #ruby
chrisja has quit [Quit: leaving]
spacemud has joined #ruby
ghr has quit [Ping timeout: 245 seconds]
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nonmadden has joined #ruby
Zesty has joined #ruby
nanoyak has quit [Client Quit]
Zesty has quit [Client Quit]
mferrier has joined #ruby
nettoweb_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
caveat- has joined #ruby
iamjarvo has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
mferrier has quit [Client Quit]
Bira has quit [Ping timeout: 260 seconds]
vt102 has joined #ruby
* fennec
assumes the compiley error is due to him setting things up wrong somehow.
doodlehaus has quit [Remote host closed the connection]
babykosh has quit [Quit: babykosh]
nanoyak has joined #ruby
nonmadden has quit [Ping timeout: 245 seconds]
mocfive has quit [Remote host closed the connection]
marr has quit [Ping timeout: 260 seconds]
mocfive has joined #ruby
adac has joined #ruby
<fennec>
hmm. guessing from the output the path tmp/x86_64-darwin13.0/dw/sset/treap/node/2.1.2/dw/sset/treap/node.bundle might be suspicious. too much echo.
AngryEgret is now known as AngryEgret_afk
JeffBonds has quit [Quit: JeffBonds]
nobitano_ has quit []
AngryEgret_afk is now known as AngryEgret
deric_skibotn_ has joined #ruby
tkuchiki has joined #ruby
deric_skibotn has quit [Ping timeout: 272 seconds]
deric_skibotn_ is now known as deric_skibotn
davasaur_ has joined #ruby
Andriama1itra has joined #ruby
Andriama1itra has quit [Client Quit]
momomomomo has joined #ruby
kevkev__ has joined #ruby
caveat- has quit [Ping timeout: 272 seconds]
Takle has quit [Remote host closed the connection]
agjacome has joined #ruby
bedouin_ is now known as bedouin
babykosh has joined #ruby
freerobby has joined #ruby
mrsolo has quit [Quit: Leaving]
caveat- has joined #ruby
startupality has quit [Quit: startupality]
babykosh has quit [Client Quit]
davasaurous has quit [Ping timeout: 260 seconds]
Spami has joined #ruby
tkuchiki has quit [Ping timeout: 245 seconds]
Wolland_ has quit [Remote host closed the connection]
momomomomo_ has joined #ruby
jottr has quit [Ping timeout: 272 seconds]
Wolland has joined #ruby
davasaur_ has quit [Remote host closed the connection]
momomomomo has quit [Ping timeout: 246 seconds]
momomomomo_ is now known as momomomomo
kevkev__ has quit [Ping timeout: 260 seconds]
starless has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<fennec>
jhass- see the problem is that if I ask for advice on a problem that's actually tricky then no one responds for a while and by the time they do my understanding of the problem has changed so i've wasted my time describing my understanding and theirs trying to solve a roadblock that's the first roadblock that I've hit so thanks for the advice but i was kind of trying to deliberately override it because i knew better than to think it would work :b
entrenador has joined #ruby
SCHAAP137 has quit [Remote host closed the connection]
startupality has joined #ruby
Relaxation___ has quit [Quit: Connection closed for inactivity]
<jhass>
fennec: my experience is just that you miss opportunities this way. People usually don't want to commit to you (or your general, broad topic), be it for time reasons or not being or feeling like an expert in the topic. I can say this from both, observation as well as personal experience
Guest80558 has quit [Read error: No route to host]
babykosh has joined #ruby
<jhass>
there's no harm to constantly update the channel of your understanding, you don't need someone holding your hand and listening while doing that
parduse has joined #ruby
Wolland has quit [Ping timeout: 250 seconds]
ursooperduper has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cpruitt has quit [Quit: cpruitt]
icebourg has quit []
b00stfr3ak has quit [Ping timeout: 240 seconds]
yetanotherdave has quit [Read error: Connection reset by peer]
Lewix has quit [Remote host closed the connection]
<Arahael>
fennec: it's actually really helpful for us (not rubists, but devs in general) to see how a particular issue was resolved.
Brando753 has quit [Ping timeout: 260 seconds]
<Arahael>
fennec: and i'm sure you do too as you do research, read other people's issues and their proposed fixes, etcetera.
davasaurous has joined #ruby
Brando753 has joined #ruby
entrenador has quit [Quit: leaving]
kayloos has quit [Remote host closed the connection]
yetanotherdave has joined #ruby
kayloos has joined #ruby
babykosh has quit [Quit: babykosh]
snath has joined #ruby
bruno- has joined #ruby
jottr has joined #ruby
ramfjord has quit [Ping timeout: 258 seconds]
ramfjord has joined #ruby
babykosh has joined #ruby
kayloos has quit [Ping timeout: 245 seconds]
bthesorceror has joined #ruby
<fennec>
Arahael- well the state of things is that I have set up a bunch of files in a certain configuration of relationships to each other and it's not working and i'm trying a bunch of other configurations and they're not working.
<fennec>
i mean this totally unironically. seriously. it's stupidly fiddly. :b
emocakes has joined #ruby
bruno- has quit [Ping timeout: 240 seconds]
doodlehaus has joined #ruby
<jhass>
that's why I want crystal to succeed. Gotta write a go-workers like thingy for it someday