Skip to content

Instantly share code, notes, and snippets.

@willccbb
willccbb / grpo_demo.py
Last active October 25, 2025 16:39
GRPO Llama-1B
# train_grpo.py
#
# See https://github.com/willccbb/verifiers for ongoing developments
#
"""
citation:
@misc{brown2025grpodemo,
title={Granular Format Rewards for Eliciting Mathematical Reasoning Capabilities in Small Language Models},
author={Brown, William},
@hackermondev
hackermondev / research.md
Last active October 21, 2025 09:20
Unique 0-click deanonymization attack targeting Signal, Discord and hundreds of platform

hi, i'm daniel. i'm a 15-year-old high school junior. in my free time, i hack billion dollar companies and build cool stuff.

3 months ago, I discovered a unique 0-click deanonymization attack that allows an attacker to grab the location of any target within a 250 mile radius. With a vulnerable app installed on a target's phone (or as a background application on their laptop), an attacker can send a malicious payload and deanonymize you within seconds--and you wouldn't even know.

I'm publishing this writeup and research as a warning, especially for journalists, activists, and hackers, about this type of undetectable attack. Hundreds of applications are vulnerable, including some of the most popular apps in the world: Signal, Discord, Twitter/X, and others. Here's how it works:

Cloudflare

By the numbers, Cloudflare is easily the most popular CDN on the market. It beats out competitors such as Sucuri, Amazon CloudFront, Akamai, and Fastly. In 2019, a major Cloudflare outage k

@jamiephan
jamiephan / README.md
Last active October 23, 2025 13:41
A script to automatically add ALL items to your account in quixel

Script to add all items from quixel

As quixel is being removed, all items are free to aquire. This script is to automate the process to add items to your account (As of writing, a total of 18874 items)

Note: This script only tested in the latest version of Chrome.

How to use

  1. Copy the script from below (run.js)
  2. Login into https://quixel.com
@kirby561
kirby561 / SomeObject.cpp
Created January 19, 2024 02:45
The source files for the UE5 Blueprint/C++ interop tutorial at https://www.youtube.com/watch?v=ejGfHtgGOOI
#include "SomeObject.h"
DEFINE_LOG_CATEGORY_STATIC(SomeObjectSub, Log, All);
void USomeObject::HelloFromABlueprint(int someArgument) {
UE_LOG(SomeObjectSub, Warning, TEXT("Hello called from a blueprint down to C++! With arguemnt: %d"), someArgument);
CallBlueprintFromCpp(someArgument);
CallBlueprintNativeEvent(someArgument);
}
@stueccles
stueccles / array.verse
Last active July 10, 2025 14:49
A Verse module that adds useful functions to Verse Arrays including Map, Reduce etc.
using { /Verse.org/Random }
Array<public> := module:
# Makes an `array` with only unique elements
(Input:[]t where t:subtype(comparable)).Unique<public>()<transacts>:[]t =
var UniqueArray : []t = array{}
for (Value : Input):
if (UniqueArray.Find[Value] > -1) {}
else:
@WahlbeckUEFN
WahlbeckUEFN / bug_blaster.verse
Created April 13, 2023 14:05
The full code for the Bug Blaster UEFN YouTube Tutorial by Wahlbeck Warforge
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
game_manager := class(creative_device):
@editable var Enemies : []creative_prop = array{}
@editable var Granter : item_granter_device = item_granter_device{}
@editable var PropManipulator : prop_manipulator_device = prop_manipulator_device{}
@editable var EndDevice : end_game_device = end_game_device{}
@spilth
spilth / exploratory_device.verse
Created March 27, 2023 01:10
Making class attribute editable in UEFN
using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }
using { /UnrealEngine.com/Temporary/Diagnostics }
using { /UnrealEngine.com/Temporary/SpatialMath }
direction := enum{Up, Down, Left, Right}
coordinates := struct<concrete>:
@editable
X : float = 0.0
@Oleg39reg
Oleg39reg / csv-viewer-with-html-css-javascript.markdown
Created January 25, 2022 21:47
CSV Viewer with HTML, CSS & JavaScript

AK47 Commands

The default command prefix is +.

<> = required
[] = optional
| = or
... = accepts spaces
italic = replace with your own value

Account

@Amrsatrio
Amrsatrio / strings.xml
Created July 27, 2019 12:15
FPM Strings, open for translation!
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<string name="action_accept">Accept</string>
<string name="action_add">Add</string>
<string name="action_back">Back</string>
<string name="action_close">Close</string>
<string name="action_collect">Collect</string>
<string name="action_confirm">Confirm</string>
<string name="action_continue">Continue</string>
<string name="action_decline">Decline</string>