A script to fix EDID problems on external monitors in macOS.
-
Connect only the problem display.
-
Create this directory structure (if it doesn't already exist):
| <html> | |
| <head> | |
| <title>{YOUR SURVEY TITLE}</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style> | |
| html, body, iframe{ | |
| padding: 0; | |
| margin: 0; | |
| width: 100%; |
| 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 |