- 20 Feb 2026.
brew install git-trim git-trim - A dedicated binary for
safely deleting merged branches. Handles edge cases better than bash one-liners, including squash-merged branches. #
- 19 Feb 2026. slingdata-io/sling-cli is a promising tool move/sync data between databases and files, esp. helpful for local testing, ci/cd while able to do stage/sql based transformations.
-
16 Feb 2026. https://modern-css.com/ has a really nice collection of CSS replacements for older hacks.
-
16 Feb 2026. panphora/overtype: The markdown editor that’s just a textarea with a small size footprint and a minimum looking UI https://overtype.dev (⭐3431) #markdown
-
15 Feb 2026. For generating embedding locally,
nomic-embed-text is a large
context length text encoder that
surpasses OpenAI
text-embedding-ada-002 and text-embedding-3-small performance on short and
long context tasks. It has a balance of speed, 8k context, and accuracy for
English-centric apps. BGE-M3, Qwen3-Embedding and E5-Small are other
alternatives. #embeddings
-
15 Feb 2026. alibaba/zvec by alibaba is an
embedded vector database supports both spare and dense vectors, along with
structured data. It can be considered the sqlite of vector databases.
- 15 Feb 2026. yichuan-w/LEANN is a RAG focused framework focused on efficient storage with built-in chunking strategies embedding model management and MCP server. gemini
- 15 Feb 2026. K-dense known for using skills to enable deep research has published 140+ skills related to scientic research including literature review, data analysis, etc.
- 13 Feb 2026. zoocache is a sematic dependency based cache manager, that support in-memory, LMDB or redis backends. Integration with Django looks interesting.
- 12 Feb 2026. Handy Looks like a promising tool for to replace WisperFlow and VoiceInk for speech to text conversion. via
- 10 Feb 2026. Hono based on web standards is a great option for js runtimes esp. if you plan to deploy your code to cloudflare workers, bun or deno. You get faster startup time and cross-platform compatibility.
- 06 Feb 2026. Opus 4.6 launch.
- context compaction (beta) and 1M context window, enables longer agentic tasks without loosing context.
- they claim it has found 500 Zero-Day Flaws in open-source projects (yet to see the proofs though)
- agent teams, multiple agent coordinates with a leader agent. https://code.claude.com/docs/en/agent-teams
- 05 Feb 2026. On blockchain, UIPC (Universal IPC) and SIPC (Secure IPC) are frameworks that allows different network to talk to each other using a standard protocol. While UIPC acts as the universal courier, SIPC acts as the security guard. Together, they create “Internet of Blockchains”. Gemini
- Cosmos IBC & Polkadot - XCM are two industry leading protocols for UIPC
- For the SIPC, Zero-Knowledge Proofs and Rollup architecture also “Trustless bridges” or “Cross-rollup communication” are often more frequently used terms in blockchain literatures.
- 05 Feb 2026. Vortex a newer format is supported by duckdb promises to be faster for random access and has zero-copy metadata, with better compression. While the support across the board is limited but worth considering for LLM/RAG based uses over parquet.
- 05 Feb 2026. Designing Data-Intensive Applications: The Big Ideas Behind Reliable, Scalable, and Maintainable Systems by Martin Kleppmann manages to be both rigorous technical manual and something approaching a philosophical treatise on the nature of truth, consistency, and trust in distributed systems. [Claude][https://claude.ai/chat/0f58f2f6-bd56-41a1-a785-8267afa5a3d1]
- Foundation. He starts by asking the questions “What do we actually want in our data systems”, answers them as - reliability, scalability and maintainability.
- Reliability. The question isn’t whether failure will happen, it will, but the whether the systems can survive them.
- Scalability. It’s not a binary question of whether a system is “scalable” or “not scalable”. Ask - “What happens when specific load parameter increase?”
- Maintainability - most underappreciated of the three, he argues the majority of cost isn’t in initial development but in ongoing maintainence.
- The data model wars - the skill isn’t in choosing the “best” database but in understanding which tradeoffs matter for your specific problem.
- Storage engines. Two major approaches to read & write data from disk, neither is universally better.
- Log-structured storage (like LSM-trees) optimizes for writes, every write is appended and the merged/compacted later.
- Page-oriented storage (like B-trees) optimizes for reads, data is stored in fixed-sized block, which then get updated in-place, more like filing cabinet with each document has a designated slot.
- Instead of asking “how do I build this?” ask “what does it mean for this to work correctly?”