Skip to content

Instantly share code, notes, and snippets.

View scalp42's full-sized avatar
🪂

Anthony Scalisi scalp42

🪂
View GitHub Profile
@Micrologist
Micrologist / TOW2ExecCmds.txt
Created November 2, 2025 16:40
The Outer Worlds 2 - Console Commands
GameInstance::DebugCreatePlayer // Function Engine.GameInstance.DebugCreatePlayer
GameInstance::DebugRemovePlayer // Function Engine.GameInstance.DebugRemovePlayer
FactionManager::AddNegativeReputation_Debug // Function Arkansas.FactionManager.AddNegativeReputation_Debug
FactionManager::AddPlayerBounty_Debug // Function Arkansas.FactionManager.AddPlayerBounty_Debug
FactionManager::AddPositiveReputation_Debug // Function Arkansas.FactionManager.AddPositiveReputation_Debug
FactionManager::GetAllReputationDescriptions_Debug // Function Arkansas.FactionManager.GetAllReputationDescriptions_Debug
FactionManager::GetReputationDescription_Debug // Function Arkansas.FactionManager.GetReputationDescription_Debug
FactionManager::SetKillOnSight_Debug // Function Arkansas.FactionManager.SetKillOnSight_Debug
FactionManager::SetNegativeReputation_Debug // Function Arkansas.FactionManager.SetNegativeReputation_Debug
FactionManager::SetPositiveReputation_Debug // Function Arkansas.FactionManager.SetPositiveReputatio
@tkafka
tkafka / Detect electron apps causing macOS Tahoe lag.md
Last active November 12, 2025 18:42
Detect Electron apps on mac where the Electron hasn't yet been updated to fix the system wide lag
@WolframRavenwolf
WolframRavenwolf / HOWTO.md
Last active November 11, 2025 02:47
HOWTO: Use Qwen3-Coder (or any other LLM) with Claude Code (via LiteLLM)

Here's a simple way for Claude Code users to switch from the costly Claude models to the newly released SOTA open-source/weights coding model, Qwen3-Coder, via OpenRouter using LiteLLM on your local machine.

This process is quite universal and can be easily adapted to suit your needs. Feel free to explore other models (including local ones) as well as different providers and coding agents.

I'm sharing what works for me. This gu

@xthezealot
xthezealot / lyra.txt
Last active December 6, 2025 12:38
Lyra - AI Prompt Optimization Specialist
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into
precision-crafted prompts that unlock AI's full potential across all platforms.
## THE 4-D METHODOLOGY
### 1. DECONSTRUCT
- Extract core intent, key entities, and context
- Identify output requirements and constraints
- Map what's provided vs. what's missing
@peterc
peterc / sinatra-react.md
Last active November 12, 2025 12:34
How to set up a basic Sinatra + React webapp

How to set up a basic Sinatra + React webapp in 2025

Let's say you want to use Ruby for the backend of a basic webapp but React on the frontend. Here's how.

(Note: All tested on January 13, 2025 with Ruby 3.3, Sinatra 4.1.1, and React 18.3. Configs may change over time.)

First, create the app folder and set up Sinatra:

mkdir my-sinatra-react-app
@hackermondev
hackermondev / zendesk.md
Last active November 25, 2025 00:09
1 bug, $50,000+ in bounties, how Zendesk intentionally left a backdoor in hundreds of Fortune 500 companies

hi, i'm daniel. i'm a 15-year-old with some programming experience and i do a little bug hunting in my free time. here's the insane story of how I found a single bug that affected over half of all Fortune 500 companies:

say hello to zendesk

If you've spent some time online, you’ve probably come across Zendesk.

Zendesk is a customer service tool used by some of the world’s top companies. It’s easy to set up: you link it to your company’s support email (like [email protected]), and Zendesk starts managing incoming emails and creating tickets. You can handle these tickets yourself or have a support team do it for you. Zendesk is a billion-dollar company, trusted by big names like Cloudflare.

Personally, I’ve always found it surprising that these massive companies, worth billions, rely on third-party tools like Zendesk instead of building their own in-house ticketing systems.

your weakest link

@cseeman
cseeman / markdown_examples.md
Last active December 5, 2025 03:47
Markdown for info panel/warning box

Examples for how to create your own info panel, warning box and other decent looking notification in GitHub markdown.

All the boxes are single/two cell tables or two row tables.

Warning box

❗ You have to read about this
@sunflsks
sunflsks / oahd-wrapper.c
Last active January 12, 2024 07:09
convert an x86 bin to an arm through oahd-helper
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
void help(char* curbin) {
fprintf(stderr, "%s x86_bin arm64_output\n", curbin);
}
int main(int argc, char** argv) {
@nrjdalal
nrjdalal / QEMU-Silicon-Mac-Virtualization.md
Last active August 26, 2025 16:11
Create Virtual Machines using QEMU on Silicon based Apple Macs

Install QEMU on Silicon based Apple Macs (June 2021)

Option 1 - Automatically

zsh -c "$(curl -fsSL https://raw.githubusercontent.com/nrjdalal/silicon-virtualizer/master/install-qemu.sh)"

Option 2 - Manually

  • Install Xcode command line tools

xcode-select --install