Oh yes this. Not using AI is best but if you must: Keep putting it on some random corpo tab and bankrupt them if they're going to insist on having AI 'help bots'
196
Community Rules
You must post before you leave
Be nice. Assume others have good intent (within reason).
Block or ignore posts, comments, and users that irritate you in some way rather than engaging. Report if they are actually breaking community rules.
Use content warnings and/or mark as NSFW when appropriate. Most posts with content warnings likely need to be marked NSFW.
Most 196 posts are memes, shitposts, cute images, or even just recent things that happened, etc. There is no real theme, but try to avoid posts that are very inflammatory, offensive, very low quality, or very "off topic".
Bigotry is not allowed, this includes (but is not limited to): Homophobia, Transphobia, Racism, Sexism, Abelism, Classism, or discrimination based on things like Ethnicity, Nationality, Language, or Religion.
Avoid shilling for corporations, posting advertisements, or promoting exploitation of workers.
Proselytization, support, or defense of authoritarianism is not welcome. This includes but is not limited to: imperialism, nationalism, genocide denial, ethnic or racial supremacy, fascism, Nazism, Marxism-Leninism, Maoism, etc.
Avoid AI generated content.
Avoid misinformation.
Avoid incomprehensible posts.
No threats or personal attacks.
No spam.
Moderator Guidelines
Moderator Guidelines
- Don’t be mean to users. Be gentle or neutral.
- Most moderator actions which have a modlog message should include your username.
- When in doubt about whether or not a user is problematic, send them a DM.
- Don’t waste time debating/arguing with problematic users.
- Assume the best, but don’t tolerate sealioning/just asking questions/concern trolling.
- Ask another mod to take over cases you struggle with, if you get tired, or when things get personal.
- Ask the other mods for advice when things get complicated.
- Share everything you do in the mod matrix, both so several mods aren't unknowingly handling the same issues, but also so you can receive feedback on what you intend to do.
- Don't rush mod actions. If a case doesn't need to be handled right away, consider taking a short break before getting to it. This is to say, cool down and make room for feedback.
- Don’t perform too much moderation in the comments, except if you want a verdict to be public or to ask people to dial a convo down/stop. Single comment warnings are okay.
- Send users concise DMs about verdicts about them, such as bans etc, except in cases where it is clear we don’t want them at all, such as obvious transphobes. No need to notify someone they haven’t been banned of course.
- Explain to a user why their behavior is problematic and how it is distressing others rather than engage with whatever they are saying. Ask them to avoid this in the future and send them packing if they do not comply.
- First warn users, then temp ban them, then finally perma ban them when they break the rules or act inappropriately. Skip steps if necessary.
- Use neutral statements like “this statement can be considered transphobic” rather than “you are being transphobic”.
- No large decisions or actions without community input (polls or meta posts f.ex.).
- Large internal decisions (such as ousting a mod) might require a vote, needing more than 50% of the votes to pass. Also consider asking the community for feedback.
- Remember you are a voluntary moderator. You don’t get paid. Take a break when you need one. Perhaps ask another moderator to step in if necessary.
I haven't kept up with the prompt injection memes, but I wonder if anyone bothered making a frontend or Ollama plugin that just uses the thousands of random public chatbots to actually accomplish a free high token rate usage lol.
Can we make them chat with each other?
Let's get McDonald's support to make it
Writing a linked list in Python just feels wrong. I know it’s probably homework.
If you must, stdlib has dequeue which is going to be faster and simpler than rolling your own. Plus no reference semantics to deal with.
It's a meme job interview question iirc.
Yeah, linked lists are rarely a good idea. Modern memory optimization, where contiguous regions of memory are loaded into CPU caches, means that array-backed lists have better performance in virtually all situations.
In a way, I'd want to argue that you should actually only ever roll your own linked lists, because you should only use linked lists when you're not working in-memory, i.e. when array-backed lists are not an option to begin with.
im not sure how malloc() works, but I would guess it would attempt to squeeze new allocations into partially-filled memory pages, right? Wouldn't that largely offset the inefficiency?
Transfers to cache get brought in much smaller sizes than a memory page so I can't imagine an automated treatment like that from the heap end would be effective. However there are ways to lay out linked lists in memory so that it is more friendly to cache
You really need frequent middle insertion (insert joke here) for the linked list to become better than an array list.
Oh damn, I was just about to reply to your reply to @fishface@piefed.social (which is literally directly above this comment, on my screen) suggesting exactly this. Glad that Piefed initially failed to register my clicking "reply".
What would you use if you don't know how much space you were going to need in advance, and you were gonna only read the data once for every time the structure got created.
Array list/vector types often have dynamic resize built in, and then if you can benchmark it that always helps.
Yes, but dynamic resize typically means copying all of the old data to the new destination, whereas a linked list does not need to do this. The time complexity of reading a large quantity of data into a linked list is O(N), but reading it into an array can end up being O(N^2) or at best O(N log N).
You can make the things in your list big chunks so that you don't pay much penalty on cache performance.
I thought of another good example situation: a text buffer for an editor. If you use an array, then on large documents inserting a character at the beginning of the document requires you to rewrite the rest of the array, every single character, to move everything up. If you use a linked list of chunks, you can cap the amount of rewriting you need to do at the size of a single chunk.
Expanding a dynamic array to powers of 2 has amortized constant complexity so filling one up from empty is O(n).
Well I just had to work it out again myself and you're right. I dunno what scenario I was thinking of that had worse complexity and whether it was really due to dynamic arrays; I just remember getting asked about it in some interview and somehow the answer ended up being "use a linked list and the time complexity goes down to linear" /shrug
Thanks for the correction!
I'm surprised they went for such a high performance chat bot as Claude
Paying for a needlessly expensive llm model makes leadership think they're "investing in inovation"
They fired their IT manager and hired AI agent.
Is this even a real screenshot? Seems fake to me. The bot on the support page I tried is much more dumb and doesn't seem LLM based at all. More like the chat bots we had before LLMs fucked up the world.
It's a good question and I feel like this is an older screenshot? But it could be faked super easily too
How can you be sure that they do?
Could be using a cheaper model like haiku, which is still "claude"
These "AI" grifters are burning down the planet, computing the average of the entire internet, so that people can order burgers with a chatbot.
Bro Grimmace is just 1337
Personally, I've been using Ecosia as a coding assistant for shit my local LLM on my SteamDeck can't figure out without triggering thermal threshold warnings.
Its... theoretically more eco friendly than uh, Ronald McDonald teaches Python.
Wait, Ecosia has an AI assistant? One - that sounds ridiculously counterproductive to their goal of being eco, Two - I need to check that out haha
It has an AI assisted search feature.
Which just also happens to have basically no guidelines preventing it from analyzing and rewriting code that you copy paste to it.
lol.
But uh, they have some kind of scheme involving Ai usage or search queries = pledge to plant trees.
... ???
At least with most models I've run locally, they'll all at least try to read code, tell you how it works, suggest improvements, etc.
You could probably just copy paste a block of random code into any Ai 'thing', and ask it to help you with it, and theres a pretty good chance it would try to.
Isn't there a free claude option?
Yeah, but McDonald's isn't paying for those tokens.
Add whitespace to taste
ChatGPT is also free.
At least until their subscription model implodes