Slashdot Mirror


User: UfoZ

UfoZ's activity in the archive.

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

Comments · 58

  1. Re:Language Independent! on 6 Languages You Wish the Boss Let You Use · · Score: 1

    The cool thing about that program is, it's a proof-of-concept for that guy's research paper on how to generate Malbolge code that does something.

    http://www.sakabe.i.is.nagoya-u.ac.jp/~nishida/DB/pdf/iizawa05ss2005-22.pdf

    Just to add to the obfuscation, the paper is in Japanese.

  2. How is this news? on New Method for Rendering Particles Outlined · · Score: 2, Insightful

    Soft/volumetric particles have been around for a long time now. The DirectX 10 sample implementing this technique is from June 2006. NVidia's whitepaper on it [1] is dated January 2007. Both of them offer a much better explanation than TFA with its crude ascii diagrams and wall of text (and having to click "next" a bunch of times, ugh).

    [1] http://developer.download.nvidia.com/whitepapers/2007/SDK10/SoftParticles_hi.pdf

  3. Re:Perfect timing on Japan to Start Fingerprinting Foreign Travelers · · Score: 1

    Yes, that's the point - but even for regular non-terrorist stuff, the overwhelming majority of criminals in Japan are, surprise, surprise, Japanese nationals. Foreign crime just gets more attention for some reason (easier to blame, I guess...?)

  4. Perfect timing on Japan to Start Fingerprinting Foreign Travelers · · Score: 4, Interesting

    ...for all of us gaijins going home for the holidays! Needless to say, I'm not pleased.

    Bonus points for this idiot minister using a bullshit "a friend of a friend is in Al Quaeda, therefore all foreigners are dangerous" claim to justify this crap.

  5. Re:they make fun of us too on Why Japan Leads the Mobile World · · Score: 1

    You are aware that that video is a failed viral marketing campaign by Western cell phone OS vendor Symbian inc., right?

    And it's pretty much a load of bullshit. Japanese phones are nothing like that.

  6. One camera only... on Realtime ASCII Goggles · · Score: 5, Insightful

    ...means you lose depth perception.

    Nice gimmick, though.

  7. Huh? No. on The Final Days of Google · · Score: 1

    No matter how good those "rejected ideas" are (and I doubt that Google would be rejecting them out of principle if they were truly good or groundbreaking), no startup made of geniuses will ever be a threat to any of the giant companies, let alone Google. If there ever was such a startup, one of the giants, most likely Google itself, would rush to buy it back the moment it started looking promising (see youtube and the like).

  8. Re:Will they actually do it? on AACS Device Key Found · · Score: 1

    Apples and oranges. You don't put mass-produced read-only media into cell phones.

  9. Re:Idiot. on Student Makes a Million Online, Gets Deported · · Score: 2, Interesting

    As a foreign student living in Japan, I have to say you're overreacting way too much.

    Overstaying your visa, working under the table (especially Americans teaching English), etc is very common over here. The police generally don't give a fuck (and can't), unless they want to make an example of you like for this Chinese guy. Channeling millions of yen out of the country, legally or not, is one of the things that WILL piss them off.

    ps. Nice ad hominem there on the internets, good job. "Durr hurr hurr you must be American lololol."
    pps. I'm not American.

  10. wtf "Media Immersion Pods" on Examining Tokyo's Media Immersion Pods · · Score: 5, Informative

    What a fancy and pretentious name for a manga cafe.

    These are all over the place, nothing special, and a good cheap way to spend the night if you missed the last train or don't have a hotel. You get your own cubicle with internet access or a console, you can read manga or watch a movie or surf the net, whatever. Plus free refills for soft drinks.

    It's nice but I don't see what the big deal is.

  11. Re:Unfortunately... on GP2X Surpasses Expectations · · Score: 1

    But your numbers do lie!

    CPU speed
    PSP = 2x 333MHz CPU + GPU
    RAM
    PSP = 32MB RAM + 2MB VRAM + 2MB DRAM
    Internal Memory
    PSP = 32MB flash
    I'm not even remotely familiar with the DS so I can't add anything to that part. But quit spreading misinformation. The GP2X is an awesome little machine and it's great how it encourages homebrew development, but don't claim that it's more powerful than the alternatives when it isn't! Specifically, the lack of hardware 3D acceleration is the major drawback that I see.

  12. Image handling exploits can be good, too on Image Handling Flaw Puts Windows At Risk · · Score: 2, Informative

    Maybe it's a bit ironic that sometimes exploits like this can be considered "good" - for example, just recently a buffer overflow vulnerability in libtiff opened up the way to running homebrew code on the PSP 2.0 firmware. Of course, Sony patched up the hole in the next update.

    Fortunately, PSPs aren't getting remmotely compromised over the internet (yet?...) Windows boxes are a whole different story, though :)

  13. Re:Uh, it's been out. on Quake 3 Source Code to be Released · · Score: 1

    That's the game source and it's been out for years, genius.

    Id is planning to release the entire engine source this time, much like they've done with Quake 1 and 2 and various other older games.

  14. Re:Not all Firefox users will be affected on Spoofing Flaw Resurfaces in Mozilla Browsers · · Score: 1

    Doesn't work for me either, with 1.0.2 and Tab Mix. (yes I should be running a newer version by now)

  15. Re:Do the math (some what ifs) on Opera's CEO to Swim From Norway to the USA · · Score: 1

    And it's up to us to make sure he swims! Here's me doing my part:

    $ for ((a=0; a<999999; a++)); do echo $a; wget http://www.opera.com/download/get.pl?id=26712; done

  16. Re:Not actively deleting cookies on New Technique for Tracking Web Site Visitors · · Score: 2, Informative

    And here's how to properly block the popup in firefox (I'm using 1.0.2, no popup for me from your site):

    about:config
    privacy.popups.disable_from_plugins = 1
    dom.popup_maximum = 1

    If you want to be able to click links in Flash that open a new tab/window.

    privacy.popups.disable_from_plugins = 2
    If you want to disable popups from Flash entirely.

  17. Re:Hey! on Floaters are the New Pop-Ups · · Score: 1

    And that would be a bad thing how...?

    Not that I approve of a subscription model either... And I'll keep blocking the ads, too, thank you very much.

  18. Re:#2 solution on Programming Puzzles · · Score: 1

    #include <iostream>

    template<int N>
    class CountUp {
    public:
    void operator() ()
    {
    std::cout << N << std::endl;
    CountUp<N+1> c;
    c();
    }
    };

    template<>
    class CountUp<100> {
    public:
    void operator() ()
    {
    std::cout << 100 << std::endl;
    }
    };

    template<int N>
    class CountDown {
    public:
    void operator() ()
    {
    std::cout << N << std::endl;
    CountDown<N-1> c;
    c();
    }
    };

    template<>
    class CountDown<1> {
    public:
    void operator() ()
    {
    std::cout << 1 << std::endl;
    }
    };

    int main()
    {
    CountUp<1> c;
    CountDown<100> d;
    c();
    d();
    return 0;
    }

    // Yay for template metaprogramming :D

  19. Re:An important security sidenote on IE Shines On Broken Code · · Score: 5, Interesting

    or perhaps used one of their .NET languages, rather than programming in straight C like the others

    Not likely, since IE was created ages before .NET, and I don't quite think they decided to scrap and rewrite the entire parsing engine since then :)

    As for the malformed HTML, it didn't crash my firefox, but I'll try again a couple of times just in case ;)

  20. Re:How about this? on Microsoft Issues Ominous ASP.Net Security Warning · · Score: 1

    Unless they have ftp access to the server, they can't do anything genuinely malicious - that's mentioned in the linked bugreport.

    One thing they can do is make it include ../index.php - throwing the server into an infinite loop. Hammer that url a couple of times and you have yourself a mini-DoS attack. (php will time out after 30 seconds of including the same file over and over, probably)

  21. Re:How about this? on Microsoft Issues Ominous ASP.Net Security Warning · · Score: 1

    Now those are real vulnerabilities, I'll give you that :)

    Fortunately they're patched in recent versions - obviously, with enough common sense PHP (and probably ASP.NET as well) can be kept secure.

  22. Re:How about this? on Microsoft Issues Ominous ASP.Net Security Warning · · Score: 4, Insightful
    Did you even look at what you're linking?

    It's an exploit for a third party PHP project someone has written. Not a core vulnerability in the language. I'd wager that about 95% of PHP vulns are the fault of idiots who write crap like this:
    if(isset($show)){

    if($show == "new" || $show == "pop" || $show == "cool"){

    include("include/show.php");
    } else {

    include("include/$show.php");
    }
    }
    But this vulnerability is for a third party application, and also assumes that the attacker already has ftp access to the system he's compromising.

    Now I'm not saying that PHP is rock solid, but at least look at what you're linking before posting the kneejerk "PHP is insecure too!!!1" stuff.
  23. Re:Plain Engrish? on Blizzard Stomps Bnetd in DMCA Case · · Score: 2, Insightful

    Yeah I bet that will go over real well. Just imagine.

    Friend: "Hey, Starcraft 2 came out this week! Man, it's looking totally sweet. I can't wait to play!"
    Me: "I'm boycotting Blizzard. They're evil and have no regard for fair use and personal liberties. So I'm not getting Starcraft 2 and neither should you!"
    Friend: "Ahahahahahahahaha, yeah right." *leaves to buy SC2 and have lots of fun with it*


    (The solution is, of course, to download it and play it anyway, but good luck getting that to work with online multiplayer without a valid key! Also it's illegal. Go figure.)

  24. Re:I wait! on Have a Nice Steaming Cup of Java 5 · · Score: 1

    This horrible problem can be solved with approximately one line of bash code, or three mouseclicks in Eclipse.

  25. Re:Need a different monitor on Does Your LCD Play Catch-Up To Your Mouse? · · Score: 1

    Sierpinski's triangle can be obtained (for a given resolution) from Pascal's triangle if you plot a "pixel" for every odd number and a "hole" for every even number. :)