EastBay CodeHaus
Random Notes on Programming
Monday, August 15, 2022
Collection: Docker etc
Docker
The Docker, Kubernetes, Terraform, and AWS crash course series | by Yevgeniy Brikman | Jul, 2022 | Gruntwork
Kube
Falling for Kubernetes | Pierce Freeman
Collection: Security
Notes
Implementing a Zero Trust Architecture | NCCoE
The Illustrated TLS 1.3 Connection: Every Byte Explained
Collection: Postgresql
Notes:
PostgreSQL: Documentation: 14: 19.9. Secure TCP/IP Connections with SSL
How to run PostgreSQL queries from GoLand | GoLand
PostgreSQL Change data capture (CDC) + golang sample code.
Using a PostgreSQL database as an AWS DMS source - AWS Database Migration Service
Collection: Git
Git Notes
Git from the Bottom Up
Things I think everyone should know about Git
The Universe of Discourse : Things I wish everyone knew about Git (Part II)
In Praise of Stacked PRs | Ben Congdon
Pull request review (prr)
Collection: Dall-e
Dall-e Notes
I spent $15 in DALL·E 2 credits creating this AI image, and here’s what I learned | by Joy Zhang | Aug, 2022 | Towards AI
DALL-E + GPT-3 = ❤️. Update: Follow up article by… | by glan1k | Aug, 2022 | Medium
I replaced all our blog thumbnails using DALL·E 2 for $45: here’s what I learned | Deephaven
How I Used DALL·E 2 to Generate The Logo for OctoSQL | Jacob Martin
The DALL·E 2 Prompt Book – DALL·Ery GALL·Ery
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
TimescaleDB
https://docs.timescale.com/timescaledb/latest/#welcome-to-the-timescaledb-documentation TimescaleDB is a time-series database, built on top ...
Golang Calling Stack
package main import ( "fmt" "runtime" ) func main() { aa() } func aa() { bb() } func bb() { cc("hello...
Notes from gittower "Undoing Git Mistakes" presentation
Uncommited Local Changes 1. revert local changes git restore fname 2. accidentally deleted a file git restore fname 3. discarding chunks/lin...