Tuesday, 1 November 2011

Get Google+ Invitation from Tech Rocker


Get Google+ Plus Invitation for freeUpdate: Google+ is finally available to public. Thus you no need to have an invitation for signup.
You may be having problems opening or signing up for a Google+ account since you requires an invitation to open a Google plus account. Why invitation? Because the new social network Google + is currently under development process and Google is testing this service with a few of people. But Google will let you open a Google + account if you have invitation from a person who have a google + account. So we thought we could help to get one for you!
At Tech Rocker we offer you a free opportunity to get a Google+ account if you help us spreading a word about us. We are giving away free Google+ invitations who promote out site, Follow us and recommend to friends. That means if you subscribe us, follow, share and Tweet us, we’ll definitely send you an invitation. And it will not cost you a single.
Get Google+ invitation to open a Google + account

How to Get Google+ Invitation From Tech Rocker for Free

You must do the following actions to confirm getting your invitation from us. We will check every step whether you did that or not (Read more at end).
# First Step 
1. Like Tech Rocker on Facebook 
# Last Step 

After doing all actions above, send us a mail at saurabhrishu007@gmail.com . Your email address must be Gmail address.
If every thing is okay, You are done!
What should be included in the mail?
“A link to your facebook profile, link to twitter profile”. Because we need to verify whether you followed the steps.
After sending your mail, just wait for. If your all are accurate, you will get an invitation from me.
When You will get Invitation?
It may take hours or days depends on how busy we are. After invitation, you will get an notification. Then follow the notification or directly go plus.google.com for sign up. So you don’t have to think “where can I get Google plus invitation” or “who will send me a free Google+ invitation” because we are here.
We appreciate you for being with us. Enjoy Google + and engage with your circles.

By Unknown with No comments

Google Plus – The New Challenger to Facebook


Google Vs FacebookIf you meet a friend in the market and he pops out a remark saying “your updates are funny” he means my Facebook Status updates.
This incident shows that social networking especially Facebook has become such an important part of people’s life that no conversation, no get together or even a day is complete without it. Our thoughts and actions have to be posted or tweeted.
So why should the big “G” should remain aloof from it. Following in the footsteps of Facebook Google has launched Google+, its second effort in the social network space especially since the defeat of Orkut and Buzz, which seems to be a history now.
What is Google+, What is all about, How does it work?
Google+ is a combination of Google’s own already successfully running several services already having millions of users. The bottom line to it is to outshine the current social networks biggies. Google+ is a enormous effort made by Google in social network sector, involving its best engineers, investing months, paying full attention towards its confidentiality and to achieve its target of being the leader in the social arena. To go a step further Google has chosen the opposites of Facebook and twitter in how “+’ functions.
In Google+ a new feature is introduced calling Google Circles. These are groups of your contacts which you can classify as your friends, family, acquaintances, following and even blocked. You can even create new circles of your choice like colleagues, roommates, neighbors etc. From the suggestions of people or already added Gmail contacts you can drag and drop the person the circle of your choice. With this you get the power of choosing the group with whom you want to share your updates (like post, photos, videos).
TechGainer chief editor Rijans's circles
Incoming and Notifications
All the created circles are clubbed together and put on a left side bar under Stream. Below the circles there are out options are given – Incoming and Notifications.
On clicking the incoming will display the posts shared to you by the people out of your circle. From these whose posts you like can be added to the circle of your choice.
Notifications will show you when people in your circles have commented on something you have posted, or something you have commented on.
Google Plus Features
Sparks
Sparks is a feature of plus which is very much similar like Google Reader with a difference that it brings content on the web to you automatically based on your interests. In the search bar provide you can type the topic you like and hit the find button will get its own “Spark” page and provide links to related articles, videos, photos, etc. When you are typing your search topic it will come up with the suggestions similar to Google search. Spark has a share feature with every result it shows. There is a share link attach to each result. You can choose a particular circle or even a person with whom you want to share that piece of news you like.
Hangouts
Hangouts are like virtual chat rooms introduced with Plus. Here you can video chat with people in your circles. True to its meaning it allows you to add up-to 10 people in a hangout session at once and it will be seen in that circle or users’ stream.
Google plus hangout
Chat
One of the most liked features of Gmail, or any Google product is Chat. This is incorporated in Plus as well. On the left side bar with giving you the liberty to enable chat for particular groups only. Like if you want to surface friends and family but not acquaintances? Plus will let you do that.
Recently I got the Google plus invite from my brother( it is funny is that on Facebook people are posting their Google plus profile URLs and in response getting hundreds of comments asking to pass on the invite). I am currently juggling with the plus features and will make my verdict later that ultimately who wins the Google+ Vs Facebook battle.

