5 ms·
Absolutely. Paint is by a long shot, Microsoft's best product. It's easy to build since it's codebase is pretty small and they haven't changed it much since it
by profpandit 9y ago
Absolutely.
Paint is by a long shot, Microsoft's best product.
It's easy to build since it's codebase is pretty small
and they haven't changed it much since it was introduced.
So it's rock solid.
IDK why they're fixing what ain't broke.
- crispytx 9y agoAgreed! Paint was the only Microsoft product that I actually loved.
- Karunamon 9y agoThey did the same thing with the calculator, turning what is probably the simplest app on the entire computer into a Metro-ified flat-design-meme store-dependent mess for absolutely no benefit.
- smcl 9y agoA Metro-ified flat-design-meme store-dependent mess which takes a noticeable delay to load. I've taken to firing up an instance of IDLE instead - which is actually a little nicer in the end
- deleted 9y ago[deleted]
- pletnes 9y agoYou need to give ipython a go.
- smcl 9y agoI have one deployed on Digital Ocean (http://blog.mclemon.io/fedora-jupyter-on-a-linux-remote-using-systemd http://blog.mclemon.io/fedora-jupyter-on-a-linux-remote-usin...) but it's just not as convenient or quick as a local python repl for quick calcs and sums.
- pletnes 9y agoCool post! But I run ipython / jupyter console locally for such use cases. It's nicer than plain python IMHO. Tab completion, coloring etc.
- jzebedee 9y agoI went to open my calculator this morning and it told me it was in the middle of an update and to try again later. 5 minutes, 10 minutes, and 15 minutes later it still wasn't done. I ended up using Google to calculate some basic math! How does Microsoft screw up such a simple application?
- Blaaguuu 9y agoI've opened up the calculator a couple of times and gotten a prompt to rate/review it on the Windows Store... What is the purpose of doing that with built-in apps? It's just annoying.
- qrbLPHiKpiux 9y agoAny app that prompts m for a review is an automatic one star.
- nikanj 9y agoBut now the UI is made with XML. XML is cool. The execs read that in a magazine.
- cakedoggie 9y agoWelcome to windows. They have finally started bringing out great laptops, but I can just never go back to Windows.
- lightedman 9y agoYou don't have a Kensington Keyhub? Calculator built-in, awesome for laptops and desktops.
- neilparikh 9y agoDoesn't Windows include both the old calculator and the new calculator? I'm on Windows 8 and I have both.
- Karunamon 9y ago10 yanks away calc.exe and replaces it with the metro version. You have to grab an old copy if you want the original back.
- simon83 9y agoI wonder if you could get into legal trouble if you start to re-distribute calc.exe from older Windows version, as a free download. Probably yes, but it would look so ridiculous if MS lawyers would go after a random person doing that.
- wila 9y agoThe thing is that your Windows 8/7/Vista/XP versions of calc don't even run on Windows 10. The only thing you can run is the Calculator Plus that was released for XP. Of course Microsoft did remove the download for that one.
- FRex 9y agocmd.exe and calc.exe from ReactOS can be used since ReactOS aims to be fully binary compatible. They look a bit bad though. Or this is a good opportunity to use tools not built into the OS or write own replacements. It's a bit silly to have calc program dictated by the OS version.
- vxNsr 9y ago>>I'm on Windows 8 Genuinely curious, why?
- enimodas 9y agoNot him, but I would have stayed on 8.1 too if it weren't for processor support. The only annoying thing about it is the start menu, which i only use for maybe 10sec/month. It's faster than win7 and has a bunch of features I would miss, and compared to 10 it's not as bloated with non-win32 apps with less functionality for everything, tracking that you can turn off, and all the other win10 stuff you've heard already.
- Spearchucker 9y agoThe new calculator is more useful to me than what came before. It does conversions too, which I use heavily. I like it.
- vxNsr 9y agoThe calc from Windows 7 also did conversions while being really quick to load and have tons of keyboard shortcuts.
- JohnJamesRambo 9y agoI read that as conversations and thought Microsoft invented some bizarre calculator based messaging app hybrid.
- buzzybee 9y agoSome time ago someone recommended SpeedCrunch to me for calculator stuff and I use it all the time now. It's a little bit less intuitive since it takes a syntax instead of presenting buttons, but it does a ton more.
- Itsdijital 9y agoThe programming mode is invaluable to me. I do a lot of embedded stuff and it is an absolute godsend. If any knows any other good simple programs for bitwise operations and binary conversion then I'm all ears.
- mattss 9y agoPowershell.exe
- ben-schaaf 9y agoI sometimes use a python REPL instead of a calculator. Python has `bin()` for binary representations. Plus imaginary numbers are built in. For more complicated stuff I reach for Wolfram alpha.
- atomicfiredoll 9y agoIt really I've was already using Launchy instead of Cortana. So, when I saw what a mess Calculator had become in 10, Launcy ended up replacing that too for simple calculations. It's sad, because by themselves programs like Paint and Calculator are simple. But, when done well, they come together to improve the quality of life while using Windows.
- ProAm 9y ago> IDK why they're fixing what ain't broke No telemetry.
- snarfy 9y agoIt will come back as a windows store app.
- tedunangst 9y agoLike the sad joke that is "minesweeper".
- pavel_lishin 9y agoWhat's minesweeper like now? I'm still on Windows 8.
- runlevel1 9y agoApparently it's now free with ads: http://www.pcgamer.com/windows-10-solitaire-requires-a-subscription-to-remove-ads/ http://www.pcgamer.com/windows-10-solitaire-requires-a-subsc...
- pjc50 9y agoI still sometimes miss the old Paint with dither-pattern floodfills. The current Paint still supports lower bit depth bitmaps but not dithering.
- dfox 9y agoI have feeling that dithered fills have nothing to do with Paint itself but were feature of GDI, even one pixel wide lines and such things were dithered when drawn with dithered color. It probably got removed in Windows 2000, when GDI gained alpha channel support, as the dithering mode was specified in upper byte of 32b COLORREF, which probably got at least internally repurposed as alpha (also, alphablending dithered surfaces is not exactly sane thing to do).
- cbr 9y agoI remember dithered fills being in Paintbrush itself, using Windows 3.1. My memory is you had 16 colors to work with, and to get more than that it supported dithered colors. You could have, say, a red/yellow checkerboard. The UI let you treat these like other colors: you could save them, and draw with them. When you did that, each pixel in your BMP would be set to of the 16 allowed, but the overall impression would be of more than 16 colors. To see this, go to https://classicreload.com/windows-31.html https://classicreload.com/windows-31.html and then open Accessories > Paintbrush.
- dfox 9y agoI've actually used Windows 3.1. In Paintbrush you had palette of 20-ish colors, which were or were not dithered depending on whether they were displayable by your graphics adapter. (The default palette consisted of 16 default EGA/VGA colors and few dithered ones, with particularly notable burgundy-ish color that almost didn't look dithered). In the control panel you could set arbitrary 24b RGB colors for user interface elements which were dithered in exactly the same way. Interesting thing related to this is that Windows 3.1 had significantly different default color scheme depending on what graphics driver you selected during installation. The really default color scheme was similar to OS/2 2.x (pastel colors, active window title with black text on light blue background, different background color for MDI master and slave windows) and significantly different one was used for graphics drivers with 16 or less colors (ie. the one that everybody remembers, with white text on dark blue or black background for active window title bar). Obviously the reason for this was to eliminate dithering in default color scheme. On the other hand, this was not applied consistently. Windows 3.1 post installation tutorial essentially introduced the pastel yellow (also used in the default color scheme for MDI window background) as the "help popup color", even thought this color was dithered on VGA. Another inconsistency was that Windows 3.1 shipped with CTRL3D.DLL and some (2 or so) applications that used it. (Until Windows 10's consistent Metro-ish style I regarded CTRL3D as the most consistent UI that Windows ever had, because most applications consistently used this same UI style. The Windows 95 HIG mandated style is also nice, but it was never used consistently used by anyone, not even Microsoft itself).
- radiorental 9y agoThey clearly nailed it, this video from the dev team shows how the understood their users and stuck to the requirements instead of the typical MS feature creep product https://www.youtube.com/watch?v=Hxx2KcPWWZg https://www.youtube.com/watch?v=Hxx2KcPWWZg
- rnet85 9y agoYou know that's a parody right?
- jimbokun 9y ago"Opens in a matter of...minutes!"
- radiorental 9y agoThere's so many little details like the pretentious double barreled names and the fact that every scene has a either a mac mouse or keyboard in it (o;
- mjevans 9y agoWorse; Paint is part of a lot of troubleshooting 'screenshot' processes; precisely because it IS easy to use and is /already included/. Quickly taking a look at the most used products where I work... MS Office Installer https://appdb.winehq.org/objectManager.php?sClass=version&iId=34941 https://appdb.winehq.org/objectManager.php?sClass=version&iI... MS Word (I stopped here) https://appdb.winehq.org/objectManager.php?sClass=version&iId=34964#knownbugs https://appdb.winehq.org/objectManager.php?sClass=version&iI... Darn, it would be nice if MS was forced to break up in to different product divisions so that their Office product would be released on various platforms.
- ntauthority 9y agoExcept... it is released on various platforms. That 'Linux desktop' isn't part of it doesn't mean that Office isn't on pretty much every other relevant platform (Windows desktop, macOS, Android, iOS, web, ...).