Search:

Type: Posts; User: neilp85; Keyword(s):

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    24
    Views
    10,848

    Re: Command line RSS reader for TVrss wanted

    In the config file just put a link to each feed you wish to subscribe to on a seperate line. Lines starting with # are comments. Here's part of what mine looks like.



    # Battlestar Galactica...
  2. Replies
    10
    Views
    46,101

    Re: Bash Script - handling arguments with spaces

    After some more searching I figured this one out


    #!/bin/bash
    for i in `seq 1 $#`
    do
    eval a=\$$i
    echo $a
    done
  3. Replies
    10
    Views
    46,101

    Re: Bash Script - handling arguments with spaces

    This is odd, what could cause this difference in execution?
  4. Replies
    10
    Views
    46,101

    Re: Bash Script - handling arguments with spaces

    That document didn't explain how to solve this. The only relevant part was on quoting variables that can contain whitespace. Doing that to $* won't work either. Let me illustrate my problem more...
  5. Replies
    10
    Views
    46,101

    Bash Script - handling arguments with spaces

    What's the proper way to pass/handle arguments to a bash script that have spaces in them. Right now I'm using $* to get all the arguments. This fails when escaping the spaces or protecting the...
  6. Replies
    1
    Views
    474

    Re: Getting Anjuta to Compile

    With a little bit of effort I was able to compile anjuta 2.1.0. I had to install quite a few dev libs from the repos. The only two I had to install from source were gdl-0.7.1 and gnome-build-0.1.4....
  7. Re: Suggestions on Starting Python Project on P2P streaming

    Start with a smaller client-server application to get the feel for things before diving right in to a P2P app. Something like a simplified HTTP server is always a good choice.
  8. Replies
    4
    Views
    311

    Re: XML and Javascript Question

    Thanks for the advice Mike, I ended up doing something very similar to this. The main issue was my view of the problem. Trying to get the value from Javascript from within the XML rather than...
  9. Replies
    4
    Views
    311

    Re: XML and Javascript Question

    Maybe some more explain would. My extension is used for visually browsing the DOM of the currently loaded webpage. It's meant to be a very simple interface for extracting content. The user interface...
  10. Replies
    7
    Views
    566

    Re: Simple c++ help

    That isn't the only problem, there should also be another << operator. What you should do is this:

    cout << "Your total debt is: " << (citi + chase + bofa) - wamu << endl;
  11. Replies
    14
    Views
    704

    Re: python roots problem

    I get the same thing. There are several python packages out there for scientific computing which provide more accuracey.
  12. Replies
    7
    Views
    566

    Re: Simple c++ help

    You didn't state what the problem is, but if it's not compiling it's because you don't have a closing brace for main.
  13. Replies
    4
    Views
    311

    XML and Javascript Question

    I'm working on a Firefox extension and ran into an issue I couldn't figure out after a decent amount of searching. Is it possible to load a variable from Javascript to be the value of an attribute of...
  14. Replies
    3
    Views
    393

    Re: Need to detect a monitor for a script

    There's probably a way to do this by looking for the devices in /dev. I'm not sure how exactly to do this but hopefully this will get you going in the right direction.
  15. Replies
    18
    Views
    58,956

    Re: Tip: Join two avi file with mencoder

    There's no reason to cat the two files together before encoding because mencoder can handle that as well.

    mencoder -forceidx -ovc copy -oac copy -o file.avi p1.avi p2.avi ...
  16. Replies
    309
    Views
    18,913

    Re: What mobile phone(s) do you own?

    Samsung SGH-P107
  17. Replies
    70,108
    Views
    2,967,788

    Re: Word association

    club
  18. Poll: Re: KDE vs Gnome

    Quick google search returned quite a few results:
    gnome kde
  19. Replies
    70,108
    Views
    2,967,788

    Re: Word association

    mister
  20. Replies
    70,108
    Views
    2,967,788

    Re: Word association

    dog
  21. Replies
    24
    Views
    10,848

    Re: Command line RSS reader for TVrss wanted

    The problem with those is that they won't automatically download the torrent file when a new entry is added to the RSS feed. I would have to check them periodically and go download any files....
  22. Replies
    70,108
    Views
    2,967,788

    Re: Word association

    lazy boy
  23. Replies
    70,108
    Views
    2,967,788

    Re: Word association

    Johnny Depp
  24. Replies
    24
    Views
    10,848

    Re: Command line RSS reader for TVrss wanted

    Could a moderator move this thread to programming talk. It seems like a much more appropriate place for it now.
  25. Replies
    24
    Views
    10,848

    Re: Command line RSS reader for TVrss wanted

    Alright, after some work I've come up with a more generic version. I also cleaned up the code some. Besides adding the feed to the file with all your others, the only thing you should have to do is...
Results 1 to 25 of 142
Page 1 of 6 1 2 3 4