Execute the following commands to install Node, npm, git, Java, Ionic, Cordova and Angular CLI:
cd ~
sudo apt update
sudo apt upgrade
-- Pull in the wezterm API | |
local wezterm = require 'wezterm' | |
-- This table will hold the configuration. | |
local config = {} | |
-- In newer versions of wezterm, use the config_builder which will | |
-- help provide clearer error messages | |
if wezterm.config_builder then | |
config = wezterm.config_builder() |
#!/bin/sh | |
sudo dnf install -y wget p7zip curl | |
[[ ! -d ~/.fonts ]] && mkdir -p ~/.fonts | |
wget "$(curl "https://www.recursive.design" | grep -o 'https://github.com/.*.zip' | head -n1)" -O /tmp/recursive-fonts.zip | |
( cd ~/.fonts ; 7za e -y -r -i\!*.ttf /tmp/recursive-fonts.zip ) |
# https://gitlab.com/help/ci/quick_start/README | |
# https://docs.gitlab.com/ee/ci/introduction/ | |
# https://docs.gitlab.com/ee/ci/yaml/ | |
image: dpolyakov/docker-node-latest-with-rsync:latest | |
# before_script: | |
# - apt-get update -qq | |
# - apt-get install -qq git |
QEMU requires brew in OSX, so we need to install brew first.
To install brew we need to have the developer tools enabled in our system. In order to install those tools, we have two options.
xcode-select --install
#!/bin/sh | |
STATUS=$(/usr/sbin/mwan3 status) | |
if [ "$STATUS" != "${STATUS/error/} ]; then | |
/usr/sbin/mwan3 restart | |
fi |
zdharma-continuum/fast-syntax-highlighting | |
zsh-users/zsh-autosuggestions | |
zsh-users/zsh-history-substring-search | |
zsh-users/zsh-completions | |
buonomo/yarn-completion | |
spaceship-prompt/spaceship-prompt |
list = [ | |
"https://raw.githubusercontent.com/PolishFiltersTeam/KADhosts/master/KADhosts.txt", | |
"https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts", | |
"https://v.firebog.net/hosts/static/w3kbl.txt", | |
"https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt", | |
"https://someonewhocares.org/hosts/zero/hosts", | |
"https://raw.githubusercontent.com/VeleSila/yhosts/master/hosts", | |
"https://winhelp2002.mvps.org/hosts.txt", | |
"https://v.firebog.net/hosts/neohostsbasic.txt", | |
"https://raw.githubusercontent.com/RooneyMcNibNug/pihole-stuff/master/SNAFU.txt", |
#! /bin/sh | |
# List of MAC Addresses to drop | |
mac="XX:XX:XX:XX:XX:XX AA:AA:AA:AA:AA:AA" | |
set -- $mac | |
# while [ -n "$1" ]; do | |
while [ $# -gt 0 ]; do | |
echo "iptables -I FORWARD -m mac --mac-source $1 -j DROP">>/etc/firewall.user | |
shift |