- 100% — FF
- 99% — FC
- 98% — FA
- 97% — F7
Set-ExecutionPolicy Bypass -Scope Process -Force
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))
PowerShellGet\Install-Module posh-git -Scope CurrentUser -Force
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
| function flow(...fns) { | |
| return arg => fns.reduce((res,fn) => fn(res),arg); | |
| } | |
| function partial(fn,initialArgs) { | |
| return (nextArgs = []) => fn(...initialArgs,...nextArgs); | |
| } | |
| function pick(prop) { | |
| return obj => obj[prop]; | |
| } | |
| function prepend(prefix) { |
debug.addConfiguration
debug.installAdditionalDebuggers
debug.logToDebugConsole
debug.removeBreakpoint
debug.removeWatchExpression
debug.renameWatchExpression
debug.setVariable
debug.toggleBreakpoint
editor.action.addCommentLinePeople
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
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 fs from 'node:fs' | |
| import os from 'node:os' | |
| import fg from 'fast-glob' | |
| import chalk from 'kolorist' | |
| import workerpool from 'workerpool' | |
| const maxWorkers = Math.ceil(os.cpus().length / 3) | |
| const pool = workerpool.pool(`${__dirname}/worker.js`, { maxWorkers, workerType: 'thread' }) |
NewerOlder
