Viewing profile — lucindo
lucindo
HN member- Joined
- Mon, Feb 19, 2007, 11:46 PM UTC
- HN karma
- 34
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About lucindo
Recent public activity
- story
-
comment
Comment #12150031
I like this Quora answer on the subject: https://www.quora.com/Why-are-software-development-task-esti...
-
comment
Comment #10265441
http://www.scylladb.com/technology/cassandra-vs-scylla-laten...
- comment
- story
- story
- story
- story
- story
- story
-
comment
Comment #521200
just for fun: function copylist(lst) { return mapcar(function (x) { return x; }, lst); } function last(lst) { if (null == lst) { return null; } else if (null == cdr(lst)) { return …
-
comment
Comment #508522
function cons(x, y) { return function(m) { return m(x, y); } } function car(x) { return x(function(a, d) { return a; }); } function cdr(x) { return x(function(a, d) { return d; });…
-
story
Automatic tagging with ruby
Using text classifiers to tag news.
-
comment
Comment #91167
Q: What would you do differently if you could do it all over again? Reddit: Stick with Lisp. (...) http://notelab.infogami.com/startupschool2006
-
comment
Comment #79379
You can tell us your results with KDD data sets: http://kdd.ics.uci.edu/
-
story
Ask YC News: Voting up vs. up and down
What's the main difference on the quality of itens classification using a voting system that allow only up votes versus up and down votes (digg vs. reddit)? YC.news changed from up…