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
# this snippet makes http request to website with random sentence generator
# special thanks for hard work to the creators of "https://randomword.com" - these sentences are great!
from bs4 import BeautifulSoup
import requests
exitflag = False
while not exitflag:
website = requests.get( "https://randomword.com/sentence" )
infosoup = BeautifulSoup( randomMessageWebpage.content, 'html.parser' )
// Sarverott @ 2023
// to downolad old swf source files
x=document.querySelector("ruffle-object").attributes["data"].nodeValue;
open(x, '__blank');
#!/bin/sh
# written to transfer big audiobook library
find . -type d -maxdepth 1 -not -name "." -exec sh -c "zip -r \$(echo {} | tr ' ' '_').zip \"{}\" " \;
# it seams handy in future
#!/bin/sh
echo "RDP server prepare"
echo "exclusive access subnet IP address (or single IP, 127.0.0.1):"
read accessIp
echo "subnet mask length (32 if exclusive for only one host):"
read accessMask
echo "port (default is 3389):"
read accessPort
#!/bin/sh
sudo apt purge npm --auto-remove
sudo apt purge nodejs --auto-remove
sudo rm -f $( whereis node | sed -n -e 's/^.*node: //p' )
sudo apt install npm nodejs
sudo npm install -g n
//espesialy helpfull to extract large amounts of google dorked objects to research
console.log(
Array.from(
document.querySelectorAll(".yuRUbf a")
).filter(
(x)=>!x.href.includes("google")
).map(
(x)=>x.href
).join("\n")
@Sarverott
Sarverott / dimmu-brightir.ino
Last active September 5, 2023 09:36
Simple dimmer controlled with push buttons, using Digispark ATtiny85 and IRFZ44VPbF Power MOSFET for 12v LEDs
/*
Simple dimmer controlled with buttons
Sarverott @ 2023
https://gist.github.com/Sarverott/3b352c6c3fe1c3d13f3faf642cc3b23c
this project ingredients:
- digispark board {
ATtiny85 :: [ Flash memory = 8kb ; frequency = 16MHz ]
Board operational voltage = 5V
var result=[];
document.querySelectorAll(".table-container table tr").forEach(function(x){
var currentRow=[];
x.childNodes.forEach(function(y){
if(y.nodeType==1){
currentRow.push(y.innerText)
}
})
result.push(currentRow);
});
@Sarverott
Sarverott / randomNoiseTones.ino
Created July 17, 2023 02:26
project for digispark with Atmel ATTiny85, makes random noise, every pin (0-5) have to be conected with speaker or piezo
int randomSound, delayPeriod;
void setup() {
}
void loop() {
delayPeriod=random(1,10);
for(int pin=0;pin<6;pin++){
randomSound=random(20,1000);
noTone(pin);
@Sarverott
Sarverott / image-renamer.bat
Last active April 10, 2023 17:38
simple script to rename long-named images from camera or download directory [[[ **WARNING:** errors or infinite loop possibility ]]]
rem Sett Sarverott @ 2017
rem image-renamer.bat [from-directory-path] [to-directory-path] [extension-without-dot]
rem ###
rem example of use: START /w /b .\image-renamer.bat E:\path\from\camera-files-with-long-names E:\path\to\camera-files-with-long-names jpg
dir /b "%1" >".\_picture-list.txt"
set picturecounter=1
pause
:g