Explore >> Select a destination


You are here

daker.me
| | www.phpied.com
2.5 parsecs away

Travel
| | Animated gifs are fun and all but they can get big (in filesize) quickly. At some point, maybe after just a few low-resolution frames it's better to use an MP4 and an HTML element. You also preferably need a "poster" image for the video so people can see a quick preview before they dec
| | tylergaw.com
2.0 parsecs away

Travel
| | The Web Video Text Track format is easy enough to work with, but marking cue times can be a bit of a chore. I wrote a small tool to make it a little easier.
| | neil.gg
2.1 parsecs away

Travel
| |
| | www.hillelwayne.com
14.4 parsecs away

Travel
| What does this print? x = 1 x --> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), --> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1.