Skip to content

Instantly share code, notes, and snippets.

View kristopherjohnson's full-sized avatar
💭
Huh?

Kristopher Johnson kristopherjohnson

💭
Huh?
View GitHub Profile
@kristopherjohnson
kristopherjohnson / delete_archived_tweets.py
Last active August 12, 2018 01:46
Delete all tweets that are listed in a tweets.csv archive that are over 90 days old
#!/usr/bin/env python
"""Deletes all tweets in your 'tweets.csv' archive older than 90 days.
You can obtain your 'tweets.csv' archive by going to
<https://twitter.com/settings/account>, requesting your archive,
downloading it, and then extracting the 'tweets.csv' file.
"""
from __future__ import print_function
@kristopherjohnson
kristopherjohnson / deletetweets.py
Last active February 9, 2022 14:13
Delete all tweets older than 90 days
#!/usr/bin/env python
"""Deletes all tweets older than 90 days.
"""
from __future__ import print_function
# Dependencies: pip install twitter python-dateutil
import twitter
import dateutil.parser
@kristopherjohnson
kristopherjohnson / cert_expire.awk
Last active May 13, 2022 23:44
AWK script that gets certificate expiration info from PEM-format certificate data
#!/usr/bin/env awk -f
# Processes PEM output to print certificate expiration information.
#
# Example: Print expiration dates for all certificates on macOS
#
# security find-certificate -a -p | awk -f cert_expire.awk
#
# Example: Print expiration dates for all "iPhone Developer" certificates on macOS
#
@kristopherjohnson
kristopherjohnson / unblock_all.py
Last active May 4, 2023 13:03
Unblock all blocked Twitter accounts
#!/usr/bin/env python3
# Dependency: pip3 install twitter
import twitter
# Go to http://apps.twitter.com/, create an app, and fill in these values:
consumer_key = 'www'
consumer_secret = 'xxx'
access_token = 'yyy'
access_token_secret = 'zzz'
@kristopherjohnson
kristopherjohnson / maketexprogram.sh
Created July 30, 2017 14:13
Bash script that downloads the source to Donald Knuth's "TeX: The Program" and builds a PDF
#!/bin/bash
# This script downloads the source to Donald Knuth's "TeX: The Program"
# and builds a PDF.
#
# Requires curl and a TeX distribution.
curl http://tug.org/texlive/devsrc/Build/source/texk/web2c/tex.web -o tex.web
weave tex.web
tex tex.tex
@kristopherjohnson
kristopherjohnson / rn.py
Last active May 13, 2022 23:45
Python 3 program to convert Roman numerals to integer values
#!/usr/bin/env python3
import sys
letterValues = {
'M': 1000,
'D': 500,
'C': 100,
'L': 50,
'X': 10,
@kristopherjohnson
kristopherjohnson / Makefile
Last active October 11, 2019 21:12
C program to convert Roman numerals to integer values
rn: rn.c
test: rn
./rn I IV V VI IX X XI XIV XIX XCIX CI MCMLXVII MD MDC MCD MM
.PHONY: test
@kristopherjohnson
kristopherjohnson / IfElse.swift
Last active April 19, 2019 11:22
Implement "If", "Else", and "ElseIf" in Swift
// Implementation of If, ElseIf, and Else in Swift.
//
// Supports uses such as these:
//
// If (condition) { doAction() }
//
// If (condition) { doAction() }
// .Else { doOtherAction() }
//
// If (condition) { doAction() }
@kristopherjohnson
kristopherjohnson / CommandLineParseResult.swift
Last active June 21, 2018 00:41
Swift 3: Command-line options and arguments parser
import Foundation
extension Array {
/// Returns a new `Array` made by appending a given element to the `Array`.
func appending(_ newElement: Element) -> Array {
var a = Array(self)
a.append(newElement)
return a
}
}
@kristopherjohnson
kristopherjohnson / Array+appending.swift
Last active March 10, 2022 08:10
Swift 3: Create new array by appending an element to existing array
extension Array {
/// Returns a new `Array` made by appending a given element to the `Array`.
func appending(_ newElement: Element) -> Array {
var a = Array(self)
a.append(newElement)
return a
}
}