Skip to content

Instantly share code, notes, and snippets.

View ErykDarnowski's full-sized avatar
🔧
Tinkering

Eryk Darnowski ErykDarnowski

🔧
Tinkering
View GitHub Profile
@ErykDarnowski
ErykDarnowski / README.md
Last active October 28, 2024 20:21
USOS timetable block time calculator

USOS timetable block time calculator [Userscript]

A script that adds time of block next to it's start / end times in the timetable.

Instructions

  1. Install a Userscript browser extension
@ErykDarnowski
ErykDarnowski / README.md
Created November 24, 2024 22:06
`heif-convert` convert all `.heic` files to `.png`

This snippet will (in current dir):

  1. Convert all files of .heic / .HEIC extension to ones with .png.
  2. Remove all original .heic files.
find . -type f -iname '*.heic' -print0 | while IFS= read -r -d '' file; do heif-convert "$file" -f "png" && rm "$file"; done
@ErykDarnowski
ErykDarnowski / README.md
Last active June 7, 2025 10:31
Crop out the Windows 10 taskbar from a video using `ffmpeg`
ffmpeg -i in.mp4 -vf "crop=1920:1040:0:0" out.mp4
#     cropped width and height ^                  (we're removing 40px from the height)
#  coordinates of the top-left corner ^           (we're setting the top-left corner to the top-left of the screen so we cut out the bottom 40px)
@ErykDarnowski
ErykDarnowski / README.md
Created July 19, 2025 20:04
Linux show dir sizes in human readable format and sort them in ascending order
@ErykDarnowski
ErykDarnowski / README.md
Last active July 27, 2025 21:03
Crop out view from glass door from P1S timelapse video using `ffmpeg`