What are your favorite micro-projects for picking up a new language?
Ask HN: Favorite projects for learning a new language?
1–10 of 12 posts
Re: Ask HN: Favorite projects for learning a new language?
#2Re: Ask HN: Favorite projects for learning a new language?
#3EDIT: This is assuming you are intending to learn a web framework along with the language.
Re: Ask HN: Favorite projects for learning a new language?
#4I try to replicate a blog with posts, tags for posts, and users. It's a good way to get familiar with the ORM and creating associations assuming you will use relational data. I recently started learning Play Framework (Java/Scala web framework) and it worked pretty well. EDIT: This is assuming you are intending to learn a web framework along with the language.
Re: Ask HN: Favorite projects for learning a new language?
#5Re: Ask HN: Favorite projects for learning a new language?
#6Re: Ask HN: Favorite projects for learning a new language?
#7I like to try out a languages interesting features by wrapping an existing library in an idiomatic style suitable for that language. For example my most recent work is attempting a wrapper around SNMP4j in Clojure, foregoing the OO style for a more data-centric approach.
Re: Ask HN: Favorite projects for learning a new language?
#8Re: Ask HN: Favorite projects for learning a new language?
#9Unless there are significant differences in the way a web framework is structured (i.e. Pedestal for Clojure), I find that making a web app doesn't really contribute much to learning the intricacies of the language. I like to try out a languages interesting features by wrapping an existing library in an idiomatic style suitable for that language. For example my most recent work is attempting a wrapper around SNMP4j i…
Re: Ask HN: Favorite projects for learning a new language?
#10Unless there are significant differences in the way a web framework is structured (i.e. Pedestal for Clojure), I find that making a web app doesn't really contribute much to learning the intricacies of the language. I like to try out a languages interesting features by wrapping an existing library in an idiomatic style suitable for that language. For example my most recent work is attempting a wrapper around SNMP4j i…
I like this idea! Having spent so long in Ruby land, I'm not as familiar with the Scala|Clojure|Haskell library scene, but I'm sure that's easily remedied.