- Run the binary. You should see
Killed: 9as output in the terminal. - Once the error happens, open the "Security & Privacy" control panel from System Preferences.
- The
Security & Privacypanel,Generaltab is updated with the info that the binary was prevented from running. ClickAllow Anyway. - Run the binary again. This time a different prompt is shown. Click
Open- the binary should run as you expect.
Below are two notifications from the Backpack.tf websocket. One is a normal listing and the other is a Marketplace.tf listing.
Also attached is the logic for detecting a "postlife" spell. A postlife spell is an items that was only avaliable after spells were removed from the game however through gitches it still got a spell.
Here is the list of rendezvous point for xmr-btc-swap Atomic swap
/dnsaddr/rendezvous.coblox.tech/p2p/12D3KooWQUt9DkNZxEn2R5ymJzWj15MpG6mTW84kyd8vDaRZi46o
/dns4/rendezvous.xmr.radio/tcp/8888/p2p/12D3KooWN3n2MioS515ek6LoUBNwFKxtG2ribRpFkVwJufSr7ro7
Following commands disables Microsoft AutoUpdate launch agent from launching at boot and periodicaly checking for updates.
sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist Disabled -bool YES
sudo defaults write /Library/LaunchAgents/com.microsoft.update.agent.plist RunAtLoad -bool NO
sudo chflags schg /Library/LaunchAgents/com.microsoft.update.agent.plist| # Source | |
| # Mastering Object-Oriented Python - Second Edition by Steven F. Lott Published by Packt Publishing, 2019 | |
| # https://learning.oreilly.com/library/view/mastering-object-oriented-python/9781789531367/c34be237-5ccd-4775-a0b0-ec1f7652f7bc.xhtml | |
| # | |
| from pathlib import Path | |
| # write JSON files: | |
| with Path("temp.json").open("w", encoding="UTF-8") as target: | |
| json.dump(travel3, target, default=blog_j2_encode) |
Instructions to obtain WireGuard details of your NordVPN account. These can be used to setup a WireGuard tunnel on your router to NordVPN.
Source: https://forum.gl-inet.com/t/configure-wireguard-client-to-connect-to-nordvpn-servers/10422/27
If you have any linux machine, use that or install a vm if you don't have one.
Get their official linux app installed. Make sure you have wireguard installed too. And set the used technology to Nordlynx by running nordvpn set technology nordlynx
| /* | |
| This allows you to get your Discord token via the Discord console. | |
| Why this method? | |
| - Simpler, just copy paste the function and call it, no need to monitor and manually look for headers | |
| - More accurate | |
| - More visually appealing | |
| This code is licensed under The Unlicense. For more information please visit https://unlicense.org/ |
gpg --export [email protected] > my_key.pub
The file can then be shared to other people.
This document was created back in 2020 and might not be actual nowadays. It is not supported anymore, so use thise information at your own risk.
- Download WSL2 Kernel
- run
wsl --set-default-version 2in windows command line, so that all future WSL machine will use WSL2.
| <script> | |
| let password = '' | |
| const hash = s => | |
| s.split('').reduce((a, b) => { | |
| a = (a << 5) - a + b.charCodeAt(0) | |
| return a & a | |
| }, 0) | |
| $: console.log(password, hash(password)) |