Slashdot Mirror


User: nick-less

nick-less's activity in the archive.

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

Comments · 177

  1. Re:I'm Job Searching on .Net Programmers Fall in CNN's Top 5 In-Demand · · Score: 2, Informative

    But Pascal isn't really used anymore, is it? What ever happened to that great language?

    It became Delphi...

  2. Re:1/27/06 on Western Union Ends Telegram Services · · Score: 2, Funny

    ..is a very important date in Telecommunications.

    Yep, now we`ll be surely doomed when SKYNET comes online...

  3. my hope is.. on Adobe Acquiring Macromedia on December 3, 2005 · · Score: 3, Funny

    Does this mean the end for Fireworks and Freehand?" ...it means the end of flash, but I know its just a dream.

  4. commenting made easy... on How to Write Comments · · Score: 1
  5. Re:Erm, link: on Quake2 Ported to Java, Play Via the Web · · Score: 1, Troll

    >>>In some cases, this can result in more effecient code than a precompiled binary such as one created by a C compiler.

    >This is a bullshit argument that generally presumes a substandard optimization by the binary compiler.

    Like it or not, in 10+ years from now most (if not all) applications will be written in either Java, .NET or a similar Framework/Language. C/C++ will only be used where bit-banging stuff is needed AND NO ONE will care about except a few grumpy old man...

  6. Re:If I was Sun CEO... on Quake2 Ported to Java, Play Via the Web · · Score: 1

    ... I would give this guy research lab and resources to create java-based DirectX library. For game developers, it would be just great to write once and sell on Windows on Linux on Mac on Playstation (don't know about XBox). Even without Sun's support, it would be great fot 3rd party to sell such engine/framework.

    You'd have to give it away for free to make *anyone* throw away their well-tested-and-working C++ engines for a Java Version. No matter how fast it is, the java=slow paradigm is burned to deep into to many developer heads out there...

  7. Re:Wouldn't it be funny if... on Creating .NET C# Applications for Linux · · Score: 1


      Wouldn't it be funny if .Net (with Mono) actually delivered on the promise of Java? That is to say, bringing software to the Linux platform from traditional MS developers?


    it probably would, but as long most .net apps (or at least most of the apps I was tricked to fix) look like

                    #region User Declaration
                    clsDML objDML = new clsDML();
                    public clsCommon objCommon = new clsCommon();
                    clsGridFunctions objGridFunction = new clsGridFunctions();
                    Hashtable hstUserSel = new Hashtable();
                    int intPageSize = 2;
                    string strCateLogPage = "CATELOG", strMacVal = "Mac";
                    string strCurrDir = "", strVirImgFolder = @"/TEMP/", strPhyImgFolder = @"C:\TEMP\";
                    string strAddCart = "AddCart", strDownload = "Download", strSQL = "", strZipExt = ".zip", strAmbientenbild = "";
                    static string[] strarrTable3Fields = new string[]{"DISTINCT VALID_FOR","VALID_FOR"};
                    string[] strImgSupportTypeExt = new string[]{"jpg","jpeg","gif","bmp","png"};//Allowab le image formats
                    string[] strMovieExt = new string[]{"mpg","mpeg"};//Allowable movie file formats
                    string strMovieFileImgPath = "Images\MPG-File.jpg";//Path(relative) of image to be displayed when we have a movie file
                    clsModifyImage objThumbnail;
                    public string str72 = "_72", str300 = "_300";
                    FileStream fsGetFile;
                    string strSpace = "";

                    #endregion


    you probably won't want it running on linux...

    ps: I didn't write the mess up there, I was just hired to extend it ;-)

  8. Re:the future of keyboards on Das Keyboard: Hit Any Key · · Score: 1

    I like this one...

  9. No WoW here on WoW Helping or Hurting the Industry? · · Score: 1

    I played Diablo and Diablo II, so I got enough of blizzard

    fool me once....

  10. does it work? on Star Wreck 6 Finally Complete · · Score: 1

    hm...

  11. Re:Porn on YouTube -- The Flickr of Video? · · Score: 1


    so how long until its flooded with porn do we think? one, maybe two weeks?


    ok, see you there next week...

  12. Re:Does it support W3C standards? on IE7 Bugs and Reviews · · Score: 1

    The fact is that "Joe User" is not as stupid as we imagine, he just has other things on his plate, but he still wants all his web apps to work.

    Agreed, he wants his web app to work and if it worked in IE6 and will work in IE7 he'll be pleased. So if IE7 is just as fucked up as IE6 is, he won't n notice if its standard compilant or not.

  13. Re:Does it support W3C standards? on IE7 Bugs and Reviews · · Score: 1

    Joe Average User doesn't care about W3C standards, he cares about tabs, nice guis, phishing and virus warnings (but not too many, and not while browseing his favorite p0rn sites).
    Some web developers care about standards, but unfortunatly nobody is going to ask them.

  14. Re:Acid Test on IE7 Bugs and Reviews · · Score: 4, Funny

    Are there any browsers out there (other than that patched-up Safari version) that have actually passed the Acid Test?

    No, because passing the acid test, breaks ./ compatibility...

  15. Re:Can't anybody program in BASIC anymore? on How Computers Work -- Circa 1979 · · Score: 1
    StartTime=Timer
    while Timer-StartTime<30 'While fewer than 30 seconds have passed...
    application.processmessages 'or whatever the BASIC specific command would be
    wend
    Sorry, I'm confused, were we talking about 70th style Basic hacking or 90th style Windows programing?
  16. Re:simple solution on Debian Struggling With Security · · Score: 0, Redundant

    If you actually have to tell us it's funny, is it really?

    You must be new here...

  17. Re:This Will RUIN Bill Gates' Weekend on Mac OS X 10.4 Tiger for x86 Leaked? · · Score: 4, Funny

    Windows 2/3 was popular when we were leeching warez from bbs and you were sitting in diapers. This wont have bill gates worrying...

    What? You mean that Windows2 thing we needed to use to start Aldus Pagemaker was actually an operating system?

  18. Re:Success of PHP easy to understand on A Decade of PHP · · Score: 1


    f you use either if (is_null($test)) or if ($test === null) instead of if ($test == null) you get the expected results.


    I know, the point is, the initial design was flawed, but instead of fixing it, they introduced kludges like "is_null()" or the "===" operator. Thats not exactly what I would call "easy to learn".

  19. Re:Success of PHP easy to understand on A Decade of PHP · · Score: 1

    5. It features nice effects

    $test = null;
    if ($test==null) {
    echo "test is null";
    }
    $test = array("1","2");
    if ($test==null) {
    echo "test is null";
    }
    $test = array();
    if ($test==null) {
    echo "test is null";
    }

    reply with your suggested result ;-)

  20. Re:x86 != PC on Could Apple's Intel Desktop Threaten Linux? · · Score: 1

    Apple are moving to X86 yes , but it wont be standard PC equipment .

    I bet a Mac On Linux x86 Edition is available 6 month after 10.5 for Intel Macs...

  21. Re:Nice work guys. on Mars Rover Breaks Free · · Score: 3, Funny

    Now I'll know who to call next time my car gets stuck in the snow this winter.

    Good luck, but keep the following in mind before calling this guys:
    4 hours after your call you'll be called back an instructed to turn 30
    4 hours later you'll be instructed to drive back slowy for 1.5 minutes
    [...]

    I'd rather wait for Mister Plow instead...

  22. Re:Somebody mod Steve Ballmer on Google Might Disappear in Five Years · · Score: -1

    I'd mod him +1 funny...

  23. Re:German Technology on German Robot Dogs Dominate 2005 RoboCup U.S. Open · · Score: 2, Funny

    In their culture, its cool to be a 'geek'!

    I bet you've never been here...

  24. Itanium? Alpha? UltraSparc? on Best Motherboard for a Large Memory System? · · Score: 1

    This one or
    This one
    or This one

    ok, some of them are end of life, but hey you'll never know... ;-)

    ps:I hope you have some spare money lying around...

  25. Re:I would buy a Mac... on Return of the Mac · · Score: -1, Troll

    I bought one when OSX came out, it was a nice machine and fun to play around with, but it also was to sluggish to switch my development enviroment over to it. The turnaround times where just to high. So my $3000 mac ended up being an expensive music box...
    well, I'll give it another try if I have another 3k bucks to waste...