Last updated: February 10, 2026
BoringPage is a browser extension that converts webpages into Markdown. All processing happens locally in your browser. We do not collect, store, or transmit any user data.
| class devtools { | |
| package { ['git', 'mtr', 'vim', 'zip', 'htop', 'make', 'iotop', 'iperf', 'ngrep', 'strace', 'curl', 'wget' ]: | |
| ensure => latest | |
| } | |
| } |
| #!/bin/bash | |
| MYUSER="kooluser" | |
| MYGROUP="wheel" | |
| useradd $MYUSER | |
| usermod -G $MYGROUP $MYUSER | |
| mkdir -p /home/$MYUSER/.ssh | |
| cat ${MYUSER}.pub > /home/$MYUSER/.ssh/authorized_keys | |
| chmod 600 /home/$MYUSER/.ssh/authorized_keys | |
| chmod 700 /home/$MYUSER/.ssh |
| #!/bin/bash | |
| cert=$1 | |
| key=$2 | |
| MD51=$(openssl x509 -text -noout -in $cert -modulus | grep "^Modulus" | openssl md5) | |
| MD52=$(openssl rsa -text -noout -in $key -modulus | grep "^Modulus" | openssl md5) | |
| if [ "$MD51" == "$MD52" ]; then | |
| echo "Match" | |
| else | |
| echo "Not match" |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| words = [ | |
| 'apple', | |
| 'banana', | |
| 'banana', | |
| 'foo', | |
| 'ruby', | |
| 'apple', | |
| 'piston', | |
| 'eagle', | |
| 'lemon', |
| #!/usr/bin/env ruby | |
| require 'fileutils' | |
| require 'yaml' | |
| m = YAML.load_file('rpm.yml') | |
| m.each do |appname, data| |
| #!/bin/bash | |
| PKG=$1 | |
| mkdir -p repos | |
| repotrack -c /etc/yum.repos.d/epel.repo -a x86_64 -p repos/ $PKG |
| #!/usr/bin/env ruby | |
| require 'curl' | |
| coll = 'a'.upto('z').to_a + '0'.upto('9').to_a | |
| letters = coll.to_a.permutation(3).to_a | |
| letters.each do |possible_uname| | |
| u_epoint = "https://github.com/" + possible_uname.join("") |
| #!/usr/bin/env bash | |
| [ -z $1 ] && echo "Gimme the PID" && exit 1 | |
| PIDNUM=$1 | |
| declare -A CURRENT | |
| declare -A NEXT | |
| export FLAG=0 | |
| get_io() { |