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

Web
06-07-2014
I've just watched this great talk by David Nolen: Everything I Have Learned I Have Learned From Someone Else - por Garajeando
Web
06-07-2014
I've just watched this interesting talk by David Nolen: Immutability: Putting The Dream Machine To Work - por Garajeando
Web
05-07-2014
This is my solution to the Extract-Transform-Load problem in Clojure. I wrote several working versions in the REPL but this is the one that I finally submitted to Exercism as my first iteration: I used destructuring to extract the letters and score from the key-value pair which reduce was passing to the anonymous helper.It works but it's not very readable. In the second iteration I introduced a helper function, assoc-pairs, to improve its readability but the naming was still bad: So I renamed so...
Web
05-07-2014
This is my solution to the Leap Year problem in Clojure: I created a local helper, divisible-by?, using comp and partial to make the code more readable.You can nitpick my solution here or see all the exercises I've done so far in this repository. - por Garajeando
Este artículo es el primero de una serie dedicada al protocolo SSH o Secure Shell, un protocolo de acceso remoto a servidores altamente extendido en sistemas UN*X como GNU/Linux o FreeBSD. En los artículos trataremos de explicar el uso básico de este protocolo e iremos profundizando más en las capacidades avanzadas disponibles.
¡NoSQL matters te da la bienvenida a la tercera edición de nuestra conferencia en Barcelona! El 21 y 22 de noviembre la hermosa Casa de la Convalescència abrirá sus puertas a nuestros participantes hambrientos de aventura. ¡Acércate y disfruta de este gran evento con nosotros! Como conferencia consistente en un día de formación interactiva y otro día de charlas informativas, NoSQL matters Barcelona es el evento ideal para desarrolladores, arquitectos y geeks. Tendrás la oportunidad de contactar con los expertos líderes en NoSQL de todo el mundo, disfrutar de excitantes conversaciones o simplemente pasártelo en grande hackeando con otros participantes.
Web
04-07-2014
This is my solution to the Robot name problem in Clojure: This is the first exercise in which I've used some mutable state features of Clojure, atom in this case.It also helped me to discover the repeatedly function.You can nitpick my solution here or see all the exercises I've done so far in this repository. -------------------------------- Update:After learning some new stuff, I've been able to simplify the code a bit more: I used the :private true metadata key value pair to make capital-lette...
Miguel Ángel Díez - @ferrenet es el CEO de RedKaraoke un servicio de karaoke online que está presente en casi todo el mundo. Miguel Ángel nos hablará en la #techHour sobre su experiencia internacionalizando RedKaraoke en países como Japón, USA, Brasil, Indonesia o Alemania entre otros. Nos dará consejos para conseguir internacionalizar nuestro proyecto sin morir en el intento y que nos sea provechoso.
Web
04-07-2014
http , tdd
I've just done the Reverse Polish Notation Calculator kata in Clojure using Midje.These are the tests: I really love how readable tests are when using Midje. And this is the final version of the code: I used a mix of TDD and REPL-driven development, as I did before for the Berlin Clock kata. Again I commited the code after every passing test and every refactor and also commited the .lein-repl-history file to document all the micro-tests I did on the REPL.Take a look at the code and commits in t...