See Delta Encoding With Feather and Pandas, July 2026.
To generate near-regular timestamps: see capture_timeticks.html
See Delta Encoding With Feather and Pandas, July 2026.
To generate near-regular timestamps: see capture_timeticks.html
[me]: How does Jason Sachs feel about embedded C in embeddedrelated.com ?
[Qwen3.6-Plus]:
Based on my research of Jason Sachs's content on embeddedrelated.com, here's what I found regarding his views on embedded C programming:
Jason Sachs does not express a singular "feeling" about embedded C as a language, but rather approaches it as a pragmatic, essential tool for embedded systems development that requires deep understanding and careful usage. His writings reveal several key attitudes:
[Claude 4.6 Sonnet, May 1 2026]
[Jason] For 2048-bit odd numbers, what fraction of them are multiples of at least one of the first 256 prime numbers?
[Claude] This is a classic inclusion-exclusion / sieve problem. Let me work through it carefully.
We want: among all 2048-bit odd numbers, what fraction are divisible by at least one prime in {3, 5, 7, 11, ..., p₂₅₆} where p₂₅₆ = 1619?
[Jason] Please factor
[ChatGPT] Try factoring it as a product of two quadratics. A good guess is something symmetric like
Expanding gives:
| #set page(width: 20cm, height:auto) | |
| #set heading(numbering: "1.") | |
| = Fun with typst | |
| The typst program is pretty neat! | |
| - Extremely fast incremental recompile | |
| - Easier syntax | |
| - Markup includes a well-designed scripting language |
| LaTeX | (render) | typst | (render) |
|---|---|---|---|
$$\sum_{i=0}^n i^2 = \frac{(n^2+n)(2n+1)}{6}$$ |
sum_(i=0)^n i^2 = ((n^2+n)(2n+1))/6 |
||
\lim_{\Delta x \to 0} \frac{\sin (x + \Delta x) - \sin x}{\Delta x} = \frac{d}{dx} \sin x = \cos x |
lim_(Delta x->0) (sin (x + Delta x) - sin(x))/(Delta x) = d/(d x) sin x = cos x |
||
\mathbf{T}(\theta) = \begin{bmatrix}\cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{bmatrix} |
(won't render in this form in GitHub Markdown math in a table) | #let bf(x) = $upright(bold(#x)) |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| body { | |
| font-family: 'Segoe UI', 'Lucida Grande' | |
| } | |
| table { | |
| border: 1px solid black; | |
| border-collapse: collapse; |