Skip to content

Instantly share code, notes, and snippets.

@seankmchenry
seankmchenry / Amy's Fork 🍴.txt
Last active December 11, 2024 16:51
Sean & Charlie 💍 – these guys are getting married!
https://open.spotify.com/track/2zZWDvmCghTF41k6I4uN9g
https://open.spotify.com/track/04deOfZhUWBjKU5J519yyO
https://open.spotify.com/track/0Cp39XMzchWmZLidU6Tnt1
https://open.spotify.com/track/2DsECqS7xlgVWgrDH5fBEH
https://open.spotify.com/track/6ZtI9SQLRvi7tKqNAlvuah
https://open.spotify.com/track/5tfKCFDYZSAYsegY3OUJ5e
https://open.spotify.com/track/7khzIPpqJO6NY6gxE4unIB
https://open.spotify.com/track/0yfNXxlyXdmP0ue1iJijx1
https://open.spotify.com/track/3MVm36ouM56jbP5rORxbVy
https://open.spotify.com/track/17EVu5b0l5uo2gErSfqEt1
@seankmchenry
seankmchenry / delete-likes-from-twitter.md
Created July 30, 2024 16:44 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('button[data-testid="unlike"]')) {
    d.click()
 }
@seankmchenry
seankmchenry / .zsh_profile
Last active December 17, 2022 21:10
ZSH functions, aliases and paths
###########
# ALIASES #
###########
# Brew
alias bcin="brew install --cask"
alias bcri="brew reinstall --cask"
alias bcun="brew uninstall --cask"
alias bin="brew install"
alias bs="brew search"
@seankmchenry
seankmchenry / ibgrid.scss
Last active April 25, 2017 16:19
Inline-block grid with Bootstrap-based class names
/**
* ibgrid.scss
*
* An inline-block grid.
*/
/*
Variables
*/
// breakpoints
@seankmchenry
seankmchenry / developer-resources.md
Created April 25, 2017 16:13
Developer Resources

Developer Resources

A collection of useful developer resources

Boilerplates

Character Tables

@echo off
if exist %USERPROFILE%\DJbatch.txt goto menu
start reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /d 0 /f
echo Don't delete this file! The Ultimate Dj Batch file needs it to run fine! >> %USERPROFILE%\DJbatch.txt
:menu
ECHO.
ECHO. Welcome to the DJTT Pro Audio Optimizer
ECHO.
ECHO.
@seankmchenry
seankmchenry / liquor-inventory.md
Created April 25, 2017 16:10
Liquor Inventory

Liquor Inventory

A rotating list of the bottles in my liquor cabinet. (On my liquor shelf, actually.)

Liquor

  • Bacardi Superior
  • Beefeater
  • Bulleit Rye
  • Cazadores Tequila Blanco
  • Cruzan Aged Rum
  • Dewar's White Label
@seankmchenry
seankmchenry / dotfile-projects.md
Created April 25, 2017 16:08
Dotfile Projects
@seankmchenry
seankmchenry / flexboxgrid.scss
Last active April 25, 2017 16:19
Flexbox Grid implementation
/**
* flexboxgrid.scss
*/
/*
Variables
*/
// breakpoints
$break-xs: 35rem;
$break-sm: 48rem;
@seankmchenry
seankmchenry / _fallback.scss
Last active October 25, 2016 15:24
Flexbox grid plugin with old iPhone fallback
/**
* _fallback.scss
*
* Fallback grid for flexboxgrid.scss
* Fixes iPhone 4 and 5 issues.
*/
.row {
display: block;
font-family: empty;