-
Download and install these two CLI tools:
-
Create a permanent folder on your file explorer named something like
BetterDiscordReinstall
. -
Depending on your Discord client, place the two batch programs in the folder:
For some reason, Twilio has disabled the ability to install the iPad version of Authy on Apple Silicon Macs. With Authy Desktop also being discontinued, this means that there is no longer an official way to use the Authy app on macOS anymore. This guide is a workaround I found to trick sideloaded versions of Authy into signing in successfully, and using that with a sideloaded version of the Authy iPad app on macOS gives us the ability to use Authy on Mac again.
What's needed for this guide:
- An iOS/iPadOS device with Authy installed normally
- An Apple Silicon Mac with Authy sideloaded
- mitmproxy
- A decrypted and signed Authy IPA
- Technical skill and patience
import requests | |
import logging | |
from typing import List, Set | |
from datetime import datetime | |
from time import sleep | |
# CHANGE THESE | |
API_KEY = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" | |
MAGNET_FILE = "newline-seperated-magnet-links.txt" |
This is a fake exploit scam on gift card sites.
The scam seems to be atleast distributed here:
- https://pastebin.com/u/Scripts223
- https://pastebin.com/u/rafaelubatuba
- https://pastebin.com/u/HizaelExploit
The usescript is under handle "Hadez", one of the google drive documents is made on Google account:
[email protected]
- Name:
hihuchanafare
// ==UserScript== | |
// @name Medium Paywall Bypass | |
// @namespace Violentmonkey Scripts | |
// @run-at document-start | |
// @match *://*.medium.com/* | |
// @grant none | |
// @version 2.4_3 | |
// @inject-into content | |
// @updateURL https://gist.githubusercontent.com/zzJinux/364725e7c61810719286d94e88a4e38c/raw/medium.user.js | |
// @downloadURL https://gist.githubusercontent.com/zzJinux/364725e7c61810719286d94e88a4e38c/raw/medium.user.js |
git clone https://github.com/OpenDevin/OpenDevin.git | |
cd OpenDevin | |
conda create -n od python=3.10 | |
conda activate od | |
docker ps | |
(optional) install docker if not already installed | |
docker pull ghcr.io/opendevin/sandbox | |
export OPENAI_API_KEY={your key} | |
(optional I had to install rust) curl --proto '=https' --tlsv1.2 -sSf [https://sh.rustup.rs](https://sh.rustup.rs/) | sh | |
(optional) restart terminal |
Good question! I am collecting human data on how quantization affects outputs. See here for more information: ggml-org/llama.cpp#5962
In the meantime, use the largest that fully fits in your GPU. If you can comfortably fit Q4_K_S, try using a model with more parameters.
See the wiki upstream: https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix
// ==UserScript== | |
// @name Medium Paywall Bypass | |
// @namespace Violentmonkey Scripts | |
// @run-at document-start | |
// @match *://*.medium.com/* | |
// @match *://medium.com/* | |
// @match *://*/* | |
// @grant none | |
// @version 2.4 | |
// @inject-into content |
Docker compose has nice support for GPUs, K8s has moved their cluster-wide GPU scheduler from experimental to stable status. Docker swarm has yet to support the device
option used in docker compose
so the mechanisms for supporting GPUs on swarm are a bit more open-ended.
- NVIDIA container runtime for docker. The runtime is no longer required to run GPU support with the docker cli or compose; however, it appears necessary so that one can set
Default Runtime: nvidia
for swarm mode. - docker compose GPU support
- Good GitHub Gist Reference for an overview on Swarm with GPUs. It is a bit dated, but has good links and conversation.
- [Miscellaneous Opt
I've been using wsl
(version 2) with genie
mod for years without issue, but one day, Windows 10 finally catch up on wsl
Windows 11 features and gives us a way to use systemD
natively.
I wanted to use the new "right way" to enable systemD
on Windows Subsystem for Linux (without genie
), and I also had a (probably related) infinite Windows RemoteApp error poping in.
- In powershell (as admin)