Skip to content

Instantly share code, notes, and snippets.

View paranoidminotaur's full-sized avatar

Allan Michaels paranoidminotaur

  • Mademebuyit.io
  • Santa Rosa, California
  • 00:14 (UTC -12:00)
  • X @prndmntr
View GitHub Profile
@paranoidminotaur
paranoidminotaur / README.md
Created August 21, 2021 23:57 — forked from hofmannsven/README.md
Increase key repeat rate on macOS

Increase key repeat rate on macOS

Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat

Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.

Source: https://apple.stackexchange.com/a/83923

# ################################################################ #
# THE FOLLOWING IS AN EXPLANATION OF THE GRAMMAR THAT SKHD PARSES. #
# FOR SIMPLE EXAMPLE MAPPINGS LOOK FURTHER DOWN THIS FILE.. #
# ################################################################ #
# A list of all built-in modifier and literal keywords can
# be found at https://github.com/koekeishiya/skhd/issues/1
#
# A hotkey is written according to the following rules:
#
{
"swagger": "2.0",
"info": {
"title": "reverb",
"description": "reverb",
"termsOfService": "https://reverb.com/page/terms",
"contact": {
"name": "Reverb API",
"email": "integrations@reverb.com",
"url": "https://dev.reverb.com"
@paranoidminotaur
paranoidminotaur / anagram_test.rb
Created August 18, 2013 21:43
anagram_test.rb
require 'minitest/autorun'
require_relative 'anagram'
class AnagramTest < MiniTest::Unit::TestCase
def test_no_matches
detector = Anagram.new('diaper')
assert_equal [], detector.match(%w(hello world zombies pants))
end