Earlier quoted context omitted.
Shout-out to TortoiseDiff over WinMerge/BC3. I routinely get my best results with it because of its superior usability (and it’s free!).
Is TortoiseDiff available standalone, or does it only come with/as part of TortoiseSVN?
Developer and Power Users Tool List for Windows
181–190 of 235 posts
Re: Developer and Power Users Tool List for Windows
#182Funny, how big part of the list are Linux-origin projects or WSL. How about really making the switch to Linux instead of trying to make Windows function like Linux?
I've been using WSL and a lot of unix tools on Windows. I have a simple reason: Windows is a much better desktop environment. I tried to switch from macOS to Linux. I've found workarounds / alternatives to almost all of my issues on Linux. One issue seems to be unfixable though; I have a 4K monitor and pretty much required to use fractional scaling. Windows and macOS does it perfectly. I had good luck with Pop!_OS bu…
On Linux, another workaround is to set the font scaling to 1.5× (or whatever) but leave the display scaling at 1×. This leaves everything sharp with big enough text to read easily.
Re: Developer and Power Users Tool List for Windows
#183Earlier quoted context omitted.
Scoop installs all the files locally by default and doesn't need to be run through an elevated shell. In junction to this, there's also usually less trouble with leftover files after uninstalling programs. The official software repo might be smaller than chocolate's, but to my eye, as it is moderated through a single open github repo, it seems much simpler.
Tangentially related, but I wish that running elevated from the shell was more ergonomic. I want to just be able to have a sudo-like command to run elevated from an otherwise non-elevated shell. Instead I have to launch a new instance of the shell host that's elevated. ConEmu makes this feel more seamless by doing some window manipulation hacks to bring elevated and non-elevated into tabs of the same window, but Wind…
From a non-elevated shell (cmd or ps), you can run `sudo ` to a roughly equivalent effect from *nix terminals. I find it meets my needs.
Re: Developer and Power Users Tool List for Windows
#184Everything[0] search is a great file search utility on Windows. This is one sure productivity booster. [0] https://www.voidtools.com/
I recommend WizFile [0] as an alternative (same developer of WizTree, which is a far better WinDirStat alternative). [0] https://antibody-software.com/wizfile/
Re: Developer and Power Users Tool List for Windows
#185Am I the only one not a fan of the Office-esque ribbon look on the new WinDbg?
Re: Developer and Power Users Tool List for Windows
#186would like to have seen a debloater / unfudger on the list but am guessing they haven't progressed much
If you use a prosumer version of Win 10, debloating is maybe 10 clicks after a reinstall and a registry script if you want to get rid of telemetry altogether.
Re: Developer and Power Users Tool List for Windows
#187Re: Developer and Power Users Tool List for Windows
#188I'll suggest Process Hacker [0] It is the ultimate Task Manger, open source, supports amazing plugins , and has tons of features that sysinternals Process Explorer lacks. Be sure to get the nightly/3.0 branch , the 2.0 branch is several years old. Also I strongly suggest building the plugins extra repo [1], has some great ones, like a terminator plugin that can kill apps various user and kernel ways. Unfortunately du…
Re: Developer and Power Users Tool List for Windows
#189Everything[0] search is a great file search utility on Windows. This is one sure productivity booster. [0] https://www.voidtools.com/
Re: Developer and Power Users Tool List for Windows
#190AutoHotKey finally fell off my list, to be replaced by... powershell. After about 8 years of utter disdain for the mistake that is powershell, I’m actually enjoying giving it a proper test drive. I can’t quite believe it myself but i chsh’d to pwsh on my mac and linux boxes too. Goodbye 30 lines of AHK just to capture and parse the output of a RunWait (in practice it was better to create a WSH com object and exec the…
The AutoHotKey programming language is quirky and weird, even when compared to Powershell's quirkiness, but there are classes of things that AutoHotKey can do that I don't know how you would do on Powershell: prepend or append selected text to what's already on the clipboard with Ctrl+[ or Ctrl+] find all windows with specific text in the title and resize them in a custom way (Window+]) insert custom strings or large…