Skip to content

Instantly share code, notes, and snippets.

View gabrielhesposito's full-sized avatar

Gabriel Esposito gabrielhesposito

View GitHub Profile
#vim
set ls=2
#tmux
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
@gabrielhesposito
gabrielhesposito / cat_dev_random.pl
Last active December 17, 2020 00:38
cat_and_dev_random_in_perl
# object to make equivalent
# cat /dev/random
#!/bin/perl
use strict;
use Data::Dumper;
#just an interface for dev/random ..urandom?
use Crypt::Random qw( makerandom_octet);
#entropy
use Net::Ping;