By Unknown with No comments

Monday, 31 October 2011

Hide the Blogger Navbar

To hide the Blogger Navbar :

1- Log in to blogger

2- On your Dashboard, select Layout. This will take you to the Template tab. Click Edit HTML. Under the Edit Template section you will see you blog's HTML.

3- Paste the CSS definition in the top of the template code:

...
<b:skin><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name:     Rounders
Designer: Douglas Bowman
URL:      www.stopdesign.com
Date:     27 Feb 2004
Updated by: Blogger Team
----------------------------------------------- */
#navbar-iframe {
   display: none !important;
}
/* Variable definitions
  ====================
   <Variable name="mainBgColor" description="Main Background Color"
             type="color" default="#fff" value="#ffffff">
   <Variable name="mainTextColor" description="Text Color" type="color"
             default="#333" value="#333333">
   ...

By Unknown with No comments

Lock a folder without using any Software

Securing confidential and personal data is always considered as a sophisticated task.Now, I'm here with a trick using which you can lock your folders without using any software.



  • Open Notepad [Start-->Run-->Notepad].
  • In your Notepad just Copy/Paste the below code.
cls
:End
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==techrocker goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
  • In the above batch code the password has been set as techrocker.You can change it by editing the following line
if NOT %pass%==techrocker goto FAIL
  • Now save this notepad file as yourfoldername.bat ,here .bat is extension of your file. For now I am creating pctipstricks.bat file.

  • Now a .bat (system) file will be created.



  • Double Click on this .bat file and you will see a Locker Folder at the same location where your .bat file is saved.

  • Double click on that Locker folder and store your personal data in it.
  • After storing all your data in that folder again double click on .bat file and press Ythere to Lock the folder and press Enter.
  • Now your Locker will hide and only .bat file will be there.
  • Double Click on this .bat file and give your password (here techrocker) and hit Enter.
That’s it. Now every time you want to open your secret folder you have to enter the password. You can update this folder any time and infinite number of times.

By Unknown with No comments

Sunday, 30 October 2011

K-Lite Codec Pack – The Ultimate Media Codec Pack




K-Lite Mega Codec Pack is a collection of audio video codecs and DirectShow filters used for encoding and decoding various audio video formats. Also it includes various ACM and VFW codecs. The K-Lite Codec Pack is designed for playing all your audio and video files. The package enables you to play all audio and video formats using Windows Media Player or Media Player Classic.
The package enable you to plays several formats, a list of these formats is provided below.
Video Formats
Avi, divx, mkv, webm, mp4, m4v, mp4v, mpv4, ogm, ogv, flv, mpeg, mpg, mp2v, m1v, m2v, m2p, mpe, ts, m2ts, mts, m2t, tps, hdmov, mov, 3gp, 3gpp, wmv, asf, vob, mpls, rm, rmvb.
Audio Formats
Mp3, ogg, oga, mka, m4a, aac. flac, wav, mpc, ape, apl, alac, tta, ac3, dts, amr, ra.
The K-Lite Codec Pack has a couple of major advantages compared to other codec packs:
The package is updated frequently. And you will have the latest codecs and media player classic version. It works great with windows media player and windows media center and all DirectShow players, such as Media Player Classic, BS.Player, ZoomPlayer, and others. The installation is also customizable; you can choose which codec aur component you want to install.
It is also packed with some multimedia tools like DirectVobSub, Haali Media Splitter, madFLAC, GraphStudio, Codec Tweak Tool, Haali Muxer, VobSubStrip, MediaInfo, Win7DSFilterTweaker, Xvid Statsreader. It does not contain any bad or unstable codec. But the installer detects any corrupted, broken codec, filters and allows removing the buggy codec. It avoids conflicts with other codecs installed on the system.  The pack includes the option to generate thumbnails for many popular video formats which do not have any thumbnail in default installation. The pack automatically configures Windows Media Center to recognize all common audio and video file formats, and these formats appear in the media library.
There are different varieties of this package including all type of codecs for 32-bit and 64-bit systems.
K-Lite Codec Pack Basic includes all basic codecs to play all popular formats.
K-Lite Codec Pack Standard, same as Basic also includes media player classic,mpeg-2 decoder for DVD playback
K-Lite Codec Pack Full, same as standard also includes ACM,VFW codecs, additional DirectShow Filters, some useful tools,
K-Lite Codec Pack Mega, same as full also includes a few extra ACM, VFW codecs and some DirectShow Filters. This is the ultimate package.
K-Lite Codec Pack 64-bit for use on 64-bit windows, but on 64-bit system you do need to install 32-bit version of the codecs also, because the Windows Media Player on a 64-bit system is still 32-bit application.
K-Lite Codec Pack runs on Windows XP/ Vista / Windows 7.
[Download K-Lite Codec Pack]/[FreeCodecs Mirror]

By Unknown with No comments

An advanced free PDF Creator and Reader Software






Where many free and good pdf readers are available on the web, it's hard to get a free pdf creator tool that is suitable for even official works. Yes, there are many free pdf document authoring tool out there. But we have to choice best one.
Nitro pdf document creator tool is one of the best free pdf writing tool I have ever seen. It supports both pdf reader and pdf authoring.


Nitro PDF also has premium collaboration tools which allows users to comment and review, use sticky notes and ability to reply to individual annotations and comments. The software also has a signature stamping function which will allow you to add your scanned or handwritten signature to the PDF file. Nitro PDF tool is a product of nitropdf.com . You can also get PDF to WordPDF to Excel
PrimoPDF.



By Unknown with No comments

How to See the List of All Pending Friend Requests in Facebook

Pending friend requests on Facebook are actually those requests which are not confirmed yet. Every Facebook user want to know which friend requests  are not reached or confirmed. But unfortunately Facebook doesn’t support any functionality or option to see the all pending friend requests directly. Yes  we could see pending friend friend requests in “Edit Friends” in the “Settings“. But now it is unavailable. This is why we need to find alternative way to  get view all unconfirmed or pending friend requests together.


There are a few alternative ways to view the all pending friend requests together in list. Out of them, I found the easiest way to use an Facebook app called “FriendRequests“. The location of this app is at apps.facebook.com/friendrequests . Once you allow this app to work with your profile, you can see all the friend requests you made before and forward those were not confirmed. See the screenshot of it on my account.


If you want to remove, undo or cancel friend request from someone , then click on his name. Then in his profile window you will see a cross mark beside the line “Awaiting friend request”. Click on the cross mark to cancel the request.

By Unknown with No comments

Change Internet Explorer Title Bar Text


Have you ever wondered how ppl change their Internet Explorer window titlebar text? Many times you must have noticed some special titlebar captions in Internet Explorer. Most of the times you see them in customized Internet Explorer setups likeYahoo! version, etc.
Here is a small tutorial which will help you in change the Internet Explorer window titlebar caption to your desired text.
1. Open regedit and goto:
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main


2. In right-side pane, create a new String value Window Title and set its value to your desired text.

3. Thats it. Launch Internet Explorer and see your changed caption instantly.


NOTE:You can also use this tutorial in case the titlebar caption has changed automatically and you want to revert it back to default. Just delete the "Window Title" key andi fix the problem.

By Unknown with No comments

Use Text Maker Viewer 2010 to read docx files without MS Office

Text Maker Viewer 2010 is a free tool which allows the user to open any kind of file which is created using a word processor like MS Word 2003, MS Word 2007, Open Office or Text Maker. It also supports the files created using latest MS Word 2010.
If you are sending some file to someone and you are not sure whether the recipient has the same version of word as yours then you can suggest him to download this small and easy to use freeware.




It is very light and requires very less resources as compared to other word processors. Yet it can open large files without any problems. Various file formats supported by this freeware are:
.docx, .docm Microsoft Word 2007
.sxw OpenOffice.org/StarOffice Text
.dotx, .dotm Microsoft Word 2007 templates
.rtf Rich Text Format
.doc Microsoft Word 6.0 up to Word 2007
.psw Pocket Word (Pocket PC)
.dot Microsoft Word templates 6.0 up to 2007
.pwd Pocket Word (Handheld PC)
.tmd TextMaker 6.0 up to 2010
.htm/html HTML documents
.odt OpenDocument Text

By Unknown with No comments

Make your PC speak whatever you type[VBS Trick]

Now you can create your own text to speech converter software to make your computer speak whatever you type. I found this script on some Vietnamese site. It’s pretty cool. Just run this script and make it read any funny sentence.Copy the code given below in notepad and save it as anyname.vbs. Make sure that you save it as.vbs file.


Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message



After making a vbs file just double click on that file and type anything you want in the textbox.


By Unknown with No comments