diff --git a/README.md b/README.md index 148c3ff..26779d9 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ The awesome list of things. - [Building classic 2D games in Go](https://threedots.tech/post/making-games-in-go/) - 🔥[go-database-sql.org](http://go-database-sql.org/): The missing "how" docs for `database/sql` package. - [WTF Dial break down](https://www.gobeyond.dev/wtf-dial/): an illustrative way for new golang developers to see how a real web application get's built in golang. +- [ML in Go with a Python Sidecar](https://eli.thegreenplace.net/2024/ml-in-go-with-a-python-sidecar/): A work around for not having good ML support in Go. ### CLI Frameworks & Utilities @@ -33,6 +34,7 @@ The awesome list of things. - [Wails](https://wails.io/): Build beautiful cross-platform applications using Go. Basically Electron for Golang. - 🌟[Gioui](https://gioui.org/): Gio is an open source library for creating portable, immediate mode GUI programs for Android, iOS, Linux, Windows, macOS. +- [TK 9.0](https://pkg.go.dev/modernc.org/tk9.0) TK in go, no CGO dependency and cross platform. ### Web Frameworks - [Caddy](https://caddyserver.com/docs/): See also [this beginners tutorial](https://www.cloudcentric.dev/deploying-web-apps-with-caddy-a-beginners-guide/) on Caddy. @@ -50,6 +52,10 @@ The awesome list of things. - 🌟[Dramatiq](https://dramatiq.io/): Invented because Celery Sucks. Has all the functionality you want. - [pg-queue](https://github.com/mattbillenstein/pg-queue): Simple task queue using Postgres listen/notify +### Frameworks +- [SeleniumBase](https://github.com/seleniumbase/SeleniumBase): Framework for python to write Selenium tests and scripts. +- [Helium](https://github.com/mherrmann/helium): Like Selenium it is a lighter weight web automation tool. + ## Embedded / Microcontollers - [Debugging with JTAG](https://www.actuatedrobots.com/debugging-with-jtag/) @@ -105,8 +111,24 @@ The awesome list of things. - [Recording Robot Data](https://www.polymathrobotics.com/blog/recording-robot-data) - [The math behind odometry](https://www.youtube.com/watch?v=vxSK2NYtYJQ&feature=youtu.be) +## Databases + +### Postgres +- [PGlite](https://pglite.dev/): A lightweight WASM Postgres +- [Electric Sync Engine](https://electric-sql.com/blog/2024/12/10/electric-beta-release): Designed to be used in conjuntion with PGlite. Real-time partial replication of Postgres data into local apps and services. + +#### Articles +- [Keyset Cursors, Not Offsets for Postgres Pagination](https://blog.sequinstream.com/keyset-cursors-not-offsets-for-postgres-pagination/) + +## General Web + +### CSS +- [DaisyUI](https://daisyui.com/) Tailwind CSS Components +- [Tips.io](https://tips.io/): AI tailwind generator. Almost didn't make the page. + ## Articles +- [Sensible Sqlite defaults](https://briandouglas.ie/sqlite-defaults/) - [Comprehensive List of Versioning Schemes in Open Source](https://nesbitt.io/2024/06/24/from-zerover-to-semver-a-comprehensive-list-of-versioning-schemes-in-open-source.html): From ZeroVer to SemVer - [An animated introduction to Fourier Series](https://www.andreinc.net/2024/04/24/from-the-circle-to-epicycles): Super detailed explaination of Fourier Series. - 🌟[The Notifier Pattern for Applications That Use Postgres](https://brandur.org/notifier)