Vue js. Everytime I tried to learn one of these frameworks before while doing a project I would quickly fall back to vanilla js as my projects weren't complex enough to see the value, which meant not much incentive to learn the APIs and the 'framework way' of doing things. Finally this year I had to do a project which was sufficiently complex to justify using a framework and where I was glad at the end of it with the…
Ask HN: What technologies did you learn in 2018?
41–50 of 620 posts
Re: Ask HN: What technologies did you learn in 2018?
#42Weirdly, perl. I found myself on a client site in a locked down environment with only the Windows version of GIT installed. Powershell disabled, no other programs allowed. I had to produce reports on the log files for this machine, but had to obfuscate information before taking it off the server. I discovered that git had bash installed quite early on, so my initial automation and reporting was based on UNIX pipeline…
Hey, there’s an old school community(they prefer monastery) called PerlMonks[0]where you can share your Perl oneliners and also pick up some mind blowing stuff. Come hang around sometime [0] https://perlmonks.org/
Re: Ask HN: What technologies did you learn in 2018?
#43Re: Ask HN: What technologies did you learn in 2018?
#44Flutter/Dart: Still learning but I'm quiet amazed by the quality of apps made in record time.
How would you rate the resources to learn and reference? Is it accessible for mobile newbies?
Re: Ask HN: What technologies did you learn in 2018?
#45Re: Ask HN: What technologies did you learn in 2018?
#46Clojure. Not something I find myself using day-to-day but I think it has some cool qualities (seamless metaprogramming). I found the APIs a little frustrating to wrap my head around
Kinesis, MongoDB, Hadoop. Evaluated all of these when designing an event ingestion/stats processing system
Concourse. Lots of Linux stuff. Lots more Bash. Some game programming libraries for giggles
Re: Ask HN: What technologies did you learn in 2018?
#47.NET Core. It's got everything I need from the java world, without the baggage from being an old technology.
It has probably replaced Java as my go-to language. Which is amazing. I thought I was a die hard Java fan.
Re: Ask HN: What technologies did you learn in 2018?
#48I got intrigued by it’s clean syntax and pure approach. Almost finished Haskell From First Prinicples. I like it a lot and I‘m looking forward to write a website in it.
Re: Ask HN: What technologies did you learn in 2018?
#49- Kubernetes.
- Hadoop/Spark.
Re: Ask HN: What technologies did you learn in 2018?
#50The focus has been on Typescript because i needed it, and I have to say with just JS I wouldn't have been able to develop large scale apps as I'm doing.
Rust has been more curiosity driven, rather than by need as with TS. I have to say it is quite a steep learning curve for me, and I stil struggle too often to replicate something I write in JS/TS with Rust, while improving performance.
The experience had me value a lot the nature of JS (single thread with event loop), because it makes it so easy to write code that feels multi threaded but retains the smaller complexity of single threaded code. I still have to properly learn how to achieve something similar in Rust.
That said, I'm loving Rust, especially on the education aspect it's giving me a lot of insight on computer science theory.