View numbers.csv
This file contains 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
Base | Numeral | Digits Repeated | Digits Repeated Count | |
---|---|---|---|---|
6 | 3 | 3 | 1 | |
10 | 5 | 2 5 | 2 | |
10 | 6 | 6 | 1 | |
12 | 4 | 4 | 1 | |
12 | 9 | 9 | 1 | |
12 | 10 | 4 | 1 | |
14 | 7 | 7 | 1 | |
15 | 6 | 6 | 1 | |
15 | 10 | 6 10 | 2 |
View numbers.csv
This file contains 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
Base | Numeral | Digits Repeated | Digits Repeated Count | |
---|---|---|---|---|
6 | 3 | 3 | 1 | |
10 | 5 | 2 5 | 2 | |
10 | 6 | 6 | 1 | |
12 | 4 | 4 | 1 | |
12 | 9 | 9 | 1 | |
12 | 10 | 4 | 1 | |
14 | 7 | 7 | 1 | |
15 | 6 | 6 | 1 | |
15 | 10 | 6 10 | 2 |
View scratch_7.txt
This file contains 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
conj talk: https://www.youtube.com/watch?v=V1Eu9vZaDYw | |
initial post on BOT: http://lighttable.com/2013/01/24/the-ide-as-data/ | |
8.0 release - links&more: http://lighttable.com/2015/12/10/light-table-0-8-0/ | |
user docs: http://docs.lighttable.com/ | |
wiki for devs: https://github.com/LightTable/LightTable/wiki/For-Developers | |
quick start contrib: https://github.com/LightTable/LightTable/wiki/First-Contribution | |
core docs folder: https://github.com/LightTable/LightTable/tree/master/doc | |
API DOC: http://lighttable.github.io/LightTable/api/ | |
ext ghbook with plugin docs: https://lighttable.gitbooks.io/light-table-developers-guide/content/ | |
chris on looking back at lt: https://groups.google.com/forum/#!msg/light-table-discussion/2csnnNA1pfo/693EWDJVhuwJ |
View LTIdea.clj
This file contains 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
(ns .....) | |
;; LT CodeBlock Begin: {:name "Related defs" :meta ...} | |
(def ...) | |
(def ...) | |
(def ...) | |
;; LT CodeBlock End |
View BaseConversion.java
This file contains 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
package edu.memphis.cs101.jarrettatkinson; | |
import java.util.Scanner; | |
public class BaseConversion { | |
private static String characterSet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
public static void main(String[] args) throws InterruptedException { | |
Scanner input = new Scanner(System.in); |
View Exception-stack
This file contains 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
lein compile once | |
WARNING: boolean? already refers to: #'clojure.core/boolean? in namespace: medley.core, being replaced by: #'medley.core/boolean? | |
java.lang.ExceptionInInitializerError | |
at clojure.main.<clinit>(main.java:20) | |
Caused by: java.lang.IllegalArgumentException: Call to clojure.core/ns did not conform to spec: | |
In: [3 0] val: import fails spec: :clojure.core.specs/ns-refer-clojure at: [:args :clauses :refer-clojure :clause] predicate: #{:refer-clojure} | |
In: [3 0] val: import fails spec: :clojure.core.specs/ns-require at: [:args :clauses :require :clause] predicate: #{:require} | |
In: [3 0] val: import fails spec: :clojure.core.specs/ns-import at: [:args :clauses :import :clause] predicate: #{:import} | |
In: [3 0] val: import fails spec: :clojure.core.specs/ns-use at: [:args :clauses :use :clause] predicate: #{:use} |
View WeArePPCG.user.js
This file contains 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
// ==UserScript== | |
// @name favicon | |
// @namespace Jarrett Atkinson | |
// @version 1 | |
// @grant none | |
// @icon https://i.stack.imgur.com/di36k.png | |
// ==/UserScript== | |
console.log('1'); |