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: Update robots.txt | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
env: | |
# the path to your robots.txt file | |
ROBOTS_PATH: robots.txt |
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
// ==UserScript== | |
// @name Gitpod Fullscreen | |
// @namespace https://gitpod.io/ | |
// @version 0.1 | |
// @description Make Gitpod fullscreen, for Android-based development | |
// @author Lina | |
// @match https://*.gitpod.io/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=gitpod.io | |
// @grant GM_getResourceText | |
// @grant GM_addStyle |
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
@font-face { | |
font-family: 'Fira Code'; | |
src: url('https://cdn.jsdelivr.net/npm/[email protected]/distr/woff2/FiraCode-Light.woff2') format('woff2'), | |
url("https://cdn.jsdelivr.net/npm/[email protected]/distr/woff/FiraCode-Light.woff") format("woff"); | |
font-weight: 300; | |
font-style: normal; | |
} | |
@font-face { | |
font-family: 'Fira Code'; |
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
{ | |
"Board": "raytac_mdbt50q_rx", | |
"Shield": "slicemk_ergodox_dongle", | |
"Layers": [ | |
{ | |
"Name": "Pop", | |
"Notes": "", | |
"Keys": [ | |
{ | |
"Name": "", |
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 | |
dir=$(pwd)/$1 | |
if [[ $1 = /* ]]; then | |
dir=$1 | |
fi | |
regex='s/\([a-z0-9]\)\([A-Z]\)/\1_\2/g;s/\([A-Z0-9]\)\([A-Z0-9]\)\([a-z]\)/\1_\2\3/g;s/\(.*\)/\L\1/g' |