Friday, February 27, 2009

how to get free facebook credits ?

If you have found yourself on this article then I can safely assume that you are searching for a way to get free Facebook credits. In case you have stumbled across this article whilst searching for something else, Facebook credits is a virtual currency used to pay for virtual goods in Facebook applications and Facebook games. Each $1 spent is worth 10 credits, in other words each credit is worth $0.10 each. Facebook retains 30% of all revenue which is gained through the sale of credits. In other words, if you use 20 credits worth $2 to pay for a virtual good in a Zynga game then Facebook will retain $0.60 of the revenues whilst Zynga will retain $1.40 of the revenue. Over 50 major games and applications currently use Facebook credits as a payment system, and it has become so popular as a currency that industry experts have speculated that the currency could be adapted to pose a major threat to the dominance of Paypal. Anyway, on with ways to get free Facebook credits!

How To Get Facebook Credits Free

There have been numerous articles, videos and forum posts claiming to have magic ways of obtaining free Facebook credits. Not surprisingly, the vast majority of them are false promises and some even ask for cash in return for the secrets. Now, forgive me if I am wrong, but Facebook credits are not free if you need to pay to find out how to get them. Fortunately for you, I am willing to share my knowledge for free. Here are a number of methods which have at least worked in the past and, hopefully, will still work for you today.

Saturday, February 14, 2009

How To: Install Windows 7/Vista From USB Drive

Kindle Wireless Reading Device, Wi-Fi, Graphite, 6" Display with New E Ink Pearl Technology

This guide works 100% for Vista & Windows 7 unlike most of the guides out there. I have seen many sites/blogs that have “Install Vista from USB guide” but either with incomplete steps or not working guide. I have also seen some guides that don’t’ use proper commands in this guide. After spending many hours I have come up with this 100% working guide.
Bootable USB drive
I just did this method on one of my friends machine and installed the new Windows 7BETA. The main advantage is that by using USB drive you will be able to install Windows7/Vista in just 15 minutes. You can also use this bootable USB drive on friend’s computer who doesn’t have a DVD optical drive.
The method is very simple and you can use without any hassles. Needless to say that your motherboard should support USB Boot feature to make use of the bootable USB drive.
Requirements:
*USB Flash Drive (Minimum 4GB)
*Windows 7 or Vista installation files.
Follow the below steps to create bootable Windows 7/Vista USB drive using which you can install Windows 7/Vista easily.
1. Plug-in your USB flash drive to USB port and move all the contents from USB drive to a safe location on your system.
2. Open Command Prompt with admin rights. Use any of the below methods to open Command Prompt with admin rights.
*Type cmd in Start menu search box and hit CtrlShiftEnter.
Or
*Go to Start menu > All programs > Accessories, right click on Command Prompt and select Run as administrator.
3. You need to know about the USB drive a little bit. Type in the following commands in the command prompt:
First type DISKPART and hit enter to see the below message.
Bootable USB Drive
Next type LIST DISK command and note down the Disk number (ex: Disk 1) of your USB flash drive. In the below screenshot my Flash Drive Disk no is Disk 1.
4. Next type all the below commands one by one. Here I assume that your disk drive no is “Disk 1”.If you have Disk 2 as your USB flash drive then use Disk 2.Refer the above step to confirm it.
So below are the commands you need to type and execute one by one:
SELECT DISK 1
CLEAN
CREATE PARTITION PRIMARY
SELECT PARTITION 1
ACTIVE
FORMAT FS=NTFS
(Format process may take few seconds)
ASSIGN
EXIT
Don’t close the command prompt as we need to execute one more command at the next step. Just minimize it.
Bootable USB Drive
5. Next insert your Windows7/Vista DVD into the optical drive and check the drive letter of the DVD drive. In this guide I will assume that your DVD drive letter is “D” and USB drive letter is “H” (open my computer to know about it).
6. Maximize the minimized Command Prompt in the 4th step.Type  the following command now:
D: CD BOOT and hit enter.Where “D” is your DVD drive letter.
CD BOOT and hit enter to see the below message.
7. Type another command given below to update the USB drive with BOOTMGR compatible code.
BOOTSECT.EXE /NT60 H:
14
Where “H” is your USB drive letter. Once you enter the above command you will see the below message.
8. Copy your Windows 7/Vista DVD contents to the USB flash drive.
9. Your USB drive is ready to boot and install Windows 7/Vista. Only thing you need to change the boot priority at the BIOS to USB from the HDD or CD ROM drive. I won’t explain it as it’s just the matter the changing the boot priority or enabling the USB boot option in the BIOS.
Note: If you are not able to boot after following this guide means you haven’t set the BIOS priority to USB. If you got any problem in following this guide feel free to ask questions by leaving comment.
Update: If you find this guide difficult to follow, please use the easy-to-use guide to create a bootable USB to install Windows 7 using official tool.

Tuesday, February 10, 2009

How to View Private Facebook Profiles


Welcome to How to View Private Facebook Profiles

Welcome, How to View Private Facebook Profiles was created to teach you all the facebook tips, tricks and hacks you could need from view private facebook pages and profiles to learning how to see private facebook albums. We will also explain the many security holes in facbook’s privacy and private profile settings and also give how to’s for facebook private profile security advice. You can view any private facebook hack.
You will learn how to make facebook pages safer and tricks such as view others private profiles. No matter what facebook does there always seems to be a way to view users profile pictures, albums and at times their entire private facebook profile pages. Make sure you bookmark this page, as many new bugs will be released, and we will find out how to view all of these exploits. Post these links to all who think facebook profiles are truly secure or private, or to those who are wary of its security.
If you have any questions or concerns about how to see a private facebook pages and profiles or have a different view point, feel free to comment on any of the pages. If you like this site and you want to continue to get useful information on facebook tips, tricks and hacks read

