Earlier quoted context omitted.
I cook or eat left overs 6 nights a week at this point. Beyond saving a massive amount of money it's shocking how much better the steak I make myself is than one I can get out. Most cities have kitchen equipment stores (not just Bed Bath) that actually have cooking courses you can take. Now "home made pasta" starts with flour and eggs.
Saving massive amount of money? Judging just from demographic that uses hackernews (mostly tech workers), I think it's actually cheaper to eat out if you measure price of your time by how much money would you earn in that time while working compared to shopping for the ingredients, cooking and doing dishes.
Ask HN: What Skills to Acquire in 2020?
611–620 of 876 posts
Re: Ask HN: What Skills to Acquire in 2020?
#612Some suggestions: - Build something. A new workbench for your office. Fix up an old car. Build a pull-up bar in your garage. Use your hands, cut some wood and metal, and treat yourself to a new tool or two. Do this with every project and you will have a nice tool collection before you know it. - Learn to take pictures on a manual camera. You can do this with a modern automatic camera if it has a manual mode. Learn ab…
What blows my mind is how much I took my ability to cook for granted. So many people my age (millennial) can barely cook anything. I have friends who eat out every single meal of every single day. People give me weird looks when every single workday I have the same answer to “you wanna go out and get some lunch?” “Nope. I have leftovers!”
However, when I'm in a relationship, we tend to cook a lot more. The economics works out better, lower incremental cost of 2 vs 1 at home but double the cost (nearly) eating out. Also with 2 people cooking / cleaning, the time it takes for 1 person reduces quite a bit.
Re: Ask HN: What Skills to Acquire in 2020?
#613Earlier quoted context omitted.
We are becoming one trick ponies, only defined by the work that we do. There is something about cooking, doing things with your hands that is fundamental to the human experience. I cook, but I also like to order in, sometimes I just microwave stuff. It depends on your mood.
"A human being should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects."
Re: Ask HN: What Skills to Acquire in 2020?
#614Earlier quoted context omitted.
Get a slow cooker and have your groceries delivered. You can make delicious, nutritious 1 pot meals that last you 2 or 3 days a pop with minimal prep time and cleanup.
In a similar vain, I recommend getting a sous vide circulator. You'll make perfect steaks and pork chops every time, and it's extremely clean and convenient. You can cook all sorts of other things sous vide style as well. I recently got one, and I've been cooking at home a lot more often as a result. I think more people would cook their own food if they knew how to make it taste really good.
Re: Ask HN: What Skills to Acquire in 2020?
#615Earlier quoted context omitted.
I agree with your general sentiment. However, in my anecdotal sampling of people who frequently cook vs frequently eat out, tolerance for discomfort is greater in those that frequently eat out. Especially in relation to food, where those who frequently cook almost can't tolerate food cooked by others. Further on the food front, people who cook seem to be more heavily affected by fasting, or less willing to tolerate i…
I think a lot of people frequently cook 1. because they know what really tasty food is made off 2. They know is cheaper/they are trying to save.
I would assert that most people who eat out regularly have spent some time amount of cooking for themselves (once again anecdotal) and are not just ignorant of the concept of cooking. Their cost calculus weights time, socializing, and mental load greater than their refined taste preferences and the cost saving. I really doubt anyone who is over the age of 20 hasn't cooked a cycle of meals for themselves.
Re: Ask HN: What Skills to Acquire in 2020?
#616Earlier quoted context omitted.
Funny. When I shipped to Marine boot camp I was frightful my minor knee pain would get worse. Turns out I was just a wimp. Pain disappeared with exercise. I also had acid reflux and stomach problems for years that disappeared. Every single ailment that I've had that is not an injury disappeared when I got into shape (and read Sarnos book).
Which book?
Sarno's argument is essentially that emotional distress (mainly, rage) manifests itself in the body through TMS (tension myositis syndrome), and that depending on the person this expresses itself as a number of different ailments (sciatica, back and neck pain, migraines) with the same underlying cause (stress that results in decreased blood flow and oxygen deprivation which cause pain in the related area).
Re: Ask HN: What Skills to Acquire in 2020?
#617Starting conversations with strangers. Squat and deadlift. Eating healthier. Doing something kind for someone else every day. Honesty. Listening to people you disagree with. Driving safer (this is the most dangerous thing we do on a regular basis). Meditation.
Learn to accept death and read the myth of sysphus if you haven't read.
Re: Ask HN: What Skills to Acquire in 2020?
#618Earlier quoted context omitted.
deadlift's are quite dangerous for the untrained. Start with "Fix Rounded Shoulders" and "Fix Anterior Pelvic Tilt" if you have not already done so. Plenty of great advice on YouTube on those topics.
> deadlift's are quite dangerous for the untrained. Isn't that part of "acquiring" the skill; learning to do it?
Re: Ask HN: What Skills to Acquire in 2020?
#619Earlier quoted context omitted.
Do NOT use Kubernetes unless you really, really need a lot of flexibility in rapidly scaling up, and occasionally scaling down your services. If you do need that capability, Kubernetes is invaluable. If you don't, plain old Docker and Ansible is a much better combination. Kubernetes adds a lot of complexity that doesn't pay for itself if you don't really need that much flexibility.
Do you really mean plain old Docker or do you mean Docker Swarm as well? I think Docker Swarm is necessary in the absence of Kubernetes to ensure that the correct number of replicas are running on your cluster. It would help with automatically spinning up new replicas when a few nodes go down, changing the number of replicas on the fly, etc.
I'm saying for small deployments even this isn't really needed. If one container dies, have monitoring to alert you and then spin up a new one manually when you get around to it. Obviously, your system needs to have enough redundancy with each kind of container that you can still handle the load after losing one.
It's only if you are changing the number of containers a lot that something like Kubernetes is needed. And I think at that point go straight to Kubernetes, I don't know if there is a scenario where adopting Swarm but not full blown Kubernetes is the right answer, because then you likely have to migrate twice. Once to Swarm, and then to Kubernetes.