Live data from Hacker News

What Is the Most Valuable Thing You Can Learn in One Hour?

quanticdev.com

211–220 of 340 posts

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#211

Learn how to get out of debt!!! Step 1: List your debts from smallest to largest regardless of interest rate. Step 2: Make minimum payments on all your debts except the smallest. Step 3: Pay as much as possible on your smallest debt. Step 4: Repeat until each debt is paid in full

I disagree with this. You should pay your higher interest rate debt first.

I guess the parent is arguing for a psychological benefit to reducing the number of discrete debts as quickly as possible. But I agree with you. If someone has credit card debt and then some other debts at significantly lower interest rates, in most cases (modulo liquidity) it would make sense to put any extra money towards the high interest credit card debt first.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#212
post #150

Taking this also as a bit of an Ask HN: Easily the Tiny Habits habit formation regime created by Stanford researcher BJ Fogg. A lot of the addictive design patterns you see in apps like Snapchat, Instagram, etc. are built off his research. Quite nefarious use of psychology for advertising/“engagement”, but the plus side is you can use the same strategies to build habits you want to build. Step 1: Consider the habit y…

Re: flossing and Step 2: Make it the absolute smallest possible version of itself - you only have to floss the teeth you want to keep.

Haha. I tell myself I just have to floss one tooth. But once I've got that far I finish the job.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#213

Learn how to get out of debt!!! Step 1: List your debts from smallest to largest regardless of interest rate. Step 2: Make minimum payments on all your debts except the smallest. Step 3: Pay as much as possible on your smallest debt. Step 4: Repeat until each debt is paid in full

I disagree with this. You should pay your higher interest rate debt first.

Thats OK. Paying the smallest 1st builds psychological momentum. If people have willpower, financially paying the highest rate makes sense. People with less willpower and drive gain confidence by checking off a loan as paid, then moving to the next.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#214
post #163

Earlier quoted context omitted.

I just disable the trackpad in all my laptops, I find it much harder to use than a trackpoint.

> trackpad in all my laptops even in a macbook? it probably is the best part of macbooks in general

MacBooks were the first laptops I had where I actively liked the trackpad rather than grudgingly tolerated it. TBH, I've been pretty happy with the trackpads on my Chromebooks and Linux Thinkpads as well. It's mostly my one Windows laptop that I still feel I need to attach a mouse.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#215
post #89

Earlier quoted context omitted.

The book was released today. https://www.amazon.com/Tiny-Habits-Changes-Change-Everything... I wrote some educational apps for language learning. Are there techniques that I could use to help and motivate my users?

Sounds just like the popular book Atomic habits, is it different?

James Clear credits the research of BJ Fogg in that book.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#216

Earlier quoted context omitted.

> one hours is defiantly enough to get to know the main Vim bindings I'm going to do an experiment. I've been struggling with Vim for a long time. I need to leave in about one hour. Instead of wasting time here on HN, I'll now spend an hour learning Vim. I doubt that this will get me very far, but I'll let you know how far I got.

OK, it's been about an hour. I learned the following: - there's a visual mode for selecting text - I can now yank and paste text in normal mode - I learned to use :split and :vsplit to open new files, and ctrl-w to switch between them - I learned a few new navigation commands - I learned that there's a replace mode (R) Definitely useful, and I hope I remember everything the next time I open vim! But I still feel like…

You are just scraping the surface but that's ok. I've been using Vi/Vim for over 20 years and I'm still learning it but to me, that's what makes it so much fun! I learn a new thing (e.g.; `%` for toggling the cursor between matching things like parens) and then try to use that as much as I can for awhile until it's integrated into near muscle memory. Then I get the itch to learn more and so I dive back in.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#217
post #163

Earlier quoted context omitted.

I just disable the trackpad in all my laptops, I find it much harder to use than a trackpoint.

> trackpad in all my laptops even in a macbook? it probably is the best part of macbooks in general

The MacBook trackpads are definitely great. And the trackpoint looks like an anachronistic holdover from the early 90s next to a modern trackpad. However, it has survived because it's truly a useful productivity tool.

It's a nice middle ground between having to move your hand between the keyboard and trackpad, or embracing a keyboard-only Vim approach.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#219

IMO, the single most important thing I've ever learned is: try to be effective when you're communicating. I used to feel an obligation to correct other people if they had false beliefs. This was not an endearing trait, and even worse, I was never particularly successful at convincing the other people. One day, I read a passage from "How to make friends and influence people". It said something along the lines of: "The…

> And the little I do speak is designed to appeal, as much as possible, to my audience.

"How to Win Friends and Influence People" really helped me understand where I was running into problems when interacting with people. It was written mainly for those who are in sales and need to learn how to persuade, but I've found it overall helpful in my career (not sales). It's one of the three books I would recommend for those who either manage people or are customer-facing (the others being "Nonviolent Communication" and "Carrots and Sticks Don't Work").

That said, I don't really observe the book's dogma in my personal life. To an extent, it has basic advice that's good no matter what. On the other hand, carefully speaking to make someone like you and to persuade them can be awfully inauthentic. I've learned to be careful about being rude or pedantic, but I'd be lying if I said I didn't enjoy a good argument. I like it when I disagree with people. I like to dig down into it with them to uncover the truth. I like to share the truth that I know with others, and I really like it when someone helps me discover a truth I didn't know before, changing the way I see things.

Unfortunately that means that, while I try to avoid it (without sacrificing authenticity), I will be perceived as unlikable to some. This tends to be people who hate confrontation, those who are maybe a bit insecure about their beliefs, and those who tend toward valuing what the group thinks opposed to what the individual thinks.

Re: What Is the Most Valuable Thing You Can Learn in One Hour?

#220
post #173

using `Ctrl + r` in your shell, I just hope someone reading this doesn't know it yet :-)

If you like this, you'll also like pushd/popd. Example: $ cd ~/src/app/foo/bar/baz $ pushd /etc/qux/quux/quuz/corge/grault/garply/waldo $ popd $ pwd /home/you/src/app/foo/bar/baz It's a stack of directories. You pushd the current directory on to the stack and cd to a new directory all in a single command, then you popd back to the previous directory (i.e., the one on the top of the stack). It's useful if you're jumpi…

Or you could try autojump. It tracks where you have cd and then you can jump to locations from past history using fuzzy matching.

so if you cd to /usr/home/me/tacos once, from then on you can just > j taco

and it will cd to that directory. Saves so much time! Instead of typing out /etc/nginx you can just type "j e ng" and it will jump there.

Post reply on HN