Update some layouts

This commit is contained in:
Rico Sta. Cruz 2017-10-16 22:59:57 +08:00
parent 76788fa7aa
commit 99d44bb99f
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
4 changed files with 37 additions and 31 deletions

View File

@ -1,6 +1,7 @@
--- ---
title: AWS CLI title: AWS CLI
category: Devops category: Devops
layout: 2017/sheet
--- ---
### EC2 ### EC2
@ -46,16 +47,14 @@ aws configure
eb config eb config
``` ```
See: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html See: <http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html>
## ebextensions ## ebextensions
* see <http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers.html> * <http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers.html>
* see <http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html> * <http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers-ec2.html>
---- ## Also see
See:
* [AWS CLI](https://aws.amazon.com/cli/) * [AWS CLI](https://aws.amazon.com/cli/)
* [Documentation](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html) * [Documentation](http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html)

View File

@ -1,6 +1,7 @@
--- ---
title: Deis title: Deis
category: Devops category: Devops
layout: 2017/sheet
--- ---
### Deploy ### Deploy
@ -60,8 +61,10 @@ deis limits:set web=1024 --cpu
deis perms:create otheruser deis perms:create otheruser
``` ```
### [SSL](http://docs.deis.io/en/latest/using_deis/app-ssl/) ### SSL
``` ```
deis certs:add server.crt server.key deis certs:add server.crt server.key
``` ```
See: [SSL](http://docs.deis.io/en/latest/using_deis/app-ssl/)

View File

@ -1,25 +1,31 @@
--- ---
title: Inkscape title: Inkscape
category: Apps category: Apps
layout: 2017/sheet
tags: [WIP]
--- ---
### All ### All
- = - Zoom in/out | `-` _/_ `=` | Zoom in/out
3 4 - Zoom to selection / drawing | `3` _/_ `4` | Zoom to selection / drawing
5 6 - Zoom to page / page width | `5` _/_ `6` | Zoom to page / page width
{: .-shortcuts}
### Select tool (F1) ### Select tool (F1)
[ ] - Rotate | `[ ]` | Rotate
{: .-shortcuts}
### Edit path (F2) ### Edit path (F2)
Ctrl - constraint | `Ctrl` | constraint
{: .-shortcuts}
Dragging an anchor handle ### Dragging an anchor handle
ctrl - snap to 15 degrees | `Ctrl` | snap to 15 degrees
alt - ? | `Alt` | ?
{: .-shortcuts}
### Bezier (Shift F6) ### Bezier (Shift F6)

View File

@ -1,6 +1,7 @@
--- ---
title: Sublime Text title: Sublime Text
category: Apps category: Apps
layout: 2017/sheet
--- ---
### Select & Expand ### Select & Expand
@ -9,22 +10,20 @@ category: Apps
| `⌘ L` | select current line (repeat to include next line) | | `⌘ L` | select current line (repeat to include next line) |
| `⌘ ⇧ A` | select text inside tag (repeat to expand) | | `⌘ ⇧ A` | select text inside tag (repeat to expand) |
| `Ctrl ⇧ M` | select to curly or angle brackets (repeat to expand) | | `Ctrl ⇧ M` | select to curly or angle brackets (repeat to expand) |
{:.shortcuts} {: .-shortcuts}
_Replace ⌘ with Ctrl on Windows and Linux._ Replace ⌘ with Ctrl on Windows and Linux.
### Code Folding ### Code Folding
| `⌘ Option [` | fold closest block | | `⌘ Alt [` | fold closest block |
| `⌘ Option ]` | unfold closest block | | `⌘ Alt ]` | unfold closest block |
| `⌘ K, ⌘ 1` | fold all first level code blocks | | `⌘ K` `⌘ 1` | fold all first level code blocks |
| `⌘ K, ⌘ 2` | fold all second level code blocks | | `⌘ K` `⌘ 2` | fold all second level code blocks |
| `⌘ K, ⌘ 3 (etc)` | fold all third level code blocks (etc) | | `⌘ K` `⌘ 3 (etc)` | fold all third level code blocks (etc) |
| `⌘ K, ⌘ T` | fold all HTML attributes | | `⌘ K` `⌘ T` | fold all HTML attributes |
| `⌘ K, ⌘ 0` | unfold everything | | `⌘ K` `⌘ 0` | unfold everything |
{:.shortcuts} {: .-shortcuts}
_Replace ⌘ with Ctrl on Windows and Linux._
### Goto ### Goto
@ -32,14 +31,13 @@ _Replace ⌘ with Ctrl on Windows and Linux._
| `⌘ P, :` | goto line number (enter number after `:`) | | `⌘ P, :` | goto line number (enter number after `:`) |
| `⌘ P, #` | goto and list fuzzy-matches of string (enter characters after `#`) | | `⌘ P, #` | goto and list fuzzy-matches of string (enter characters after `#`) |
| `⌘ P, @` | goto and list symbol (begin typing symbol name after `@`) | | `⌘ P, @` | goto and list symbol (begin typing symbol name after `@`) |
{:.shortcuts} {: .-shortcuts}
_Replace ⌘ with Ctrl on Windows and Linux._
### Command line ### Command line
Use `subl` to open files in Sublime from the terminal.
```sh ```sh
$ subl . $ subl .
$ subl README.md $ subl README.md
``` ```
Use `subl` to open files in Sublime from the terminal.