Skip to content

Instantly share code, notes, and snippets.

@philhawksworth
philhawksworth / freecodecamp_intro_to_jamstack.md
Last active June 26, 2021 20:37
freeCodeCamp - Introduction to JAMstack

freeCodeCamp Introduction to JAMstack

Here's a list of links to resources to accompany the "Introduction to JAMstack" video on freeCodeCamp, by Phil Hawksworth

Watch the video

JAMstack video

@nickkraakman
nickkraakman / ffmpeg-cheatsheet.md
Last active April 23, 2024 20:53
FFmpeg cheat sheet for 360 video

FFmpeg Cheat Sheet for 360º video

Brought to you by Headjack

 
FFmpeg is one of the most powerful tools for video transcoding and manipulation, but it's fairly complex and confusing to use. That's why I decided to create this cheat sheet which shows some of the most often used commands.

 
Let's start with some basics:

  • ffmpeg calls the FFmpeg application in the command line window, could also be the full path to the FFmpeg binary or .exe file
@efruchter
efruchter / Trie.cs
Last active April 22, 2018 21:35
A Trie implementation in C#
using System;
using System.Collections.Generic;
/**
* A space-saving data structure to store words and their counts.
* Words that share prefixes will have common paths along a branch of the tree.
*/
public class Trie
{
private TrieNode head;