This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
This script detects apps with not yet updated versions of Electron.
Repo: https://github.com/tkafka/detect-electron-apps-on-mac
See:
Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.
Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1
| final EzSchema userProfileSchema = EzSchema.shape({ | |
| "firstName": EzValidator<String>().required(), | |
| "lastName": EzValidator<String>().required(), | |
| "email": EzValidator<String>().required().email(), | |
| "age": EzValidator<int>().min(18).max(100), | |
| 'contactDetails': EzSchema.shape({ | |
| 'mobile': EzValidator<String>() | |
| .required() | |
| .matches(RegExp(r'^\+\d{10,15}$'), 'Invalid phone number'), | |
| 'landline': EzValidator<String?>(optional: true), |
| Function Convert-Image | |
| { | |
| Param ( | |
| [Parameter(Mandatory = $true)] | |
| [string]$Name, | |
| [Parameter(Mandatory = $true)] | |
| [string]$Tag, | |
| [Parameter(Mandatory = $false)] |
| using System.Net; | |
| using System.Text; | |
| var port = 8080; | |
| var server = new Server(port); | |
| server.UseAuthentication(); | |
| server.UseRouting(); | |
| server.UseNotFoundPage(); |
Can be used for streaming data (webcam or screen capture) from the Windows to WSL
Run from a WSL terminal
ip route list default | awk '{print $3}'| alias getsecret="_getsecret" | |
| # ~/.secrets/secrets.json !!! chmod 400 | |
| # { | |
| # "group1": { | |
| # "secret1":"value", | |
| # "secret2":"value" | |
| # }, |
| #Finder - Full Path in the Title | |
| defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES|NO | |
| #Finder - Show All Files | |
| defaults write com.apple.finder AllShowAllFiles TRUE|FALSE | |
| #Finder - Add Quit to Menu | |
| defaults write com.apple.finder QuitMenuItem -bool TRUE|FALSE && killall Finder | |
| #Dialogs Print - Show the Extended Print Dialog by default |