Geo

8,472
reputation
778 views

Registered User

name Geo
member for 1 year
seen 1 hour ago
website
location
age
21h
answered Why can’t I call javac using the Backquotes/Backticks approach in Ruby?
22h
asked How could I get a Frame with a scrollbar in Python’s Tkinter?
23h
comment Why is getEntry(Object key) not exposed on HashMap?
You could get it by reflection, and still use, if there is no other way around.
1d
revised How can I excute Notepad by Java code
edited body
1d
comment Mechanize with FakeWeb
If you keep your answer acceptance level this low, people will stay away from your questions.
1d
awarded  Popular Question
1d
comment Is it possible to recursively require all files in a directory in Ruby?
Yes. But you could have used load(f) if f =~/\.rb/. I was referring to why you're using fnmatch over the builtin regex support.
2d
awarded  Popular Question
2d
comment Where can I find an actively developed lint tool for Ruby?
Thanks Adrian! Exactly what I needed.
Dec
7
awarded  Fanatic
Dec
6
revised Which Javascript code editor supports plain text line numbering?
edited tags
Dec
6
answered What is Edge Rails?
Dec
6
comment Running a website from an encrypted partition
If you won't mark answers to your questions, people will stop responding.
Dec
5
comment Where can I find an actively developed lint tool for Ruby?
I agree with your response, but RubyMine is an entire IDE. I only need one piece of it's functionality.
Dec
5
comment Which Javascript code editor supports plain text line numbering?
Yeah :) ... except I'm looking for something I can embed in a website. Notice the wysiwyg tag.
Dec
5
comment Ruby Quiz for Python
Probably he'd like to see the available solutions as well.
Dec
5
asked Is it against google agreement to place adsense banners in your post?
Dec
5
asked Which Javascript code editor supports plain text line numbering?
Dec
5
comment Is it possible to recursively require all files in a directory in Ruby?
Why aren't you matching directly against f in your load call?
Dec
5
comment Is there a Perl shortcut to count the number of matches in a string?
Nice one. Thanks!
Dec
4
comment What happens on this my declaration? [ Perl ]
I'm doing this in Perl5. Is it something new?
Dec
4
answered Is it possible to recursively require all files in a directory in Ruby?
Dec
4
asked What happens on this my declaration? [ Perl ]
Dec
4
asked Is there a Perl shortcut to count the number of matches in a string?
Dec
3
comment How could I redefine a subroutine and keep the old one too?
Nice explanation. Thanks!
Dec
3
comment How could I redefine a subroutine and keep the old one too?
Is it possible, when you redefine the first symbol, to affect only the code part?
Dec
3
asked How could I redefine a subroutine and keep the old one too?
Dec
3
asked Is Tie::File lazily loading a file?
Dec
3
comment Is this a known pattern?
Joke: are you trying to reinvent procedural programming? :)
Dec
3
accepted How to add JS support to the Ruby Mechanize gem?
Dec
3
comment What are the cool and interesting things that you do during build-automation?
There aren't real traffic lights. It's software installed on their machines.
Dec
3
awarded  Popular Question
Dec
2
comment Where can I find an actively developed lint tool for Ruby?
Let's wait a while, before you get the bounty :)
Dec
2
comment How does an object access the symbol table for the current package?
I wanted to know how it was done ... knowing what made it work seemed pretty interesting. And it is :)
Dec
2
revised C++ “THIS” Pointer
added 40 characters in body
Dec
2
comment Where can I find an actively developed lint tool for Ruby?
I wouldn't mind if the code gets evaled, in order to figure out that the variable is undefined.
Dec
2
comment How does an object access the symbol table for the current package?
I saw this tutorial search.cpan.org/~ROBERTMAY/Win32-GUI/… for Win32::GUI , and I imagined this was how the Main_Terminate was implemented.
Dec
1
answered How to parse a URI like this in Java
Dec
1
answered Vital Ruby concepts to learn before I jump into Rails?
Dec
1
revised Where can I find an actively developed lint tool for Ruby?
added 95 characters in body
Nov
30
comment How does an object access the symbol table for the current package?
It's why I added the extra clarification. I noticed it wasn't what I was asking for.
Nov
30
comment How does an object access the symbol table for the current package?
Funny Sinan :) ! I think it's obvious this was what I wanted from the first time.
Nov
30
comment Why does my Perl CGI complain about “Premature end of script headers”?
If this works, and system doesn't, is it possible somewhere you have a wrong path?
Nov
30
revised How does an object access the symbol table for the current package?
provided a snippet, hoping to make things clearer
Nov
30
revised How does an object access the symbol table for the current package?
edited tags
Nov
30
asked How does an object access the symbol table for the current package?
Nov
30
comment Why does my Perl CGI complain about “Premature end of script headers”?
There you go! Now, google the error's solution. You're not the first one to have dealt with it.
Nov
30
comment Why does my Perl CGI complain about “Premature end of script headers”?
What does your server log has to say about this error?
Nov
30
comment Python subprocess
What happens if you call the batch like: cmd.exe /c batchfile.bat? Of course, you'd replace batchfile.bat with the path to your file.
Nov
30
comment Is using __PACKAGE__ inside my methods bad for inheritance?
I used it out of convenience, so that I wouldn't need to get the package name.