Ranter
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
Comments
-
The only true ones are solution finder and IE.
Because Windows ≠ IE, only solution finder is true.
Haha funny ecks dee :/ -
@HAlex Your rant is not really understandable for me because:
- Windows doesn't crash applications if you have repeated keypresses/mouse button clicks
- taskkill /f /im <ProcessName>.exe actually terminates the task
- Internet Explorer isn't really a part of the system (it's used by other apps sometimes, but you can uninstall it if none depends on it, and even if, it's not Windows fault, thus none of IE's problems are Windows' problems)
- Windows fulls shuts down after ~10 seconds,
here, with "fast startup" turned off
- You don't point out actual issues, such as inconsistencies, mixed translations, bad translations for some languages, Windows' weird mixing and linking of userland and kernel, thus creating thousands of vulnerabilities, ...
I see that you hate Windows, but if you feel the need to be a "haha windows is shit xddddddddddddddd", at least talk about issues that aren't from Windows ME. -
HAlex27817y@filthyranter I HATE WINDOWS!?!?
I actually love Windows, specially XP, 7 and 10
The rant was supposed to be a joke, not a "issue reporting" for Windows -
-
HAlex27817y@filthyranter well, to be honest the only real issue I've got with Windows 10 are some casual really rare crashes (bsod).
Luckily JetBrains products save files aromatically -
HAlex27817y@filthyranter probably true, happened 2 times on the desktop, lot of times on the old laptop, never on the newer one.
Related Rants
Windows:
// Find for a solution
crashChecker.findSolution() {
wait(10000);
}
// Close app if pressing letters 30 times in a row, do the same for mouse click event
keyboardEvent.preLoad(countRow, app) {
if (countRow > 30) {
app.whiteOverlay();
app.crash();
app.close();
}
}
commands.kill(pid) {
App app = findByPid(pid);
app.askFor("ALT+F4");
}
// Render a page in IE
internetExplorer.renderPage(content) {
if (content.type == "json") {
return renderAs(content, "html");
}
if (content.type == "html") {
supportedElements.cutByHalf();
if (supportedElements.length > 20) {
bsod(Error.Memory);
} else {
wait(1000 * random());
return renderAs(content, "html");
}
}
commands.shutdown() {
int delay = 0;
if (apps.length) delay = 30;
if (updater.hasUpdates()) delay = updater.length * 40;
maybeShutdown(delay);
}
rant
scripts
windows
commands