Skip to content

Instantly share code, notes, and snippets.

View cyberpz's full-sized avatar
♥️

Peppuz cyberpz

♥️
View GitHub Profile
@cyberpz
cyberpz / freebitcoin.js
Created April 26, 2023 00:08
Freebitcoin tampermonkey script
// ==UserScript==
// @name Freebitcoin [2021] - Auto Roll - Betting System - ALL Bonuses - Multiply - Lottery - Status Console
// @description AUTOROLL SCRIPT [FEB 2021] --Auto Roll --Status Console --4 Betting Strategies 2021 --Special graphs 4 referrals --Extinction bet --Balance protection --Odds -- Increase Rate --AutoRoll Low Balance paying RP --Human Simulation --NO captcha solving --Lottery tickets --1000% & RP Bonus --Close ADS --Slower night mode --Advanced AI random times --Extra functions added daily.
// @author dany-veneno
// @icon https://bit.ly/33sYX3b
// @match https://freebitco.in/*
// @grant none
// @create 2018-05-27
// @lastmodified 2021-02-15
// @version 3.5.8
@cyberpz
cyberpz / current_bot.pyu
Created February 16, 2022 09:56
Telegram bot for handling BNB account
from telegram import Update
from telegram.ext import Updater, CommandHandler, CallbackContext
from binance import ThreadedWebsocketManager
from BinancePz import BinancePz # questa e' la mia lib, dove wrappo un paio di funzioni per fare quello che mi serve in una sola funct.
import json
import sqlite3
def balance(update: Update, context: CallbackContext) -> None:
update.message.reply_text('You own {:.2f} USD'.format(bnb.spot_balance()))
@cyberpz
cyberpz / FakeData.md
Last active January 27, 2022 12:30
Generate Fake JSON data on web-browser
@cyberpz
cyberpz / alex.py
Created April 7, 2020 14:27
Bella fra
from helium import *
import telegram
tok = “QUI INSERISCI IL TUO TOKEN TELEGRAM DA BOTFATHER”
alex_chat_id = 'QUI INSERISCI IL TUO ID DI TELEGRAM'
bot = telegram.Bot(tok)
def funzione():
go_to(‘esselunga.it’)
click(’DOVE TI PARE’)
@cyberpz
cyberpz / covid19-densita-regioni.js
Created March 9, 2020 22:12
Pronta per essere hostata
var container = document.getElementById('chart-area');
var data = {
series: [
{ code: 'IT-13', data: 17 },
{ code: 'IT-17', data: 4 },
{ code: 'IT-18', data: 9 },
{ code: 'IT-15', data: 101 },
{ code: 'IT-08', data: 1180 },
{ code: 'IT-06', data: 57 },
{ code: 'IT-12', data: 87 },
@cyberpz
cyberpz / covid19-densita-regioni.js
Created March 9, 2020 22:12
Pronta per essere hostata
var container = document.getElementById('chart-area');
var data = {
series: [
{ code: 'IT-13', data: 17 },
{ code: 'IT-17', data: 4 },
{ code: 'IT-18', data: 9 },
{ code: 'IT-15', data: 101 },
{ code: 'IT-08', data: 1180 },
{ code: 'IT-06', data: 57 },
{ code: 'IT-12', data: 87 },
@cyberpz
cyberpz / gist:c344da201e5fdfb92bf9facfa2f0a513
Last active May 9, 2019 09:44
Authorization missing in header
onSubmit = () => {
var mail = this.state.mail
var opts = {
mode: "no-cors",
method: "POST",
headers: { "Content-Type": "text/plain", "Authorization": conf.mailchimp.api_key,},
credentials: 'include',
body: JSON.stringify({
data: {email_address: mail, status:"subscribed"}
### Keybase proof
I hereby claim:
* I am peppuz on github.
* I am peppuz (https://keybase.io/peppuz) on keybase.
* I have a public key whose fingerprint is B150 207E 7ECA 731D 9AEC D3A8 33E8 50B6 D567 F54C
To claim this, I am signing this object:
# LoL
+>+++++++[>>>+++
+++++<<<<+++++
+++>-]+++++++++>>>
+>>++++++++++[>+
+++++++++<-]>[
>>+>+>+>+>+>+>
+>>+>+>>+>+>+>
+>>+>+>>+>+>+>
@cyberpz
cyberpz / TST Node Class
Created September 17, 2017 20:56
Ternary Search Tree Node Python Class
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# GitHub: Peppuz
#
'''
Ternary Search Tree Node Class.
'''
class Node(object):