- No indent
- One indent
- Two indent
- Three indent
- Four indent
- Five indent
- Four indent
- Three indent
- Two indent
- One indent
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
use axum::{ | |
async_trait, | |
extract::{ | |
FromRequest, | |
FromRequestParts, | |
}, | |
http::{ | |
request::Parts, | |
StatusCode, | |
}, |
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
# Mouse support | |
set -g mouse on | |
# Set prefix to Ctrl-Space | |
unbind C-b | |
set -g prefix C-Space | |
bind C-Space send-prefix | |
# Ctrl-j/k to swap windows. | |
bind -n C-J previous-window |
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
import { DataModel, Doc, Id, TableNames } from "./_generated/dataModel"; | |
import { GenericDatabaseReader, GenericDatabaseWriter } from "convex/server"; | |
type Database = | |
| GenericDatabaseReader<DataModel> | |
| GenericDatabaseWriter<DataModel>; | |
type DocWithId< | |
Table extends TableNames, |
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
info esy build 0.5.6 (using package.json) | |
info building [email protected]@d41d8cd9 | |
error: build failed with exit code: 1 | |
build log: | |
# esy-build-package: building: [email protected] | |
# esy-build-package: pwd: /Users/kad/.esy/source/i/reason_fontkit__2.4.1__62b9ec9c | |
# esy-build-package: running: 'dune' 'build' '--root' '.' | |
ocamlopt src/fontkit.cmxs (exit 2) | |
(cd /Users/kad/.esy/3_____________________________________________________________________/b/reason_fontkit-2.4.1-d053e44e/default && /Users/kad/.esy/3_____________________________________________________________________/i/ocaml-4.7.1004-e5a2754f/bin/ocamlopt.opt -w @a-4-29-40-41-42-44-45-48-58-59-60-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -shared -linkall -I src -o src/fontkit.cmxs src/fontkit.cmxa) | |
ld: warning: directory not found for option '-L/opt/local/lib' |
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
test("Basic Table", ({expect}) => { | |
let actual = | |
<Format> | |
<Table | |
borderStyle=SimpleLines | |
columns=[ | |
<ColumnConfig width=8 />, | |
<ColumnConfig width=16 />, | |
<ColumnConfig width=8 />, | |
]> |
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
info esy build 0.3.4 | |
info building [email protected]: starting | |
info building [email protected]: starting | |
info building [email protected]: starting | |
error: build failed | |
build log: | |
# esy-build-package: building: [email protected] | |
# esy-build-package: running: 'make' 'build-glfw' 'ROOTDIR=/home/kad/.esy/3______________________________________________________________________/b/reason_glfw-3.2.1002-cc7ebf59' | |
echo Library: /home/kad/.esy/3______________________________________________________________________/b/reason_glfw-3.2.1002-cc7ebf59/_build/glfw/src | |
Library: /home/kad/.esy/3______________________________________________________________________/b/reason_glfw-3.2.1002-cc7ebf59/_build/glfw/src |
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
# 0.14 frontend - input | |
[ "protocol", "version", 3 ] | |
# 0.14 Mconfig - normalize | |
{ | |
"ocaml": { | |
"include_dirs": [], | |
"no_std_include": false, | |
"unsafe": false, | |
"classic": false, | |
"principal": false, |
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
let a = 1; |
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
/** | |
* Copyright 2004-present Facebook. All Rights Reserved. | |
* | |
* See: https://github.com/chalk/ansi-styles | |
*/ | |
module IntMap = | |
Map.Make( | |
{ | |
type t = int; | |
let compare = compare; |
NewerOlder