Skip to content

Instantly share code, notes, and snippets.

View dnnspaul's full-sized avatar
🍕

Dennis Paul dnnspaul

🍕
View GitHub Profile
@naveenkrdy
naveenkrdy / AdobeAMDFix.md
Last active March 21, 2024 15:30
To fix adobe products crashes on AMD hackintosh

Adobe Crash Fix XLNC

Instructions

  1. Install needed adobe apps from adobe creative cloud.

  2. Open Terminal.

  3. Copy-paste the below command to your terminal and run it (enter password when asked).

@slykar
slykar / docker-compose-hackintosh.md
Last active May 7, 2024 13:53
Docker and Docker Compose on AMD OSX Hackintosh via Docker Machine

Introduction

Docker.app will complain about incompatible processor, so we will use Docker Machine.

Instalation

Download Docker for Mac (Docker.app). It contains some binaries that are necessary.

brew install virtualbox docker-machine
@Lauszus
Lauszus / gps.py
Last active August 21, 2023 08:31
Python script used to decode GPS data and then generate a html page.Remember to replace the API key with your API key: https://developers.google.com/maps/documentation/javascript/tutorial#api_key.
#!/usr/bin/env python
import serial
import time
import os
import sys
from string import Template
if os.geteuid() != 0: # Source: https://gist.github.com/davejamesmiller/1965559
os.execvp("sudo", ["sudo"] + sys.argv)