# Wednesday, October 29, 2008

I opened up my netflix flyer today and in the part with advertisement had a ad for CNN. The Ad read “Watch History Unfold” sheesh, those jackals will enterprise on anything. I wonder how much Ad space will cost for election day coverage, in 4 years will we have remembered the commercials of Nov4 past?

I will tell you my prediction for watch history unfolding…

My prediction, for election 2008 is that something “crazy” will happen.

  • Voter data scandal, the data for voters will be tampered with, stolen, lost etc etc etc
  • Voting means nothing, america will vote for B.O. but J.M. will become the president because of electoral vote process.
  • We see attacks on people voting

glass half full, but hey, prove me wrong america. I would be happy with that.

vote for me as a write in, I will make recess longer and pop cheaper

posted on Wednesday, October 29, 2008 7:17:19 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Tuesday, May 13, 2008
I recently was working with some shared code and didnt like the regulations or the publicity of SourceFourge, so I set up a home CVS server to distro the code. Like another individual I googled out and found a bunch of documentation from linux users, no offence but I dont have time to read 30 pages to edit a password file. so I duplicated notes from here -http://www.adp-gmbh.ch/blog/2004/november/3.html- in case its ever removed and added my own commentary and edited some things for the new version of cvsnt.

Wih the server I also just checked out TortoiseCVS (formally I used wincvs) I dont like how much its locked into explorer but its so easy that I dumped wincvs and only use the turtle.

Installation

The installation turns out to be quite straight forward. Starting the installer takes care of the entire installation.
The default installation installs two windows services: the cvsnt service (named CVSNT) and the cvsnt lock (named CVSNT Locking Service) service. Additionally, it also installs a default certificate.
The cvs.exe was installed into C:\Program Files\cvsnt. Install also adds to your path statment.

Creating a repository

A repository needs a root directory under which both the files under version control and auxiliary files for use by CVS server are stored. I created this directory manually:
C:> mkdir c:\CVSSERVER
However, this is not a CVS repository by itself; the CVS server needs to be told to use this directory as a repository. The CVS server (or service, respectively) is administered through a service control panel that can be invoked in the dos prompt like so: (or via start menu)
C:\> cvsnt.cpl 
Now, with cvsnt.cpl, one can go to the Repositories tab and add the created repository. I chose /test for the name of the repository.

A dialog informed me: C:/CVSSERVER, but is not a valid CVS repository.
Do you want to initialise it?

And yes, of course, that's what I wanted.
Then I pressed apply.
The initialization basically created a CVSROOT directory beneath c:\CVSSERVER and put some 55 files and yet another directory into CVSROOT.

Adding a user

After creating the repository, I needed to create a user that can access (that is store and retrieve files) the repository.
C:\>cvs -d:sspi:localhost:/test passwd -a some_user
Adding user some_user@localhost
New password: ******
Verify password: ******
cvs server: *WARNING* CVS user 'some_user' will not be able to log in until they are aliased to a valid system user.
The password that I have specified (and is hidden in the console) was password.
This command created \CVSSERVER\CVSROOT\passwd with the following content:
some_user:AuC4s3kI8ixcs
Now, some_user needs to be aliased (according to the warning returned by cvs) to a valid NT system user:
C:\>cvs -d:sspi:localhost:/test passwd -r SYSTEM\administrator some_user
Changing repository password for some_user@localhost
New password: ******
Verify password: ******
Although this seems a bit redundant, it looks like one has to give the password again. This is the password for the CVS user not the system account. The SYSTEM\administrator is the NT-FQ name of the local admin in this example.

Creating a module

