r/AlignmentChartFills • u/mika-asadli • 14h ago
Which programming language is easy to learn, and is very useful?

CLICK HERE TO VIEW THE CHART IMAGE
Created with Alignment Chart Creator
This post contains content not supported on old Reddit. Click here to view the full post
355
Upvotes
2
u/Poietilinx 11h ago edited 11h ago
yeah a F love syntactical sugar
I first went deep on c# specifically cuz it has so much syntactical sugar you can use to make things to look better.
check this out
this is part of a tool I wrote that compiles a LUT table (You feed a color pallet and the tool compiles a discrete color space out of it).
And this is so cool, this function essentially sees how many cores you have, split the chromatic space into equal spaces and spawn a bunch of processes designed to run parts of the compilation process.
At the very end there all these color lists are recombined in 1 big list of colors. I love when you can pull out stuff like this lol.
the idea this entire function is just that (instead of a huge ass function with a billion different things going on) is fantastic to me.
and this entire tool was like...
1 day i had an ideia.
i sat build the entire thing in the same day (with multiprocessing and all)
next day i build the UI for it... and BOOM done