From: Media [email protected] Sent: Tuesday, 30 June 2020 3:07 PM To: Media [email protected] Subject: MEDIA RELEASE: Australia’s COVIDSafe app among safest in the world
MEDIA RELEASE
From: Media [email protected] Sent: Tuesday, 30 June 2020 3:07 PM To: Media [email protected] Subject: MEDIA RELEASE: Australia’s COVIDSafe app among safest in the world
MEDIA RELEASE
This document covers how to setup netboot.xyz, a service that provides iPXE-based installation and live boot of a bunch of operating systems, on a Ubiquiti EdgeRouter.
I've made a few assumptions throughout this document that will probably be different for your setup:
| kind: Ingress | |
| apiVersion: extensions/v1beta1 | |
| metadata: | |
| name: redirect-ingress | |
| annotations: | |
| ingress.kubernetes.io/configuration-snippet: | | |
| if ($host ~ ^(.+)\.somedomain\.io$) { | |
| return 301 https://$1.domain.io$request_uri; | |
| } | |
| spec: |
| # iPhone 6 Reservation Availability in Australia | |
| # !! Please use responsibly. Personal use only !! | |
| # `ruby iphone6.rb` - list all available models in all stores | |
| # `ruby iphone6.rb R405` - list available models for a specific store, Rundle Place in this example. | |
| require 'open-uri' | |
| require 'json' | |
| MODEL_NAMES = { | |
| "MN8X2X/A" => "7 32 Black", | |
| "MN8Y2X/A" => "7 32 Silver", |
| // clang -framework Foundation -fobjc-arc -O3 test.m | |
| #import <Foundation/Foundation.h> | |
| @interface Slice : NSObject | |
| @property NSInteger start; | |
| @property NSInteger length; | |
| @end | |
| @implementation Slice |