Wanted Survivors

Posted by tHeSiD on March 17th, 2009
We want survivors

We want survivors

Anyone got any idea what the hell this means? I am totally stumped!

Change or Modify Bluetooth Device hardware (MAC) address

Posted by tHeSiD on February 8th, 2009

I am in the middle of an ongoing experiment, where in I am trying to get a Bluetooth headset to work simultaneously with my windows mobile phone and also my PC. I recently got my hands on a Nokia BH-209 headset, I tested the audio quality on the and its amazing! I tested it with skype by pairing it with my PC and the voice clarity is brilliant. I have always been searching for a good reason to ditch my table Mic and this headset maybe the one.

Right now, I am still unable to make it work with both the PC and the phone at the same time, so I need to pair it to the device every time I need to use it. Although pairing is not a tedious process, it still needs some manual labour, like deleting existing devices, adding and re-pairing. Almost a 5 minute task every time I want to use it. I want to avoid this hassle. Yes I am lazy.
Read the rest of this entry »

Mirror’s Edge Physx Lockup issue (fixed)

Posted by tHeSiD on February 3rd, 2009

Well, no game seems to come out all ready to play these days. Something has to be done to get it working always. The latest game Mirror’s Edge is no exception. The game seems to lock up after playing for a couple of minutes, usually 5-10 mins. This happens to people with the new nVidia 8000+ cards / all cards which are Physx capable show this symptom. The problem is because Mirror’s Edge’s handing of Physx is like a baby handing a sniper rifle.  A lot of people contacted me for a possible fix. Well, there is good news.

The fix is the new patch (Mirrors Edge v1.01) that EA released a couple of days ago which deals with the lockup issue. Download it here. Install and play. If it still locks up, disable Physx and then restart.
Read the rest of this entry »

Maruti Suzuki Swift, attempt at top speed 170kmph

Posted by tHeSiD on January 7th, 2009

My maruti doing 170 kmph

My maruti doing 170 kmph

We were just roaming around trying to find a fuel station near the Golkonda fort and we found this nice stretch of STRAIGHT road and decided to give it a go. You will see this road on the way to ocean park. BTW its VXi (petrol).
Read the rest of this entry »

Upgrade Wordpress 2.6.* to 2.7

Posted by tHeSiD on December 11th, 2008

Wordpress 2.7 is out! Here is the way to upgrade from any of the previous versions of wordpress ( 2.6.*  /  2.6.5) to the latest version i.e. 2.7. The process is very simple, involves only a few steps and I assure you the upgrade is worth the effort. Wordpress 2.7 was released to wordpress.com users earlier but for individual sites it is out now! Lets get started.
Read the rest of this entry »

Desktop – December 2008

Posted by tHeSiD on December 10th, 2008

It has been almost a full year since I made the shift to Vista from the trusty old XP. I am now officially bored of Vista’s default aero scheme. After an hour of googling and testing various themes and skins, here is my new desktop.


Stuff used :

  1. Transblack FINAL v1, Visual Style for Vista.
  2. Darkwood wallpaper pack
  3. VistaGlazz, for patching Vista theme files which enables custom themes.
  4. SimpleX 0.33, Winamp skin. (”Wow! Its really dark!” Color theme)

Also if you are feeling “I want something more sexier!”, you can try this winamp skin, just make sure you enable Desktop Alpha Bending in Winamp reflexion by ~sXnc | See the Last 2 images in the gallery.

Call of Duty – World at War, Solo start error (fixed)

Posted by tHeSiD on November 18th, 2008

When you start a new solo game in COD-World at War, it refuses to start, especially with the RELOADED version. It doesn’t start even if you go via the missions menu, it just stays idle. If you are facing this issue, there is a simple fix thankfully. Follow these simple steps.
EDIT : FIXED VISTA PATH

  1. Navigate to the folder :
    • XP users :C:Documents and Settings\USER_NAME\Local Settings\Application Data\Activision\CoDWaW\players\profiles\
    • Vista users : C:Users\USER_NAME\AppData\Local\Activision\CoDWaW\players\profiles\
  2. Delete all the folders in there.
  3. Create a new folder with the name of the Profile ex: tHeSiD (folder remains empty)
  4. Create text file: active.txt (must NOT be readonly)
  5. Open active.txt and type in your profile folder name (tHeSiD)

Thanks to ju7er117 at mininova for this fix :)

Wordpress post title rearrangement

Posted by tHeSiD on November 3rd, 2008

I had the All-in-one SEO package installed and I thought it took care of the titles but it didn’t. The only thing in the title tag was the blogs name/title. Even though the settings in the SEO plugin were set properly, it just refused to show the post title in the main title. I even tried setting the custom title for a post individually and that didnt work either. Sucks really coz all the pages in google had only one title, the title of the blog.

I eventually disabled the plugin and the titles were reverted back to Wordpress default. Blog name – Post title. I didnt want that either. I want Post title | Blog name. I checked the template header file and rearranged the wp_title() function and the bloginfo(’name’) variable. There was still a problem with that, the separator was still on the left side. The title looked like this ” » Post title | Blog name “.

I went on to codex and researched a bit, unlike the older versions wp_title() does take parameters. Setting the right parameters can help customize the way the title of the post is displayed. Here is an example, one I used for this blog.

Originally

1
<?php bloginfo('name'); ?><?php wp_title(); ?>

This resulted in a Title of this format. “Blogname » Post title”

You can change that to this

1
<?php wp_title('|',true,'right'); ?><?php bloginfo('name'); ?>

This results in a title of this format “Post title | Blogname”

A small tweak but really helpful when you want your search listings proper.

For more information and customizations of your own read the wp_title() documentation here. Template Tags/wp title

Fedora 9 on VMware, mouse tracking issue

Posted by tHeSiD on October 12th, 2008

I recently upgraded from VMware 6.0.3 to VMware 6.5, after installing the latest VMwareTools, the mouse went haywire. I click at one place and X thinks its somewhere else. Basically the co-ordinate system seems messed up. There are two ways to fix this.

1. Replace vmmouse driver with mouse driver in xorg.conf
Open the xorg.conf file

1
sudo gedit /etc/X11/xorg.conf
1
2
3
Section "InputDevice"
Identifier  "VMware Mouse"
Driver      "vmmouse"

Scroll down to the Driver entry in that section and change vmmouse to mouse
Save and reboot.
This is just a minor fix, in some cases there might still be problems in full screen mode and you cant shift from the virtual machine to the host easily.

2. To fix all the above issues and enable proper vmmouse implementation in the guest,
Open the xorg.conf file

1
sudo gedit /etc/X11/xorg.conf

and add this to the xorg.conf file

1
2
3
Section "ServerFlags"
        Option      "AutoAddDevices" "false"
EndSection

Save the file and reboot.
This will enable true vmmouse and the mouse will track perfectly.

PS: I used sudo here, if you haven’t configured sudo on your system, enable it or just use the root shell.

Lost in Translation

Posted by tHeSiD on October 1st, 2008

The daily “interaction” sessions in the college buses provide a quite a lot of entertainment. Today it was just another day filled with laughs and funny stuff, but you gotta see this!

We asked one of the freshers to write a telugu song in english, the song was Ramma Chilakamma and this is the translation written by him.

Ramma Chilakamma in English

Ramma Chilakamma in English


Theme : Webby Blue modified, Powered by Wordpress 2.7
Copyright © 2009 Siddharth Abbineni. All rights reserved.