1.1.1. Compute Engine
1.1.2. App Engine
1.1.3. Kubernetes Engine
1.1.4. Cloud Functions
1.2.1. Cloud SQL
1.2.2. Cloud Bigtable
1.2.3. Cloud Spanner
| Hoovering The Works Of The Past (Rev Order): | |
| ################################################## | |
| https://2013.spaceappschallenge.org/location/manila | |
| https://spaceappsmanila.tumblr.com/ | |
| ################################################## | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| # MacOS Catalina | zsh | |
| # sh init.sh | |
| ########## | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
| ########## | |
| ########## |
| $Subs = Get-AzureRmSubscription | |
| foreach ($Sub in $Subs) { | |
| $SelectSub = Select-AzureRmSubscription -SubscriptionName $Sub.Name | |
| $VNETs = Get-AzureRmVirtualNetwork | |
| foreach ($VNET in $VNETs) { | |
| #$Sub.Name | |
| #$VNET.Name | |
| #$VNET.AddressSpace.AddressPrefixes | |
| Write-Host "$($Sub.Name),$($VNET.Name),$($VNET.AddressSpace.AddressPrefixes)" | |
| } |
| curl \ | |
| --header "Content-Type: application/json" \ | |
| --data '{"": {"":"", "":""}}' \ | |
| --request POST \ | |
| https://domain/api |
| # config.yml | |
| version: 2 | |
| jobs: | |
| build: | |
| docker: | |
| - image: xxx/yyy:zzz | |
| - image: aaa/bbb:ccc | |
| # environment: | |
| # HERE: CAN | |
| # environment: |
| #!/bin/bash | |
| # | |
| # | |
| # | |
| # | |
| # for f in * ; do | |
| # if [ -d "$f" ] ; then |
| ################################################################################ | |
| # | |
| # prepend | |
| # sed -e s#^#prefix#g file.txt > new_file.txt | |
| # sed -i s#^#prefix#g file.txt | |
| # append | |
| # sed -e s#$#suffix#g file.txt > new_file.txt | |
| # sed -i s#$#suffix#g file.txt |