<banisterfiend>
when i play music through teh standard sound player app, it closes every time i switch to another app. How do i have it keep playing in the background?
Dreamer3 has quit [Ping timeout: 248 seconds]
ryez has quit [Ping timeout: 245 seconds]
<Oloryn_lt2>
Good question. My Android 2.3 phone keeps playing in the background.
<seanstickle>
banisterfiend: just install this instead: http://kparc.com/
nofxx has quit [Ping timeout: 246 seconds]
<heftig>
banisterfiend: teh standard sound player app should be "Google Music"
<banisterfiend>
heftig: can u tell me how to set that up
<heftig>
install it?
<banisterfiend>
heftig: halp
<banisterfiend>
heftig: is't that just a streaming service?
<whitequark>
btw, enable tail recursion in MRI settings and check if it stackoverflows
<whitequark>
I think it does, unfortunately; MRI tailrec is pretty crappy
<whitequark>
also I think it's basically a restricted form of letrec
<certainty>
whitequark: yeah it is. I haven't checked/thought about whether outer bindings are visible within inner bindings
<certainty>
whitequark: i just wanted to see if its possible at all. I'm testing if i can get a small version of a lazy-sequence constructor that uses closures to do the next iteration
<certainty>
much like a delay
<whitequark>
well, for that case you should be able to unroll the recursion manually, should stack size become a problem
woollyams has quit [Quit: Computer has gone to sleep.]
<certainty>
whitequark: yeah until then i'll keep it this way for simplicity. I don't need a version that has decent performance anyway
qwerxy has quit [Quit: offski]
tooky has quit [Remote host closed the connection]
dhruvasagar has quit [Ping timeout: 246 seconds]
dhruvasagar has joined #ruby-lang
ryez has quit [Ping timeout: 245 seconds]
<banisterfiend>
certainty: you might be able to do better if u did this: nlet { |loop, x=20, y=30| ... }
<whitequark>
as instance_exec is probably the only way to switch `self' of an existing block
<whitequark>
hm wait,.
<andkerosine>
Just on a slightly related note, would you say that Ruby has the secondmost introspective power after Lisp?
runeb has joined #ruby-lang
<whitequark>
well, probably not
<whitequark>
Java and C# reflection is pretty good
pbjorklu1d has joined #ruby-lang
<whitequark>
but introspection doesn't really matter that much
<whitequark>
the ability of making flexible DSLs is what does
<whitequark>
and Ruby allows for really good DSLs, almost as good as those produced with Lisp macros
Criztian has joined #ruby-lang
<andkerosine>
It just seems like almost nothing is off limits in Ruby.
<andkerosine>
See: that line of code above.
pbjorklund has quit [Ping timeout: 252 seconds]
<whitequark>
I'd even say they are as good as you can get without making a Lisp clone: practically every langage which can do AST manipulation (i.e. homoiconic) is, well, Lisp
<andkerosine>
Yeah, that makes sense.
<andkerosine>
I was pretty sad to see RubyVM completely undocumented.
<andkerosine>
I imagine there's a reason for that, though.
<whitequark>
haha, I kinda made it to work
<andkerosine>
You have to simulate the curry with a separate lambda, no?
<whitequark>
nope :D
<whitequark>
see the `probably' above
<whitequark>
`instance_exec' is not the only way.
<andkerosine>
Dun dun dun.
<whitequark>
through it doesn't work either way :/
<whitequark>
ruby's TCO is _really_ stupid. either that, or I'm doing it wrong.
<whitequark>
ah damnit, trace_instruction: false.
<andkerosine>
Does that help much?
<whitequark>
yes
gnufied has joined #ruby-lang
<andkerosine>
I was under the assumption that TCO would have to be pretty decentralized to work effectively.
<certainty>
whitequark: mind the definition of odd-numbers at the end. It uses the closure inside the named let to define the step
sepp2k has joined #ruby-lang
<whitequark>
I see
<certainty>
as an aside. The real power of lisp macros is that they can operated on the mere sexpressions before evaluation happens. That is it what it derives the real power from
<certainty>
well i guess i said "real power" often enough :)
jxie has joined #ruby-lang
<banisterfiend>
certainty: we can do that with Enumerators
<certainty>
thow with the anonymous class trick you could even do anaphoric stuff, no?
<banisterfiend>
certainty: Enumerator.new { |y| x = 1; loop { x += 2; y << x } }
<banisterfiend>
err, put the x += 2 after the y << x :)
<certainty>
banisterfiend: interesting
<banisterfiend>
certainty: Enumerators use Fibers internally
<banisterfiend>
to suspend and resume
zmack has quit [Ping timeout: 246 seconds]
zmack has joined #ruby-lang
voker57 has quit [Read error: Connection reset by peer]
<certainty>
banisterfiend: Fibers are one of those things i haven't yet gotton around to investigate. Of course a have a fuzzy understanding of them, but i definitely will have a look at them
<certainty>
+deeper
<banisterfiend>
certainty: they're pretty ez in concept, it's just a block that you can 'pause' and then resume it again and it takes off from where it was paused
<workmad3>
1.9 let you have block params to blocks :)
<banisterfiend>
judofyr: so the reason Proc.new doesn't work is because Proc.new would bind to the block in the definition context of the define_method rahter than the block passed to define_method itself
<judofyr>
makes sense
<workmad3>
and yeah... the closure closes over arguments... the block is just an implicit method argument (unless you've made it explicit)
<certainty>
gnufied: aha! thanks. I didn't know that works now
* certainty
needs to get back to boring work
<workmad3>
certainty: 1.9 'unified' block param list capabilities and method argument list capabilities
<workmad3>
certainty: so define_method :method_missing {|m, *a, &b| } works fine in 1.9, like it should :)
<workmad3>
oh, and obviously, default arguments work in block param lists too (which I didn't realise until quite recently)
<gnufied>
banisterfiend: yeah that makes sense. didn't know, you blogged. :-)
<banisterfiend>
gnufied: not so regularly anymore
<banisterfiend>
maybe twice a year :)
<certainty>
workmad3: yeah, see the letrec definition. It's nice that it works as expected now. Less suprise
<workmad3>
banisterfiend: hmm, I guess it gives you a way of specifying which method to use out of a set of conflicting modules
<whitequark>
banisterfiend: btw it's not a deep copy of the method
<whitequark>
banisterfiend: it's more a deep copy of a method table entry
<workmad3>
banisterfiend: module inclusion doesn't override methods though... it shadows them :)
w0lverine has quit [Quit: w0lverine]
<gnufied>
whitequark: interesting. but the method body must be copied as well, right/
<banisterfiend>
workmad3: well, when i define a method in a subclass that's also in a superclass i say the subclass is 'overriding' the method in the subclass, i think that's standard terminology?
banisterfiend has quit [Read error: Connection reset by peer]
<workmad3>
banisterfiend: hmm, good point... I just normally say shadowing, because ruby lets you reopen a class and properly override a method (replacing the original version)
<banisterfiend>
fair enough
<whitequark>
gnufied: when you replace the method table entry in the module, the class still contains the old method table entry
<workmad3>
banisterfiend: but yes, I realise now my terminology is kinda non-standard :)
<whitequark>
gnufied: which means you do not need to deep-copy the method body
<gnufied>
whitequark: okay, something I need to investigate a bit.
<gnufied>
I see what you are saying though.
sevvie has joined #ruby-lang
neoesque has quit [Quit: Bye!]
Codif has joined #ruby-lang
Codif has left #ruby-lang [#ruby-lang]
hhatch has joined #ruby-lang
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
yugui is now known as yugui_zzz
x0F has quit [Disconnected by services]
x0F_ has joined #ruby-lang
x0F_ is now known as x0F
mccraig has joined #ruby-lang
zmack has quit [Remote host closed the connection]
nagato has quit [Ping timeout: 245 seconds]
nofxx has quit [Read error: Operation timed out]
uniosx has joined #ruby-lang
dhruvasagar has joined #ruby-lang
virunga has joined #ruby-lang
burgestrand has joined #ruby-lang
uniosx has quit [Quit: uniosx]
Guedes_out has left #ruby-lang [#ruby-lang]
vijay420_ has joined #ruby-lang
Oloryn_lt2 has quit [Ping timeout: 244 seconds]
qwerxy has quit [Ping timeout: 244 seconds]
telemachus has quit [Ping timeout: 244 seconds]
Axsuul has quit [Ping timeout: 240 seconds]
andkerosine has quit [Ping timeout: 240 seconds]
thorncp has quit [Ping timeout: 240 seconds]
vijay420 has quit [Ping timeout: 244 seconds]
tomb_ has quit [Ping timeout: 244 seconds]
yugui_zzz has quit [Ping timeout: 244 seconds]
chendo_ has quit [Ping timeout: 244 seconds]
solars has quit [Ping timeout: 240 seconds]
kirin` has quit [Ping timeout: 240 seconds]
yellow5 has quit [Ping timeout: 240 seconds]
meise has quit [Ping timeout: 240 seconds]
tekin has quit [Ping timeout: 244 seconds]
pemeon has quit [Ping timeout: 244 seconds]
DEac- has quit [Ping timeout: 244 seconds]
shaman42 has quit [Ping timeout: 244 seconds]
dumfries_ has quit [Ping timeout: 244 seconds]
hhatch has quit [Ping timeout: 240 seconds]
ubuntu_user has quit [Ping timeout: 240 seconds]
thorncp has joined #ruby-lang
ryez_ has quit [Ping timeout: 245 seconds]
andkerosine has joined #ruby-lang
valeri_ufo has quit [Read error: Connection reset by peer]
qwerxy_ has joined #ruby-lang
futurechimp has quit [Ping timeout: 244 seconds]
Bwild has quit [Ping timeout: 244 seconds]
mortice has quit [Ping timeout: 244 seconds]
TheDracle has quit [Ping timeout: 244 seconds]
gnufied has quit [Ping timeout: 240 seconds]
gix has quit [Ping timeout: 240 seconds]
DEac- has joined #ruby-lang
dmwuw_ has joined #ruby-lang
futurechimp has joined #ruby-lang
yugui_zzz has joined #ruby-lang
dmwuw has quit [Ping timeout: 240 seconds]
joast has quit [Ping timeout: 240 seconds]
ReinH has quit [Ping timeout: 240 seconds]
TheDracle has joined #ruby-lang
tomb_ has joined #ruby-lang
ReinH has joined #ruby-lang
shaman42 has joined #ruby-lang
Oloryn_lt21 has joined #ruby-lang
telemachus_ has joined #ruby-lang
valeri_uF0 has joined #ruby-lang
yellow5_ has joined #ruby-lang
gnufied1 has joined #ruby-lang
hhatch_ has joined #ruby-lang
Bwild has joined #ruby-lang
meise has joined #ruby-lang
chendo_ has joined #ruby-lang
kirin` has joined #ruby-lang
ubuntu_user has joined #ruby-lang
tekin has joined #ruby-lang
yellow5_ is now known as yellow5
mortice has joined #ruby-lang
pemeon has joined #ruby-lang
solars has joined #ruby-lang
dumfries has joined #ruby-lang
Axsuul has joined #ruby-lang
gix has joined #ruby-lang
neocoin has joined #ruby-lang
Berglund has joined #ruby-lang
cjs226 has joined #ruby-lang
tooky has quit [Remote host closed the connection]
tooky has joined #ruby-lang
virunga has quit [Quit: Sto andando via]
burgestrand has quit [Quit: Leaving.]
postmodern has quit [Quit: Leaving]
apeiros_ has joined #ruby-lang
dous has quit [Remote host closed the connection]
nofxx has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 246 seconds]
dhruvasagar has joined #ruby-lang
Jake232 has joined #ruby-lang
neocoin has quit [Remote host closed the connection]
neocoin has joined #ruby-lang
neocoin has quit [Read error: Connection reset by peer]
mwjcomputing has joined #ruby-lang
Axsuul has quit [Ping timeout: 255 seconds]
ubuntu_user has quit [Ping timeout: 248 seconds]
<Jake232>
Guys, I suck at regex, and the regex room seems pretty quiet. How can I extract [THESE WORDS] from inside the posix brackets. eg: I need to literally use posix brackets in my regex
<Jake232>
rather than doing what they ussually do in regex
<judofyr>
Jake232: /\[THESE WORDS\]/
<Jake232>
And now I feel an idiot
<Jake232>
for not trying that
<Jake232>
haha
<judofyr>
Jake232: there's also Regexp.escape if you'd like to variablize your regex: T = Regexp.escape("[THESE WORDS]"); /#{T} foo/
lcdhoffman has joined #ruby-lang
<Jake232>
judofyr: This will do my job fine: \[([\w\s]+)\]
<abletony84>
darix: i did get a totally different error now with python2 though: http://pastie.org/4383508 if you scroll down to "More stuff I tried2
<abletony84>
* tried"
<darix>
now contact the v8 guys :)
<darix>
no clue about that
<abletony84>
should i still try your oneliner?
m3nd3s has quit [Read error: Operation timed out]
jxie has quit [Quit: leaving]
sailias has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 240 seconds]
dhruvasagar has joined #ruby-lang
nofxx has joined #ruby-lang
nofxx has quit [Changing host]
nofxx has joined #ruby-lang
m3nd3s has joined #ruby-lang
<certainty>
abletony84: that may be a stupid question, but sometimes the systems provide packaged versions for gems. Does that gem exist in your ports?
<abletony84>
not a stupid question at all
<abletony84>
unfortunately no
<certainty>
alright
<abletony84>
certainty: you know whats wrong with this though?
<certainty>
abletony84: please note that OpenBSD traditionally is quite a stresstest for every compile applications. Most bugs and oddities don't show up on other systems, but OpenBSD catches them
<abletony84>
zsh: too many levels of symbolic links: g++
<certainty>
abletony84: sounds like gÃthere's a symlink loop
<darix>
abletony84: bet: eg++ was a link go g++ ;)
<abletony84>
darix: but eg++ -v shows 4.6.2 and g++ -v shows 4.2.1
vijay420_ has quit [Read error: Connection reset by peer]
vijay420 has joined #ruby-lang
charliesome has joined #ruby-lang
outoftime has joined #ruby-lang
Berglund has quit [Quit: Computer died.]
<darix>
abletony84: uhm
<darix>
check if your eg++ was maybe from /usr/local/bin ?
zwerg has joined #ruby-lang
<abletony84>
darix: yeah ;)
<abletony84>
hmmm
<darix>
so
<abletony84>
lets try
<darix>
revert the /usr/bin change
<darix>
and add ln -sf eg++ /usr/local/bin/g++
gnufied1 has left #ruby-lang [#ruby-lang]
gnufied1 has joined #ruby-lang
<zwerg>
I need to run external programs and wait for their ouput. I tried backticks and IO.popen("...").read but every now and then the child processes go defunct and the script hangs.
<zwerg>
Any ideas how to solve that?
<abletony84>
darix: that brought us a lot closer :)
<abletony84>
no more g++ errors!
<abletony84>
i mean.. no more "can't find g++ errors"
<abletony84>
right now though: g++: error trying to exec 'cc1plus': execvp: No such file or directory
<darix>
find cc1plus on your system and link it into the path
jkprg has quit [Quit: jkprg]
gsav_ has joined #ruby-lang
gsav has quit [Read error: Connection reset by peer]
<abletony84>
darix: it seems to be in /usr/local/libexec/gcc/i386-unknown-openbsd5.1/4.6.2/cc1plus so i add /usr/local/libexec/gcc/i386-unknown-openbsd5.1/4.6.2/ to my shell's path?
<darix>
e.g.
iamlacroix has quit [Remote host closed the connection]
tommyvyo has joined #ruby-lang
tubbo has joined #ruby-lang
Berglund has joined #ruby-lang
zmack_ has joined #ruby-lang
<abletony84>
darix: one problem solved another one pops up ../src/utils.h:33:19: fatal error: climits: No such file or directory
<zwerg>
So I now do proc = IO.popen("..."); Process.wait proc.pid; out = proc.read;
<zwerg>
Wait successfully finishes, but read takes forever.
<zwerg>
Is there any function for reading as many bytes as there are instead of waiting for eof()?
hynkle has joined #ruby-lang
joast has joined #ruby-lang
t4nkd has joined #ruby-lang
t4nkd has quit [Client Quit]
riffraff has joined #ruby-lang
Leeky is now known as Leeky_afk
Jay_Levitt has quit [Quit: Leaving...]
kitallis has quit [Ping timeout: 245 seconds]
robotmay has quit [Remote host closed the connection]
kitallis has joined #ruby-lang
kitallis has quit [Client Quit]
kitallis has joined #ruby-lang
slyphon has joined #ruby-lang
Berglund has quit [Ping timeout: 248 seconds]
<deryl>
that would be a dangerous function, not to mention it would have no way to know when there are 'as many bytes as there are' since you would now no longer have a 'as there are' signaler
Berglund has joined #ruby-lang
enroxorz has joined #ruby-lang
enroxorz has quit [Changing host]
enroxorz has joined #ruby-lang
IPGlider has joined #ruby-lang
jxie has joined #ruby-lang
enroxorz is now known as quaid
quaid has left #ruby-lang [#ruby-lang]
Berglund has quit [Ping timeout: 245 seconds]
rohit has joined #ruby-lang
tjadc has joined #ruby-lang
wallerdev has joined #ruby-lang
Berglund has joined #ruby-lang
<zwerg>
But the process returned from Process.wait pid, why could .read hang anyways?
tooky has joined #ruby-lang
Berglund has quit [Client Quit]
lcdhoffman has joined #ruby-lang
ruurd has quit [Quit: Leaving...]
sailias has joined #ruby-lang
tjadc has quit [Ping timeout: 244 seconds]
bryancp has joined #ruby-lang
vijay420 has quit [Read error: Connection reset by peer]
vijay420 has joined #ruby-lang
zmack_ has quit [Remote host closed the connection]
rolfb has joined #ruby-lang
cha1tanya has quit [Quit: आलोच..]
gnufied1 has quit [Quit: Leaving.]
gsav_ has quit [Ping timeout: 248 seconds]
justinseiter has joined #ruby-lang
jtoy has joined #ruby-lang
kitallis has quit [Quit: Computer has gone to sleep.]
Jake232 has quit [Quit: Computer has gone to sleep.]
gsav has joined #ruby-lang
kitallis has joined #ruby-lang
kitallis has quit [Client Quit]
wmoxam_ has joined #ruby-lang
gnufied has joined #ruby-lang
cjs226 has quit []
gnufied has quit [Client Quit]
JohnBat26 has joined #ruby-lang
IPGlider has quit []
dous has joined #ruby-lang
dous has joined #ruby-lang
gnufied has joined #ruby-lang
gnufied has quit [Client Quit]
gnufied has joined #ruby-lang
dv310p3r has joined #ruby-lang
JoshWines has quit [Quit: Leaving]
retro|cz has quit [Ping timeout: 265 seconds]
headius has joined #ruby-lang
Jay_Levitt has joined #ruby-lang
deryl-android has joined #ruby-lang
erpuds has joined #ruby-lang
uniosx has joined #ruby-lang
m3nd3s has quit [Read error: Connection reset by peer]
m3nd3s has joined #ruby-lang
coryf has joined #ruby-lang
m3nd3s has quit [Read error: Connection reset by peer]
neocoin has joined #ruby-lang
rohit has quit [Quit: Leaving]
lcdhoffman has quit [Quit: lcdhoffman]
Hakon has quit [Quit: Leaving...]
Austin__ has joined #ruby-lang
apeiros_ has quit [Remote host closed the connection]
enebo has joined #ruby-lang
robin850 has joined #ruby-lang
robin850 has left #ruby-lang [#ruby-lang]
rutkla has quit [Read error: Connection reset by peer]
tooky has quit [Remote host closed the connection]
vertroa has joined #ruby-lang
runeb has quit [Remote host closed the connection]
erics has joined #ruby-lang
eschwartz has joined #ruby-lang
<Mon_Ouie>
ed all the first season in the last few days and I haven't seen it sense they aired it on tv. Holy fucking shit it is good. I am Curious about the 2nd season. (self.digimon)
<Mon_Ouie>
No idea why that happened
eschwartz has quit [Remote host closed the connection]
eschwartz has joined #ruby-lang
<apeiros_>
o0
Skif has quit [Read error: Connection reset by peer]
erics has quit [Ping timeout: 240 seconds]
snorkdude has joined #ruby-lang
bryancp has quit [Remote host closed the connection]
snorkdude has quit [Remote host closed the connection]
umttumt has joined #ruby-lang
Stereokitsune has quit [Ping timeout: 252 seconds]
dhruvasagar has quit [Ping timeout: 246 seconds]
arooni-mobile has joined #ruby-lang
chimkan has quit [Quit: chimkan]
zmack has joined #ruby-lang
snorkdude has joined #ruby-lang
sevvie has joined #ruby-lang
w0lverine has joined #ruby-lang
Jake232 has joined #ruby-lang
havenn has joined #ruby-lang
Criztian has quit []
jtoy has quit [Quit: jtoy]
tjadc has quit [Remote host closed the connection]
verbad has joined #ruby-lang
Criztian has joined #ruby-lang
<drbrain>
deryl: read_nonblock does that
erpuds has joined #ruby-lang
jbsan has joined #ruby-lang
<drbrain>
Cascadia Ruby Conferenge is streaming at justin.tv/confreaks
voker57 has quit [Remote host closed the connection]
zmack has quit [Remote host closed the connection]
cdt has quit [Quit: Ex-Chat]
cdt has joined #ruby-lang
<drbrain>
deryl: … read_nonblock reads as many bytes as there are
butchanton has joined #ruby-lang
cdt has quit [Client Quit]
arooni-mobile has quit [Ping timeout: 246 seconds]
fgomez has joined #ruby-lang
headius has quit [Quit: headius]
chimkan_ has joined #ruby-lang
erpuds_ has joined #ruby-lang
erpuds_ has quit [Client Quit]
chimkan_ has quit [Remote host closed the connection]
chimkan_ has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
havenn has quit [Remote host closed the connection]
umttumt has quit [Remote host closed the connection]
wallerdev has joined #ruby-lang
umttumt has joined #ruby-lang
erpuds has quit [Ping timeout: 252 seconds]
hynkle has quit [Read error: Connection reset by peer]
tommyvyo has quit [Quit: Computer has gone to sleep.]
snorkdude has quit [Remote host closed the connection]
abletony84 has quit [Ping timeout: 244 seconds]
headius has joined #ruby-lang
benanne has joined #ruby-lang
RomyRomy has joined #ruby-lang
hynkle has joined #ruby-lang
Berglund has joined #ruby-lang
mrsolo has joined #ruby-lang
dustacio has joined #ruby-lang
umttumt_ has joined #ruby-lang
umttumt_ has quit [Remote host closed the connection]
bryancp has quit [Remote host closed the connection]
s0ra_h is now known as sora_h
jaimef has quit [Read error: Connection reset by peer]
fgomez has joined #ruby-lang
rippa has joined #ruby-lang
gsav has quit [Ping timeout: 244 seconds]
cttt has joined #ruby-lang
jaimef has joined #ruby-lang
droptable has quit [Ping timeout: 248 seconds]
havenn has joined #ruby-lang
cttt has quit [Quit: Page closed]
BlackShadow has joined #ruby-lang
headius has quit [Quit: headius]
rking has joined #ruby-lang
bryancp has joined #ruby-lang
sora_h is now known as s0ra_h
dc5ala has quit [Quit: Ex-Chat]
Fretta has joined #ruby-lang
Fretta has quit [Remote host closed the connection]
droptable has joined #ruby-lang
RegEchse has joined #ruby-lang
gsav has joined #ruby-lang
workmad3 has quit [Ping timeout: 248 seconds]
gsav has quit [Ping timeout: 246 seconds]
tommyvyo has quit [Quit: Computer has gone to sleep.]
workmad3 has joined #ruby-lang
apeiros has joined #ruby-lang
tommyvyo has joined #ruby-lang
apeiros_ has quit [Ping timeout: 248 seconds]
snorkdude has quit [Remote host closed the connection]
snorkdude has joined #ruby-lang
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
abletony84 has joined #ruby-lang
Berglund has quit [Quit: Computer died.]
<abletony84>
When a gem install errors out, and I try to fix its Makefile, how do I prevent that Makefile from being overwritten when I rerun gem install?
<andkerosine>
You'll have to download the actual gem archive.
hakunin has quit [Read error: Operation timed out]
<abletony84>
ah i see
<abletony84>
darix: didnt you have a nice recipe for that?
dfr|mac__ has quit [Remote host closed the connection]
rolfb has joined #ruby-lang
abletony84 has quit [Quit: Lost terminal]
nofxx has quit [Ping timeout: 255 seconds]
mroth has joined #ruby-lang
mroth has joined #ruby-lang
mroth has joined #ruby-lang
akira989 has quit [Remote host closed the connection]
<rolfb>
is there a way to ask what the arguments sent to me (as an object) was?
lcdhoffman has joined #ruby-lang
lcdhoffman_ has joined #ruby-lang
lcdhoffman has quit [Read error: Connection reset by peer]
w0lverine has joined #ruby-lang
<rolfb>
like __callee__ is for getting the method name
nofxx has joined #ruby-lang
nofxx has quit [Changing host]
nofxx has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 240 seconds]
havenn has quit [Remote host closed the connection]
burgestrand has joined #ruby-lang
andkerosine has left #ruby-lang [#ruby-lang]
s0ra_h is now known as sora_h
krz has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
elux has quit [Quit: Bye!]
butchanton has quit [Remote host closed the connection]
butchanton has joined #ruby-lang
butchanton has quit [Remote host closed the connection]
lcdhoffman_ has quit [Quit: lcdhoffman_]
snorkdude has joined #ruby-lang
thone_ has joined #ruby-lang
butchanton has joined #ruby-lang
snorkdude has quit [Remote host closed the connection]
rippa has quit [Ping timeout: 248 seconds]
thone has quit [Ping timeout: 248 seconds]
sailias has joined #ruby-lang
sora_h is now known as s0ra_h
burgestrand has quit [Quit: Leaving.]
qwerxy has joined #ruby-lang
savage- has quit [Remote host closed the connection]
bryancp has joined #ruby-lang
savage- has joined #ruby-lang
abletony84 has joined #ruby-lang
zmack has joined #ruby-lang
<abletony84>
Can someone help me build therubyracer here on OpenBSD? http://pastie.org/4385785 - I'm not exactly sure what the error is this time though.
sailias has quit [Quit: Leaving.]
zmack has quit [Remote host closed the connection]
burgestrand has joined #ruby-lang
zmack has joined #ruby-lang
enebo has quit [Quit: enebo]
savage- has quit [Remote host closed the connection]
nofxx has quit [Ping timeout: 244 seconds]
<matti>
abletony84: You may have some fun getting it working on OBSD
<matti>
If you have it, there is no need for rake to try to compile dependencies.
<matti>
Which fail.
nofxx has joined #ruby-lang
nofxx has quit [Changing host]
nofxx has joined #ruby-lang
arooni-mobile has joined #ruby-lang
<abletony84>
matti: What do you mean?
havenn has joined #ruby-lang
<matti>
abletony84: Hm?
Austin__ has left #ruby-lang [#ruby-lang]
kvirani has quit [Remote host closed the connection]
s0ra_h is now known as sora_h
droptable has quit [Ping timeout: 244 seconds]
snorkdude has joined #ruby-lang
savage- has joined #ruby-lang
snorkdude has quit [Remote host closed the connection]
nofxx has quit [Ping timeout: 250 seconds]
sepp2k has quit [Remote host closed the connection]
zenspider has joined #ruby-lang
deryl has quit [Quit: deryl]
havenn has quit [Remote host closed the connection]
Oloryn_lt21 has joined #ruby-lang
toretore has quit [Quit: Leaving]
Oloryn_lt2 has quit [Ping timeout: 248 seconds]
<abletony84>
matti: https://github.com/cowboyd/libv8 installed fine - you're saying that's the source of my trouble though and that i should try to build it manually off the grid?
droptable has joined #ruby-lang
Berglund has joined #ruby-lang
sora_h is now known as s0ra_h
nofxx has joined #ruby-lang
Criztian has quit [Remote host closed the connection]
<matti>
abletony84: Have a look at log file.
<matti>
abletony84: You should be able to figure out from it what failed.