- Broadly speaking a lottery is a game in which the players each receive a number of lottery balls with their name on them. Those balls are placed in a sack. A ball is selected from the sack at random. The winner is the player whose name is on the selected ball.
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
| """ | |
| The most atomic way to train and inference a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
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 org.niskin.micha.update-in-matching | |
| (:require [clojure.core.match :as match])) | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;; misc helpers | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| (defn- cartesian-product | |
| " | |
| Example: |
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 daggerml.app.dml.control | |
| (:require | |
| [daggerml.app.ui :refer [deftag]] | |
| [daggerml.cells :refer [cell=]] | |
| [daggerml.ui :as ui])) | |
| (defn FORM | |
| [& args] | |
| (doto (apply ui/FORM args) | |
| (ui/on! :submit #(.preventDefault %)))) |
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 daggerml.main | |
| (:require | |
| [daggerml.ui :as u :refer [BODY BUTTON DIV H1 HR IMG P SHADOW-ROOT SLOT | |
| SPAN STYLE deftag]] | |
| [daggerml.cells :as c :refer [cell cell= watch=]])) | |
| (deftag FLAT-BUTTON | |
| [[] [^:default slot1] _] | |
| (SHADOW-ROOT | |
| (STYLE "@import 'css/main.css';:host{display:block;}") |
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 org.niskin.micha.xform | |
| (:require [clojure.walk :as walk])) | |
| (declare ^:dynamic *scope*) | |
| (declare ^:dynamic *scopes*) | |
| (def ^:private empty-env | |
| {::default {:defs [] :rules {} :scope {}}}) | |
| ;; helpers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
| <layout class="ch.qos.logback.classic.PatternLayout"> | |
| <pattern> | |
| %d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n | |
| </pattern> | |
| </layout> | |
| </appender> |
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
| #!/usr/bin/env bash | |
| prog=$0 | |
| warn() { [ $# -gt 0 ] && echo $prog: "$@" 1>&2; } | |
| abort() { warn "$@"; exit 1; } | |
| usage() { | |
| warn "$@" | |
| cat <<EOT |
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 adzerk.instant-counts-updater.api | |
| (:require | |
| [clj-statsd :as s] | |
| [cheshire.core :as json] | |
| [clojure.java.io :as io] | |
| [clojure.string :as string] | |
| [clojure.tools.logging :as log] | |
| [amazonica.aws.s3 :as s3] | |
| [amazonica.aws.sqs :as sqs] | |
| [amazonica.aws.dynamodbv2 :as ddb] |
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
| augroup micha | |
| autocmd! | |
| autocmd BufNewFile,BufRead *.cljs.hl,*.boot set filetype=clojure | |
| autocmd BufNewFile,BufRead *.html.hl set filetype=html | |
| autocmd BufNewFile,BufRead *.md set filetype=markdown | |
| autocmd BufWritePost ~/.vimrc so ~/.vimrc | |
| autocmd FileType clojure setlocal lispwords+=doto->>,doto-when,eval,eval-str,page,cell-let,this-as,add-watch,do-watch,elem,alter-var-root,vary-meta,alter-meta!,task-when,specify!,GET,POST,pdoseq,ns+,loop-tpl,for-tpl,if-tpl,cond-tpl,when-tpl,case-tpl,doiter,formula-of,formulet,fdef | |
| autocmd FileType clojure let g:clojure_fuzzy_indent_patterns = ['^with', '^def', '^let', '^-[a-zA-Z]'] | |
| autocmd FileType html setlocal foldmethod=indent | |
| augroup END |
NewerOlder