due today
not done
done today
| /** | |
| * Logseq custom theme by Gary Oberbrunner | |
| * TO USE: `@import url("https://oberbrunner.com/logseq/themes/garyo/custom.css");` | |
| */ | |
| /* Fonts: Hack */ | |
| @import url("https://cdn.jsdelivr.net/npm/[email protected]/build/web/hack.css"); | |
| /* === Colors based on OneNote === */ |
Recently, I converted to using ISO-8601 formatted dates as much as possible, e.g. 2020-06-12. As a meme, I hope this catches on. Dates written this way are internationally recognizable, no confusion over mm/dd/yy or dd/mm/yy. They are sortable. And, when used consistently, they are easy to search; no worries about case sensitivity, or Jun/June spellings. Don’t take my word for it, though. Randall Munroe agrees. So does GitLab.
Here's how to create a keyboard shortcut to insert the current date formatted as ISO-8601.
Launch Automator, and create a new Service.
This particular service receives no input.
Drag in Run AppleScript to the service.
| (ns gigasquid.gpt2 | |
| (:require [libpython-clj.require :refer [require-python]] | |
| [libpython-clj.python :as py])) | |
| ;https://huggingface.co/transformers/quickstart.html - OpenAI GPT-2 | |
| (require-python '(transformers)) | |
| (require-python '(torch)) | |
| (ns gigasquid.mxnet | |
| (:require [libpython-clj.require :refer [require-python]] | |
| [libpython-clj.python :as py] | |
| [clojure.string :as string])) | |
| (require-python '(mxnet mxnet.ndarray mxnet.module mxnet.io)) | |
| (require-python '(mxnet.test_utils)) | |
| (require-python '(mxnet.initializer)) | |
| (require-python '(mxnet.metric)) | |
| (require-python '(mxnet.symbol)) |
| ;; put this file in ~/.emacs.d/private/org-brain | |
| ;; then add org-brain into your dotspacemacs-configuration-layers in .spacemacs | |
| (defconst org-brain-packages | |
| '(org-brain) | |
| ) | |
| ;; see https://github.com/Kungsgeten/org-brain#setup-and-requirements | |
| (defun org-brain/init-org-brain () | |
| (use-package org-brain |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| \documentclass[10pt,landscape]{article} | |
| \usepackage{multicol} | |
| \usepackage{calc} | |
| \usepackage{ifthen} | |
| \usepackage[landscape]{geometry} | |
| \usepackage{hyperref} | |
| % based on latex cheat sheet https://wch.github.io/latexsheet/ | |
| % | |
| % To make this come out properly in landscape mode, do one of the following |
| { | |
| "alps": { | |
| "version": "1.0", | |
| "descriptor": [ | |
| { | |
| "id": "led-type", | |
| "name": "led", | |
| "type": "semantic", | |
| "descriptor": [ | |
| { |