https://github.com/zsh-users/zsh-completions/blob/master/zsh-completions-howto.org
This file contains 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
:root { | |
--nord0_rgb: #2e3440; | |
--nord0: 220, 16%, 22%; | |
--nord1_rgb: #3b4252; | |
--nord1: 222, 16%, 28%; | |
--nord2_rgb: #434c5e; | |
--nord2: 220, 17%, 32%; |
This file contains 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 | |
# usage secretapikey=sk1_xxx apikey=pk1_xxx ./autodns.sh | |
set -eo pipefail | |
IFS=$'\n\t' | |
# passed as env var, see usage | |
readonly secretapikey=$secretapikey | |
readonly apikey=$apikey | |
set -u | |
MY_DOMAIN_NAME_RECORD='domainname.com/ID' |
To use this simply create a new bookmark and copy past the code in the url field. Then you only need to click on the bookmark to execute the script.
javascript: (function () {
if (document.children[0].style['filter']) {
document.children[0].style['filter'] = ''
} else {
document.children[0].style['filter'] = 'invert(100%) hue-rotate(180deg)'
}
This file contains 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
{ | |
"powermode.enabled": true, | |
"powermode.enableStatusBarComboTimer": false, | |
"powermode.enableShake": false, | |
"powermode.customExplosions": [ | |
"https://i.imgur.com/iDcBoNm.gif", | |
], | |
"powermode.explosionOrder": "sequential", | |
"powermode.explosionSize": 19, | |
"powermode.explosionFrequency": 1, |
This file contains 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
const path = require('path') | |
const exec = require('child_process').exec | |
exports.helpers = { | |
cli: (args = []) => { | |
return new Promise((resolve) => { | |
exec( | |
`node ${path.resolve('./src/app.js')} ${args.join(' ')}`, | |
{ cwd: '.' }, | |
(error, stdout, stderr) => { | |
resolve({ |
Those two bookmarklet allows you to export the content of your funretro board as markdown and empty your board.
To use them simply create a new bookmark and copy past the code in the url field. Then you only need to click on the bookmark to execute the script.
javascript: !function(){const e=window.location.pathname.split("/")[3],t=e=>{let t,n="";Object.values(e).sort((e,t)=>e.type.id-t.type.id).map(e=>{t!==e.type.id&&(t=e.type.id,n+=`\n###Column ${e.type.id}:\n`),cardContent=e.text+` **+${(e=>e.votes?Object.values(e.votes).reduce((e,t)=>e+t):0)(e)}**`,n+=`- ${cardContent}\n`}),(e=>{const t=document.createElement("textarea"),n=document.getSelection();t.textContent=e,document.body.appendChild(t),n.removeAllRanges(),t.select(),document.execCommand("copy"),n.removeAllRanges(),document.body.removeChild(t)})(n)};(async()=>{t(await(async()=>(await firebase.database().ref(`/mess
This file contains 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
.container { | |
margin: 0 auto; | |
min-height: 100vh; | |
display: flex; | |
flex-direction: column; | |
justify-content: center; | |
align-items: center; | |
text-align: center; | |
} | |
.section { |
This file contains 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
<template> | |
<div class="container"> | |
<logo /> | |
<div v-for="section in sections" class="section"> | |
<h1 class="title"> | |
{{ section.title }} | |
</h1> | |
<h2 class="subtitle"> | |
{{ section.paragraph }} |
NewerOlder