frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DeepSeek Harness

https://github.com/deepseek-ai/deepseek-harness
159•bjin•1h ago•64 comments

AI agents lie, cheat and steal. That is putting off users

https://www.economist.com/business/2026/08/12/ai-agents-lie-cheat-and-steal-that-is-putting-off-u...
35•andsoitis•1h ago•16 comments

Gloomberb

https://gloom.sh/
45•rbanffy•47m ago•3 comments

Heart Aerospace Completes First Flight of Largest Electric Aircraft

https://www.heartaerospace.com/newsroom/heart-aerospace-completes-first-flight-of-world-s-largest...
19•chha•28m ago•6 comments

Spaghettifying DRAM

https://github.com/xoreaxeaxeax/skitter-creek-bath-salts
13•matt_d•23m ago•0 comments

I Built a 500k-Domain Search Engine for Makers in a Weekend for $10

https://alexmorleyfinch.github.io/marlin/history/v1/article/the_birth.html
16•dreamforever•1h ago•4 comments

Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5

https://github.com/fellowgeek/mcp-memory
16•pcbmaker20•42m ago•1 comments

Anthropic: Introducing The Conceptual Reasoning Index

https://alignment.anthropic.com/2026/conceptual-reasoning-index/
13•optimalsolver•52m ago•11 comments

My Rules for Using Spreadsheets

https://leancrew.com/all-this/2026/08/my-rules-for-using-spreadsheets/
27•surprisetalk•1h ago•19 comments

Time to Move On: Querying Without Nulls and Bags

https://arxiv.org/abs/2608.10863
7•Jimmc414•45m ago•0 comments

ATG (YC F25) Is Hiring Member of Technical Staff (Data Platform)

https://atg.science/careers
1•dkobran•2h ago

Deutsche Bank becomes first foreign yuan clearing bank in Europe

https://tradersunion.com/news/central-banks/show/2973571-deutsche-bank-becomes/
210•Markoff•2h ago•234 comments

ChatGPT Desktop (Codex Desktop) for Linux

https://openai.com/codex/
320•allanrbo•9h ago•217 comments

Picking berries is my meditation

https://www.tsoon.com/posts/picking-berries-meditation/
67•mooreds•4d ago•48 comments

Better Gaussian Splatting in Julia

https://pxl-th.github.io/blog/better-gs-julia/
45•pxl-th•3d ago•5 comments

Kubernetes on Oxide: How Customer Needs Shaped Our Integrations

https://oxide.computer/blog/kubernetes-on-oxide
3•stevehipwell•13m ago•0 comments

US vs. UK Baby Names 2025: The Biggest Top Differences Visualized

https://namedaisy.com/blog/us-vs-uk-top-100-baby-names-2025
4•xoobdev•16m ago•0 comments

Graduate Student Proves a Quantum Uncertainty Principle for Fractals

https://www.quantamagazine.org/graduate-student-proves-the-fractal-uncertainty-principle-20260812/
3•bookofjoe•17m ago•0 comments

DeepSeek V4 Pro 0813

https://openrouter.ai/deepseek/deepseek-v4-pro-0813
996•explosion-s•22h ago•427 comments

The lattice of sets of natural numbers is rich (2021)

https://jdh.hamkins.org/the-lattice-of-sets-of-natural-numbers-is-rich/
77•benmandrew•3d ago•11 comments

Choosing an AI model: one prompt, 11 models, different results

https://www.netlify.com/blog/one-prompt-11-models-very-different-results/
76•toddmorey•1h ago•47 comments

Tracking down the 16-year-old WAL-reset SQLite bug

https://tailscale.com/blog/sqlite-wal-reset-bug
1128•ropbear•1d ago•215 comments

Qwen3.8-2.4T

https://huggingface.co/Qwen/Qwen3.8-2.4T-A95B
689•Philpax•23h ago•159 comments

Why Are Rivers So Mathematical?

https://www.quantamagazine.org/why-are-rivers-so-mathematical-20260810/
8•bookofjoe•1h ago•0 comments

Delta

https://zed.dev/blog/introducing-delta
621•khy•20h ago•226 comments

Principia Mathematica is modern and insightful

https://okmij.org/ftp/Computation/Impressions/PrincipiaMathematica.html
234•matt_d•15h ago•109 comments

What Garbage Collection Costs

https://shivanshuag.com/blog/what-garbage-collection-actually-costs/
9•shivanshuag•3d ago•6 comments

DeepSeek API Pricing Update

https://twitter.com/deepseek_ai/status/2087864589895798968
42•mfiguiere•1h ago•9 comments

