Skip to content

Instantly share code, notes, and snippets.

@kielerrr
kielerrr / send.py
Last active February 26, 2025 21:55
CRSF Packet Sender
import time
import csv
import threading
import sys
import serial
import time
usb_port = "/dev/ttyUSB1"
baudrate = 115200
Usage...
Vcxsrv [:<display>] [option]
:display-number
Vcxsrv runs as the given display-number, which defaults to 0.
To run multiple instances, use unique display-numbers.
-a # default pointer acceleration (factor)
-ac disable access control restrictions
-audit int set audit trail level
@kielerrr
kielerrr / GoogleDorking.md
Last active February 14, 2022 18:28 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
@kielerrr
kielerrr / watch-http-linux.sh
Last active September 2, 2021 14:47
watch http nginx docker
# -c color; -d shows differences in updates -n seconds
watch -c -d -n 1 "netstat -tulpn | grep -E 'http|docker|nginx|apache|http|80|443'"
@kielerrr
kielerrr / Dockerfile
Created April 5, 2021 17:12 — forked from ibnesayeed/Dockerfile
Dockerize Your Projects: An example to illustrate basic Dockerization
FROM python
LABEL maintainer="Sawood Alam <@ibnesayeed>"
RUN pip install beautifulsoup4
RUN pip install requests
COPY main.py /app/
WORKDIR /app
RUN chmod a+x main.py
ENTRYPOINT ["./main.py"]