Go OOP Notes
Some quick notes on Go after taking a short "OOP in Go" course from LinkedIn (instructor Frank P Moley III). Encapsulation Encapsulation in Go is performed at a package level…
Some quick notes on Go after taking a short "OOP in Go" course from LinkedIn (instructor Frank P Moley III). Encapsulation Encapsulation in Go is performed at a package level…
One CSS property (among many) that ALWAYS cause problems for me is the box-sizing property. Therefore, I might as well add a post for it. Normally, when setting the width…
Data Model for Embedding Typically, a model is used whose record includes: the text being embedded the embedding (vector of floats) However, RDBMSes have strict and relatively static schemas that…
Sigh. Yes--yet another "AI" article in a blog. The pgvector extension allows PostgreSQL to support vector searches. This ability is useful for implementing RAG solutions. The link has all…
With the basics down, the next step in this little adventure w/ Javascript is to make it work in a React.js environment (Next.js to be more precise). There were some…
Part of a project I'm working on involves some animation of "cards" sliding in and out of existence. This trinity of HTML/CSS/JS serves as a basis for that functionality. The…
I asked CoPilot in Microsoft Edge to help me get started with something in a Web page to allow me flip between cards: You are an expert in Javascript and…