Just run:
curl -ks https://gist.github.com/nicerobot/5652802/raw/install.sh | bash -
Just run:
curl -ks https://gist.github.com/nicerobot/5652802/raw/install.sh | bash -
a | |
abbr | |
address | |
area | |
article | |
aside | |
audio | |
b | |
bdi | |
bdo |
The following instructions were predominantly sourced via this Apple Support Document.
With macOS, you can use a USB flash drive or other removable media as a startup disk from which to install macOS. These advanced steps are intended primarly for system administrators and others who are familiar with the command line.
The final executable command(s) are found within Section III. Final macOS Executable Commands labled as Full Example or Full Example w/Options. I personally use the w/Options command which include both the --nointeraction
and &&say Installation
commands.
#!/bin/sh | |
# default commands for osx to make it nicer to work with | |
########################## | |
# General UI?UX settings # | |
########################## | |
# Set hostname (hex of MVB9APPS) | |
sudo scutil --set ComputerName "0x4d56423941505053" | |
sudo scutil --set HostName "0x4d56423941505053" |
import youtube_dl | |
import sys, os, time | |
import boto3 | |
# VERSIONS: | |
# 1. boto3==1.18.63 | |
# 2. youtube_dl==2021.6.6 | |
# | |
# How to use: |
#!/usr/bin/ruby | |
# script for posting on dev.to | |
# using api-key | |
require 'net/http' | |
require 'json' | |
def read_file(fname) | |
unless File.file?("#{fname}") |
<nav> | |
<ul> | |
<li><a href="">About</a></li> | |
<li><a href="">Portfolio</a></li> | |
<li><a href="">Contact</a></li> | |
</ul> | |
</nav> | |
<div> |
SERVER_PORT=$(head -n13 /etc/ssh/sshd_config | grep "Port" | awk '{print $2}') | |
SERVER_IP=$(hostname -I | awk '{ print $1 }') | |
swaks --to [email protected] -s smtp.gmail.com:587 -tls -au [email protected] -ap PASSWORD --header "Subject: [PING] raspy $(date)" --body "IP: $SERVER_IP \nPORT: $SERVER_PORT" | |