Ask HN: What do you code when learning a new language/framework?
111–120 of 171 posts
Re: Ask HN: What do you code when learning a new language/framework?
#112Re: Ask HN: What do you code when learning a new language/framework?
#113https://ronreiter.medium.com/how-to-write-a-memcached-server...
Re: Ask HN: What do you code when learning a new language/framework?
#114Re: Ask HN: What do you code when learning a new language/framework?
#115The whole idea of implementing something useless to learn a tool is deeply flawed and it is sad that most of our schools and universities still follow this practice
Re: Ask HN: What do you code when learning a new language/framework?
#116I'm pretty old so I've been lots of different kinds of devs, last 7 years generally full-stack - heavy frontend focus.
Re: Ask HN: What do you code when learning a new language/framework?
#117My "hello world" project is almost always Conway's Game of Life, and I try pretty hard to follow the idioms of the language when I do it.
I like Conway's Game of Life because it's easy enough to not be too frustrating, but challenging enough to where you actually have to think about the problem a bit, at least if you're planning on following language idioms. Usually I just "render" to the command line, though occasionally I will get ambitious and figure out SDL or OpenGL bindings.
Admittedly most of my projects involve servers in some way, so after I've done the Game of Life, I usually start playing with the networking libraries like ZeroMQ and the libraries to call command-line programs, and I make a distributed video processor using ffmpeg.
Re: Ask HN: What do you code when learning a new language/framework?
#118A doubly linked list.