Skip to content

Instantly share code, notes, and snippets.

@robsondepaula
robsondepaula / gist:92acead3594a1c233acc73e03146a9f0
Last active February 28, 2024 17:24
In case Ubuntu 18.04 audio does not work on iMac 27.
* Edit Alsa configuration:
sudo nano /etc/modprobe.d/alsa-base.conf
* Add to the end of the file:
options snd-hda-intel model=imac27_122
* Reload Alsa module:
pulseaudio -k
sudo alsa force-reload
@benkulbertis
benkulbertis / cloudflare-update-record.sh
Last active April 28, 2024 16:35
Cloudflare API v4 Dynamic DNS Update in Bash
#!/bin/bash
# CHANGE THESE
auth_email="user@example.com"
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings
zone_name="example.com"
record_name="www.example.com"
# MAYBE CHANGE THESE
ip=$(curl -s http://ipv4.icanhazip.com)