Skip to content

Instantly share code, notes, and snippets.

View jwstl's full-sized avatar

Jason White jwstl

View GitHub Profile
@jwstl
jwstl / golangbackend.md
Last active July 19, 2023 22:02
GoLang Backend Development Course

docker images docker pull postgres:12-alpine docker run --name simplebank -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=mysecret -v PGDATA:/var/lib/postgresql/data -d postgres:12-alpine docker run --name training -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=mysecret -v PGDATA:/var/lib/postgresql/data -d postgres:12-alpine docker run --name mustangsky -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=my$ecret! -v MUSTANGSKYPGDATA:/var/lib/postgresql/data -d postgres docker run --name blazorstore -p 5432:5432 -e POSTGRES_USER=hello -e POSTGRES_PASSWORD=mysecret1 -v BLAZORSTOREPGDATA:/var/lib/postgresql/data -d postgres docker exec -it postgres12 psql -U root docker logs postgres12 docker ps docker ps -a

@jwstl
jwstl / nodejscourse.md
Last active May 22, 2022 19:26
NodeJS Course

Object Destructuring

@jwstl
jwstl / AZ104.md
Last active April 26, 2022 01:39
AZ104

Azure AZ-104 Certification

Study material organized by topic

@jwstl
jwstl / AZ900.md
Created April 24, 2022 02:02
AZ900

‎‎​

@jwstl
jwstl / Mercy In Progress.md
Last active February 28, 2022 19:19
Mercy In Progress

Azure Fuction TerraForm Module

Resource: Azure Function

https://mercy-health.atlassian.net/browse/CPTAZG-2

  • Secure web services with SSL (TLS 1.2), utilize TLS certificates (minimum of TLS 1.2)
  • Enable FTPS in function configuration
  • Store secrets in Key Vault
  • Provision with Site data encryption
  • Configure appropriate Network access control – IP restriction and service endpoints
  • Use AAD authentication with managed identity
<script type="text/javascript" src="./SiteAssets/flip/flip.js"></script>
<link rel="stylesheet" type="text/css" href="./SiteAssets/flip/flip.css">
<style>
.tick {
font-size:1rem; white-space:nowrap; font-family:arial,sans-serif;
}
.tick-flip,.tick-text-inline {
font-size:2.5em;
}
{"lastUpload":"2021-05-04T23:41:33.619Z","extensionVersion":"v3.4.3"}
<h1>Mercy Audience</h1>
<p>This presentation is directed to application/technology owners for detailed work instructions. However, it is important for
you to be familiar with the communications that have been sent to Mercy co-workers and leaders:</p>
<h1>How to Submit a Request?</h1>
<p>On</p>
<h1>What&#39;s in Scope?</h1>
<p>Any technology that requires one of the below situations is in scope of this process. Note this encompasses technology of
all sizes/types such as Software as a Service, small desktop packages, large installs, vendor implementations, etc...</p>
<h1>App Ownership Roles &amp; Responsibilities?</h1>
<p>What it means to “own” an application/technology:</p>
// http://info.summit7systems.com/blog/how-to-create-dynamic-accordions-in-sharepoint-pages
<script language="javascript" type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.2.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function () {
var inEditMode = Utils.checkPageInEditMode();
// Prevent the collapsing of <h2> blocks when in SharePoint's [Edit Mode]
if (!inEditMode) {
UI.collapseContentHeaders();
UI.toggleContentHeaders();
}
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vmName": {
"value": "Core613a"
}
}
}