Keyboard Command | Description |
---|---|
Command + Tab | Move window |
Command + Tab + Shift | Move window - Reverse |
Command + / | Full screen(back from Full screen) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Data::Dumper; | |
use Getopt::Long; | |
use Pod::Usage; | |
use DigitalOcean; | |
my $client_id = $ENV{DIGITALOCEAN_CLIENT_ID}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: install perl with perlenv | |
script: perlenv.sh | |
- name: copy cpanfile to /tmp/ | |
copy: src=cpanfile dest=/tmp/cpanfile | |
- name: install modules | |
script: install_with_cpanm.sh | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
requires 'DigitalOcean', 0.08; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PLENV_ROOT=/opt/perl5 | |
export PATH="$PLENV_ROOT/bin:$PATH" | |
eval "$(plenv init -)" | |
cd /tmp | |
if [[ -e 'cpanfile' ]] | |
then | |
cpanm --installdeps . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PLENV_ROOT=/opt/perl5 | |
if [[ ! -e $PLENV_ROOT ]];then | |
mkdir -p /opt/perl5 | |
git clone git://github.com/tokuhirom/plenv.git $PLENV_ROOT | |
git clone git://github.com/tokuhirom/Perl-Build.git $PLENV_ROOT/plugins/perl-build/ | |
$PLENV_ROOT/bin/plenv install 5.18.2 | |
$PLENV_ROOT/bin/plenv rehash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"retainLines": true, | |
"compact": true, | |
"comments": false, | |
"whitelist": [ | |
"es6.arrowFunctions", | |
"es6.blockScoping", | |
"es6.classes", | |
"es6.constants", | |
"es6.destructuring", |
Keyboard Command | Description |
---|---|
Command + i | Show hints |
Command + c | Copy |
Command + v | Paste |
Command + r | Reload |
Control + p | Scroll up |
Control + n | Scroll down |
Command + [ | Go back |
Command + ] | Go forward |
Keyboard Command | Description |
---|---|
Command + s | Save file |
Command + c | Copy |
Command + v | Paste |
Control + Tab | Change file |
Command + w | Close file |
Command + n | Open new file |
Keyboard Command | Description |
---|---|
Command + f | Search a word |
Command + c | Copy |
Command + v | Paste |
Command + r | Reload *Try when Terminal is hung |