To install Scoop (official docs), execute in Powershell:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh -outfile 'install-scoop.ps1'
get-help .\install-scoop.ps1
.\install-scoop.ps1
To install Scoop (official docs), execute in Powershell:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh -outfile 'install-scoop.ps1'
get-help .\install-scoop.ps1
.\install-scoop.ps1
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++. It is used in Chrome and in Node.js, among others. It implements ECMAScript and WebAssembly, and runs on Windows 7 or later, macOS 10.12+, and Linux systems that use x64, IA-32, ARM, or MIPS processors. V8 can run standalone, or can be embedded into any C++ application.
SpiderMonkey is Mozilla’s JavaScript and WebAssembly Engine, used in Firefox, Servo and various other projects. It is written in C++, Rust and JavaScript. You can embed it into C++ and Rust projects, and it can be run as a stand-alone shell. It can also be [compiled](https://bytecodealliance.org/articles/making-javascript-run-fast-on
| #!/bin/sh | |
| # Wakka: A package manager wrapper. | |
| # Provides a consistent interface across multiple package managers. | |
| # Currently supports: apt (Debian/Ubuntu), yum (Red Hat/CentOS), | |
| # dnf (Fedora), apk (Alpine), and brew (macOS). | |
| WAKKA_VERSION="1.0.0" | |
| print_help() { |
| #!/usr/bin/env ruby | |
| # Read from stdin rather than file. | |
| file_data = $stdin.read | |
| # Upper case title | |
| re = /^#* .+/ | |
| file_data.gsub!(re) { |match| "*#{match.upcase}*"} | |
| # Mutate todos |
| # Use new Synology CLI tool -> `synopkgctl` | |
| #usage: synopkgctl <command> [...] | |
| #command: | |
| # enable <package> | |
| # disable <package> | |
| # setup <package> | |
| # start <package> | |
| # stop <package> | |
| # teardown <package> |
| let auth0Domain = "https://yourdomain.com" | |
| let userIdMappingFile = "/userDataMapping.json" | |
| let doesUserExistInAuth0DataBase = async (email, password) => { | |
| let config = { | |
| method: "post", | |
| url: auth0Domain + "/oauth/token", | |
| headers: { |
| #!/usr/bin/env ruby | |
| filename = "/Users/hyuan/Development/bin/tmp/tmp_slack_md.txt" | |
| file = File.open(filename) | |
| file_data = file.read | |
| # Upper case title | |
| re = /^#* .+/ | |
| file_data.gsub!(re) { |match| "*#{match.upcase}*"} |
| javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = ""; | |
| /* Optional folder name such as "Clippings/" */ |
/: Root directory, present on virtually all UNIX based file systems. Parent directory of all other files
.DS_Store: This file contains Finder settings, such as icon location, position of icons, choice of a background image, window size and the names of all files (and also directories) in that folder. The file will appear in any directory that you’ve viewed with the Finder and and has functions similar to the file desktop.ini in Microsoft Windows. .DS_Store is an abbreviation of Desktop Services Store
.DocumentRevisions-V100/: DocumentRevisions-V100 is an internal version control system introduced by Apple in OSX Lion. It basically saves a copy of a file each and every time you save it. Apple uses it for TextEdit, KeyNote, Pages, Numbers, and some other programs. Developers can also interact with this API in their apps. Basically this system is a very big database file that keeps track of all your changes to documents and allows you to revert back to any versions.
.fseventsd/: fseventsd is a “File sys
| import { getCommand } from "./lib"; | |
| import { printCommand } from "./util"; | |
| import process from "process"; | |
| function main() { | |
| const [ | |
| // eslint-disable-next-line @typescript-eslint/no-unused-vars | |
| _, | |
| // eslint-disable-next-line @typescript-eslint/no-unused-vars | |
| __, |