Slashdot Mirror


User: hayriye

hayriye's activity in the archive.

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

Comments · 67

  1. Weblets on Building Richly Interactive Web Apps with Ajax · · Score: 1

    Weblicate your applications with Weblets in no time!

  2. Re:Data Strategy? on Seven Open Source Business Strategies · · Score: 1
    KDE's KVisio program is free with no stencils, and you must buy stencils to do anything useful.

    See here

  3. Re:They might... on Programming As If Performance Mattered · · Score: 1
    You can solve "strings with embedded spaces" problem like this
    10PRINT"HELLO"+CHR$(32)+"WORLD":END
  4. Windows on Why MySQL Grew So Fast · · Score: 1
    Installing and running MySql in Windows is very easy.

    Running postgresql in Windows is nearly impossible.

  5. LINE on Will Linux For Windows Change The World? · · Score: 1

    I think it must be called LINE (Line Is Not an Emulator)

  6. Object oriented assembly on Learning Computer Science via Assembly Language · · Score: 1
    eax.mov 00h;
  7. Re:Linux x86 assembly? on Learning Computer Science via Assembly Language · · Score: 1

    Actually, it must be GNU/Linux x86 Assembly

  8. Make a basic interpreter for a new computer on Eric Sink on Starting Your Own Software Company · · Score: 2, Funny
    1. Make a BASIC interpreter for a new hobby computer using your university's computing facility.

    2. Profit for at least 30 years!
  9. Freedom Zero on Explaining Open Source Software · · Score: 1
    1. The freedom to run the program, for any purpose (freedom 0).

    Boss: What is Freedom Zero?

  10. MSN vs The Internet on Eight Biggest Tech Flops Ever · · Score: 1
    Believe me or not, MSN was designed to compete with the Internet.

    http://www.technewsworld.com/perl/story/32278.html http://www.strategicadvantage.com/nwbsmicro.html

  11. XML & OOP on New Intermediate Language Proposed · · Score: 1

    OOP based and XML format bytecode for supercomputers and it is equivalent to what kripton is for Superman

  12. Windows on Weird Presents Anyone? · · Score: 1

    Windows 98

  13. Re: Hungarian Notation on 64-bit Linux On The Opteron · · Score: 1
    my favorite is lpsz prefix, which means "Long Pointer to C string"

    LPSTR lpszString; /* The string variable */
  14. MS Passport is the answer! on Real Security? · · Score: 1

    If you set up one Microsoft(R) Passport(TM) account, you can login everywhere with it. No need to remember many passwords!

  15. Kernel 2.6 is very good on Linux 2.6.0 Expected In Mid-December · · Score: 1

    Now I don't have any reasons to use Windows 98.

  16. Cubs games on The Surprising Benefits of Being Unemployed · · Score: 1

    If you live in Chicago, you can go to day games in Wrigley Field.

  17. Less letters is the ultimate solution on (Yet Another) Mobile Keypad · · Score: 1

    There are too many letters in western alphabets. If we'll be able to design an alphabet with less letters, then making a keyboard for phones would be easier.

    I hereby propose a 9 letter alphabet (letters after : is the coverage)

    w: v, y, f
    e: i
    r: p
    s: z,
    t: q, d, b
    a: o, u
    h: g, j, l
    n: m
    k: x, c

  18. Re:well... on Java vs .NET · · Score: 1

    In Java, you're tied to a language which is mostly lowercase. Serious enterprise software code must be written in upper case. IN DOT NET, YOU CAN HAVE AN ALL UPPERCASE LANGUAGE THAT COMPILES TO INTERMEDIATE LANGUAGE (ADD ONE TO COBOL)

  19. Re:What I like best about .NET on What Do Programmers Like About .NET? · · Score: 1
    I think HR departments already knows that there's no .NET around for 5 years. But it's more difficult to write the following:

    2 years of OLE 2 experience

    2 years of COM experience

    2 years of DCOM experience

    2 years of ActiveX experience

    2 years of .NET experience

    So they just write the most recent one.

    The same can be said for Windows.

  20. the best IDE on Eclipse in Action · · Score: 1

    C:\>copy con Hello.java
    public class Hello
    {
    public static void main(String args[])
    {
    System.out.println("Hello World");
    }
    }
    ^Z

    C:\>javac Hello.java

    C:\>java Hello
    Exception in thread "main" java.lang.NoClassDefFoundError: Hello

  21. ++C++ on Latest Proposals for C++0x · · Score: 1

    We incremented it in the past, we're incrementing it now

  22. COBOL is the language... on The Little Coder's Predicament · · Score: 1

    So as a responsible parent, you can read and understand what your little kiddie is trying to do...

  23. GNU/Linux VM Documentation on Linux 2.4 VM Documentation Completed · · Score: 1

    Isn't it supposed to be called "GNU/Linux VM Documentation"?

  24. GNU/Ghostscript on Ghostscript Leaves GNU · · Score: 5, Funny

    You must call it GNU/Ghostscript...

  25. Re:Believe it or not... on What I Hate About Your Programming Language · · Score: 1

    I sometimes convert my java or C sources to all uppercase and suddenly, they become serious business programs.
    #INCLUDE <STDIO.H>

    INT MAIN()
    {
    PRINTF("HELLO WORLD\N");
    RETURN 0;
    }