The bit that gets me is defining degree as n-1. For someone without a mathematical background, it takes a bit of pondering to figure out that you have to define n as one more than the actual degree, the opposite of what seems natrual. My mind at least just wants to think about n as the degree, and use n+1 as the last index. To me it seems aggressively unintuitive.
I guess you want to align the coefficient numbers but would it be a sin to define another index c = n-1 for that purpose?
But I'm a mathematical lightweight and maybe mathematical thinking is all about this. Perhaps some greater talent can correct my thinking.
I’m just excited that our industry is lead by optimists and our culture enables our corporations to invest huge sums into taking us forward technologically.
Meta could have just done a stock buyback but instead they made a computer that can talk, see, solve problems and paint virtual things into the real world in front of your eyes!
I commend them on attempting a live demo.
They should be mocked and called out, it might leave room for actual innovators who aren't glossy incompetents and bullshitters.
Deleted Comment
typedef struct blinky_state {
size_t pc;
uint64_t timer;
... variables that need to live across YIELDs ...
} blinky_state_t;
blinky_state_t blinky_state;
#define YIELD() s->pc = __LINE__; return; case __LINE__:;
void blinky(void) {
blinky_state_t *s = &blinky_state;
uint64_t now = get_ticks();
switch(s->pc) {
while(true) {
turn_on_LED();
s->timer = now;
while( now - s->timer < 1000 ) { YIELD(); }
turn_off_LED();
s->timer = now;
while( now - s->timer < 1000 ) { YIELD(); }
}
}
}
#undef YIELD
Can, of course, abstract the delay code into it's own coroutine.Your company is probably using hardware containing code I've written like this.
What's especially nice that I miss in other languages with async/await is ability to mix declarative and procedural code. Code you write before the switch(s->pc) statement gets run on every call to the function. Can put code you want to be declarative, like updating "now" in the code above, or if I have streaming code it's a great place to copy data.
[1]https://jacobin.com/2025/07/yanis-varoufakis-on-the-legacy-o...
That Greece accepted the terms reflected the reality that the alternative was much worse and would have caused great suffering for Greeks.
Deleted Comment
>Average fares are skewed by low cost carriers entering the market.
The low cost carriers business model is to fly new routes (to secondary airports if required) at low prices, often creating new demand (Breeze is a classic example of this).
The math is very straight forward if you consider what each group is doing in the market.
https://www.aerotime.aero/articles/most-profitable-airlines
I think there are lots of airlines that are propped up by governments that lose money leading to the meme you're quoting. Many industries were affected by the events you quoted, those sorts of things aren't specific to airlines.