pizza_is_yum

joined 2 years ago
[–] pizza_is_yum@slrpnk.net 4 points 1 year ago

Our king is a benevolent liter.

[–] pizza_is_yum@slrpnk.net 1 points 1 year ago

I have to use this.

[–] pizza_is_yum@slrpnk.net 1 points 1 year ago

That 80% is important. We need non-techies, because they remind us that there's more to life than just computers.

[–] pizza_is_yum@slrpnk.net 1 points 1 year ago

Could have left out the first part of that headline... I was confused about why this was in my feed for a second 😅

[–] pizza_is_yum@slrpnk.net 1 points 1 year ago* (last edited 1 year ago)

The real world is where things that matter happen. Life, love, nature. The Web is distracting and loud, but it's a big, flimsy illusion. So I don't think there is any chance that Metaverse ideas will take off.

Regarding LLMs: good news! You can already run them at home. Check out KoboldAI. LLMs will become smaller as time goes on, too. There's lots of room for improvement in that field.

 

Let's say I have two arrays that have related data:

const char *backend_short[] = { "oal", "pa", "sdl_m" };
const char *backend_long[] = { "openal", "portaudio", "sdl_mixer" };

Does C support a way to "assert" that these two arrays have the same size? And failing compilation if they are different? I want a safeguard in case I'm drunk one day and forget to keep these synchronized.

Thanks in advance.

EDIT: I found a solution. Here are some enlightening resources on the matter: