Skip to content

Instantly share code, notes, and snippets.

View yohanesyuen's full-sized avatar

Yohanes Yuen yohanesyuen

View GitHub Profile
// Donation address: 17Ez2fRkxxwwTh6W8njm4rhWdrphxRiDa1
// Sign up link: https://freebitco.in/?r=3329532
function Random(seed) {
this.m = Math.pow(2, 32);
this.maxIdx = 128;
this.buf = new Uint32Array(this.maxIdx);
this.idx = 0;
window.crypto.getRandomValues(this.buf);
}
@yohanesyuen
yohanesyuen / pointstracking.py
Created August 28, 2021 02:20
Simple points tracker for children to track good and bad behaviors
from datetime import datetime
import jsonpickle
import argparse
import os
class Person:
def __init__(self, name):
self.name = name
import secrets
import os
import sys
import argparse
import sqlite3
import time
import hashlib
from hash_hunter.models import Session, HashChain
@yohanesyuen
yohanesyuen / machine.js
Created August 26, 2019 16:54
Generated by XState Viz: https://xstate.js.org/viz
const triggerMachine = Machine(
{
id: 'trigger',
initial: 'inactive',
states: {
inactive: {
on: {
TRIGGER: {
target: 'active',
// transition actions
// Donation address: 17Ez2fRkxxwwTh6W8njm4rhWdrphxRiDa1
// Sign up link: https://freebitco.in/?r=3329532
function Random(seed) {
this.m = Math.pow(2, 32);
this.maxIdx = 128;
this.buf = new Uint32Array(this.maxIdx);
this.idx = 0;
window.crypto.getRandomValues(this.buf);
}
// ==UserScript==
// @name Freebitco.in Full auto Martingale+Prerolls+Freeroll+Rewards+GUI WORKING 2019
// @namespace http://tampermonkey.net/
// @version 0.72
// @description Multiply BTC bot using martingale system with cheap prerolls.
// @author yy
// @match https://freebitco.in/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
//If you like this script, please signup through the following link https://freebitco.in/?r=3329532
// ==UserScript==
// @name Freebitcoin Auto Claim
// @namespace http://romenum.online
// @version 1.5
// @description Feel free to donate: 1KCwhJWdMcnqNECnKBxhZHb4Eu6RWjgg4U
// @author romenum
// @match https://freebitco.in/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
<Response>
<Say>Bye bye</Say>
</Response>
<Response>
<Say voice="alice">
Hi Hi. Love you many.
</Say>
<Dial record="true">
<Conference>prank conf</Conference>
</Dial>
</Response>
package esmond_burden;
import java.util.Stack;
public class burden {
private static Integer atoi(String input) {
Integer result = null;
try {
result = Integer.parseInt(input);