Now, it was time to create a module which I named test_module:
C:\CVSSERVER\>mkdir test_module
C:\CVSSERVER\>cd test_module
For the beginning, I only stored one file, README.txt, into this module. (one file is required to start the module)
C:\CVSSERVER\test_module\>notepad README.txt
Here's the content of README.txt:
test_module
===========
This is some dummy text.
C:\CVSSERVER\test_module\>cvs -d:pserver:some_user:password@localhost:/test import TestModule no-vendor initial-release
I didn't specify the -m flag, so CVS opened the default editor likely notepad (as the environment variable CVSEDITOR is not set) to enter a message. 
CVS: ----------------------------------------------------------------------
CVS: Enter Log. Lines beginning with `CVS:' are removed automatically
CVS:
CVS: ----------------------------------------------------------------------

just say C for continue
.. and CVS answered with:
N tm/README.txt

No conflicts created by this import
The N obviously indicates that tm/README.txt is a new file.
Now, let's see what happened in C:\CVSSERVER>.
C:\CVSSERVER\test_module\>cd \..

C:\CVSSERVER>dir
Directory of C:\CVSSERVER
02.11.2004 23:35 <DIR> .
02.11.2004 23:35 <DIR> ..
02.11.2004 15:53 <DIR> CVSROOT
02.11.2004 23:35 <DIR> TestModule
Indeed, it added a new directory called TestModule What's in there?
C:\CVSSERVER\test_module\tm>dir
Directory of C:\test_repository\tm

02.11.2004 23:35 <DIR> .
02.11.2004 23:35 <DIR> ..
02.11.2004 23:35 <DIR> CVS
02.11.2004 23:35 506 README.txt,v
It contains a CVS directory (again, used for CVS use) and the README.txt (with a ,v suffix)
Now, the repository is ready to be used.


so in the end to connect
cvs -d:pserver:some_user:password@localhost:/test /TestModule

posted on Tuesday, May 13, 2008 11:06:21 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Thursday, March 20, 2008

recently found a good use of VM Converter to change the disk size and no need to mess around in command line

 1) if you own a copy of converter thats a cheat

http://www.vmware.com/products/converter/

 if all else fails

http://www.ebswift.com/OpenSource/VMDiskSize/

then use diskpart (cmd tool with windows)

run the following commands…(on a different box)

diskpart

list disk

list volume

select volume=(your volume)

extend

list volume (check your work)

posted on Thursday, March 20, 2008 1:49:47 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Wednesday, March 05, 2008

One thing I love about MSDN subscriptions is the ability to get Visual Studio. Now I dont program much but I did have a lot of fun with VB back in the day and when VS2002 went to .net I must admit that I lost interest as the code changed a lot.

Then comes VS2005 with all its cool context help.

Then comes VS2008, I must say this is the most impressive dev studio I have ever seen. Just like office2007 and ability to think what I want before I want. VS08 allows someone who just knows how to program, convert to .net and program up things that are awesome. Seriously the context help and auto-complete in VS2008 are way cool. If you are a programmer or have MSDN and did old c or vb then check out the new application its worth the time.

posted on Wednesday, March 05, 2008 10:46:26 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Thursday, November 29, 2007

I wanted to make a list of browser plug-ins that I use and find quite important to security and daily ops work.

First, for IE (I accidently upgraded to 7.0 and didn't feel like un-installing the behemoth)

  • Bayden Systems' TamperIE offers HTTPS form-tampering
    • sort of a mac-daddy tamper application to change your post data on the fly, must have.
  • Microsoft's IE Developer Toolbar
    • Change values on the fly also get header info and more right away
  • Microsoft's IE Powertoys for WebDevs
    • was cool but appears the highlight and show source dont work with IE7, however still works for DOM data so I keep it.

Now the giant list for FireFox (where all the 31337 users are)

  • AdBlockPlus
    • This is like going from dial up to DSL, the internet all the sudden becomes “sweet”
  • BlogJet
    • This is also in my IE, its my blogger application
  • DOM Inspector
    • handy for webdev and de-construction
  • DownloadThemAll
    • I dont like to click and this is a price-less tool for saving clicks.
  • GoogleBrowserSynch
    • I dont like how big google is and I dont like the idea of google watching what I browse, this was just an interesting tool since I am on lots of computers, I just dont have the guts to sign-in yet.
  • GoogleToolBar
    • this is a must, duh.
  • HttpHeaders
    • handy for webdev and de-construction
  • ModifyHeaders
    • handy for webdev and de-construction, and user-agent mods
  • NoScript
    • The only “security” leo laporte knows with out steve giving him a script. Handy for hacking things.
  • RefControl
    • spoof the referrer to the server.
  • PDF Download
    • sometime I like to download pdf’s sometimes I like to view them live, this lets me choose.
  • Tamper Data
    • same as TemperIE but for zilla
  • ULRParms
    • Different type of TamperData type plugin
  • User Agent Switcher
  • WebDev
    • This tools is mostly a must for anyone, you can quickly shut on and off and mod parts of sites.
Update June2008:
some good hack tools
http://www.securitycompass.com/exploitme.shtml
posted on Thursday, November 29, 2007 6:25:23 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Monday, November 19, 2007
I just found out that quick basic is public domain. I learned to program with qbasic way back in grade school. Time to dig up some of my old programs, but I couldnt afford the version with the compiler.
posted on Monday, November 19, 2007 10:49:38 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Tuesday, October 23, 2007
the following video games I'm excited for, you see all the nerds waiting for Halo3? well that game is nothing as to the hours of play time that I will get from the following, sorry katie.

Burnout Paradise this with my next entry is why I purchased a xbox back in the day, also one of a few games I have every played to the end. Replay value is 5 star. I CANT WAIT

Tom Clancy's Splinter Cell: Conviction also the only game titles I stick around to play to the end, I love this series more then candy (well no not really) I CANT WAIT

Grand Theft Auto IV possibly the best game series I have ever laid eyes on, Im old enough to tell right from wrong, but this game is so real that I can choose wrong. Take that you lady of the street 'gimmie back my cash' sweeeet america I CANT WAIT

The Simpsons Game I really liked the GTA rip off of the Hit & Run game this game looks possibly the best thing ever, I am torn if the Wii will have anything cool (I doubt it) but the Wii has a list of cool games on its own. just watching all the commercials makes me want want want I CANT WAIT

thats $200 of video games in the next 6 months. bastards, time to break open the piggy.

posted on Tuesday, October 23, 2007 11:21:43 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Tuesday, October 09, 2007
I havent had time to post up about this, but there is a new version of fgdump, this will dump the protected storage if possible, local LM table and cachedump of any system you have admin rights to. This tool is the ifto-facto tool for collecting data for pen-test stuff. The special thing about this tool is that it will sneek past most AV tools so you dont need to kill them to audit. I also recommend downloading the source and compile on your own to even further protect against AV messing this up.

posted on Tuesday, October 09, 2007 5:26:53 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Sunday, September 16, 2007
Chaosreader will take a tcpdump stream and trace out and dump the clear text data, such as ftp, telnet, http, jpg, wave. Why is this interesting? well you can dump out a stream with tcpdump or wireshark and collect the data for forensics or for snooping. This would be a great free alternative to Network Observer by Network Instruments
posted on Sunday, September 16, 2007 10:03:49 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Wednesday, September 12, 2007
Just saw an interesting software package today, called software for starving students its a windows and osx installer for a bunch of pre-bundled opensource software. They have a nice menu that says things like “video editing” and will install opensource packages for video editing and multimedia. cool. So if your a student, want to learn or just want to play with new software go download this package.
posted on Wednesday, September 12, 2007 2:28:05 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Thursday, August 30, 2007
Now that I have a multi boot with WindowsXP, Ubuntu, BackTrack2 security was an issue. First installed windows then used gaprted boot disk to separate 3 primary and 1 expanded.  I have PGP watching windows by expanding the drive (in PGP desktop) and clicking on the C: partition and encrypting that. Then installing ubuntu in partition 2. Then using this guide to encrypt redirected /home to partition 3. the expanded disk was then used for a boot of BackTrack2 with this tip sheet and swap. So in the end I have all three OS's running with PGP login at boot, then grub, then OS. here is my grub


title           Microsoft Windows XP Professional
root            (hd0,0)
savedefault
makeactive
chainloader     +1

title           Ubuntu, kernel 2.6.20-16-generic
root            (hd0,1)
kernel          /boot/vmlinuz-2.6.20-16-generic root=UUID=0dd29d80-088f-47c6-b8$
initrd          /boot/initrd.img-2.6.20-16-generic
quiet
savedefault

title           BackTrack2
rootnoverify    (hd0,6)
kernel          /boot/vmlinuz vga=791 root=/dev/sda7


posted on Thursday, August 30, 2007 7:40:30 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
Theass-The-Hash tools from Defcon etc are being put out on the net. Specifically two tools that I have talked about (my posts about Pass The Hash and side jacking) but didnt have code to. Pass-The-Hash, for windows has a toolkit out. As well as the sidejacking trick is also released. have phun.
posted on Thursday, August 30, 2007 7:23:40 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
I just found an application called ScribeFire which I configed as a MetaBlogAPI to the /blog/blogger.aspx in dasBlog and want to see how well it works, This is to keep blogging from my laptop which I am using more and more these days.


Powered by ScribeFire.

to get rid of that, you want to click the << on the left of the application near the Bold button on the toolbar then uncheck it in the settings.

posted on Thursday, August 30, 2007 7:13:52 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Wednesday, February 21, 2007

If you admin computers via RDP then you NEED this tool.  visionapp Remote Desktop (vRD 1.4) this tool is crazy cool. like VNC managment apps you can have a list of all your RDP servers. If you wanted you can save your cridentials (dumb) and you can view all the sessions in Tab or QuickView format. this is a MUST HAVE TOOL. (you need to register to use) http://www.visionapp.com

also your list that you make you can backup and share with fellow IT.

 

 

posted on Wednesday, February 21, 2007 1:25:08 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Tuesday, February 06, 2007

this is a cool idea to make giant posters.

link

posted on Tuesday, February 06, 2007 1:56:29 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Thursday, February 01, 2007

new version of putty, it will do COM port stuff now. boo yea.

http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

 

posted on Thursday, February 01, 2007 1:47:32 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Wednesday, January 17, 2007
posted on Wednesday, January 17, 2007 3:32:42 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Thursday, January 11, 2007

I have come across a good mailware stopping application that i might put into my “must have tools”

Called WinPooch 

Go uninstall all your adware like applications (they totally suck anyway) and hit malware at the root. not after it hacks you. This application has a huge ruleset and its very customizable, you can set up rules like “no .exe files will be written to C:\windows with out a accept from the user” this is awesome. Sure its a matter of time before it becomes a really good application and people figure out how to get around it. But for now its bad ass. Small and light – there is no reason you shouldn't run this on all of your PC’s seriously go download and install.

posted on Thursday, January 11, 2007 11:10:14 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Wednesday, December 20, 2006
mass download program for when you update or rebuild your computer.
posted on Wednesday, December 20, 2006 10:52:25 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Monday, November 27, 2006

 I have been reviewing ipod conversion software my main points while reviewing are..

  • G5 Ipod support. (meaning 640x480 encoding)
  • one click or as close to as possible
  • dvd rip tools for 1 click or as close to as possible
  • resize or crop ability for my 16x9 movies that i have all ready encoded in divx

after full review I have come up with the following product. Xilisoft / ImTOO. I dont know what the difference is between the products, its the same thing with different branding (the company’s share a copyright for the software). One item that they do not clearly define on the program is the crop tools. There is a definition for four crop modes. 16x9, Med, PanScan, Full.

I have taken screen shots of each type of “zoom” in 640 mode. the center is the original(wide) and the red and green bars are the “Med” (red) and Pan-Scan (green) the Full is totally out of ratio so I did not test it. (top left is pan top right is ‘med’ lower is the orginal with markups for crop)

 for 29$ you get the program and free updates to the code. This is handy since cracks cant keep up with updates, and hell support the fools that make this. it makes it better. i also want to toot a horn for the email support they have.

IpodVideo_PanScanIpodVideo_MED

IpodVideo_Wide

on the ipod they all look good, up to you on what you want to sacrifice for size. I personally use the “med” giving you a close match with out too much film loss. on television playback they all look good on a standard tv “dvd-quality” the same for the wide-screen with artifacts being just a little more noticeable.

used version 3.1.14 b 1122b

posted on Monday, November 27, 2006 10:52:18 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Friday, November 10, 2006
a good tool for securing your USB stick. TrueCrypt open source high security software that allows a nifty mount on the fly for drives. Thusly you can put this on your USB stick (check out travel drive) or you can burn a Travel Disk to a CD and no worries of its contents being lost.
posted on Friday, November 10, 2006 1:36:47 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Tuesday, October 17, 2006

they spend development time in making a super duper product remover. So if you rworking on a PC and NAV is being a pest use this…

http://service1.symantec.com/SUPPORT/tsgeninfo.nsf/docid/2005033108162039

 

posted on Tuesday, October 17, 2006 12:20:15 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Monday, October 16, 2006
found a usefull program, WM Ripper you can pull WM/Real streams right out of the TCP stack. way cool
posted on Monday, October 16, 2006 11:59:20 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Thursday, September 28, 2006
Free Cable TV yes you heard me free TV on your PC HBO included
posted on Thursday, September 28, 2006 10:03:17 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Friday, September 01, 2006

This is a new internet browser, its VERY small VERY fast and has no ability to save settings, cookies, or cache. Way cool.

One problem they default all search to “browzar” search if your dev team searches blogs – add the ability to google please.

Edit:

I pulled the link because tere is too much proof that the browzar is in fact not that cool

 

posted on Friday, September 01, 2006 8:42:14 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Monday, August 21, 2006

Did you allow automatic patches to run on your exchange server then realize that your blackberry stopped working? I did.

Black Berry KB

Microsoft KB that broke it

I cheated and used Jon’s Tip to fix it and applied the security to the whole company OU Im not going to itemize out each employee with a blackberry. (simply by adding the security to the OU advanced properties)

*note that if your user with a blackberry is a domain admin it still will not work unless you by-pass the new security policy’s in place. read the lower half of the M$KB

Gpobes

 

posted on Monday, August 21, 2006 10:11:28 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Monday, July 17, 2006
and now VM ware follows suite with free virtual PC software
posted on Monday, July 17, 2006 2:33:19 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Tuesday, July 11, 2006

dvdshrink is starting to have problems with new dvd’s as is decryptor

ripit4me is the new kid on the block

posted on Tuesday, July 11, 2006 9:16:05 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Monday, July 10, 2006

I had a few links i wanted to read later and just posted them here.

Tip for UDMA-6

How to Check Current Transfer Mode

  1. Open Device Manager
  2. Expand IDE ATA/ATAPI Controllers
  3. Double click on Primary IDE Controller or Secondary IDE Controller
  4. Go to the Advanced Settings tab to see the current transfer modes. If you see anything besides UltraDMA-6, and especially if you see PIO Mode, then follow the steps below.

How to Force UltraDMA-6

  1. Open up the Registry Editor.
  2. Navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}.
  3. There are several sub-keys under this one, such as 0000, 0001, etc. You are interested in two of them that say Primary IDE Channel and Secondary IDE Channel.
  4. Make the following changes to both of those keys:
    1. Delete any attributes named MasterIdDataCheckSum or SlaveIdDataCheckSum. This resets the tracking for errors that Windows uses to determine when the transfer mode should be lowered.
    2. Add an attribute with the name ResetErrorCountersOnSuccess and a DWORD value of 1. This tells Windows that it should lower the transfer mode when there are six consecutive errors instead of six cumulative errors.
    3. If they exist, set the following keys to a hexadecimal value of ffffffff (eight F's). This will change the transfer modes to UltraDMA-6:
      • MasterDeviceTimingMode
      • MasterDeviceTimingModeAllowed
      • SlaveDeviceTimingMode
      • SlaveDeviceTimingModeAllowed
      • UserMasterDeviceTimingModeAllowed
      • UserSlaveDeviceTimingModeAllowed
    4. Reboot your computer and check the devices to see if they are set to UltraDMA Mode 6.
posted on Monday, July 10, 2006 12:26:23 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Monday, June 19, 2006

remote desktop is very handy, if you remember to turn it on.

If you dont remember, then download this and it will reghack a remote computer for you, so that you can get into the box.

posted on Monday, June 19, 2006 10:00:52 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Friday, June 09, 2006

as I learn linux so will you.

lost your mysql root password. well for some reason i did and the sql documentation seems to be wrong.

Run this: (after killing the current PID for mysqld)
mysqld_safe --skip-grant-tables --user=root &
Then: (from mysql command line)
UPDATE mysql.user SET Password=PASSWORD('newpwd') WHERE User='root';
FLUSH PRIVILEGES;

posted on Friday, June 09, 2006 1:00:17 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [1] Trackback
# Sunday, April 23, 2006

I updated the How-To for XBMC MYTHTV and Knoppmyth

posted on Sunday, April 23, 2006 10:05:47 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Friday, April 21, 2006
Interesting topic. you code windows API into OSX. Thus allowing full use of windows applications in OSX. That means that for the first time ever in history Microsoft has a serious competitor to its operating system. the best part is…they created the API for the competition. this is so wacky I could see it.
posted on Friday, April 21, 2006 1:32:03 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Wednesday, April 05, 2006

yes every blog in the world has this link but its worth it

http://www.apple.com/macosx/bootcamp/

 review http://news.yahoo.com/s/pcworld/20060406/tc_pcworld/125325

damnit i didnt wanna buy this now. guess i will be.

posted on Wednesday, April 05, 2006 9:28:49 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] Trackback
# Tuesday, March 28, 2006
I just booted up a new Dell M70 laptop and it comes preloaded with google desktop
posted on Tuesday, March 28, 2006 11:40:32 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Wednesday, February 22, 2006

for the last week i have been trying to get a nameless two-factor login proto call to work. its a nightmare. I cant post much on it cuz well its top secret. but its stressing me out (this is also the first post where i say my current feelings) damn kelly don't break that record.

in other news

A Canadian university has ruled against Wi-Fi on the campus because administrators are worried about possible hazards to student health. Lakehead is located at the head of Lake Superior in Thunder Bay, Ontario, and president Fred Gilbert won’t allow Wi-Fi, "until he’s satisfied EMF (electric and magnetic fields) exposure doesn’t pose ….

haha this from the same country that makes you take a test if you win money on a scratch ticket

 

i haven't done much lately just working. thats why there are no fun posts. 2.6 weeks till i move into a new place.

posted on Wednesday, February 22, 2006 10:08:52 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Sunday, February 19, 2006

This is so awesome Jon might actually buy XM now.

This is a “winamp” program that will stream XM no more need to run the IE window all day!! It also will pop up the song title IM style. It also links to MSN messenger for the “now playing” its called XaMp this is so cool.

 

posted on Sunday, February 19, 2006 2:05:59 PM (Pacific Standard Time, UTC-08:00)  #    Comments [1] Trackback
# Thursday, February 16, 2006

So a problem I had with RSA SecureID 6.1 that is a “known issue” not fully documented and sort of a pain.

 

When you use a Windows Domain Controller as an auth server for NT-Domain logins there is a setting for session lifetime of the RSA Authentication Token.

 

ServerRSA

 

The problem is that if you set the session lifetime option this in theory will allow you to keep your token until you log off, in fact this feature is broken and you must also set the session life time minutes to live. As you see here I have set the NCA domain to a lifetime of 12 hours, and then chose the Session lifetime option.

 

A complaint a client might have is something like: My resource (like email) after 5 minutes will ask for a log on, my account is locked out every 5 minutes.

 

posted on Thursday, February 16, 2006 9:59:47 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Thursday, January 19, 2006

now that I have a stable mythTV box up and running I am loving the DVR so much, commercial skip rules. Its very smart on every channel but MTV1/2 will it skip all the channels perfectly.

MTV is so flashy and jumpy and ‘gen-x’ that the commercial detection has no idea when a commercial starts.

posted on Thursday, January 19, 2006 12:52:24 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] Trackback
# Monday, January 16, 2006

Well for the last week I have been working on setting up a DVR (tivo) box for my home. This DVR is a DVR-Server of sorts using MythTV as the back-end for it all, and using Xbox with XBMC as the font end. It works sweet and here are my notes on the setup.

Equipment

  • MSI 845U Motherboard with 512ram and 2.3P4 (had that sitting around)
  • Hauppauge PVR-500 (picked that up) added a 2nd
  • nVidea AGP ATI AIW-8500 (for DVI)
  • SoundBlaster Live!
  • 250GB ATA

stuck all that into a box added a few more fans for server coolness.

Software

I decided to use KnoppMyth Release 5A30.15B75C7 because its fast easy and has all the packages I need on one CD I am fairly comfortable with debian being that all Knoppix distros use it. The CD allows for fast easy setup. Its a nobrainer. and lots of scripts for a fast install.

you need A hacked xbox with XBMC and XBMCMythTV (items out of scope of document for setup and how-to)

Setup of KnoppMyth is easy you can follow the many guides for installing the product

Install Guide KnoppMyth Wikki

Install Guide KnoppMyth other parts and stuff

Install Guide for Fedora (homebrew your whole box not for K.M.)

MythTV Documentation (generic documentation on the MythApplication)

Its all very basic install. Some tips I found to not be documented well (make sure your running SU/root)

  • First off if your not a linux nerd then use the Web-Admin tool allows fast easy configs
  • auto start samba with – update-rc.d samba defaults
  • edit /etc/samba smb.conf to contain the /cache root path (need this to stream live tv to the xbox for.18 .19 is not the same and also not working right now with xbox)
  • enable use of mysql on network commenting out a line that reads 'skip-networking' in the /etc/mysql/my.cnf
  • make sure your security for the db is good here
  • restarting MySQL (/etc/init.d/mysql restart)change the IP address in the 'General' section of mythtv-setup on the backend system. Change both instances of IP numbers from the loopback address (127.0.0.1) to the actual IP number of the backend.(then restart backend) if frontend fails to load this is the reason.
  • set all reco