57.10 Acceptable Use; Safety-Critical Systems. Your use of the Lumberyard Materials must comply with the AWS Acceptable Use Policy. The Lumberyard Materials are not intended for use with life-critical or safety-critical systems, such as use in operation of medical equipment, automated transportation systems, autonomous vehicles, aircraft or air traffic control, nuclear facilities, manned spacecraft, or …
Tag: fun
Screenshot Of The Day
uhm… what should I choose? This very useful dialog pops up when you aren’t an administrator on Windows 2003, annoying you until you decide that it’s time to reboot. Or find someone that can do it, that is. I guess it deserves an UI Design Award 😀
Don’t shout at your hard drives!
It appears that hard drives don’t like it… It also proves that some sysadmins have far too much time to spare. 😉
If at first you don’t succeed… try, try again…
Here’s another interesting piece of code I’ve just dug up in a C# application I’m reviewing. If you can come up with a bright idea about what those try/catch blocks are supposed to do, you’ve got more imagination than me… 😉 123456789101112131415161718192021222324252627282930class Foo { private int bar; // ...snip... …
Don’t code like this at home, kids
Sometimes when you’re reviewing someone else’s code, you find interesting pieces of “art“. Like the following loop construct in a C# application: 123456789101112 int i = anArray.Length - 1; while (true) { if (i < 0) break; …