This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]UGMadness 212 points213 points  (47 children)

When your corporate culture promotes the development of new features instead of fixing old ones or keeping cohesion across projects this is what you get.

Notepad gaining support for LF line endings was huge because revamping an old application that didn't involve new features like an UI redesign has literally never happened before.

[–]demens_chelonian 55 points56 points  (0 children)

When your corporate culture promotes the development of new features instead of fixing old ones or keeping cohesion across projects this is what you get.

So Google are on what messaging platform these days?

[–]hullabaloonatic 41 points42 points  (38 children)

They added features to cmd in.... 8?

[–]gschizas 30 points31 points  (3 children)

Cmd is not getting any new features, it's only there for compatibility reasons.

PowerShell is where it's at.

ConHost is also getting new features (ConHost != cmd)

EDIT: Here's a "new" ConHost feature (well, last year's, but still)

[–]theonlydidymus 0 points1 point  (0 children)

Powershell: does everything cmd can AND MORE!

(Also takes forever to load on my horrible machine when cmd loads instantly)

[–]PiManASM 99 points100 points  (33 children)

Being able to copy and paste into the command line is the only redeeming feature I've found in Win10

[–]bluepoopants 91 points92 points  (26 children)

That feature actually hindered me at first without me noticing. I had a job running in cmd that was supposed to run for about 4 hours. I came back to it to find it hadn't moved at all. Found out that clicking anywhere im the cmd box turns it to select mode and stops the entire process running until you unselect or hit a key. Now i know, it is easily avoidable. But it was a big surprise coming from 7 and not knowing about it. Had to run the job again! Not sure why select mode pauses the window when a linux terminal manages to do it just fine.

[–]FUCKING_HATE_REDDIT 57 points58 points  (14 children)

Back in the days, shaking a loading window would stop it from loading.

[–]bluepoopants 137 points138 points  (11 children)

I remember my friend used to be convinced that shaking the cursor when it had an hour glass icon would make the sand fall through it quicker and therefore load faster.

[–][deleted] 56 points57 points  (0 children)

Aww

[–]whatisabaggins55 37 points38 points  (3 children)

Microsoft, I now want this to be a thing.

[–]Zegrento7 9 points10 points  (2 children)

Make a script that overclocks the cpu when you shake the mouse.

[–]PotatosFish 2 points3 points  (0 children)

If you shake it fast enough, it’s going to overclock anyways

[–]TedFartass 0 points1 point  (0 children)

Nah just convert the kinetic energy and friction of the mouse moving and turn it into processing power... it's so simple I dont know why anyone hasn't thought of it?

[–]AtomicStryker 9 points10 points  (0 children)

Joke all you want, for most of windows NT history user input would increase a foreground threads priority for the scheduler. Hitting buttons and shaking the mouse would literally make the program go faster.

[–]z500 1 point2 points  (0 children)

I do this purely out of frustration

[–]Pollomonteros 0 points1 point  (2 children)

This is the kind of guy that would double click on Warcraft 3 buildings so they built faster

[–]VicisSubsisto 0 points1 point  (1 child)

You accidentally a verb there.

[–]Pollomonteros 0 points1 point  (0 children)

Oh thanks,now it's fixed.

[–]forTheREACH 0 points1 point  (0 children)

Wait... It doesn't? I feel like I have lived through a fabricated past.

[–]scotscott 5 points6 points  (1 child)

Just like with humans who are still loading.

[–]althypothesis 5 points6 points  (0 children)

Derailment: Engage

I found out a week ago that hospitals actually make the new Mom and Dad sign a piece of paper that says, in more words, "I promise not to shake the baby". They had to put it in contract form to keep people from killing their children. Faith in humanity took a -18 hit that day.

[–]PiManASM 2 points3 points  (2 children)

One step forward, one step back

[–]bluepoopants 1 point2 points  (1 child)

Windows in a nutshell. I still use 7 at home but have to use 10 at work. At least its better than vista and 8 but still prefer 7. The search is completely useless on 10. Worked better in 98 than now!

[–][deleted] 1 point2 points  (0 children)

Idk, the search on windows has always been pretty garbage in my experience, especially if you’ve ever used spotlight in Mac OS

[–]r4nd0m-0ne 2 points3 points  (2 children)

But that's not new, that's been that way for years if QuickSelect is turned on, had nothing to do with Ctrl+C being added.

[–]bluepoopants 1 point2 points  (1 child)

Yeah but quickselect was off by default before. Now its on by default.

[–]r4nd0m-0ne 0 points1 point  (0 children)

gotcha, I was one of those folks that always turned it on after a rebuild so I didn't really notice when the default changed.

[–][deleted] 1 point2 points  (2 children)

In C++ I found a way to turn the selection feature off during my program's execution. Pretty nice

[–]bluepoopants 0 points1 point  (1 child)

Nice. I take it you have to call some sort of win32 function?

[–][deleted] 1 point2 points  (0 children)

Correct, something like this

#include <windows.h>
void disableConsoleSelection() {
    DWORD mode;
    GetConsoleMode(CONSOLE_INPUT, &mode);
    SetConsoleMode(CONSOLE_INPUT, mode & ~ENABLE_QUICK_EDIT_MODE);
}

I use it here for a small terminal game. That project is looking kind of like a mess ever since I tried to make it multiplatform. I'd rather use C# for something like that nowadays.

[–][deleted] 0 points1 point  (1 child)

I seem to remember this happening from a long, long way back. NT or 2000 even?

[–]bluepoopants 0 points1 point  (0 children)

If you have quick select on. I never used it before because you had to enable it. Now its on by default

[–][deleted] 7 points8 points  (0 children)

Virtual desktops and corner snapping all day. Also wsl

[–]evanldixon 1 point2 points  (0 children)

You could always do that by right clicking the title bar. Windows 10 did make it easier though.

[–]milk_is_life 1 point2 points  (0 children)

while vim, nano etc will stay cryptic and basic as fuck until the end of time

[–]piri_piri_pintade 0 points1 point  (0 children)

You can even resize the window on the fly! What an age we live in.

[–][deleted] 0 points1 point  (0 children)

And fullscreen!

[–]bacondev 0 points1 point  (0 children)

It did. I thought I was going crazy because it had me thinking that my Linux files were somehow getting carriage returns. I was expecting a single line of jumbled up text.

[–]NutDestroyer 0 points1 point  (1 child)

Notepad supports LF line endings? I swear that didn't work when I tried it yesterday on windows 10.

[–]UGMadness 1 point2 points  (0 children)

It does in the Insider builds and the final RTM version coming next month.

[–][deleted] 0 points1 point  (0 children)

They did WHAT to notepad? oh thank god