Store Security

All about managing store security

How to run docker service in cloud / code example

Andreas Olofstam
Andreas Olofstam

1. Login in 

2. Access Cogwheel 

3. Access user management 

4. Hit the plus sign 

 

XML Example 

<?xml version="1.0"?>
<catalog>
   <book id="bk101">
      <author>Gambardella, Matthew</author>
      <title>XML Developer's Guide</title>
      <genre>Computer</genre>
      <price>44.95</price>
      <publish_date>2000-10-01</publish_date>
      <description>An in-depth look at creating applications 
      with XML.</description>
   </book>
 </catalog>
   

Bash Example 

#!/bin/bash

echo Running in $SHELL

 

C++ Example 

// Main() function: where the execution of program begins
int main()
{
    // prints hello world
    cout << "Hello World";
  
    return 0;
}

C# example 

// Hello World! program
namespace HelloWorld
{
    class Hello {         
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello World!");
        }
    }
}

 

 

 

Was this article helpful?

Have more questions? Submit a request

Comments

1 comment

  • Comment author
    Elmer Fudd

    Well, that did no thelp ! 

    0

Please sign in to leave a comment.