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/env python3 | |
import requests | |
import json | |
import subprocess | |
import time | |
import sys | |
dns_cloudflare_email = '[email protected]' | |
dns_cloudflare_api_key = 'YOUR_API_KEY_HERE' |
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
package doh | |
import ( | |
"encoding/base64" | |
"errors" | |
"io" | |
"net/http" | |
"time" | |
"github.com/miekg/dns" |
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
augroup nord-theme-overrides | |
autocmd! | |
" `:hi Comment` to check current color for Comment (default is #616e88) | |
" 5% brighter #6d7a96, 10% brighter #7b88a1 from https://github.com/arcticicestudio/nord-emacs/issues/43 | |
autocmd ColorScheme nord highlight Comment cterm=italic ctermfg=14 guifg=#6d7a96 | |
" Folded by default is #4C566A, which is too dark to recognize. | |
autocmd ColorScheme nord highlight Folded cterm=italic,bold guifg=#576279 | |
augroup END | |
colorscheme nord |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"os" | |
"os/exec" | |
"path" | |
"strings" | |
"sync" |