Let's learn the Aiken programming language.
We had an orientation going over all the details about course.
Hopping into installation of the software required for the course.
Let's learn the Aiken programming language.
We had an orientation going over all the details about course.
Hopping into installation of the software required for the course.
# Source: https://gist.github.com/8d941690a087b0de0e2731a52cfb1f51 | |
############################################################### | |
# Building Event-Driven Microservices In Kubernetes With Dapr # | |
# https://youtu.be/-4sHUvfk2Eg # | |
############################################################### | |
# Additional Info: | |
# - https://dapr.io | |
# - What is microservices architecture?: https://youtu.be/F-37_gV2tMs |
<main> | |
<small style="position: absolute; padding: .5rem;">For better experience please use Chrome</small> | |
<section id="artboard"> | |
<svg class="figure" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"> | |
<g class="figure-container"> | |
<g class="figure-landscape"><!-- Background landscape --> | |
<g class="ground"> | |
<path class="ground__shadow" shadow="1" d="M240 140 l-4000 0 l0 350 Z" /> | |
</g> | |
<g class="tree" tree="1"> |
.left-column | |
%h1 | |
.title | |
%a LILROBO🤖 | |
%I RESEARCH & DEVELOPMENT | |
%hr/ | |
%p | |
At | |
%B Lilrobo | |
, we're looking |
class PurchaseOrder(): | |
""" PurchaseOrder - Models a Purchase made from market """ | |
def __init__(self, order_id: string): | |
super().__init__() | |
self._order_id = order_id | |
# defining a property | |
def order_id(): |
Get up Kids Something to Write Home About - The Get Up Kids (1999)
Through Being Cool - Saves the Day (1999)
# there is some trickyness installing AWS SAM CLI on Ubuntu 16.04 | |
# Official documentation recommends using Linux Homebrew... uhm nope. | |
# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install-linux.html | |
# SAM needs Python3.6+ and a blanket install sort fucks up the system and other apps. | |
# Install requirements | |
sudo apt-get install -y build-essential \ | |
checkinstall \ | |
libreadline-gplv2-dev \ | |
libncursesw5-dev \ |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
# | |
# Copyright 2017 Otto Seiskari | |
# Licensed under the Apache License, Version 2.0. | |
# See http://www.apache.org/licenses/LICENSE-2.0 for the full text. | |
# | |
# This file is based on | |
# https://github.com/swagger-api/swagger-ui/blob/4f1772f6544699bc748299bd65f7ae2112777abc/dist/index.html | |
# (Copyright 2017 SmartBear Software, Licensed under Apache 2.0) | |
# |
#!/bin/bash | |
PST_TIME=$(env TZ=America/Los_Angeles date +"%-H") | |
UTC_TIME=$(env TZ=UTC date +"%-H") | |
DST_CHECK=$(($PST_TIME + 8 - $UTC_TIME)) | |
echo "PST Hour:" $PST_TIME | |
echo "UTC Hour:" $UTC_TIME |