- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert)
| $white: #ffffff; | |
| $black: #000000; | |
| $red50: #ffebee; | |
| $red100: #ffcdd2; | |
| $red200: #ef9a9a; | |
| $red300: #e57373; | |
| $red400: #ef5350; | |
| $red500: #f44336; | |
| $red600: #e53935; | |
| $red700: #d32f2f; |
| <audio id="alarm" src="alarm.ogg" controls></audio> | |
| <script> | |
| const alarmElement = document.getElementById('alarm'); | |
| const alarmTimes = [ | |
| new Date('2015-11-13 07:00 -0500'), | |
| new Date('2015-11-13 08:00 -0500'), | |
| new Date('2015-11-13 08:30 -0500'), | |
| ]; | |
| function playAlarm() { |
- Install Package Control. For SublimeText 2, paste the following in Terminal:
import urllib2,os; pf='Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler( ))); open( os.path.join( ipp, pf), 'wb' ).write( urllib2.urlopen( 'http://sublime.wbond.net/' +pf.replace( ' ','%20' )).read()); print( 'Please restart Sublime Text to finish installation')
From here on out, use Package Control to install everything. ⌘+Shift+P, then type Install to get a list of installable packages you can 'livesearch through. After installing plugins, they should be running.
img srcset => Enable a responsive images solution by providing the browser multiple resources in varying resolutions for a single image.
Arrow function => The arrow (=>) takes the place of the function keyword
Box Alignment => CSS properties for aligning boxes within their container. Allows for true vertical centering among other features.
DOM3 Keyboard Events => KeyboardEvent: keydown, keyup
Default parameter => Allows formal parameters to be initialized with default values if no value or 2 is passed.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Responsive Design Testing</title> | |
| <style> | |
| body { margin: 20px; font-family: sans-serif; overflow-x: scroll; } | |
| .wrapper { width: 6000px; } | |
| .frame { float: left; } | |
| h2 { margin: 0 0 5px 0; } |