This file contains hidden or 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
#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' | |
This file contains hidden or 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
# 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; |