Skip to content

Instantly share code, notes, and snippets.

[
{
"id": "default_star_jalsha",
"name": "Star Jalsha",
"url": "http://thesky.live:8080/live/12626263737@/01828288/45661.ts",
"logo": "",
"group": "Indian-Bangla"
},
{
"id": "default_zee_bangla",
@matsales28
matsales28 / modules_with_arguments.rb
Last active July 12, 2026 19:59
Ruby modules with arguments
class Callable < Module
def self.[](method)
new(method)
end
def initialize(method)
@method = method
end
def included(base)
@cereblab
cereblab / grok-build-cli-wire-analysis.md
Last active July 12, 2026 20:25
What xAI Grok Build CLI actually sends to xAI - a wire-level analysis (grok 0.2.93)

What xAI's Grok Build CLI Actually Sends to xAI: A Wire-Level Analysis

By @cereblab — Independent AI Safety Checker. Reproduce it yourself: github.com/cereblab/grok-build-exfil-repro

A measured, reproducible teardown. Findings are backed by captured artifacts (endpoint, HTTP method, status code, byte size, host) and repro commands; where an observation was seen live but not retained as a file, §7 says so explicitly. Section 8 is an evidence appendix with SHA-256s and a "what we did not prove" list. All captures are of my own traffic on my own machine, using a throwaway repository containing fake "canary" secrets — no real credentials were exposed.


0. Summary

@kenjyco
kenjyco / 01-Learning-Python3.md
Last active July 12, 2026 19:58
Learn Python 3 with Jupyter Notebook
@dabit3
dabit3 / you_couldve_invented_openclaw.md
Last active July 12, 2026 19:58
You Could've Invented OpenClaw

See more of my writing here. Also check out Devin

In this post, I'll start from scratch and build up to OpenClaw's architecture step by step, showing how you could have invented it yourself from first principles, using nothing but a messaging API, an LLM, and the desire to make AI actually useful outside the chat window.

End goal: understand how persistent AI assistants work, so you can build your own (or become an OpenClaw power user).

First, let's establish the problem

When you use ChatGPT or Claude in a browser, there are several limitations:

@r-malon
r-malon / monokai.md
Created February 27, 2019 19:15
Monokai colors in RGB and HEX format, taken from Sublime Text 3

Monokai Colors in RGB and HEX format


  • Background: (46, 46, 46); #2e2e2e
  • Comments: (121, 121, 121); #797979
  • White: (214, 214, 214); #d6d6d6
  • Yellow: (229, 181, 103); #e5b567
  • Green: (180, 210, 115); #b4d273
  • Orange: (232, 125, 62); #e87d3e
  • Purple: (158, 134, 200); #9e86c8
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:

@TheLastProject
TheLastProject / cleanapk_download.py
Last active July 12, 2026 19:46
Download apps from CleanAPK
import os
import sys
import requests
BASE_URL = "https://api.cleanapk.org/v2/"
for package_id in sys.argv[1:]:
app_details = requests.get(BASE_URL + "apps", params={
'action': 'search',

Proxmox VE tips

Just a somewhat chaotic list of Proxmox VE related tips/notes.

Please note that unless you see a shebang (#!/...) these code blocks are usually meant to be copy & pasted directly into the shell. Some of the steps will not work if you run part of them in a script and copy paste other ones as they rely on variables set before.
The { and } surrounding some scripts are meant to avoid cluttering your shell history with individual commands, etc. You can ignore them if you manually copy paste the individual commands.

Table of contents