Friday, February 6, 2009

How To access session variable in javascript

<script language="JavaScript">

var MySessionvalue = <% = Session("key") %>;
...
</script>

No way possible without creating a PostBack or using AJAX. Here's an example using a PostBack:
aspx file:
<script type="text/javascript">
<!--
function setSessionVariable(valueToSetTo)
{
 __doPostBack('SetSessionVariable', valueToSetTo);
}
// -->
</script>
aspx.cs file:
private void Page_Load(object sender, System.EventArgs e)
{
 // Insure that the __doPostBack() JavaScript method is created...
 this.GetPostBackEventReference(this, string.Empty);
 if ( this.IsPostBack )
 {
  string eventTarget = (this.Request["__EVENTTARGET"] == null) ? string.Empty : this.Request["__EVENTTARGET"];
  string eventArgument = (this.Request["__EVENTARGUMENT"] == null) ? string.Empty : this.Request["__EVENTARGUMENT"];
  if ( eventTarget == "SetSessionVariable" )
  {
   Session["someSessionKey"] = eventArgument;
  }
 }
}


<script type="text/javascript" language="javascript">

var sessionValue = '<%= Session["SesValue"] %>';
alert(sessionValue);

</script>
 Put This Script In Your Page Inline

How To install font in Windows

Install a font, follow these steps:
4000 Fonts

  1. Click Start, and then click Run.
  2. Type the following command, and then click OK:
    %windir%\fonts
  3. On the File menu, click Install New Font.
  4. In the Drives box, click the drive that contains the font that you want to add.

    Note The floppy disk drive is typically drive A or drive B. The CD drive is typically drive D.
  5. In the Folders box, click the folder that contains the font that you want to add, and then click OK.
  6. In the List of fonts box, click the font that you want to add. To select more than one font at a time, press and hold the CTRL key while you select each font.
  7. Click to select the Copy Fonts To Fonts Folder check box. The new font is saved in the Windows\Fonts folder.
  8. Click OK.
Note Windows supports TrueType fonts or fonts that are designed especially for Windows which can be purchased separately. Some programs also include special fonts that are installed as part of the program installation. Additionally, TrueType or special Windows fonts are frequently included with printers. Follow the directions that are included with these products to install these fonts.

How to learn a foreign language fast


The Million Dollar Question: How Do I Learn a Foreign Language Fast?

There are many reasons someone may want to learn language fast. Those reasons could include: economic reasons, employment, travel, personal growth and many others. The reality is that learning a foreign language fast is simply just not that easy.
It is widely known that the fastest way to learn a foreign language is through immersion. Immersion is a process where you place yourself in the culture and nation where the language is readily spoken and force yourself to communicate with the people in their natural language of choice. A great example of this is the Hebrew Immersion program in Leonia, N.J., children at a very young age are placed in a situation that makes them speak Hebrew on a continual basis. Recent research has shown that studying a foreign language early boosts a child's brainpower, vocabulary and self-esteem (Wiener 2002). This research clearly demonstrates that an individual can learn a foreign language fast through immersion.
The problem with immersion techniques are many fold. First, there are simply not many programs around and those that do exist are for children. Second, in today's world not many have the time to travel to a foreign land and begin to learn the language through immersion. Finally, economically an immersion program is very expensive to undertake.

Four ways to learn a foreign language fast

The fastest ways to learn a foreign language

The Four Ways to Learn Language
·              1. Language Exchange Programs
·              2. Distance Learning
·              3. Language Courses
·              4. Language Software and Self Teaching
 
Language Exchange Programs
Language Exchange programs are where a person begins to communicate with someone from a different country on a frequent basis. In the old days this used to be called getting a pen pal. Language exchanges help to learn a foreign language fast. The language exchanges force you to begin communicating with someone who speaks a foreign language on a regular basis. The exchange programs today are much easier in past because of the invention of the internet. The internet allows a person to communicate through email and has many tools that help in the conversion of the language. Enrolling in a language exchange program will greatly increase the speed at which you learn a language and you will create a friend or colleague in a foreign land.
 
Language Correspondence Programs
Distance learning is now a staple of most higher education learning institutions. Distance education or online learning allows a user to enroll in a college course and learn at their convenience. The great component of distance learning is that is very comprehensive, often times can learn at your own pace and the quality standards are maintained at a high level.
The problem with distance learning is that is can be very costly and because of the depth of coverage may not cover too much breadth for the cost of the program. Correspondence programs are a great way to learn for those who have time and flexibility to complete the courses. However, college courses and correspondence programs usually do not help us to learn a foreign language fast.
 
Language Software and Self Teaching
Self teaching through reading materials and software is the most popular way to learn a foreign language fast. The popular programs like Rosetta Stone, Rocket Spanish and others make claims that an individual can learn a language in as little as 3 - 6 months. Most of the higher quality software programs on the market today use a variety of multimedia to help the student learn the foreign language fast. It is very important the software features reading, writing, listening and speaking as a feature of the program.
The top end computer programs can cost upwards of $300 - $500. Purchasing two or three language programs would equate to an expense of a $1000 for the top end software. While these programs are expensive they are a fraction of the cost of taking a college course or correspondence course. It is important to remember that using any computer program requires self discipline and patience to get the full benefits of the program.
If you want to learn a foreign language fast there is no easy solution. A combination of language exchange programs coupled with a good language software program like Rosetta Stone or Rocket Spanish will greatly accelerate a uses ability to learn a foreign language fast.