Skip to content

Instantly share code, notes, and snippets.

  1. Open VS Code
  2. Press ctrl+shift+P and start typing "user settings json".
  3. Choose the "Preferences: User Settings (JSON)" option.
  4. Paste the following content in as a top level key in the json:
"claudeCode.environmentVariables": [
  { "name": "ANTHROPIC_AUTH_TOKEN",              "value": "sk-your-key" },
  { "name": "ANTHROPIC_BASE_URL",                "value": "https://llm-proxy.apps.paas02-t.ilstu.edu/" },
 { "name": "CLAUDE_CODE_USE_BEDROCK",           "value": "0" },
/* Stepper Motor Driver -> Servo Adapter
Interpret direction and step pulses from GRBL or other stepper-driving software
and instead translate it to a PWM signal appropriate for a nice cheap standard
servo. Ideally we wouldn't use a whole extra arduino for this but GRBL is not
really set up to do this natively and I don't feel like hacking it. Off-brand
Arduino Nanos are a couple bucks each these days. ¯\_(ツ)_/¯
*/
#include <Servo.h>
// CONSTANTS
#include <Servo.h>
// CONSTANTS
const byte MAX_POS = 180;
const byte SERVO_PIN = 9;
const byte STEP_PIN = 2;
const byte DIR_PIN = 3;
const byte NEG_LIMIT_PIN = 11;
const byte POS_LIMIT_PIN = 12;
(ns lazybot.plugins.logicplayground
(:refer-clojure :exclude [==])
(:use clojure.core.logic)
(:require clojure.core.logic.fd :as fd)
)
(comment
(run* [q]
(fresh [a b c d e f g h i j k l m n o p]
@nathanic
nathanic / dice.clj
Created February 15, 2015 22:49
bitsbot dice plugin
(ns lazybot.plugins.dice
(:use lazybot.registry)
(:use lazybot.utilities)
(:require [clojure.string :as string])
(:require [instaparse.core :as insta])
(:require [clojure.core.match :refer [match]]))
; parser expects input like
; "3d20 + 2d4 + 10"
; and produces a list of structures like
@nathanic
nathanic / number_trivia.clj
Created August 6, 2014 15:27
Number Trivia plugin for Bitsbot
(ns lazybot.plugins.number-trivia
(:use [lazybot registry]
[lazybot.utilities])
(:require [clj-http.client :as client]))
; http://numbersapi.com/
; from API docs:
;;; Just hit http://numbersapi.com/number/type to get a plain text response, where
;;; type is one of trivia, math, date, or year. Defaults to trivia if omitted.
;;; number is
@nathanic
nathanic / markov.rs
Last active August 29, 2015 14:03
silly markov text generator (baby's first rust program)
extern crate serialize;
extern crate time;
// use std::str;
// use std::rand;
use std::io::{File, BufferedReader};
use std::collections::TreeMap;
use serialize::{json, Encodable, Decodable};
#[deriving(Decodable, Encodable, Show)]
#SingleInstance Force
#MaxHotkeysPerInterval 99999
#IfWinActive ahk_class DarkSouls2
; AHL script to remove input lag from DarkSouls2 PC, and add hotkeys for
; Guard break / Jump Attack
;
; Current settings (some can be easily changed)
; LMB / RMB = normal attacks
; Shift + LMB / RMB = strong attacks
@nathanic
nathanic / typetest.clj
Created October 2, 2013 20:47
Nathan fails to understand something about assoc'ing onto an HMap with :optional keys
(ns example.typetest
(:use [clojure.core.typed]))
; using [org.clojure/core.typed "0.2.13"]
(def-alias House "a House has some :people in it and maybe a :mortgage."
(HMap :mandatory {:id String
:people (Coll String)
}
; comment out this :optional line and it all works
:optional {:mortgage Number}
@nathanic
nathanic / index-of.cljs
Created October 1, 2013 17:06
index-of for clojurescript
(defn index-of
"return the index of the supplied item, or nil"
[v item]
(let [len (count v)]
(loop [i 0]
(cond
(<= len i) nil,
(= item (get v i)) i,
:else (recur (inc i ))))))