VirtualTam's bookmarks
34 bookmarks found
-
The Sunlight Certificate Transparency Log
2024-03-16 -
Subclassing in Python Redux
2023-06-11 The conflict between subclassing and composition is as old as object-oriented programming. The latest crop of languages like Go or Rust prove that you don’t need subclassing to successfully write code. But what’s a pragmatic approach to subclassing in Python, specifically?
-
- HyperLogLog: the analysis of a near-optimal cardinality estimation algorithm (PDF)
- HyperLogLog in Practice: Algorithmic Engineering of a State of The Art Cardinality Estimation Algorithm
- https://agkn.wordpress.com/2012/10/25/sketch-of-the-day-hyperloglog-cornerstone-of-a-big-data-infrastructure/
- Redis new data structure: the HyperLogLog
- https://www.reddit.com/r/programming/comments/21wshj/redis_new_data_structure_the_hyperloglog/
- https://redis.uptrace.dev/guide/go-redis-hll.html
- https://towardsdatascience.com/hyperloglog-a-simple-but-powerful-algorithm-for-data-scientists-aed50fe47869
- https://odino.org/my-favorite-data-structure-hyperloglog/
- http://blog.notdot.net/2012/09/Dam-Cool-Algorithms-Cardinality-Estimation
- https://supabase.com/blog/seen-by-in-postgresql
- https://www.citusdata.com/blog/2017/12/22/distributed-count-vs-hyperloglog/
-
- https://schema.org/docs/schemas.html
- https://stackoverflow.com/questions/57371445/schema-org-markup-in-emails
- https://softwareengineering.stackexchange.com/questions/328567/how-does-microdata-rdfa-compare-to-json-ld/328711#328711
- https://json-ld.org/
- https://developer.mozilla.org/en-US/docs/Web/HTML/Microdata
- https://developers.google.com/gmail/markup/overview
- https://developers.google.com/gmail/markup/reference/formats/json-ld
- https://developers.google.com/gmail/markup/reference/formats/microdata
- https://docs.microsoft.com/en-gb/outlook/actionable-messages/adaptive-card
-
Compact objects in Python
2022-05-29 -
- https://coderwall.com/p/whf3-a/hierarchical-data-in-postgres
- https://stackoverflow.com/questions/tagged/ltree
- https://github.com/jinagamvasubabu/ltreevisualizer
- https://patshaughnessy.net/2017/12/11/trying-to-represent-a-tree-structure-using-postgres
- https://patshaughnessy.net/2017/12/12/installing-the-postgres-ltree-extension
- https://patshaughnessy.net/2017/12/13/saving-a-tree-in-postgres-using-ltree
- https://patshaughnessy.net/2017/12/14/manipulating-trees-using-sql-and-the-postgres-ltree-extension
-
Go repository structure templates
2019-03-13 - https://github.com/katzien/go-structure-examples
- https://medium.com/@benbjohnson/standard-package-layout-7cdbc8391fc1
- https://github.com/golang-standards/project-layout
- https://github.com/ribice/gorsk-gin
- https://github.com/gothinkster/golang-gin-realworld-example-app
- https://github.com/mmcmm/go-gin-starter
- https://www.reddit.com/r/golang/comments/3focff/ask_golang_have_you_built_a_complex_website_in/
- https://github.com/volatiletech/authboss/wiki/Integration-with-gin-gonic
- https://github.com/thewhitetulip/web-dev-golang-anti-textbook
-
Effective Go - Embedding
2018-09-20 - https://stackoverflow.com/questions/31505587/how-can-two-different-types-implement-the-same-method-in-golang-using-interfaces
- https://stackoverflow.com/questions/34079466/golang-embedded-struct
- https://github.com/golang/go/issues/22013
- https://golang.org/doc/faq#inheritance
- https://golang.org/doc/faq#Is_Go_an_object-oriented_language
- https://travix.io/type-embedding-in-go-ba40dd4264df
-
Container setup:
- https://gist.github.com/netdesk/c1db2985b542f9916995139318e5a7ce
- https://hub.docker.com/r/jwilder/nginx-proxy/
- https://hub.docker.com/r/jrcs/letsencrypt-nginx-proxy-companion/
Gitlab settings:
- https://docs.gitlab.com/omnibus/docker/
- https://docs.gitlab.com/ce/administration/environment_variables.html
- https://docs.gitlab.com/omnibus/settings/ssl.html
- https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template
Performance considerations:
- https://docs.gitlab.com/omnibus/settings/memory_constrained_envs.html (skip the
cgroups
section for Gitaly as we are already running in a container) - https://docs.gitlab.com/ee/update/#gitaly-omnibus-gitlab-configuration-structure-change for Gitlab 16 changes to Gitaly configuration
-
Trie - Wikipedia
2018-02-13