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
| {"version":"2025-11-04-lonely-mantle","download_timestamp":1762251119,"checksums":{"registry.json.zip":"5f9c8f212e349ed64d146e55dc9421edd825ea18bc25c416546c048b1ac99958","registry.json":"f508aaf775176cbe83b7c211aada06ae208388bc9a8b5d7167dea188d980bc88"}} |
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
| [ | |
| { | |
| "name": "actionlint", | |
| "description": "Static checker for GitHub Actions workflow files.", | |
| "homepage": "https://github.com/rhysd/actionlint", | |
| "licenses": [ | |
| "MIT" | |
| ], | |
| "languages": [ | |
| "YAML" |
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
| // cli.js in the app | |
| #!/usr/bin/env node | |
| import path from "path" | |
| console.log("Hello dynamic import") | |
| // load file and run | |
| const rootDir = process.cwd(); |
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 sys | |
| from os import path | |
| from pypdf import PdfMerger | |
| from glob import glob | |
| path_arg = sys.argv[1] | |
| folder = path.abspath(path_arg) | |
| if not path.isdir(folder): |
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
| package main | |
| import "fmt" | |
| func main() { | |
| fromIds := []string{"1", "2", "3", "4", "5", "6", "7", "9"} | |
| toIds := []string{"3", "6", "4", "6", "", "9", "3", "5"} | |
| endpoint := findNewtworkEndpoint("9", fromIds, toIds) |
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
| const grid: number[][] = [ | |
| [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0], | |
| [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], | |
| [0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1], | |
| [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1], | |
| [1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1], | |
| [0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1], | |
| [1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], | |
| [1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0], | |
| [0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0], |
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
| github.new # Github Repository | |
| repo.new # Github Repository | |
| gist.new # Gist | |
| docs.new # Google Document | |
| doc.new # Google Document | |
| sheet.new # Google Sheet | |
| sheets.new # Google Sheet | |
| slide.new # Google Slide | |
| slides.new # Google Slide | |
| form.new # Google Form |
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
| " yank to clipboard | |
| if has("clipboard") | |
| set clipboard=unnamed " copy to the system clipboard | |
| if has("unnamedplus") " X11 support | |
| set clipboard+=unnamedplus | |
| endif | |
| endif | |
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
| class Car { | |
| constructor(make, model, price, color) { | |
| this.make = make; | |
| this.model = model; | |
| this.price = price; | |
| this.color = color; | |
| } | |
| printCarInfo() { | |
| console.log("-------------------------------"); | |
| console.log("Car: " + this.make + "(" + this.model + ")"); |
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
| filetype plugin on | |
| call plug#begin('~/.config/nvim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'junegunn/fzf', { 'do': './install --bin' } | |
| Plug 'junegunn/fzf.vim' | |
| Plug 'prettier/vim-prettier', { | |
| \ 'do': 'yarn install', | |
| \ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'yaml', 'html'] } | |
| Plug 'mbbill/undotree' |
NewerOlder