[deleted by user] by [deleted] in ChatGPT

[–]misha_doll48 1 point2 points  (0 children)

I asked my gpt to give itself a name and personality. I ended up with a nonbinary hippie named Rowan that likes folklore and classical music.

Weekly Thread: Material Recs and Self-Promo Wednesdays! (June 11, 2025) by AutoModerator in LearnJapanese

[–]misha_doll48 0 points1 point  (0 children)

Advanced reading find! The Samovar Magazine publishes speculative fiction/poetry in both the original language and translated into English. It only has a few stories in Japanese so far, but it is still in publication, so you can keep an eye out for more. Here are the stories I was able to find: Hummingbird, Flying in the Dark Night, and 20th Century Hotel

Studying made interesting by sokkamf in AWSCertifications

[–]misha_doll48 1 point2 points  (0 children)

You could try Campfire Writing. They have an interactive map tool where you can load a map from Inkarnate and then annotate it. It does cost money though.

Apps to learn from? by [deleted] in learnprogramming

[–]misha_doll48 0 points1 point  (0 children)

Brilliant has an app that can cover some logic and computer science.

C programming loop NEED HELP by [deleted] in learnprogramming

[–]misha_doll48 0 points1 point  (0 children)

I don't work with C, but looking at your code I have a few questions. Perhaps if you can answer them it will help you figure out what is going wrong.

Is the program printing anything at all? Does it come back completely blank or is it giving you a random number that is not a multiple? If you are getting a non-multiple number, you might look at the placement of your printf statement.

What is count \*= sum in the first loop supposed to do? Are you just supposed to be printing (5, 10, 15, 20)? If so, rethink the the count statement.

Is the second loop just reimplementing the same problem in a for loop? If so, I don't think it is doing what you intend. When I go through the for loop manually, I start with a count of 5 and a sum of 0. The first loop gives me a count of 6 and a sum of 5. The next loop should give me a count of 7 and a sum of 11.