Posts

My first video on youtube about fifa 07 ps2 soccer goals online

Here is a link to my video, fifa 07 ps2 soccer goals online on http://www.youtube.com/watch?v=LagMQOf6lzk If you are in some restricted region like dubai UAE, the link will say, video no longer exists. In that case, please try any of these 3 links below. The fix to this issue is to append &fmt=6 or &fmt=16 or &fmt=18 to the youtube url 1. http://www.youtube.com/watch?v=LagMQOf6lzk&fmt=6 2. http://www.youtube.com/watch?v=LagMQOf6lzk&fmt=18 3. http://www.youtube.com/watch?v=LagMQOf6lzk&fmt=16 USA Region below Enjoy!!!!

Decimal datatype in sql server 2000

The decimal data type in sql server 2000 has precision and scale. The precision defines how many length of chars that can exist from left to right including the the numbers after the decimal point. For example col1 decimal(3,2) can contain total of 3 numbers. 9.20 is valid whereas 99.2 is invalid because sql server will add a zero at end to make it 99.20 and that invalidates the rule of precision 3. try this drop table testDec2 create table testDec2(col1 decimal(8,2)) insert into testDec2 values (999996.9999999) --number on left is of len 6 and even thogh we have 7 digits after decimal point, sql -- will truncate the number to insert 999997.00 . Notice the rounding. -- if you try to insert 999999.99 it wont work because of rounding. The number will -- be 1000000.00 i.e. total of 9 chars. select * from testDec2 give it a try. ;-)

Outlook appearance like Gmail Conversation style

Found this great tutorial to mimic the gmail conversation style threading of conversation / emails in one single thread. http://www.petroleumjelliffe.com/2006/02/make-outlook-work-like-gmail/ Right click on From, or Subject and select Field Chooser. Select Conversation and drag it to any place where From, Subject etc appear. Conversation will appear along From, Subject wherever you have placed it. Right Click Conversation and select Group by this field. Thats it. You are done. I got a message saying cant group by Date and conversation. so I sorted my mail by sender and then clicked on conversation. It worked for me. Make sure you arrange mail in such a way that the new email is listed on top. HTH.

Translators not loaded --- Translators error in Dreamweaver for coldfusion.htm

I use Dreamweaver 8 on Windows XP and recently started to get this error message for no reason. It just started one day. the following translators were not loaded due to errors coldfusion.htm has configuration information that is invalid. This could also happen for XSLT.htm has configuration information that is invalid, ASP.htm: has configuration information that is invalid. ASP.NET.htm: has configuration information that is invalid. and so on. The solution to this problem is to delete FileCache_X.dat files from the Dreamweaver user configuration folder, where X is a random number and it could be different for your system. See below Dreamweaver 8 on Windows XP: C:\Documents and Settings\[username]\Application Data\Macromedia\Dreamweaver 8\Configuration All the best. I was able to successfully solve this problem

CFSchedule task - how to schedule a job in ColdFusion 7

This article will show how to schedule an automated job in ColdFusion 7 using CF administrator. Login to CF 7 Administrator and from left hand side, under Debugging & Logging, select Scheduled Tasks Option. Select create new. Under task name enter a task name, start date enter the date from which you want to start scheduled task, you could set daily or monthly depending on your preference and make sure specify time, in my case i entered 9:00 AM, under URL I entered my url like this, http://myipaddress/MonthlyReport - DontDelete/R_monthlyreport.cfm where MonthlyReport - DontDelete is a folder to make sure our report runs without any authentication that is usually specified in Root/Application.cfm. Instead of IPAddress, you could enter a url to a site as well but make sure you have right permissions. Finally, you could do save output to file and make sure specify the path to output file like this C:\Inetpub\wwwroot\clientname\MonthlyReport - Dont Delete\RepOut.htm Thats all, and y...

Coldfusion 7 - Accessing images from a network share

So this morning I had an issue where in images were not being displayed. The images are stored on network share on a different machine. I used this code to make it work, thanks to the help provided by http://www.acfug.org/ members. welcome to the test page..... <cfset theFile = "\\servername\sharename\CF_Chart_Share\test.jpg"> <cfif fileExists(theFile)> File exists <cfelse> does not exist </cfif> <br><cfoutput>#theFile#</cfoutput> <br> <!--- we have code in img2.cfm that will get us the image --> <br><img src=" img2.cfm "> The file img2.cfm has the code below <cfcontent type="image/GIF" file="\\servername\sharename\CF_Chart_Share\test.jpg"> I tried adding the code cfcontent in the same page but that was causing only the image to be displayed i.e. no text was being displayed. Hope it helps someone. Ajas.

Webex file extension .wrf will not open or rendered by IIS web server

