Skip to content

Instantly share code, notes, and snippets.

View scottlaplant's full-sized avatar

Scott scottlaplant

View GitHub Profile
@scottlaplant
scottlaplant / unfave.rb
Created April 12, 2021 08:29 — forked from robinsloan/unfave.rb
Unfave script, because why not??
#!/usr/bin/env ruby
require "rubygems"
require "twitter"
require "json"
require "faraday"
# things you must configure
TWITTER_USER = "your_username"
# get these from dev.twitter.com
@scottlaplant
scottlaplant / remove-git-ignored-files.md
Created February 1, 2024 23:06 — forked from itsnwa/remove-git-ignored-files.md
Remove files git ignored files from remote repository

$ git rm -r --cached . && git add . && git commit -m "Removing all files in .gitignore"