create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
ACCOUNT_ID="YOUR_ACCOUNT_ID" | |
GROUP_ID="YOUR_ACCESS_GROUP_ID" | |
GROUP_NAME="YOUR_ACCESS_GROUP_NAME" | |
API_TOKEN="YOUR_CLOUDFLARE_API_KEY" | |
IP_ADDRESS=$(curl -s https://api.ipify.org) | |
curl --request PUT \ | |
--url https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/access/groups/$GROUP_ID \ | |
--header 'Content-Type: application/json' \ |
let comma = ''; for (const cf of document.querySelectorAll('.class a')) { comma += `${cf.innerHTML},` }; console.log(comma); |
{ | |
"title": "Backslash to Delete Unless Held", | |
"rules": [ | |
{ | |
"description": "Change the backslash key to be delete unless it's held down, then show backslash as normal.", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "backslash" | |
}, |
{ | |
"comment": "This is the settings file for the SVGO Compressor Plugin. For more info, please check <https://github.com/BohemianCoding/svgo-compressor>", | |
"pretty": true, | |
"indent": 2, | |
"floatPrecision": 3, | |
"plugins": [ | |
{ | |
"name": "removeDoctype", | |
"enabled": true | |
}, |
#!/usr/bin/env bash | |
# GIT hook to run a command after `git pull` if a specified file was changed | |
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
check_run() { | |
echo "$changed_files" | grep --quiet "$1" && eval "$2" | |
} |
include mixin.pug | |
+navigation_li('Anchor text here', { | |
a_class: 'c-main-navigation__link', | |
li_class: 'active' | |
}) | |
+navigation_li('More anchor text here', { | |
a_class: 'c-main-navigation__link' | |
}) |
- name: Run npm install | |
command: npm install | |
connection: local | |
args: | |
chdir: "{{ project.local_path }}/web/app" | |
tags: skip-using-ci | |
- name: Rebuild Node Sass | |
command: npm rebuild node-sass | |
connection: local |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
$font-name: 'GT-Walsheim'; | |
$font-path: '../fonts/'; | |
$weights: ( | |
400 'Regular', |
{ | |
"auto_indent": true, | |
"binary_file_patterns": | |
[ | |
"*.bz2", | |
"*.dds", | |
"*.eot", | |
"*.gif", | |
"*.gz", | |
"*.ico", |