Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Old news (Score 0) 295

Not that surprising if you've read the book "The Accidental Billionaires". They specifically mention that there is one person dedicated to writing a PHP compiler and compiling all Facebook PHP.

Also, I don't understand why they don't use one of the currently available PHP compilers, phc or Roadsend. It's possible they started their initiative earlier, but they should have announced it and possibly prevented some duplicate work.

Transportation

Submission + - Poll suggestion

hmckee writes: When driving, I usually commit the following offense... 1. Failure to Stop 2. Speeding 3. Failure to Signal 4. Failure to Yield 5. Failure to use a seat belt 6. Talk on the cell phone 7. Illegal use of carpool lane

Comment Compiling over ssh (Score 3, Interesting) 412

Plus you can compile over ssh.

It's nice to be able to compile a local directory with M-x compile, then you can jump to errors in the offending file from the *compilation* window.

You can also set to do remote compile from emacs by putting something similar to this in your .emacs:

;; remote compile support
(setq remote-compile-host "hostname")
(setq remote-shell-program "/usr/bin/ssh")
(setq default-directory "/home/username/compileDir")

No you can compile on the remote host AND bring up offending files from the compile output window with the click of a button.

Software

Submission + - Secure file storage over non-trusted ftp software?

hmckee writes: Does any software exist that enables me to store/backup/sync files from my local computer to a non-trusted ftp site. To accomplish this, I'm using a script to check timestamps, encrypt and sign the files individually, then copying each file to an offsite FTP directory. I've looked over many different tools (Duplicity, Amanda, Bacula, WinSCP, FileZilla) but none of them seem to do exactly what I want:
  1. Multi-platform (Windows and Linux), stand-alone client (can be run from a portable drive).
  2. Secure backup (encrypted and signed) to non-trusted FTP site.
  3. Ability to sync individual files without saving to a giant tar file.
  4. Securely store timestamps and file names on the FTP server.

Any help or info on alternative solutions would be appreciated.

Slashdot Top Deals

There are two ways to write error-free programs; only the third one works.

Working...