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
# requires: 256 color terminal | |
/script install iset.pl | |
/script install buffers.pl | |
/script install colorize_nicks.py | |
/set weechat.look.buffer_notify_default message | |
/set weechat.look.color_nick_offline on | |
/set weechat.look.prefix_action " •" | |
/set weechat.look.prefix_join "▬▶" |
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
var labels = []; | |
[].slice.call(document.querySelectorAll(".label-link")) | |
.forEach(function(element) { | |
labels.push({ | |
name: element.textContent.trim(), | |
description: element.parentElement.nextElementSibling.textContent.trim(), | |
// using style.backgroundColor might returns "rgb(...)" | |
color: element.getAttribute("style") | |
.replace("background-color:", "") | |
.replace(/color:.*/,"") |
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
""" | |
Exports issues from a list of repositories to individual csv files. | |
Uses basic authentication (Github username + password) to retrieve issues | |
from a repository that username has access to. Supports Github API v3. | |
Forked from: unbracketed/export_repo_issues_to_csv.py | |
""" | |
import argparse | |
import csv | |
from getpass import getpass | |
import requests |
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
<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<HTML> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<Title>Bookmarks</Title> | |
<H1>Bookmarks</H1> | |
<DT><A HREF="javascript:(function%20()%20%7B%20var%20css%20=%20'html%20%7B-webkit-filter:%20invert(100%25);'%20+%20'-moz-filter:%20invert(100%25);'%20+%20'-o-filter:%20invert(100%25);'%20+%20'-ms-filter:%20invert(100%25);%20%7D%20img%20%7B-webkit-filter:%20invert(100%25);'%20+%20'-moz-filter:%20invert(100%25);'%20+%20'-o-filter:%20invert(100%25);'%20+%20'-ms-filter:%20invert(100%25);%20%7D%20video%20%7B-webkit-filter:%20invert(100%25);'%20+%20'-moz-filter:%20invert(100%25);'%20+%20'-o-filter:%20invert(100%25);'%20+%20'-ms-filter:%20invert(100%25);%20%7D%20html%20%7B%20background-color:%20transparent;%20%7D';%20var%20head%20=%20document.getElementsByTagName('head')%5B0%5D;%20var%20style%20=%20document.createElement('style');%20if%20(!window.counter)%20%7B%20window.counter%20=%201;%20%7D%20else%20%7B%20window.counter++;%20if%20(window.counter%20%25%20 |
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
version: "3.6" | |
services: | |
btcgbp: | |
container_name: "BTC-GBP" | |
image: "ghcr.io/whittlem/pycryptobot/pycryptobot:latest" | |
restart: always | |
volumes: | |
- /home/ubuntu/docker/market/BTC-GBP/config.json:/app/config.json | |
- /home/ubuntu/docker/market/BTC-GBP/pycryptobot.log:/app/pycryptobot.log | |
- /home/ubuntu/docker/market/BTC-GBP/graphs:/app/graphs |
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
blueprint: | |
name: Winter Heating Control | |
description: Control your heating with options for person home, if temp is below a specific value, set temp, and heating between specific times. | |
domain: automation | |
input: | |
heating: | |
name: Climate Device | |
description: The climate device to use. | |
selector: | |
entity: |
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
blueprint: | |
name: Heating Control | |
description: Control your heating with options for person home, if temp is below a specific value, set temp, and heating between specific times. | |
domain: automation | |
input: | |
heating: | |
name: Climate Device | |
description: The climate device to use. | |
selector: | |
entity: |
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
{ | |
"terminal.integrated.fontFamily": "MesloLGS Nerd Font Mono", | |
"editor.fontFamily": "Meslo LGS Nerd Font Mono, Menlo, Monaco, 'Courier New', monospace", | |
"sync.gist": "d5c3f1e29cec4ade45c3f7529b0b684f", | |
"editor.renderControlCharacters": true, | |
"editor.wordWrap": "on", | |
"terminal.integrated.automationShell.linux": "", | |
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\wsl.exe", | |
"editor.fontSize": 13, | |
"terminal.integrated.fontSize": 12, |
OlderNewer