Skip to content

Instantly share code, notes, and snippets.

View aubelsb2's full-sized avatar

Arran Ubels aubelsb2

  • base2Services
  • Melbourne Australia
View GitHub Profile

Keep track on what I have done to install node solid (docker) on Azure

WIP

0. Prepare

  • Using an .edu mail will get you 100$ to try things up. If you don't have an .edu mail then follow the registration steps and get some credit for free.
  • The Azure portal: https://portal.azure.com/#home

1. Create azure VM

  • I use the recommended Ubuntu 18 LTS.
  • Just click through the recommended options, but remember to choose a static public IP.
[io.quarkus.deployment.pkg.steps.JarResultBuildStep] Duplicate entry component.properties entry from org.apache.camel:camel-log::jar:3.4.0(compile) will be ignored. Existing file was provided by org.apache.camel:camel-timer::jar:3.4.0(compile)
[io.quarkus.deployment.pkg.steps.JarResultBuildStep] Duplicate entry META-INF/sisu/javax.inject.Named entry from org.apache.maven:maven-model-builder::jar:3.6.3(compile) will be ignored. Existing file was provided by org.apache.maven:maven-core::jar:3.6.3(compile)
[io.quarkus.deployment.pkg.steps.JarResultBuildStep] Duplicate entry META-INF/sisu/javax.inject.Named entry from org.apache.maven:maven-embedder::jar:3.6.3(compile) will be ignored. Existing file was provided by org.apache.maven:maven-core::jar:3.6.3(compile)
[io.quarkus.deployment.pkg.steps.JarResultBuildStep] Duplicate entry META-INF/plexus/components.xml entry from org.eclipse.sisu:org.eclipse.sisu.plexus::jar:0.3.4(compile) will be ignored. Existing file was provided by org.apache.maven:maven-core::jar:3.6
package main
import "log"
func main() {
v := 0
for i := 0; i < 16; i++ {
v <<= 1
v |= 1
log.Printf("%v", v)