Skip to content

Instantly share code, notes, and snippets.

View Jovonni's full-sized avatar
🚀
...

0xJ0 Jovonni

🚀
...
  • Research & Development
  • In Code
  • X @jovonni
View GitHub Profile
@Jovonni
Jovonni / grpo_demo.py
Created January 31, 2025 00:53 — forked from willccbb/grpo_demo.py
GRPO Llama-1B
# train_grpo.py
import re
import torch
from datasets import load_dataset, Dataset
from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import LoraConfig
from trl import GRPOConfig, GRPOTrainer
# Load and prep dataset
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// ©jdehorty
// @version=5
indicator('Machine Learning: Lorentzian Classification', 'Lorentzian Classification', true, precision=4, max_labels_count=500)
import jdehorty/MLExtensions/2 as ml
import jdehorty/KernelFunctions/2 as kernels
type Settings
@Jovonni
Jovonni / main.go
Created January 20, 2024 19:14 — forked from rafaelescrich/main.go
ZKP example in Golang
package main
import (
"crypto/elliptic"
"crypto/rand"
"fmt"
"math/big"
)
type Prover struct {
@Jovonni
Jovonni / gist:c7c2b2bef6e84be660a6ec086ba5494e
Last active January 24, 2022 04:55 — forked from cupOJoseph/Seed_Phrase_Word_List.md
List of words allowed in the seed phrase for bitcoin and ethereum private keys
We couldn’t find that file to show.
@Jovonni
Jovonni / 0multiple_styles_writeup.md
Created January 9, 2022 02:59 — forked from ehennenfent/0multiple_styles_writeup.md
A writeup of a simple crackme using the manticore concolic execution engine.

Multiple Styles: The Writeup

The following is a writeup of the challenge 'multiple-styles' from the manticore wiki.

Analysis

If we were to run the command manticore multiple-styles, manticore would begin an automatic analysis of the binary, and would eventually figure out the necessary inputs to reach any code path. However, as this can take an exceptionally long time (depending on the complexity of the binary), we will do some manual analysis of the binary in order to speed things up. Below is an annotated disassembly of the main function, produced by Binary Ninja.

disassembly