Pages

Thursday, December 15, 2011

Order Akash tablet online


Aakash Tablet











SpecificationsAakashUbiSlate 7 (The upgraded version of Aakash)
AvailabilityNOW!Late January
PricingRs.2,500Rs.2,999
MicroprocessorArm11 – 366MhzCortex A8 – 700 Mhz
Battery2100 mAh3200 mAh
OSAndroid 2.2Android 2.3
NetworkWiFiWiFi & GPRS (SIM & Phone functionality)
.




Saturday, December 10, 2011

find ur computer sex

STEPS TO FOLLOW:
===========
1) Open Notepad

2) Copy the following script in notepad.

CreateObject("SAPI.SpVoice").Speak"I love YOU"


3) Goto File> Save as

4) Name it as Love.vbs and from File type select ALL FILES option and save it

5) Now run it and u will come Across the result :D

Bythe way i found Mine is female ;)
Hoepe u will found this intresting.


Enjoyyy

Sunday, August 14, 2011

Saturday, August 13, 2011

Computer Science Seminar Topics




Zone Based Ant Colony Routing In MANET 
Confidential Data Storage and Deletion 
Emotional Annotation of Text
Audio CAPTCHA: Existing solutions assessment and a new implementation for VoIP telephony 
Co-operative Linux
Security Challenge and Defense in VoIP Infrastructures
CAPTCHA security for Phishing: Secure or not?
An Energy Aware Framework for Dynamic Software Management in Mobile Computing Systems
Artificial passenger

Fluorescent Multilayer Disc (FMD

LOGARITHMIC KEYING
Model checking for Securing E-commerce transaction
DNSSEC: A Protocol towards securing the Internet Infrastructure
Brain Machine Interface
Self Healing Robots
Multi Touch
Bio Inspired Computing
Image Compression Using Wedgelets
PILL CAMERA
Java Ring
Robotic Surgery
The Artificial Brain
OpenSocial
Cell Phone Virus and Security
Advancements Towards 4G
Service Oriented Architecture (SOA)
Bubble sensing 
A Search Engine for 3D Models
Artificial Neural Network (ANN)
CONTEXT ORIENTED PROGRAMMING
SMART CARD
INTERNET PROTOCOL TELEVISION (IPTV)
WiMAX
Inferno OS
Session Initiation Protocol (SIP)
Intelligent Network (IN)
SMARTSHADER
Dynamic 3D Scene Analysis from a Moving Vehicle
E-Intelligence
Grid Network
TRACKING AND POSITIONING OF MOBILE PHONES
Simple SAN & Storage Resource Management in Microsoft® Windows Server™ 2003 R2
Cloud computing
Blue eyes
Smart Note Taker
FireWire
Iris Scanning
Swarm intelligence
Biomagnetism
FACE RECOGNITION USING Neural Network
iSCSI
RFID
Agent oriented Programming
Animatronics
Augmented Reality
Autonomic Computing
Bio chips
Reconstruction of Recorded Sound
BIOMETRICS
Blu-ray Disc
Cellular Digital Packet Data
Crusoe processor
DiffServ
Digital Theater System
Extreme Ultraviolet Lithography
HPJava
Hurd
Hyper Threading
Imode
IP spoofing
LwIP
Mobile IP
NRAM
Power Line Communications
Project Oxygen
Survivable Networks Systems
Self Organizing Maps
Symbian OS
Ubiquitous Networking
Ultra Wide Band
Virtual Keyboard
Virus and Anti Viruses
Virtual network computing
Wearable Computers
Wireless intelligent network
Adding Intelligence to Internet
Extreme Programming
FRAM
IEEE 802.11n –New Generation Wireless Standard
Free Space Optics
GMPLS
Grid Computing
HIGH SPEED DATA IN MOBILE NETWORKS
Human Computer Interface
INTERNET DISTRIBUTED COMPUTING
Intel Centrino Mobile Technology
Computer Human Interface
Java Card
Light tree
Itanium Processor
Local Multipoint Distribution Service
M-COMMERCE
Windows DNA
Halo Networks
MiniDisc
Modular Computing
Parasitic Computing
Resilient Packet Ring Technology
Shallow Water Acoustic Networks
Tempest and Echelon
10 GB ETHERNET
Multimedia Conferencing
MPEG-7
Parasitic Computing
Resilient Packet Ring Technology
Space Mouse
Smart Sensors
Linux Kernel Release 2.6
Click here to Go Top       |       Click to Go to Home Page

Thursday, August 4, 2011


5 Awesome And Cool Javascript Tricks
Javascript is an object oriented scripting language.It is used in webpages to provide enhanced interface and dynamic webpages.It is mainly used as client-side scripting language.There are some cool javascript tricks that will blow your mind.You don’t need any programing knowledge to use these tricks.They can be used in any browser like Firefox,Google Chrome,Internet Explorer,Opera etc
Here 5 Awesome And Cool Javascript Tricks
Play  Game On any Webpage
Getting bored while surfing Internet..Lets play a game to refresh your mind.Open any website in your browser.Now copy and paste the following javascript code in your browser
javascript:var%20s%20=%20document.createElement('script');
s.type='text/javascript';document.body.appendChild(s);
s.src='http://erkie.github.com/asteroids.min.js';void(0);
Press Enter Key.Now you can see a Triangular icon on the Left-top corner of your browser.Rotate this icon with W,A,D and use Space-bar to fire.Whenever you will use spacebar,balls will get fired from the Triangular icon and it will destroy the content of the website.
Edit Any Webpage
Using this javascript trick you can edit the content of any website (temporarily).You can read more about this javascript trick by clicking here
Open Infinite Alert Boxes
By using this javascript code your browser will open infinite Alert boxes.
javascript:while(1){alert('Restart your browser to close this box!')}
To stop this code you have to restart your browser.
Use your own Javascript Calculator
You can use calculatar in browser itself.For this you have to edit the values in the javascript code.E.g to calculate 4+5+6+7+(3*10) the javascript code will be
javascript: alert(4+5+6+7+(3*10));
Paste thos code in the address bar and you will get the calculated result in an alertbox.
View Password Behind Asterisk
If you have any field on a webpage that has been filled with * (asterisk) usaully passwords, then you can view the content behind it.Simply paste this code in Address bar and press enter.
javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k < w.length;k++) {var x = ((x) || (z(w[k].document.forms)));g=g+1;}if (!x) alert('Password not found in ' + g + ' forms');}function z(f){var b=false;for(var i=0;i < f.length;i++) {var e=f[i].elements;for(var j=0;j < e.length;j++) {if (h(e[j])) {b=true}}}return b;}function h(ej){var s='';if (ej.type=='password'){s=ej.value;if (s!=''){prompt('Password found ', s)}else{alert('Password is blank')}return true;}}