
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
fontsimi
Advanced tools
Fast font similarity via 64‑dimensional vectors and per‑script HNSW indices.
FontVector, GlobalMetrics, ScriptId, IndexCollection, and low-level docs/tests under tests/.ScriptIndex, compute_font_vector, render_canonical, compute_ssim, and a stub optimize_match; the CLI and pipeline run, but optimizer refinement and more tests are still needed for v3.1..so in the repo targets CPython 3.13 only; rebuild for your interpreter with maturin.LICENSE is included.cd /Users/adam/Developer/vcs/github.docrepair-fonts/fontsimi
uv venv --python 3.12
source .venv/bin/activate
uv pip install maturin==1.6.0
maturin develop --features python --release
from fontsimi import FontVector, GlobalMetrics, IndexCollection, ScriptId
metrics = GlobalMetrics(aspect=0.5, width=0.6, density=0.4, consistency=0.1,
h_beam=0.2, v_beam=0.8, d_beam=0.2, ref_height=0.7)
vector = FontVector(metrics)
index = IndexCollection()
index.insert(ScriptId.latn(), "demo-font", vector)
results = index.search(ScriptId.latn(), vector, k=5)
See ../PLAN.md and ../TODO.md for the detailed v3.1 scope (binding completion, CLI fixes, wheels for py310–py313).
FAQs
Fast font similarity matching via vector search
We found that fontsimi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.