Skip to content

Instantly share code, notes, and snippets.

View tmarble's full-sized avatar

Tom Marble tmarble

View GitHub Profile

Keybase proof

I hereby claim:

  • I am tmarble on github.
  • I am tommarble (https://keybase.io/tommarble) on keybase.
  • I have a public key ASCxRsXBbAFgw2rob1e1fPYHv4agGnTMa5Uno0TdJPQNcgo

To claim this, I am signing this object:

@tmarble
tmarble / regex-1.3.1.json
Created December 2, 2019 20:11
scancode for regex 1.3.1
{
"headers": [
{
"tool_name": "scancode-toolkit",
"tool_version": "3.1.1.post272.3a71e44a4",
"options": {
"input": [
"/home/tmarble/src/github/rust-lang/regex"
],
"--json-pp": "regex-1.3.1.json",
@tmarble
tmarble / run_game2.sh
Created November 15, 2018 03:10
run_game2.sh
#!/bin/sh
set -e
jar="target/MyBot.jar"
if [ ! -e "$jar" ]; then
echo "Building uberjar..."
lein uberjar
else
echo "uberjar up to date..."
;; Copyright © 2016 Dynamic Object Language Labs Inc.
;;
;; This software is licensed under the terms of the
;; Apache License, Version 2.0 which can be found in
;; the file LICENSE at the root of this distribution.
;; PAMELA example -------------------------------------------
;;; Acknowledgement and Disclaimer:
;;; This material is based upon work supported by the Army Contracting
@tmarble
tmarble / noir-troubles.txt
Created December 23, 2011 16:32
tmarble question on noir routing
~/src/noir-examples/my-website/src/my_website/views/welcome.clj
contains...
(defpage "/user/:id" {id :id}
[:div
(str "You are user number " id)
])
http://localhost:8080/user/123
results in...