Super + D = Show Desktop
Super + M = Minimize all windows
Super + E = Launch explorer
Super + R = Run Command
Super + Shift + M = Maximize all windows
Super + L (XP) = Lock OS
Super + S = Launch Search
Alt + Tab = Shift between Windows
| <div style="width:20%;padding-bottom:20%;background-color:red"> | |
| <div> | |
| Content goes here | |
| </div> | |
| </div> | |
| <!-- http://www.dwuser.com/education/content/creating-responsive-tiled-layout-with-pure-css/ --> |
| <object id="ytplayer" style="height: 390px; width: 640px"> | |
| <param name="movie" value="http://www.youtube.com/v/8Ax-dAR3ABs?version=3&enablejsapi=1"> | |
| <param name="allowScriptAccess" value="always"> | |
| <embed id="ytplayer" src="http://www.youtube.com/v/8Ax-dAR3ABs?version=3&enablejsapi=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"> | |
| </object> | |
| <a href="javascript:document.getElementById('ytplayer').stopVideo()">Play</a> |
| For anyone else who wants to set Eclipse style goto definition, you need to create .sublime-mousemap file in Sublime User folder. | |
| Windows - create Default (Windows).sublime-mousemap in %appdata%\Sublime Text 3\Packages\User | |
| Linux - create Default (Linux).sublime-mousemap in ~/.config/sublime-text-3/Packages/User | |
| Mac - create Default (OSX).sublime-mousemap in ~/Library/Application Support/Sublime Text 3/Packages/User | |
| Now open that file and put the following configuration inside | |
| [ | |
| { |
| find . -name '*.*' -exec sh -c ' | |
| a=$(echo "$0" | sed -r "s/([^.]*)\$/\L\1/"); | |
| [ "$a" != "$0" ] && mv "$0" "$a" ' {} \; |
| { | |
| "config": { | |
| "sort-order-fallback": "abc", | |
| "sort-order": [ | |
| [ | |
| "-moz-animation", | |
| "-moz-animation-delay", | |
| "-moz-animation-direction", | |
| "-moz-animation-duration", | |
| "-moz-animation-iteration-count", |
| <?php | |
| $input = array_map("unserialize", array_unique(array_map("serialize", $input))); |
| <?php | |
| dd($request->file('foto'), $request->file('foto')->getErrorMessage()); |
| ALTER IGNORE TABLE jobs | |
| ADD UNIQUE INDEX idx_name (site_id, title, company); |
| function heidiDecode(hex) { | |
| var str = ''; | |
| var shift = parseInt(hex.substr(-1)); | |
| hex = hex.substr(0, hex.length - 1); | |
| for (var i = 0; i < hex.length; i += 2) | |
| str += String.fromCharCode(parseInt(hex.substr(i, 2), 16) - shift); | |
| return str; | |
| } | |
| document.write(heidiDecode('755A5A585C3D8141786B3C385E3A393')); |