Sunday, April 6, 2008

Dell System Restore (PC-Restore by Symantec)

This blog is really for me more than anybody else. It's where I write down things I frequently have to go back to. This one's for my Dell 700m laptop. The only thing I really want to note down is: CTRL-F11





Links:
http://www.goodells.net/dellrestore/fixes.htm
http://support.dell.com/support/topics/global.aspx/support/dsn/document?c=us&l=en&s=gen&docid=3E48AE3870775D64E040A68F5B2877D4&journalid=4A21D63B811197CBE040A68F27286213&Query=&SystemID=&ServiceTag=&contenttype=&os=&component=&lang=&doclang=&toggle=&dl=

Saturday, April 5, 2008

Camel Caps Title and Artist in iTunes

I DON'T LIKE ALL CAPS LIKE THIS. I prefer my music titles to: "Use Camel Caps". And I'm tired to renaming each of the 1000 Top Songs Of The 80's. Here is my solution:

1) Save the snippet below into: MarkyCamelCapsSelectedSongs.js




// m_a_r_k_y@yahoo.com 2008-04-05 Initial

var iTunesApp = WScript.CreateObject("iTunes.Application");
var selectedTracks = iTunesApp.SelectedTracks;
var numTracks = selectedTracks.Count;
var ITTrackKindFile = 1;

while (numTracks > 0) {
var currTrack = selectedTracks .Item(numTracks);
// is this a file track?
if (currTrack.Kind == ITTrackKindFile) {
title = currTrack.Name;
artist = currTrack.Artist;

//WScript.Echo(convertToCamelCaps(title) + " : " + convertToCamelCaps(artist));

currTrack.Name = convertToCamelCaps(currTrack.Name);
currTrack.Artist = convertToCamelCaps(currTrack.Artist);

}
numTracks--;
}

// camelcaps string converter
function convertToCamelCaps(str) {
var tempArray = str.split(' ');

for (var i = 0; i < tempArray.length; i++) {
tempArray[i] = tempArray[i].charAt(0).toUpperCase() + tempArray[i].substring(1).toLowerCase();
}

return tempArray.join(' ');
}




2) Open iTunes and select the songs you want to convert.
3) Double click MarkyCamelCapsSelectedSongs.js from explorer to run it.

You should see your selected songs get converted.

More Info here:
http://developer.apple.com/sdk/
http://www.nsc.ru/docs/ms/js/jstoc.htm
http://www.asp.dk/docs/jscript/jstutor.htm

Enjoy!

Monday, March 31, 2008

Preserve MP3 Ratings across Windows Media Player (WMP) and Windows Explorer

This is how to preserve your MP3 ratings across Windows Media Player and Windows Explorer.

Step1: Add your MP3's into you library and add Star Ratings.
WMP Screenshot #1

Step2: Check "Maintain my star ratings as global ratings in files" in Preferences.
WMP Screenshot #2

Step3: Tools->Apply Media Information Changes.
WMP Screenshot #3

Step4: Look at your files in Windows Explorer.
WMP Screenshot #4

I hope this helps. Enjoy!

Wednesday, March 26, 2008

Color Management in Windows Vista

Here is a configuration that gives consistent colors in:
* Canon Digital Photo Professional
* Adobe Lightoom
* Adobe Photoshop CS2.
* Firefox 3 (new)

I'm not sure if it's all correct. But its something that seems to work for me.

Procedure:

Step 1: Disable Adobe Gamma Loader.
msconfig.exeAdobe Gamma


Step 2:
Run Windows "Color Management" application.
Color Management

Set the System Default by going to the "Advanced" tab, and clicking "Change System Default". Then set the following settings below.

System Default Tab 2

System Default Tab 1

System Default Tab 3


Step 3: Set the user color management.

System Default Tab 2

System Default Tab 1

System Default Tab 3


To enable color management in Firefox 3, see my other post
How to enable color profiles & color management in Firefox 3


I hope this helps! Let me know if you other suggestions.

Thanks! Enjoy!

Tuesday, March 25, 2008

Overclock the Q6600 on P5K-E Wifi/AP and Corsair DDR2 800

Hardware:
CPU: Q6600 2.4Ghz
Memory: AData 2x1GB DDR2, Corsair 2x2GB DDR2 5-5-5-15
Motherboard: Asus P5K-E Wifi/AP
CPU Cooler: Coolermaster Hyper TX 775

Max overclock achieved:
3.2GHz
CPU Multiplier: 8x
FSB: 356MHz
DRAM freq: 800MHz
Problem: System hit 75ÂșC as soon as I started the test.

Safe overclock:
2.6GHz
CPU Multiplier: 9x
FSB: 288MHz
FSB strap to north bridge: 266MHz
DRAM freq: 864MHz


overclocksmall

For the best article I found for overclocking, click here.

Tuesday, February 19, 2008

And the winner is... Blue Ray!

So, it looks like the high definition format war has ended. To be honest, I'm not really that much affected. But it is nice to know that I'm sure to get compatibility when I do buy that HD player and that wide screen TV in the future (*dreaming*).

Anyway, here is a blow-by-blow of the battle that took place: http://www.pcworld.com/article/id,142584-pg,1/article.html

Enjoy!

Sunday, February 3, 2008

Microsoft + Yahoo = Microhoo(?) Yahoosoft(?)

I don't usually blog about these type of items, but this one sounds quite interesting. It has been rumored about for some time. Now it seems to be coming true.

Microsoft has just offered to buy Yahoo! for $44.6 billion. Read Steve Balmer's letter to the Yahoo! board here.

I personally don't see much good coming out of this. Especially since I'm heavily using Yahoo services such as Yahoo Mail and Flickr. I don't think I want Microsoft to be messing with these services.

Oh well, who knows? This might just turn out to be good for us. We'll have to wait and see.