Sunday, 27 March 2011

Creative Shopping Bag Designs

To attract customers and promote their products, some of the companies have come up with creative shopping bag designs. Here are featuring some of their innovative designs.





Pillete



PILLETE
  • Pillete, the new concept of Bluetooth headset.
  • It’s almost invisible to the untrained eye when you are wearing it.
  • So you don’t have to worry anymore about looking like Robocop when walking down the street with it.
  • The downside is the fact that people have different sized ears and the device might be too small and slip out or to big and not fit.
  • People who often use earphones will tell you I’m right. But once they’ll figure out a way to make the Pillete adjustable.
  • This design will be the future of all headsets.

Sunday, 20 March 2011

AIRFIELD MAYHEM


INSTRUCTION:
Play airfield mayhem game and step into the shoes of an air traffic controller as you manage inbound flights at a busy airport. 
To play airfield mayhem use the mouse to draw a flight path for the various aircraft.
Simply click on an airplane and draw a route by using your mouse to the correct runway.
Avoid colliding with other planes. They usually crash once they collide.

Friday, 18 March 2011

Murder Of English Language

   An employee applied for leave as follows:
"Since I have to go to my village to sell my land along with my wife , please sanction me one-week leave." 




From an employee who was performing the "mundan" ceremony of his 10 year old son:
“As I want to shave my son's head , please leave me for two days.." 


A candidate's job application:
"This has reference to your advertisement calling for a ' Typist and an Accountant - Male or Female'... As I am both(!! )for the past several years and I can handle both with good experience , I am applying for the post.”

Letter writing:

"I am well here and hope you are also in the same well."  

Puzzle Bobble



KEYS:

  • Click to Start.
  • Use arrow keys for direction.
  • Space bar to release bubble or shoot.

Thursday, 10 March 2011

3G & 4G Technologies

3G:
International Mobile Telecommunications–2000 (IMT-2000), better known as 3G or 3rd Generation, is a generation of standards for mobile phones and mobile telecommunications services fulfilling specifications by the International Telecommunication Union.
Application services include wide-area wireless voice telephone, mobile Internet access, video calls and mobile TV, all in a mobile environment.
Compared to the older 2G and 2.5G standards, a 3G system must provide peak data rates of at least 200 kbit/s according to the IMT-2000 specification. Recent 3G releases, often denoted 3.5G and 3.75G, also provide mobile broadband access of several Mbit/s to laptop computers and smartphones.

Data Rates(3G):
Data speeds in 3G networks should be show speeds of to up to 2 Megabits per second, an increase on current technology.


4G:

In telecommunications, 4G is the fourth generation of cellular wireless standards. 
It is a successor to 3G and 2G families of standards. Speed requirements for 4G service set the peak download speed at 100 Mbit/s for high mobility communication and 1 Gbit/s for low mobility communication.
A 4G system is expected to provide a comprehensive and secure all-IP based mobile broadband solution to laptop computer wireless modemssmartphones, and other mobile devices. Facilities such as ultra-broadband Internet access, IP telephony, gaming services, and streamed multimedia may be provided to users.
Pre-4G technologies such as mobile WiMAX and first-release 3G Long term evolution (LTE) have been on the market since 2006 and 2009 respectively, and are often branded as 4G. The current versions of these technologies did not fulfill the original ITU-R requirements of data rates approximately up to 1 Gbit/s for 4G systems. Marketing materials use 4G as a description for Mobile-WiMAX and LTE in their current forms.


Wednesday, 9 March 2011

Word Scramble



Rubik's Cube



Computer Say I Love You

To check Is your computer “male” or “female”??

1. Open Notepad

2. Type the following line in notepad:

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

3. Save file as computer_gender.vbs

4. Run the file

If you hear a male voice, you have a Male Computer ;)

