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
{:entities | |
[{:type union | |
:entities [{:type :sphere | |
:diameter 6 | |
:transformations {:translate {:x 6} | |
:rotate-x 1}} | |
{:type :cube | |
:width 10 | |
:length 10 | |
:transformations {:scale {:size 0.5}}}]} |
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
;;; This is only needed once, near the top of the file | |
(defvar bootstrap-version) | |
(let ((bootstrap-file | |
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) | |
(bootstrap-version 5)) | |
(unless (file-exists-p bootstrap-file) | |
(with-current-buffer | |
(url-retrieve-synchronously | |
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el" | |
'silent 'inhibit-cookies) |
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
//gzmask's remapping of the keys | |
api.unmap('B'); | |
api.unmap('F'); | |
api.cmap('<Ctrl-j>', '<Tab>'); | |
api.cmap('<Ctrl-k>', '<Shift-Tab>'); | |
api.map('J', 'E'); | |
api.map('K', 'R'); |
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
set -g base-index 1 | |
set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 | |
set -g mouse on | |
set -sg escape-time 0 | |
setw -g mode-keys vi | |
setw -g monitor-activity on | |
unbind-key j |
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
# source this file in .bashrc | |
# shortcuts | |
alias v=/usr/bin/nvim | |
#alias e="/usr/local/bin/emacs-25.1 --insecure&" | |
function e () { /usr/local/bin/emacs-25.1 --insecure "$1" & } | |
alias w="cmd.exe /c start" | |
alias gui-start="/mnt/c/Program\ Files/VcXsrv/vcxsrv.exe :0 -ac -terminate -lesspointer -multiwindow -clipboard -wgl&" | |
alias gui-stop="cmd.exe /c taskkill /IM vcxsrv.exe /F" |
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
{ | |
"alloc": { | |
"gzmask2cbd23b783741e8d7fcf51e459b4gzmask": { | |
"balance": "1606938044258990275541962092341162602522202993782792835301376" | |
}, | |
"gzmask9544a56c530d868e4bfbacb17231gzmask": { | |
"balance": "1606938044258990275541962092341162602522202993782792835301376" | |
} | |
}, | |
"nonce": "0x000000000000002a", |
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
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
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
set gdefault | |
" colorscheme | |
set cuc cul | |
hi CursorColumn ctermbg=17 | |
hi CursorLine cterm=none ctermbg=17 | |
if has("gui_running") | |
colorscheme torte | |
set transparency=15 | |
endif |
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 count-change) | |
(defn cart [colls] | |
(if (empty? colls) | |
'(()) | |
(for [x (first colls) | |
more (cart (rest colls))] | |
(cons x more)))) | |
(defn noseq? [x] |
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 nim) | |
(defn nim-sum [state] | |
(apply bit-xor state)) | |
(defn next-move [[i k] state] | |
(cond | |
(<= (inc k) (nth state i)) [i (inc k)] | |
(and (< (inc i) (count state)) (not= (nth state (inc i)) 0)) [(inc i) 1] | |
(>= (inc i) (dec (count state))) nil |
NewerOlder