Devoogle tiene indexados actualmente 17819 recursos relacionados con el desarrollo de software.

I've just watched this interesting talk by Gary Bernhardt: The Birth & Death of JavaScript - por Garajeando
Web
05-08-2014
I've just watched this very interesting talk by Adam Tornhill: Code that fits your brain - por Garajeando
Web
05-08-2014
I used metaprogramming as I did in the Meetup problem to simplify the code of the Space Age problem (you can find my previous versions here): This version has less repetition than the previous ones. You can nitpick my solution here or see all the exercises I've done so far in this repository. - por Garajeando
Web
05-08-2014
This is my solution to the Triangle problem in Clojure. This was an easy one.You can nitpick my solution here or see all the exercises I've done so far in this repository. - por Garajeando
Web
05-08-2014
This is my solution in Clojure to the second problem from Euler project: I created some helpers just to make the solution a bit more readable. - por Garajeando
Entrevista a Ali Gangi, fundador del Club Pádel Torrejón
Web
03-08-2014
I solved the Gigasecond exercise in Ruby a month ago but I forgot to post it.Since my previous post was about the solution to this exercise using Clojure, I'll post here its solution in Ruby: In this case life is much easier in Ruby :) - por Garajeando
Web
03-08-2014
This is my solution to the Gigasecond problem in Clojure. To solve it I had to learn first how to add days to a date in Java by having a look to the SimpleDateFormat and Calendar classes. Then I learned a bit about how to use Java from Clojure in the Clojure Java Interop documentation and this other useful post: Calling java from Clojure. Finally, once I had it working on the REPL, I added some private helper functions and used the -> macro in the implementation of the from function to make the...