Vftdan Channel
25 subscribers
110 photos
2 videos
9 files
178 links
author: @vft_dan
Download Telegram
~ Rhombic dodecahedrons are bestahedrons

Link to post
πŸ‘1
systemctl disable --now cups-browsed.service
~ High vis jacket (thaumcraft chestplate-slot armor piece)

Link to post
😁1😭1
Is there an stdlib and python (argparse) equivalent for O_CREAT | O_EXCL?

Oh, wait, x
~ People who say that a task is not worth spending time automating, because it only saves several (deci)seconds per invocation and so would only break even in (dozens of) years don't account for time for restoring context, focus, and motivation, all of which can be easily lost

Link to post
~ The only actually serverless architecture is DHT

Link to post
❀4
~ πŸ”οΈŽ Vftdan
@goldstein
Oh, yeah
Less-equal is a way to generalize implication for fuzzy logic and multiset inclusion, so basically:
(≀) = (β†’)

Additionally, max and min are respectively ways to generalize disjunction and conjunction in these cases. And I've seen someone relatively recently tried to use ↑ as binary max operator and ↓ as binary min operator, so with this notation:
(∧) = (↓)
(∨) = (↑)

So there is an approximate, rotation-respecting equivalence between wedge and arrow glyphs, where the sharp end of the wedge corresponds to the arrow source.

Link to post

#math
🀯1
~ πŸ”οΈŽ Shane Redman
@mira Woah, someone just shared this relevant blog with me today: https://lowbackgroundsteel.ai/

Link to post
~ πŸ”οΈŽ Michael
Happy Halloween! πŸŽƒ

Link to post
Oh, I seem to have found a way to do NΓ—M codegen in C!
~ πŸ”οΈŽ gnu/m43
Compiling C software:

- 5 seconds codegen
- 30 seconds compiling C code
- 1 second linking
- 34 hours of autotools checking whether it's running in a universe where 2+2=4

Link to post
❀4
Forwarded from meme tutorial
"stock" and "vanilla" are synonyms in modding, but not in soup
😁4
header-includes:
- '`\makeatletter`{=latex}'
- '`\AtBeginDocument{\let\theauthor\@author}`{=latex}'
- '`\AtBeginDocument{\let\thetitle\@title}`{=latex}'
- '`\makeatother`{=latex}'
🀯1
~ Why is it not allowed to initialize a flexible array field with a sized array in order to specify how much stack/global memory to reserve?

typedef struct {
long length;
int values[] __attribute__((__counted_by__(length)));
} MyType;

MyType instance = {
.length = 10,
.values = (int[10]) { [5] = 2 },
};

Link to post
πŸ€”1😭1
Vftdan Channel
~ Why is it not allowed to initialize a flexible array field with a sized array in order to specify how much stack/global memory to reserve? typedef struct { long length; int values[] __attribute__((__counted_by__(length))); } MyType; MyType instance…
Ah, it's not even possible to non-initializer-assign sized arrays

src/common/util/fixed/tensor.c:27:28: error: assignment to expression with array type
27 | *(int(*)[3][3])(x.items) = (int[3][3]) {
| ^
😭1
~ πŸ”οΈŽ γ€Œ Extra Fristi 」
what if we had a sneakernet but globally

Link to post
~ πŸ”οΈŽ Kris :v_bi:
happy international mens day!!!

Link to post
πŸ₯°1
Is the result of getting sizeof of a VLA type that does not fit into the address space defined?
πŸ€”1