$ ./hashall.py asd
BLAKE2s256 256 2521f2bce24415ca048d86e965b49e9c0695547dffe6b441cc48cfb0043e6157
blake2b512 512 e4139471a1800a05b5e02b56669f025d01e33c5655153a4faa29f694f7849c63f97577fcc3e397d1138cf4640e0c2053e74a7af646598310d076dc6f15d1af50
SHA256 256 688787d8ff144c502c7f5cffaafe2cc588d86079f9de88304c26b0cb99ce91c6
SHA512 512 e54ee7e285fbb0275279143abc4c554e5314e7b417ecac83a5984a964facbaad68866a2841c3e83ddf125a2985566261c4014f9f960ec60253aebcda9513a9b4
blake2s256 256 2521f2bce24415ca048d86e965b49e9c0695547dffe6b441cc48cfb0043e6157
MD4 128 61118995d26bef582a59dec9220483e8
sha256 256 688787d8ff144c502c7f5cffaafe2cc588d86079f9de88304c26b0cb99ce91c6
sha512 512 e54ee7e285fbb0275279143abc4c554e5314e7b417ecac83a5984a964facbaad68866a2841c3e83ddf125a2985566261c4014f9f960ec60253aebcda9513a9b4
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
#include <iostream> | |
template <typename T> | |
void print_type_of(T value = T()) { | |
(void)value; | |
std::clog << __PRETTY_FUNCTION__ << std::endl; | |
} | |
int main() | |
{ |
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
[Adblock Plus 1.1] | |
wikipedia.org##div#centralNotice | |
wikipedia.org##div#siteNotice | |
wikipedia.org##div#frb-inline | |
blogspot.it##div#cookieChoiceInfo | |
blogspot.it##div#navbar | |
blogspot.com##div#cookieChoiceInfo | |
blogspot.com##div#navbar | |
developer.android.com##div.dac-toast-group | |
dev.mysql.com##div.truste_box_overlay |
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
/* hide useless elements */ | |
#s2k-feedback-menu, | |
#s2k-reader-header-logo, | |
#s2k-metadata-menu, | |
#s2k-reader-header-close { | |
display: none; | |
} | |
/* remove top bar */ | |
#s2k-reader-header { |
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
// javascript: | |
(function () { | |
/* inject dat.gui library */ | |
var script = document.createElement('script'); | |
script.src = 'https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5.1/dat.gui.min.js'; | |
document.head.appendChild(script); | |
/* wait for the script to be loaded */ | |
script.addEventListener('load', function () { | |
/* CSS params */ | |
var params = [ |
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 python | |
import os | |
import sys | |
def show_usage(): | |
sys.stderr.write('''memio - Simple I/O for /proc/<pid>/mem | |
Dump /proc/<pid>/maps: | |
memio.py <pid> |
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 bash | |
width=10 | |
declare -a stats=(rx_bytes tx_bytes rx_packets tx_packets) | |
declare -a names=('RX Bps ' 'TX Bps' 'RX pps' 'TX pps') | |
declare -a fmt=('--to iec --suffix B' '--to iec --suffix B' '--to si' '--to si') | |
function get_stat() { | |
local iface="$1" | |
local stat="$2" |
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 -e | |
usage() { | |
echo "Usage: | |
apk list | |
apk path <package> | |
apk fetch <package> | |
" | |
} |
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 | |
# Install: | |
# 1. wget -P ~ https://gist.githubusercontent.com/cyrus-and/76e2b92bfc16d65617ff/raw/921a91b765944f0aed3cf85490631ac58182037d/.muteonlogout.plist | |
# 2. chmod +x ~/.muteonlogout.plist | |
# 3. sudo defaults write com.apple.loginwindow LogoutHook ~/.muteonlogout.plist | |
# Uninstall: | |
# sudo defaults delete com.apple.loginwindow LogoutHook |
NewerOlder