Skip to content

Instantly share code, notes, and snippets.

@VV0JC13CH
VV0JC13CH / twitter.js
Last active May 21, 2022 12:09 — forked from andreabazerla/twitter.js
Simple script in JavaScript to like all tweets on Twitter to get more followers and sooner or later ban :-)
setInterval(function () {
window.scrollTo(0, document.body.scrollHeight);
$('.ProfileTweet-actionButton.js-actionButton.js-actionFavorite:visible').click();
}, 1000);
@VV0JC13CH
VV0JC13CH / embedded_dbs_bench.py
Last active September 19, 2020 14:54 — forked from coleifer/run_bench.py
Simple benchmarking code. Description available here: https://bitstudio.dev/embedded-cross-platform-python-databases/
import os
import time
import shutil
# The databases!
from redis import Redis
from unqlite import UnQLite
from vedis import Vedis
import semidbm.db as SemiDBM
import sqlitedict