Skip to main content

Posts

Showing posts from 2015

EcmaScript 6 Startup tutorials

LET Keyword The  let  keyword declares a local variable in the block scope. Normally  if statements don’t have scope, but now they do with  let . This also works for loops too. for Example :  var x = 1 ; if (x < 10 ) { let v = 1 ; v = v + 21 ; console .log (v); } console .log (v); //v is not defined CONST keyword A  const  or a constant declaration is where once, the variable is set you can’t change it. It’s read-only. For example :    const admin = "jain";    admin = "pardeep" //not allowed...readonly

You Tube Tricks

1. How to Download YouTube video without any software.    *Select video that you want to download. Now you have to put "ss" before the URL in the URL bar. it will automaticaly redirect to the webpage from where you can eaisly get that video.   * For Example URL is "https://www.youtube.com/watch?v=U9kCY9psgOc" you  have to replace this URL with "https://www.ssyoutube.com/watch?v=U9kCY9psgOc".   * Done !!! 2. The Next article in this context of you tube is 'How to create a GIF image using YouTube video'.  *It takes just number of simple  steps to make Gif image using YouTube video.  * All you need to do is just change the URL  of the video with the prefix GIF.      For example: your URL is "https://www.ssyoutube.com/watch?v=U9kCY9psgOc".    change this one with "https://www.gifyoutube.com/watch?v=U9kCY9psgOc".     *Done !!!  3. Repeat the video as per your wish.    * Somet...

Some Facts about Twitter.

1. It Was Originally Called ‘Twttr’. 2. Now the current users send out a billion tweets every week. 3. The highest tweeter of all time goes to a Japanese girl, @Yougakduan_00.     This user has tweeted a mind boggling 36,402,262 posts — that’s one every         second, for 421 days! 4. On January 22nd, 2010, T.J. Creamer, a NASA astronaut posted a tweet from     the International Space Station.This became the first, un-assisted, off-Earth      Twitter message. 5. In March 2012, James Cameron made his way down to Marina Trench,     the deepest point of the known ocean, or as James Cameron likes to call it his     “chill zone”,and sent out a tweet. I wonder which network subscriber he uses. 6. Surprisingly enough, China has the highest number of twitter accounts     in the world with over 35 million people in the country using the medium. 7. Turkey became the l...

How to Embed Google Map as Plugin in your WebSite.

whenever you want to embed the google map in your project just follow the simple steps.... 1. Goto Google maps Google Map. 2. Search for address for which you want plugin of google map. 3. Click the Bottom-Right button on the page(Setting Icon). 4. Choose Share/Embed Map. 5. Copy the URL or Embed Code for iframe.     (You can customize your iframe size according to your requirements.) 6. Done.