8
votes
6answers
471 views
‘has_key()’ or ‘in’?
Hi,
I wonder what is better to do:
d = {'a': 1, 'b': 2}
'a' in d
True
or:
d = {'a': 1, 'b': 2}
d.has_key('a')
True
…
2
votes
6answers
126 views
The <<- operator on Ruby, where is it documented?
Hi, I recently used the <<- operator to output a multi-line string, this way...
<<-form
<h1>Name to say hi!</h1>
<form method="post">
<input …
1
vote
What is a good resource to help start an open source project?
To start an OSS software a lot of people recommends: http://producingoss.com/ the book is free so everybody can get it.
…
