| original |
|---|
Hacking Tools Cheat Sheet, v2.0, August 2023, Compass Security, https://compass-security.com
v2.0, September 2023, Compass Security https://www.compass-security.com
| @media (prefers-color-scheme: dark) { | |
| :root { | |
| color-scheme: light dark; | |
| --bg: #21272B; | |
| --fg: #BBC; | |
| --bg-light: #FFF2; | |
| --bg-dark: #0002; | |
| --fg-dark: #BBCD; | |
| --fg-light: #BFBFCF; |
| /* mysku-dark.css (by Qwen-coder) */ | |
| @media (prefers-color-scheme: dark) { | |
| :root { | |
| color-scheme: light dark; | |
| /* Основные цвета темной темы */ | |
| --bg-body: #1e1e1e; /* Основной фон страницы */ | |
| --fg-text: #dcdcdc; /* Основной цвет текста */ | |
| --fg-muted: #a0a0a0; /* Приглушенный текст */ | |
| --border: #444; /* Цвет границ */ | |
| --bg-card: #2d2d2d; /* Фон карточек, блоков */ |
| #!/usr/bin/awk -f | |
| # | |
| # AWK script to convert dircolors configuration file | |
| # to LS_COLORS environment variable. | |
| # | |
| # Reads a dircolors-style file (e.g., ~/.dir_colors or /etc/DIR_COLORS) | |
| # and outputs an 'export LS_COLORS="..."' command. | |
| # | |
| # Can be used as an alternative to the 'dircolors' utility for `busybox`. | |
| # |
| // ==UserScript== | |
| // @name Умный Переводчик (Via) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 6.2.1 | |
| // @description Фикс позиционирования над панелью браузера | |
| // @match *://*/* | |
| // @grant GM_xmlhttpRequest | |
| // @connect * | |
| // ==/UserScript== |
| original |
|---|
v2.0, September 2023, Compass Security https://www.compass-security.com
| javascript: Promise.all([ | |
| import('https://esm.run/turndown'), | |
| import('https://esm.run/@mozilla/readability'), | |
| import('https://esm.run/turndown-plugin-gfm') | |
| ]).then( ([ | |
| {default: Turndown}, | |
| {Readability}, | |
| {gfm}]) => { | |
| const a=document.createElement('a'), | |
| options = {classesToPreserve: ['block-code',]}, |
| // ==UserScript== | |
| // @name Dark Introvert | |
| // @namespace https://viayoo.com/ | |
| // @version 0.3 | |
| // @description fastest and simplest dark theme invertor. | |
| // @author mitry | |
| // @run-at document-start | |
| // @grant GM_addStyle | |
| // @match https://ru.m.wiktionary.org/w/* | |
| // @match https://pda.tv.yandex.ru/* |
| # @(#) ~mitry/mkshrc for MkSh on Android | |
| # @url https://termbin.com/b8fn -- 2023-04-28 version | |
| # @url https://snippet.host/hzhrsr | |
| # If not running interactively, don't do anything | |
| [[ -o interactive ]] || return | |
| # [[ $- != *i* ]] && return | |
| # Prettify error messages: | |
| (( ${#0} > 10 )) && exec -a mksh $0 "$@" |