Paul.Esson 53 Junior Poster

Laitly Gnome, I really dislike kde

I never use VNC xnest --query all the way, whats the point of having an Xserver if you don't use it like one :P, thats one of the things i dislike about mac os x , can't use it on my Xterm/xnest/xserver ( I think VNC is slow as well ).

Paul.Esson 53 Junior Poster

Is there a driver that allowes me to read NTFS in mac os x ?

Paul.Esson 53 Junior Poster

Gnome is the unpopular option, but i would have to say best :) kde is just ugly bloat

Paul.Esson 53 Junior Poster

mysql mydatabasesname < photos.sql

Paul.Esson 53 Junior Poster

Denys incoming via en0 (you prolly don't want this since you only have one card), I take that back.. You will want it to deny stuff coming in from your ppp connection (im gessing you use an adsl modem or somthing using pppoe.

So yea, replace all instances of en0 with your outgoing connection

Paul.Esson 53 Junior Poster

Well, a little while ago last year I set up internet sharing with my Palm
but anyway this is what I did

# Turn on ip forwalding
sudo /usr/sbin/sysctl -w net.inet.ip.forwarding=1
# Denys incoming via en0 (you prolly don't want this since you only have one card)
sudo /usr/sbin/natd -same_ports -use_sockets -log -deny_incoming -interface en0
# Use network address translation from any address to any address through en0 (Card connected to net)
sudo /sbin/ipfw add divert natd ip from any to any via en0
Paul.Esson 53 Junior Poster

Thats ok, Happy to help :)

Paul.Esson 53 Junior Poster

Hello my name is Paul, I am 20 and a Computing Student at Ballarat University. Ballarat is a country town in Victoria Australia.

Im into Java, Perl, C , C++ and C#. If you wish to torture me make me program in visual basic. Bash is my fav shell, emacs is my editor of choice. I have been attempting to learn the wxWindows framework but am continesly getting sidetracked.

I use Gentoo Linux on my AMD 2800 and Gentoo Linux on my Apple iBook.

In my spare time I enjoy playing music and sleeping

Paul.Esson 53 Junior Poster

This dude seems to have a good tutorial on makeing isometric tiles

http://www.angelfire.com/rpg2/vertexnormal/tutorials/tile_tutorial.html

Theres no real reson to do make the tiles isometric as it runs, so its better to do what this guy does really and make your tiles isometric and then save em :)

Paul.Esson 53 Junior Poster

somthing like

mysql < photos.sql

should do the trick

Paul.Esson 53 Junior Poster

If i understand what your trying to do try atrm

I just attempted this as a small test

atrm now `echo hello >> hello2`

so i guess you should use

atrm now +3 days `/path/scriptname -foo -bar`

note: the ` prolly isn't nessasery in your case

and if that fails the other way i guess is to do this would be to

echo  /path/scriptname -foo -bar > /path/execat && at now +3 days -f /path/execat
Paul.Esson 53 Junior Poster

as somone know i have a url graber script, and i want to get commands from standard inn how do i do that?

get a command and run it ?

#!/bin/bash
read command
$command

should work