Posts

Showing posts from 2012

What are Virtual credit Cards? List of Banks that Provide VCC in India

If you shop a lot online then you may already be aware about various risks involved while using credit cards on Internet. To be on the safer side you should always use Virtual Credit Cards that guarantees that you cannot be billed more or again by the website. Virtual Credit cards commonly known as VCC are Temporary credit cards with no materialistic existence and can be used only once.They also expire after specific period if not used (usually after 24 hours). How Virtual Credit Cards Protect From Online Frauds? You create a virtual credit card on your bank website.During creation of VCC you specify the amount for the credit card and it can be used only once, so if a website stores your credit card information even then it can be used again. What Information You Get When you Create a VCC After creating a Virtual credit card you will get a credit card number, its expiration date and CVV code.Most times you will also get the expiration period for the credit card (like 24

How to send a photo in facebook chat box

Image
I have another tweak to send pics in facebook chat box Follow these simple steps :- 1. Open Smile code generator. 2. Now upload your pic and fill the captcha. 3. They will ask you to like their fan page, just click on like button and proceed to next step. 4.Then, click on show code. 5. Copy the code and paste on the facebook chat box. 6. Now press enter and you're done.

How to access block websites in schools or colleges etc

All people must familiar with the block websites in schools or colleges like Facebook, Twitter, Myspace, Bebo, Orkut etc. are blocked by the admin and you are not able to access these sites. Below are some tricks to unblock these sites without admin privileges :- 1)Using IP Instead of URL This depends on the software/application used. Sometimes blocked sites are stored as a list of URLs (eg. www.yahoo.com , www.gmail.com ,etc) and typing the IP instead of the URL might sometimes work. In a local computer, doing a ping domain.com (ping www.facebook.com) command in Command Prompt (Mac users use Terminal) will return you the IP address. You can also find ip of wbsite online visit this site www.whatsmyip.org 2)Redirection with Short URL service Sometimes the URL you intend to browse might be ban, but converting them to another a shorter URL with short URL services might just help you to bypass the settings. Here’s 2 Short URL service we’ve previously mentioned – MooURL, Sn

Application and Boot file Defrag

This type of defrag pushes all commonly used programs and boot files to the edge of the hard drive for faster access. Windows XP normally schedules this every three days when it is idle, however you can force it to do this by useing the b switch anytime i.e defrag c: -b

How to Change Your Ip In Less Then 1 Minute

