April 7th, 2008 admin

I pretty much use ssh for everything. I use it mostly to connect to my home/web/this server and use it as an interface. The best program to use alongside ssh is screen.
To install both ssh and screen, you may do this:
- sudo apt-get install ssh
- sudo apt-get install screen
If I were good with words, I would write a poem for ssh. But alas, I am not. So, you get the first page from the Wikipedia Entry.
Secure Shell or SSH is a network protocol that allows data to be exchanged over a secure channel between two computers. Encryption provides confidentiality and integrity of data. SSH uses public-key cryptography to authenticate the remote computer and allow the remote computer to authenticate the user, if necessary.
Here are a few of the best SSH/SCP commands EVER:
-
ssh server.com
-
scp server.com:./ /home/local/downloadhere/
Popular/Best SSH/SCP/Clients (mostly for windows, because linux usually already has tools built in.):
- WinSCP
- Putty
- gFTP
- the normal commands that come with Linux(ssh, scp)
Posted in Software | No Comments »
March 17th, 2008 admin

I have written a new program. It’s called facebot. This program takes the public RSS feed from many people and converts it into a visual display of the relationships on facebook.
Go here to check it out.
Posted in Software, code | No Comments »
February 7th, 2008 admin
Python-Command Line Python-To-Html Converter. Makes posting Python to blogs quick.
by: Daniel Folkes
This is Licensed under GPLv3. Give Back.

Download Source
- print “”" This is a simple program that takes a python file and replaces the
- plain text punctuation with the easily postable html code.
-
- written by : Daniel Folkes
- danfolkes @t gm@il d0t c0m
- http://danfolkes.com
Read MORE »»
Posted in Software | No Comments »
February 7th, 2008 admin
This is my working sample of running a crystal report through a jsp. It turns out to be very pretty and gives you many options. As I suggested in a comment. I would really advise on downloading Eclipse IDE + the Business Objects Plugin. This will give you most, if not all the utilities you need to put you in the right direction.
If you have any questions, please post in the comments.
Thanks,
Daniel
Author: Dan Folkes
Description: JSP Crystal Reports
Language: java
Pasted on: 08:44:23 Friday 18th January 2008

This is Licensed under GPLv3. Give Back.
Download Source
- <%@ page language=”java”
- import=”logic.*,com.businessobjects.samples.JRCHelperSample,
- com.crystaldecisions.report.web.viewer.CrystalReportViewer,
Read MORE »»
Posted in Software | 3 Comments »
February 6th, 2008 admin
This python command line utility will search the pirate bay for a specific search string and pull out the torrent files and download them to your current directory.
by: Daniel Folkes
This is Licensed under GPLv3. Give Back.

Download Source
- print “”"Pirate Bay Torrent Downloader - Command Line Interface
-
- Program Written by: Daniel Folkes
- website: http://danfolkes.com
- email: danfolkes @t gmail dot c0m
Read MORE »»
Posted in Software | No Comments »