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
<script> | |
window.intercomSettings = { | |
app_id: “m86iqlk9” | |
}; | |
function parseJwt (token) { | |
var base64Url = token.split(‘.’)[1]; | |
var base64 = base64Url.replace(/-/g, ‘+’).replace(/_/g, ‘/‘); | |
return JSON.parse(window.atob(base64)); | |
}; |
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
(use 'prc) | |
;;; ----- Bar chart ----- | |
(defn roll-die [num-sides] | |
(inc (rand-int num-sides))) | |
(defn roll-dice [num-sides num-dice] | |
(->> (repeatedly num-dice #(roll-die num-sides)) | |
(reduce +))) |
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
(ns apples.core | |
(:require [play-clj.core :refer :all] | |
[play-clj.g2d :refer :all] | |
[play-clj.math :refer :all])) | |
(declare apples main-screen) | |
(def speed 14) | |
(defn- get-direction [] | |
(cond |