Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.05 seconds.

  1. Re: Free programming environment for Adobe Flash applications?

    swfmill for generating content, and MTASC for compiling ActionScript (up to 2.0, see also haXe which can handle AS3).
  2. Replies
    7
    Views
    899

    [SOLVED] Re: bash find + xargs

    It looks like that command would do it, have you tried it yet?

    From the looks of it a shell glob might also work for you (if there is only one file to execute):



    java -Xmx512m -Xincgc -jar...
  3. Replies
    9
    Views
    279,560

    Re: Installing cURL for PHP

    sudo service apache2 restart
  4. Replies
    3
    Views
    361

    Re: Alternative to Web (and HTTP and HTML)?

    So basically, more media. Isn't that the point of HTML5?

    You could make an entire website out of a static image, but then separating the site from the text markup and style sheets which describe...
  5. Replies
    5
    Views
    581

    [SOLVED] Re: Automating web tasks

    Understandable. This goes back to what you are trying to do again. Since only web browsers have the whole DOM and friends if there is Javascript fogging then depending on what you're doing, you're...
  6. Re: specifying new directory in /etc/ld.so.conf does not seem to work

    Not entirely sure but it might be that ldconfig sets LD_LIBRARY_PATH, so consider restarting your shell and seeing if that changes anything.
  7. Replies
    3
    Views
    337

    [SOLVED] Re: Using alsaplayer api in Java

    As I understand it you cannot use native methods in Java unless you wrap them with a Java Native Interface wrapper. Unless libalsaplayer has that already implemented, you'll need to implement it...
  8. Replies
    5
    Views
    581

    [SOLVED] Re: Automating web tasks

    I don't know of a similar library, but consider what exactly you are trying to do. You can automate HTTP requests to certain URLs, for example, by using the library curl for C, wget on the command...
  9. Thread: awk command

    by soltanis
    Replies
    3
    Views
    913

    Re: awk command

    I'm not sure about the awk code you posted, but here is something that does more or less what you ask:



    # this function assumes that there are no pairings not containing T or A
    function...
  10. Re: Automagic HTML tags parser for python/django

    https://docs.djangoproject.com/en/dev/topics/templates/
  11. Replies
    3
    Views
    279

    Re: help writing an audio script

    You can also consider compressing the audio using a tool such as oggenc (available from the "vorbis-tools" package: sudo apt-get install vorbis-tools). Set up a pipe to pass uncompressed data into...
  12. Replies
    2
    Views
    633

    Re: [GNUTLS] can't handshake with client

    I still haven't figured out what's wrong with my code, but evidently wrapping an inetd daemon into an SSL tunnel is possible using stunnel.
  13. Replies
    8
    Views
    3,629

    Re: [C/C++] Find L2 cache size

    To clarify, /proc is a pseudo-filesystem intended to create a file like interface for querying and modifying running processes (hence "proc"). It has a helpful Wikipedia page that details what it's...
  14. Replies
    8
    Views
    3,629

    Re: [C/C++] Find L2 cache size

    This probably only works under a Linux system only, as it uses information out of proc. If you check:



    grep 'cache size' /proc/cpuinfo | cut -d ":" -f 2


    This will give you the cache size...
  15. Replies
    2
    Views
    633

    Re: [GNUTLS] can't handshake with client

    Bumping back to the top of the list. The next thing I'm going to try is removing the non-blocking behavior of the daemon (which is bad form anyway) and using select instead. If anyone has any help,...
  16. Replies
    2
    Views
    633

    [SOLVED/GNUTLS] can't handshake with client

    Background: I'm trying to add SSL functionality to an inetd daemon. These daemons are started by inetd, which in turn starts tcpd, which starts this program. The stdin, stdout, and stderr are all...
  17. Thread: scrip problem

    by soltanis
    Replies
    5
    Views
    428

    [SOLVED] Re: scrip problem

    It helps us read your script if you use [code] or [php] tags to enclose it.

    Does the file you provide contain any special characters, and more importantly, when you go to create the directory with...
  18. Replies
    5
    Views
    1,508

    Re: Double-clicking bash script with sudo

    No need to fear. Once you invoke the interpreter with root privileges, as it executes the shell script it will keep those privileges throughout the duration (and all child processes i.e. aptitude...
  19. Replies
    14
    Views
    1,143

    Re: Applicable Server-side Technology?

    In general, what you have described is a web-based application. There are many relevant server-side technologies available: some have already been suggested, such as php, python frameworks like...
  20. [SOLVED] Re: Batch replace strings in all files in a folder--when there are UNIX-style slashes

    So in other words you did this (in the appropriate directory)?



    sed -i 's%home/tarahmarie%data%g' *
  21. Replies
    11
    Views
    987

    Re: linux code 4 checking up or down server

    The ping manual page details all the useful options here, but here are the ones that you'll probably want to use:



    -c count
    Stop after sending count ECHO_REQUEST packets....
  22. Replies
    7
    Views
    671

    Re: Happy Holidays!

    hah
  23. Replies
    13
    Views
    1,588

    [ubuntu] Re: Ubuntu won't boot up. Can anyone help?

    Replace the disk; 72 bad sectors means the drive is not far from failure.
  24. Replies
    6
    Views
    3,802

    [SOLVED] Re: get a php variable from mysql dbase?

    $rc = mysql_query("select new from goods where type='chair';");
    $result = mysql_fetch_array($rc);
  25. Replies
    25
    Views
    12,567

    Re: BASH: scp password

    So then everything is not working. Just a suggestion, this sounds like a thread that might want its own topic instead of resurrecting an old one -- I think it throws people off when you're reading...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4