Skip to content

Instantly share code, notes, and snippets.

@brogers
brogers / ewozmon6850.asm
Created October 13, 2024 23:42 — forked from robinharris/ewozmon6850.asm
Enhanced WOZMON handles Intel Hex files
; EWOZ Extended Woz Monitor.
; Just a few mods to the original monitor.
;-------------------------------------------------------------------------
ORG $FD40
;-------------------------------------------------------------------------
; Memory declaration
;-------------------------------------------------------------------------
@brogers
brogers / nerd_fonts.sh
Created February 16, 2023 13:54 — forked from davidteren/nerd_fonts.md
Install Nerd Fonts via Homebrew [updated & fixed]
# Nerd Fonts for your IDE
# https://www.nerdfonts.com/font-downloads
brew tap homebrew/cask-fonts && brew install --cask font-3270-nerd-font
brew tap homebrew/cask-fonts && brew install --cask font-fira-mono-nerd-font
brew tap homebrew/cask-fonts && brew install --cask font-inconsolata-go-nerd-font
brew tap homebrew/cask-fonts && brew install --cask font-inconsolata-lgc-nerd-font
brew tap homebrew/cask-fonts && brew install --cask font-inconsolata-nerd-font
brew tap homebrew/cask-fonts && brew install --cask font-monofur-nerd-font
brew tap homebrew/cask-fonts && brew install --cask font-overpass-nerd-font
@brogers
brogers / .skhdrc
Created September 23, 2021 17:00 — forked from kiwirm/.skhdrc
# Updated from https://gist.github.com/pkazmier to support yabai
#
# The following configuration heavily leverages modal keymaps to minimize the
# pollution of global keybindings. In addition, the modal keymaps facilitate
# the consistent use of the same keybindings across different modes. For
# example, this configuration uses 'h', 'l', 'j', and 'k' to represent west,
# east, south, and north when: changing focus, warping windows, resizing
# windows, swapping windows, and moving floating windows. Those four keys are
# mapped differently depending on the current mode to provide a consistent user
# experience.
api.map('L', 'D');
api.unmap('D');
api.map('H', 'S');
api.unmap('S');
api.map('d','x');
api.unmap('x');
api.map('u','X');
api.unmap('X');
api.map('J', 'R');
api.map('K', 'E');
@brogers
brogers / solus-oh-my-zsh-theme.png
Created October 10, 2020 16:49 — forked from cloudnull/solus-oh-my-zsh-theme.png
Solus zsh theme for oh-my-zsh
solus-oh-my-zsh-theme.png
@brogers
brogers / MilliSecondClock.ino
Created January 1, 2020 07:33 — forked from CelliesProjects/MilliSecondClock.ino
Millisecond clock take2 with fps counter for ESP32 with 64x128 SSD1306 OLED display.
/***********************************************
* Millisecond clock by Cellie
* needs a 128x64 SSD1306 OLED on pins 19 and 23
**********************************************/
#include "WiFi.h"
#include "SSD1306.h" //https://github.com/squix78/esp8266-oled-ssd1306
// i2c pin definitions for oled
#define I2C_SCL_PIN 19
#define I2C_SDA_PIN 23
//#define CALIBRATE
//#define GRID // After Calibration this mode should plot a pretty good dot grid on the screen
// See additional calibration comments in the code down by the "#ifdef CALIBRATE"
// Adjust these values for servo arms in position for state 1 _|
const double SERVO_LEFT_ZERO = 1600;
const double SERVO_RIGHT_SCALE = 690; // + makes rotate further left
// Adjust these values for servo arms in position for state 2 |_
const double SERVO_RIGHT_ZERO = 650;
; acceleration_enabled = {acceleration_enabled}
; acceleration_infill = {acceleration_infill}
; acceleration_ironing = {acceleration_ironing}
; acceleration_layer_0 = {acceleration_layer_0}
; acceleration_prime_tower = {acceleration_prime_tower}
; acceleration_print = {acceleration_print}
; acceleration_print_layer_0 = {acceleration_print_layer_0}
; acceleration_roofing = {acceleration_roofing}
; acceleration_skirt_brim = {acceleration_skirt_brim}
; acceleration_support = {acceleration_support}
@brogers
brogers / cVim-alfred.css
Last active May 16, 2019 14:09 — forked from franklinjavier/cVim-alfred.css
cVim theme inspired by Yosemite Spotlight
#cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar {
font-family: Helvetica, Helvetica Neue, Neue, sans-serif, Arial;
font-size: 9pt !important;
-webkit-font-smoothing: antialiased !important;
border-radius: 4px!important;
}
#cVim-link-container {
position: absolute;
pointer-events: none;