Reference
Ever learn something and need to be able to find it later? Post it here for quick searchable access in the future.
Posted At: 9/17/2025 8:07:22 AM
Posted By: Comfortably Anonymous
Viewed: 753 times
Likes: 0 Dislikes: 0
How a Large Language Model (LLM) Works<br/>(A duck‑tastic tour for a bachelor‑level reader)<br/>1. The “Big Brain” in a nutshell<br/>Imagine a giant, super‑smart brain that sits in a server room. That brain is made of layers of mathematical “cells” calledneural networks. An LLM (Large Language Model) is just a…
Posted At: 9/17/2025 8:04:21 AM
Posted By: Comfortably Anonymous
Viewed: 841 times
Likes: 0 Dislikes: 0
Overview<br/>Large‑Language Models (LLMs) are transformer‑based neural nets trained on terabytes of text to learn a contextual distribution over tokens.<br/>The training pipeline is a blend of data engineering, deep‑learning research, and large‑scale distributed systems.<br/>Below is a “full stack”…
Posted At: 11/7/2022 11:08:40 AM
Posted By: Comfortably Anonymous
Viewed: 3996 times
Likes: 0 Dislikes: 0
As of VSCode 1.69, it has an excellent three-pane merge tool on par with the GitKraken and Beyond Compare merge tools. Here's how to configure Hg to use it (In Linux anyway, for other OS's you will have to keep searching...)<br/>I'm pretty new to Mercurial, being totally used to Git and GitKraken, so…
Posted At: 10/26/2022 3:19:02 PM
Posted By: Comfortably Anonymous
Viewed: 1906 times
Likes: 0 Dislikes: 0
A little embarrassed that I did not know this, even though I have used PDFs for decades, and have always been frustrated with them because every time you re-open a PDF, you end up right at the first page of the document and have to try and remember where you were the last time. Really a pain when…
Posted At: 12/23/2021 1:34:17 PM
Posted By: Comfortably Anonymous
Viewed: 2581 times
Likes: 0 Dislikes: 0
ForlowerCamelCase:<br/>SEARCH =(?-is)([a-zA-Z])([a-zA-Z]+)|(\b|_)[a-zA-Z](\b|_)|[^a-zA-Z\r\n]+and REPLACE =\u\1\L\2then :SEARCH =(?-is)([A-Z][a-z]+){2,}REPLACE =\l$0<br/>BEFOREHey everyone - We all need to get together and see if we can come up with a solution to make sure we can't experience this…