HP HDX Dragon
January 2nd, 2014HP HDX Dragon
- HP HDX 9000 Dragon owners lounge part 1
- HP HDX 9000 Dragon owners lounge part 2
- page 100 post
- Touch Pad Disable Board (video)
- SSD Information
- [Drivers] HP dv6-2XXX / dv7-3XXX / dv8 / HDX16 / HDX18 (INTEL)
- Base install load sequence
- HP Pavilion HDX9494NR Entertainment Notebook PC support
- X9000 CPU Upgrade Information
Perl Web Server
January 2nd, 2014Perl Web Server
- How do I write an HTTP server in Perl?
- HTTP::Daemon - a simple http server class
- HTTP::Daemon - a simple http server class
- GUI with HTTP::Daemon
- LWP - The World-Wide Web library for Perl
- Pre-forking HTTP Daemon In Perl
- HTTP::Daemon::Threaded - Apartment threaded HTTP::Daemon-based server
- Perl Background processes in Windows
- Win32::Process - Create and manipulate processes.
- Perl Background processes in Windows
- Perl HTTP server
- Pizza calculator
- HTTP::Status - HTTP Status code processing
Perl Encryption
Perl IPC
Setting up a Subversion (SVN) server on Ubuntu
January 2nd, 2014I recently set up a SVN server to manage the eGiveIt codebase. Here are some details and links that helped.
Using find to delete files more than x days old
July 8th, 2013find . -name "server.log*" -mtime +30 -exec rm -f {} \;
Chaining SSH sessions / Reverse SSH Port Forwarding
June 20th, 2013I have a fair amount of music that I want to be able to access both at home and at work (I also like to have an offsite backup). Since I now have a gateway both at work and at home, I'm not able to directly connect the machines to use rsync to keep the music stores up to date. I've put this together and set up a cron job to automatically manage it all:
ssh -R 2201:localhost:22 filesync@shell2.strav.net "ssh -R 2201:localhost:2201 user@mp3server" \"rsync -e 'ssh -p 2201' --stats --progress -a 'path_on_mp3server' root@localhost:'path_on_localhost'\""
I have also used this to set up a background session
ssh -f -N -T -R 1443:localhost:443 user@hostname
The -f switch tells ssh to background itself after authentication. The -N switch creates the tunnel without running any remote commands and the -T switch disables pseudo-tty allocation
