Billy Schmidt

Placeholder for my future great idea

(and whatever else this ends up being)


Find Out More

Currently Exploring New Opportunities!

Intrinsically motivated Marine Corps Veteran working to master my craft. Living in the SF Bay area, with dreams of moving to Kauai, HI to pursure my entrepreneurial aspirations. Thanks to Death to the Stock Photo for the pic above.

Things I'm into


SRE / DevOps

Putting in that work

Learn More

HTML / CSS / JavaScript

The standards that built the web as we know it today

Learn More

Linux

The free and open software that runs our world

Learn More

Full-stack Develpment

Relevant skills to meet the challenges of today

Learn More

This

is just

some sample text

text to see

how it looks

<ul>
  <li>
    <a href="#">Link</a>
  </li>
  <li>
    <a href="#">Link</a>
  </li>
  <li>
    <a href="#">Link</a>
  </li>
</ul>

Google Cloud SDK install

  1. Download and install Google Cloud SDK by running the following command in your shell or Terminal:

    curl https://sdk.cloud.google.com | bash

    (Or, you can download google-cloud-sdk.zip or google-cloud-sdk.tar.gz, unpack it, and launch the ./google-cloud-sdk/install.sh script.)

  2. Restart your shell or Terminal.

  3. Authenticate to Google Cloud Platform by running gcloud auth login.

Thanks for stopping by. To contact me send an email to me@billyschmidt.io or use this here form.

Tips

This is pretty slick. To indicate input that is typically entered via the keyboard, simply use the kbd element:

Use ctrl + p to open the Print dialog box.

Typography

Use the .dl-horizontal class line up the description list side-by-side when the browser window expands:

Coffee
- black hot drink
Milk
- white cold drink

Tip: Try to resize the browser window to see the behaviour of the description list.


# this is a comment
def some_function(x,y,z):
    return x*y*z

@requires_authorization
def somefunc(param1='', param2=0):
    r'''A docstring'''
    if param1 > param2: # interesting
        print 'Gre\'ater'
    return (param2 - param1 + 1) or None

class SomeClass:
    pass