Archive for the ‘Uncategorized’ Category

UFC 102 Picks

Monday, August 24th, 2009

Since I’m -200 overall at this point, I think I’ll keep my picks to a minimum. I don’t think Leitas really lost that fight last time and nor does Dana White, but so be it. I picked him and the judges went the other way.

So for 102 I’m playing:
-Randy Couture -175 over Antonio Rodrigo Nogueira. I know that Couture is older, but I don’t see Nogueira pulling off a submission or KO. I think Couture is a better wrestler as well.

-Brandon Vera -180 over Krzysztof Soszynski. Soszynski is good, but I really don’t think he has what it takes to beat Vera.

Tuesday, August 11th, 2009

The key to immortality is first living a life worth remembering. – Bruce Lee

VMware Infrastructure Network Ports Used

Friday, August 1st, 2008

Here’s a neat little image of the ports used by VMware for their products. It includes ESX and ESXi 3.5, VirtualCenter, the VI Client, and Update Manager and Converter. This is good for network administrators and troubleshooting.

MS Age of Empires Settings

Friday, February 8th, 2008

default difficulty level: HKEY_CURRENT_USER\Software\Microsoft\Games\Age of Empires\1.00\Difficulty – set it to 0 and it will be hardest.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Games\Age of Empires\1.00\CDPath – is the path that you used to install AOE – it’s where it’ll look for the CD when you start playing.

How to get pop 200 offline ,

Click start, programs , microsoft games , age of empires ,

then Right click on the Age Of Empires Icon and go to Properties

and then select the Target Box it should say “C:\Program Files\Microsoft Games\Age of Empires\Empires.exe”

u need to add limit=200 and the end of it so it reads “C:\Program Files\Microsoft Games\Age of Empires\Empires.exe” limit=200

and then Launch the game from Start / Programs / Microsoft Games/ Age Of Empires / Age Of Empires

When it has opened , go to MULTIPLAYER , then type in anyname , then Internet tcp/ip , then click ok ,

Now press CREATE then enter any game name ,

And your ready to play with pop 200 Offline

Its seems hard the first time but u get the hang of it easy]]>

Re: Ash Wednesday or Chinese New Year?

Friday, February 8th, 2008

Won’t your parents understand and respect your religion/choice? I’ts not like Chinese New Year and Ash Wednesday will fall at the same time every year.

UPnP Problems?

Friday, February 8th, 2008

Ash Wednesday or Chinese New Year?

Thursday, February 7th, 2008

]]>

Pandora.com is awesome!

Sunday, January 27th, 2008

Pandora Radio is where you can create your own radio station based on an artist or song you pick. It’s really cool! This would be great to use to set up an ambiance somewhere.

take good care of your teeth – It’s very important!

Saturday, January 26th, 2008


It was expensive too! It really sucks. I keep sticking my tongue against it trying to push it out. It feels like it really doesn’t belong in my mouth.]]>

DHCP server with DDNS

Wednesday, January 23rd, 2008

authoritative;
include “/etc/bind/rndc.key”;
server-identifier chunli.shocknetwork.com.;
ddns-domainname “shocknetwork.com.”;
ddns-rev-domainname “in-addr.arpa.”;
ddns-update-style interim;
ddns-updates on;
ignore client-updates;
zone shocknetwork.com. {
primary 127.0.0.1;
key rndc-key;
}
default-lease-time 21600; # 6 hours
max-lease-time 43200; # 12 hours
option domain-name “shocknetwork.com”;
option domain-name-servers chunli.shocknetwork.com, resolver1.opendns.com;
default-lease-time 600;
max-lease-time 7200;
log-facility local7;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.100 192.168.0.200;
option domain-name-servers chunli.shocknetwork.com, resolver1.opendns.com;
option domain-name “shocknetwork.com”;
option routers 192.168.0.1;
option broadcast-address 192.168.0.3;
default-lease-time 600;
max-lease-time 7200;
zone 0.168.192.in-addr.arpa. {
primary 192.168.0.3;
key rndc-key;
}
zone localdomain. {
primary 192.168.0.3;
key rndc-key;
}
}

/etc/named.conf –> I’m using Ubuntu 6, so it’s actually /etc/bind/named.conf and named.options, etc, but for the sake of simplicity, I’ll put them all together.
options {
directory “/var/cache/bind”;
auth-nxdomain no; # conform to RFC1035
};
zone “.” {
type hint;
file “/etc/bind/db.root”;
};
zone “localhost” {
type master;
file “/etc/bind/db.local”;
};
zone “127.in-addr.arpa” {
type master;
file “/etc/bind/db.127″;
};
zone “0.in-addr.arpa” {
type master;
file “/etc/bind/db.0″;
};
zone “255.in-addr.arpa” {
type master;
file “/etc/bind/db.255″;
};
controls {
inet 127.0.0.1 allow {localhost; } keys { “rndc-key”; };
};
// Add local zone definitions here.
zone “shocknetwork.com” {
type master;
file “/etc/bind/shocknetwork.com.zone”;
allow-update { key “rndc-key”; };
notify yes;
};
zone “0.168.192.in-addr.arpa” {
type master;
file “/etc/bind/0.168.192.in-addr.arpa.zone”;
allow-update { key “rndc-key”; };
notify yes;
};
include “/etc/bind/rndc.key”;

Some troubleshooting tips:

1) turn on logging for DNS:
logging {
category “default” { “debug”; };
file “/tmp/nameddbg” versions 2 size 50m;
print-time yes;
print-category yes;
};

That’s about it – it should give you all you need.]]>