Search Results - JustLinux Forums


Search:

Type: Posts; User: bdg1983

Page 1 of 5 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    29
    Views
    1,434

    Our weapon is surprise. Surprise and Fear. Fear...

    Our weapon is surprise. Surprise and Fear. Fear and surprise. Our two weapons are fear and surprise, and ruthless efficiency. Our three weapons are: Fear and surprise and ruthless efficiency and...
  2. Replies
    5
    Views
    688

    That's the commonly accepted approach to...

    That's the commonly accepted approach to many-to-many relationships. It works well.

    Now you have to think about: Can one employee work the same job twice? ;)

    (If (s)he could, you could add...
  3. Thread: Something fun

    by bdg1983
    Replies
    6
    Views
    576

    Or you could just use C++ and the string class. ...

    Or you could just use C++ and the string class. ;)
  4. Replies
    8
    Views
    752

    Yes, but that is forcing the client to do your...

    Yes, but that is forcing the client to do your work for you. You could just as easily do it with CGI, and then you wouldn't have to worry about whether the clent supports javascript.
  5. Replies
    7
    Views
    793

    Uhh.... allowing a website to execute programs...

    Uhh.... allowing a website to execute programs locally is a HUGE security hole. They could just as easily run "rm -rf ~" as actually execute the program.
  6. Replies
    29
    Views
    1,434

    No no no... other people's apache logs.

    No no no... other people's apache logs.
  7. Replies
    29
    Views
    1,434

    Silly programming challenges

    Ever since that "Rotate the output of banner" thread, I've been wanting some silly programming challenges... anyone got any?

    I guess it's kinda selfish to ask for them without providing any, so...
  8. Thread: 2.5 tree!

    by bdg1983
    Replies
    2
    Views
    668

    2.5 tree!

    so, who here's going to be using the [just released] 2.5 beta tree? I think I will, and I'll see if I can keep up and maybe contribute something, too. :)
  9. Replies
    6
    Views
    650

    has this been sold?

    has this been sold?
  10. Replies
    6
    Views
    877

    I don't think so, becaus if it did, the compiler...

    I don't think so, becaus if it did, the compiler would probably try that (one of the beauties of C++)
  11. Replies
    8
    Views
    752

    Javascript is evil. So are cookies, pages with...

    Javascript is evil. So are cookies, pages with java applets, flash, et cetera.

    Nothing but html parsing/rendering should be done by the web browser.
  12. Replies
    2
    Views
    696

    I think it's pretty close to the same as in *NIX,...

    I think it's pretty close to the same as in *NIX, something like "set path="C:\whereever\python\is\"... though I may be mistooken.
  13. Replies
    3
    Views
    746

    There's only one reason I can think of that a...

    There's only one reason I can think of that a person would write a program named "su" and put it in a directory that is before /bin in PATH...
  14. Replies
    7
    Views
    690

    :cool: c++ template functions :cool:

    :cool: c++ template functions :cool:
  15. Replies
    6
    Views
    650

    That's cool.... I might make you an offer, but...

    That's cool.... I might make you an offer, but I have no idea what this thing'd really be worth... :o
  16. Thread: Publicity

    by bdg1983
    Replies
    8
    Views
    662

    post silly programming tasks and give the books...

    post silly programming tasks and give the books as prizes for whoever gets them done best/first. :)
  17. Thread: Publicity

    by bdg1983
    Replies
    8
    Views
    662

    Should I submit that silly little perl script I...

    Should I submit that silly little perl script I wrote for TLD's thread? The one that turns the output of "banner" sideways?
  18. I had the text stretching problem for awhile...

    I had the text stretching problem for awhile there too. It's because banner doesn't print more empty spaces after the right end of the letter. I had to append white spaces so all the lines were all...
  19. #!/usr/bin/perl @banner=`banner @ARGV`; $big...

    #!/usr/bin/perl

    @banner=`banner @ARGV`;
    $big = 0;
    foreach (@banner){
    $big = length($_) unless $big > length($_);
    }
    foreach (@banner){
    chomp;
    $_ .= " " while (length($_) < $big);
  20. Replies
    6
    Views
    877

    Filenames for fstreams have to be of type char *,...

    Filenames for fstreams have to be of type char *, not string. Change those 2 lines to:



    ifstream fileIn(fileOpen.c_str());
    ofstream fileOut(fileSave.c_str());
  21. that is silly

    that is silly
  22. Replies
    7
    Views
    711

    $20! I'm there! (you did say I could jam a...

    $20!

    I'm there!

    (you did say I could jam a pcmcia network card in there, right?)
  23. Replies
    4
    Views
    1,729

    :D

    :D
  24. Replies
    4
    Views
    1,729

    #!/bin/sh for i in *.mp3; do ARTIST=`echo...

    #!/bin/sh

    for i in *.mp3; do
    ARTIST=`echo $i | awk -F- '{print $1}'`
    TITLE=`echo $i | awk -F- '{print $2}' | sed "s/.mp3$//"`
    echo $ARTIST
    echo $TITLE
    done
  25. Replies
    2
    Views
    496

    Oh, just because it's a no-brainer to set up, and...

    Oh, just because it's a no-brainer to set up, and they're running windows 98, and I hate setting stuff up on windows. ;)

    I suppose the 5 seconds it'll take to give them a static ip will be...
Results 1 to 25 of 105
Page 1 of 5 1 2 3 4