If you hear a female voice, you have a Female Compuer (:

Tuesday, 8 March 2011

Some Google Chrome keyboard shortcuts you should know

A keyboard short cut is a key (or combination of keys) that performs a function. This is a list of keyboard shortcuts in Google Chrome, and don't forget to Subscribe and receive more great updates.




Ctrl+N = Open a new window
Ctrl+Shft+N = Open a new window in incognito mode
Press Ctrl, and click a link = Open link in a new tab
Press Shft, and click a link = Open link in a new window
Alt+F4 = Close current window
Ctrl+T = Open a new tab
Ctrl+Shft+T = Reopen the last tab you've closed. Google Chrome remembers the last 10 tabs you've closed.



Address Bar Shortcuts

Type a search term = Perform a search using your default search engine
F6 or Ctrl+L or Alt+D = Highlight content in the web address area
Type a web address, then press Alt+Enter = Open your web address in a new tab


Shortcuts to open Google Chrome features

Ctrl+B = Toggle bookmarks bar on and off
Ctrl+H = View the History page
Ctrl+J = View the Downloads page
Shft+Escape = View the Task manager

Ctrl+1 through Ctrl+8 = Switch to the tab at the specified position number. The number you press represents a position on the tab strip.
Ctrl+9 = Switch to the last tab
Ctrl+Tab or Ctrl+PgDown = Switch to the next tab
Ctrl+Shft+Tab or Ctrl+PgUp = Switch to the previous tab
Ctrl+W or Ctrl+F4 = Close current tab or pop-up
Alt+Home = Open your homepage
Ctrl+O, then select file = Open a file from your computer in Google Chrome



Webpage shortcuts

Ctrl+P = Print your current page
F5 = Reload current page
Esc = Stop page loading
Ctrl+F5 or Shft+F5 = Reload current page, ignoring cached content
Press Alt, and click a link = Download link
Ctrl+F = Open find-in-page box
Ctrl+G or F3 = Find next match for your input in the find-in-page box
Ctrl+Shft+G or Shft+F3 = Find previous match for your input in the find-in-page box
Ctrl+U = View source
Drag link to bookmarks bar = Bookmark the link
Ctrl+D = Bookmark your current webpage
Ctrl++ = Make text larger
Ctrl+- = Make text smaller
Ctrl+0 = Return to normal text size

Friday, 4 March 2011

Games

SMASHING


TO DOWNLOAD CLICK THIS DOWNLOAD LINK:




SNAKE


DOWNLOAD THIS CLICK THIS LINK:

LOGIN PAGE

U need o create 3 files.

  1. Config.php
  2. Login.php
  3. Result.php

1. In Config.php file you initialize your database.(localhost/phpmyadmin)
2. In Login.php file your login script.
3. Finally in Result.php file your output result.

//name the file Config.php
<?php


  $host       = 'localhost'; 
  $dbname     = 'user'; 

  $uname      = 'root';
  $pass       = ''; //by default password is null or empty



  //connection info
  if (!($conn=mysql_connect($host, $uname, $pass)))  {
      printf("error connecting to DB by user = $uname and pwd=$pass");
      exit;
  }

  $db=mysql_select_db($dbname,$conn) or die("Unable to connect to
database1"); 


?>

// Login.php file

<?php


<form action="result.php" method="post">
<body>
<label><b>LOGIN :</b></label></br>

<label style="display: block; float: left; width: 100px">NAME :</label><input type="text" name="username"/><br>

<label style="display: block; float: left; width: 100px">PASSWORD :</label><input type="password" name="password"/></br>

<input type="submit" value="LOGIN"/></br>

</body>
</form>


?>

// Result.php file

<?php

include('config.php');

$username = $_REQUEST['username'];
$password =$_REQUEST['password'];


$sql=mysql_query("SELECT * FROM user WHERE username='$username' AND password='$password'");

$row=mysql_num_rows($sql);//for checking if required username and password is correct or not
    
          
              
if($row>0)
{
                      echo "LOGIN SUCCESSFUL";
                }
             else
               {
                
                  echo "FAILED";
                                
              }
?>

Thursday, 3 March 2011

MYSQL DATABASE

First you  create database in your MYSQL from this site http://localhost/phpmyadmin 
than create database name (user) for login file. .



create database tables. .login and attributes username and password.
or copy this query. .
CREATE TABLE `user`.`login` (`username` VARCHAR(255) NOT NULL, `password` VARCHAR(255) NOT NULL) ENGINE = InnoDB; 



Insert data into table. 
or copy this query. .
INSERT INTO `user`.`login` (`username`, `password`) VALUES ('test', 'test'),VALUES('username','password');


 that's it. .