1. Click on "Start" in the bottom left hand corner of screen 2. Click on "Run" 3. Type in "command" and hit ok You should now be at an MS-DOS prompt screen. 4. Type "ipconfig /release" just like that, and hit "enter" 5. Type "exit" and leave the prompt 6. Right-click on "Network Places" or "My Network Places" on your desktop. 7. Click on "properties" You should now be on a screen with something titled "Local Area Connection", or something close to that, and, if you have a network hooked up, all of your other networks. 8. Right click on "Local Area Connection" and click "properties" 9. Double-click on the "Internet Protocol (TCP/IP)" from the list under the "General" tab 10. Click on "Use the following IP address" under the "General" tab 11. Create an IP address (It doesn't matter what it is. I just type 1 and 2 u

Data structures

Primitive data types The C language represents numbers in three forms: integral real  complex.  This distinction reflects similar distinctions in the instruction set architecture of most central processing units. Integral data types store numbers in the set of integers, while real and complex numbers represent numbers (or pair of numbers) in the set of real numbers in floating point form. All C integer types have signed and unsigned variants. If signed or unsigned is not specified explicitly, in most circumstances signed is assumed. However, for historic reasons plain char is a type distinct from both signed char and unsigned char. It may be a signed type or an unsigned type, depending on the compiler and the character set (C guarantees that members of the C basic character set have positive values). Also, bit field types specified as plain int may be signed or unsigned, depending on the compiler.

How to add "open cmd prompt" to folder context menus

Add the open cmd prompt to folder context menus Also drives and My Computer copy what's in the code area to notepad and save as cmd here.reg or you can download the registry file from the links at below Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Drive\shell\cmd] @="Command Prompt" [HKEY_CLASSES_ROOT\Drive\shell\cmd\command] @="cmd.exe /k \"cd %L\"" [HKEY_CLASSES_ROOT\Directory\shell\cmd] @="Command Prompt" [HKEY_CLASSES_ROOT\Directory\shell\cmd\command] @="cmd.exe /k \"cd %L\"" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\cmd] @="Command Prompt" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\cmd\command] @="cmd.exe /k \"cd %L\"" links for the registory file is below link1        link2        link3

C syntax

The syntax of the C programming language is a set of rules that specifies whether the sequence of characters in a file is conforming C source code. The rules specify how the character sequences are to be chunked into tokens, the permissible sequences of these tokens and some of the meaning to be attributed to these permissible token sequences (additional meaning is assigned by the semantics of the language). C has a formal grammar specified by the C standard. Unlike languages such as FORTRAN 77, C source code is free-form which allows arbitrary use of whitespace to format code, rather than column-based or text-line-based restrictions. Comments may appear either between the delimiters /* and */, or (since C99) following // until the end of the line. C source files contain declarations and function definitions. Function definitions, in turn, contain declarations and statements. Declarations either define new types using keywords such as struct, union, and enum, or assign types to and

COMMON FTP ERROR CODES

Description 110 Restart marker reply. In this case, the text is exact and not left to the particular implementation; it must read: MARK yyyy = mmmm where yyyy is User-process data stream marker, and mmmm server's equivalent marker (note the spaces between markers and "="). 120 Service ready in nnn minutes. 125 Data connection already open; transfer starting. 150 File status okay; about to open data connection. 200 Command okay. 202 Command not implemented, superfluous at this site. 211 System status, or system help reply. 212 Directory status. 213 File status. 214 Help message.On how to use the server or the meaning of a particular non-standard command. This reply is useful only to the human user. 215 NAME system type. Where NAME is an official system name from the list in the Assigned Numbers document. 220 Service ready for new user. 221 Service closing control connection. 225 Data connection open; no transfer in progress. 226 Closing data

History of C

Image
 In computing, C ( like the letter C) is a general-purpose programming language initially developed by Dennis Ritchie between 1969 and 1973 at Bell Labs. Its design provides constructs that map efficiently to typical machine instructions, and therefore it found lasting use in applications that had formerly been coded in assembly language, most notably system software like the Unix computer operating system. C is one of the most widely used programming languages of all time, and there are very few computer architectures for which a C compiler does not exist. Many later languages have borrowed directly or indirectly from C, including: C#, D, Go, Java, JavaScript, Limbo, LPC, Perl, PHP, Python, and Unix's C Shell. The most pervasive influence on these languages has been syntactical, and they tend to combine the recognizable expression and statement syntax of C with underlying type systems and data models that can be radically different. C++ started as a preprocessor for C and is

C tutorials to be started

Image
I was quite busy in these days now i am back i will be posting c tutorial for all of you those who want to learn just subscribe us to their inbox, a learning session is to begin. Just join us and learn C

Anonymity of Proxy

The exchange of information in Internet is made by the "client - server" model. A client sends a request (what files he needs) and a server sends a reply (required files). For close cooperation (full understanding) between a client and a server the client sends additional information about itself : a version and a name of an operating system, configuration of a browser (including its name and version) etc. This information can be necessary for the server in order to know which web-page should be given (open) to the client. There are different variants of web-pages for different configurations of browsers. However, as long as web-pages do not usually depend on browsers, it makes sense to hide this information from the web-server. What your browser transmits to a web-server: a name and a version of an operating system a name and a version of a browser configuration of a browser (display resolution, color depth, java / javascript support, ...) IP-address of a client Other infor

How do GOOGLE.COM earn money?

Image
Today whenever you are trying to search for something, the first thing that comes to mind is ‘Google  it’. Google has provided Internet users with loads of valuable products and facilities. The most popular of these are the following.     Google Search Engine     Gmail     Youtube     Orkut     Google Adsense     Google Adwords     Blogger     Google Maps     Google Earth     Google News     Google Analytics     Android (operating system) Now in this post I will try to open the close files of HOW actually google earns money. 1.      Advertising Google.com makes most of its money from paid advertising. When you do a search on Google.com you’ll often see listings at the very top and on the right side. Google.com charges money for those listings. Every time someone clicks on those links, they company that is listed gets charged. The amount varies depending on the competition for that particular key phrase that was searched. Key phrases can be as low as five cents per clic

Receive Freee SMS Alerts Whenever a new Mail Popped Up in Gmail via way2sms

Image
All of you have heared the name of WAY2SMS ,Do you know that you can get SMS alerts when you receive a new email in your Gmail inbox? Yes, this can be done using way2sms.com Way2SMS.com. This facility which is provided by way2sms is extremely useful for people who don’t have a smartphone or when no internet connection is available.    How to Configure Gmail SMS Alerts?     Login to your Way2SMS account (or) Sign Up if you don’t have one.     Go to “Mail Alerts” tab and copy the mail forwarding address  Now, login to your Gmail account and select “Settings”. Select the “Forwarding and POP/IMAP” tab and choose “Forward a copy of incoming mail to” option and enter the forwarding address that you’ve copied in the 2nd step.      Ensure you select the “Keep Gmail’s copy in the inbox” option.     Confirm with the verification code that you’ll receive on your mobile in Gmail verification box. That’s it! You’ll now receive mobile SMS alerts for every incoming mail that y

How to Hide Pictures & Videos on Android

Image
Have you ever had to lend your Android phone to someone and then hoped that they didn’t look through your image gallery? Maybe they will find some private pictures that you don’t want them to see! Or how about those pictures of you flexing or posing in front of the mirror? That would be kind of embarrassing! There are so many reasons why someone might want to make their photos on their Android device private. Below I will show you the easiest way to hide photos & videos on your Android device: Instructions: 1. Go the Android Market (AKA Play Store) 2. Search for the app “Hide Pictures in Vaulty” [Market Link] 3. Click install on this free app 4. Launch the Vaulty app 5. Set a password for the app 6. Enter a security question (in case you forget password!) 7. Tap the Gallery tab & open a folder  8. Click on a picture that you want to hide 9. Click the hide button 10. Your picture will now be hidden and availabe in the “Vault” 11. That’s it! N

Screen Capture Full Web Pages on your Mobile

Meet Web Screenshots , an online tool that will help you capture a full-length screenshot image of any “public” web page with a click. While the tool will work across all screens, it is a more handy option for taking screen captures of web pages on mobile devices – phones and tablets – where you often don’t have the option to install extensions. Alternatives for Android and iOS In the case of iOS devices – the iPhones and the iPads – you can use the Home + Sleep buttons to capture screenshots but a limitation is that it will only capture the regions that are visible in the Safari browser. Web Screenshots will capture the entire web page. There’s no standard shortcut* for capturing screenshots in Android devices and sometimes you have to root the phone just for a simple screen capture. You can however download the free Dolphin Browser with the Screen Cut add-on on Android and you’ll then be able to screen capture pages directly in the web browser. This is recommended when you wish to

How to Add Paypal Donate Button to Blogger blog

Image
Adding Paypal Donate Button to blog can help you to get some money.If you don’t have a paypal account yet,.. you can get a Free Paypal account here . so,let’s see how to put a Paypal donation button in your blog… 1 . First,Log in to your Paypal account. 2 . Click on the ‘Merchant Services’ tab (see at the top of the page). 3 . Scroll down the window and you will see an option “Donations” in the right sidebar.Click on it! 4 . Now,you will see some options like Donation name/service ,donation id,etc etc… The first field (Donation name/service) is the only thing that is required and all the remaining fields are optional. Enter that first field,choose a button style,scroll down the window and click on “Create a button Now”   5 . Now,you will see some html code… Copy it and sign in to your blogger dashboard »» Click on the layout »» Add a Page element »» html/javascript »» and paste that html code and SAVE THE CHANGES.

5 important hrs of blogging

Image
Blogging is not just writing and showing to people what u think it’s just the way you think about any aspect. Though it’s just a way you try to tell people by your writing and explain each and every step. To do that you should better understand what do people think and what do they want. So today i will tell you how to write an article which can go viral. If you explain the readers in you simple language that will better work or the visitors will leave and jump to any competitor’s page which will harm you website. There is a simple way to write your own blog post without any type of problem. 1st hr of writing a blog post. In this first hour you have to just take a small survey of the web just go to top websites and just see what is selling out there means which article is been visited the most. Like if you have a site where game blog are been placed then just try to visit the most gaming sites as you can. After that you will gain a little idea what to write what are the ne

How to do Hosting of your Website on Google free

How to Host your Website on Google Step 1: Go to appengine.google.com and create a new application. If you have never used App Engine before, you might be asked to verify your mobile phone number before you can create a new app. Step 2: Give your application a name – it should be unique and may only include lowercase alphabets and digits. For this example, our app identifier is “thisismybestwebsite”. Step 3: The next two sub-steps may scare some of you but trust me, they simply require you download and run two installers in the given sequence. a. Download and install Python from python.org . b. Download and install App Engine SDK from this code.google.com. Step 4: Download and unzip this file – website.zip – somewhere on your desktop. It contains a basic website with some HTML pages, images and CSS that we’ll try to host with Google App Engine. Step 5: Open the app.yaml file with notepad and replace the word ‘labnol’ with the application identifier that you create

Top Ten Google Search Tricks 2012

Image
Google is a largest search engine in this world which has answer of every query you want. Only we have to know the trick which will help us to find the correct and most acceptable answer by us.So only firing query is not important to google we have to take care about many things while searching with google as well as we have to also care what we are exactly searching and how can we get our relevant result. This post will tell you about the many new and old searching tricks of Google. 1.Selection of Query for Searching  Yes this is most important point you must keep in mind while searching with Google. Appropriate query selection is most helpful factor for search engine. If you are not using a unique query for your search than search engine may show you a lots of result related to your query and many results will be useless for you. So its better to select a Unique query for your search.If you want to search for “hacking tool” than instead of using “hacking tool” query we can

How To make Pendrive or USB Drive Bootable

Image
We boot our computer with the help of Bootable OS CD/DVD.But sometime the CD/DVD is not available with us but we have the ISO image of the file. So instead of burn that ISO image to a CD/DVD you can use your PenDrive/USB Drive as a bootable Device and boot your OS from that bootable USB Drive. Question is how we make our PenDrive/USB Drive bootable.So here is a very Simple Solution. For This You have to Download a software called "ULTRAISO" You can Download it from links below.. link1                         link2 Click here than wait for few seconds and than click on skip add... Click on the SKIP AD> and proceed to Download... After You Downloaded The file Install it to Your Computer. Now carefully Follow The following Steps to Make Your USB/PENDDRIVE Bootable. 1.If You are using Vista/Windows 7 than Run UltraIso using the Administrator Privillage.Or simply run as Administartor.The image shown below is for Your reffrence.In case of XP or Low version of W

How To Earn Money Through Freelancer Work

Image
Do you want to earn online??? Do you want online Data Entry jobs??? D o you want online Freelancer jobs??? If you are a good programmer or a good content writer or a good Google searcher or you know how to convert Microsoft Word file to PDF than you can earn lots of money by doing these work on internet. So if you are searching for a online Internet Jobs than here your search ended because in todays post I am going to give you link of a website which will pay you for your talent. Freelancer.com is a very trusted and most famous website which is offering you all type of online job opportunity at a single  place.It offer data entry jobs,content writing jobs,ebay affiliated jobs or job may be related to developing a website or software.You will get all type of freelancer job here which will posted by the people from all over the world. Freelancer is offering you chance of making money through various sources like online project biding, reffing friends etc.You have to select proje

How to Remotely Control Music On Your PC With Android

Image
People are living in an increasingly interconnected world, with devices often offering cross-platform compatibility for convenient methods of control. If you have an Android smartphone or tablet, however, just how easy is it to remotely control music on your PC using this gadget? There are a number of solutions available to tackle this tricky issue, but for the purposes of clarity and ease, here is a single option that harnesses the power of Winamp, which is among the most popular media players. PC Configuration To get the ball rolling you need to add the Winamp media player to your PC if you have not already done so. This popular piece of software is preferred by many because it is far more flexible and customisable than Microsoft's standard Windows Media Player program. Once Winamp is installed and you have synchronised it with the folders in which you keep all of your music files, you will need to download and install a plugin, namely the one which deals with remote contr

Free Android App To Share File Via Bluetooth

Image
Download free android app Androbex and start sharing files through bluetooth connectivity. Sends files only to other phones and computers and not android phones. Reported not to work on some android devices like HTC Hero and Samsung Galaxy but you can try yourself. Compatible With:     Motorola: Cliq, Dext, Droid     Acer: Liquid(A1)     HTC: Dream G1, Hero, Magic, Tattoo     LG: Eve GW620     Samsung: i7500     T-Mobile: G1 download links r below link1           link2        link3

Recover missing DLL file in XP.

Image
Internet is a Sea of all Computer materials. You download some thing(any type of Data). At some time you don’t know that you are downloading a Virus infected file, and this Virus crash your Windows XP after some time or corrupt some files. DLL file is a type of XP system files and when any DLL file is missed, regularly you see some error with Windows File Protection msgbox. If you regularly encounter errors (such as warnings of missing DLL files or programs do not load) and you think that some part of Windows XP, you can check your system files to ensure that they are in good condition. Recover missing DLL file in XP. 1.  First insert your Windows XP Professional CD-ROM in your pc’s CD/DVD Drive. 2.  Then click on Start button. 3.  Click on Run. 4.  Then type this command in Run textbox: sfc /scannow 5. Click on OK button. You can see that Windows File Protection will be displayed. Wait until the process is complete. Warning : Don’t click on Cancel button to complete

Stranger chat: Complete online free stranger chat sites list

Image
Hi all of u Chatting with stranger is fun for everyone. Because we can chat with them without any identity. . Most of the people get stress because of chatting with well known persons for a long time. To kill this stress we can talk with unknown persons. I have recently posted Best sites for free online stranger chat .  Today i want to share the complete list of stranger chat sites.These sites also permits us for text chat and some sites gives free audio chat. Sp,e sites in the list available for mobile users and some sites offers free application for stranger chat. Free online Stranger Chat sites list:     Omegle     chatroulette.com     Facebuzz     6Rounds     Chathopper     Funkmaster     Anybodyoutthere     Bazoocam     ShufflePeople     Woome     Lollichat     iMeetzu     Tworl     Faceflow     Kismetchat     DontTalk     iddin     ChatRandom     CamSkip     Modmyi     StrangerMeetup     Chatrooms.net     SpinTheCam     CollegeOnly     Camfrog