- The Cloud computing NA 2024 event is being held in Salt Lake City, and the attendees are thanked for coming, with a special mention of the enthusiasm around last-minute tickets and registrations (00:07:36).
- The volunteers, org team, and venue staff are thanked for their efforts in making the event possible, with a mention of the venue's amenities and the efforts of the org team in accommodating the attendees (00:09:00).
- The program committee is thanked for their critical role in reviewing proposals and creating the schedule, with a mention of the narrow timeline they had to work with (00:11:13).
- The spon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -eu | |
| FOLDER=$1 | |
| PLAYLIST=$2 | |
| rm -f playlist.txt | |
| mkdir -p $FOLDER | |
| yt-dlp --flat-playlist -i --print-to-file url playlist.txt $PLAYLIST |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { PrometheusExporter } = require('@opentelemetry/exporter-prometheus'); | |
| const { MeterProvider } = require('@opentelemetry/metrics'); | |
| const { Resource } = require('@opentelemetry/resources'); | |
| // Add your port and startServer to the Prometheus options | |
| const options = {port: 9464, startServer: true}; | |
| const exporter = new PrometheusExporter(options); | |
- Understand Kubernetes API primitives
- Create and configure basic Pods
-
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "main": { | |
| "name": "express", | |
| "ecosystem": "npm", | |
| "repository": "https://github.com/expressjs/express" | |
| }, | |
| "librariesio": { | |
| "name": "express", | |
| "platform": "NPM", | |
| "description": "Fast, unopinionated, minimalist web framework", |
Lately I came back into Javascript development. Although my preferred language is still Go there is the undeniable fact that JavaScript is a tool used by many modern platforms. As per request by Mr. Goern here are my lessons learned. Please comment and fill in.
I’m on a Mac and use iTerm and VSCode. I’m not going to argue about these choices.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| oc login -u system:admin | |
| cat <<-EOF > /Users/mdl/tmp/pv.yaml | |
| apiVersion: v1 | |
| kind: PersistentVolume | |
| metadata: | |
| name: pv0001 | |
| spec: | |
| capacity: | |
| storage: 1Gi |
https://github.com/openshift/origin/blob/master/docs/cluster_up_down.md
$ brew update
$ brew install --devel openshift-cli
# add 172.30.0.0/16 to the insecure registries
$ docker-machine ssh
oc new-project mdl
oc new-build https://github.com/openshift-s2i/s2i-aspnet
oc new-app sabre1041/s2i-aspnet~https://github.com/openshift-s2i/s2i-aspnet-example --context-dir=app --name=aspnet-app
oc expose service aspnet-app