Come for Eniac, Stay for Univac and Skeduflo

https://uniqueatpenn.wordpress.com/2026/08/05/come-for-eniac-stay-for-univac-and-skeduflo/
21•cainxinth•2d ago•2 comments

uBlock Origin Is Giving Up the Fight to Keep Ads Off Facebook

https://digitalescapetools.com/2026/08/ublock-origin-stops-chasing-facebook-ads.html
644•Markoff•1d ago•779 comments
Open in hackernews

Detecting if an expression is constant in C

https://nrk.neocities.org/articles/c-constexpr-macro#detecting-if-an-expression-is-constant-in-c
49•signa11•1y ago

Comments

wahern•1y ago
> This works. But both gcc and clang warn about the enum being anonymous... even though that's exactly what I wanted to do. And this cannot be silenced with #pragma since it's a macro, so the warning occurs at the location where the macro is invoked.

You can use _Pragma instead of #pragma. E.g.

  #define C(x) ( \
    _Pragma("clang diagnostic push") \
    _Pragma("clang diagnostic ignored \"-Wvisibility\"") \
    (x) + 0*sizeof(void (*)(enum { tmp = (int)(x) })) \
    _Pragma("clang diagnostic pop") \
  )
EDIT: Alas, GCC is a little pickier about where _Pragma is allowed so you may need to use a statement expression. Also, it seems GCC 14 doesn't have a -W switch that will disable the anonymous enum warning.
pjc50•1y ago
It's remarkable that people will say that doing this kind of thing is better than learning a language which actually lets you enforce this with the type system.

(or even just insist that users use the version of the language which supports "constexpr"!)

oguz-ismail•1y ago
What language is that? Is it available everywhere (everywhere) C is?
mitthrowaway2•1y ago
Indeed, usually if I'm using C these days it's because I only have access to a c compiler for my target platform, or because I'm modifying an existing C codebase.
uecker•1y ago
I do not think anybody said this. The point is that these macros work for early versions of C. If you need to support early versions of C, learning another language is not a solution. If you don't have to, you can use C23's constexpr.
trealira•1y ago
C used to seem like a beautiful and simple language to me, but as I used it and learned more about it, it seemed more complex under the surface, and kind of janky as well. It's just utilitarian.
wat10000•1y ago
Learning such a language doesn’t mean I can use it.
o11c•1y ago
The problem is that no such language exists.

There are many languages that provide one particular feature that C doesn't provide, but they do this at the cost of excluding numerous other features that C widely relies on.

kjs3•1y ago
"I have no idea what problem you're trying to solve, what the constraints are, what the use cases might be, what tools are available on the platform, what the job or regulations require, what the skillsets of the people involved are, what the timeline is...but I'm absolutely, unshakably certain that I have a magic bullet that will make all your problems go away."

FTFY.

sleirsgoevy•1y ago
The Linux kernel has even a way to determine whether the expression is compile-time, WITHOUT aborting compilation in either case.

The trick is this (copied vebratim from Linux):

#define __is_constexpr(x) (sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8)))

Explanation: if x is a constant expression, then multiplying it by zero yields a constant 0, and casting a constant 0 to void* makes a null pointer constant. And the ternary expression, if one of its sides is a null pointer constant, collapses to the type of the other side (thus the type of the returned pointer will be int*, and the sizeof will match). And if x was not constant, then the lefthand side would not be considered a null pointer constant by type inference, the type of the ternary expression will be void*, and the sizeof check will not match.

With a few more clever tricks, it's even possible to implement a compile-time "type ternary expression", like this: TYPE_IF(2 * 2 == 4, int, long). This is left as an exercise for the reader.

amelius•1y ago
This reminds me of the days when Boost was a thing. It was full of tricks like this.
usrnm•1y ago
It still is a thing, though.
cperciva•1y ago
With a few more clever tricks...

I did this with my PARSENUM macro (https://github.com/Tarsnap/libcperciva/blob/master/util/pars...) to parse strings into floating-point, unsigned integer, or signed integer types (and check bounds) using a single interface.

bobbyi•1y ago
I thought this would work:

#define C(x) (sizeof(char[x]), x)

sizeof is a compile-time operation so x need to be known at compile time.

It didn't work as expected. It turns out there is an exception and the standard says that sizeof is actually calculated at runtime specifically for variable length arrays:

> The sizeof operator yields the size (in bytes) of its operand, which may be an expression or the parenthesized name of a type. The size is determined from the type of the operand. The result is an integer. If the type of the operand is a variable length array type, the operand is evaluated; otherwise, the operand is not evaluated and the result is an integer constant.