Skip to content

Instantly share code, notes, and snippets.

View LindseyB's full-sized avatar
⚰️
When I hear that trumpet sound I'm gonna rise up outta the ground

Lindsey Bieda LindseyB

⚰️
When I hear that trumpet sound I'm gonna rise up outta the ground
View GitHub Profile
@hyperupcall
hyperupcall / settings.jsonc
Last active June 26, 2024 18:59
VSCode config to disable popular extensions' annoyances (telemetry, notifications, welcome pages, etc.)
// I'm tired of extensions that automatically:
// - show welcome pages / walkthroughs
// - show release notes
// - send telemetry
// - recommend things
//
// This disables all of that stuff.
// If you have more config, leave a comment so I can add it!!
{
@bruce
bruce / fill.rb
Last active October 27, 2021 20:09
A rough script to update a memex project with all issues from a repository (requires faraday)
abort 'Usage: ruby fill.rb <PROJECT_NUMBER> <NWO> <PAT>' unless ARGV.length == 3
require 'bundler/setup'
require 'fileutils'
require 'json'
require 'faraday'
class ProjectSync
@Phlow
Phlow / for-loop-sorted-collection
Last active April 30, 2024 13:30
This Liquid loop for Jekyll sorts a collection by date in reverse order
{% comment %}
*
* This loop loops through a collection called `collection_name`
* and sorts it by the front matter variable `date` and than filters
* the collection with `reverse` in reverse order
*
* To make it work you first have to assign the data to a new string
* called `sorted`.
*
{% endcomment %}
@wilkie
wilkie / episode_renamer.pl
Created February 5, 2010 05:03
Will rename media files consisting of episodes of a television series by using the epguides.com website.
#!/usr/local/bin/perl
# AUTHORS: Dave Wilkinson and Bradley D. Kuhlman
# PURPOSE: Will rename media files consisting of episodes of a
# television series by using the epguides.com website from
# some cryptic, yet commonly found when downloaded on the
# internet, format to be `## - Title` where ## is the episode
# number.