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
# 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' ) |
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
// Sarverott @ 2023 | |
// to downolad old swf source files | |
x=document.querySelector("ruffle-object").attributes["data"].nodeValue; | |
open(x, '__blank'); |
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/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 |
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/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 |
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/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 |
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
//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") |
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
/* | |
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 |
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
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); | |
}); |
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
int randomSound, delayPeriod; | |
void setup() { | |
} | |
void loop() { | |
delayPeriod=random(1,10); | |
for(int pin=0;pin<6;pin++){ | |
randomSound=random(20,1000); | |
noTone(pin); |
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
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 |