vim ~/.aws/config
[profile dev]
sso_session = dev
sso_account_id = XXXXXXXXXXXX
// ==UserScript== | |
// @name Disable Jira Click Edit | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Disable click edit in Jira issue descriptions | |
// @author fanuch | |
// @match https://*.atlassian.net/browse/* | |
// @match https://*.atlassian.net/jira/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=atlassian.net | |
// @grant none |
/* Goldbach's conjecture in JavaScript | |
* | |
* author: Igor Hercowitz | |
*/ | |
function isPrime(n) { | |
if (n % 2 === 0) return false; | |
var sqrtn = Math.sqrt(n)+1; |
Problem: When linking to the raw version of a gist, the link changes with each revision.
Solution:
To return the first file from a gist: https://gist.github.com/[gist_user]/[gist_id]/raw/
To get a file from multi–file gist: https://gist.github.com/[gist_user]/[gist_id]/raw/[file_name]
#!/usr/bin/env node | |
const FileHound = require('filehound'); | |
const fs = require('fs'); | |
const files = FileHound.create() | |
.paths('./application') | |
.ext('ftlh') | |
.find(); |
Basic npx script template.
key.replace(new RegExp('^.+\.', ''), '.') // e.g. "ab.qwerty" => ".qwerty" |
Abbreviation | Description | Template text |
---|---|---|
cl | Insert console.log | console.log($PARAM$)$END$ |
clc | Insert console.log with colors | console.log('%cLOG: $NAME$', 'background: #222; color: $COLOR$', $NAME$)$END$ |
cls | Insert console.log with colors and selected text added as parameter | console.log('%cLOG: $SELECTION$', 'background: #222; color: $COLOR$', $SELECTION$)$END$ |
fun | Inserts function expression | function($PARAM$) { $END$ } |
[user] | |
useConfigOnly = true | |
# [includeIf "gitdir:~/Projects/company1/"] | |
# path = ~/Projects/company1/.gitconfig | |
[alias] | |
# add all | |
aa = add . |