Monday, October 25, 2010

simple jQuery slideshow: simple jquery code

Thanks to http://azoomer.com/how-to-make-a-simple-jquery-slideshow/
$(window).load(function() {
setInterval(function() {
$('#slides :nth-child(1)').next().show().end().fadeOut(1200).appendTo('#slides');
} , 5400);
});



#slides { position: relative; width: 600px; height: 400px;}
#slides img { position: absolute; left: 0; top: 0; display: none;}
#slides img.firstslide { display: block;}



image 1
image 2
image 3
image 4
image 5


Here is a link to a DEMO of the slideshow

Tuesday, October 12, 2010

DLink DIR-457 MyPocket 3.5G HSDPA Router


DLink MyPocket 3G router

The new DLink myPocket 3.5G HSDPA Router allows users to access worldwide mobile broadband networks. Once connected, users can enjoy data transmission and media streaming on-the-go. Simply insert your UMTS/HSDPA SIM card, and share your 3.5G Internet connection through a secure 802.11g wireless network.


Multifunctionality
The D-Link myPocket 3.5G HSDPA Router can be configured to work as a Wi-Fi Router or 3.5G Modem with the flip of a switch. Share 3.5G connectivity with your colleagues or family while travelling or at work. Connect the D-Link myPocket 3.5G HSDPA Router to a PC to enjoy personal access to the Internet.

Advanced Network Security
Keep your wireless network safe with WPA/WPA2 wireless encryption. The DIR-457 utilizes a built-in firewall to prevent potential attacks across the Internet.

Simple to Install and Use
The 3.5G HSDPA Router can be installed quickly and easily almost anywhere. This router is great for situations where an impromptu wireless network must be set up, or wherever conventional network access is unavailable.

The DLink myPocket 3.5G HSDPA Router allows you to connect to a 3.5G mobile network and share a 3.5G mobile connection with PCs and wireless devices within
the area. Firewall and wireless security features are also included for safe remote connections.
BENEFITS

* ƒƒProvides high-speed connectivity in areas without conventional 802.11 wireless access
* ƒƒCompatible with a wide-range of mobile service networks
* ƒƒRechargeable battery allows for increased mobility
* ƒƒBuilt-in microSD slot supports sharing of files between Wi-Fi enabled devices

SHARE YOUR CONNECTION
The router can share its 3.5G connection with up to 6 Wi-Fi clients like smart phones, notebooks or gaming devices.
COMPACT DESIGN
The battery-powered router is slim and small enough to carry in your pocket.
BUILT-IN FIREWALL AND ENCRYPTION
The built-in firewall and WPA/WPA2 wireless encryption ensure that your information remains secure when working from remote locations.


DLink myPocket 3.5G HSDPA Router technical specifications :

* GSM BAND (GSM/GPRS/EDGE)
o ƒƒ 850 / 900 / 1800 / 1900 MHz
o ƒƒ Power Class 4 (+33dBm, 850 / 900 MHz)
o ƒƒ Power Class 1 (+30dBm, 1800 / 1900 MHz)
* UMTS/HSDPA BAND *
o ƒƒ 850 / 1900 / 2100 MHz
o ƒƒ Power Class 3 (+24dBm)
* DATA THROUGHPUT **
o ƒƒ Downlink up to 3.6Mbps in 3.5G mode
o ƒƒ Uplink up to 384Kbps in 3.5G mode
o ƒƒ Max. 54Mbps in 802.11g mode
* Standards
o ƒƒ 802.11b
o ƒƒ 802.11g
o ƒƒ 802.3
o ƒƒ 802.3u
* Wireless Security
o ƒƒ 64/128-bit WEP
o ƒƒ WPA-PSK & WPA2-PSK
o ƒƒ WPS-PIN
o ƒƒ Built-in firewall
* VPN
o ƒƒ L2TP/PPTP/IPSec VPN Pass-through
* ADVAnced functions
o ƒƒ Storage file sharing
o ƒƒ UPnP
o ƒƒ Port Forwarding
* ANTENNA
o ƒƒ 3 Internal antennas
* CARD SLOTS
o ƒƒ Standard 6-pin SIM card interface
o ƒƒ Micro-SD card interface
* LED Status Indicators
o ƒƒ Power Status
o ƒƒ Signal Status
* DIMENSIONS (L x W x H)
o ƒƒ 110 x 65 x 13.6 mm
* WEIGHT
o ƒƒ 103 grams

DLink 3G router price
DLink myPocket 3.5G HSDPA Router Price

DLink myPocket 3G Router Price in India – The new DLink myPocket 3.5G HSDPA Router price in India is Rs.10,000.Hope DLink will soon reduce the price to make it popular.

more click to http://www.newtechnology.co.in/dlink-dir457-mypocket-3g-router-price/

Sunday, October 10, 2010

Nokia E-Cu - Charge Your Phone Using the Heat of Your Pocket


Patrick Hyland, a British designer, came up with a new concept cell phone that could revolutionize the phone market.

Dubbed "Nokia E-Cu", the handset incorporates a technology that was previously not used in cell phones.

The device does not need to the plugged into a socket to fill its battery up. The energy used to charge the phone is produced by the heat of the user's pocket.

It would be interesting to note that the Nokia E-Cu includes a copper case that has engraved heat-sinks in the shape of dried earth.

Inside, the designer decided to include a thermogenerator that transforms heat from any source into electrical energy.

The device will be able to eliminate the 51,000 tons of waste and greenhouse gases produced by phone chargers each year.

Contribution from : http://gadgets.infoniac.com/

Thursday, October 7, 2010

jQuery sticky footer

This will make an element with id footer stick to the bottom of the window, but only if the document body height is less than the window height. If it isn't it 'll just follow the normal document flow.

$(function(){
positionFooter();
function positionFooter(){
if($(document.body).height() < $(window).height()){
$("#pageFooterOuter").css({position: "absolute",top:($(window).scrollTop()+$(window).height()-$("#pageFooterOuter").height())+"px"})
}
}

$(window)
.scroll(positionFooter)
.resize(positionFooter)
});

Without the body height conditional the footer will always stick to the bottom of the window, regardless of the body height:

$(function(){
positionFooter();
function positionFooter(){
$("#pageFooterOuter").css({position: "absolute",top:($(window).scrollTop()+$(window).height()-$("#pageFooterOuter")
.height())+"px"})
}

$(window)
.scroll(positionFooter)
.resize(positionFooter)
});