Spice up termux with beautiful themes and productivity plugins to make your life easier!
pkg install zsh git lsd vim
Install Oh-My-Zsh
Spice up termux with beautiful themes and productivity plugins to make your life easier!
pkg install zsh git lsd vim
// source: https://x.com/ThinkWiselyMatt/status/1885076017414348830 | |
(async () => { | |
const delay = ms => new Promise(res => setTimeout(res, ms)); | |
let deletedCount = 0; | |
const maxDeletes = 2000; // Adjust as needed | |
while (deletedCount < maxDeletes) { | |
let posts = document.querySelectorAll('[data-testid="tweet"]'); |
This is a pure Python implementation of code necessary to decode the Bluesky Firehose's low-level binary data format.
It does not depend on any third-party libraries for decoding; we implement DAG_CBOR and CARv1 decoding ourselves.
To run this, install Astral's UV.
Then:
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "Usage: $0 <input_video>" | |
exit 1 | |
fi | |
input_file="$1" | |
if [ -z "$2" ]; then |
# Identify the faulty driver file | |
$faultyDriver = "C:\Windows\System32\drivers\CrowdStrike\C-00000291*.sys" | |
# Check if the file exists | |
if (Test-Path $faultyDriver) { | |
# Attempt to remove the file | |
try { | |
Remove-Item -Path $faultyDriver -Force | |
Write-Output "Faulty driver removed successfully." | |
} |
test file |
#!/usr/bin/python2 | |
""" | |
Use scapy to modify packets going through your machine. | |
Based on nfqueue to block packets in the kernel and pass them to scapy for validation | |
""" | |
import nfqueue | |
from scapy.all import * | |
import os |