Ask HN: What are you learning in 2019?
91–100 of 222 posts
Re: Ask HN: What are you learning in 2019?
#92Separately I dabble with Ng's coursera ML course but aside from writing jupyter notebooks with the octave kernel, which I enjoy - latex math equations are so pretty - I find the subject material a little boring. I like graphical structures though so maybe interest will pick up when they get into neural nets.
Re: Ask HN: What are you learning in 2019?
#93Re: Ask HN: What are you learning in 2019?
#94AWS and how to deploy a complete web app with the service bundles (EC2, Elastic storage S3, etc.) It is an amazingly fulfilling experience as a product manager.
What resources did you find more useful? Aws’s own documentation?
Re: Ask HN: What are you learning in 2019?
#95As a hobby project, I stopped using Sublime and other text editors. I have been using Vim all of this year and have become more competent with various shortcuts and general navigation.
Re: Ask HN: What are you learning in 2019?
#96Quantum machine learning. I completed my phd in quantum information last year, have an assistant prof job, but looking to jump into the quantum computing industry.
Re: Ask HN: What are you learning in 2019?
#97How to better my mental health while simultaneously figure out how to share some of the knowledge I've obtained over the past few years with others (conferences? blogs? teaching? I don't know. Help!)
Re: Ask HN: What are you learning in 2019?
#98I've spent this year mostly on Go. I think I'm in a maybe good enough spot to be employable with it? Which was probably my goal all along. Through Go, though, I've been feeling like picking up a language with a more advanced type system. Usually when I have that feeling I get trapped in analysis paralysis and just never pick anything up. I've been considering just hard-committing to Java/the JVM and taking it as it i…
Take a look at Kotlin. We are building our enterprise products with it. You get all the benefits of Java (stability, maturity) without the bad parts (boilerplate, boredom). We just hired a Kotlin person (really a Java guy who refreshed his Kotlin over the weekend) for this, and we may be hiring more. I suspect more companies will start looking at Kotlin in the next 2-3 years, especially for green field projects.
I have heard lots about Kotlin though, and it sounds like most devs that've touched it are huge fans.
Re: Ask HN: What are you learning in 2019?
#99Looker. I get asked for reports frequently and with this tool I intend to cut that number down to zero, company wide.
Kubernetes on AWS. Bought a book, learning about it in my spare time.
Graphql with React Apollo for data access. It's pretty sick. First Redux came out, but it's verbosity was too much, I never liked it. Then Mobx came out and it works fine for me, really fun to use. Now Apollo exists and you don't even need a store. Plus it caches stuff. Plus a bunch of other sexy stuff. Very interesting tech.
I read bad feedback/stories for companies and identify trends on what went wrong, and what engineers hated so I can prevent that at Papa as head of engineering.
Drawing. It's the complete opposite of programming and very soothing after a rough day. There is no right or wrong, it just `is`. I look up pictures of manga I like, from Baki or JJBA and draw stuff, then upload it on Tiktok to share in the fandom.
Re: Ask HN: What are you learning in 2019?
#100I do a lot of GIS so there's many very cpu intense tasks for analysis.
Instead of trying to break up a problem into lots of small promises as not to block user input, I can just call away to a separate thread to do a ton of blocking work and return the output.
The beauty is wrapping the interface in a promise so I can perceive web workers as being just like Ajax calls: an async data source/sink.
The more broad answer to what I'm learning in 2019: how to use every new project as a playground to learn new technology while not putting the project deliverables or time-line at risk. This is basically about learning how to de-risk and prepare/conceptualize fallback plans. And how not to bite too much off.