Sunday, June 20, 2010

Bit of Hex Education

So I've started my Virtua Tennis Savegame editor, so in order to follow, I need to teach you about hex. So firstly, the easy stuff.If you want to get properly confused, go to the Wiki Page but here's a nicer one:http://www.itnewb.com/v/Introduction-to-Hexadecimal-or-Base-16-Number-SystemHex is base...

Saturday, June 19, 2010

Fixing N95 8GB keypad and save yourself money!

Problem: My N95 8GB keypad stopped working and just broke into pieces, cost for some one to fix it, £30-£40.I'm a cheap bloke, so I decided to fix it, this is how I did it!Firstly, I looked for a new case this is called "housing", so ebay time.Ebay search for N95 8GBIt took about 3 weeks for the delivery...

Wednesday, June 16, 2010

Getting HTC Desire working with ADB

Got an HTC Desire, I tried installing the Drivers with the Android SDK, it wouldn't work, I first had to enable USB Debugging.Settings -> Applications -> Development -> USB DebuggingPlugging it in, it wanted to install ADB (Android Debug Bridge)I first tried updating the .inf file;HTC Desire%SingleAdbInterface%...

Friday, June 04, 2010

Bitmap Serialize

So I've been tasked to fix a database full of pictures that weren't displayed, no matter what I tried, the Image (Stored as a byte array) was always invalid.So I thought I'll save the file and see if I can get an image fixer on it, I just used a FileStream opened it and wrote to itvar fileStream = new...

Transfer Data between two SQL Server's

Everyone probably knows this, but hey ho.I needed some data from one of my tables in one server to be inserted into another, here is the simplez SQL to do it.insert into Server1.Database.dbo.Table(Col1,Col2,Col3)select Col1,Col2,Col3from Server2.Database.dbo.TableEdit:thanks to @duncansmart just a bit...