Skip to content

Instantly share code, notes, and snippets.

@judotens
judotens / bitcoinkey.sh
Last active June 26, 2024 20:49
Scrape BitCoin private keys from directory.io
#!/bin/bash
# scrape all leaked bitcoin private keys into a tab separated text
# <private key>\t<bitcoin_address>
#
# support autoresume. just add these line into your cron : * * * * bash bitcoinkey.sh
# results stored on keys.txt
if [ ! -f last.page ]; then prev=`echo 0`; else prev=`cat last.page`; fi;
if [ -z $1 ]; then akhir=`echo 10`; else akhir=`echo $1`; fi;
abis=$(($prev+$akhir))
@pauloromeira
pauloromeira / tlp
Last active April 12, 2025 20:28
My TLP config file (/etc/default/tlp) for ThinkPad
# ------------------------------------------------------------------------------
# tlp - Parameters for power saving
# See full explanation: http://linrunner.de/en/tlp/docs/tlp-configuration.html
# dir: /etc/default/tlp
# Hint: some features are disabled by default, remove the leading # to enable
# them.
# Set to 0 to disable, 1 to enable TLP.
@suberb
suberb / elementaryos.md
Last active December 25, 2023 19:14
elementaryOS | Things To Do After Installing Elementary OS Loki [Best OS For Switching From Windows & Mac]

FIRST THING FIRST


  • Update OS
sudo apt-get update && sudo apt-get upgrade

@juliasilge
juliasilge / purrr_geniusR.R
Last active November 28, 2019 23:27
Beatles lyrics
library(tidyverse)
library(scales)
theme_set(silgelib::theme_plex())
library(geniusR)
library(tidytext)
albums <- tibble(artist = rep("The Beatles", 13),
album = c("Please Please Me",
"With the Beatles",
"A Hard Day's Night",
@hector6872
hector6872 / arduino-api-request.ino
Last active May 16, 2020 19:58
api-request Arduino sketch
#include <ESP8266WiFi.h>
#include <WiFiClientSecure.h>
#include <ArduinoJson.h>
const char* SSID = "SSID";
const char* PASSWORD = "PASSWORD";
const String API_KEY = "API_KEY";
const char* SYMBOL = "BTC";
@ntaraujo
ntaraujo / hour_minute
Created June 3, 2021 18:30
My Conky Files
############
# Settings #
############
background yes
use_xft yes
xftfont GE Inspira:size=9
xftalpha 1
update_interval 1.0
total_run_times 0
own_window yes