- Update OS
sudo apt-get update && sudo apt-get upgrade
| ############ | |
| # Settings # | |
| ############ | |
| background yes | |
| use_xft yes | |
| xftfont GE Inspira:size=9 | |
| xftalpha 1 | |
| update_interval 1.0 | |
| total_run_times 0 | |
| own_window yes |
| #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"; |
| 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", |
| # ------------------------------------------------------------------------------ | |
| # 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. |
| #!/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)) |