View wanikani-spacier-reviews.user.css
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
@-moz-document domain("wanikani.com") { | |
:root { | |
--color-quiz-srs-correct-background: var(--color-quiz-correct-background); | |
} | |
.character-header__menu, | |
.character-header__characters { | |
margin-bottom: var(--spacing-xxxloose); | |
} |
View australis-for-lepton.userChrome.css
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
.tabbrowser-tab { | |
--tab-corner-rounding: 30px; | |
--toolbar-color: transparent; | |
overflow: visible !important; | |
} | |
/* Fix left curve display on first tab */ | |
#tabbrowser-arrowscrollbox:not([overflowing="true"]) .titlebar-spacer { | |
margin-inline-end: -15px; |
View gptman.sh
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 | |
# 2022 Alexander Pushkov, licensed ISC | |
# Usage: gptman curl in humorous style | |
set -e | |
OPENAI_API_KEY='...' | |
mandir="$(mktemp -d gptman.XXXXXX)" | |
trap "rm -rf ${mandir}" EXIT HUP INT QUIT TERM | |
man="${mandir}/page" |
View xbar-tailscale.10s.sh
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 | |
# WTFPL | |
tsp=(/opt/homebrew/bin/tailscale --socket ~/.tailscaled.socket) | |
jq() { | |
/opt/homebrew/bin/jq "$@" | |
} | |
status_json="$("${tsp[@]}" status --json)" |
View tabler-apexcharts.svelte
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
<script lang="ts"> | |
import ApexCharts from "apexcharts"; | |
let chartCpu: HTMLDivElement | null; | |
$: if (chartCpu) { | |
new ApexCharts(chartCpu, { | |
// styling | |
chart: { | |
type: "area", |
View ozon-sanity.user.css
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
@-moz-document url("https://www.ozon.ru/") { | |
.container, | |
[data-widget="paginator"] { | |
display: none; | |
} | |
#stickyHeader { | |
flex-direction: column; | |
gap: 3em; | |
margin-block: 3em; |
View we_make_redirects.py
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
from wemake_python_styleguide.violations import system, naming, complexity, consistency, best_practices, refactoring, oop | |
REDIR_TEMPLATE = "/{full_code} https://wemake-python-styleguide.readthedocs.io/en/latest/pages/usage/violations/{group_name}.html#{full_group_name}.{name}" | |
violation_groups = { | |
"system": system, | |
"naming": naming, | |
"complexity": complexity, | |
"consistency": consistency, |
View outline-keygen.sh
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 | |
set -euo pipefail | |
fb="$(tput bold)" | |
fn="$(tput sgr0)" | |
log() { | |
echo "$1" > /dev/stderr | |
} |
View tic_tac_toe.py
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
# Prompt: | |
"""A tic-tac-toe game.""" | |
# Everything down below is autocompleted: | |
def print_board(board): | |
"""Prints the board.""" | |
print(board[0] + ' | ' + board[1] + ' | ' + board[2]) | |
print('---------') |
NewerOlder