Skip to content

Instantly share code, notes, and snippets.

@ghjgh-rdhdhcgh
ghjgh-rdhdhcgh / capcutapk.md
Created July 23, 2026 00:42
Download Capcut Pro Apk for pc

This repository contains resources, scripts, and documentation for CapCut Pro - the premium video editing solution for creators.


⬇️ Official source


CapCut Pro Banner

@TuxSH
TuxSH / k11_latest_n3ds.cpp
Last active August 4, 2026 22:57
Complete 3DS kernel decompilation (11.14-latest N3DS Kernel11, with labels for all symbols, and comments)
This file has been truncated, but you can view the full file.
/* This file was generated by the Hex-Rays decompiler.
Copyright (c) 2007-2020 Hex-Rays <info@hex-rays.com>
Detected compiler: GNU C++
*/
#include <defs.h>
//-------------------------------------------------------------------------
@umbernhard
umbernhard / arch-secure-install.md
Last active August 4, 2026 22:26
Building a Secure Arch Linux Device

Building a Secure Arch Linux Device

Locking down a linux machine is getting easier by the day. Recent advancements in systemd-boot have enabled a host of features to help users ensure that their machines have not been tampered with. This guide provides a walkthrough of how to turn on many of these features during installation, as well as reasoning for why certain features help improve security.

The steps laid out below draw on a wide variety of existing resources, and in places I'll point to them rather than attempt to regurgitate full explanations of the various security components. The most significant one, which I highly encourage everyone to read, is Rod Smith's site about secure boot, which is the most comprehensive and cogent explanation of UEFI, boot managers and boot loaders, and secure boot. Another incredibly useful resources is Safeboot, which encapsulates many of the setup steps below in a Debian application.

@fieldmapper
fieldmapper / TAK_Resources.md
Last active August 4, 2026 22:03
Team Awareness Kit (TAK) - related resources and links.

NOTE: Merged with openTAKpickList.


'openTAKpickList' - Team Awareness Kit (TAK) - related resources and links.

This is a list of web resources, hardware and software that can be used in conjunction with the Team Awareness Kit (TAK) platform.

Official TAK Resources

@zAstergun
zAstergun / CompleteDiscordQuest.md
Last active August 4, 2026 21:42 — forked from aamiaa/CompleteDiscordQuest.md
Discord Missões Orb (PT-BR)

Caution

A partir de 7 de abril de 2026, o Discord expressou sua intenção de reprimir a automatização da conclusão de missões.

Alguns usuários receberam a seguinte mensagem do sistema:

image Não há muito que eu possa fazer para tornar o script indetectável, então use-o por sua conta e risco, pois você provavelmente SERÁ sinalizado ao fazê-lo.

Complete Recent Discord Quest (Versão PT-BR aprimorada)

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active August 4, 2026 23:41
Complete Recent Discord Quest

Caution

As of April 7th 2026, Discord has expressed their intent to crack down on automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you most likely WILL get flagged by doing so.

Complete Recent Discord Quest

@hellerbarde
hellerbarde / latency.markdown
Created May 31, 2012 13:16 — forked from jboner/latency.txt
Latency numbers every programmer should know

Latency numbers every programmer should know

L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns             
Compress 1K bytes with Zippy ............. 3,000 ns  =   3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns  =  20 µs
SSD random read ........................ 150,000 ns  = 150 µs

Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs

@jboner
jboner / latency.txt
Last active August 4, 2026 21:19
Latency Numbers Every Programmer Should Know
Latency Comparison Numbers (~2012)
----------------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns 3 us
Send 1K bytes over 1 Gbps network 10,000 ns 10 us
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD
name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@ardakazanci
ardakazanci / AirPongCourtShader.agsl
Created August 4, 2026 15:12
Cinematic neon court shader for Android RuntimeShader, featuring parallax depth, animated portals, plasma lighting, scanlines, and chromatic aberration.
uniform float2 resolution;
uniform float time;
uniform float sideIndex;
uniform float ballY;
uniform float linked;
uniform float2 cameraOffset;
uniform float cameraZoom;
uniform float aberration;
uniform float ballLocalX;
uniform float depthIntensity;