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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Jake's StartPage</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
margin: 20px; |
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
dvgrab --autosplit --format dv2 dvgrab- | |
touch dvg-files.txt | |
find -name "dvgrab-*" -exec echo {} >> dvg-files.txt \; | |
ffmpeg -f concat -safe 0 -i dvg-files.txt -c copy dvg-out-lossless.avi | |
ffmpeg -i dvg-out-lossless.avi -deinterlace -vcodec h264 -acodec mp3 dvg-compressed-out.mp4 | |
rm dvgrab-* | |
rm dvg-files.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
find -name "*" -exec fontforge -lang=ff -c 'Open($1); Generate($2); Close();' {} {}.bdf \; |
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
#!/usr/bin/env python | |
# By Jonathan F. | |
import curses | |
import sys | |
import getopt | |
import netaddr | |
import threading | |
import time | |
import ping3 | |
import socket |
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
#!/usr/bin/env python | |
""" | |
This utility will search *any* file and look for what *appears* to be a DV | |
video frames and copy them into a new Raw DV file. | |
Written by Dan Dennedy <dan@dennedy.org> | |
""" | |
import sys | |
def is_dv_1(s):\ |
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
1. magisk monkey biznizz | |
1.5 sometimez ya need to run adb kill-server && sudo adb start-server to unjam adb | |
2. adb reboot bootloader | |
3. sudo fastboot devices | |
3.5 ya mite needa run sudo fastboot flashing unlock | |
4. sudo fastboot flash boot ./magisk_patched-24300_XJUtv.img | |
5. KERBANG(reboot ya fone) |
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
find -name "*" -exec convert {} -strip -quality 86 {}.webp \; |
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
for f in *.mp4 ; do ffmpeg -i "$f" -crf 28 -preset veryslow -ab 128k -vf fps=12 -vn -map 0:0 -codec:a copy -map_metadata -1 "./out/${f%.*}.mkv"; done |
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 | |
curl https://boot.netboot.xyz/ipxe/netboot.xyz.efi | |
sudo mkdir /boot/efi/EFI/rescue | |
sudo cp ./netboot.xyz.efi /boot/efi/EFI/rescue/ | |
efibootmgr --create --disk /dev/sdx --part [EFI_PARTITION_NUMBER] --loader /EFI/rescue/netboot.xyz.efi --label "Netboot.xyz" |
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
mkdir filtered && for f in *.mp3 ; do ffmpeg -i "$f" -ab 128k -map_metadata -1 "./filtered/${f%.}.opus"; done |
NewerOlder