igorgue

412
reputation
81 views

Registered User

name igorgue
member for 1 year
seen Dec 17 at 6:13
website
location Miami, Florida, USA
age 22
I'm a programmer that likes Mono, Python, Haskell, Ruby, Erlang
Nov
2
comment The <<- operator on Ruby, where is it documented?
yep, I didn't know that, thanks :)
Oct
29
comment Is there a way to know if a list of elements is on a larger list without using ‘in’ keyword?
I liked this answer :(
Oct
29
comment Is there a way to know if a list of elements is on a larger list without using ‘in’ keyword?
the in keyword will only tell you if small_list, is an element of big_list... big_list = [1,2,5,7,2,small_list,4,2,5,67,8,5,13,45]
Oct
29
comment The <<- operator on Ruby, where is it documented?
Thank you I didn't even know what was the name of that :)
Oct
29
asked The <<- operator on Ruby, where is it documented?
Oct
22
revised Oracle Client Tuning?
added that I'm using C++
Oct
22
comment Oracle Client Tuning?
Ahh I'm using C++
Oct
21
asked Oracle Client Tuning?
Oct
19
awarded  Yearling
Aug
25
comment ‘has_key()’ or ‘in’?
yeah, you can use it with lists too... "in" is pretty smart
Aug
24
comment ‘has_key()’ or ‘in’?
thanks a lot, good to know, now I'm changing my code to use 'in' instead of has_key() ;)
Aug
24
comment ‘has_key()’ or ‘in’?
awesome
Aug
24
comment ‘has_key()’ or ‘in’?
thanks (added some text to avoid the 15 chars limitation ;))
Aug
24
asked ‘has_key()’ or ‘in’?
Jul
5
comment Getting a dict out of a method?
I didn't know that if you don't order your arguments is a syntax error, and yes I know how to slice a list, thanks!
Jul
5
asked Getting a dict out of a method?
Jul
1
comment Git hosting with personal namespaces
You can host your .git dir renaming it to project.git, and putting it in your user public_html directory, just remember this wont work to do a push to the repo, in other words just read only. Also remember to add the user_dirs module to apache. You can actually do it using webdav, here is a guide, but I had many problems with it, that I switched to ssh: kernel.org/pub/software/…
Jun
29
comment How to delete all the items of an expecific key in a list of dicts?
I was worried about the use of 'pop', but it makes sense because of the double indexing, thanks!
Jun
29
revised How to delete all the items of an expecific key in a list of dicts?
added 14 characters in body
Jun
29
comment How to delete all the items of an expecific key in a list of dicts?
Thanks for your feedback, I didn't understand (or remember) that until now
Jun
29
revised How to delete all the items of an expecific key in a list of dicts?
improved program
Jun
29
asked How to delete all the items of an expecific key in a list of dicts?