Live data from Hacker News

A few things to know before stealing my 914 (2022)

hagerty.com

171–180 of 190 posts

Re: A few things to know before stealing my 914 (2022)

#171
post #19

Earlier quoted context omitted.

You should still be able to push start a newer manual transmission car. Put in the clutch, put the key to run, put it in 1st (or so), get it up to speed, let the clutch out, and now the engine is turning, which should turn the alternator/generator which should now be able to run the engine. If your electrical system is really bad, maybe the alternator can't get the voltage high enough to run everything; if your car i…

The inability to do a rolling start in an automatic really bugs me after being used to manuals my whole life. I switched to an auto a few years back for reasons (UK, still not super popular here), and once or twice I've had the car cut out on me at speed, in traffic; had it been a manual, I could have just restarted it while moving, but it forces you to be stopped, foot on the brake and in park before you can push th…

If it cuts out at speed you have a problem that needs to be fixed that has nothing to do with the type of transmission.

Re: A few things to know before stealing my 914 (2022)

#172
post #9

“ Since there is not a clutch safety switch on the starting circuit, make sure to press the clutch down before you try to crank the engine.” Growing up, a friends dad would use this as a ‘feature’ on his Datsun to move the car out of traffic when it wouldn’t restart. Put it in first, release the clutch, crank the starter, and move the car out of the way.

Most (manual) cars of that era could be roll started this way! Did it many times when a starter or battery died; just need a bit of a hill or a good push.

I used to roll start my last stickshift car just for fun. 2001 Honda Civic. The inertia from just rolling down my 30ft gently sloping driveway was enough, have it in 3rd or so, pop the clutch briefly and it would start right up. A diehard stick shift colleague with a 2014-ish VW tells me this won't work on modern stickshift cars any more, don't know why.

Re: A few things to know before stealing my 914 (2022)

#173
post #19

Earlier quoted context omitted.

You should still be able to push start a newer manual transmission car. Put in the clutch, put the key to run, put it in 1st (or so), get it up to speed, let the clutch out, and now the engine is turning, which should turn the alternator/generator which should now be able to run the engine. If your electrical system is really bad, maybe the alternator can't get the voltage high enough to run everything; if your car i…

The inability to do a rolling start in an automatic really bugs me after being used to manuals my whole life. I switched to an auto a few years back for reasons (UK, still not super popular here), and once or twice I've had the car cut out on me at speed, in traffic; had it been a manual, I could have just restarted it while moving, but it forces you to be stopped, foot on the brake and in park before you can push th…

> but it forces you to be stopped, foot on the brake and in park before you can push the button to start it.

Worth trying to start it in neutral? It might be checking neutral or park and foot on the brake, which you could probably do while still moving.

Re: A few things to know before stealing my 914 (2022)

#174
post #173

Earlier quoted context omitted.

The inability to do a rolling start in an automatic really bugs me after being used to manuals my whole life. I switched to an auto a few years back for reasons (UK, still not super popular here), and once or twice I've had the car cut out on me at speed, in traffic; had it been a manual, I could have just restarted it while moving, but it forces you to be stopped, foot on the brake and in park before you can push th…

> but it forces you to be stopped, foot on the brake and in park before you can push the button to start it. Worth trying to start it in neutral? It might be checking neutral or park and foot on the brake, which you could probably do while still moving.

Not possible, it's a push-button start/stop, it must be in park with your foot on the break, makes sense I suppose for safety.

EDIT: The display specifically says "shift to park" if I try.

Re: A few things to know before stealing my 914 (2022)

#175

Earlier quoted context omitted.

The inability to do a rolling start in an automatic really bugs me after being used to manuals my whole life. I switched to an auto a few years back for reasons (UK, still not super popular here), and once or twice I've had the car cut out on me at speed, in traffic; had it been a manual, I could have just restarted it while moving, but it forces you to be stopped, foot on the brake and in park before you can push th…

If it cuts out at speed you have a problem that needs to be fixed that has nothing to do with the type of transmission.

It's hard not to reply to this with a sarcastic joke, but yes, you're right, it's definitely a problem that needs fixed, and no, it has nothing to do with the transmission.

Re: A few things to know before stealing my 914 (2022)

#176
post #99

Earlier quoted context omitted.

These kinds of histrionics are really uncalled for. Virtual environments are easy to work with. https://chriswarrick.com/blog/2018/09/04/python-virtual-envi... is a solid tutorial.

Virtual environments are an incomplete solution at best. In particular, they really don't help much with the use case of wanting to install a tool : if you're installing a tool and not just setting up a development environment for working on a specific project with its dependencies, then you probably want to make that tool usable without activating its venv. The virtual environment capabilities shipped with Python it…

  $ virtualenv ~/venv/yt-dlp
  $ . ~/venv/yt-dlp/bin/activate
  $ pip install yt-dlp
  $ ln -s ~/venv/yt-dlp/bin/yt-dlp ~/bin/yt-dlp
  $ deactivate
  $ yt-dlp ...

Re: A few things to know before stealing my 914 (2022)

#177

Earlier quoted context omitted.

There are better tools for managing the madness, certainly. uv makes python management almost pleasant (sandboxing the whole environment by default is a wise choice).

That sounds like a good way to greatly increase the disk and ram required for each tool or running copy of a tool or application. Almost as bad as turning everything into an Electron app.

You aren't wrong, but it's pretty much the only sane way to deal with an ecosystem that doesn't allow multiple versions of the same package to coexist - otherwise we're all stuck on the lowest common denominator of each configuration of packages

Re: A few things to know before stealing my 914 (2022)

#178

Earlier quoted context omitted.

Virtual environments are an incomplete solution at best. In particular, they really don't help much with the use case of wanting to install a tool : if you're installing a tool and not just setting up a development environment for working on a specific project with its dependencies, then you probably want to make that tool usable without activating its venv. The virtual environment capabilities shipped with Python it…

$ virtualenv ~/venv/yt-dlp $ . ~/venv/yt-dlp/bin/activate $ pip install yt-dlp $ ln -s ~/venv/yt-dlp/bin/yt-dlp ~/bin/yt-dlp $ deactivate $ yt-dlp ...

Isn't that really obviously about five steps too many to be considered a reasonable way of installing a package?

(And you didn't handle getting an appropriate version of python installed.)

Re: A few things to know before stealing my 914 (2022)

#179

Earlier quoted context omitted.

There are better tools for managing the madness, certainly. uv makes python management almost pleasant (sandboxing the whole environment by default is a wise choice).

That sounds like a good way to greatly increase the disk and ram required for each tool or running copy of a tool or application. Almost as bad as turning everything into an Electron app.

It may sound that way to you, but it doesn't have that problem for me.

Re: A few things to know before stealing my 914 (2022)

#180

Earlier quoted context omitted.

Thanks for asking. Kate developed severe asthma, to the point where she was taking prednisone every day and started carrying a portable breathing machine. Eventually she succumbed to her illness. Her many friends, including myself, miss her dearly, but her memory lives on in all of us. (Usually I would not share this kind of personal medical information in public, but Kate passed on nearly 50 years ago, and I didn't…

Sorry to hear it, but at the same time those are great stories to remember her by. No matter one’s beliefs, we all live on in the memories of those who knew us.

Thank you my friend.

Did you ever see the Pixar movie Coco? I have a feeling you will really enjoy it.

Post reply on HN