Cheat-sheets
Date: 2023-08-05
[[TOC]]
FFmpegโ
- 2023-08-05 ffmprovisr ffmpeg cookbook
Making FFmpeg Easier FFmpeg is a powerful tool for manipulating audiovisual files. Unfortunately, it also has a steep learning curve, especially for users unfamiliar with a command line interface. This app helps users through the command generation process so that more people can reap the benefits of FFmpeg.
Each button displays helpful information about how to perform a wide variety of tasks using FFmpeg. To use this site, click on the task you would like to perform. A new window will open up with a sample command and a description of how that command works. You can copy this command and understand how the command works with a breakdown of each of the flags.
This page does not have search functionality, but you can open all recipes (second option in the sidebar) and use your browser's search tool (often ctrl+f or cmd+f) to perform a keyword search through all recipes.
- About this resource
- FFmpeg basics
- Advanced FFmpeg concepts
- Change container (rewrap)
- Change codec (transcode)
- Change video properties
- Change/view audio properties
- Join/trim/create an excerpt
- Work with interlaced video
- Overlay timecode or text on a video
- Create thumbnails or GIFs
- Create a video from image(s) and audio
- Use filters or scopes
- View or strip metadata
- Preservation tasks
- Generate test files
- Use OCR
- Compare similarity of videos
- Something else
- Similar tools: tips & tricks
- CDDA (Audio CD) Ripping Tools
- ImageMagick
- flac tool
Browser Consoleโ
2023-08-05 Dear Console,โฆ - a collection of code snippets to use in the browser console
- Allow me to copy the alternative text of images by clicking them
- Give me the current page as a markdown list link item
- Turn on all disabled elements in the page
- Give me a list of all the external links with their text as markdown
- Give me the current size of localstorage
- Give me a list of all data from a GET URL
- Give me a table of contents of the document indented by heading level
- Give me a list of all headings and their level
- Give me the file names of images of the document without the rest of the URL
- Give me a list of all the images in the document with their alternative text
- Give me all the images as markdown including their alternative text.
- Give me the URLs of all the image links in the document
- Give me a list of all third party fonts
- Give me a list of all third party scripts
- Make the current document editable
- Outline all elements on the page with a unique color per tag
- Show a red outline around all links that aren't going anywhere
- Give me a list of all render blocking resources
- Show me the element at the current cursor position
- Give me a screenshot of the page
2023-08-31๐ DevTools Tips
2023-11-11 67 Weird Debugging Tricks Your Browser Doesn't Want You to Know | Alan Norbauer
By using expressions that have side effects in places you wouldnโt expect, we can squeeze more functionality out of basic features like conditional breakpoints.
WITH ANNIMATIONS!
2023-11-06 Git Hidden Gems - Enrico Campidoglio - Copenhagen DevFest 2023 - YouTube
2023-11-06 Enrico Campidoglio Git log Pretty Print:
git log --pretty="%C(red)%h%Creset%C(yellow)%d%Creset %s %C(cyan)(%ar)%Creset"
git config --global core.pager
Search all commits by C-style function name
# func: add
# in file src/calculator.ts
git log -L:add:src/calculator.ts
Codeโ
2023-12-09 The Complete Puppeteer Cheatsheet | ProxiesAPI
found in: https://javascriptweekly.com/issues/666 Puppeteer is a Node.js library developed by Google for controlling headless Chrome and Chromium over the DevTools Protocol. It allows you to automate UI testing, scraping, screenshot testing, and more. ๐
2023-09-07 ๐ก LINQ to SQL cheat sheet ยป DamienG
2009
https://download.damieng.com/dotnet/LINQToSQLCheatSheet.pdf
Old, but not obsolete, nicely made cheat sheet
2023-12-15 GOOD SOLID Cheatsheet - Single Responsibility Principle