#ai-coding-tools
#future
#github
#markdown
#prompt-engineering
#database
#markdown
make
but uses YAML conifguration. Written in Rust. #github
#markdown
#markdown
#cloud
#database
#github
#markdown
#ai-coding-tools
#automation
#future
#markdown
#optimization
#prompt-engineering
cat file.md | pandoc -f markdown -t html
). My favorites: #document-conversion
#html
#markdown
--no-highlight
skips code-highlighting. --highlight=pygments
adds Pygments styling--wrap=none
doesn't wrap the content in a single block--number-sections
adds section numbering (<h2>1. Introduction</h2>
)--shift-heading-level-by=NUM
β shift all headings by NUM levels (e.g., start at <h2>
instead of <h1>
)pandoc -f markdown-auto_identifiers
drops the auto-identifiers extension that generates id=...
for each headingpandoc -f gfm
uses GitHub flavored Markdown. Run pandoc --list-extensions=gfm
to identify the extensions it uses.alerts
: GitHub-style callouts (info, tip, warning) via > [!TYPE]
blocks.autolink_bare_uris
: Turns bare URLs into links, without needing <...>
.emoji
: Parses :smile:
-style codes into Unicode emoji characters.footnotes
: Enables footnote syntax with [^id]
and definitions at the bottom.gfm_auto_identifiers
: Uses GitHubβs heading-ID algorithm: spaces β dashes, lowercase, removes punctuation.pipe_tables
: Enables table.raw_html
: Raw HTML is unchanged.strikeout
: Enables strikethrough with ~~text~~
.task_lists
: Parses - [ ]
and - [x]
items as checkboxes.yaml_metadata_block
: YAML front matter for document metadata, e.g. <title>
ascii_identifiers
: Strips accents/non-Latin letters in automatically generated IDs.bracketed_spans
: [Warning]{.alert}
becomes <span class="alert">
definition_lists
: Term\n: Definition text
becomes a definition listfenced_divs
: ::: {.note}
block creates a <div class="note">...</div>
implicit_figures
: Standalone images become <figure>
with <figcaption>
.implicit_header_references
: [Section]
is treated as [Section][#section]
raw_attribute
: <b>bold</b>
{=html} is inserted as HTMLsmart
: Converts straight quotes to curly, --
to en-dash, ---
to em-dash, ...
to ellipsis.subscript & superscript
: E.g. H~2~O
and E = mc^2^
#ai-coding-tools
#github
#html
#markdown
#future
#markdown
uvx streamdown --exec 'llm chat'
lets you chat with an LLM using Markdown formatting. It's still a little rough at the edges. #llm-ops
#markdown
#ai-coding-tools
#automation
#code-agents
#dev
#future
#html
#llm-ops
#markdown
#prompt-engineering
cmdg
. #ai-coding-tools
#code-agents
#github
#llm-ops
#markdown
#prompt-engineering
#ai-coding-tools
#markdown
xclip -sel clip -o | pandoc -f markdown -t html --no-highlight | xclip -sel clip -t text/html -i
to convert Markdown in the clipboard to rich text. But xclip
doesn't support multiple selections, so the text is lost. ChatGPT #document-conversion
#markdown
SIGSEGV (Address boundary error)
when connecting to SQLite databases. #dev
#database
#markdown
#database
#markdown
#ai-coding-tools
#github
#markdown
#ai-coding-tools
#code-agents
#future
#github
#markdown
devcontainers.json
spec encapsulates everything you need to get a codebase running for development - as opposed to production. E.g. VS Code extensions, linters, etc. #dev
#markdown
tqdm.pbar
can print logs while showing progress. It's worth noting such learnings until it becomes a habit. #ai-coding-tools
#automation
#code-agents
#future
#github
#markdown
#prompt-engineering
#ai-coding-tools
#code-agents
#future
#markdown
#prompt-engineering
marimo new "prompt"
generates an entire new notebook using your prompt. Video #markdown
#ai-coding-tools
#code-agents
#github
#markdown
codex.md
can only handle 32K.#markdown
#document-conversion
#markdown
#speech-to-text
#document-conversion
#html
#markdown
#document-conversion
#markdown
#speech-to-text
#document-conversion
#html
#markdown
#ai-coding-tools
#code-agents
#github
#markdown
#prompt-engineering
#ai-coding-tools
#code-agents
#dev
#github
#llm-ops
#markdown
#prompt-engineering
ai!
comment to trigger changes and ai?
to ask questions.tmux
based LLM tool for the command line. It screen-grabs from tmux, which is powerful.make
sucks but is hard to beat. just
comes closest.yjs
is a good start but automerge
(Rust, WASM) is faster and may be better.#ai-coding-tools
#github
#markdown
#markdown
#ai-coding-tools
#code-agents
#dev
#github
#html
#markdown
#prompt-engineering
#web-dev
#github
#markdown
#html
#markdown
duckdb -ui
launches a DuckDB notebook. This is built into newer DuckDB releases #markdown
jq
for HTML. #github
#html
#markdown
#prompt-engineering
#web-dev
#document-conversion
#html
#markdown
#web-dev
#ai-coding-tools
#github
#markdown
#tts
#automation
#markdown
#optimization
#prompt-engineering
#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.#markdown
#document-conversion
#github
#markdown
#prompt-engineering
#ai-coding-tools
#document-conversion
#github
#gpu
#markdown
{"key": "shift+enter", "command": "workbench.action.terminal.runSelectedText", "when": "editorFocus"}
to the keybindings.json
file. Press Shift-Enter to run the selection on the terminal. Useful for DuckDB, SQLite, etc. Ref #ai-coding-tools
#dev
#markdown
#markdown
#ai-coding-tools
#github
#html
#markdown
o3-mini
which was launched this week (though in limited preview). #future
#github
#markdown
#models
#ai-coding-tools
#cloud
#future
#github
#markdown
#ai-coding-tools
#best-practices
#dev
#markdown
#ai-coding-tools
#code-agents
#llm-ops
#markdown
#optimization
#prompt-engineering
#markdown
#ai-coding-tools
#document-conversion
#github
#markdown
uvx files-to-prompt
npx git-ingest
ingest
- written in Go, only Mac/Linux binaries#chatgpt
#markdown
#document-conversion
#markdown
PYTHONUTF8=1 uv run --with pymupdf4llm python -c 'import pymupdf4llm; h = open("pymupdf4llm.md", "w"); h.write(pymupdf4llm.to_markdown("$FILE.pdf"))'
PYTHONUTF8=1 uvx markitdown $FILE.pdf > markitdown.md
**/*.md
can search for all Markdown files. Julia Evans #markdown
#markdown
Section collapsed - expand with expand_section("{identifier}").
#markdown
#cloud
#document-conversion
#markdown
#document-conversion
#github
#html
#markdown
#database
#github
#llm-ops
#markdown
Today, 38 repos on GitHub support it#markdown
#ai-coding-tools
#code-agents
#markdown
#prompt-engineering
#ai-coding-tools
#github
#html
#markdown
#html
#markdown
#web-dev
#automation
#markdown
#gpu
#markdown
#github
#markdown
#document-conversion
#markdown
#ai-coding-tools
#code-agents
#dev
#github
#markdown
/llms.txt
files as a way to share LLM prompts. #llm-ops
#markdown
#markdown
#ai-coding-tools
#code-agents
#github
#markdown
#future
#markdown
#markdown
uvx marimo edit
#embeddings
#markdown
#ai-coding-tools
#automation
#dev
#markdown
#prompt-engineering
#ai-coding-tools
#code-agents
#dev
#github
#llm-ops
#markdown
#document-conversion
#llm-ops
#markdown
#ai-coding-tools
#code-agents
#dev
#future
#markdown
#prompt-engineering
#ai-coding-tools
#code-agents
#llm-ops
#markdown
#prompt-engineering
#ai-coding-tools
#future
#markdown
#prompt-engineering
#ai-coding-tools
#llm-ops
#markdown
#ai-coding-tools
#automation
#code-agents
#dev
#future
#github
#markdown
#prompt-engineering
#document-conversion
#html
#markdown
#embeddings
#future
#gpu
#markdown
#models
#optimization
#prompt-engineering
#markdown
#markdown
#markdown
#pricing
#markdown
logit_bias
trick to limit choices in output. See get_choice()
#llm-ops
#markdown
#ai-coding-tools
#code-agents
#github
#markdown
Explain this
to understand the code%something
in command bar searches ACROSS files for a term. Exactly like Ctrl+Shift+F
Ctrl+2
opens a second window on the side. Ctrl+1
goes back to the first window#github
#markdown
#future
#llm-ops
#markdown
#models
#prompt-engineering
#ai-coding-tools
#code-agents
#future
#github
#markdown
#ai-coding-tools
#dev
#markdown
#future
#markdown
#future
#html
#markdown
#web-dev
#markdown
#gpu
#llm-ops
#markdown
#markdown
#future
#markdown
#github
#markdown
#python
#cloud
#gpu
#markdown
#gpu
#markdown
#github
#markdown
#prompt-engineering
#dev
#future
#github
#html
#markdown
#web-dev
#markdown
#optimization
#prompt-engineering
#ai-coding-tools
#code-agents
#github
#markdown
#document-conversion
#markdown
#llm-ops
#markdown
#optimization
#huggingface
#markdown
#ai-coding-tools
#future
#markdown
#ai-coding-tools
#github
#gpu
#markdown