Skip to content

Instantly share code, notes, and snippets.

@johnmap
johnmap / patch-edid.md
Created January 4, 2021 13:08 — forked from ejdyksen/patch-edid.md
A script to fix EDID problems on external monitors in macOS

patch-edid.rb

A script to fix EDID problems on external monitors in macOS.

Instructions

  1. Connect only the problem display.

  2. Create this directory structure (if it doesn't already exist):

@johnmap
johnmap / papajohns.rb
Created April 17, 2016 14:26 — forked from johnhamelink/papajohns.rb
Ruby CLI Client for Papa Johns' API
require 'rubygems'
require 'bundler/setup'
require 'faraday'
require 'pry'
require 'json'
@conn = Faraday.new(url: 'https://api.papajohns.co.uk') do |faraday|
faraday.adapter Faraday.default_adapter
end