#:notebook_with_decorative_cover: Understanding Command Line Abridged from Codecademy
##List
ls -torders files and directories by the time they were last modified
##Copy, Move, Rename & Delete##
cpcopies filesmvmoves and renames files
| <snippet> | |
| <content><![CDATA[ | |
| <div class="media"> | |
| <a href="#" class="media__img--rev"><img src="${1:image}" alt="${2}" /></a> | |
| <div class="media__bd">${3}</div> | |
| </div> | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>medrev</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> |
| <snippet> | |
| <content><![CDATA[ | |
| <div class="media"> | |
| <img class="media__img" src="${1:image}" alt="${2}" /> | |
| <div class="media__bd">${3}</div> | |
| </div> | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>medimg</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> |
| [ | |
| // { "keys": ["ctrl+d"], "command": "duplicate_line" }, | |
| { "keys": ["ctrl+shift+w"], "command": "null" }, | |
| { "keys": ["shift+f3"], "command": "find_under_expand" }, | |
| // { "keys": ["j", "j"], "command": "exit_insert_mode", | |
| // "context": | |
| // [ | |
| // { "key": "setting.command_mode", "operand": false }, | |
| // { "key": "setting.is_widget", "operand": false } | |
| // ] |
#:notebook_with_decorative_cover: Understanding Command Line Abridged from Codecademy
##List
ls -t orders files and directories by the time they were last modified##Copy, Move, Rename & Delete##
cp copies filesmv moves and renames files#JAWS Shortcuts
These are some shortcuts which help when navigation JAWS (Job Access With Speech). This is mostly a streamlined version taken from the JAWS site.
Note:
##Shortcuts Description|Keystrokes
| body {background-image: url('foo.png');} | |
| /* DPR (device px ratio) of 2*/ | |
| @media screen and (-webkit-device-pixel-ratio: 2) { | |
| body {background-image: url('foo-hi-res.png')} | |
| } | |
| /*OR better DPI (dots/inch) */ | |
| @media screen and (resolution: 96dpi) { | |
| body {background-image: url('foo.png');} |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| path { | |
| stroke: #fff; | |
| } | |
| </style> | |
| <body> | |
| <script src="https://d3js.org/d3.v4.min.js"></script> | |
| <script> |
| // Sublime Text (on restart) strips comments out and alphabetizes properties | |
| // This is my one true, organized & commented source of User setting overrides | |
| // Should be in order of Default settings followed by optional user packages | |
| { | |
| // Sublime Defaults | |
| //"color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme", | |
| "color_scheme": "Packages/User/SublimeLinter/Acai (SL).tmTheme", | |
| "font_size": 16, | |
| "font_face": "Operator Mono", |
| { | |
| "bootstrapped": true, | |
| "in_process_packages": [ | |
| "CSS3_Syntax" | |
| ], | |
| "installed_packages": [ | |
| "AdvancedNewFile", | |
| "Auto Semi-Colon", | |
| // "Boxy Theme", | |
| // "Color Highlighter", |