Search results

  1. S

    gcomprise compile issue with -lverbisfile

    It's saying that it can't find the library file libvorbisfile.a search for *vorbisfile* in the finder. If you find it then modify the compile flag to have something -L/dir/where/lib/is/located/
  2. S

    TungstenE Mac

    Hi, What I have: Macintosh Powerbook G4, OSX 10.3.9 Palm Desktop 4.2.1 iSync 1.5 (v139) Palm Tungsten E (Palm Applications 4.5.1P) =========== What I want to do sync the Tungsten with iCal, Addressbook, and Mail.app (I'd settle for just syncing to iCal). =========== I...
  3. S

    The best app for programming please help

    Programming is such a broad field that typically people specialize in subcategories. At 13 you're probably at the right age to learn a general language and then when you've mastered the fundamentals you can move to more specialized languages. Back when I was your age we were taught BASIC...
  4. S

    Uncompress .bin and mount .dmg from commandline

    I'm not certain about the uncompression, but you can mound dmg with hdiutil mount /path/to/file/filename.dmg This will mount the dmg to /Volumes/filename/ There is a PERL module for working with hexbin files at: http://search.cpan.org/~eryq/Convert-BinHex-1.119/lib/Convert/BinHex.pm...
  5. S

    Cat Command.

    I have no idea what a VOB file is, but cat joins two files in the following manner: vesper:~ scott$ cat fileone this is file one vesper:~ scott$ cat filetwo this is file two vesper:~ scott$ cat fileone filetwo > combfile vesper:~ scott$ cat combfile this is file one this is file two...
  6. S

    3D fft FORTRAN

    Hi, I need a 3D fft library for the Macintosh that is FORTRAN based. fftw (with fma) is suppose to provide this, but the binary install does not provide the FORTRAN part of the library. When i try to build it from scratch (in Panther) using the g77 options in configure I'm told...
  7. S

    link URL in ssi

    I guess that I didn't give you the whole story... I do not have administrative privileges, and am just one of many users on this system (~100). The apache server is on a restricted machine, but it mounts the user accounts via nfs. In my public_html directory I have built a series...
  8. S

    link URL in ssi

    Hi, I'm trying to use ssi to include a URL. I am able to include local pages with <!--#include virtual="./menu.html"--> But what I'd like to do is include a website such as: <!--#include virtual="http://mysecondsite.com/page.html"--> Does anyone know if this is possible, or...
  9. S

    First steps to programming in MAC

    Ah! My powerbook came with 10.3.X.
  10. S

    First steps to programming in MAC

    I remember reading the Xcode comes installed and a CD comes with the purchase, but this wasn't the case. You'll need to download and install it from the apple developer site. You need to register (free) to access the downloads. The free compilers are GNU (gcc and g77). You can purchase...
  11. S

    ./configure issue with popt for gcompris-6.5.3

    You probably need to pass to the configure script the location of the popt library. Find the library, probably called libpopt.a or libpopt.dylib, and note the directory it's stored in. Then when you run ./configure you'll need to pass a flag such as ./configure LDFLAG =...
  12. S

    How to determine total received bytes?

    For a few weeks in 2004 I played with tcpdump (http://www.tcpdump.org/). From what I could tell you can use tcpdump to log everything that comes through a NIC. The data is just a list of packets, but if you know what you're doing you can analyze this. It's certainly not as nice as...
  13. S

    simple sudoers question(s)

    I believe that in some GNU/Linux distribution (such as Ubuntu), you have to be a member of the admin group to use sudo. I've not administered a Linux machine in 10 months so this might be outdated information. :7)
  14. S

    Rename Name of Folder And File Containing the Character

    #!/usr/bin/perl @in = `ls -lt`; #print @in; foreach(@in) { @online=split(/\s+/,$_); shift(@online); shift(@online); shift(@online); shift(@online); shift(@online); shift(@online); shift(@online); shift(@online); $numb=scalar(@online)...
  15. S

    Does anyone still use Telnet?

    My school still has a telnet based card catalog. I wrote an expect script that would login and renew my library books. I put this in my crontab so every Monday at noon my books would be renewed. After this I never had a late fee again. I've graduated in May, but I'm still getting...
  16. S

    simple sudoers question(s)

    I don't know the command line solution to this... but you can fix the su problem by opening System Preferences --> Accounts. Select a user, and the Security tab. Click the box at the bottom "Allow user to administer this computer."
  17. S

    Installing Dada engine

    The contents of concattest.pb is four lines s: { res="\n" ; c=0 } a $res ; a: a b | a c | b | c ; b: $c { res=res+"foo" ; c=c+1 }; c: $c { res=res+"bar" ; c=c+1 }; Apparently there is something wrong with line 1 because c is undefined when you get to the lower lines, per your...
  18. S

    Installing Dada engine

    I just downloaded dada and there's a dozen example scripts in "dada-1.03/scripts/" and "dada-1.03/scripts/test/" There also is a man page for both dada and pb. Try one of these scripts and see if it works...
  19. S

    Installing Dada engine

    I don't know about dada, but... ($CPP $INCLUDE $CPPARGS 2>/dev/null) | $PB $PBARGS and $CPP = $INCLUDE = -I$/usr/local/lib/dada/include $CPPARGS = $PB = /usr/local/bin/pb $PBARGS = depends on input flag (-o, -p, -r, -s, or -w) and command line args Right away we see that it...
  20. S

    preprocess g95 #pragma GCC set_debug_pwd

    I googled back in July when I made this post, but I could find nothing helpful. Really, I did. :7) Even now when I google I find no reference to the -P -xassembler-with-cpp flags. I hope that this thread get's picked up by the search engines... flag to disable #pragma GCC...
Back
Top