Search Results - JustLinux Forums


Search:

Type: Posts; User: Gnu/Vince

Page 1 of 20 1 2 3 4

Search: Search took 0.42 seconds.

  1. Hum... that's the stupidest thing I've ever...

    Hum... that's the stupidest thing I've ever heard. Everything is relative, and in comparaison to what X does, it is certainly not bloated! I mean, you can run apps on a network (encrypted even), ...
  2. Replies
    149
    Views
    21,421

    Command-line commandos do not use multiple ttys:...

    Command-line commandos do not use multiple ttys: they use screen!
  3. Replies
    18
    Views
    1,452

    Poll: Pascal, but since I didn't understand what I was...

    Pascal, but since I didn't understand what I was doing, I'd say my first real programming language was Ruby.
  4. Replies
    149
    Views
    21,421

    GUI's evolved from the command-line to make it...

    GUI's evolved from the command-line to make it easier for most people to approach programming. But the GUI is a bad (IMO) evolution of the command-line: it made the interactive stuff easier, more...
  5. Thread: Ruby Help

    by Gnu/Vince
    Replies
    2
    Views
    616

    Try this: test = "ABCDEF" test.each_byte...

    Try this:



    test = "ABCDEF"
    test.each_byte { |b| puts b }
  6. Replies
    149
    Views
    21,421

    This place has become unrecognizable... First...

    This place has become unrecognizable... First because of all the members I don't know (and none of the veterans have posted here), but also because mentality seems to have changed vastly.

    Back...
  7. If you put a pic on the web, it's 100% sure...

    If you put a pic on the web, it's 100% sure someone will be able to copy it. Be it by right-clicking, getting the link in wget, taking a screenshot, etc.
  8. Replies
    21
    Views
    977

    Python

    Python
  9. Replies
    3
    Views
    801

    You still got to manually declare your variables...

    You still got to manually declare your variables with D. If it wanted to move another step ahead of C/C++, it should've included type inference:



    # let isEven n =
    n mod 2 = 0
    ;;
    val...
  10. Replies
    24
    Views
    2,409

    I think pyGTK would be a good idea.

    I think pyGTK would be a good idea.
  11. Replies
    1
    Views
    666

    I made Ruby scripts quite similar to that once. ...

    I made Ruby scripts quite similar to that once.
    http://darkhost.mine.nu:81/~vince/ruby/

    Check it out
  12. Replies
    3
    Views
    697

    http://dev.rubycentral.com/ref/ref_c_dir.html#entr...

    http://dev.rubycentral.com/ref/ref_c_dir.html#entries

    This will show you how to list all the files in a directory.


    http://dev.rubycentral.com/ref/ref_c_array.html

    This will show you how...
  13. Replies
    19
    Views
    2,138

    Of course not.

    Of course not.
  14. Replies
    19
    Views
    2,138

    It is true that Python offers a far vaster...

    It is true that Python offers a far vaster ammount of documentation, modules and has a bigger user community. But Ruby is more popular than Python in Japan, and Japanese programmers are writing...
  15. Replies
    19
    Views
    2,138

    Ruby is Perl with Python's readbility.

    Ruby is Perl with Python's readbility.
  16. Thread: Hey, guys...

    by Gnu/Vince
    Replies
    11
    Views
    952

    Whoa! I didn't see that coming. That's really...

    Whoa! I didn't see that coming. That's really hard man, you were probably one of the most gifted programmer on LNO (in my opinion at least).

    I wish you good luck for you future projects (med...
  17. Replies
    2
    Views
    778

    Yeah, gmp.

    Yeah, gmp.
  18. Replies
    1
    Views
    1,295

    Also, I would like to thank/congratulate Jeremy...

    Also, I would like to thank/congratulate Jeremy for contributing to the proof-reading of the english version of the O'Reilly book of Objective Caml.
    http://caml.inria.fr/oreilly-book/
  19. Replies
    1
    Views
    1,295

    Need help with a range function (Ocaml)

    let range ?(l_lim=0) (u_lim) ?(step=1) =
    let rec loop n l =
    if n = (pred l_lim) then l
    else loop (n - step) (n::l)
    in

    loop (u_lim - 1) []


    let print_int_list l =
  20. Replies
    30
    Views
    2,204

    :cool: errr.... :cool: :D

    :cool: errr.... :cool:

    :D
  21. Replies
    6
    Views
    989

    Long 'if' statements

    What's the best/cleanest way to cut a long if statement?

    a)


    my_function (parameters)
    if long long long long long
    long long then
    blah
  22. Replies
    8
    Views
    1,423

    It doesn't work even with the backslash? Which...

    It doesn't work even with the backslash? Which version of vi is that? Elvis? Vim?
  23. Replies
    8
    Views
    1,423

    :%s/\~R/'/g

    :%s/\~R/'/g
  24. Replies
    9
    Views
    886

    I had made a script like that a while back,...

    I had made a script like that a while back, search the boards.
  25. Replies
    18
    Views
    3,413

    Isn't he a Perl guy? :eek:

    Isn't he a Perl guy? :eek:
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4