Here's a list of my issues with the Brave web browser (www.brave.com).
https://github.com/brave/browser-laptop/projects/1
- Reddit Enhancement Suite (http://redditenhancementsuite.com/)
- BetterTTV (http://www.nightdev.com/betterttv/)
(ann player-character String) | |
(def player-character | |
"The character that represents the player." | |
"@") | |
(ann find-player | |
[(IPersistentVector (IPersistentVector Any)) | |
-> | |
(Vector* Number Number)]) | |
(defn find-player |
#!/usr/bin/env bash | |
# Removes trailing spaces from entire window. | |
# Run as `trail` (no | or < necessary) | |
# Inspired by: | |
# http://www.mostlymaths.net/2013/03/extensibility-programming-acme-text-editor.html | |
echo -n "0,$" | 9p write acme/$winid/addr | |
9p read acme/$winid/body | sed 's/ *$//g' | 9p write acme/$winid/data | |
echo -n "0,0" | 9p write acme/$winid/addr |
(t/ann ^:no-check history-cmd [t2/Game -> String]) | |
(defn history-cmd | |
"The history command." | |
[game] | |
(str "*** START HISTORY ***" | |
(w/walk #(str "\n> " (:command %) "\n\n" (:response %) "\n") | |
#(apply str %) | |
(if (< (count (:turn-history game)) 4) | |
(:turn-history game) | |
(subvec (:turn-history game) (- (count (:turn-history game)) 4)))) |
;; Trying to annotate a comparator that sorts a list of namespaces alphabetically | |
zork-fortress.core=> (clojure.core.typed/cf (comp (t/fn [ns1 :- clojure.lang.Namespace ns2 :- clojure.lang.Namespace] :- t/Num (compare (str ns1) (str ns2))))) | |
Type Error (/private/var/folders/s1/t0k7x43122ggbclq88zgjl400000gn/T/form-init8319721319789341749.clj:1:24) Polymorphic function comp could not be applied to arguments: | |
Polymorphic Variables: | |
x | |
y | |
b | |
Domains: |
Here's a list of my issues with the Brave web browser (www.brave.com).
https://github.com/brave/browser-laptop/projects/1
I hereby claim:
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 1LDneyt7jTNqkj9e3jqoT5PyktYNJidHhV |
#!/bin/bash | |
PACKAGE_MANAGERS=() | |
PACKAGE_MANAGERS+=("apt") | |
apt_clean() { | |
sudo apt autoremove | |
} | |
apt_search() { | |
apt search $1 |