FIRECHAT!!!! The offline chat experiance......Enables Cross-Platform, Off-The-Grid Chat Between iOS And Android
on Android devices.
Today, FireChat has got an update that brings such offline chats
cross-platform. The company behind FireChat, Open Garden, says this was
made possible through the development of a peer-to-peer mesh
networking
technology across iOS and Android.Features:
• Instantly chat with anyone around you,
• Works even without any Internet connection or mobile phone coverage ,
• Use the "Nearby" mode for off-the-grid communications, up to 200 feet of your location,
• Multihop capabilities extend the range of peer-to-peer communications,
• See what people are talking about all over the country in the “Everyone” mode,
• Create your own firechats for live and anonymous discussions,
• Easy: no Facebook or email login, no password to remember,
• No significant impact on battery consumption,
Java 7 Software Free Download
Java is the foundation for virtually every type of networked
application and is the global standard for developing and delivering
embedded and mobile applications, games, Web-based content, and
enterprise software. With more than 9 million developers worldwide, Java
enables you to efficiently develop, deploy and use exciting
applications and services.
From laptops to datacenters, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere!
The
Oracle Technology Network
is the world's largest community of application developers, database
administrators, system admins/developers, and architects using
industry-standard technologies in combination with Oracle products. It
is also the home of
java.oracle.com
, the ultimate, complete, and authoritative source of technical information about Java. Membership is free, join today! (In your Profile, check the Oracle Technology Network box under My Community Memberships.)
From laptops to datacenters, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere!
Click here to Download java all versions
- 97% of Enterprise Desktops Run Java
- 89% of Desktops (or Computers) in the U.S. Run Java
- 9 Million Java Developers Worldwide
- #1 Choice for Developers
- #1 Development Platform
- 3 Billion Mobile Phones Run Java
- 100% of Blu-ray Disc Players Ship with Java
- 5 Billion Java Cards in Use
- 125 million TV devices run Java
- 5 of the Top 5 Original Equipment Manufacturers Ship Java ME
Why Software Developers Choose Java
Java has been tested, refined, extended, and proven by a dedicated community of Java developers, architects and enthusiasts. Java is designed to enable development of portable, high-performance applications for the widest range of computing platforms possible. By making applications available across heterogeneous environments, businesses can provide more services and boost end-user productivity, communication, and collaboration—and dramatically reduce the cost of ownership of both enterprise and consumer applications. Java has become invaluable to developers by enabling them to:- Write software on one platform and run it on virtually any other platform
- Create programs that can run within a web browser and access available web services
- Develop server-side applications for online forums, stores, polls, HTML forms processing, and more
- Combine applications or services using the Java language to create highly customized applications or services
- Write powerful and efficient applications for mobile phones, remote processors, microcontrollers, wireless modules, sensors, gateways, consumer products, and practically any other electronic device
Some Ways Software Developers Learn Java
Many colleges and universities offer courses in programming for the Java platform. The Oracle Academy provides a complete portfolio of software, curriculum, hosted technology, faculty training, support, and certification resources to K-12, vocational, and higher education institutions for teaching use, including a Java offering that will support hundreds of thousands of students. In addition, developers can also enhance their Java programming skills by reading the Oracle Java developer web site, subscribing to Java technology-focused newsletters and Java Magazine, using the Java Tutorial and the New to Java Programming Center, and signing up for Web, virtual, or instructor-led courses and certification.Young Developers Learn Java
Young people are learning programming languages from the earliest ages and up. Visual educational tools such as Alice, Greenfoot and BlueJ tools teach young people how to program using the Java programming language, and Java-based languages developed for ease of use.What Is JavaFX
JavaFX is powered by Java. The JavaFX platform enables application developers to easily create and deploy Rich Internet Applications (RIA) that behave consistently across multiple platforms. JavaFX extends the power of Java by allowing developers to use any Java library within JavaFX applications. This way developers can expand their capabilities in Java and make use of the presentation technology that JavaFX provides to build engaging visual experiences.Download WhatsApp for PC – Guide to use WhatsApp on Computer
Now, let’s talk about how to install WhatsApp on Windows. Because there
are many beginners among the readers, the method that will be described
below is the easiest method to WhatsApp for PC Download.

