Save product.json to the following locations for your OS:
- Linux: $HOME/.config/VSCodium
- Mac: $HOME/Library/Application Support/VSCodium
| abstract class God { | |
| protected bool $AllKnowing = true; | |
| protected bool $Almighty = true; | |
| protected bool $AllWise = true; | |
| protected bool $Creator = true; | |
| protected bool $Eternal = true; | |
| protected bool $Immutable = true; // Unchanging! | |
| protected bool $Omnipresent = true; | |
| abstract public function role(); |
| """ | |
| Usage: python bring-back-window.py [--title WindowTitle] | |
| Example: python bring-back-window.py --title "Create a new Gist - Google Chrome" | |
| Depends on Python 3 and pywin32. | |
| """ | |
| import argparse, win32gui; | |
| def enum(hwnd, extra): |
| function escapePath (path) { | |
| // Handle Windows paths! | |
| return path.replace(/\\/g, '\\\\'); | |
| } | |
| const {app, BrowserWindow, session} = require('electron'); | |
| const path = require('path'); | |
| const AppPath = app.getAppPath(); | |
| const NodeModules = escapePath(path.resolve(AppPath, 'node_modules')); |