Slashdot Mirror


User: AlgorithMan

AlgorithMan's activity in the archive.

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

Comments · 949

  1. but no surprise on Ballmer Scorns Apple As a $500 Logo · · Score: 1

    If I worked at Microsoft, I probably would also have the impression that software was worthless...

  2. How will this be technically possible? on Look Out, Firefox 3 — IE8 Is Back On Top For Now · · Score: 1

    Each tab is isolated from the others, so if one tab crashes, the entire browser doesn't go down. You can then restore the crashed tab, and when you do, it reloads with the information that had been in it when it crashed, such as a partially written e-mail. And if you were watching a video, the video will start playing at the point the tab crashed, not at the beginning of the video.

    so to run the video from the point where it was, the browser has to know, what position that would be. afaik adobe flash, quicktime, realplayer, java etc. don't interact with external software very much... so the interface, that is necessary for this feature, is giving silverlight and windows mediaplayer a headstart?

    antitrust lawsuits, anyone?

  3. Re:ZOMFG!!! on Conficker Worm Asks For Instructions, Gets Update · · Score: 2, Insightful

    hey, thats around 1.37 infected linux machines per day... i feel so ridiculous now, that i mocked the far over 35,000 infected windows machines per day... okay, there are more windows machines - say 1% linux, 90% windows, so if linux was as spread as windows, it would have been 123.3 infections per day - making windows JUST 283 times less secure than linux...

  4. ZOMFG!!! on Conficker Worm Asks For Instructions, Gets Update · · Score: 2, Insightful

    ZOMFG!!!
    a linux virus infected 3500 machines 7 years ago!?
    man, you put me to silence about win-vs-linux security!

    I will instantly stop mocking windows for the dozens of botnets that spawn every day and have several hundred million PCs infected so far and infect tens of thousands of PCs every day...

  5. pro-linux.de has more detail on French Police Save Millions Switching To Ubuntu · · Score: 1

    according to http://www.pro-linux.de/news/2009/13904.html this reduced their IT-expenses by 70%

  6. how often can they tell this lie? on How Vista Mistakes Changed Windows 7 Development · · Score: 1

    "yes, we know the newest windows version is crap - but we listened to our customers and now we know what we did wrong and the next version will be great!"

    how often have we heard this? are people really THAT stupid to believe the same shit over and over again?

    "well I assume I can wait 2 years and pay 270$ for the next windows version to end my agony - at least thats better than getting used to a different OS..."

    sometimes I just want to slap people in the face for their stupidity!

  7. Why is it that... on UK Government Wants To Kill Net Neutrality In EU · · Score: 3, Insightful

    Why is it that every time I read "UK" in a news headline I instantly think "what stupid nazi-like decision did these idiots make this time?"?

    And why is this sense of forboding always correct?

  8. Re:What politians think is not the problem. on Calif. Politican Thinks Blurred Online Maps Would Deter Terrorists · · Score: 1

    They are so much like pointy-haired bosses...

  9. Re:Why not use a wrapper class? on Null References, the Billion Dollar Mistake · · Score: 1

    I meant
    void new(const T& x) { pointer = new T; *pointer = x; }

  10. Why not use a wrapper class? on Null References, the Billion Dollar Mistake · · Score: 1

    Once I've written a class for arrays, where you could turn range-checking on and off by a compiler-directive (so turning it off kicked the range check out of the binary code, making it fast again). This gives me the Idea of making a wrapper class for pointers - something like

    #define nullpointer_safety
    template<class T> class Pointer {
       private:
          T* pointer;
       public:
          Pointer(T* p) { pointer=p; }
          Pointer(const Pointer<T>& p) { pointer=p.pointer; }
          Pointer() { pointer=NULL; }
          // Might include garbage collection
          bool operator=(const T* p) {return pointer=p;}
          bool operator=(const Pointer& p) { return pointer=p.pointer; }
          bool operator==(const T* p) {return pointer==p;}
          bool operator==(const Pointer& p) { return pointer==p.pointer; }
          bool operator!=(const T* p) {return pointer!=p;}
          bool operator!=(const Pointer& p) { return pointer!=p.pointer; }
          void new() { pointer = new T; }
          void new(T x) { pointer = new T; pointer* = x; }
          void delete() { delete pointer; }

          T& dereference() {
             #ifdef nullpointer_safety
                if(p==NULL) {throw "trying to dereference a null-pointer";}
             #endif
             return *pointer;
          }
    };

    // examples:
    // Pointer<int> w; w.new(3);
    // Pointer<int> x = new int; x.dereference() = 5;
    // Pointer<Pointer<int>> y = &x; std::cout << y.dereference().dereference(); // writes 5 to stdout
    // Pointer<int> z; if(z!=NULL) { z.dereference() =  7;}
    // z.dereference() = 3; // throws an exception
    Although I'm not sure if this works with function-pointers...

  11. That's no Flamebait! on US Antitrust Judge Examining Windows 7 Documents · · Score: 1

    Nobody, who has ever programmed windows apps on API level, would tag this comment as "flamebait", but "insightful"! It's atrocious, I tells ya! and just go to MSDN and try to find ANYTHING you want there! forget it! I spent weeks reading the CRAP articles there (and I'm a graduate computer scientist who has studied at an elite university!) and still can't do stuff in windows that would require 1 line of bash-script!

  12. don't forget that... on US Antitrust Judge Examining Windows 7 Documents · · Score: 1, Insightful

    Shortly after the break-up order was rescinded, George W. Bush came into office and all efforts to obtain a reasonable remedy were dropped

    And don't forget that this happened right after Microsoft heavily "funded GWB's election campaign".

  13. THE FREE MARKET!? on US Antitrust Judge Examining Windows 7 Documents · · Score: 1, Interesting

    That's how the free market works

    if you seriously think, that the OS market was free, then you obviously don't know about Windows Refunds.
    If you speak german, read this article where VOBIS (german pc vendor) describes exactly how Microsoft blackmailed them to make them stop selling any OS except windows and not tell anybody about this.
    also read how microsoft tried to kill linux by silently funding SCO's lawsuit against major linux distros.
    If you actually think, the OS Market was anywhere near "free" in the last 24 years, then you have no freakin clue about what you're talking and should just STFU!

  14. I wonder... on MS Excel Users Susceptible To New Vulnerability · · Score: 1

    I wonder what the world would be like, if the law forced every software manufacturer to notify their users about known vulnerabilities - how severe they are and how long they have been unfixed... maybe have a widget on the desktop, showing the top 20 very severe, unfixed vulnerabilities... I think I would bet my life, that windows would hardly exist on the market anymore...

  15. just use freenet on Combining BitTorrent With Darknets For P2P Privacy · · Score: 1, Informative

    just use freenet together with frost

    this is an index of all (?) "freesites" - you can visit as soon as you have freenet running

    for linux users:
    wget "http://downloads.freenetproject.org/alpha/installer/new_installer.jar"
    java -jar new_installer.jar
    cd "/path/to/freenet/"
    ./run.sh restart
    mkdir frost
    cd frost
    wget "http://mesh.dl.sourceforge.net/sourceforge/jtcfrost/frost-04-Mar-2008.zip"
    unzip "frost-04-Mar-2008.zip"
    chmod +x frost.sh
    ./frost.sh

    you need to have java and I don't remember whether you need to run this as root. iirc you don't. The filename from the sourceforge link will vary - just check http://sourceforge.net/project/showfiles.php?group_id=25070

  16. Nope on Is the Relational Database Doomed? · · Score: 1

    The treat of Key/Value stores to Relational Databases is about as big as the threat of Visual Basic to C++. Yes, they're easier (so average script-kiddie posers might prefer them), but for many applications (especially in the pro business) they're just noch powerful enough.

  17. Re:turn tables on How To Argue That Open Source Software Is Secure? · · Score: 1

    Microsoft needs to comply to $standard to be accepted by $someone?

  18. Re:turn tables on How To Argue That Open Source Software Is Secure? · · Score: 2, Interesting
    if the BSD code is completely gone now, why does vista and the win7beta still have the

    C:\Windows\System32\drivers\etc

    Directory? And why does that Directory contain files that have the exact same syntax as the files found in BSDs /etc Directory? even the names are the same, plus the comments in these files start with a # which is common in unix-systems (like BSD), but completely unusual for Microsofts Syntaxes...

  19. Re:New for Windows 8! on Average User Only Runs 2 Apps, So Microsoft Will Charge For More · · Score: 1

    PayPal?
    you don't know microsoft very well, do you?

    they would create a cheap immitation of it and force on to you... and it would require ActiveX AND Silverlight AND IE8...

  20. TFA is a FAKE! on After Monty Python Goes YouTube, Big Jump In DVD Sales · · Score: 4, Informative

    TFA http://www.slashfilm.com/2009/01/23/free-monty-python-videos-on-youtube-lead-to-23000-dvd-sale-increase/
    refers to http://mashable.com/2009/01/22/youtube-boost-sales/
    which allegedly refers to a mashable news from 01/21/2009, but the linked site http://mashable.com/2009/01/21/youtube-click-to-buy-overlay-ads/
    has NOTHING to do with amazons bestseller lists AND there was no mashable news on 01/21/2009 about amazon at all. see http://mashable.com/page/2/ and http://mashable.com/page/3/

    moreover none of amazons "Movies & TV" bestseller lists http://www.amazon.com/gp/bestsellers/dvd/ref=pd_ts_d_ldr_dvd/183-1981496-3747918 or sublists (links on the left side) has a monty python title (if it was no. 2 on 01/21/2009, like the first mashable "news" claims, then i don't think it would have been out so fast)
    also the "news" doesn't mention, WHICH title was no. 2 in the bestseller list, but I think amazon's search-results are sorted by Sales Rank and the highest one in the search-results for "monty python" is http://www.amazon.com/dp/B0009XRZ92 on rank 755 in Movies & TV.

    i think, the whole article is just made up.

  21. That's totally easy! on How To Diagnose a Suddenly Slow Windows Computer? · · Score: 3, Insightful

    the diagnose is: the computer has the windows

  22. Yeah, that'll work... on EC Considering Removing Internet Explorer From Windows · · Score: 1

    people will buy this - just like they bought the windows version without mediaplayer...

  23. Oh boy, 3D Realms is in DEEP trouble! on Scientist Patents New Method To Fight Global Warming · · Score: 1

    Oh boy, 3D Realms is in DEEP trouble!

  24. GOD, what a relief on UK Cops Want "Breathalyzers" For PCs · · Score: 1

    if such an idiot is "One of the UK's top cyber cops", then what the hell are we ever worried about? how are they supposed to build a surveillance-state with such bright experts like him?

  25. TAKE THE OFFER! on Warner Music Pushing Music Tax For Universities · · Score: 1

    but put a clause in the contract: the universities should pay for every distribution THAT THEY DETECT - i.e. they wouldn't have to pay for files that were shared through encrypted filesharing, but the students would still be off the hook HAHA!