Views: 80
Dan SharpeVerified

Story Markdown Demo

Dan Sharpe - 27y ago

A short story containing all the markdown functionality that has been hand selected for this site. This is a subset of the standard markdown spec, as intended.


Markdown Image

#Heading 1

##Heading 2

###Heading 3


  • Unordered List Item
  • Unordered List Item
  • Unordered List Item

  1. Ordered List Item
  2. Ordered List Item
  3. Ordered List Item

This is bold text.

This is italicized text.

This is strikethrough text.

blockquote

This is code. Also this: sudo apt install certbot python3-certbot-apache.



Hyperlink

GCP Compute

filename.yaml
gcloud compute instances create dansharpe \
    --project=dan-sharpe \
    --zone=us-east1-b \
    --machine-type=e2-micro \
    --network-interface=network-tier=STANDARD,private-network-ip=10.142.0.5,stack-type=IPV4_ONLY,subnet=default \
    --maintenance-policy=MIGRATE \
    --provisioning-model=STANDARD \
    --service-account=48950382683-compute@developer.gserviceaccount.com \
    --scopes=https://www.googleapis.com/auth/ \
    --tags=http-server,https-server \
    --create-disk=auto-delete=yes,boot=yes,/debian-12-bookworm-v20241009,mode=rw,size=10,type=pd-balanced \
    --no-shielded-secure-boot \
    --shielded-vtpm \
    --shielded-integrity-monitoring \
    --labels=goog-ec-src=vm_add-gcloud \
    --reservation-affinity=any

schema.sql
SELECT
    a.*,
    b.*
FROM
    tbl_companies a
LEFT JOIN tbl_users b ON b.company_id = a.id
WHERE a.status = 'active'

Drawing Export:
  1. Use the draw.io template
  2. Export as SVG with embedded fonts
  3. Process through https://vecta.io/nano

diagram-70