This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"width": 600, | |
"height": 400, | |
"data": { | |
"url": "https://api.tinybird.co/v0/sql?q=SELECT%20toStartOfDay(date)%2Ccount(*)%20FROM%20lichess_2020_eval_games%20group%20by%20toStartOfDay(date)%20order%20by%20toStartOfDay(date)%20desc%20%0A%20FORMAT%20CSVWithNames&token=p.eyJ1IjogIjNjYTZlNjZkLTBkZmItNGU4MS1hYWYyLWE5Y2QyMTA2NzVjNiIsICJpZCI6ICIxMTcwMzJiNS03N2Q1LTQ3NjEtODVhYy1lZTVkMWJiYzYyOTIifQ.dp6TJBEfgh-I_BS7DSxxTd-icd1Oyam4hg3yTXAde7w&pipeline=rango_temporal_datos_1563_copy", | |
"format": { | |
"type": "csv", | |
"parse": { | |
"count()": "number" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# this script adapts a hackmd note **including images** to the Scavenger's writeup style: | |
# https://scavengersecurity.com/ | |
# usage and output: | |
# $ ./hackmd2writeup.py test.md | |
# OR | |
# $ ./hackmd2writeup.py hb5VSfHnQNKbdHbOCftmCA | |
# [+] __mandatory fields__: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Después de instalar debian-kde o kubuntu (más ligero sin LibreOffice), | |
# Utilidades # | |
sudo apt install git curl vim net-tools htop tree gawk wmctrl openssh-server filelight gimp wireshark chromium-browser -y | |
#Extensiones: "HTTPS Everywhere" "uBlock Origin" ¿"Stylus"? ¿"Vimium"? | |
#Multimedia: sudo apt install vlc audacity musescore kdenlive -y | |
#Otros: sudo apt install pass nmap kdeconnect | |
sudo apt install telegram-desktop | |
# Mis Dotfiles # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
let upSeconds="$(/usr/bin/cut -d. -f1 /proc/uptime)" | |
let secs=$((${upSeconds}%60)) | |
let mins=$((${upSeconds}/60%60)) | |
let hours=$((${upSeconds}/3600%24)) | |
let days=$((${upSeconds}/86400)) | |
UPTIME=`printf "%d days, %02dh%02dm%02ds" "$days" "$hours" "$mins" "$secs"` | |
# get the load averages | |
read one five fifteen rest < /proc/loadavg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
su | |
apt install curl wget apt-transport-https dirmngr | |
wget http://www.deb-multimedia.org/pool/main/d/deb-multimedia-keyring/deb-multimedia-keyring_2016.8.1_all.deb && dpkg -i deb-multimedia-keyring_2016.8.1_all.deb | |
wget -nv https://download.opensuse.org/repositories/network:messaging:xmpp:dino/Debian_9.0/Release.key -O Release.key && apt-key add - < Release.key && rm Release.key | |
wget -q -O - http://download.opensuse.org/repositories/home:/ivaradi/Debian_9.0/Release.key | apt-key add - | |
apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys EFDC8610341D9410 | |
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add - | |
sources="#------------------------------------------------------------------------------# | |
# OFFICIAL DEBIAN REPOS | |
#------------------------------------------------------------------------------# |