Example of 4513ECHO/vim-snipewin
This file contains hidden or 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
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/after/ftplugin/help.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/after/syntax/diff.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/after/syntax/json.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/after/syntax/vim.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/autoload/lightline/colorscheme/mini.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/autoload/lightline/component/vimrc.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/autoload/pinkyless/keyboard/JIS.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/autoload/quickrun/hook/denops_interrupt.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/autoload/user.vim | |
https://github.com/4513ECHO/dotfiles/blob/main/config/nvim/autoload/user/colorscheme.vim |
This file contains hidden or 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 { CsvParseStream } from "https://deno.land/[email protected]/csv/csv_parse_stream.ts"; | |
const file = await Deno.open("data.csv"); | |
const stream = file.readable | |
.pipeThrough(new TextDecoderStream("shift-jis")) | |
.pipeThrough(new CsvParseStream()); | |
for await (const record of stream) { | |
console.log(record); | |
} |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:C2DB74FEBDBD70BAB486B87D0A1D7A083E45B697]
This file contains hidden or 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
{"weight":400,"italic":false,"alternates":{"cv01":false,"cv02":true,"cv03":false,"cv04":false,"cv05":false,"cv06":true,"cv07":false,"cv08":true,"cv09":false,"cv10":false,"cv11":false},"features":{"ss01":false,"ss02":false,"ss03":true,"ss04":true,"ss05":true},"letterSpacing":0,"lineHeight":1} |
This file contains hidden or 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
#!/usr/bin/env -S deno run --allow-read=.,/etc/ssh/sshd_config --allow-write=/etc/ssh/sshd_config | |
import { parseArgs } from "https://deno.land/[email protected]/cli/parse_args.ts"; | |
import { TextLineStream } from "https://deno.land/[email protected]/streams/text_line_stream.ts"; | |
import { ensure, is } from "https://deno.land/x/[email protected]/mod.ts"; | |
/* Usage: | |
* ./sshd_config.ts --config=<FILE> [--dry-run] [--sshd-config=<FILE>] | |
* --config=<FILE> Path to the JSON file containing the sshd_config options | |
* --dry-run Do not write to the sshd_config file (default: false) | |
* --sshd-config=<FILE> Path to the sshd_config file (default: /etc/ssh/sshd_config) |
This file contains hidden or 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 { createGraph } from "jsr:@deno/graph@^0.81.3"; | |
import { relative } from "jsr:@std/path@^1.0.2/relative"; | |
import { resolve } from "jsr:@std/path@^1.0.2/resolve"; | |
import { toFileUrl } from "jsr:@std/path@^1.0.2/to-file-url"; | |
import { digraph, toDot } from "npm:ts-graphviz@^2.1.2"; | |
const [entrypoint, baseDir] = Deno.args; | |
const graph = await createGraph( | |
toFileUrl(resolve(entrypoint)).href, |
OlderNewer