New iPhone 4 launched
Jun 8th
Steve Jobs officially announced yesterday the launch of the new generation iPhone, the iPhone 4.0, at the Apple Worldwide Developers Conference (WWDC).
The new iPhone promises greater battery life, high definition video, a higher resolution screen. The screen size is the same as the one from iPhone 3GS, but contains four times the pixels.
Hardware:
- Saphire glass front and back panels
- Apple A4 CPU
- 3-axis gyroscope
- Micro SIM
- 960×640, 326 pixel per inch display
- IPS Technology screen
- Front facing camera
- Rear facing camera, LED Flash, 5 Megapixels
- 5x Digital Zoom
The price range will be $199 for the 16GB version and $299 for the 32GB one. Both will be available in black and white.
The phone will be available from June 24th, with pre-orders starting from June 15th.
Heroes and hitmen more popular than hackers and coders
Jun 8th
It seems, according to Google, that heroes and hitmen are more likely to find a job than hackers and coders
jQuery back to top smooth scroll
Apr 23rd
$(document).ready(function() {
$('.totop').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
});
});
How to – detect iPhone with Java-script
Apr 23rd
Here is a javascript code snippet that will help you detect iPhone
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
if (document.cookie.indexOf("iphone_redirect=false") == -1) {
window.location = "http://website.com/iphone";
}
}
Install windows fonts on Ubuntu
Apr 22nd
In Terminal type the command
sudo apt-get install msttcorefonts
If you don’t want to restart after, you have to type the command:
sudo fc-cache -fv
And that’s it. Enjoy !
PS: If you want to install additional fonts, you just have to copy them to the ~/.fonts/ folder
How to install Flash player under Ubuntu 9.10 Karmic Koala
Apr 22nd
First, you have to close Firefox if it is open.
Open a Terminal window and type:
sudo apt-get install flashplugin-nonfree
That’s all.


