This is a work-in-progress collection of notes I've been making as I'm exploring the Heathkit H89.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import curses | |
| import os | |
| def main(win): | |
| win.nodelay(True) | |
| key = "" | |
| win.clear() | |
| win.addstr("Detected key:") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aahed | |
| aalii | |
| aargh | |
| aarti | |
| abaca | |
| abaci | |
| abacs | |
| abaft | |
| abaka | |
| abamp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdbool.h> | |
| #include <stdint.h> | |
| #include <limits.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <fcntl.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #EXTM3U | |
| # filename: radio.m3u | |
| # ------------------- | |
| # My Talk/News Live Streaming Radio Playlist | |
| # Get this playlist on your phone! I use VLC | |
| ##### https://git.io/vKiO1 ###### | |
| # # | |
| # # | |
| # █▀▀▀▀▀█ █▄█ █▄█ ▄ █▀▀▀▀▀█ # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.XCompose | |
| ### Based on the en_US.UTF locale. ### | |
| include "/usr/share/X11/locale/en_US.UTF-8/Compose" | |
| ### Populated with Kragen's additions. ### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # NOTE: These instructions are old and may be out of date. A better alternative to compiling Reicast manually may be to use RetroArch with the Flycast core (https://www.retroarch.com/) | |
| # Install prerequisites | |
| sudo apt-get -y install build-essential libasound2 libasound2-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa-dev mesa-common-dev | |
| # Build Reicast | |
| git clone https://github.com/reicast/reicast-emulator.git | |
| cd reicast-emulator/shell/linux | |
| make | |
| # Run Reicast |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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) |
NewerOlder