Skip to content

Instantly share code, notes, and snippets.

@reccanti
reccanti / mov-to-gif.sh
Created April 23, 2020 17:49
A script I use to convert .mov files generated by the MacOS cmd+shift+5 Screen Record tool into gifs. Based on this article from the Giphy Engineering Blog: https://engineering.giphy.com/how-to-make-gifs-with-ffmpeg/
ffmpeg -i BackToTopDemo.mov -filter_complex "[0:v] fps=30,scale=720:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" BackToTopDemo.gif
@reccanti
reccanti / notes.md
Last active May 1, 2022 17:05
Notes – Kingdom Hearts II Final Mix – Beginner – Any%

reccanti's Kingdom Hearts II Final Mix Speedrunning Notes

Howdy folks! If you're not me (reccanti), then welcome to my speedrunning notes! For the most part, I've been following along with this guide InsertLogic (give it a watch!). Most things will be related to what he said, though I'll bring up places where I deviate from that or replace his strategy with something a little easier:

InsertLogic's Guide

Walkthrough

Roxas

@reccanti
reccanti / log
Created November 28, 2020 20:50
OBS 26.0.2 Crash Log
Process: obs [4998]
Path: /Applications/OBS.app/Contents/MacOS/obs
Identifier: com.obsproject.obs-studio
Version: 26.0.2 (26.0.2)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: obs [4998]
User ID: 501
Date/Time: 2020-11-28 15:35:34.570 -0500
@reccanti
reccanti / command.sh
Last active February 24, 2021 23:06
The different JSON results and their diffs. Ideally, we'd like to get to an empty diff!
diff jsonBin.json scraper.json > result.diff
@reccanti
reccanti / input.scss
Created April 15, 2021 21:11
Generated by SassMeister.com.
.foo {
&#{&}#{&}:focus {
color: black;
}
}
@reccanti
reccanti / init.vim
Created April 28, 2021 16:29
Configuration for Neovim!
"This setup requires both 'Neovim' and 'vim-plug' to be
"installed for it to work. Read the docs to figure out how
"to do that! I'm not going to include links in case they
"get stale. Once you've done that, source this file and run
":PlugInstall to get everything working!
"
"~reccanti 4/27/2021
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }