-
Collapse-All - Collapse all the current document's Artboards and Groups.
-
Export More - Use this to create .gif animations from multiple artboards.
-
Sketch Pallets - Import / Export a colour pallet to share with others.
-
User Flows - Generate flow diargrams / user journeys from layers to artboards.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Creates the External IP address within region us-east4 (you may have to just enter the command and then select option 19) | |
gcloud compute addresses create unifi-external \ | |
--region us-east4 | |
//Create the Firewall Rules required to have Unifi work | |
gcloud compute firewall-rules create "unifi-http" \ | |
--allow tcp:80,tcp:8443,tcp:8880,tcp:8843 \ | |
--description="Ports used for HTTP and HTTPS on non-standard ports https://help.ubnt.com/hc/en-us/articles/218506997-UniFi-Ports-Used" \ | |
--target-tags=unifi-server | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from requests import get | |
key = <ENTER CF GLOBAL API KEY> | |
email = <ENTER CF LOGIN EMAIL> | |
zone_ID = <ENTER ZONE ID> | |
record_ID = <ENTER DNS RECORD ID> | |
ip = get('https://api.ipify.org').text | |
put = requests.put( |