Download the windows image you want.
AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)
So Home wont work.
| #!/bin/bash | |
| # Install OSX Mojave through App Store. After downloading, the "InstallESD" is automatically mounted, which causes this script to fail. | |
| # Therefore, "/Volumes/InstallESD" should be unmounted before running this script! | |
| # Summary of instructions | |
| #1 Download Mojave from App Store | |
| #2 open terminal and run "umount /Volumes/InstallESD" | |
| #3 make script executable: "chmod +x make_mojave_iso.sh" | |
| #4 Run "./make_mojave_iso.sh" |
| # Raspberry Pi Tips & Tricks - https://raspberrytips.nl | |
| import Adafruit_DHT | |
| humidity, temperature = Adafruit_DHT.read_retry(Adafruit_DHT.DHT22, 4) | |
| humidity = round(humidity, 2) | |
| temperature = round(temperature, 2) | |
| if humidity is not None and temperature is not None: |
| from flask import Flask | |
| import Adafruit_DHT | |
| app = Flask(__name__) | |
| @app.route('/hello') | |
| def helloWorldHandler(): | |
| return 'Hello World from Flask running on the PI!' | |
Kong, Traefik, Caddy, Linkerd, Fabio, Vulcand, and Netflix Zuul seem to be the most common in microservice proxy/gateway solutions. Kubernetes Ingress is often a simple Ngnix, which is difficult to separate the popularity from other things.
This is just a picture of this link from March 2, 2019
Originally, I had included some other solution
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| #!/usr/bin/env bash | |
| #=========================================================================== | |
| # Works only with the official image available in the Mac App Store. | |
| # Make sure you download the official installer before running this script. | |
| #=========================================================================== | |
| hdiutil create -o /tmp/Catalina.cdr -size 10000m -layout SPUD -fs HFS+J | |
| hdiutil attach /tmp/Catalina.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
| sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/install_build --nointeraction | |
| hdiutil detach "/Volumes/Install macOS Catalina" |
| homeassistant: | |
| container_name: homeassistant | |
| restart: always | |
| net: "host" | |
| user: "1000" | |
| environment: | |
| - PUID=1000 | |
| - PGID=1000 | |
| image: homeassistant/armhf-homeassistant | |
| ports: |
| import nltk, sys, csv | |
| from nltk.tokenize import TweetTokenizer | |
| from nltk.corpus import stopwords | |
| from datetime import datetime | |
| import pandas as pd | |
| import numpy as np | |
| import string | |
| from collections import Counter | |
https://www.nakivo.com/blog/mount-amazon-s3-as-a-drive-how-to-guide/
` { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow",