Skip to content

Instantly share code, notes, and snippets.

@mcandre
mcandre / yaesu-ft-70dr-cheatsheet.md
Last active March 6, 2022 22:43
Yaesu FT-70DR Cheatsheet

Yaesu FT-70DR Cheatsheet

Belt Clip

Yaesu sells handheld transceivers with an optional belt clip, detached by default. To attach the clip, remove any battery. Then firmly insert the two belt clip screws with an appropriate screwdriver. My radio came with two small Phillips head screws.

Charging

The battery charges via a barrel plug located on the right side of the radio.

@xirixiz
xirixiz / Set up GitHub push with SSH keys.md
Last active July 4, 2024 14:41 — forked from developius/README.md
Set up GitHub push with SSH keys

SSH keypair setup for GitHub (or GitHub/GitLab/BitBucket, etc, etc)

Create a repo.

Make sure there is at least one file in it (even just the README.md)

Generate a SSH key pair (private/public):

ssh-keygen -t rsa -C "your_email@example.com"
@kklimonda
kklimonda / pybrowser.py
Created March 28, 2011 15:18
A minimal Gtk+/Webkit based browser in Python
import sys
from gi.repository import Gtk, Gdk, WebKit
class BrowserTab(Gtk.VBox):
def __init__(self, *args, **kwargs):
super(BrowserTab, self).__init__(*args, **kwargs)
go_button = Gtk.Button("go to...")
go_button.connect("clicked", self._load_url)
self.url_bar = Gtk.Entry()