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
- wsl2 | |
- ubuntu20 | |
- x410 | |
- doom-emacs | |
resources | |
- https://emacsredux.com/blog/2020/09/23/using-emacs-on-windows-with-wsl2/ | |
- https://github.com/hubisan/emacs-wsl | |
- https://github.com/hlissner/doom-emacs#install |
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
### Athens Research Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by Athens Research or its affiliates (“Athens Research”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Athens Research in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact [email protected]. | |
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions. | |
**Copyright License.** You hereby grant, and agree to grant, to Athens |
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
(defn dropdown | |
[display-name component-fn handle-click-outside] | |
(let [ref (atom nil)] | |
(r/create-class | |
{:display-name display-name | |
:component-did-mount (fn [_this] (listen js/document "mousedown" handle-click-outside)) | |
:component-will-unmount (fn [_this] (unlisten js/document "mousedown" handle-click-outside)) | |
:reagent-render (component-fn ref)}))) | |
(defn menu-dropdown-component |
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 ideajoin | |
set surround | |
set commentary | |
let mapleader=" " | |
set easymotion | |
map <leader>f <Plug>(easymotion-s) | |
map <leader>t <Plug>(easymotion-t) |
This file has been truncated, but you can view the full file.
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
var $jscomp = {}; | |
var shadow$provide = {}; | |
if (typeof Math.imul == "undefined" || Math.imul(0xffffffff, 5) == 0) { | |
Math.imul = function (a, b) { | |
var ah = (a >>> 16) & 0xffff; | |
var al = a & 0xffff; | |
var bh = (b >>> 16) & 0xffff; | |
var bl = b & 0xffff; | |
// the shift by 0 fixes the sign on the high part | |
// the final |0 converts the unsigned value into a signed value |
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
(defn ignore | |
[expr] ;; expression evaluated | |
nil) | |
(ignore (pr "hello world")) | |
(defmacro ignore | |
[expr] ;; expression never evaluated | |
nil) |
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
.rm-page-ref { | |
font-weight: bold; | |
} | |
a:hover, .rm-page-ref:hover { | |
font-style: italic; | |
} | |
.rm-page-ref-link-color { | |
color: #1aae9f; /* teal */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
''' | |
author: | |
@tangjeff0 | |
https://www.notion.so/tangjeff0/Public-Home-0e2636bd409b454ea64079ad8213491f | |
inspired by: https://praxis.fortelabs.co/p-a-r-a-iii-building-an-idea-generator-400347ef3bb6/ | |
with help from: https://medium.com/@jamiealexandre/introducing-notion-py-an-unofficial-python-api-wrapper-for-notion-so-603700f92369 | |
credits: | |
@jamiealexandre |
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
''' | |
class signatures | |
''' | |
''' | |
everything is an object in ruby | |
everything is a system in the universe. when emergent properties emerge is the | |
line for a system | |
''' | |
class System: |
NewerOlder