Skip to content

Instantly share code, notes, and snippets.

View vielmetti's full-sized avatar
🌴
I may be slow to respond.

Edward Vielmetti vielmetti

🌴
I may be slow to respond.
View GitHub Profile
...... ok
net0: 147.75.77.98/255.255.255.252 gw 147.75.77.97
net0: fe80::320e:d5ff:feff:da9/64
net1: fe80::320e:d5ff:feff:daa/64 (inaccessible)
Next server: 147.75.195.231
Filename: http://147.75.195.231/auto.ipxe
http://147.75.195.231/auto.ipxe... ok
auto.ipxe : 344 bytes [script]
Packet.net Baremetal - iPXE boot
https://gist.githubusercontent.com/zsmith928/fbde5fde4d46ca380dcc9da33185e3ae/raw/afb09b142ca09d5bc89e04b61c755fbe14eb7858/gistfile1.txt.... ok
#!ipxe
# Set source URI to Zac's new mirror
set mirror http://fedoramirror.joecompany.com/fedora-secondary/releases/27
# Set CPU architecture and repository URI
set arch aarch64
set repo ${mirror}/Everything/aarch64/os
#!ipxe
# Set source URI
set mirror http://fedoramirror.joecompany.com/fedora-secondary/releases/27/
set mirror http://download-ib01.fedoraproject.org/pub/fedora-secondary/releases/27
# Detect CPU architecture and calculate repository URI
set arch aarch64
set repo ${mirror}/Everything/aarch64/os
@vielmetti
vielmetti / K8s_arm64.md
Last active February 5, 2018 15:39 — forked from alexellis/K8s_arm64.md
Bootstrap OpenFaaS on ARM64
#!/bin/sh
# Bootstrap OpenFaaS on Packet.NET Type 2A (arm64) hardware with Kubernetes 1.9 and Weave

# Notes: before starting install kubeadm / kubectl via https://blog.alexellis.io/kubernetes-in-10-minutes/

# Alex Ellis 2017 (c) OpenFaaS
# Changes for Kubernetes 1.9: Edward Vielmetti, Packet.net 2018 (work in progress)

# completely wipe out whatever existing configuration you have
@vielmetti
vielmetti / LinuxKit ARM64 notes
Created July 26, 2017 20:51 — forked from rn/packet.net.md
LinuxKit ARM64 notes
# Deploy a Ubuntu 16.04 LTS server on packet.net
# ssh into as root
# Install docker. Starting with 17.07 Docker ships prebuild arm64 binaries.
# when writing the first RC was out, so we are using the testing channel for now
# loosely following https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/#recommended-extra-packages-for-trusty-1404
apt-get update
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
@vielmetti
vielmetti / ridebetter.js
Last active September 13, 2016 13:32 — forked from csalzman/ridebetter.js
Make The Ride's Live Maps So Much Better
//Find an extension or plugin that let's you run your own javascript on a page
//I'm using "Custom JavaScript for websites" in Chrome.
//Replace the array with the route numbers you care about. Just the number
var routesYouCareAbout = [5, 6, 62];
window.onload = function() {
//Loop through the numbers in the array and click them
for(i = 0; i < routesYouCareAbout.length; i++) {
document.getElementById("chk" + routesYouCareAbout[i]).click();
#!/usr/bin/python
#########
# About #
#########
# This script uses a Raspberry Pi to sense for the presense or absense of water.
# If there is water, an email is sent and a buzzer goes off.
# When it's dry again, another email is sent, and the buzzer turns off.