Getting a Youtube video thumbnail is very easy thanks to YouTube for their predictable format. http://img.youtube.com/vi/[youtube-video-id]/0.jpg http://img.youtube.com/vi/[youtube-video-id]/1.jpg http://img.youtube.com/vi/[youtube-video-id]/2.jpg http://img.youtube.com/vi/[youtube-video-id]/3.jpg The first one is a full-size image and rest of them are thumbnails(ie.1,2,3) The default thumbnail would be, that you see when the video previews. For the high-quality version of the thumbnail use an url similar…Continue Reading
General
Gmail’s ‘Undo Send’ Feature Made public
Google adds a new functionality to their google mail, probably one of the most wanted feature. We all had that moment, “oops I sent mail to the wrong person, or pressed reply to all, instead of sending to one”. You can set this in your Gmail settings options, coming under the general tab. You can…Continue Reading
How to get a Website Id using a Store Id?
Getting website Id by using the store Id And to get all store Ids under one website you can use the below code
Dreamweaver hangs when opening or viewing a file
we can be solved this by disabling CSS rendering in Dreamweaver. open Dreamweaver. click on view. click style rendering. untick display styles. That solves the issue but you cannot see the live page in the display view unless viewed in the browser.
Show language bar in task bar windows 7
There is a quick solution to enable the language bar in taskbar(windows 7) Control Panel > Regional and Language settings > Keyboards & Languages > Change keyboards > Language bar > Show in system tray :
CodeIgniter pagination url with get parameters
CodeIgniter pagination url with get parameters In pagination config: if (count($_GET) > 0) $config[‘suffix’] = ‘?’ . http_build_query($_GET, ”, “&”); Your current $_GET vars will be shown in pagination links. You can replace $_GET by another associative array. This won’t add a query string unless one already exists. Update: I just saw, if you go…Continue Reading
Google Airport set for San Jose, California

A new deal is in the works this week that would have Google running their own fabulous Google-branded airport out of San Jose has been reported this week, city approval and all. This report comes from the current San Jose airport where officials are “urging” the city to sign a deal that would allow two…Continue Reading
Display A Search Box on your Site Search Results in Google search
Google have added a new feature to its thousands of excellent features. It’s search box, getting a prominent spot just under the site description. The new search box is available for both desktop and mobile searches. You can see a picture below when I searched for eBay in google. Its very handy and informative from…Continue Reading
Lists of time zones with abbreviations

Lists of time zones with abbreviations Abbr. Name UTC offset ACDT Australian Central Daylight Savings Time UTC+10:30 ACST Australian Central Standard Time UTC+09:30 ACT Acre Time UTC-05 ACT ASEAN Common Time UTC+06:30 – UTC+09 ADT Atlantic Daylight Time UTC-03 AEDT Australian Eastern Daylight Savings Time UTC+11 AEST Australian Eastern Standard Time UTC+10 AFT Afghanistan Time…Continue Reading
This Netflix Chrome Extension Lets You Access Tons of Hidden Categories
Most of the Netflix customers doesn’t know this fact that a number of categories are hidden from public view in Netflix. But you can enter to this to categories by hitting the direct URL to address bar. Feeling nerdy, only geeks has the access to that. So here comes a handy chrome extension that helps…Continue Reading
Decode to Base64 format
Base64 Base64 is a generic term for a number of similar encoding schemes that encode binary data by treating it numerically and translating it into a base 64 representation. The Base64 term originates from a specific MIME content transfer encoding. Base64 encoding schemes are commonly used when there is a need to encode binary data…Continue Reading
Encode to Base64 format
Base64 Base64 is a generic term for a number of similar encoding schemes that encode binary data by treating it numerically and translating it into a base 64 representation. The Base64 term originates from a specific MIME content transfer encoding. Base64 encoding schemes are commonly used when there is a need to encode binary data…Continue Reading
Smule, The Karaoke mobile app

Smule the karaoke app, become heavily famous among music lovers. The app let you sing your favourite track, and giving you are in a recording studio. It’s for the people who practicing for reality shows and sometimes to satisfy your inner passion. Smule invested heavily on social media to make popular this app. Now they…Continue Reading
Hyperloop One will build the first Hyperloop system, will reduce Dubai to Abu Dhabi Journey to 12 minutes

Hyperloop One and United Arab Emirates on their way to developing the first hyperloop system. Hyperloop One announced the first hyperloop system will be in Dubai to Abu Dhabi. “Having signed an agreement with DP World in August to pursue a cargo-based Hyperloop One system at Jebel Ali Port, our focus has now expanded to…Continue Reading
Find the song without knowing the lyrics

Find the song without knowing the lyrics Its annoying when we know how to hum the song but can’t find the name or lyrics of the song. Here we find out some services that let you know how to find the song without knowing the lyrics. 1)Midomi If you have a tune that stuck in…Continue Reading
Amazon launches a dedicated shop for items featured on Product Hunt

Amazon collaborating with Product hunt for a dedicated shopping section in amazon website. The san Fransisco-based startup, Product hunt came so far with startup ideas and supporting startups to sell their dream products. This new collection, called Featured on Product Hunt, is available as a part of Amazon Launchpad online store. Launchpad is a great place…Continue Reading
Replace “\n” with new line characters, using Notepad++

Due to bad formatting you will encounter the below scenario in your day to day work. You may want this file to convert to Excel/CSV. First of all, you want to convert the escaped newline character to real “\n”. You can easily do this via using Notepad++(a free source code editor which supports several programming languages…Continue Reading
Comments in HTML
How to use comments in HTML <div id=”content”> <div class=”header”><!–your comment comes here–></div> </div> <!– END div-content–>