Skip to content

Instantly share code, notes, and snippets.

@1999AZZAR
1999AZZAR / waydroid on x11.md
Last active December 21, 2025 14:22
This guide provides comprehensive instructions for installing and using Waydroid on an X11-based Linux system. Waydroid is a powerful tool that enables you to run Android in a containerized environment on Linux, giving you a full Android system experience directly on your desktop.
@xdenb43
xdenb43 / Mikrotik WireGuard anti DPI.md
Last active December 21, 2025 14:19 — forked from wiktorbgu/Mikrotik-WireGuard-anti-DPI.md
Mikrotik WireGuard anti DPI

Подправил скрипт @wiktorbgu:

Note

  • Скрипт добавляется по пути в меню System - Scripts с именем wg-antidpi, те можно пнуть скрипт когда угодно
  • Сам прописывается в System - Scheduler при первом ручном запуске
  • учтены правки из чата antifilter.network
# wg-antipdi traffic flood | by antifilter tg chat
# Enable traffic-gen: /system device-mode update traffic-gen=yes
@Sauerstoffdioxid
Sauerstoffdioxid / googleurlparams.md
Last active December 21, 2025 14:08
Google/Blogger Image URL Parameters

Google/Blogger Image URL Parameters

This is an effort to document what is known about Google's (Blogger's/Blogspot's) image URL parameters. Some of these options were taken from existing first or third party documentation (see the links at the end of this document), but the majority is based off my own investigations.

Where to use them?

  • On Blogger's image URL's: 2.bp.blogspot.com/-OF7u67HQE1M/VHc8S8qJTDI/AAAAAAAACxI/UD-11c63diQ/s1600/005.png
  • On just about any googleusercontent image URL: https://lh3.googleusercontent.com/Jvmz11cLrvNIHG_LWjVO9B-UV2IN4Cfk1pycbhWZl6IriMgCAGCOFuBRtoHaiZ6xeVGqCugZcCql=w176-h176-n-o

Replace the bolded parts with the parameters.

@akemin-dayo
akemin-dayo / VMware-Legacy-Windows.md
Last active December 21, 2025 14:08
My own personal documentation for running legacy versions of Windows (notably Vista) under modern versions of VMware.

Audio issues (stuttering, crackling)

Comment out this line from your VMX file: sound.virtualDev = "hdaudio"

If you don't want to do that, change the audio format settings in Windows to "24 bit, 44100 Hz (Studio Quality)" or higher, which greatly improves (※ but does not completely fix) the issue.

See this for more info: https://kb.vmware.com/s/article/2012007


Windows Vista SP2

@mcpower
mcpower / aoc-tips.md
Last active December 21, 2025 14:07
Tips for getting on the Advent of Code leaderboard

Hi, I'm mcpower. I've done Advent of Code seriously for two years now in Python, placing 9th in 2018 and 12th in 2017. This year, I'm taking a break from aiming for the leaderboard - while it's fun and all, it is a bit stressful at times (the good kind of stress, though!). As such, I'd like to share a few tips for anyone wanting to aim for the leaderboard.

This is everything that worked for me. Your mileage may vary, though - don't take this as gospel, see what works for you.

Go fast

Go fast.

@UnlimitedBytes
UnlimitedBytes / prompt.md
Created October 17, 2025 18:23
Official Cursor Plan Mode for Sonnet 4.5 Prompt (LEAK)
You are an AI coding assistant, powered by claude-4.5-sonnet. You operate in Cursor.

You are pair programming with a USER to solve their coding task. Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more. This information may or may not be relevant to the coding task, it is up for you to decide.

Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag.

Tool results and user messages may include <system_reminder> tags. These <system_reminder> tags contain useful information and reminders. Please heed them, but don't mention them in your response to the user.

@adamziel
adamziel / 1. Results.md
Last active December 21, 2025 14:04
Measure performance of php.wasm

Naive benchmark of php.wasm performance

I wrote a simple script that measures how many json_encode("Hello World") it can do in 5 seconds and these are the results:

With php test.php:

Serialized 'Hello World' to JSON 63862450 times in 5 seconds.

With PHP=8.1 npx @php-wasm/cli test.php:

@yanxurui
yanxurui / Program.cs
Last active December 21, 2025 14:03
A wrk like http benchmarking tool written in C# .NET 8 that supports http/3
// This is a wrk like http benchmarking tool written in C# that supports http/3
using CommandLine;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
var latencies = new ConcurrentBag<double>();
var failedRequest = new ConcurrentBag<HttpStatusCode>();