Subscribe to RSS Feed

There is no excerpt because this is a protected post.

Continue Reading »
Enter your password to view comments

Protected: Setup OpenVPN

November 9, 2009 by Kode

There is no excerpt because this is a protected post.

Continue Reading »
Enter your password to view comments
SSH Tunnel with Putty and Squid

The purpose of this guide is to provide an easy to follow set of instructions that should allow you to create an SSH tunnel in around 10 minutes.
Step 1: Getting started
What you will need:

Remote server running SSH (Debian server is used in this guide)
Putty
Squid

Install squid:
apt-get install squid
Step 2: Configure putty

Start putty
From left hand tree…

Continue Reading »
No Comments
Easy way to PXE Boot Windows

This guide provides an easy and relatively quick way to PXE boot windows which means you can install Windows over the network with PXE without the need for a CD drive. While the previous guide allows you to slip stream updates and add extra programs it took a LONG LONG time to do,…

Continue Reading »
83 Comments

CSS Cheatsheet

May 1, 2008 by Kode

Background
Backgrounds can be tricky. Nevertheless, effective when condensed correctly. The syntax for declaring the background shorthand values are as follows:
background properties
element {
background-color: color || #hex || (rgb / % || 0-255);
background-image:url(URI);
background-repeat: repeat || repeat-x || repeat-y || no-repeat;
background-position: X Y || (top||bottom||center) (left||right||center);
background-attachment: scroll || fixed;
}
Believe it or not, all these properties can be…

Continue Reading »
No Comments

MySQL Cheatsheet

May 1, 2008 by Kode

Query
SELECT * FROM table
SELECT * FROM table1, table2, …
SELECT field1, field2, … FROM table1, table2, …
SELECT … FROM … WHERE condition
SELECT … FROM … WHERE condition GROUPBY field
SELECT … FROM … WHERE condition GROUPBY field HAVING condition2
SELECT … FROM … WHERE condition ORDER BY field1, field2
SELECT … FROM … WHERE condition ORDER BY field1,…

Continue Reading »
1 Comment

You may have read in a previous post how i installed Ubuntu on my sisters laptop with PXE, well this worked great, but i couldnt for the life of me get WPA to work on the wireless card, so after about a week of trying i decided to try and PXE boot windows as…

Continue Reading »
35 Comments

Apache Cheatsheet

April 11, 2008 by Kode

Setup a Virtual Domain
NameVirtualHost *
<VirtualHost *>
DocumentRoot /web/example.com/www
ServerName www.example.com
ServerAlias example.com
CustomLog /web/example.com/logs/access.log combined
ErrorLog /web/example.com/logs/error.log
</VirtualHost>

Continue Reading »
No Comments

htaccess Cheat Sheet

April 11, 2008 by Kode

Here is a simple cheatsheet for the .htaccess file:

Enable Directory Browsing
Options +Indexes
## block a few types of files from showing
IndexIgnore *.wmv *.mp4 *.avi
Disable Directory Browsing
Options All -Indexes

Continue Reading »
No Comments

Usenet and Binary downloads

April 11, 2008 by Kode
Usenet and Binary downloads

Purpose
This tutorial will attempt to help you get to grips with using Usenet, including signing up to a usenet provider, searching usenet, and downloading binary files with step by step instructions.
Introduction
The biggest problem with the music and movie industry is that they produce crap, nobody wants to spend their hard earned money buying crap,…

Continue Reading »
No Comments