Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "#windows #microsoft"
-
Microsoft support: "Your antivirus software is causing problems with the memory management."
Me: "I use Windows defender"
Microsoft support: "Oh..."
Me: 🙃13 -
What if "WannaCry" was just a elaborate way for Microsoft to get people to upgrade to Windows 10?
😁😁😁15 -
Hats off for Microsoft.
After recent updates we are now able to install Windows 10 without ever being promoted to log into a Microsoft account. I was even able to uninstall OneDrive like any other application.
Small steps into the good direction.9 -
Found a guy working at Microsoft with this bio.
"Software Engineer at Microsoft. Loves Linux, the cloud, Vim, and DevOps. But mostly Linux"
Like come on Microsoft, even they choose Linux over Windows21 -
Your mental stability closely matches that of Microsoft Windows. Especially that side when it gets this blue coloured screen with a sad emoticon.
As for your credibility and trustworthiness, I'd say you're at Facebook/Google/Microsoft level.15 -
!rant
Microsoft is finally doing something right with Windows.
Coming soon: tabs in Explorer, tabs in Notepad, tabs in Command Prompt, TABS EVERYWHERE24 -
Lol, Microsoft finally gave up on Edge, and will go with a spin based on Chromium.
https://m.windowscentral.com/micros...
🤣 I was right when I said that Chrome is going to be the next internet explorer55 -
Since Microsoft is racist and is trying to remove the "master" term on GitHub to "fix the World" I hope they won't forget about the "master" volume in the audio settings of Windows.12
-
Things I hate about Microsoft (Part 1):
Windows: Does things I don't want it to do. Is not user friendly. It is just user familiar.
Outlook / Hotmail: Drops emails silently, which are RFC conform and pass every other mail service. No error messages or notifications.
Edge: Does not / Partially support(s) some modern standards.
IE: No explanation needed.
Design language: border-radius: 0 !important
Business model: Let's make our own hardware, so we can compete with our hardware partners (HP, Dell, ...). Isn't that a perfect idea.
Tracking: Let's track everything of our users. Even how many photos they open in our OS*. What they get from that? Well they could get personalised ads on Bing. Isn't that a perfect model.
*: https://blogs.windows.com/windowsex...39 -
Saw my uncle using Microsoft Edge today.
Me: Uncle, you should use Chrome or Firefox. They are better.
Uncle: Windows 10 showed a pop up few days back that chrome drains battery faster. So I uninstalled chrome.
Me: But Windows is fooling you to use its product. Edge is horrible and useless.
Uncle: So you think you are smarter than Windows people? Are they idiots who designed this whole software?
Microsoft u got 1 more Edge user. Enjoy, you lying and misleading company.28 -
this.title = "gg Microsoft"
this.metadata = {
rant: true,
long: true,
super_long: true,
has_summary: true
}
// Also:
let microsoft = "dead" // please?
tl;dr: Windows' MAX_PATH is the devil, and it basically does not allow you to copy files with paths that exceed this length. No matter what. Even with official fixes and workarounds.
Long story:
So, I haven't had actual gainful employ in quite awhile. I've been earning just enough to get behind on bills and go without all but basic groceries. Because of this, our electronics have been ... in need of upgrading for quite awhile. In particular, we've needed new drives. (We've been down a server for two years now because its drive died!)
Anyway, I originally bought my external drive just for backup, but due to the above, I eventually began using it for everyday things. including Steam. over USB. Terrible, right? So, I decided to mount it as an internal drive to lower the read/write times. Finding SATA cables was difficult, the motherboard's SATA plugs are in a terrible spot, and my tiny case (and 2yo) made everything soo much worse. It was a miserable experience, but I finally got it installed.
However! It turns out the Seagate external drives use some custom drive header, or custom driver to access the drive, so Windows couldn't read the bare drive. ffs. So, I took it out again (joy) and put it back in the enclosure, and began copying the files off.
The drive I'm copying it to is smaller, so I enabled compression to allow storing a bit more of the data, and excluded a couple of directories so I could copy those elsewhere. I (barely) managed to fit everything with some pretty tight shuffling.
but. that external drive is connected via USB, remember? and for some reason, even over USB3, I was only getting ~20mb/s transfer rate, so the process took 20some hours! In the interim, I worked on some projects, watched netflix, etc., then locked my computer, and went to bed. (I also made sure to turn my monitors and keyboard light off so it wouldn't be enticing to my 2yo.) Cue dramatic music ~
Come morning, I go to check on the progress... and find that the computer is off! What the hell! I turn it on and check the logs... and found that it lost power around 9:16am. aslkjdfhaslkjashdasfjhasd. My 2yo had apparently been playing with the power strip and its enticing glowing red on/off switch. So. It didn't finish copying.
aslkjdfhaslkjashdasfjhasd x2
Anyway, finding the missing files was easy, but what about any that didn't finish? Filesizes don't match, so writing a script to check doesn't work. and using a visual utility like windirstat won't work either because of the excluded folders. Friggin' hell.
Also -- and rather the point of this rant:
It turns out that some of the files (70 in total, as I eventually found out) have paths exceeding Windows' MAX_PATH length (260 chars). So I couldn't copy those.
After some research, I learned that there's a Microsoft hotfix that patches this specific issue! for my specific version! woo! It's like. totally perfect. So, I installed that, restarted as per its wishes... tried again (via both drag and `copy`)... and Lo! It did not work.
After installing the hotfix. to fix this specific issue. on my specific os. the issue remained. gg Microsoft?
Further research.
I then learned (well, learned more about) the unicode path prefix `\\?\`, which bypasses Windows kernel's path parsing, and passes the path directly to ntfslib, thereby indirectly allowing ~32k path lengths. I tried this with the native `copy` command; no luck. I tried this with `robocopy` and cygwin's `cp`; they likewise failed. I tried it with cygwin's `rsync`, but it sees `\\?\` as denoting a remote path, and therefore fails.
However, `dir \\?\C:\` works just fine?
So, apparently, Microsoft's own workaround for long pathnames doesn't work with its own utilities. unless the paths are shorter than MAX_PATH? gg Microsoft.
At this point, I was sorely tempted to write my own copy utility that calls the internal Windows APIs that support unicode paths. but as I lack a C compiler, and haven't coded in C in like 15 years, I figured I'd try a few last desperate ideas first.
For the hell of it, I tried making an archive of the offending files with winRAR. Unsurprisingly, it failed to access the files.
... and for completeness's sake -- mostly to say I tried it -- I did the same with 7zip. I took one of the offending files and made a 7z archive of it in the destination folder -- and, much to my surprise, it worked perfectly! I could even extract the file! Hell, I could even work with paths >340 characters!
So... I'm going through all of the 70 missing files and copying them. with 7zip. because it's the only bloody thing that works. ffs
Third-party utilities work better than Microsoft's official fixes. gg.
...
On a related note, I totally feel like that person from http://xkcd.com/763 right now ;;21 -
My love towards Microsoft:
When install Windows 10, world's most advanced operating system, I agree to use express installation to make sure I am sharing all the information with Microsoft.
Right after installation, I chose Microsoft Edge as my default browser. Can't live without it really. I also make sure my search engine is set to Bing!
Then I continue to setup Cortana and share all my personal information with her. I install office 365 to to work with my documents and use skype to chat with my friends.
Then I install Visual studio and set all my projects to Windows Application only. I mean who uses any OS other than Windows?
It doesn't finish there. Groove Player is my first choice for listening to music, Film and TV for my videos and etc.
I also always use Microsoft Maps to find my way to work!
<3 Microsoft21 -
Uhhh, ok. Screw you Microsoft!
Really wish I could go all Linux..... 😑
https://theverge.com/2018/9/...21 -
Windows 10 S 😂😂😂😂😂😂☠️☠️☠️☠️☠️😂☠️☠️😂
Really Microsoft...just when I started to have faith in you again!18 -
Dear Microsoft,
It's been almost 2 days since you have asked me to update to Windows 10, I'm beginning to get a little worried, is everything ok?2 -
Boyz, I don't feel like Windows 10 is collecting enough information from me. What can I do about this? I want to give everything to Microsoft <310
-
Why Microsoft skipped windows 9 ?
"because some old programs may mistake it for windows 95 or 98"
(not mine)7 -
Someone just offered me a position at Microsoft. Had to decline it, I'm not desperate enough to use Windows again.5
-
This looks good!
The users will be able to create a sandbox, basically a seperate Kernel for running a lightweight Windows Sandbox using Hypervisor for running/testing .exe files.
https://theverge.com/2018/12/...19 -
Today I found this sticker in the Microsoft merchandise shop.
Now I don't know what to do. I find this epic, but I don't really like Windows. 😥10 -
Okay lets write this before i go mad...
I'm one of those guys who says "use the os which suits you the most, or you're most familiar with", and i'v always been a windows guy, didn't really have any reason to use linux, because for school stuff, or programming (java and android and c) windows was great enough...
BUT MOTHERF@CKERS at microsoft, i'v had enough...
First my handheld computer goes nuts, because windows is eating 80% of processor, and if i fix it, then some other kind of windows related thing eats up that much, and you know what? I've been okay with that, because thats only a handheld computer, but boy, didn't my main computer start to do the same?!?
I cannot do anything, basically i start something trivial up (by trivial i mean trivial, like idk, a texteditor not even a browser, or an ide or anything that would take a bit of more ram) and my computer cant do shit....
I'm so mad.... Currently installing elemantary os... F@ck this shit i'm out...
(And lets not forget the hours of 'updates' which dont do shit....)13 -
Windows, God damn you piece of fucking shit.
Why the fuck can't you make networking fucking easy like literally every other fucking operating system in the goddamn fucking world?
Why the fuck can't I spoof mac addresses so that I have the same IP address regardless of if I'm on a hard line or wireless?
Who in their fucking right mind thought that the pro version of Windows wouldn't need to do that?
I don't even like using you at this point, I'm forced to use you for work.
There's literally not enough explicitives that I can chain together to sufficiently convey how much I fucking hate you Microsoft. So enjoy this seizure inducing tourette's mode compilation.
Fuck shit cock piss mother fucker asshole bitch mother fucker sick and tired of your fucking shit Microsoft you fucking cuck piece of shit nobody fucking likes you they only have to use you because no fucking business in their right mind is going to spend the millions of dollars it cost to fucking switch over to fucking Mac or Linux I hope you fucking choking a bag of HIV riddled flaming dicks you fucking piece of shit.17 -
Microsoft motherfucking Windows. (even though its an OS, it's software)
It's always brought me tons of issues and I'm starting to think that Microsoft built in some AI system which identifies when a Windows disliker uses it and starts acting weird/producing issues since (I have to use windows for some stuff at work) I'm always getting issues that nobody else gets in my team, and I've had this since I started using it at all.
And the fact that it has a frontdoor (I don't even think this is a backdoor anymore) built in... I mean, I definitely did NOT give consent to reinstall Microsoft Edge and I don't want it either (it appeared without any updates).
Then, you cannot fully disable telemetry anymore which is kind of a hard requirement for my job, most of the time.
Yes, Microsoft (and) Windows can go die in a fucking fire.11 -
FUCK YOU MICROSOFT FUCK YOU FOR MAKING ASP.NET FUCK YOU FOR MAKING IIS AND FUCK YOUR WINDOWS SERVERS TOO6
-
Another "microsoft is actually trying" post, excited how it turns out
source: https://arstechnica.com/gadgets/...9 -
Windows 10 update: no more wifi, no more trackpad, 60MB more RAM usage when idle.
Thanks Microsoft!12 -
> An update is available
> Installs update
> Update failed bc of corrupted system components
> Random bluescreens
> Sfc /scannow
> Can't scan because there is one pending repair
> Restart
> Does everything except repairing
> Recovery mode
> System integrity check failed
> Reset Windows
> Reset failed bc of "some" problems
> Media creation tool for bootable USB
> Tool fails to write image
> Media creation tool on another pc
> Successful
> Install Windows
> Missing drivers, cannot install
> Wipes hard drive
Fuck you Microsoft5 -
Project Cortana: Day 56
*What I liked*
Here is the rant where I described the project: https://devrant.io/rants/962190
Time for a review. The biggest advantage I have found was the productivity. Let me explain:
1. Cortana: It's useful as fuck if anyone is willing to use it all the time. It really helps to get reminders and notifications everywhere (PC, Laptop and Mobile).
2. Microsoft Launcher: An underrated gem due to the hate towards M$. Thanks to it's transparent theme, it looks absolutely gorgeous. The most useful part is the "Feed" where you get all your emails, recently edited documents, recently used apps or contacts all together. I was quite surprised to see the level of customization if offered considering it's M$.
3. M$ Office: I probably don't need to talk much about it, it's the most productive tool you can get. Outlook is fucking brilliant on mobile. Other office apps, while they are great on mobile, are probably more useful in tablets. And the "Focused Inbox" is the best thing happened to outlook.
4. M$ To-Do: Holy fuck, this is sick. I know that there is many alternative with more features. But this app is the perfect example of a todo app. Simple, has the exact right features and has a really smooth, beautiful UI. This really helped me to be productive.
5. OneDrive: Didn't find much difference compared to Google Drive.
6. People: Something that I discovered later and found it really useful. You can pin contacts in the taskbar and see emails, calender items associated with that contact in one click. Found it really useful considering I was chatting with my Supervisor and lectures quite frequently.
7. Windows Mail App: While I really like it, I have mixed feeling about it. I would really love to have HTML signature. Not sure why M$ is not implementing it. But the "Share" in the Context Menu is really useful while sending attachements.
Finally, the "Fluid Design" so far is beautiful. Loving the effects.
I will write what I didn't like in the next rant.14 -
In middle of debugging an issue. Phone rings. While picking up mobile accidentally falls on laptop keyboard. Next thing I see is BSOD. Shows SYSTEM_THREAD_ERROR_NOTHANDLED. Are you serious?3
-
The Windows 11 keynote was such a load of bullshit. All the emo yadda yadda. You know, when I work on Windows, what I feel is irritation, anger, and despise for the amateur shitshow that Microsoft delivers.
In particular, but not limited to the fucking update reboots where Windows sits there uselessly and shells fucking prawns in its own ass!
Oh we now have semi-transparent shit. That's progress! It's so great! Only that it's not because already Windows Vista had Aero Glass, and Windows 8 removed it.
But we we have fucking rounded corners now! Crazy shit, some intern at Microsoft discovered border-radius, or did they dig out some fucking Windows XP copy? That also had rounded corners way before Apple even invented them!
To top it off, Microsoft even failed to deliver the livestream seamlessly and recommended watching it at Twitter. Yeah, that's the fucking "Windows experience" as we know it, you clowns!
My favourite BS quote from Nadella himself: "the web itself was born and grew up on Windows." That guy is so full of shit that an unmaintained latrine in rural India would be envious!8 -
I finally erased completely windows from my machine and switched to linux.
Burn in hell Microsoft... Lol10 -
We have a ver crappy Internet connection at my office (I believe it's 100Mb/s for 50 people to share), so when somebody starts downloading a big file they pretty much hijack all the available bandwidth and fuck up everybody else.
Now, we have ONE, just ONE SINGLE FUCKING COMPUTER RUNNING FUCKING WINDOWS 10 AND EVERY WEEK IT FUCKS UP THE ENTIRE OFFICE'S INTERNET CONNECTION WITH ITS STUPID FUCKING UNCANCELLABLE MANDATORY UPDATES.
FUCK YOU MICROSOFT.8 -
Sometimes, I wish to punch Bill Gates in the face for founding Microsoft which created Windows 10.
Fucking updates16 -
God damn fucking Windows bullshit.
Why is the fuck does Microsoft HATE its users?
Latest updates, and no fuck Windows 11, completely BREAKS all of my WSL environments.
Home directories are gone, or the environments are corrupt and won't even run.
99% of the issues these dense shit-fucks cause are because they RaNdOmLy reboot for their dumbass updates instead of scheduling them with the end user. During these rebots, do you thing they wait for everything to shut down?
HELL NO!
They just shut that shit down like they fucking own it. Editors? Gone. Browsers? Gone. WSL Consoles? Gone. Docker containers? Gone. IEdge? Hey, we have great news, we made IE your default browser again! BTW, your upgrade to Windows 11 is free until we force you to upgrade!
I'm so fed up with it.....so fucking tired of it...
The only reason why I even use WSL these days is to ssh into my Linux devices or run some quick dev tests in containers. Why not use PuTTY for SSH? Because it fucking SUCKS that's why.
I'm feeling so many emotions right now over bullshit that shouldn't even be happening. I'm literally at the point that I'm just going to install Linux on this device and just create a Windows VM on one of my hosts so I can still do "work" things that involve leadership.19 -
WHAT THE ACTUAL FUCKING FUCK MICROSOFT?!!
I go to log into my laptop:
me: *enter the pin*
Windows: Error
me: Ok let's try the password...
Win: WRONG PASSWORD!
me: *checking my password manager* Nope, pretty sure that's correct... Ok, whatever let's try to reset it.
me: *generates new password and resets the password for the account*
Windows: You can now log in
me: *enters the new password*
Windows: WRONG PASSWORD!
me: that's weird... let's try that again
Windows: WRONG PASSWORD!
me: Ok... reset once more *I enter the same password I generated before*
Windows: ThAt Is An OlD pAsSwOrD
me: *getting really pissed* FINE, GODDAMIT, HERE, NEW PASSWORD
Windows: You can now log in
me: *enters the new new password*
Windows: wRoNg PaSsWoRd!
jdjsjcjj+3+@!o(€;#@!(&(1!!#((#(€_"jsjeucjcjfdjosdifhshabxnfnxjsosoguwqlqqlall#7@+1(
aaaaaáaaaaaaaaaaaaaaaaaaaaaaaaaa
FUCK FUCK FUCK FUCK FUCK FUCK FUCK
YOU FUCKING INCOMPETENT CUNTS AT MICROSOFT!!!!!1!!!!!!!
I'M GONNA FUCKING TEAR YOU INTO THOUSAND PIECES AND THEN RUN YOU THROUGH A SHREDDER!!
YOU MOTHERFUCKING IDIOTIC CUNTS
FREAKING DEGENERATES22 -
Windows 10: if there is a way to condensate all the shit of the world into a single Operating System, Microsoft has it found that way for sure.10
-
I really like the attention to detail Microsoft has put in their websites, they've replicated every aspect of Windows.
Not only the loading animations, the style of the UI, but also the random freezes and crashes.4 -
While Apple is putting 12-year-old fingerprint readers into MacBooks, Microsoft is scanning your eyes with Windows Hello. Who's innovative?13
-
!rant
I used to be someone who disliked microsoft and windows, but with the new CEO Satya Nadella things are going in the right direction. Really love the stuff microsoft is doing right now! bash for windows, 24 bit color console, visual studio code and the monaco editor, dotnet core ... lately I have switched to windows 10 from OSX and I couldn't be happier :)17 -
Fu*king Windows!!!
Integrating Linux kernel into their new build.
Microsoft Edge insiders experimenting with Chromium engine.
Microsoft has now bowed down to the open source community...
All hail Linus Torvalds!!!!
All hail Linux!!!
All hail Open Source!!!
WE WON24 -
Won the 2nd prize in a Microsoft hosted hackathon. No for Windows but they really have good cognitive services. Used Azure vision api, one of the good ocr service available.2
-
WHO AT MICROSOFT THOUGHT THAT IT WOULD BE A GOOD IDEA TO HAVE CORTANA AS VOICE ASSISTANT WHILE SETTING UP WINDOWS 108
-
So this bloody hilarious, I submit my PWA to windows store, mainly for shits and giggles, see how the whole thing works and all that.
App gets approved, I go in and run another submission to upload a few extra screenshots, at this point they block it as I do not have a privacy policy, but accept user authentication, which is not the case, so after a few days of back and forth I ask them to attach a screenshot, so turns out I need a privacy policy as when the users click on the map link which opens Google Maps in a NEW window, has a sing in button.
According to them, this is 'Opening within my application" and I am apparently able to access user details via google own sign in link, not SSO.
So as a joke, after some frustration I wrote up a privacy policy, what is an even bigger joke is that they accepted it…
This exists solely for the benefit of Microsoft who are having trouble comprehending the fact that RTMS Events does NOT have Authentication.
Microsoft believes that as the application uses Google Maps, and when Google Maps opens a “Sign In” button appears, that I am able to access your personal information.
As any reasonable person will understand, that is not the case, logging into Google Maps/Google for the benefit of using Google Maps in NO WAY gives anyone else access to your personal information.
So to be clear, I do not have any interest or access of any kind to your personal information, should you have any concerns about your privacy, remember, that the “Sign In” button is for Google, not RTMS, take up any issues with them, I am pretty sure they have a REAL and actually NECESSARY privacy policy.
http://rtms.events/privacy.html3 -
Here Ye, Here Ye.
There end is near!
Microsoft announces the GOD DAMN FUCKING END for Internet Explorer 11 in 2022.
Let's all celebrate this happy day 🍻
https://blogs.windows.com/windowsex...rant kill ie9 kill ie6 kill ie10 kill ie7 june 2022 kill ie11 i've seen them all kill ie8 microsoft ends support for ie the world is changing5 -
What kind of person doesn’t install Windows 10 for a free pre-installation of Candy Crush Soda Saga thrown into the mix? I really enjoy it when my Operating System comes preloaded with bullshit. It’s almost as if I’m losing rights to choose what I want installed on my operating system. It’s really enjoyable when Candy Crush Soda Saga appears in the background in task manager despite never opening this “””game”””. I find it amazing that after building such a powerful computer I can know that my fast 16gb ram is being used to keep bloatware running in the background. Every night I dream of the people who buy new computers with a fresh copy of Windows 10 pre-installed on it to find it has a copy of Candy Crush Soda Saga already waiting to be played! The joy and tears that must come to such a persons eye to know that Bill Gates was kind enough to bless the world with every middle-aged persons favourite game, Candy Crush Soda Saga, to be the first app that appears on their start menu. The thoughts running through every developers mind at Microsoft as they pre-load a copy of Candy Crush Soda Saga onto every copy of Windows 10. They must really feel alive and definitely would not consider doing anything else for a living but copying the files of Candy Crush Soda Saga across onto Official Windows 10 Installations. The rush of blood into their mind as they know that thousands, if not millions, of users from around the world open their brand new computer for the first time to see that King managed to bribe Microsoft with more money that you’ll ever get your hands onto into making them add a free copy of Candy Crush Soda Saga onto their computer. As thousands of those users move their mouse over this work of art, right click it and press uninstall without a second of doubt in their mind, rendering Kings investment to be a waste of time, money and effort. This is a story we will tell for generations and generations in the future of how the worlds most popular Operating System was not preloaded with a free copy of McAfee, but instead a copy of Candy Crush Soda Saga for the entire world to rejoice. Good day to you all.11
-
OKAY MICROSOFT EXPLAIN TO ME WHY THE FUCKING FUCK WINDOWS CREATION TOOL WILL ONLY DOWNLOAD TO THE C:\ DRIVE?12
-
yesterday i shut down my pc (win 10) and left. Got back after ~10 hours - " please don't turn off, windows are updating..."
-
So Microsoft removed the transparency Aero Glass effect going from Windows 7 to 10, to make 10 more "modern", even though 7 was pretty as fuck with that transparency.
Now they're bringing it back with their wanky "acrylic" blur?
Make up your mind Microsoft6 -
I don't know whether to say windows or Linux is great. But as always Microsoft stands separate with their business strategy.10
-
Anyone hear about the emergency patch that Microsoft just released? Its a RCE vulnerability CVE-2017-11937 which ironically targets all of Microsoft's security products.
Basically when Windows defender scans a specially crafted file the attacker can run code as the LocalSystem. Nice one Microsoft!1 -
One of the things I really hate on Windows (and Microsoft software in general) is that the keyboard shortcuts are localized therefore are different from 90% of the apps that I use on a daily basis.
Two examples of this (EN-US vs PT-PT):
- "Save" is "Gravar" while "Underline" is "Sublinhar". This means that whenever I press Ctrl + S to save a doc in MS Word I underline a word instead of saving the bloody document.
- "All" is "Tudo" so when I want to select all the itens on a folder in the File Explorer I have to press Ctrl + T, the same shortcut I press in pretty much every single tabbed app to open a new tab.
This is terrible for the user experience because different languages provide different keyboard shortcuts to the user which goes against the concept of the usefulness of a keyboard shortcut: perform an action from anywhere without having to know its menu or menu description.11 -
Microsoft will roll out the real Curl in Windows 10 now. It's already released for Insider-Builds.14
-
For all the hate going around about microsoft i just wanted to list things microsoft has done a great job at (imo of course):
windows 10
powershell
microsoft office
minecraft
xbox
microsoft edge
probably more so don't hate for the hell of it.20 -
Don't you love when Windows does not like the programs developed by Microsoft.
Self hate is the best....1 -
Holy shit, can't wait till windows will actually have native tabbed windows, because clover hasn't been updated in a while.
Source: https://youtube.com/watch/...8 -
Microsoft 2015:
Windows 10 is our last version.
.
.
Microsoft 2021:
Have you heard of the new Windows 11?8 -
Everybody still using Windows 7 is waking up to this this morning.
Thank you Microsoft for doing sales for us 😁5 -
DO NOT UPDATE WINDOWS 10 (October Version 1809). Could permanently delete your documents and pictures.
https://forbes.com/sites/...12 -
I use Windows at home. Linux at work.
The last couple of days I was "forced" to work in Windows due to the need of Microsoft Word for documentation.
I just noticed today, that when I rebooted and entered Gnome shell again, it felt like coming home.
:)6 -
Wanna know why Windows sucks so much? It's because of the Windows users. No, really!
Windows user: But but but I can't switch away from Windows because MIMIMI!
Microsoft: Ah, is that so? Then why should we even try to make (and pay for) an effort?5 -
Look, I've given Microsoft and Windows a lot of shit, but I just have to be fair and say the one piece of hardware that I absolutely covet is the Surface Pro... If that is the direction Microsoft is heading in the coming years I'll have a lot more respect for them...8
-
Windows is now being developed with git. I cant believe that.
This is the BIGGEST IRONY EVER!
Please tell me its a joke!
https://techcrunch.com/2017/05/...10 -
Unpopular Opinion: When Satya came to Microsoft leadership, Microsoft was a whole lot better company
Forget Windows and shit, Azure was the only open Microsoft on Ballmer days, then Satya, who were part of Azure decided to give the entire MSFT the Azure experience. Look where we are now
not saying Microsoft is no longer bad, its just more tolerable as a company now. Nice to see it backtracking and bracing stuff unlike its first leaderships12 -
It's Christmas! Microsoft open sources it's WPF, Windows Forms and WinUI! O_O
https://blogs.windows.com/buildinga...1 -
WTF MICROSOFT.
I was Compiling app on windows 10, just gone for few mins to grab a coffee and then i saw blue screen with
Updating Windows.
Nobody ask you to do it. You piece of shit.
And that's not all, it even restarted without my permission.
Seriously Fuck you Microsoft7 -
Well done windows a zero day bug that escalates privilege. Google was so pissed about it they released the info before Microsoft could fix it 😂8
-
Wtf Microsoft ?!?
Clean install of windows 10 pro, got everything set up, now Microsoft Store does not work because I need an app to open ms-windows-store ?!?
Common answers found on Google does not solve the problem -_-6 -
Do you ever wonder why EVEN Microsoft uses web technologies to build apps for Windows?
Because the StAte oF tHe aRt piece of shit WINUI 3 (aka Project Reunion aka Windows App SDK aka Microsoft 12th app framework in this decade) can't handle a basic save/open dialog.
An issue has been opened 2 fucking years ago and still no fix. (Other than write 250 lines of c# and c++ to get a fucking dialog)
Fuck this I'm going back to Electron.5 -
Fuck Microsoft and the windows dev team! Fuck the person who thinks it's a bright idea to force users to download updates on their fucking insecure OS.
I live in a shitty substandard country where the cheapest mobile data plan is roughly $7.5 for 7.2gb for a month.
After several weeks of Windows auto downloading updates I don't need, I disabled the updates on several fronts using tutorials found online until yesterday, the fucking thing still found a way to download updates over 6gb, I didn't suspect a thing until I got notification that my data plan is exhausted and I immediately checked windows update and saw a fucking download meter of 76% downloaded. The data was suppose to last for 4-5 days, all gone within 3 hours span.
Fuck whoever thought it is a nice idea to force users to download shitty updates, leave me with the fucking old unstable version, if I get a malware I know how to find my way out you fucking goofs at microfuckingsoft!!14 -
You are now the head of Microsoft Windows development. What changes do you make?undefined would really like to know question among other things i would add in the pinball from win xp...21
-
Dear Microsoft, stop pushing me to update to Windows 11.
I still haven’t changed my mind and I won’t change it even if you ask me for the 6th time.
Just stop being an annoying bitch, please!
Also, one button is completely enough. You don’t need to make me click 3 or more buttons in different places just to remove your Win 11 messages which you keep slamming into my face.4 -
The new version of the (unofficial) client (now UWP and with "Stories") for Windows 10 is here... but I can't release it due to a Microsoft Store bug... 😢
Hope to see a Microsoft fix soon, because I can't wait to share it with you! 😝4 -
One more reason to hate Windows - Changing default browser will be made difficult in Windows 11. Thank you Microsoft
https://theverge.com/22630319/...14 -
Ok, Microsoft just released Visual Studio for Mac. Now there's literally not a single reason why i would want to use Windows over Mac as a developer.
I like this decision by Microsoft.7 -
I FUCKING HATE when windows 10 reboot without my permission, i left stuff compiling in vmware and now i found out that it rebooted fuck you Microsoft37
-
A coworker has just finished setting up his new linux installation after removing windows when windows 10 was released. Caught him out with fakewindowsupdate.com, he thought microsoft was forcing it.
-
Conspiracy Theory:
Windows 10 - suspiciously free upgrade and "pirate friendly."
Microsoft - really rolling with the hardware scene lately.
Windows 10 Updates - suspiciously destroyed the hardware in 4 laptops and a desktop I've worked on putting the owners in the market for new Microsoft hardware.
Coincidence?9 -
Sometimes, I really fucking hate Windows.
Having trialled Linux for a week on a spare HDD, I wanted to move to a proper dual boot with Windows on my SSD, and I decided I may as well downgrade to Windows 7 at the same time (10 had started to really annoy me).
Booting into the initial USB yielded an unresponsive mouse and keyboard. Hmm, not a great start. Turns out the Windows install USB doesn't like the rear USB ports or the wireless mouse. Strange but plugged in a spare USB mouse into the front and could install Windows.
This install was very unhappy about not having SP1 - to the point where I couldn't even install the network drivers so I could download SP1. Fine, I just downloaded an ISO with SP1 on my Mac.
Then I discovered that you can only really make a Windows USB with Windows. But I've just removed both my Windows and Linux partitions so I can reinstall them ...
After hours of searching and trying to create a bootable USB on my Mac, I finally give up and install a trial of Parallels. So I ended up using the same ISO to install a VM of Windows on my Mac, so I can create a bootable USB, so I can install Windows on my desktop. Well done Microsoft ...
And then I needed to install various drivers for the install to be even remotely useable.
To top it all off: Linux just worked. The keyboard and wireless mouse worked when installing. I didn't need to do any additional set up to be able to use it all. It can even use all 3 monitors, rather than just the 2 that Windows recognises for some bizarre reason.
Thanks to Windows being special, I've lost a day of productivity 😡16 -
Windows not powering off when I press the shutdown button.
Mandatory long rant warning
Oh my fucking god, how many times have I lost my shit because of this fucking bullshit.
When I press the shutdown button, I want you to shut the fuck down you sorry excuse for an operating system.
Me and my friends want to hang out together, so I shut down my PC and walk over to their house, expecting an intense session of doing programming stuff and debating linux distros. Whatever the fuck we do when we get together.
I get to their house and pull out my laptop,, only its hot as fuck. And then I see it: the battery indicator is red. "What the balls?" I think to myself. I open the lid, and guess what?
WINDOWS DIDN'T FUCKING SHUT DOWN, AND IT STAYED ON THE POWERING OFF SCREEN ALL THIS FUCKING TIME. WHAT THE FUCK?
Now, my laptop has a bomb ass battery, so I didn't even bring a charger with me, and now I'm fucking stuck at a programming session with friends without a computer. FUCKING BULLSHIT.
If this was a one time thing, I wouldn't have cared so much, but this happened countless fucking times. Too many.
I would have deleted this cum socket of an operating system months ago if it weren't for the Windows exclusive software I need for school, and now that Steam supports games for linux, Windows has even less of an excuse to stay on my fucking laptop.
Windows is supposed be fucking simple, but linux takes it by a goddamn long shot. When I type "shutdown now" or "poweroff", linux shuts the fuck down, no questions asked. And if I ever need root permissions, I just type "sudo" instead of restarting the fucking program and requesting admin privileges.
Most of the software I use is compatible with both MacOS and Windows, and I already have Ubuntu installed on my laptop, so what do you guys think, should I butcher Windows off of my SSD and give MacOS a try?
Also, what is this magic? Ranting actually calmed me the fuck down... I need to start ranting more.
FUCK MICROSOFT AND FUCK WINDOWS, I WISH I COULD BURN TO FUCKING OBLIVION6 -
I am tired of people shi**ng all over Windows and Microsoft. Microsoft runs probably the biggest website and cloud environment in the world. And guess what? On Windows servers. The company I work for has 200,000 employees and many massive data centers with trillions of client records. And we run a 100% Microsoft environment.
I would imagine that any sys admin or developer can appreciate such scale and reliability.17 -
Yes, I will definitely consider that Microsoft.
Windows is such a mess... Fucking hate it. Let's see for how long this fresh install will keep its shit together -.-11 -
Sometimes I feel like people hate on Windows and Microsoft (and Google, Apple, Facebook, ect) just because it's trendy. 🤷🤷14
-
The single most annoying thing about working with Microsoft is how they, at one point, decided to wipe 99% of their articles and downloads on their site. But instead of updating it in their OWN FUCKING OS, they just leave links to the broken pages in their help system. The second problem then arises when you realise that instead of giving you an error page, it automatically redirects you to the default page.
But on top of wiping their site, not updating windows to reflect those changes, and having a terrible site design, they have also decided that it would be best to keep the pages that once we're, online. This means that they will still show up in search engines, without any content being there.
Add to that the fact that their support team is incompetent to an insane degree, and often doesn't know what they're talking about. This has caused me so much frustration over the last few days.
Dear Microsoft, please get your act together and fix your shitty website.
Greetings,
A pissed of customer who paid money for your shitty services2 -
I've had people tell me Windows 10 is the most stable and least buggy Microsoft OS yet. I want to disagree.6
-
Microsoft owns github
Microsoft owns windows
Microsoft owns powershell
Why then, why exactly, is it so fucking hard to get ssh private keys for github, up and running on windows powershell.
I tried to change permissions on files but then it broke the git-bash implementation 😭.
Fuck it !! 😭😭9 -
There are two kinds of people who work at Microsoft:
Non-programmers.
Those who use Linux cause they hate Windows.10 -
When you realize that "O&O ShutUp10" (AntiSpy tool for Windows) creator company is a Gold Microsoft Partner
-
Founder of world two most hated companies/product ( Apple/iPhone, microsoft/windows vista/windows8/windows10/lumia/ ) are amongst richest person in the world.
Meanwhile creator of worlds most loved/less hated products are hardly know to people (Android/Andy, linux/Trovalds)10 -
WHY THE FUCK DID MICROSOFT INSTALL A NEW KEYBOARD LAYOUT AFTER THE LAST WINDOWS 10 UPDATE AND IT IS NOT POSSIBLE TO REMOVE IT?! fuck it for fucks sake5
-
There was a yellow exclamation mark over Windows Defender icon on system try, I'm very obsessed due to this reason I opened Windows Defender to check the fuck is going on. Just to get rid of it I had to create an outlook.com account and link it with Windows Defender.
What the fuck is Microsoft up to now.3 -
The Universal Windows Platform is really efficient. Visualizing a 13MB database literally takes 750MB of RAM. Thanks Microsoft❤
-
Big-time Microsoft fan who claims they've been using licensed versions of Windows since Windows 3.0. Still has all old versions of Windows on different machines / hard-disks. They use only Microsoft Surface devices. They still use Nokia Lumia (with Windows Phone 10). They were working with an organization that used Office365 for enterprise email and collaboration. They used Microsoft Teams for team collaboration when the rest of the organization was comfortable with Atlassian tools like jira, confluence and bitbucket.
One fine day, news spreads that the organization is moving into GSuite for enterprise email and collaboration. They are devastated. They quit citing personal and family reasons, but we knew the real reason.15 -
I must admit I like Microsoft a lot, but today, I hate them. Yesterday the Windows 10 anniversary update was pushed and I was forced to install it. As I had a day of meetings I did.
This morning I started my laptop and and browsed to one of the web apps I'm developing for my client. The website didn't work. Turns out Microsoft uninstalled all specific Windows features, such as IIS, MSMQ, and much much more. Guess I'll be spending my time this morning or day to reconfigure my system. Happy anniversary Microsoft.6 -
It's not everyday that I give Microsoft praise, but damn, the new Windows Terminal is... Surprisingly decent.
Together with WSL2, it allowed me to switch from working in a VM to working fully from Windows.
And with little tweaking of the settings file, it acts exactly the way I like.
Good job creating something modern, almost universal and usable Microsoft!9 -
Microsoft seems to get progressively worse every year. My work transitioned from google products (email, drive, chat) to Microsoft & it was a humungous step backwards. Everything crashes & doesn't save. Edge sucks. Windows 10 sucks. IE always sucked. Office 365 sucks. One drive sucks. MS Teams sucks. 😑7
-
Windows phone used to be a great OS.... Why Microsoft Why!!! Windows 10 have more bugs than my first computer science program e.e7
-
windows update bricked my touchpad.
rebooting bricked my keyboards.
reinstalling windows fixed my keyboards but not my touchpad.
this has been going for a week now.
i'm moving back to linux. maybe i'll try arch this time around.
fuck you microsoft.
ps: my touchpad seems to be permanently bricked.26 -
Windows file system is a slow piece of shit.
The update regime on most applications for Windows desktop is an unmanageable piece of shit.
Windows Store is a broken piece of shit.
The login process on a Windows computer is a tedious piece of shit.
The Windows Hello authentication is a half-baked piece of shit.
Microsoft MFA is a hostile piece of shit.
Windows Update is a destructive piece of shit.
Windows Defender is a resource-hogging piece of shit.
Windows system fonts are ugly as a piece of shit.4 -
I hate that they're rebranding the newest Windows update "Windows 11"... it's been 5-6 years since they said Windows 10 was the last version of their OS. Why not drop the numbering convention all together? Also, why is the latest update a pile of crap that changes nothing other than the UI? Oh right, because the perception of progress to investors is the sole goal... I swear there is so much broken in windows 10 right now that they haven't fixed and so much more to be added, including file explorer tabs which they've literally started implementing and stopped at some point. Don't even mention the numerous UI inconsistencies between right clicks, color inconsistencies, still using control panel for some options in windows 11? UWP apps crash constantly and are slower and laggier than traditional .exe's, the list goes on and on for why this is the dumbest decision microsoft has made yet. problem is, "yet" is the keyword.11
-
I had my first crash on Windows 10. It takes ten seconds for Microsoft to take the crash info but, 10 hours to update.6
-
Fuck windows update. Fuck Microsoft for sending daily updates. Fuck everything about windows update. Fuck bill gates. And again fuck windows update13
-
What's up with all of these unstable updates at the same time from Google and Microsoft?
First Microsoft releases an update that deletes My Documents
Then chrome on windows gets updated with a "eat your disk in addition to ram usage" that freezes my PC.
Like whatever happened to testing before releasing, least some minimal testing...
Then again, it's a fucking Microsoft product... -.-5 -
Microsoft is going to offer it's own Linux distribution i.e. Azure sphere to secure microprocessor based gadgets.
Isn't Windows capable of doing it? 😜2 -
It's me or everyone feels windows7 is the best os that ever released by Microsoft
P.S windows 10 sucks... In my pc , I don't know about other high end pc11 -
Whatsapp on windows phonewill be shutdown in december.
Slowly more and more apps will be off.
Windows phone has a beautiful OS why did you kill it Microsoft!!!!
Why why why.26 -
Internet connnection gone.
Windows-help: Search online for a solution.
Thanks Microsoft for the good idea!1 -
My Win 10 stopped updating 2 months ago. "Windows update database error" it says. No fix worked, the only thing to do (according to Microsoft assistance) is to reinstall the whole system. Only because i clicked on "postpone" to the last one.
I really miss Windows 7...4 -
Fucking Windows.
Before everyone starts saying that I should switch to Linux, I prefer Windows as my primary OS and Linux as a secondary OS.
Anyways, I updated my Windows a few days ago and ever since, instead of fucking shutting down it acts like it goes into hibernation. If I tell you to shut down, that means to shut down, not save everything and reopen everything when I turn you back on.
Besides that, why the fuck is it trying to install some Canon printer driver, that I don't even have! Thus leading it to fail every god time I turn off my PC, and then it says "Updates failed to install."
Seriously, had no problem with Windows until a few days ago. Simple terms, fuck Microsoft right now.2 -
Windows File Explorer is the epitome of everything bad about Microsoft. It's shitty proprietary software that treats the user like a baby and hides to complex parts of the system for them, while also managing to be so hideously designed that there are entire books about using it.
Thankfully, I have enough technical knowledge to be able to use PowerShell, even though that's shitty too3 -
Don’t teach with LOGO, but instead start with Scratch, then something more advanced like Python and after that maybe C# or Java.
Teach different operating systems and software, not only Windows and Microsoft Office. There should be class with Linux (Mint for instance) with LibreOffice and another with macOS and iWork.
Teach basic troubleshooting steps.
Less theory, more practice.
STOP BEING SUCH MICROSOFT ORIENTED.
Ability to use own laptop (I would be really happy to use my own one).
Teach basic commands for Windows and Unix based systems.
Teach how to install Windows and Linux.3 -
Motherfucking cocksucking Microsoft windows. The worst software ever written by shittiest developers.
Mother fucker blowed up all the partitions ( Linux installation, root and /home partition ), including windows recovery disk.
I wish, your HQ will blow up the same way, someday.
Bill Gates .... Go fuck yourself with a iron rod12 -
I HATE SURFACES SO FRICKING MUCH. OK, sure they're decent when they work. But the problem is that half the time our Surfaces here DON'T work. From not connecting to the network, to only one external screen working when docked, to shutting down due to overheating because Microsoft didn't put fans in them, to the battery getting too hot and bulging.... So. Many. Problems. It finally culminated this past weekend when I had to set up a Laptop 3. It already had a local AD profile set up, so I needed to reset it and let it autoprovision. Should be easy. Generally a half-hour or so job. I perform the reset, and it begins reinstalling Windows. Halfway through, it BSOD's with a NO_BOOT_MEDIA error. Great, now it's stuck in a boot loop. Tried several things to fix it. Nothing worked. Oh well, I may as well just do a clean install of Windows. I plug a flash drive into my PC, download the Media Creation Tool, and try to create an image. It goes through the lengthy process of downloading Windows, then begins creating the media. At 68% it just errors out with no explanation. Hmm. Strange. I try again. Same issue. Well, it's 5:15 on a Friday evening. I'm not staying at work. But the user needs this laptop Monday morning. Fine, I'll take it home and work on it over the weekend. At home, I use my personal PC to create a bootable USB drive. No hitches this time. I plug it into the laptop and boot from it. However, once I hit the Windows installation screen the keyboard stops working. The trackpad doesn't work. The touchscreen doesn't work. Weird, none of the other Surfaces had this issue. Fine, I'll use an external keyboard. Except Microsoft is brilliant and only put one USB-A port on the machine. BRILLIANT. Fortunately I have a USB hub so I plug that in. Now I can use a USB keyboard to proceed through Windows installation. However, when I get to the network connection stage no wireless networks come up. At this point I'm beginning to realize that the drivers which work fine when navigating the UEFI somehow don't work during Windows installation. Oh well. I proceed through setup and then install the drivers. But of course the machine hasn't autoprovisioned because it had no internet connection during setup. OK fine, I decide to reset it again. Surely that BSOD was just a fluke. Nope. Happens again. I again proceed through Windows installation and install the drivers. I decide to try a fresh installation *without* resetting first, thinking maybe whatever bug is causing the BSOD is also deleting the drivers. No dice. OK, I go Googling. Turns out this is a common issue. The Laptop 3 uses wonky drivers and the generic Windows installation drivers won't work right. This is ridiculous. Windows is made by Microsoft. Surface is made by Microsoft. And I'm supposed to believe that I can't even install Windows on the machine properly? Oh well, I'll try it. Apparently I need to extract the Laptop 3 drivers, convert the ESD install file to a WIM file, inject the drivers, then split the WIM file since it's now too big to fit on a FAT32 drive. I honestly didn't even expect this to work, but it did. I ran into quite a few more problems with autoprovisioning which required two more reinstallations, but I won't go into detail on that. All in all, I totaled up 9 hours on that laptop over the weekend. Suffice to say our organization is now looking very hard at DELL for our next machines.4
-
Shower thoughts:
If windows 10 is the last version of windows and all new progress will come as feature updates,
i) How will Microsoft release their currently being researched ReFS file system?
Also
ii) does this mean that windows 10 is turing complete OS?
BTW I use arch ;P
Edit: typo8 -
Hate it when microsoft forces you to use windows to work with some software. Well guess fucking what?16
-
Saw one of my colleague tryna sign in into Microsoft, where it was asking for 7 digit passcode but the system was sending him 6 digit passcode. LMAO. just windows things.2
-
The only technology that has updates more than microsoft windows--> android studio...Like the dev team gets a eureka moment everyday1
-
Hey... I've been selected for Microsoft as an SDE :)
Am I allowed to work on a Macbook at MS instead of a windows notebook?! 🤔17 -
Go home windows your drunk. Yes i want to but i have to use you
Translation:
Microsoft Windows
This application doesn't react. The program could possibly react i
again if you wait.
Do you want to kill this procrss?7 -
Microsoft pls fix.
My company chose to use Microsoft Teams and uses various linux desktops.
Let's try Microsoft Teams.
A desktop app? Hell yeah. Let's try it.
Oh wait...
Microsoft delivers a Windows executable for linux users... Fuck7 -
Microsoft is asshoe.
They tried to force update a Windows 10 Home machine to Windows 11. Nobody clicked okay on anything. It had icon in task bar indicating it would install it on reboot. I had to go into the update settings to click "no for now". Fuck you microsoft. Eat shit and die. Just leave my shit alone.11 -
i hate windows errors so much
there's no information whatsoever, its just "error code 0x696969 lmao something wrong try again later"
what i hate even more is asking microsoft forums what the error code means and being asked if ive tried turning it off and on again6 -
Who’s better at releasing unfinished/half baked projects that are eventually killed in the span of 5 years or less?
In this corner, weighing in at 264 killed projects, undefeated in search engine industry - Google!
And, in this corner, weighing in at 73 killed projects, the murdered of Nokia, Windows RT and soon to (probably) be Surface Duo and Windows 11 on ARM - Microsoft!
I personally think it’s Microsoft - when they do, they kill it in a spectacular way.9 -
404 error at its best from Microsoft 0_0
Side note: Anyone tried https://github.com/AvaloniaUI/... is it really same as WPF for Windows?2 -
Am I the only one who is still using Windows 7 for non geeky stuff?!
Fuck your updates, dear Microsoft. Fuck them.9 -
Me : Opens Microsoft Edge after installing Windows and searches Download Google Chrome.
Edge : Am I a joke to you ????
Chrome : Yes !!!! LOL8 -
Funny to see people criticising windows as an OS and going all out for Linux and MacOs, but applying for 25+ roles at Microsoft at once :P9
-
https://thehackernews.com/2024/02/...
44 years after Unix, Windows gets sudo. I'm proud of the little guy. He's starting to grow up!22 -
Windows 7 could be installed without a Microsoft account.
Windows 8 required it, but had a “Skip” button.
Windows 10 also had a skip button, though obscured and inaccessible for those who just click through the process (95% of people).
Windows 11 home doesn’t have a skip button. You have to press Alt + F4 when Windows installer asks you for network connection to avoid it asking to create a Microsoft account.
My girlfriend, a linguist who has nothing to do with programming and computers in general, successfully transferred to a Linux distro after I told her about Microsoft supporting ICE. She says Linux is simpler, she had no problem installing additional software and she liked that cooling fans are never spinning now and that battery life is now solid two times better.
Think about it.6 -
I just need to vent about how frustrating and terrible Windows is.
It almost seems like consistentsy and attention to detail are completely foreign concepts to Microsoft. Everything from simple text selection (WHY DOES A DOUBLE CLICK INCLUDE THE TRAILING SPACE) to using advanced software feels like a chore.
Any sympathizers here? What problems do you need to vent about when trying to navigate your OS?
FWI I'm not a Mac or Linux user, so I have the joy of using Windows at home. I wish I could switch, but I prefer full access to my Steam library so I'm stuck with this option.rant microsoft venting windows 10 windows sucks windows 10 sucks why would you do that bad design windows7 -
Using devrant on windows phone. Windows phones are so so so nice. Why microsoft did you stop windows phones. They are the best OS and greatest experience. Bring back windows phone please.11
-
Microsoft Windows: this application has stopped working: Microsoft Windows
omg it's a fucking ERROR PARADOX3 -
Anyone wants a virus for their mac?
https://arstechnica.com/gadgets/...
Too bad Linux users cannot enjoy virus infected machine...8 -
Awhile ago I was working with an National Instruments RFID analyzer scope.. the item cost $100,000. And the vendor that sold it my company had the boldness to have Windows 7 run all the licensed software equipment on the device.
The product however did work quite well. One day I came into the office and IT "UPGRADED" TO Windows 10 OVERNIGHT.
Effectively turning the equipment into the world's most expensive brick. Luckily for me, it was my last day in that position.. got a salaried position in engineering.
A couple months later an intern was assigned to fix it.. the licenses were messed up.. he eventually got it working again. Microsoft almost cost my company $100K without a second glance.
It all worked out in the end. :)3 -
Microsoft will add Ubuntu to its windows store, which will help installers to use linux tools on top of its system. Fuck you Microsoft, fuck you.24
-
I find it funny that, one of the most expected features on Windows, is not even a Windows feature. The teams at Microsoft must be feeling the same way we feel when, after a huge project, the client gets super excited when we implement or change something really, really small, that we did in a couple hours, just for fun.
-
Every design change in windows 11:
- All that could have been achieved in win 10 with an update 🙂
Every new feature in windows 11:
- All that could have been achieved in win 10 with an update 🙂
Just another way to trash our older PCs. Planned obsolescence.
Google said, free forever photo storage, takes it back.
Microsoft said, last verison of windows 'll be the 10, takes it back.
😊 Everything's friking nice.16 -
Lady and gentlemen, windows explorer alphabetical sorting.
And don't get me started on the slow shitty search bar.15 -
*use windows, ms office, vsc, skype probably code in ts, ... *
*rant about microsoft buying github*
I'm not a microsoft fan either, but thats the sad truth.1 -
Windows has just asked me the password to my Microsoft account to fucking access my computer.
... Do you mean that if I didn't have Internet access I couldn't use my won fucking computer? WTFF!??24 -
Modifying Microsoft Windows with bunch of undocumented functions.....
And integrating CZenter to it.....
^v^ -
Windows defender, this is for you:
GO FUCK YOURSELF YOU CANCEROUS PIECE OF SHIT!
If you were as advanced as you claim to be you'd realize that the EXE you've just deleted originated from a compiler. Unfortunately, your target group exclusively consists of people that are incapable of using anything that goes beyond a web browser.
If your developers would have some kind of integrity it would allow you to be turned off permanently instead of making users leave the Windows platform entirely.
Do Microsoft employees even eat their own dog food like they did back in the golden NT era?8 -
Booted my laptop in windows 10. Forced to install the new updates. Ubuntu partition got deleted.
Fuck my life, how can get Microsoft away with that? That's so stupid. Now neither Ubuntu nor windows 10 is booting and I have to perform a boot repair and recovery with a live CD...5 -
How is it possible that Microsoft Office and Open Office have less portability issues then Microsoft Office on Windows vs. Microsoft Office on Mac? It's supposed to be the same f*king programm developed by the same company! <.<2
-
thank god, Microsoft decided not to use lignite coal for updating their OS. I was worried to update windows, it used to cause so much smog in the neighbourhood, one uncle even died because of lead poisioning.
now, I can update Windows in peace, no more pollution.9 -
Fuckkkkkk I was populating a database and fucking windows updates restarts my pc. Fucking microsoft3
-
Windows containers with Kubernetes on AWS and Azure are thing now.
What does that mean? Is it now possible to containerize system critical windows 3.1 legacy software from the 90ties (like the ticketing software at Airport Paris Orly) and orchestrate it in the cloud?
Do you know any use cases for Microsoft Windows in the cloud?2 -
"F*ck Microsoft!" **posts online using Windows**
Well thanks to them, I was able to finish my f*cking project in college using Microsoft Office.3 -
The hardest thing I've done in the last few years, was leaving microsofts fucking insider program for windows, so hard to fucking get out. Fuck you microsoft.
-
Just when I thought Microsoft is going in the right direction with the launch of dark Surface products and dark mode for Windows, they took all my hopes away with their shitty Windows Update thing. Completed download and rebooted to find out that the update has vanished. Great, thanks for wasting my data, Windows. :3
-
I love how the consultants Microsoft hired to estimate the savings upgrading to Windows 10 comes up with the number $404 per employee. I think there's a hidden message here...1
-
I get amazed almost every work day by how buggy the File Explorer is in Windows 11.
Actually, it's the whole Microsoft experience, that never worked for me. Most products are not at all intuitive (e.g. Google Sheet UX > Microsoft Excel UX), some other products shouldn't even be released (e.g. I've tried Loop, which is supposed to be a Notion clone, but it's more like a cheap demo).
I really need to start insisting about Linux, so my employer allows me an installation (or at least they could provide a Mac, if Linux doesn't cut it)4 -
!rant from a support guy
I was tasked to migrate an Exchange 2003 server (yes, those are still used) for an upcoming Office 365 deployment. There are no direct upgrade path from one another, as far as we know
My task was to export PSTs from mailboxes. Great, a native tool exist for that in 2003 (exmerge). But only for less than 2 GB mailboxes because ANSI/Unicode! Half of our mailbox busts that limit. Oh, it seems Exchange 2007 has a PowerShell command for exporting to PST as well! But pre-SP3, that command relies on a local installation of Outlook on the server (DAFUQ), and has been superseded by another "standalone" powershell command. So I install a bogus Windows 2012 server only for that purpose, with Exchange Management Tools (which, by the way, is bundled with the Exchange installation setup and REQUIRES to have IIS installed on the target machine. Also, if you install ONLY the Exchange 2007 Management Tools and wish to uninstall them afterwards, you can't because the uninstaller wants me to select an Exchange Role to remove, which are all unchecked in my tools-only setup). Never worked, and Google-fu says that the newer Exchange 2007 New-MailboxExportRequest command seems to have removed Exchange 2003 support.
So i'm back to installing a pre-SP3 Exchange 2007. Then the older Export-Mailbox powershell command whines about 64bits and 32bit incompatiblity-- actually I ***HAVE*** to have the whole OS/software stack 32bit ONLY. Don't ask me why!
Some article I found says I could fire up an XP virtual machine for that, I go for Win 7 x86. "Sorry, Microsoft Exchange won't be installed on a workstation environment because reasons." All right then, let's go for an old Windows Server 2003 x86. Have you tried to boot this up in an Hyper-V environment where mouse and keyboard support for Windows Server 2003 are apparently optional? No keyboard AND mouse events sent to the guest machine at all.
* Sigh *, let's use a Windows Server 2008, but WATCH OUT! Microsoft has discontinued x86 support on their W2008 R2 release, so non-R2 for me. Even then, mouse event wasn't sent until I installed guest additions.
After all, export-mailbox ended up working, but that costed me two days of banging my head against the wall. (Oh, and I take internal calls inbetween as well...)
And that's why I aspire to be a programmer. Thank you for nothing, Microsoft!4 -
Another day in the office to fix windows updates.
Love when a multi-national company is not even able to do a proper update system... Thank you Microsoft! Because of your incompetence i have a lot of work!2 -
Today after 6 years I used windows in my cousin's laptop for the first time... I felt really bad for the people still using windows..
Tried to fix a dll problem in her system and still no idea how to fix that shit...
Great job Microsoft...11 -
Fucking Windows.
Everytime I update the system it acts like it got infected by yet another virus.
Everyone uses this shitty insult of an OS because one day Gates said "hurr durr look how fucking generous I am, y'all get my OS for free". And we got fooled big time.
Any E-mail I try to look up in Outlook that's older than a month doesn't exist, Excel converts anything I type into ISO-timestamps, and the most infuriating thing of all is that whenever something runs in an error, it just gives me a big
FUCK Something went wrong YOU
FUCK Ask your administrator if you have any questions YOU
FUCK Who do you think is sitting infront of the screen you big pile piece of shit software YOU
AFAIK Gates founded Microsoft as the hero mounting against the giants of its time, IBM to be concise. Looks like Microsoft lived long enough to become the villain themselves.5 -
No I don't want your updates every single day, Windows 10. Maybe I don't want to be so edgy with your updates. May be I like it XP style when updates didn't used to bug me with every single boot up and power down. It has become even worse. Who thought defering updates to the next boot up was a good option? It fucking interferes with the flow of work. They were like -
"You know what, let's update till 35% and then fucking update the remaining 65% at next boot"
"But users will be frustated"
"We'll show the update screen with clean font and a nice background. It will calm them down"
"Okay, so let users choose when to download the updates"
"That's not a fucking option, mate"
And if you are going to force updates down our throats please fucking mention what is being changed as a short description instead of showing a 'KBxxxxxxx' update number! If not that, at least hyperlink the thing to your update docs page! OR Mention a version buff if not it! I HATE seeing 'Update for Windows 10 Version xxxx for x64-based Systems' EVERY. SINGLE. TIME I see an update ready to be downloaded.
And no I don't play Candy Crush, or other games that are pre-installed as soon as I re-install fresh Windows or go on Xbox App. I hate to do this ritual of turning off auto download from Windows Store every time. So please don't pre-configure anything for me. Keep it fucking raw. That's why Linux distros win.
I'm just saying, Service Packs were a great thing with a need of little improvements. You guys ruined the whole experience, Microsoft.2 -
cmder for windows <3, also waiting patiently for native windows terminal! What you guys think of the new announcement from Microsoft about the new terminal?
(in before *laughs in linux)1 -
Deploying django in windows server 2019 using IIS. Why? Because client is a microsoft fanboy. Nothing is working till now.13
-
Fuck you Microsoft for adding so many unnecessary fetures that nobody Needs/wants to use and which also slow down my pc.
I am specifically talking About that sily history-feature which is present for a few months now.
Guess what? I don't need it! Why? BECAUSE I DON'T USE EDGE SO THERE IS NO HISTORY TO LOAD. I DON'T USE (NEITHER I WAN'T TO) YOUR SLOW PHOTOS APP TO SEE IT IN THE WINDOWS HISTORY. I DON'TUSE ANY OF YOOUR SILLY INBUILT UWP APPS.
Since the update which added this feature, my pc is like 2 times slower, because it loads the whole last-5 months history.
Hey, thank you for nothing!1 -
Can we just for a moment recognize how absolutely fucked Windows update is?
I have done everything, EVERYTHING, outside of booting from a live Linux OS and permanently deleting the windows update executables. All this to stop windows from force updating and rebooting my system while it's locked.
I've killed services, schedules, edited the registry, changed group policy. I even set my wireless connection as metered. Fun fact about that, if MS deems the update to be "priority" they'll download it anyway and reboot, so fuck your data-cap.
I wouldn't have a problem with it IF they would put everything back the way it was before, but those fucking cucks can't even be bothered with doing that. But you bet your fucking sassy ass they start up all the bullshit services I disabled last update are all running.
I don't even know WHY I even try.
Doesn't matter anyway, in a few months I won't even be able to use half the tools I use on Windows for work due to licensing issues 🤷♂️
At that point I will give a big fucking finger to Windows 🖕 and use a VM for all the fucking work related bullshit.
Fuck you Microsoft, I would say it's been fun but you're a god damned disaster. I wish that I could send a message to the entire MS board on how much they have failed, but unfortunately I rather like my freedom and it's frowned upon sending rotting roadkill in the mail.23 -
Developer environment on Mac > Developer environment on Windows.
Just saying. Unless it’s for game development. Or for shitty server software development AKA Microsoft Server 2003.11 -
Made the mistake of restarting my pc at work this morning. Came up with configuring Windows, do not turn off.
30 minutes later, same message showing.
Despite message saying don't turn off, i had had enough and turned it off, think it would be completely broken.
Booted fine, no issues?!?! Thanks Microsoft.2 -
I hate windows, it f**king takes 10000 minutes to load microsoft edge browser on a newly bought laptop .21
-
After disabling windows firewall, my internet connection got congested. Enabling it again resolved the issue. What exactly does "wall" mean to you Microsoft?!1
-
There's been quite a commotion about Microsoft joining the Linux Foundation, and if you didn't think things could get any stranger, well, it is. Windows 10 Creators Edition will merge Windows 10 and Ubuntu 16.04. That's what you get for eating mushrooms.12
-
*Something wrong happens*
Windows - "Send crash report to Microsoft"
Me - "Really? That's your solution? Coz nothing ever got fixed😒"1 -
When you search for 'Microsoft startup program' and it only returns articles that show you how to add or remove startup programs from windows.
*sigh*2 -
so,a partnership with Microsoft to use Windows Phone as its primary operating system wasn't a mistake!? :P5
-
Microsoft loves to eat dick. They keep pushing fucking updates on me, While im working. Fuck windows, fuck microsoft. im doing work and all i get is a bsod straight to my face. Upgrade to windows 11 instead of windows xp, fuck that. Stop saying preparing automatic repair. Work micrsoft, instead f eating dick4
-
Microsoft is bringing native support for PWA on Windows 10, which can be installed through Store
Microsoft has changed. It is not the same old microshit people used to !love. Sad :(2 -
Today, I was thinking, "I haven't tried the new Edge Chromium version for so long. I should give it a try to see what's new have been added". So, I downloaded Edge and opened the EXE and Volla!
It says, You cannot use Microsoft Edge with an older version of Windows 10 (Mine is not that old btw).
I'm like, "F**k you Mircrosoft. You have ruined the OS so many times with your F**king updates. After trying so many things I finally disabled Windows 10's Force updates permanently. I don't wanna lose this freedom. No, Thank you..."
Bye bye microsoft Edge Chromium forever.4 -
That moment when Microsoft come to your college and give a pre-internship presentation talk and you can't ask them why the fuck is windows so fucked.2
-
That's like… every fucking browser in the world including the one you made, MS... wtf?
Microsoft Partner Center (aka Windows Dev Center) is a fucking joke.5 -
Microsoft was unable to attract users from Windows XP, and only because of that they started to share the free and great WannaCry add-on feature.2
-
Have to work on Windows for a DLL integration project, how does Microsoft managed to build something so disgusting to human eyes for all these years?
Dark mode in Visual Studio Installer is actually pitch black, hello? Common sense? Basic human-computer interfacing? Basic color scheming?
All these installations, frameworks, version management...
Why am I dipping myself into this bloatware shitshow?3 -
WHAT THE ACTUAL FUCK IS THIS SHIT.
In my opinion, companies attention to detail is one of the main things that I use to determine how good they are and if I should use them. This kind of thing where the FUCKING ENGINEERS IGNORE THE ISSUE AND REFUSED TO FIX IT is what really pisses me off. At least companies like apple ship working products while Microsoft is sitting here on their asses trying to make the most money with minimal effort by screwing over their users and repurposing their Windows phone OS for use on laptops. Read: http://answers.microsoft.com/en-us/...undefined fuck microsoft actual rant dumb interns engineers my ass fuck up windows attention to detail4 -
Wishing Happy Engineers day to all those idiotic-not-so-good-engineers working at Microsoft. Windows 10 is still the biggest horse-shit you'll ever see for an operating system.5
-
Hey Guys,
What do you think about Windows 10 shipping with a real Linux Kernel? Do you enjoy the love of Microsoft towards Linux? If yes, why?22 -
Remember when I said Windows 10 is kinda beautiful? It's not. Windows 10 is created to break our hard drives so that we'll buy new PCs. Fcking Microsoft.2
-
Hm... Windows 11 supported Android apps, and Microsoft Store will give devs 100% of sales.... For now....
Wonder if that includes in-app purchases....
But I sense the return of the Windows phone soon.... If this goes well....6 -
Microsoft should have pre-install Visual Studio Code on Windows Platform rather then Code Writer. What is the purpose of Code Writer, anyone?11
-
Just saw that Ubuntu 19.04 extended the live patching option to desktop users and we no longer have to restart the system after a kernel upgrade.
And here we have windows which restarts after every bloody security update.
How come Microsoft is such a big shit that they can't put a feature like this in WIndows. They definitely have the resourses and the people. I think they are just lazy and don't think it's "important enough"11 -
Msvcr100.dll you sack of shit, how many different exes to repair the 2010 c++ redistributable do I have to try just so I can install some bloody software.
Windows 10 ,Microsoft pls1 -
I just found out Microsoft scrapped Desktop Experience in the new Windows Server... Welp I guess there goes my plan for a shared Windows dev setup 🙄9
-
linux and microsoft taking their battle to another level.
(credits pic owners)
should be linux vs windows though but just for fun -
<rant>
FFS
Windows is the worst garbage ever...
First I get a virus becouse the antivirus didn't fucking work, then I try and do a system reset WICH FAILS, them u have to get into the uefi and do a system reset back to Windows 8, Windows 8..
So I go to the windows insider program and download the media creator thing and
.
.
IT DOESN'T WORK
It just stops at "searching for updates"and now I'm stuck with Windows 8
I can't even get the Nvidia drivers so i can't play games anymore
A big fuck you to Microsoft and merry Christmas
Btw any fixes? Thank you
</rant>9 -
Desperately waiting to get a new Mac air so I can stop using this ancient windows PC. "Microsoft Windows - This application stopped working. Do you want to close it?" honestly *eye roll*^∞
-
Microsoft Windows can burn.
I have this feature where I configure a remote API via some endpoints and the API pushes data back to some webhooks in my API.
Yesterday I set everything up for the final test; fired up my own API with some test data, added some configuration and started trace logging to ensure that everything works as expected when the remote site tries to send me data.
I was ready to collect ! Enter this morning: Windows have forcibly rebooted to install an update and shut everything down.
inb4 install Linux; No, I can not. Windows is company policy and I am required to use shit that is only designed for Windows.6 -
Anyone else get a real kick out of the fact that Microsoft has their own version control, but they still use Git for Windows?6
-
When you lose this great flow you had because of a child "calling from Microsoft". (I didn't use Windows since XP)
-
Windows Mosquito edition.
I guess they weren't happy with the current bugs and need more...
http://mspoweruser.com/microsoft-re...1 -
isARant()==idk;
I'm a linux fan (not fanboy) and I just discovered I can have a Microsoft Imagine account from my school and I don't fucking know if I want to use windows to learn Azure and .NET
I quite hate Microsoft for their privacy policies and their recent approach to windows
But it would be a shame not to learn that stuff
Any advice?
Fuck (to make it more ranty)5 -
The adventurous world of javascript and typescript never ceases to amaze me.
I'm investigating some paths to take for migrating this legacy project which has incurred some technical debt. Because of... reasons... even the frontend Vue project needs to be built on a Windows system. No, you can take your hands down, even wsl or docker aren't alternatives here. It's a long story and ties in with said debt.
I'm keen on rebooting the entire frontend using a newer Vue cli and scaffold up all the essentials like eslint and typescript which is currently not used. This is gonna be sweet.
Except, typescript (BY Microsoft) doesn't play well on a Windows (BY Microsoft) filesystem because of a recent change to support - get this - wsl. I can't decide if it's hilariously ironic or genius.
This response about sums up my current mood. https://github.com/Microsoft/...
Of course, further digging in other repos like node only turns up issues closed due to it being on Windows' end.
So now my readme has a troubleshooting section describing how to make changes to your filesystem if you run into issues in Windows and I want to go home.6 -
So until now the default env var User directory paths for Windows were all located under %userProfile%. To my surprise:
cd %userProfile%\Desktop
no longer works. Indeed, when you are even just signed in to OneDrive (which is the default, even if you disabled backups!), these retards decided it was a good idea to move all the standard library folders one level up to %userProfile%\OneDrive\ instead.
And the worst is that the locations continue to be swapped when you enable/ disable OneDrive.. WTF Microsoft7 -
After the release of Visual Studio for Mac, the last thing to make a deadlock between Microsoft and Apple is Xcode for Windows.
-
Can someone, anyone, explain to me, how can Microsoft get away with *charging extra* for additional concurrent RDP sessions on a self-hosted instance of Windows Server?
And not only that, but apparently also charges extra once the box gets over a certain amount of system users, too.
As a Linux admin that's used to working in teams over SSH, it just completely baffles me.
It would be terrible if such a practice was in free software... But a system, that one already *pays* for to run?
Or did I understand something wrong from a colleague that claims that this is the reason why I can't get an account on one of our Windows Servers?6 -
Microsoft ends support for Windows 7
Support for Windows 7 ended this week which means that security or software updates will no longer be provided by Microsoft.
Windows 7 will continue to run however it will be more vulnerable to viruses and malware. The best way to remain secure is to use the latest operating system available.
Microsoft have a dedicated webpage for user questions, next steps and detailed advice. 👇
https://microsoft.com/en-gb/...1 -
How to copy in Microsoft Edge by pressing ctrl+c one time only? Motherfuckers made copy/paste so fucking disgusting!6
-
Why the hell Microsoft browser support the standards created? The website which I had designed worked well in my mobile (Android) and PC (Ubuntu) then I just opened it in friends laptop which had windows 10 and guess what? Transition failed to work. Why the hell Microsoft? Why the hell?3
-
The Surface RT failed because of the lack of apps available. At least that’s what I heard.
Why didn’t Microsoft make a x86 compatibility emulator like Apple did when they were moving away from the PowerPC architecture?
Sure x86 apps would be slower, but if they distributed the ARM version of windows as well, made it available for the Raspberry Pi and all sorts of devices, I fell that would be a huge drive from ARM based processors.
The DirectX, Windows forms..etc. libraries could be recompiled by Microsoft, which would make graphically intensive programs run faster too. Did Microsoft just not think of a compatibility layer? Or is there some obvious reason I’m missing?2 -
I need to uninstall WSL from windows 10. And the Microsoft docs suggests that uninstall with 'lxrun' command then also in one of their reference pages it says that lxrun is deprecated for windows 10. tf4
-
I was wondering Microsoft deliberately made Windows 10 shitty so that users are forced to download them updates. Why would anyone do that? I don't know.3
-
Just lost every file i own... Fuck windows. I upgraded my nas, plugged backup hdd into windows machine, bsod, filesystem corrupt. Thanks Microsoft. These were important files. Unreplaceable.9
-
Just bought a new, cheap laptop for travel purposes.
It turns out I cannot start Windows 10 without giving Microsoft my phone number or an email. And the installator asks me if I agree to allow the apps to use „advertisement id”. It doesn’t ask if I like rough pegging.
Luckily, there’s a lot of temp e-mail solutions and I happen to have internet access on my other devices.
Then I have to spend 20 minutes uninstalling all the crap Asus preinstalled on MY computer. Seriously, when did I order „Asus Giftbox” or McAfee virus? The Asus-crap deinstalator displays a screen where I am asked to create an Asus account.
Question to apple funboys: is the experience the same when you buy a new Mac?12 -
Most of these windows lovers here exist just because windows haters don't have a solid reason and follow up on those who actually do have good reasons to hate windows.
Moral of the story: Don't hate windows just because you think all the devs hate it. Come up with some decent reasons to avoid gamers and microsoft warriors from crushing your rant.17 -
What a holy shit the fucking Windows File History and all the rubbish from the Microsoft installer files!! Is it so difficult to remove automatically the unnecessary packages!!! My SSD partition for Windows is completely full of rubbish!!4
-
A Client updated from Windows 7 to Windows 10. Wifi just won't turn on. Great, Microsoft! Thank you for this shit.11
-
Has anyone an idea how to make a Microsoft Surface Pro more "interesting"? Got one this week but I really don't like Windows. But I do like the ability to draw and write on it...7
-
The whole windows server + ms sql server ordeal is the biggest fucking joke I've ever seen in my time being a dev.
The ms sql dashboard uses a hidden user to access files and stuffs, so I spent 1 hour trying to make the dashboard's explorer to find the database dump file, only to find out that the file need to be owned by the hidden user. So
I spent about 1 hour trying to set the correct owner of the dump file, but to no avail, the explorer still couldn't pick it up. Then I spent another hour to set the correct owner for the containing folder. Finally, a 6 years old answer on SO point out that I should just put the fucking .bak file in their default folder, and voilà, the fucking thing works like a charm.
I can't get why Microsoft has to go out of their way making permission management on their os so fucking convoluted. The fucking usernames are a fucking mess, you have to go through a bunch of form to change just the owner of a file (please don't start me up with that running some command on powershell bullshit, I would rather deal with bad GUI than a badly designed CLI)
If I were to being positive though, Microsoft is actually one of a few tech companies having a good technical decision of moving their shits over Linux. -
Microsoft understands we're pissed about low QA performance on updates. They're gonna bleach the Start menu and add a couple more buttons to the UI. https://theverge.com/2020/7/...9
-
So yeah Microsoft, all your new windows 10 updates look great in theory, but I would rather you not burning my goddamn laptop!!! now the fan is crazy !!
-
When a Microsoft Surface Pro fails doing updates right out of the box, you know MS gives no shits about the quality of it's software.
-
tfw you predict a windows build fucking shit up more than usual 3 days early using twitter
5/29: https://forbes.com/sites/...
5/26:7 -
The usability of perfmon on windows sucks! There is just no way for me to increase the size of the lower section of the main window where all my counters are listed. This is fine if I'm monitoring only 4-5 counters, but, that is never the case. Hoping that microsoft does something about this.
-
Linux vs Windows (vs AnyOtherOS) | The Age Old Question
The short answer: It depends. And probably isn't even up to you to choose
The long answer:
No one's forcing you to choose. And you have more than 2 options. (The 3rd being... both. (Unless you're running out of hardware))
You have to mentally replace "Which is better? Linux or Windows?" with "Which one gets me sooner to a completed task that more closely matches the end-user's expectations"
If it's something you're developing for yourself, then use whatever the hell you want, because you know where you want that "finished product" to be used, and in what manner.
But often, everyone around you and their cats are not using what you're using
Have to write a document? Oh.. there's this blue program thingy (no one talks like that), I think it was called "Microsoft Word"
Oh, you don't have that?? How the hell do you edit documents then?
~ Some employer still using MS Word 2009
"I'll send you the PSD", "Make it a PSD", "You need the PSD file for reference, right?"
psd? More like PTSD at this point
It's like Photoshop is suddenly the only way to edit images, oh.. and Paint.
* Use paint. I don't care. If it gets the job done, do it.
Hate Photoshop? Love Gimp? Too bad.
When that god forsaken PSD is emailed to you, you better have a copy of Windows and Photoshop just in case it looks like garbage in.. OR OUT of gimp..
Bottom Line:
Don't use what people use. Just have everything ready in case your boss still uses MS Word 1839 and you want to ENSURE, it'll look the same on his screen
*It's wrong to limit yourself to just ONE SINGLE OS2 -
WinUI looks nice and performs really well, I'm not a Windows fan but that's definitely a hidden Microsoft gem. It's a same which Microsoft was really late to the desktop development game and kept providing ugly frameworks until few years ago otherwise we could had a nice ecosystem on desktop apps on Windows as we have on macOS instead of tons of ugly and slow Electron based apps.3
-
after seeing this -> https://theverge.com/2018/9/...
I feel so frigging great that i ditched that abysmal piece of $h1t long ago!2 -
Microsoft support number is also known for the Microsoft Office suite, Internet Explorer, Microsoft Windows, Operating Systems and the gaming console flagship is also tied up with the Microsoft support phone number. You can get the details at the Microsoft support number. If you are unable to resolve the issues even after reading the solution given on the website, you will get the chance to communicate with the Microsoft customer support number third-party service provider as well.
https://customerserviceshelpnumber.com/...2