Step 1.Download and then install Bluestacks.
Step 2. After Bluestacks was successfully installed, search the software for “ WhatsApp” in the search bar.
Step 3.Download WhatsApp for PC Windows version and install the application.
Step 4. Configure WhatsApp on PC.
Step 5. Add you contacts.
This is everything that needs to be done in order to join the WhatsApp community from your personal computer. As you have noticed this procedure is extremely far from being difficult, anyone being able to do it without encountering any problems and without putting his computer to risk, as long as the steps are followed carefully and correctly.
You must know that you can get WhatsApp free of charge for Windows 7, Windows 8 or XP as well as Mac OS X.
Step 1.Download and then install Bluestacks.
Step 2. After Bluestacks was successfully installed, search the software for “ WhatsApp” in the search bar.
Step 3.Download WhatsApp for PC Windows version and install the application.
Step 4. Configure WhatsApp on PC.
Step 5. Add you contacts.
This is everything that needs to be done in order to join the WhatsApp community from your personal computer. As you have noticed this procedure is extremely far from being difficult, anyone being able to do it without encountering any problems and without putting his computer to risk, as long as the steps are followed carefully and correctly.
You must know that you can get WhatsApp free of charge for Windows 7, Windows 8 or XP as well as Mac OS X.
Password Protect Any Folder Without Any Software
In my previous post i have teach you to hide files behind images. In this tutorial i will show you interesting and usefull trick to password protect folder without using any software using batch file programming. This trick will work on all windows platform (Win XP, Win 7). Follow below tutorial to learn this trick.
How To Lock Folder ?
1. Open Notepad and Copy code given below into it.
cls
@ECHO OFF
title coolhacking-tricks.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== codemakerz goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End
2. Save the notepad file as lock.bat (.bat is must)
3. Now double click on lock.bat and a new folder will be created with name MyFolder
4. Copy all your data you want to protect in that New folder
5. Now double click on lock.bat and when command promp appears Type Y and press enter.
6. Now MyFolder will be hidden from you view, to access that folde double click on lock.bat
7. It will ask for password enter your password and done. (Default password is codemakerz)
- To change the password replace codemakerz with new password in the above code
How To Further Secure ?
You might be thinking that anyone can access the password by opening that lock.bat file in Notepad or any other text editor. To make it more secure hide lock.bat in some secure location after following the above tutorial To access the secured file double click on lock.bat. I would suggest copying lock.bat file into Pendrive and copying it into your computer whenever you required to access to your protected files.
ESET NOD32 and Smart Security with lifetime--full version
HI FERIENDS ENJOY ESET NOD32 AND ESET SMART SECURITY 6.0 full version ANITVIRUS FOR LIFE TIME GENUINE 100% Free of Cost.
DOWNLOAD ESET SMART SECURITY(windows) 32 bit
DOWNLOAD ESET SMART SECURITY(windows) 64 bit
DOWNLOAD ESET NODE 32 ANTIVIRUS(windows) 32 bit
DOWNLOAD ESET NODE 32 ANTIVIRUS(windows) 64 bit
JUST FOLLOW STEPS:
STEP 1 :- Download Eset smart security or Eset Nod32 antivirus full version.
STEP 2 :- Then go to any of the sites given below and try latest eset username and password. If first one is not work then try other and try 4 to 5 times and you when you find the right username and password click on update.
GIVE SITES:
http://www.freekas.com
http://softex32.blogspot.in/
http://nodno.blogspot.in/
Note: when you try eset username and password disable eset antivirus for 10 minutes.
Simply make IDM Full Version without Crack and Patch.
Genuine working 100%
The world leading Download Manager is Internet Download Manager (IDM).
STEP 1:-
DOWNLOAD IDM (5mb) from here.
STEP 2:-
When you click on registration, Now a new dialog appears that is asking for Name, Last Name, Email Address and Serial Key.
STEP 3:-
Now Enter you name, last name, email address and in field of Serial Key enter any of the following Keys:
RLDGN-OV9WU-5W589-6VZH1
HUDWE-UO689-6D27B-YM28M
UK3DV-E0MNW-MLQYX-GENA1
398ND-QNAGY-CMMZU-ZPI39
GZLJY-X50S3-0S20D-NFRF9
W3J5U-8U66N-D0B9M-54SLM
EC0Q6-QN7UH-5S3JB-YZMEK
UVQW0-X54FE-QW35Q-SNZF5
FJJTJ-J0FLF-QCVBK-A287M
HUDWE-UO689-6D27B-YM28M
UK3DV-E0MNW-MLQYX-GENA1
398ND-QNAGY-CMMZU-ZPI39
GZLJY-X50S3-0S20D-NFRF9
W3J5U-8U66N-D0B9M-54SLM
EC0Q6-QN7UH-5S3JB-YZMEK
UVQW0-X54FE-QW35Q-SNZF5
FJJTJ-J0FLF-QCVBK-A287M
And click on ok to register.
STEP 4:-
Now after you click ok, it will show an error message that you have registered IDM using fake serial key and IDM will exit.
STEP 5:-
Now Go to START --}} Then go to RUN and type the following text and click enter:
notepad %windir%\system32\drivers\etc\hosts
For Windows 7 users, due to security reasons you will not be able to save hosts file.
The trick is below:
First of all go to C:/ drive then go to Windows Folder and then go to System32 folder and then go to Drivers folder and then go to Etc Folder, in the Etc folder you will see the hosts file.
Now right click on hosts file and go to its properties, then go to security tab and then select your admin account, just below u will see an edit button (in front of change permissions), Now give the user full control and write and read rights and then click on apply and then click on Ok, now u will be able to edit the hosts file and save changes in it.
The trick is below:
First of all go to C:/ drive then go to Windows Folder and then go to System32 folder and then go to Drivers folder and then go to Etc Folder, in the Etc folder you will see the hosts file.
Now right click on hosts file and go to its properties, then go to security tab and then select your admin account, just below u will see an edit button (in front of change permissions), Now give the user full control and write and read rights and then click on apply and then click on Ok, now u will be able to edit the hosts file and save changes in it.
STEP 6:-
Now a notepad file appears something like this as shown below:
Now copy the below lines of code and add to hosts file as shown above:
127.0.0.1 tonec.com
127.0.0.1 www.tonec.com
127.0.0.1 registeridm.com
127.0.0.1 www.registeridm.com
127.0.0.1 secure.registeridm.com
127.0.0.1 internetdownloadmanager.com
127.0.0.1 www.internetdownloadmanager.com
127.0.0.1 secure.internetdownloadmanager.com
127.0.0.1 mirror.internetdownloadmanager.com
127.0.0.1 mirror2.internetdownloadmanager.com
After adding these piece of code, save the notepad file. And exit from there.
Now start your Internet download manager, and now you IDM has been converted to full version.
If you want to update IDM then You have to Open Notepad file from STEP 5 process and delete the code that you have pasted and then Update and repeat the all process again then your IDM will be full version again after update
KUPPI Android Latest Application for malayalees
Statutory Warning: Alcohol is injurious to health.This is app is in Malayalam Language. So non Malayalees, please don't install.
An app to know the price of foreign liquors in Kerala State Beverages Corporation outlets (BEVCO).
Another interesting feature of the app is the option called ‘What u get?“. In this option, the user will have to enter the available money in hand and select the liquor type. By pressing the ‘Get List’, the app will show the lists of liquors which can be bought using the money user currently have. Kuppi also shows the number of “Dry Days” in the state. A user can search for the nearest Beverages Corporation outlets by choosing the Beverages outlet menu. Kuppi shows the entire BEVCO outlets in Kerala. A hilarious feature of Kuppi is the ‘Pazhamchollukal’ which is a collection of various funny sayings about drinking.
We created this app only for fun and we do not promote drinking anyway. :)
All data, photos, ‘Pazhamchollukal’ & code we used in this app is taken from internet. All credits goes to their respective creators. We created nothing, just assembled all the things we get from the net.
We got pricelist and BEVCO outlets list from Kerala Beverages Corporation official website. (http://www.ksbc.kerala.gov.in)
Features:
-------------
* Beverage Outlets List
* Search by Brand
* Beer Pricelist
* Brandy Pricelist
* Gin Pricelist
* Scotch Pricelist
* Rum Pricelist
* Vodka Pricelist
* Whisky Pricelist
* Wine Pricelist
* Drydays
* Pazhamchollukal
* What u get?
An app to know the price of foreign liquors in Kerala State Beverages Corporation outlets (BEVCO).
Another interesting feature of the app is the option called ‘What u get?“. In this option, the user will have to enter the available money in hand and select the liquor type. By pressing the ‘Get List’, the app will show the lists of liquors which can be bought using the money user currently have. Kuppi also shows the number of “Dry Days” in the state. A user can search for the nearest Beverages Corporation outlets by choosing the Beverages outlet menu. Kuppi shows the entire BEVCO outlets in Kerala. A hilarious feature of Kuppi is the ‘Pazhamchollukal’ which is a collection of various funny sayings about drinking.
We created this app only for fun and we do not promote drinking anyway. :)
All data, photos, ‘Pazhamchollukal’ & code we used in this app is taken from internet. All credits goes to their respective creators. We created nothing, just assembled all the things we get from the net.
We got pricelist and BEVCO outlets list from Kerala Beverages Corporation official website. (http://www.ksbc.kerala.gov.in)
Features:
-------------
* Beverage Outlets List
* Search by Brand
* Beer Pricelist
* Brandy Pricelist
* Gin Pricelist
* Scotch Pricelist
* Rum Pricelist
* Vodka Pricelist
* Whisky Pricelist
* Wine Pricelist
* Drydays
* Pazhamchollukal
* What u get?
Avast 2014 Life-Time Licence Key
Hi friends!!!
Avast is now offering LIFE-TIME license key as part of 2014 PROMO for very limitted time .To get this license key you need to
Download and install in you system

Steps
to get Life-time license key:
1. First
you need to download avast from the following link and you should install
in your system
3. After installation click on avast and go to
maintenance then click on registration.
Note:
1. Your Download
and Installation are checked via logs by Avast.so you should completely
download avast and you should complete the installation process otherwise you
wont get key .if you are using avast on your system you need to uninstall old one and you should re install the new edition.
2. You should
complete installation process. You should use this Avast antivirus at
least for one day (should be installed and active). Initially you’ll get 1 year license key after this you will be automatically renewed every year
ENJOY THE AVAST ANTIVIRUS FOR LIFE TIMERecover photos from a damaged card
While we're on the
subject of SD cards, let's talk about photos. A new, high-capacity SD
card — smaller than a postage stamp — can hold thousands and thousands
of photos. It's a photographer's dream.
Of course, if the card breaks, it becomes a photographer's nightmare. That's why I recommend taking a number of smaller SD cards on a trip. If one breaks or gets lost, you haven't lost as many photos.
Then there are times when a memory card just goes haywire. You put it in the computer and it shows up blank, it's corrupt or just missing files.
If your card reader isn't broken and the card isn't externally damaged, you have a bad card. But hope is not lost.
Grab a free photo recovery program. Zero Assumption Recovery and Recuva are two good ones.
Tip inside of a tip: These free file recovery programs find hidden or deleted items on memory cards. You can use them to recover files on flash drives and hard drives as well.
After a scan, you might see your photos and other missing files. When you recover the files, be sure to save them to your hard drive. Don't try to save them to the memory card!
Not only is the card dying, you'll overwrite the files you're trying to recover. Trust me; it doesn't end well.
Of course, if the card breaks, it becomes a photographer's nightmare. That's why I recommend taking a number of smaller SD cards on a trip. If one breaks or gets lost, you haven't lost as many photos.
Then there are times when a memory card just goes haywire. You put it in the computer and it shows up blank, it's corrupt or just missing files.
If your card reader isn't broken and the card isn't externally damaged, you have a bad card. But hope is not lost.
Grab a free photo recovery program. Zero Assumption Recovery and Recuva are two good ones.
Tip inside of a tip: These free file recovery programs find hidden or deleted items on memory cards. You can use them to recover files on flash drives and hard drives as well.
After a scan, you might see your photos and other missing files. When you recover the files, be sure to save them to your hard drive. Don't try to save them to the memory card!
Not only is the card dying, you'll overwrite the files you're trying to recover. Trust me; it doesn't end well.
How to hack facebook password using PHISHING method
What is
phishing?
Phishing is the most widely used hacking method for hacking Facebook passwords. The most widely used technique in phishing is the use of Fake Login Pages, also known as spoofed pages. These fake login pages resemble the original login pages of sites likeYahoo , Gmail, MySpace etc. The victim is fooled to believe the fake facebook page to be the real one and enter his/her password. But once the user attempts to login through these pages, his/her facebook login details are stolen away. However phishing requires specialized knowledge and high level skills to implement. So I recommend the use of Phishing to hack facebook account since it is the easiest one.

Phishing is the most widely used hacking method for hacking Facebook passwords. The most widely used technique in phishing is the use of Fake Login Pages, also known as spoofed pages. These fake login pages resemble the original login pages of sites likeYahoo , Gmail, MySpace etc. The victim is fooled to believe the fake facebook page to be the real one and enter his/her password. But once the user attempts to login through these pages, his/her facebook login details are stolen away. However phishing requires specialized knowledge and high level skills to implement. So I recommend the use of Phishing to hack facebook account since it is the easiest one.
Here is a tutorial about phishing>>>
- First you must sign for a free webhosting service like http://3owl.com/ And register your subdomain.
- Home Window of http://3owl.com/ >> Then Click >> Sign Up
-
Sign up Here >> enter your details
-
Click >> continue to my account
- Click >>control panel
-
Click below button >> Create new Account
-
Click >> continue to my account
-
Click >> Resend activation E-mail
-
Click >> continue to my account
-
Check email
- To get account activation link send click >> spam link
- Click >>link
- Click >> continue to my account
-
Click>>select button
-
Click >> continue to my account
-
Enter details and click >>create
-
Click>> continue to my accountClick>>>control panel
Click>>>switch - Click>> continue to my account
- Click>>filemanager
- Click>> continue to my account
- Click>>install
- Click>> continue to my account
- Click>>the below black box(view result)
- Click>> continue to my account
- Click>>open
file manager
Now click the below link to download files to your computer and extract the file. Inside the folder you will find three files index.php and hello.php and login_again.html. - in your system Go to download>>
- Extract downloaded files here
- Open >>folder fb
- These 3 files >>>uploads to file manager
- Click >>upload files
- Open >>>3 files
- Click>>login_again.htm >>open a new window>>>
Now your homepage www.yourname.3owl.com has become a phisher. open it, you will see that your page
www.yourname.byethost.com has become the login page of the site you want to
hack. now all you have to do is send this link to the person whose account you
want to hack.when he tries to login through it you will receive a file
password.html in your "htdocs" folder of your phpnet.us account which
contains the username and password of your victim.
Go to your orginal facebook page>>send the link to
victim>>when the victim log on use this link and the entered password and
email id stored in filemanager(lol>right click>>edit>>you willl get password)
Personal Note:- The attacker must have a very good
convincing power to hack the facebook password with this method. Please try
this method carefully as now it is widely known and the target may soon guess
the attacker's intentions. The target may report the fake site and you may get
in trouble.
Subscribe to:
Posts (Atom)






