|
I miss manual transmissions:
1) Get in the car, turn the key to On.
2) Push in the clutch, put the car in gear.
2) Have friends push your car.
3) Let clutch out to engage transmission, engine turns over and starts.
|
|
|
|
|
That only works if the car DOES HAVE a clutch... nowadays is not granted anymore
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
On manual transmission cars?
Well, I can easily see that you could replace the mechanical speed stick with, say, a pushbutton panel giving input to some microprocessor managed clutch and gearbox movements. I just haven't seen it yet.
I wouldn't want it, though! I've been driving so much on (very) slippery ice that I demand a mechanism that sets the wheels free rolling so I can regain control over the car when it has lost the grip. (If your automatically controlled shift has an option for that, then you do have a clutch, perfectly usable for the purpose discussed here. It just has a user interface different from a pedal.)
|
|
|
|
|
Automatic has "N" (Neutral), but it still is not the same.
In most (if not all) automatic shift, you have to press the brake in order to be able to change to "R" (reverse) or "D" (forwards). And in the moment you press the brake, then most of the effords of your pals pushing the car get wiped.
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Sure, cars with automatic transmission don't have a clutch. They never had!
Ed Kautz, who I responded to, started his post saying "I miss manual transmissions:". It is certainly true that far more cars have automatic transmission nowadays - that is exactly what he is bemoaning.
I did own an automatic transmission car for a few years, a rather strange one, a DAF66 with "variomatic" continuous variable transmission. Nice in summer, terrible in winter with slippery roads (even with studded tires). I decided never more to buy a car without a clutch (or another mechanism for setting the wheels free-running when skidding).
|
|
|
|
|
trønderen wrote: I wouldn't want it, though!
I know some construction workers and for years they would agree with that but more recently...
"Things to Consider When Purchasing New Dump Trucks[^]
"The automatic transmission eliminates the wear and tear of the clutch of the manual and automated transmission, and it is the easiest to drive, making it less fatiguing for the driver or operator. It also allows the driver to keep their eyes on the road and hands on the steering wheel, increasing safety. Additionally, the automatic transmission actually increases the engine torque in first gear to make the truck perform better when operating off-road and in soft soil conditions. Finally, these transmissions are more often the driver’s personal preference, making recruiting and retaining good drivers easier."
If I looked it up right it costs $10,000+ to replace the transmission on one of those. And as a work truck that is something that end up getting replaced. Perhaps several times. So extending the life time might be a good idea.
Also as a thought a standard dump truck has between 10-18 gears. Probably with that many getting it right all the time is unlikely.
|
|
|
|
|
I guess farm tractors would be different, too. And bulldozers. And excavators. And ...
|
|
|
|
|
My first car was fitted with a crank. Never used it though, pushing easier.
>64
Some days the dragon wins. Suck it up.
|
|
|
|
|
If the car is located on a flat, clean road: Maybe.
If the reason why the battery is dead is that you have just dug your car out of a meter of snow, where it has been sitting since September and the battery didn't take the cold well, then pushing the car up on the road may be quite a task!
|
|
|
|
|
Yes, if the donors engine has just been started the regulator of the alternator will run at max power to recharge the battery.
If you at that moment connect another drained battery the there will be a power surge before the regulator adjusts that might fuse the diodes on the alternator.
|
|
|
|
|
Message Closed
modified 15-May-23 19:06pm.
|
|
|
|
|
Notepad++ does support something like that since decades 
|
|
|
|
|
|
text = text.Trim().Replace( "\n\n", "\n" );
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
I think you meant this.
while (text.Contains("\n\n")) {
text = text.Replace("\n\n", "\n");
}
/ravi
|
|
|
|
|
(I think I failed to copy my own code)
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
That only works with completely empty lines. For a production system, you'd want a regex that matches 0 or more space/tab characters between the newlines.
Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason?
Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful?
--Zachris Topelius
|
|
|
|
|
text = text.Trim().Replace( "\n\n", "\n" ).Replace("\t", "").Replace(" ", "");
Anything else?
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
That doesn't do what you think it does.
Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason?
Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful?
--Zachris Topelius
|
|
|
|
|
Props for trying, but I found out he ain't open to suggestion.
Jeremy Falcon
|
|
|
|
|
You'd want something more like this: /^\s*?(?:\r\n|\r|\n)\s*?$/gm . Notice the global modifier, it will help with the newline side of things for the second line.
Jeremy Falcon
|
|
|
|
|
Mine works ... and I can read it.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Yours works only in a very specific circumstance for something you find useful. Yours will leave any extra whitespace and make no distinction between a blank line or line with whitespace. This also means yours cannot be automated.
So, you're welcome.
Jeremy Falcon
|
|
|
|
|
a trivial AWK program would do the trick . or you can utilize regular expressions Find/Replace though i am still uncertain how to handle end of line and new line but am certain it can be done as i have been successful in past though i do not recall the details . a little learning experimentation will no doubt do the trick .
|
|
|
|
|
Props for mentioning regex. Most devs never take the time to learn it, but it's an extremely useful tool.
Jeremy Falcon
|
|
|
|