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
A test to see if anyone can edit this gist |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#NoEnv | |
#Persistent | |
#SingleInstance | |
MySpeechListener := new CustomSpeech | |
MySpeechListener.Recognize(["Mineral Spirits Smell Bad", "Detroit After Dark", "Happy Birthday"]) |
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
<html> | |
<head> | |
<title>Stopwatch</title> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Overpass+Mono&display=swap" rel="stylesheet"> | |
<style> |
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
########################################################### | |
########################################################### | |
# NAME: basic | |
# | |
# this file gives you raw & unaltered force as integrated by physics engine | |
# acting on steering rack of the vehicle physical model | |
# Summing these two valuee effectievly gives you rackforce. | |
# | |
########################################################### |
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 re | |
import argparse | |
CARD_RE = re.compile('^(.+) \\| (.+)$') | |
CONDITION_RE = re.compile('^Condition') | |
PRICE_RE = re.compile('^£(\\d+\\.\\d+) GBP') | |
QTY_RE = re.compile('^Qty: (\\d+)$') | |
cards = [] |
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
; Joystick Test Script | |
; https://www.autohotkey.com | |
; This script helps determine the button numbers and other attributes | |
; of your joystick. It might also reveal if your joystick is in need | |
; of calibration; that is, whether the range of motion of each of its | |
; axes is from 0 to 100 percent as it should be. If calibration is | |
; needed, use the operating system's control panel or the software | |
; that came with your joystick. | |
; July 6, 2005: Added auto-detection of joystick number. |
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
let runQClicker = true; | |
(function qClicker() { | |
if (!runQClicker) return | |
let t = 100 | |
let q = qChips.reduce((p, c) => p + c.value, 0) | |
if (q > 0.01) { | |
qComp() | |
t = 1 | |
} | |
if (swarmGifts >= 3) { |