Skip to content

Instantly share code, notes, and snippets.

@nitrocode
nitrocode / common-github-cli-gh-commands.md
Last active April 21, 2025 19:22
Common github cli gh commands

Common github cli gh commands

Prereqs

Install

brew install gh
@oubiwann
oubiwann / README.md
Last active May 26, 2026 18:09
Setting Up an MIT CADR Machine (emulation)
@oubiwann
oubiwann / open-genera-installation-on-linux.md
Last active May 26, 2026 18:10
Open Genera Installation on Linux

Open Genera Installation on Linux

About

These notes are based upon the steps provided here:

The notes in this Gist were created due to multiple attempts at installing Open Genera on different platforms that required more steps not inlcuded in the source notes above.

@oubiwann
oubiwann / medley.md
Last active May 26, 2026 18:11 — forked from grav/medley.md
Getting Interlisp-D running with Medley on Debian 3.1

Interlisp-D / Medley on Debian 3.1

About

The image that runs Interlisp-D and Medley on Linux seems to actually be a Workbench for Lexical Functional Grammar. I can only guess that this is a customisation of the Medley programming environment ...

Steps

  1. Install or download VirtualBox
@Leedehai
Leedehai / why-gn-ninja.md
Last active January 5, 2024 21:08
Build system: Ninja and GN

Build system: Ninja and GN

Switching from Make to Ninja and GN across the board.

A build system is what coordinates the build process of various source files and libraries.

Make and CMake

Make is a tried and tested tool, but it does not scale well with large, collaborative projects that often require

How to add an image to a gist

  1. Create a gist if you haven't already.
  2. Clone your gist:
    # make sure to replace `<hash>` with your gist's hash
    git clone https://gist.github.com/<hash>.git # with https
    git clone git@gist.github.com:<hash>.git     # or with ssh
#!/usr/bin/env python
import os
class Spotipy:
"""
Provides a rudimentary interface to the Spotify player on OS X
Supports play/pause, next/previous, shuffle, repeat, volume_up/volume_down/mute commands.
Usage:
import spotipy