mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

746
active users

#problemsolving

3 posts3 participants0 posts today

A #Pew Research Centre #survey reveals that while #Americans are open to #AI’s potential benefits, they are #concerned about its #impact on human abilities. A majority believe AI will erode #creativethinking and the ability to form meaningful #relationships. However, there is some optimism about AI improving #problemsolving skills. pewresearch.org/science/2025/0 #tech #media #news

Pew Research Center · How Americans View AI and Its Impact on People and SocietyBy Reem Nadeem
Replied in thread

@mickmel just "don't"?

Look, just "because it's there" doesn't mean it's acceptable to draw from it.

Or would you:

  • Build FGC-9's in "Art & Crafts"?
  • Put on PornHub for SexEd?
  • Use Daesh Propaganda Videos to teach Arabic?
  • Make some Yellowcake in chemistry class?
  • Let kids download live malware from @vxunderground in CS class and thell them that they'll only be allowed to leave once the RAT'd the principal's computer and got their current grades printed out. (Okay, that one I'd want to see!)

OFC NOT!

It's the same reason I'm a staunch opponent of allowing #CCSS like #MicrosoftWindows & #MicrosoftOffice in classes and schools in general!

en.wikipedia.orgFGC-9 - Wikipedia

( \(2^{nd}\) announcement)

The #Springer Problem Book for the Indiana College Mathematics Competition (2001-2023) is now available in a (slightly less expensive) softcover format! This book, edited by me, J. Gash, R. Gillman, and @JohnRickert , can be used by students and coaches in a problem solving class, and would also make a great gift or library order! Purchases through the publisher web site generate royalties that support student activities in the #Indiana Section of the #MAA .

link.springer.com/book/10.1007

SpringerLinkThe Indiana College Mathematics Competition (2001⁠–2023)This book gathers problems based on over twenty years of the Indiana College Mathematics Competition, a contest for teams of undergraduates.

Dealing with codebases with little or no documentation and having to add some functionality that is not similar to that already existing can be extremely challenging.

In this particular situation, I needed to inject a custom section to binutils 'ld' ELF generation late in the linking stage. Adding the section itself was easy. The problem was that I couldn't easily figure out how to inject the actual section contents.

Trying to find the relevant code from millions of lines of code (cloc says 5,252,854 total) proved too much work. Trying to follow the complicated data structures and multi-layered abstracted code structure was too painful.

Finally I got tired of trying to figure things out and I took out the trick from the old hacker toolbox:

Make the app crash around the area where things you with your own code should generate have been generated. Add *(int *)1 = 2; to the code, build it, run it with gdb, and then examine the stack trace to find out how you ended up in this place. Then you can find out what kind of data structures need to be in place for the execution to end up where you need it to be.

Finally, find out where such data structures are generated. To speed up things, make it crash again using the same trick as above and see how you end up on the specific code path. Walking backwards, you eventually find what you need.

The code I needed to add?

struct bfd_link_order *link_order;
link_order = bfd_new_link_order (abfd, s);
if (link_order)
{
link_order->type = bfd_data_link_order;
link_order->u.data.contents = (unsigned char *) data;
link_order->u.data.size = s->size;
link_order->size = s->size;
link_order->offset = 0;
}

I know real coders would likely use proper debuggers with breakpoints and similar. But just adding a crash and debugging it felt more rustic. You know, like real #hacking...

Should we add "#SkinJobs" and "#Toasters" to this list?

How ‘#Clanker’ Became the Internet’s New Favorite Slur

New derogatory phrases are popping up online, thanks to a cultural pushback against #AI

by CT Jones, August 6, 2025

"Clanker. #Wireback. #Cogsucker. People are feeling the inescapable inevitability of AI developments, the encroaching of the digital into everything from entertainment to work. And their answer? Slurs.

"AI is everywhere — on Google summarizing search results and siphoning web traffic from digital publishers, on social media platforms like Instagram, X, and Facebook, adding misleading context to viral posts, or even powering #Nazi #chatbots. #GenerativeAI and Large Language Models — AI trained on huge datasets — are being used as therapists, consulted for medical advice, fueling spiritual psychosis, directing self-driving cars, and churning out everything from college essays to cover letters to breakup messages.

"Alongside this deluge is a growing sense of discontent from people fearful of artificial intelligence stealing their jobs, and worried what effect it may have on future generations — losing important skills like media #literacy, #ProblemSolving, and #CognitiveFunction. This is the world where the popularity of AI and robot slurs has skyrocketed, being thrown at everything from ChatGPT servers to delivery drones to automated customer service representatives. Rolling Stone spoke with two language experts who say the rise in robot and AI slurs does come from a kind of cultural pushback against AI development, but what’s most interesting about the trend is that it uses one of the only tools AI can’t create: slang

" '#Slang is moving so fast now that an #LLM trained on everything that happened before it is not going to have immediate access to how people are using a particular word now,' says Nicole Holliday, associate professor of linguistics at UC Berkeley. 'Humans [on] #UrbanDictionary are always going to win.' "

Read more:
rollingstone.com/culture/cultu

Archived version:
archive.ph/ku2Uw

robot slurs sad dejected rejected robot ai
Rolling Stone · How ‘Clanker’ Became the Internet’s New Favorite SlurBy CT Jones

A quotation from Molly Ivins

The War on Drugs is the perfect substitute for the Cold War. We can continue to pursue policies that don’t work on the cheerful assumption that if we just do more of what doesn’t work, it will solve the problem.

Molly Ivins (1944-2007) American writer, political columnist [Mary Tyler Ivins]
Essay (1990-02), “The Czar is Hooked,” The Progressive

Sourcing, notes: wist.info/ivins-molly/78096/