Live data from Hacker News

Ask HN: What was your “why didn't I start doing this sooner” moment?

news.ycombinator.com

11–20 of 785 posts

Re: Ask HN: What was your “why didn't I start doing this sooner” moment?

#12
About a year ago I started moving towards not selling my time. It has taken a while to wind down all of those relationships, etc. but it has been the best and most lucrative decision I've made in my professional life. I now have just a single commitment where I sell my time and I've got it down to 2-3 hours per week. It will soon be zero as well.

I definitely wish I would have started this sooner or actually never started selling my time at all. I worked only for myself for the first 5 years out of school then the last 5 mostly for others (as a contractor - never an employee).

Re: Ask HN: What was your “why didn't I start doing this sooner” moment?

#17
Using screen in daemon mode.

    screen -dmS myservice /blah/start.sh
Fit that line somewhere in a properly constructed init.d file and you're good to go. And if you need to execute a safe stop from that program through some interactivity:

    screen -S myservice -X stuff "stop\n"
And voila. It sends a line of text over followed by an enter key. Elegant, useful. You can reattach session to see what's happening at any time. Love me some screen.

When the process exits in that screen session, screen session is closed so that you can rely on screen -list.

Re: Ask HN: What was your “why didn't I start doing this sooner” moment?

#20
Declining to reveal my previous salary when negotiating a new job.

I ended up with a significantly better salary than they originally offered and never even said a number. Just built a good rapport with the hiring HR rep and agreed that the offered amount would be totally reasonable for [someone else with good experience]. Then I pointed out that I also bring to the role [additional, relevant, and desired experience] and gently asked what they could do to make the number better?. (Then I kept my mouth shut and let them think out loud for a few minutes)

Post reply on HN