code --folder-uri "vscode-remote://ssh-remote+remote_server_goes_here/folder/on/remote/host/here
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 { $ } from 'dax-sh'; | |
| import toml from '@ast-grep/lang-toml'; | |
| import rust from '@ast-grep/lang-rust'; | |
| import type { Edit, SgNode } from '@ast-grep/napi'; | |
| import type { Kinds, TypesMap } from '@ast-grep/napi/types/staticTypes'; | |
| import { parseAsync, registerDynamicLanguage } from '@ast-grep/napi'; | |
| import glob from 'fast-glob'; | |
| import { assert } from 'vitest'; | |
| import { parse as yamlParse } from 'yaml'; | |
| const globStream = glob.stream; |
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 xdg-open | |
| [Desktop Entry] | |
| Version=1.0 | |
| Terminal=false | |
| Type=Application | |
| Name=Cockpit Local | |
| MimeType=x-scheme-handler/ssh | |
| Exec=/usr/libexec/cockpit-desktop / %u | |
| Icon=/usr/share/cockpit/branding/default/apple-touch-icon.png | |
| StartupWMClass=cockpit-client |
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
| /// <reference types="E:\\Share\\dev\\pnpm\\node_modules\\@types\\node" /> | |
| import { access, copyFile, mkdir, readFile, writeFile } from 'node:fs/promises'; | |
| import { resolve } from 'node:path'; | |
| import { createInterface } from 'node:readline'; | |
| import { createWriteStream } from 'node:fs'; | |
| const DRIVE_LETTER = 'F:'; | |
| // Check for --u6143 flag to bypass prompt | |
| const isU6143 = process.argv.includes('--u6143'); |
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
| # Generated by Powerlevel10k configuration wizard on 2024-09-04 at 21:43 PDT. | |
| # Based on romkatv/powerlevel10k/config/p10k-lean.zsh, checksum 04242. | |
| # Wizard options: nerdfont-complete + powerline, small icons, unicode, lean, 24h time, | |
| # 2 lines, solid, full frame, lightest-ornaments, compact, many icons, concise, | |
| # transient_prompt, instant_prompt=verbose. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with lean prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # |
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
| create | |
| dev | |
| diagnostics | |
| gaming | |
| init | |
| office |
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
| // require modules | |
| const fs = require('fs') | |
| const path = require('path') | |
| const archiver = require('archiver') | |
| const IS_CI = !!(process.env.CIRCLECI || process.env.GITHUB_ACTIONS) | |
| const ProgressBar = !IS_CI ? require('progress') : {} | |
| const readDirGlob = !IS_CI ? require('readdir-glob') : {} | |
| const INCLUDE_GLOBS = [ | |
| 'build/**', |
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 { parse } from "https://deno.land/std@0.112.0/flags/mod.ts"; | |
| const HELP_TEXT = ` | |
| usage: this-file <steam username> <target steam library directory> [--no-verify] | |
| usage (as script): deno run -A ./update-verify.ts <steam username> <target steam library directory> [--no-verify] | |
| You can alternatively specify <username> and <library> with any alias. e.g. | |
| -u <username> | |
| --user <username> | |
| --username <username> | |
| --user=<username> |
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
| { | |
| "prettier.enable": false, | |
| "typescript.preferences.importModuleSpecifierEnding": "js", | |
| "workbench.editor.tabSizing": "fit", | |
| "workbench.editor.decorations.colors": true, | |
| "workbench.editor.wrapTabs": true, | |
| "synthwave84.disableGlow": true, | |
| "scm.alwaysShowActions": true, | |
| "scm.alwaysShowRepositories": true, | |
| "editor.suggestSelection": "first", |
NewerOlder