Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
// Allows: | |
// funkyParser() | |
module.exports = function createFunkyParser(opt) { | |
return new FunkyParser(opt) | |
} | |
function FunkyParser(opt) { | |
// make params optional | |
opt = opt || {} |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
by alexander white ©
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
A file below this one contains the steps for doing this with Travis CI. However, these days I recommend GitHub Actions, for the following reasons:
Hi guys! Since I started to write Bluebox-ng I've been tracking the different security projects I found written in Node.js. Now we've published the first stable version we think it's the right moment to speak among us (and, of course, everyone interested in it :).
In React's terminology, there are five core types that are important to distinguish:
React Elements
default coreos | |
prompt 1 | |
timeout 15 | |
display boot.msg | |
label coreos | |
menu default | |
kernel http://<your_server_name>/coreos_production_pxe.vmlinuz | |
append initrd=http://<your_server_name>/coreos_production_pxe_image.cpio.gz cloud-config-url=http://<your_server_name>/cloud-config.yml |
I've been using a lot of Ansible lately and while almost everything has been great, finding a clean way to implement ansible-vault wasn't immediately apparent.
What I decided on was the following: put your secret information into a vars
file, reference that vars
file from your task
, and encrypt the whole vars
file using ansible-vault encrypt
.
Let's use an example: You're writing an Ansible role and want to encrypt the spoiler for the movie Aliens.
{ | |
"id": 1, | |
"number": "1", | |
"status": null, | |
"started_at": null, | |
"finished_at": null, | |
"status_message": "Passed", | |
"commit": "62aae5f70ceee39123ef", | |
"branch": "master", | |
"message": "the commit message", |