jq
for HTML. #github
#html
#markdown
#prompt-engineering
#web-dev
#best-practices
#prompt-engineering
#cloud
#html
#server
#web-dev
#ai-coding-tools
#chatgpt
#github
#ai-coding-tools
#github
#gpu
nvcr.io
#html
latexmlmath
converts TeX to MathML.m|math { font-family: "Noto Sans Math", "Noto Sans" }
is a popular OpenType Math font. Browsers default to native fonts: e.g. Cambria Math on windows. Explore at https://fred-wang.github.io/MathFonts/.#document-conversion
#document-conversion
#html
#markdown
#web-dev
#ai-coding-tools
#github
#markdown
#tts
mount
supports overlaying directories! Lower layer is read-only. Edits (including deletions) affect upper layer only. Docker uses this. docker image inspect
shows layers.RUN apt-get update && apt-get [packages]
rather than in separate lines. Else RUN apt-get update
gets cached with OLD update cache.COPY
till as late as possible, and COPY minimally - since it typically invalidates the cache.dive [IMAGE]
analyzes image details and shows the file system in each layer.FROM some-image AS builder
and do what you want. Then, after that, B: FROM scratch
(or FROM node:22-slim
) use COPY --from=builder what-you-want
.#future
#html
#prompt-engineering
#future
#image-generation
#ai-coding-tools
#github
#markdown
#code-agents
#html
#markdown
#prompt-engineering
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script><script>document.body.innerHTML = marked(document.body.textContent);</script>
. Use for dynamically generated static sites.?format=markdown
vs ?format=html
vs ?format=json
. Use in APIs.Accept
header, serve Markdown or HTML. Send Vary: Accept
to indicate that the response depends on the Accept
header. Use for dynamic web apps.#agents
#automation
#code-agents
#future
#llm-ops
#automation
#markdown
#optimization
#prompt-engineering
WEBUI_SECRET_KEY=... uvx --python 3.11 open-webui serve
#ai-coding-tools
#llm-ops
#web-dev
Text generation Web UI is less so.
KoboldAI,
LMQL,
LM Studio,
GPT4All, etc are far behind.#models
gemini-embedding-exp-03-07
leads the MTEB and is currently the top embedding model by a big margin. #embeddings
#ai-coding-tools
#automation
#code-agents
#html
#optimization
#prompt-engineering
#web-dev
gid
to each element.#ai-coding-tools
#automation
#code-agents
#future
#github
#llm-ops
#future
#llm-ops
#models
#ai-coding-tools
#github
git clone
#ai-coding-tools
#voice-cloning
#future
#llm-ops
uv tool install
and uv tool ensure-path
are useful commands for installing and ensuring path for tools. Simon Willison #ai-coding-tools