

for free?!


for free?!


ah fun! have you checked out ben eater’s ongoing youtube series of building a breadboard computer? he’s selling kits that allow you to follow along from hardware through binary, assembly, to BASIC and C. well worth a look imo.


i hope you get something out of it! C is a rabbithole.


you can absolutely save history in an array, but depending on how you want to do it, it can get very complex for a beginner.
the absolutely easiest way to go about it with how you’ve structured the program so far is making global arrays of just numbers, one for C->F conversions and one for the other way round. you also need to keep track of where in each array you are so you don’t go out of bounds. this requires minimal changes.
float c_to_f[5] ={0,0,0,0,0};
int c_to_f_length = 5;
int c_to_f_index = 0;
and update your input handler:
scanf("%d", &c_value);
c_to_f[c_to_f_index] = c_value;
c_to_f_index++;
if (c_to_f_index >= c_to_f_length) c_to_f_index = 0;
and then when you want to see the list results, you do
for (int i = 0; i < c_to_f_length; i++) {
printf("%d\n", c_to_f[i];
}
this will of course not be in order of insertion, and if you want to show more than just the numbers you need to do some tinkering.
this is however a great jumping-off point to talk about many different concepts:
sorry if my formatting is off, i did this on my phone…
you doing okay maria? that’s a lot of doubleposting!
also hiiii :)
scrolling while hovering over the sponsorblock time code does it by hundredths of a second, which is what you need the get the audio to line up.
then you spend 10 minutes trimming in the segment exactly so that it’s barely noticeable, and submit it just in time to see that some dipshit has pushed a segment that slices a sentence in half and ends with a flashbang
they call it “total cookie protection”, and it’s always enabled. every site gets its own cookie jar, which also includes things like localstorage.
if you’re paranoid you can use multi-account containers together with something like containerise to generate a new container for every domain that isn’t whitelisted, which means it disappears when you close the last tab for that domain. combine that with cookie autodelete and you can wipe whitelisted sites too.
that, or just tell the browser to clean up everything when you close it. that’s one toggle in the settings.


well that graph is total plastic exports, not waste specifically. i should probably have checked that before linking it. this one is probably more relevant; it shows generated plastic waste, but not exports. however if we take the 810kt from the op article at face value and put that against the 0.48kg/person/day number given to germany in this graph (× 80.83M people × 365 days ≈ 14.2 million tons), we get 810 / 14 200 ≈ 6% of their generated plastic waste being exported. i’d honestly say that’s a pretty impressive number, even though it also seems to point to the average german generating more like a ton of plastic waste a year. as someone partially responsible for a multi-tenant building’s maintenance it’s not an unbelievable figure by any means, but it is a lot.


this source ranks the us fairly low. i’d even say suspiciously low, but the numbers for germany seem correct.
oh no i am aware. that’s why i want them to elaborate.
the one in the back is wearing a hat
the others look female, but i’m no birdonomist.


yeah it’s unmaintained because he’s been in prison for almost 20 years. also i remembered it wrong, it was apparently strangulation, the axe thing was when he buried the body.
a recent letter from him to the community was published online last year and it’s gut-wrenching stuff. he dismisses all notion that he had a manic episode, he’s saying that he was in full control and has a perfect memory of it, and has been living scared of himself for the last 15 or so years. i of course don’t know the man but the letter seems genuine.


not really something you want bouncing around in your head, honestly.


just learn acme
it’s okay since the threat of communism is now well and truly dead for ever
i got gifted the entirety of the “super granny” collection once. that taught me to actually look at the games i got gifted, and that in turn resulted in the same copy of “bad rats” being gifted back and forth between five people for like seven years.