Skip to content

Instantly share code, notes, and snippets.

View nvictor's full-sized avatar

Victor Noagbodji nvictor

View GitHub Profile
@nvictor
nvictor / remove_edge_favorites_mac.sh
Last active August 2, 2022 14:09
remove_edge_favorites_mac.sh
# edge://version shows the path to the profile folder
cd /Users/victor/Library/Application\ Support/Microsoft\ Edge/Default/
rm Bookmarks
rm Bookmarks.msbak
@nvictor
nvictor / systems.txt
Last active November 22, 2021 03:14
systems.txt
thinking in systems by donella meadows
a) the behavior of a system cannot be known by just knowing the elements
of which the system is made — blind men and elephant
b) a system is more than the sum of its parts — made of parts,
interconnections, purpose. changing interconnections and purpose change
the system
c) stocks are important elements in a system — connected by flows
@nvictor
nvictor / ffmpeg_frames.sh
Created July 23, 2021 03:14
ffmpeg_frames.sh
ffmpeg -i input.mp4 -ss 00:00:00.000 -t ddd output_%03d.png
@nvictor
nvictor / tmux_term_setting.sh
Created April 10, 2021 19:05
tmux_term_setting.sh
# Because if you don't do this tmux will default to screen...
# See: https://github.com/zsh-users/zsh-autosuggestions/issues/229
if [ ! "$TMUX" = "" ]; then export TERM=xterm-256color; fi
@nvictor
nvictor / sor_musical_influences.md
Last active November 11, 2020 23:00
sor_musical_influences.md
@nvictor
nvictor / sounds_names.md
Last active August 30, 2022 03:59
sounds_names.md
english french
buzzing bourdonnement
clinking cliquetis (tintement)
clanging cliquetis (métalique)
cracking claquement (tonnerre)
creaking grincement (métal)
crunching craquement
grunting grognement
@nvictor
nvictor / instruments_ranges.md
Last active October 3, 2020 17:54
instruments_ranges.md

Orchestra Instruments Ranges

Sources:

Middle C = C4

Note: These are merely suggestions. Check your instruments. The harmonics are from the Vienna Symphony website.

@nvictor
nvictor / notes_frequencies.md
Last active October 1, 2020 22:34
notes_frequencies.md
@nvictor
nvictor / tiny.c
Created July 3, 2020 22:31
tiny.c
/* file: "tinyc.c" */
/* Copyright (C) 2001 by Marc Feeley, All Rights Reserved. */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* This is a compiler for the Tiny-C language. Tiny-C is a
@nvictor
nvictor / ffmpeg_mp3.sh
Last active November 13, 2020 02:54
ffmpeg_mp3.sh
ffmpeg -i input.mp4 output.mp3
ffmpeg -i input.m4a output.mp3