Skip to content

Instantly share code, notes, and snippets.

View Sarverott's full-sized avatar
💭
I may be slow to respond.

Sett Sarverott Sarverott

💭
I may be slow to respond.
View GitHub Profile
const CSS_SELECTOR = {
displayed_chat: ".x78zum5.xdt5ytf.x1iyjqo2.x6ikm8r.x1odjw0f.xish69e.x16o0dkt",
message_block: "div.x78zum5.xdt5ytf.x1n2onr6[role]"
}
function scrollingToCheckPast( docHook = CSS_SELECTOR.displayed_chat ){
document.querySelectorAll( // szuka WSZYSTKICH
docHook // selektor CSS ()
)[ 1 ].scrollTo(0,0) // scrolling do góry, wtedy ładuje
}
function getOutput( docHook = CSS_SELECTOR.message_block ){
[canon]
name=Crovley
repo=https://gist.github.com/a1d6bb152f628c718cc36fbea6e99e91.git
[version]
G = 0
R = 9
I = 1
H = 0
[deploy]
@Sarverott
Sarverott / .overlord.ini
Last active February 26, 2025 19:27
overlord default setup
[self]
mode = support
scope = local
target = %CWD%
type = project
setup = default
@Sarverott
Sarverott / kodowania-huffmana.ipynb
Last active December 17, 2024 13:38
kodowania-huffmana.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

another spontainous gist

again from resolving problem by using browser, it's devtools and js live console

today while trying new software for me, "Logwatch" common tool for work with logs I had problem to read through content of html raport and i was curious whith daemons are printed.

about Logwatch: https://ubuntu.com/server/docs/how-to-install-and-configure-logwatch

I used these commands to bring raport and show it in browser

function mergeIgnorotronsFiles(...gitignoresContent) {
return [
...new Set(
gitignoresContent
.join("\n")
.split("\n")
.filter((x) => x.charAt(0) != "#")
.map((x) => x = x.trim())
.filter((x) => x)
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>test of color pallet printing</title>
</head>
<body>
<!-- styles -->
<style>
@Sarverott
Sarverott / _verymessy-payload-o-execution-o-script-o-inator.py
Created December 13, 2023 23:57
good mood charm. this script is just as training for fun. it works, but it's not pretty, and it can suddenly autodestruct itself!
import subprocess
from os import path, system, remove
import sys
gitBashScript="""#!/usr/bin/env bash
case $1 in
"log") git -C "$2" log | cat ;;
"status") git -C "$2" status -s ;;
"add") git -C "$2" add * ;;
# sample for playing with android debugging stuff
from ppadb.client import Client as AdbClient
#client = AdbClient(host="127.0.0.1", port=5037)
client = AdbClient() # default is thesame as above
devList = client.devices()
#print(dev[0].__dict__) # see what we got here
@Sarverott
Sarverott / _move-all-files-with-conditional-filename-changes.py
Last active December 11, 2023 13:01
Casual common thing, spontanously uploaded for educational reasons, for new programmers to learn. NOTE: Variable names, function names and comments should be in english for more official impression and professional code cleanliness! My use of polish is politeness.
#!/usr/bin/python3
# ten poczatek "#!/usr/bin/python3" jest dla linuxa, mowi mu jakiego interpretera uzyc,
# wtedy w terminalu mozna zamiast "python3 skrypt.py" uruchomic go piszac "./skrypt.py"
# zwyczajny kod zycia codziennego, spontanicznie upubliczniony w celach edukacyjnych,
# aby nowi programiści mogli sie zainspirowac. UWAGA: Nazwy zmiennych, nazwy funkcji
# i komentarze powinny byc w języku angielskim, jesli chcemy zapewnic bardziej oficjalne
# wrazenie i dla profesjonalnej czystosci kodu