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
Total toots: 2572 (excluding replies & boosts) | |
Toots per day: 2.66 (account created 966 days ago) | |
Ratio toots/replies: 3.00 | |
New followers per day: 0.15 | |
New followings per day: 0.18 | |
Likes per toot: 0.44 (total likes: 1140) | |
Boosts per toot: 0.15 (total boosts: 377) | |
Replies per toot: 0.42 (total replies: 1078) | |
┌──────────────────────────┬──────────────┐ |
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
fc -3 0 |
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 | |
# This shows new Viedoclips. Script is tested with Kubuntu 20.04 and uses notify-send Popup-Window | |
# edit dl-folder for your needs | |
#It does not fail if nothing pops up. there was propably no fresh Video in the last 4 hours. | |
#If you want to be remembered regulary there is this line for your user crontab : | |
#0 * * * * XDG_RUNTIME_DIR=/run/user/$(id -u) /home/foo/bin/yt-dl-send-notify.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
/* | |
Analog input, analog output, serial output | |
2 Punktregler mit Hysterese | |
*/ | |
// These constants won't change. They're used to give names | |
// to the pins used: | |
const int analogInPin = A0; // Analog input pin that the poti is attached to |
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 | |
u=$(curl -X 'GET' \ | |
'https://wetter.hs-worms.de/api/v3/data' \ | |
-H 'accept: application/json') | |
temperatur=$(echo $u|jq ".temperature.out") | |
vorhersage=$(echo $u|jq '.forecast.rule') | |
barometer=$(echo $u|jq '.baro') | |
regenrate=$(echo $u|jq '.rain.rate') |
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
# alphsbetisch sortiert | |
w3m -dump -no-cookie -X https://www.worms-erleben.de/erleben/search/?searchTerm=klima| grep -o '\w*[K,k]lima\w*' | sort | uniq -c | |
# nach Vorkommen sortieren | |
w3m -dump -no-cookie -X https://www.worms-erleben.de/erleben/search/?searchTerm=fahrrad| grep -o '\w*Fahrr[a,ä]d\w*' | sort | uniq -c | sort -gr |
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
firefox https://www.bild.de/ -P screenshot --screenshot ~/Downloads/bild.png ; tesseract -l deu ~/Downloads/bild.png bild ; grep -E '[F,f]rau' bild.txt | |
# erweitert . noch mehr Frau | |
firefox https://www.bild.de/ -P screenshot --screenshot ~/Downloads/bild.png ; tesseract -l deu ~/Downloads/bild.png bild ; grep -E '[F,f]rau|Mädchen|Oma|Uroma|[N,n]utte|Prostituierte|[M,m]utter |[M,m]ama' bild.txt |
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
#include <Mouse.h> | |
// constants won't change. They're used here to set pin numbers: | |
const int buttonPin = 2; // the number of the pushbutton pin | |
const int ledPin = 13; // the number of the LED pin | |
//Bash example: xeyes -geometry 200x200+100+100 | |
// variables will change: | |
int buttonState = 0; // variable for reading the pushbutton status |
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
# Get the last modification time of the file in seconds | |
last_modified=$(stat -c "%Y" $file) | |
# Read the previous value from ~/temp/letzter.txt | |
previous_modified=$(cat ~/temp/letzter.txt) | |
# Compare the last and previous values | |
if [ $last_modified -gt $previous_modified ]; then | |
echo "The file has changed" | |
else |
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
/********* | |
Rui Santos | |
Complete project details at https://randomnerdtutorials.com | |
Now with sensor for soil-humidity Pin 34 | |
Stefan Höhn | |
*********/ | |
// Import required libraries | |
#include "WiFi.h" | |
#include "ESPAsyncWebServer.h" |