Skip to content

Instantly share code, notes, and snippets.

@valex
valex / freebitcoin_autoroll.user.js
Last active March 21, 2024 09:06
Script for freebitco.in that can click ROLL button automatically
// ==UserScript==
// @name freebitco.in Autoroll Autoclick script
// @namespace https://gist.github.com/valex/c5ee9c01c3a5aaf34b9de4e26a9f0737
// @version 0.1
// @description Script for freebitco.in that can click ROLL button automatically
// @author valex
// @match https://freebitco.in/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=freebitco.in
// @grant none
// @run-at document-end
@valex
valex / freebitcoin_multiply_btc_roll_counter.user.js
Last active June 16, 2023 16:24
Script for freebitco.in that tracks and presents statistics on rolls in the Multiply BTC game, displaying them in a convenient table format.
// ==UserScript==
// @name freebitco.in Multiply BTC Roll Counter
// @namespace https://gist.github.com/valex/22cf8dadc0a9c7d99e28bcdf8bae3457
// @version 0.1
// @description Script for freebitco.in that tracks and presents statistics on rolls in the Multiply BTC game, displaying them in a convenient table format.
// @author valex
// @match https://freebitco.in/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=freebitco.in
// @grant none
// @run-at document-end
@valex
valex / index.html
Created September 29, 2018 21:57
Using constraints to limit movement of objects
<!DOCTYPE html>
<html>
<head>
<style>
body {
/* set margin to 0 and overflow to hidden, to go fullscreen */
margin: 0;
overflow: hidden;
@valex
valex / index.html
Created July 17, 2019 13:49
d3.js v5 Realtime Line Chart
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>d3.js v5 Realtime Line chart</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.9.2/d3.min.js"></script>
<link rel="stylesheet" href="style.css" >
</head>
var videoPlayer = {
props: {
origin:{
type: String,
required: true
},
video_key:{
type: String,
required: true
},
<template>
<div>
<div class="calculator">
<table class="matrixAWrapper">
<tr>
<td>
<div class="rowsResizer">
<div @click="subRowM1" class="resizeBtn">-</div>
<div @click="addRowM1" class="resizeBtn">+</div>
</div>
<template>
<v-row>
<v-col :cols="5">
<chessboard-with-controls
:initial-orientation=initialOrientation
></chessboard-with-controls>
<v-card v-if="mounted && $store.getters['users/isAdmin']">
<v-card-text>
<v-text-field
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div style="display: flex;
flex-direction: row; justify-content: space-between;">
<div id="chart"></div>
<div id="chart_right"></div>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div style="display: flex;
flex-direction: row;">
<div id="chart"></div>
<div id="chart_right"></div>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div style="display: flex;
flex-direction: row; justify-content: space-between;">
<div id="chart"></div>
<div id="chart_right"></div>