Ask HN: What do you code when learning a new language/framework?
31–40 of 171 posts
Re: Ask HN: What do you code when learning a new language/framework?
#32The thing that my job is requiring me to do. Trial by fire. But also after the 4th or 5th language and Nth framework, it gets much quicker to pick up new ones.
Re: Ask HN: What do you code when learning a new language/framework?
#33Re: Ask HN: What do you code when learning a new language/framework?
#34My project of choice, for the last ten years, has been this little "toy" app: https://littlegreenviper.com/portfolio/nacc/
When I finally start learning SwiftUI, for real, I'll do a version of that.
I find that it is a good idea, for me, to always be writing for ship.
Re: Ask HN: What do you code when learning a new language/framework?
#35Re: Ask HN: What do you code when learning a new language/framework?
#36Re: Ask HN: What do you code when learning a new language/framework?
#37I’m a backend dev. To learn a new language, I’ll make some CRUD app with REST endpoints with some form of authentication. I’ll pick the popular web framework, database library, json library, etc. and try to build it. I might even look at logging. This will help me expose all their popular libraries and features that’s relevant for my day job.
Re: Ask HN: What do you code when learning a new language/framework?
#38The 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
If we could just “learn the language” cold we would. By all means, if you have something “useful” you need to do, prefer that. But we don’t always have that on hand, and fun toys are a good substitute.
Re: Ask HN: What do you code when learning a new language/framework?
#39The thing that my job is requiring me to do. Trial by fire. But also after the 4th or 5th language and Nth framework, it gets much quicker to pick up new ones.
Also: If I do not immediately have enough paid work, I brainstorm a side project which could feasibly use it.
Re: Ask HN: What do you code when learning a new language/framework?
#40I'm an embedded/real-time/systems software developer. The realms I work in tend to be either the very small or the very large. When I wanted to learn Rust and Go, I coded the same application in both of them, one that I had previously coded in Java, C++, and C: I implemented the Generic Cell Rate Algorithm using a virtual scheduler. The GCRA is a traffic shaping algorithm that takes as parameters a desired peak rate,…