Ask HN: What is your learning plan for 2020?
31–40 of 40 posts
Re: Ask HN: What is your learning plan for 2020?
#32Re: Ask HN: What is your learning plan for 2020?
#33Re: Ask HN: What is your learning plan for 2020?
#34Brushing up on some social skills. Been reading How to Win Friends and Influence People by Dale Carnegie, and The 7 Habits of Highly Effective People by Stephen Covey. I'd be curious if anyone on here has good recommendations for this area. On the tech side I'm going to try to develop my python skills a little more. Expand my DevOps knowledge in my current professional stack which will mean Azure DevOps. Perhaps spri…
> anyone on here has good recommendations for this area Never Eat Alone by Keith Ferrazzi
Re: Ask HN: What is your learning plan for 2020?
#35Assuming you mean Phoenix Project , I highly recommend reading Goldratt's books: The Goal , It's Not Luck , and Critical Chain . They're the inspiration for Phoenix Project and cover a good bit more material. I can't say they're great novels, they're no worse than Phoenix Project with regard to their prose, but they aren't stellar either. But if you really want to see where Theory of Constraints and Critical Chain Ma…
Oops that was what I meant! Thanks for the recommendations. Do you know if there are any books that are inspired by (or squeals of a sort) to Phoenix Project ?
I'd recommended reading through all or half of Pheonix and then moving to Unicorn. I found lots of value in both
Re: Ask HN: What is your learning plan for 2020?
#36* Stanford's CS234 class which is on youtube and has assignments at the course page [1]
* Textbook freely available from Sutton and Barto [2]
I'm hoping to use it in a project with Lean [3] to make an AI that proves theorems.
I'm intending to move to emacs (well, spacemacs) for all my non-Java text editing so I'm also investing time in that.
[1] http://web.stanford.edu/class/cs234/
Re: Ask HN: What is your learning plan for 2020?
#372. doing youtube
3. push MVP into production
Re: Ask HN: What is your learning plan for 2020?
#38Brushing up on some social skills. Been reading How to Win Friends and Influence People by Dale Carnegie, and The 7 Habits of Highly Effective People by Stephen Covey. I'd be curious if anyone on here has good recommendations for this area. On the tech side I'm going to try to develop my python skills a little more. Expand my DevOps knowledge in my current professional stack which will mean Azure DevOps. Perhaps spri…
Like say you meet someone that likes cars, if you don’t know anything about it, it’ll be hard to ask something non chitchat, but if you read a few news of motor sports, you might be able to ask something that sparks conversation.
“Cool, yeah I don’t know anything about them hehe”
Vs
“Oh I don’t know much about it but I heard that X class is really competitive, what do you think?”
Or something like that. Applies to anything really.
Re: Ask HN: What is your learning plan for 2020?
#39For me it's the following: I want to improve my APL(Dyalog/co-dfns), Rust, and Coq skills to passible levels, i.e. being able to comfortably use them and writing code in an idiomatic style. I also want to improve my skill with SystemVerilog and VHDL. I'm decent with HDLs but I need a lot of work with regard to my testbench writing, translating specs to a TB, and using the random constraints based testing(similar to p…
> getting stuck on an idea and overlooking better alternatives Care to elaborate on this at all?
An example is reinventing the wheel in a (what is in hind sight) pretty janky way of handling dependency injection because I for whatever reason was hung up on minimising dependencies. It was in C++ and within a month I had realised my mistake but the damage to the code was already done.
I should note that the overall principle of my design/decision I still think has value but it was implemented poorly due to entirely pointless self-imposed constraints.
I've gotten better about this but I still occasionally see myself getting hung up on what are ultimately pointless details and self imposed constraints.
One of the problems for me has been finding where to draw the line on my self imposed constraints since a lot of them help me write better, more maintainable code but when taken to extremes they can occasionally negatively impact my work and cause long-standing technical debt.