Slashdot Mirror


User: The+MAZZTer

The+MAZZTer's activity in the archive.

Stories
0
Comments
2,451
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,451

  1. Re:Time to decommission desktop? on Google Kills Desktop Search and Gadgets · · Score: 1

    I really don't like this development. Desktop apps tend to be really buggy and never really work as required. Either the feel is slow, you accidentally click somewhere or do something that loses all your work and most of the just doesn't feel as good as desktop app. I can't see anyone serious moving from Google's web-based offerings to Microsoft Office.

    This is more accurate IMO. Have had tons of problems with Office at work, especially trying to collaborate on documents (can only use Excel, not Word, can only see others' changes when you save, periodically sharing will be turned off somehow by accident, etc). When I try to change the foreground color of text in Excel, the whole app locks up for 15 seconds or longer. If a virus scan happens to be running everything goes even slower. I really wish we could use Google Docs (can't, proprietary information and all that, we could probably get some sort of local copy with an enterprise license surely though?), the collaboration features are awesome. And the great thing about web apps, at least Google's, is that they do autosaves so your data is safe. Plus managing data backups etc is on their end, and you know they gotta do a better job than we do on our own personal data!

  2. Re:But on Windows 8 Desktop 'Just Another App'? · · Score: 2

    You're thinking of Star Trek movies.

  3. Re:Er- why? on German Ban On Doom Finally Lifted · · Score: 1

    Wolfenstein actually had a German release. Stripped all the nazi references and everything (I think the enemies are zombies or something now).

  4. Re:Totally Legit, Easily Abused on The Pirate Bay Founders Go Legit With BayFiles · · Score: 1

    You could say the same for any upload site; the problem is when links to copywritten content are shared publicly. Of course then it makes it possible to find and send in a DMCA takedown request.

  5. Re:You're wrong about addons on Updated: Mozilla Community Contributor Departs Over Bug Handling · · Score: 1

    There is an addon compatibility tool that you can use to force addons to be enabled, a lot easier and more user-friendly. It is still more of a tool for people that know what they're doing.

    Also pretty sure there's some sort of functionality in the addons.mozilla.org site that will automatically update addons to declare compatibility if they don't use any APIs that were changed, or something like that.

  6. Re:Terrible summary & headline on Estimated Transfer Time Is No More In Windows 8 · · Score: 2

    The problem is that the progress dialog pre-Vista does not know how many files there are as it starts, so the progress bar may go quickly for a bit then slowly for another bit as it encounters folders with few small files and folders with many large files, respectively.

  7. Re:BIOS password on Researchers Report Spike In Boot Time Malware · · Score: 0

    Modern OSs bypass the BIOS when accessing hardware such as hard drives, where the MBR is stored.

  8. Huh? on Zombie Cookies Just Won't Die · · Score: 2

    OK so the article cites localStorage as a problem, but Chrome at least treats it the same as cookies when clearing private data, and in incognito it shouldn't persist localStorage data across sessions (not sure about other browsers).

    It also mentions that MS was sticking a JS file in the browser cache to recreate a cookie. This doesn't make sense since any file removed from the cache is just redownloaded, unless a custom version of the JS file is crafted for every client and is set to create a specific cookie value (but this isn't clarified in the article). But it sounds more like ETags are used, having nothing to do with the JS file being cached or not. I'm not sure how ETags work but I can't imagine they would be effective in incognito mode either since cache is never kept (and the article infers this is necessary).

    Did I miss anything?

  9. Re:NSS Labs: The best studies money can buy on IE 9 Beats Other Browsers at Blocking Malicious Content · · Score: 2

    To be fair I can imagine a lot of Firefox users not even knowing add-ons exist.

  10. Re:And who paid for this study? on IE 9 Beats Other Browsers at Blocking Malicious Content · · Score: 1

    Chrome actually has built-in support for basic NoScript-like behavior. Block all JS and Plugins and you can whitelist sites from the omnibox. Only downside is, unlike NoScript, you only whitelist the domain in the address bar to allow ANY origin script/plugin embedded in it, including ads and tracking scripts and the like. This is also a problem when you have sites like ytmnd or deviantart with tons of domains, but you can always go into options and add a blanket whitelist for the whole domain.

  11. Re:Shut it all off! on BART Keeps Cell Service Despite Protests · · Score: 4, Insightful

    But how far can this logic take us? Let's just shut off water and electricity to the properties of people we don't like. Nothing in the constitution that says they have a right to be able to purchase those services. IMO at some point, conveniences become widespread enough that we start to rely on them, and the providers of that service can then exact control over us by restricting or controlling this service, which previous to our reliance might not have mattered so much.

  12. Re:Of course on Wall Street: Software More Valuable Than Oil · · Score: 1

    Depends on whether or not your boss is understanding of you not showing up for work because there's no gas for your car...

  13. Re:VirtualBox on After Complaints, VMware Revises VSphere 5 Licensing · · Score: 1

    VirtualBox is not the same as vSphere. You're thinking of VMWare Player or Workstation. I believe Windows Server's Hypervisor is a similar type of thing to vSphere though (I haven't used hypervisor stuff so I don't know) and someone else in these comments mentioned Linux's Xen.

  14. Re:Germans and humour... on DOS, Backdoor, and Easter Egg Found In Siemens S7 · · Score: 1

    At least the US government requires all software features be fully documented, and easter eggs, by their very nature, tend to qualify as an undocumented software feature. This is why MS doesn't tend to put them in anymore.

  15. Re:I looked at .NET briefly on Was .NET All a Mistake? · · Score: 2, Interesting

    This won't happen anymore (ideally). Pretty much the whole point is to eliminate (as much as possible) buffer overflows, invalid memory accesses, memory leaks, and other low-level bugs that easily pop up in C++ programs. .NET abstracts away dealing with low-level pointers, everything is "managed" by the framework so it is freed when no longer used (it is still possible to leak memory by keeping references to things you don't use anymore, but the framework can only do so much for you), and various attempts to attack your program with buffer overflows etc to run shellcode wouldn't work because your high-level program doesn't deal with pointers, and .NET internals will stop buffers from overflowing (etc). Oddly enough I have seen my own programs I build crash on launch after a while of not working on them, but a recompile always fixes it. Otherwise I have never seen a .NET program crash unless I did something dumb with unmanaged code.

    You largely don't have to worry about that sort of low-level stuff and you can just go build your program (the exception being .Disposing some objects helps with garbage collection). Plus you have a ton of useful libraries already included. Want to pull a file from the web? No problem, create an object to represent your request, a callback to handle the response object, then send it out. Want to parse XML? One function call and you're left with a tree of XMLNode objects to walk. Maybe you can find amazing libraries for C++ but you're starting from scratch (well you had to at one point, at least) and have to check licenses on them all, etc. With .NET you start off with a good base of libraries you can use in your apps for free.

    I also love the Window Designer tool in VS, though various Window toolkits for C++ offer similar things IIRC, I just like how I can pull together a skeleton class for my form and begin coding basic functionality immediately.

  16. Re:Overhead issue on Was .NET All a Mistake? · · Score: 1

    You mean the runtimes that are shared between all .NET applications? How about the buttons that look just like all other Windows buttons, unless the PROGRAMMER screws them up (which is a lot harder to do after 1.1, where it was easy to miss visual styling).

  17. Re:USB Stick??? on Raspberry Pi $25 PC Goes Into Alpha Production · · Score: 1

    Likely it means the form factor is of a USB stick. I would imagine it needs at least an HDMI port, a USB port, and some sort of power input.

  18. Oh cellphones have Zelda now? on Nintendo Slashes Profit Forecast and 3DS Price · · Score: 1

    No? So why should Nintendo be worried if they have a monopoly on a ton of popular franchises?

  19. Re:Location proves nothing on Police Increasingly Looking To Smartphones For Evidence · · Score: 2

    Ah but if the phone is taken from the suspect, it would seem likely. Smartphones are fairly expensive in terms of both money and investment in a phone contract, so people tend to not leave them laying around I would think.

  20. Re:This can't be!! on Watch Out Linux, GNU Hurd Coming · · Score: 1

    It's still a nightmare, HL2 episode 3 is still nowhere to be seen.

  21. Suspending users for not using real names? on Google+: Tools, Names, and Facebook · · Score: 4, Funny
  22. Ummm on Microsoft Pulling the Plug On Windows XP In Three Years · · Score: 5, Funny

    It can't help XP users pass the time since it requires Vista or 7!

  23. Re:TrueCrypt FTW on DOJ: We Can Force You To Decrypt That Laptop · · Score: 1

    Or it can be an OS that pretends to boot while it does something sneaky, like deleting any incriminating evidence.

  24. Re:Pah on Banks Faulted For Fake Antivirus Scourge · · Score: 2

    Unfortunately, you can't patch users.

  25. Re:Google+, the social network you cannot join! on Google To Rebrand Blogger & Picasa For Google+ Integration · · Score: 2

    I suspect they are being exclusive so they don't blow up their servers before they are sure they can handle the load.