Add to ~/.ssh/config:
Host *
# Enable persistent connection multiplexing
ControlMaster auto
ControlPath ~/.ssh/-%r@%h:%p
ControlPersist 600
| \033[38;2;23;147;209m A | |
| /#\ | |
| /###\ | |
| /#####\ | |
| /#######\ | |
| _ "=######\ | |
| /##=,_\#####\ | |
| /#############\ | |
| /###############\ | |
| /#################\ |
| -------------------------------------------------------------------------------- | |
| <WinProcess "smss.exe" pid 368 at 0x5306908L> | |
| 64 | |
| [!!] Invalid rpcrt4 base: 0x0 vs 0x7ffec24f0000 | |
| -------------------------------------------------------------------------------- | |
| <WinProcess "csrss.exe" pid 472 at 0x5306e48L> | |
| 64 | |
| Interfaces : | |
| Endpoints : |
This is a story about how I tried to use Go for scripting. In this story, I’ll discuss the need for a Go script, how we would expect it to behave and the possible implementations; During the discussion I’ll deep dive to scripts, shells, and shebangs. Finally, we’ll discuss solutions that will make Go scripts work.
While python and bash are popular scripting languages, C, C++ and Java are not used for scripts at all, and some languages are somewhere in between.
| /* https://help.obsidian.md/callouts#Customize%20callouts */ | |
| /* Colors */ | |
| .callout[data-callout-metadata="red"] { | |
| --callout-color: var(--color-red-rgb); | |
| } | |
| .callout[data-callout-metadata="blue"] { | |
| --callout-color: var(--color-blue-rgb); | |
| } | |
| .callout[data-callout-metadata="purple"] { |
| #!/bin/bash | |
| # Enable auto hide. | |
| defaults write com.apple.dock autohide -bool true | |
| # Hide process indicators. | |
| defaults write com.apple.dock show-process-indicators -bool false | |
| # Set orientation. | |
| defaults write com.apple.dock orientation -string left |
| Product Year Version Product Keys | |
| Visual Studio 2026 18.x | |
| Professional: NVTDK-QB8J9-M28GR-92BPC-BTHXK | |
| Enterprise: VYGRN-WPR22-HG4X3-692BF-QGT2V | |
| https://x.com/massgravel/status/1988306014371008542 | |
| Visual Studio 2022 2021 17.x Professional: | |
| TD244-P4NB7-YQ6XK-Y8MMM-YWV2J | |
| Enterprise: |
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
Console tabThere are multiple options how to install MS Office on Linux.
VM-based - Integrate Windows apps running in a Windows virtual machine as native-looking in Linux
| using Xilium.CefGlue; | |
| namespace YOURNAMESPACE; | |
| public class ActionTask : CefTask | |
| { | |
| private readonly Action _action; | |
| public ActionTask(Action action) => _action = action; |