We recently moved our web application to new server and we noticed that the webex files with extension .wrf was not being shown to user or was not being rendered by IIS. So on doing further research, I came to know that we needed to set a MIME type for the wrf extension. The .wrf extension needs to be set to application/octet-stream. Go to IIS settings, select the website or the web root folder and right click and select properties. Click on HTTP Headers tab and the bottom click on MIME Types button. Click new button and add .wrf in extension and application/octet-stream in MIME Type text box. Click OK and Apply at next screen and you should be done. After I clicked OK and Apply, the screen Inheritance override was shown. I said cancel to all. Here is some info from IIS help. If you set or change a MIME type that conflicts with a setting at another node in the hierarchy, you are prompted with an Inheritance Override dialog box where you can specify the nodes to which the new setting a...

Redirect using Coldfusion or Redirect using IIS

Image
I have a client who has url say www.xyz.com. They want a new url www.abc.com so that when user enters www.xyz.com, the user should see www.abc.com in his address bar of browser. Basically an alias/redirection with address bar showing the new url. I could have done redirection by dns names/url redirection at website level but problem is I have a subfolder application i.e. www.xyz.com/subapp. Now if I do dns/url redirection, and user tries to access subfolder application with this url, www.xyz.com/subapp/home.cfm, it takes the user automatically to www.abc.com/home.cfm i.e. the main application without the subfolder application, and I dont want that. It should take user to www.abc.com/subfolder/home.cfm. So to avoid this redirection at the website level, I added this code in Application.cfm Code: <!-- Relocate if not a secure connection --> <cfif cgi.SERVER_PORT is "80" and CGI.SERVER_PORT_SECURE is "0"> <!---replace xyz with abc ---> <cfset x = ...

CSS - Form Layout without using tables

Found some helpful links that show how to design forms without using tables. http://www.alistapart.com/stories/practicalcss/ Guru list very helpful http://www.sitepoint.com/gurulists/#gurulist-7 http://www.sitepoint.com/gurulists/ http://www.sitepoint.com/article/fancy-form-design-css http://realworldstyle.com/forms.html

Coldfusion CFSELECT Validation Fails

Most of us have issues with Coldfusion CFSELECT Validation i.e. form submits even though he didnt select an entry from drop down list and you have validation in CFSELECT . Here is the solution to this issue. 1. The validation works only if you have size attribute of cfselect set to a value greater than 1. Here is my code that works <cfselect name="sec_question" required="yes" message="You must select a security question to reset your password." size="2"> <option value="1">What is your mother's maiden name? <option value="2">In what city were you born? <option value="3">What is the title of your favorite book? <option value="4">What is your favorite pet's name? </cfselect> 2. Here are some observations a. I didnt require selected="" attribute inside cfselect b. I didnt require Please select a value i.e. with a space or without space(either way, I tried ...

Nice blog post - how to get things done.

How I Get Things Done(GTD)

Nice Interview - Mark Taylor on Cricinfo - Part 1 and Part 2

A very nice interview from former aussie captain, Mark Taylor. Part 1 - Mark Taylor - 'Why would you want to play five days for a draw?' Part 2 - 'I didn't go out and bat as captain' Enjoy.

My Barcelona Jersey

Image
Image
       

Pictures Real Madrid Jersey Plus New Kurta

Image
       

NBA 2008 Conference Standings

The 2008 NBA conference Standings.

Snip-A-Thon 2007! Contest to win CF Prizes from CFSnippets.org.

Image
Snip-A-Thon 2007! Welcome to Snip-A-Thon 2007!! The purpose of this contest is to encourage snippet submission by www.CFSnippets.org registered users, increase the registered user base and promote the overall concept and usage of www.CFSnippets.org . Click on the banner to visit the site and increase your chance of winning different CF prizes. So get started now. ;-)

So you want to start your Green Card process? ;-)

I will outline here, the works that needs to completed from start to finish in the Green Card Process. The very first step in the process is to place an ad in the newspapers about the position you are currently working on. I know it sounds little strange but thats how it is. This is usually done by attorneys and your HR plays a big role in it. Once the ad part is done, the attorney files for the labor application. This takes anywhere from 2-3 months for approval. If your labor is denied, your application dies there and you have to start over the whole process again. I. Documents for labor application. 1) All status documents i.e. if you are on H1B, then all I-797 documents are required. 2)All experience letters from past employers. Some attorneys ask for originals. Any other experience letter supporting the newspaper AD might be required as well. This could be from your employer, professor etc. The idea is to support the ad indicating you have the required experience to perform the job...

All black pics from 2001

Image
My pics from 2001. I love wearing all black or any kind of black T shirt. This is from my Engineering days.

MurthyDotCom : International Travel Tip, Marriage before GC Approval , Benefits of I 485

MurthyDotCom : International Travel Tips Georgia Institute of Technology :: Office of Human Resources MurthyDotCom : AOS/CP - FAQs SPOUSES Marriage before Green Card Approval Marriage after Green Card Approval MurthyDotCom : Sponsoring Family Members to Come to the U.S. MurthyDotCom : Concurrent I-140 / I-485 Filings Now Allowed