Search Results - JustLinux Forums


Search:

Type: Posts; User: bburton

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    1,023

    I also recommend 'The C Programming Language' by...

    I also recommend 'The C Programming Language' by Brian W. Kernighan if you're serious about learning C.

    I'm a big fan of the O'Reilly books, however some people do not like them. I think most of...
  2. Replies
    11
    Views
    2,305

    Here's another fun one I wrote that generates a...

    Here's another fun one I wrote that generates a nice, printable password list, and stores it in a file called pass.txt. Note that to get it to work you need the custom programs asciionly and form,...
  3. Replies
    11
    Views
    2,305

    Here's an example of generating a report of the...

    Here's an example of generating a report of the 10 biggest files in a given directory (over ~10Mb).


    find ~ -size +10000k -printf "%s,%p\n" | sort -nr | head -n 10 | cut -d, -f 2

    The most...
  4. Replies
    13
    Views
    2,018

    file.cc, file.hh is also used somewhat. ...

    file.cc, file.hh is also used somewhat.

    file.cpp, file.h is the most common.
  5. Replies
    9
    Views
    1,027

    Wow; I didn't know that. I guess you learn...

    Wow; I didn't know that. I guess you learn something every day.



    Haha, true. He's probably making things way too complicated. I would say, just bite the bullet and transfer the slow and easy...
  6. Replies
    9
    Views
    1,027

    Well, cut is usually only useful for working with...

    Well, cut is usually only useful for working with text-based data. Trying to split a movie file with it probably won't work very well.

    Try a file splitting program instead. One available for linux...
  7. Replies
    12
    Views
    2,121

    Take a look at Gnome Commander...

    Take a look at Gnome Commander. You can find its features on that page, in the about section.

    You should be able to get it in Ubuntu by installing the package "gnome-commander" (e.g., apt-get...
  8. Replies
    12
    Views
    2,121

    What exactly do you need that the file managers...

    What exactly do you need that the file managers you've already tried cannot provide? Could you expand on what you mean when you say "power and ease of use"?

    I would have recommended Gentoo or...
  9. Replies
    33
    Views
    4,245

    I'm a senior year student majoring in Computer...

    I'm a senior year student majoring in Computer Information Systems. I attend a small, private University (bellevue.edu) in Nebraska.

    Some thoughts for you:


    CS is more focused and indepth;...
  10. Replies
    9
    Views
    2,088

    In MS Word you can save as html via the "save as"...

    In MS Word you can save as html via the "save as" dialog. xhtml is also fine, and will work just as well.

    Also,

    If you do save out to html from MS Word, you might want to check out the...
  11. Replies
    19
    Views
    3,058

    Yes, that's definitely true. However, I remember...

    Yes, that's definitely true. However, I remember when I used to compile purely monolithic kernels for my computer, including only the drivers for which I needed, and the output was still only around...
  12. Replies
    19
    Views
    3,058

    $ du -h /boot/vmlinuz-2.4.27-2-686 860K ...

    $ du -h /boot/vmlinuz-2.4.27-2-686
    860K /boot/vmlinuz-2.4.27-2-686

    Compared to the 2.2 days, that's pretty big.
  13. Replies
    12
    Views
    1,937

    Implementing a square root function is...

    Implementing a square root function is especially.... hairy.

    I suggest you read the following page to get an idea of some other peoples' implementations:...
  14. Replies
    6
    Views
    1,929

    The next version of Ubuntu will allow...

    The next version of Ubuntu will allow double-clicking file installation (using a thing called udebi). I personally enjoy having synaptic take care of everything.


    Not everyone likes having...
  15. Replies
    19
    Views
    4,171

    Things I like: Window switching live preview...

    Things I like:

    Window switching live preview (alt-tabbing) - This has been tried before. It looks very useful. Hopefully Xgl will implement this the right way.
    Magnification effects - Much...
  16. Replies
    2
    Views
    987

    Looks to me like you have a bad disk, or that you...

    Looks to me like you have a bad disk, or that you at least have some major file system problems. I would suggest popping in a live CD and running fsck on the disk. If you have very valuable data...
  17. Replies
    7
    Views
    1,956

    I don't use the default theme either, but it's...

    I don't use the default theme either, but it's important to have a nice default theme, because that's what grandma uses. Plus, product reviews will be done using the default theme; if it can be...
  18. Replies
    7
    Views
    1,956

    Ubuntu "Dapper Drake" gets a new look

    Has anyone seen the new color scheme for the latest Ubuntu Alpha (Dapper Flight 5)? Take a look and tell me what you think. It's very.... pumpkin.

    There's quite a discussion about it over at the...
  19. Replies
    24
    Views
    3,659

    From the Answers...

    From the Answers page of the site:

    and a little farther down:

    I'm sure it will be fully supported in Linux soon after release. I must say that it's a very innovative idea.
  20. Replies
    9
    Views
    2,368

    apt-get install beep This command line program...

    apt-get install beep
    This command line program will allow you to ops check your PC-Speaker. As an added bonus, it will provide hours of fun.

    It's pretty easy to use too. For example, the...
  21. Use ethereal (http://www.ethereal.com/). Start a...

    Use ethereal. Start a network capture when you're talking to both of them on yahoo. Filter the results down to yahoo IM (I believe it's "yhoo" in the filter box). Note the IPs. Compare. Done.
  22. Replies
    14
    Views
    1,170

    My advice for you Asarch is to add an entry to...

    My advice for you Asarch is to add an entry to the "talk" page for the Slackware article. Be sure to phrase it well, and make a good argument for why you believe that the statement should be included...
  23. Replies
    7
    Views
    1,533

    $cat file.txt | ./perlscript.pl > file.txt

    $cat file.txt | ./perlscript.pl > file.txt
  24. Replies
    7
    Views
    1,533

    Here's another way to do it. Perl script below: ...

    Here's another way to do it. Perl script below:


    #!/usr/bin/perl

    while (<>)
    {
    /\((.*)\)/;
    print $1 . "\n";
    }
  25. Replies
    21
    Views
    4,382

    Exactly. What we see here is the "chicken and the...

    Exactly. What we see here is the "chicken and the egg" situation. People won't adopt Linux until it gets better driver support, and the drivers won't be written until people adopt Linux.
Results 1 to 25 of 129
Page 1 of 6 1 2 3 4