-
Tags
Activemq Add new tag Africa Ambiente Animals Apache Camel Barzellette beneficenza Berlusconi Cairo calendario Carate Brianza Chess Collaboration Colleagues Database Development dvb Ecologia Economia Erlang facebook Foto Friends Google Java LinkedIn Linux Me No profit OpenSource Poesie Politica Programming R Servicemix SOA statistics Trasporti twitter Volontariato Web WebService W l\'Italia WorkArchives
- December 2011 (2)
- October 2011 (2)
- August 2011 (2)
- July 2011 (4)
- June 2011 (4)
- May 2011 (2)
- March 2011 (1)
- December 2010 (5)
- September 2010 (2)
- August 2010 (2)
- June 2010 (2)
- May 2010 (1)
- April 2010 (1)
- March 2010 (1)
- February 2010 (2)
- January 2010 (3)
- December 2009 (2)
- October 2009 (4)
- September 2009 (2)
- August 2009 (1)
- June 2009 (5)
- May 2009 (1)
- April 2009 (3)
- February 2009 (2)
- January 2009 (5)
- December 2008 (1)
- November 2008 (3)
- October 2008 (3)
- September 2008 (1)
- August 2008 (3)
- July 2008 (3)
- June 2008 (1)
- May 2008 (5)
- April 2008 (6)
- March 2008 (4)
- February 2008 (3)
- January 2008 (3)
- December 2007 (1)
- November 2007 (9)
- October 2007 (2)
- September 2007 (12)
- August 2007 (5)
- September 2006 (1)
Recent Comments
-
RLangTip
Get an overview of documentation for an installed package: help(package="<package-name>") #rstats
Common style for comments is # on a line of #rstats code, ## within functions, and ### at the top level of scripts. ESS indents accordingly
A single index can be used to select from a matrix. For example, X[row(X)==col(X)] is the same as diag(X) #rstats http://t.co/EY1uMfny
Robust function writing tip: use seq_len(N) instead of 1:N (it handles the N<1 case appropriately): http://t.co/mZdDZCJE #rstats
Train support vector machines in R with the "svm" function from the e1071 package: http://t.co/OM5duD90 #rstats
A handy alias (via @hadleywickham) for #rstats to prevent saving or loading workspaces: R --no-save --no-restore-data --quiet
Filter list elems that match a condition: id<-sapply(mylist, function(e) test(e)); mylist[id] # Replace "test" with any T/F expr #rstats
The # character introduces comments in R. Everything after the # character to end-of-line is ignored by the interpreter. #rstats
The "break" statement immediately exits from a "for" or "while" loop: http://t.co/O4xamQqt #rstats
To debug warnings, options(warn=2) converts warnings into errors #rstats
Tag Archives: Erlang
Ebot: an erlang web crawler
Ebot is a opensource and scalable web crawler written on top of Erlang, a NOSQL database (Apache CouchDB or Riak), RabbitMQ, Mochiweb, Webmachine, .. See my Erlang info page for more details.
RabbitMQ acquired by SpringSource/VMWare
“Erlang-based RabbitMQ was acquired today by SpringSource, which is owned by VMWare” “RabbitMQ is a complete and highly reliable enterprise messaging system based on the emerging AMQP standard. It is licensed under the open source Mozilla Public License and has … Continue reading
Apache CouchDB ~ Ubuntu
“Ubuntu 9.10 Karmic Koala has just been released. This is big news as this version includes Apache CouchDB, used as a replicable database by desktop apps. This means CouchDB will be on over 10 million desktops” [from Damien Katz] Erlang … Continue reading
Ewg: Erlang Wordlist Generator
Ewg is a Wordlist generator written in Erlang. Thanks to this simple project I have been improving my knowledge in Erlang/OTP and Git. I love functional programming and learning more and more…
Erlang at Facebook, SAP, …
Erlang At? Please add a comment if you use it in your company! Erlang at BBC http://www.erlang-factory.com/upload/presentations/147/EndaFarrell-ErlangFactoryLondon2009-ErlangattheBBC.pdf Erlang at Facebook Functional Programming at Facebook by Chris Piro and Eugene Letuchy. http://www.erlang-factory.com/upload/presentations/31/EugeneLetuchy-ErlangatFacebook.pdf http://www.process-one.net/en/blogs/article/facebook_chat_supports_xmpp_with_ejabberd/ Erlang at Github http://github.com/blog/112-supercharged-git-daemon Erlang at SAP http://www.erlang-factory.com/upload/presentations/57/SumeetBajaj_ErlangatSAP.pdf … Continue reading
N queens solution with erlang
“The eight queens puzzle is the problem of putting eight chess queens on an 8×8 chessboard such that none of them is able to capture any other using the standard chess queen’s moves. The queens must be placed in such … Continue reading