Slashdot Mirror


User: koro666

koro666's activity in the archive.

Stories
0
Comments
38
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 38

  1. Re:Um on Windows 95 Almost Autodetected Floppy Disks · · Score: 1

    You are incredibly lucky you didn't fry anything.

    Once you let the magic smoke escape, it's quite hard to put it back in!

  2. Re:cool, but... on Baby Chicks Have Innate Mathematical Skills · · Score: 1

    Not if you enable backface culling... :)

  3. Re:Article is WRONG... on California May Reduce Carbon Emissions By Banning Black Cars · · Score: 1

    Mod parent up.

  4. Re:100% agree on Did the Netbook Improve Windows 7's Performance? · · Score: 1

    I honestly want to know why vendors don't use MSI.

    Because there's no good way to make MSI's easily.

    On one side, there are probably plenty of GUI apps to make MSI files. A basic one comes with Visual Studio, but you just don't have control enough over what it does. There's InstallShield too, but it's pay-for, and kinda heavyweight.

    On the other side, you have WiX which attempted to be a scripting language to make MSI's, but that failed spectacularly IMHO. You have to declare in advance components, paths, files, and assign GUIDs to every single thing, it's a bother. Oh, and, all this, and you don't even have a GUI for your installer, just the "Please wait, Windows is configuring blah blah" dialog.

    GUI support in MSI's seems to have been an afterthought.

    And don't even get me started about trying to do it from scratch using Orca.

    So, by the time I'd be done fighting with whatever restrictions the tool I'd have chosen would put in front of me, I could have whipped an NSIS installer script in 10 minutes with complete Modern UI and such.

  5. Re:Or maybe you're pulling that from your ass on Did the Netbook Improve Windows 7's Performance? · · Score: 1

    7) I'm not going to rename a million files or folders at this point. I'll just live with it and get annoyed.

    May I suggest a few things to put in your .inputrc:

    set completion-ignore-case on
    set show-all-if-ambiguous off
    Tab: menu-complete

    Basically, this will make it act more like cmd.exe in the respect of completion: just type a few letters, then hit Tab until you got the filename you wanted.

    bash's default behavior of beeping as soon as it's not sure annoys the hell out of me.

  6. Re:Or maybe you're pulling that from your ass on Did the Netbook Improve Windows 7's Performance? · · Score: 5, Insightful

    Such as force users to give up applications that ran perfectly fine under previous versions of Windows.

    They ran perfectly fine because Windows let them get away with whatever dirty tricks they were doing — which wasn't the case with Vista anymore.

    Give me an application that is coded correctly and that does not try to be "more clever" than the operating system by using undocumented structures, functions, registry keys or whatever else, and I'll show you an application that runs fine on Vista.

  7. Re:And? on Adobe Fixes Recent PDF Flaw, But Not Before Auto Exploit · · Score: 3, Informative

    It was vulnerable also, they got the patch out quicker.

    Thanks for mentioning it, I just updated it as well.

    At least though, Foxit does not install itself as a stupid browser plugin, so PDF files aren't automatically opened with it... (although they now have an optional plugin to do that, let's just hope it stays optional)

  8. Re:Do people even still use Acrobat Reader? on Adobe Fixes Recent PDF Flaw, But Not Before Auto Exploit · · Score: 1

    Also, stop fucking advertising for foxit.

    What's so bad about getting the world to know about a good alternative?

  9. Sad on What Has Fox Got Against Its Own Sci-Fi Shows? · · Score: 1

    Since Terminator has been moved to Friday night, that is, since the half-season "restarted" in Februrary, it's been crap.

    Too much emotional bullsh*t. I hate Riley. I hate the actress which does John's mother. Linda Hamilton from T2 was so much more kickass. Nothing good has been happening since Cromartie's dead except some ghost "UFO-chasing", which is jumping the shark IMHO.

    It could have been much more better. Terminator fights, chases, explosions. Show more metal, they are robots FFS! My favorite scene to this day is still that part when Cromartie shows his skeleton to the doctor before they redo his skin. Also, the whole Catherine Weaver/Zeiracorp part could have gotten more violent/important but instead you have Ellision spewing Christian indoctrination all the time and nothing happening.

  10. Do people even still use Acrobat Reader? on Adobe Fixes Recent PDF Flaw, But Not Before Auto Exploit · · Score: 3, Insightful

    I've been using Foxit Reader for almost 2 years now.

  11. Binary release? on FFmpeg Finally Releases Long-Awaited Version 0.5 · · Score: 1

    Why is there never a stupid binary release?

    I don't want to setup a build environment (which is probably custom, and would possibly require me to go and get ALL the libraries it uses) just to get one final EXE to stick in my "utilities" directory...

  12. It's normal on Vista SP1 Is Even Less Compatible · · Score: 5, Insightful

    People are quick to slam Microsoft again here. For those reading TFKBA, most of the apps are either:

    1. Anti-virus programs. AV programs have a reputation of hooking on undocumented kernel stuff, so of course a major OS update is going to break them off.
    2. Other programs which abuse undocumented functions or quirks/bugs in Windows, and these get changed/fixed in a subsequent release.

    In conclusion, move along, nothing to see here.

  13. Don't use anything on Simple Windows Development Tools? · · Score: 1

    I'm quite surprised nobody has yet suggested to just code the application using nothing special (no runtime at all), only directly the Windows API.

    It's the way to go to create small & fast executables that need nothing to run.