Skip to content

Instantly share code, notes, and snippets.

{
"bundleId" : "com.knollsoft.Rectangle",
"defaults" : {
"allowAnyShortcut" : {
"bool" : false
},
"almostMaximizeHeight" : {
"float" : 0
},
"almostMaximizeWidth" : {
@FlavioAmurrioCS
FlavioAmurrioCS / ffmpeg_functions.sh
Created August 31, 2021 06:44
dockerized ffmpeg
#!/usr/bin/env bash
# run 'source ./ffmpeg_functions.sh' and then run any of the functions below
FFMPEG_IMAGE="jrottenberg/ffmpeg"
# Wrapper to use ffmpeg on host from current host
function ffmpeg() {
! docker ps >/dev/null 2>&1 &&
echo "Check docker is running." &&
@FlavioAmurrioCS
FlavioAmurrioCS / arch_install.sh
Created October 22, 2018 02:56 — forked from brammitch/arch_install.sh
Install Arch Linux on Dell XPS 13 (9360) / Dual Boot with Windows 10
# Resources
https://wiki.archlinux.org/index.php/installation_guide
http://www.bhartiya.io/always-updated-arch-linux-tutorial/30411
https://wiki.archlinux.org/index.php/Dell_XPS_13_(9360)
http://www.rodsbooks.com/gdisk/cgdisk-walkthrough.html
# TO-DO
# Set up periodic TRIM for SSD
# 1 Pre-installation
@FlavioAmurrioCS
FlavioAmurrioCS / The Technical Interview Cheat Sheet.md
Created March 19, 2018 13:06 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@FlavioAmurrioCS
FlavioAmurrioCS / Buffer Overflow Tutorial in Kali.md
Created February 20, 2018 18:56 — forked from apolloclark/Buffer Overflow Tutorial in Kali.md
Buffer overflow demonstration in Kali Linux, based on the Computerphile video