C Programming and Computer Geeks

Search MY Blog

Thursday 16 January 2014

Make your computer Speak


Make your computer speak whatever you input to it.
It looks interesting that, if anybody tells that they will make your computer to speak whatever they write or inputs.
Make your computer speak whatever you input
Make your Computer Speak
To create one such talk script, follow the steps given below:-

Step 1.
 Open Notepad.

Step 2.
 Copy and paste the exact code given below:

     Dim Message, Speak
     Message=InputBox("Enter text and visit http://www.neentech.blogspot.com ","Speak")
     Set Speak=CreateObject("sapi.spvoice")
     Speak.Speak Message


Step 3.
Click on File menu, save As, select All Types in Save as Speak.vbs or "*.vbs"(replace * with your own name.).

Step 4.
Double click on the saved file, then a window will open,like showned in the below figure.
Enter text for computer to speak
Enter text for Computer to speak
Enter some text in enter text column and click OK.

Now your Computer will speak / talk what you typed in step 4.

Windows Compatibility: This VBS file can be executed on all versions of Windows.


Please share it, if you likes the trick.

Tuesday 14 January 2014

Multiple Sites In a Single Click


How to open multiple sites In a Single Click ???

Hi.. today I will show you some interesting stuff related to opening multiple websites in a single click.

Multiple sites in a single click
Multiple Sites
Do follow these simple steps.

1. Open Notepad.
2. Copy Below Given Code And Paste It In Notepad.

@echo off
start 
www.neentech.blogspot.com
start 
http://www.youtube.com/watch?v=pArdrXM5qLM

3. Now save Notepad As Sites.bat
4. Now open your saved file. It will open three websites in a single click.
5. You can also add more sites by writing Start followed by websites..
Even you can replace the above sites with other websites and play around.


Hope you likes this post. Please share this post with all your friends.

Thursday 9 January 2014

Hidden secrets of Android phone


Android hidden codes
Nowadays everywhere we can find the Android phones around us. Android is one of the most famous OS for mobiles. We can find lot more useful apps and tools in it. And Along with that we have lot more hidden tools, secrets and information in Android phones.

Here I have listed some of the useful codes.
 
Secret Codes of Android
Android Secrets

1. COMPLETE INFORMATION ABOUT THE PHONE
*#*#4636#*#* 
à [Displays Phone Information, Battery Information, Battery History and Usage Statistics].

2. FACTORY DATA RESET
*#*#7780#*#* 
à [Displays Google account settings, System & application data settings, Downloaded applications, etc...]
Note: This code will not remove current system softwares and applications, and SD card files.

3. FORMATTING ANDROID PHONE or DEVICE
*2767*3855# 
à [It will remove all files and settings including the internal memory storage, and also re-install phone firmware.]
Note: Once you dialed this code, there is no way to cancel this without removing your battery quickly. So think twice before putting this code.

4. UPDATES PHONE CAMERA
*#*#34971539#*#* 
à [ This Updates camera firmware in image, Update camera firmware in SD card, Displays camera firmware version, Get firmware update count ]

5. SERVICE MODE
*#*#197328640#*#* 
à [This code is used to enter into Service Mode, You can run various tests and change settings in the service mode]

6. CREATING BACKUP
*#*#273283*255*663282*#*#* 
à [This code opens a file copy screen where you can back up your media files. Eg: Images, Sounds & Videos]

7. LAUNCH VARIOUS TESTS CODES
*#*#0*#*#*   
à [LCD Test]
*#*#3264#*#* 
à [Version of RAM]
*#*#2663#*#* 
à [Version of Touch Screen]
*#*#0842#*#* 
à [Vibration and Back-light Test]
*#*#2664#*#* 
à [Touch Screen Test]
*#*#0588#*#* 
à [Sensor Test]

8. GET FIRMWARE VERSION INFORMATION
*#*#4986*2650468#*#* 
à [ Phone, H/W, RF Baseband ]
*#*#2222#*#*         
à [ FTA HW-Version ]
*#*#44336#*#*        à [ Phone, CSC, Build Time, Change List Number ]
*#*#1111#*#*         à [  FTA SW Version ]
*#*#1234#*#*         
à [  PDA & Phone ]

9. GPS, WLAN & BLUETOOTH TEST CODES
*#*#232339#*#* [OR] *#*#526#*#* [OR]  *#*#528#*#* ( WI-FI Test )
*#*#232338#*#*  
à [ Display WI-FI Mac Address ]
*#*#1472365#*#* 
à [  GPS Test ]
*#*#232331#*#*  
à [  Bluetooth Test ]
*#*#232337#*#*  
à [  Display Bluetooth Device Address ]



Please share in comment section,if i have missed any codes.

Monday 6 January 2014

Make Free Phone Calls Online


How to make free phone calls online?
Everybody loves to do free voice calls to their family members and friends, especially when they are in abroad. Here am listing some options for people who are all looking for free phone calls from PC/Laptops.
Free calls to Land lines and Phones
Free Phone Calls

i)      Google Voice Google Voice is the best way to make free calls online, but this is only for US and Canada. Check The Call Rates Here Best Thing About Google Voice is it also helps you to manage the phone numbers you have.

ii)     Call2Friends Call2Friends is also a exciting site to make free calls from PC to Phone. But we can make 2 minutes Call for a day.

iii)   Rebtel 
We have to Register and download one application in order to make the free calls.

iv)     Voip Buster
Voip Buster is one more good application for making free phone calls from PC but they have a time limit of 60 minutes per day.


v)      Vopium 
we need to sign up from your number and then we will receive free 5 minutes talk time to make calls anywhere.

Please update in comments, if you find any other online sites or apps which will provide free phone calls from PC.




Friday 3 January 2014

HOW TO FIND THE SERIAL KEYS OF DIFFERENT SOFTWARES FROM GOOGLE


A serial number is an alphanumeric identifier for your software that identifies and verifies it as a legal copy, and is often requested during installation or registration.

Follow these below mentioned steps to find the serial keys of a particular software for free.
Software Serial Keys
Serial Key

i)
Go to www.google.com webpage.

ii) Write down the name of the
software which you want to get the key and add 94FBR at the end

Eg:  if you want to find key of IDM then write    "IDM 94FBR" (without quotes)


iii) Search it and you can find many sites with serial keys of those softwares




Hope this post helps you in finding the serial key for your software.

Find More tricks and tips @ Tips & Tricks.

Please comment for any additions or suggestions and Share this post with all your friends.



Wednesday 1 January 2014

Find out the string length without using strlen() function and any loop.


We are having many methods to find the string length for a given string, like implementing the strlen() functionality using loop, etc..

Here in the below program, we are going to see some interesting logic which can give us the string length..

#include "stdlib.h"
#include "stdio.h"

int main()
{

//string length without using strlen() and loop.
     char str[150] = {0,};
     int length = 0;

     printf("Please enter a string:\n");
     gets(str);

     printf("\n\n");

     length = printf("%s", str);
     printf("\n\nLength of entered String is = %d", length);

     getch();
     return 0;
}

Output:

C Program for String length with out using strlen() function and loop
String length by printf()

Logic: We all know that printf() function returns the number of characters displayed(or printed ) on output screen. So using this logic we have found the string length for the entered string.


Read more about basics of Input/output functions.

Hope this Post recalled your basics once again..

Please share it with all your friends.

Post comments for any clarification and doubts. And also share your ideas/opinions as well.

Search This Blog