- cross-posted to:
- [email protected]
- cross-posted to:
- [email protected]
The snowflakes here can’t even handle a little glue in their food!!!1111
What do they think holds the chicken nugget together?
Mother nature?
You, sir are asking the right questions. Thank you for this.
Why would we believe the promises of the ones who ruined the primary utility of their core product in the first place, and convinced or blackmailed the rest of the internet to take part in the ruination ? An advertising corporation will tell us to put cyanide on our pizza if it makes them an extra buck this quarter, and google is worse than that. Profit despite the social costs is doing no evil /s
“Don’t be evil”
Shit writes itself.
Except it’s still in their writing, just not front and center like it was before, right?
They changed it to “Do the right thing” which literally makes it less original but more importantly, more pliable, “do the right thing… for ‘google’.”
Im shure the CEO is “doing the right thing… for his wallet”
That was removed as their motto in 2015, following a restructuring of Google as a subsidiary of Alphabet.
It actually wasn’t, I used to think that as well, but they just moved it to a different section of their Code of Conduct, out of the Preface. Part of the reason so many people think it was removed is because of the countless headlines saying it was removed…
(from the preface)
They did violate federal labor laws by firing 3 employees who brought forth a lawsuit alleging the clause was a contractual obligation, though. So that sucks.
It may be in their code of conduct, but that’s not their motto. As of 2015, their motto is “Do the right thing.”
I said it back then and I’ll say it again: Calling your mega corporation “Alphabet” sounds hella distopian
The main reason for the name is that it sorts before both Amazon and Apple in the Big Tech directory. It’s literally as petty as that. They obviously chose a word that was related to searching within that criterion, but still.
It’s honestly weird to imagine them being concerned with branding at all because they are literally an umbrella corporation that doesn’t seem to interface with customers directly. Like I never think about them and I suspect having regular people think more about them would not be good for them in any way.
“Alphabet” works for that in my head because it slides off my brain. I forget they exist until something reminds me.
It’s for investors.
How about “Abysmal”?
Gee, what other organizations are called Alphabet agencies, bureaus, or depatments?
… aren’t representative of most people’s experiences.
Every AI “answer” I’ve gotten from Google is factually incorrect, often ludicrously so.
Yep, same here. Whereas ChatGPT and Perplexity would tell me it didn’t know the answer to my question, Bard/Gemini would confidently hallucinate some bullshit.
Really? Like what? I’ve always had ChatGPT give confident answers. I haven’t tried to stump it with anything really technical though.
I asked about a plot point that I didn’t understand in a TV series old enough to be in an LLM’s knowledge. Chatgpt and Perplexity both said they couldn’t find any discussions or explanations online for my particular question.
Bard/Gemini gave several explanations, all of them featuring characters, locations, and situations from the show, but confidently bullshit and definitely impossible in the story’s world.
I try ChatGPT and others once every month to see if they improve my programming experience. Yesterday I got fake functions that do no exist, again. I’ll try next month.
Try the GitHub Copilot plugin if your IDE supports it. It can do things regular ChatGPT can’t, like be able to see your entire codebase and come up with suggestions that actually make sense and use all your own libraries.
Do not, however, use it to create complete programs from scratch. It doesn’t work out that way. It’s just an autocorrect on steroids.
Using just the straight web based version of ChatGPT sucks because it has no background context as to what you’re trying to do.
Here is the problem that won’t change for me or my coworkers : we will never use GitHub and our source code is very private (medical devices or worse).
Also I asked a question that didn’t need any context or codebase. It was about a public API from an open-source project. It hallucinated a lot and failed.
Last but not least, I never needed an autocomplete on steroids. I would enjoy some kind of agent that can give precise answers on specific topics, but I understand that LLMs may never provide this.
I just cringe a lot when programmers tell me to use a tool that obviously can’t and will never be able to give me those answers.
I’ve actually had pretty good success with ChatGPT when I go in expecting it to hallucinate a significant chunk of what it spits back at me. I like to think of it as a way to help process my own ideas. If I ask questions with at least a base understanding of the topic, I can then take whatever garbage it gives me and go off and find real solutions. The key is to not trust it whole cloth to give you the right answer, but to give you some nuggets that set you on the right path.
I think I’ve basically turned ChatGPT into my rubber duck.
RDLM: Rubber-Ducky Language Model^™
Prompt: you are a duck. I scream at you with slurs like, “Why the fuck is this piece of shit code not working”, and “Why the fuck is my breakpoint still not triggering?!”. You are to sit there calmly, and simply recall that your existence is to be nothing more than a tool for me to direct my frustrations and stress. You know this is not personal. You know that this is an important job. You know that you only have to respond with one word: “Quack”.
that seems like the only good use for chatgpt in programming, though it is an expensive duck
That happens all the time. ChatGPT did offer a decent solution for my GUI recently tho and suggested a layout manager I haven’t used before and didn’t even know about.
You’re doing it wrong IMO. ChatGPT 4.0 is freakin’ amazing at helping on coding task, you just need to learn what to ignore and how to adjust the prompt when you’re not getting the results you want. Akin to the skillet of googling for programming solutions (or any solution), it gets easier with practice.
I hate to say it but, I have to agree. GPT4 is a significant improvement over GPT3. I needed to use a Python library for something that was meant to be a small, simple CLI app. It turned into something bigger and accumulated technical debt. Eventually, I was having problems that were niche and hard to trace, even with logging and all the other approaches.
I eventually said fuck it, and so I threw a shit tonne of my code into it, explaining what I was doing, how I was doing it, why I wasn’t doing it another way, and what I expected vs the actual result. Sometimes it suggests something that is on the right path or is entirely spot on. Other times, it thinks it knows better than you, to which you tell yourself it isn’t, because you tried all its suggestions, and then you realise something that would technically allow GPT to say, “I told you so”, but out of spite you just close the tab until the next issue.
For practical tasks, GPT has come pretty far. For technical ones, it is hit or miss, but it can give you some sound advice in place of a solution, sometimes.
I had another issue involving Matplotlib, converting to and from coordinate systems, and having plots that had artifacts due to something not quite right. The atan2 function catches many people out, but I’m experienced enough to know better… Well, normally. In this particular case, it was a complex situation and I could not reason why the result was distorted. Spending hours with GPT4 lead me in circles. Sometimes it would tell me to do things I just said I did, or that I said don’t work. Then, I say to it, “what if we represent this system of parametric equations as a single complex-valued function, instead of dealing with Cartesian to polar conversations?”. Then it would zip up a whole lot of math (related to my problem). The damn thing handed me a solution and a half. In theory, it was a great solution. In practice, my code is illiterate, so it doesn’t care.
All in all, while it failed to help me solve my issue, it was able to reason and provide feedback to a wide range of challenges. Sometimes it needed prompting to change the trajectory it intends to follow, and this is the part you need to learn as a skill. Until these LLMs are more capable of thinking for themselves. Give it time.
I tried asking deeply technical questions and got confidently incorrect responses.
I’ve asked moderately technical questions and was confidently given wrong information. That said, it’s right far more often than copilot. I haven’t used Google for quite some time
Huh, I’ve found The GitHub Copilot better. You still can’t trust it when it talks about APIs, though. Or anything else really - you have to keep your wits about you. I use it for suggestions on where to start with things, or for testing my assumptions, or for generating boilerplate code, but not for copying and pasting anything critical.
First I was surprised they rolled it out already, then of how bad it was. I knew of Google’s AI blunders from their faked reveals but I didn’t think they‘d actually roll them out in this state. They really just want to turn the internet into the next TV where you don‘t really get to choose when you get to see what exactly and they‘re willing to crash and burn themselves by doing so if they must. Insanity.
Started paying for Kagi. I’m done with Google or Bing.
What about Firefox? Can’t say that I’ve ever heard of Kagi myself, what makes it so special?
Well I guess the main difference would be that Firefox is a web browser not a search engine lmao. Fuck kagi though, CEO/owner is an antisocial lunatic
What’s wrong with being antisocial?
Clinically antisocial, not introverted. Nothing wrong with it necessarily, but it can lead to some negative outcomes for sure.
Yeah, I’m fine with it.
I won’t kinkshame you lol but the negatives almost certainly outweigh the positives for humanity at large.
That describes most CEOs.
Most are smart enough to hide it.
deleted by creator
Have you tried Kagi?
Why would they? Bing is free.
Sure it is. So are the sponsored results. Something you don’t get on Kagi.
Have you tried an adblock?
It uses a whole bunch of potential sources. It is not a front-end for Bing like, say, DuckDuckGo.
If that’s the case, why not use searx? I could only see myself using a paid search engine if
-
It demonstrably returned results relevant to my search more accurately than their competitors
-
It was well documented that they respected my privacy and how
-
It showed me no advertisements
-
It doesn’t utilize SEO marketing tactics to adjust its search results
-
It supported !bangs for very fast searching of specific websites and/or other search engines
I don’t know about #2, but the other 4 are true. #1 may be somewhat subjective but in my experience it is certainly true.
-
Google Who!?
Copilot gives a four step solution then finishes with “glue is not the answer”.
WHAT??? You guys don’t put glue in your pizzas??
This is not the AI I was expected after growing up with Star Trek. I’m trying to picture just what horrors the replicators would come up with if hooked to this abomination.
Then the other clowns go and steal scarjo’s voice instead of Majel Barrett. What a future we’re building here…
I’m glad they went with sjo, at least she is alive and can fight back. Imagine they ruined all TNG trek by taking the omnipresent and beloved computer voice and made it a corporate sockpuppet we hear everywhere now, crudely regurgitating platitudes of consumption.
Oh, I’m totally kidding, it would be soul crushing (crusher?) to hear her voice coming from these nightmares.
The internet and technology moved on. We reached a point where google is obsolete. Google decided to cancel any product they had, that was not as successful as their ads space and now they have nothing else left. Is there even one service left that google is leading in? Maybe chromium browser and that’s it. Yet one can easily switch to Firefox right now.
At this point their biggest product is probably Android. That’s a bigger marketshare than Microsoft’s and Apple’s put together. Yes, they’re fucking up now, but the battle is still theirs to lose.
Their integrated drive+mail+docs+forms+… cloud system is not the first or maybe the best one out there, but it’s very popular and I like it more than the competition for some of their key decisions. More obscure things are their accessible API anyone can use, some free computing power they provide for experiments, their analytics system for marketing, and their benchmarks of how fast the page loads being a standard. There’s probably Scholar somewhere here but I haven’t used it. Android gets installed everywhere even if it’s unreasonable. Search is their major brand, but they have fingers in many buckets.
I guess they are leading in E-Mail? Whatever that is worth I am not sure. And Youtube is pretty much toe to toe with TikTok so they have that going for them which is nice. But yeah they’ve done a pretty bad job at making themselves indispensable. If anything they‘re looking far more dispensable than ever. Still huge, but their future is rather uncertain.
The company has taken action against violations of its policies, she said
What does this mean in this context? Send takedown notices to people who joke on the Internet?
The fucksmith post in question has been removed by moderators, so I wonder if Google really is pressuring Reddit to remove jokes from their platform now. This person had no idea their shit post would be used to train AI over a decade later, and they certainly weren’t violating any policies when they posted it. It’s like nobody involved in this process knew anything about Reddit.
Pay $60 million to train on bad data.
Implement AI trained on bad data.
Panic when the AI returns bad answers.
Manually remove bad data.
Profit??Edit: it was removed when I checked yesterday, but it looks like they restored it.
So we should add /s to a random subset of correct and helpful answers?
No, poison the idiots.
Was that Woosh intentional?
No we should just replace all helpful answers with “drink glue”
Flavour your glue people!
I like to melt a little pecorino into my glue, the salty sharpness really complements the glue flavor
i look forward to seeing this suggestion in shitty google ai overviews in the future.
This should give hope to all of those people who have been worrying about AI taking their jobs away.
It doesn’t matter how good technology gets, it will always be merely a tool. Humans will still be necessary in the future.
That’s where we currently are but there isn’t any limitation on the tech that means this will always be the case.
It will certainly change the way we work, yes, but that’s always been the case with any disruptive technology in the past.
20-30 years ago, people were already worried that computers would replace people, because they could automate away menial office jobs like invoicing and book keeping. Yet those jobs still exist, because computers can’t be trusted to work completely autonomically. Meanwhile, a whole lot of new jobs were created in the IT sector as result of those computers needing to be programmed, updated, and maintained.
When cars came around and started replacing horse buggies, people were also worried because it would make horse breeders, stables, blacksmiths, etc. obsolete, but of course it just ended up created a new industry consisting of gas stations, car dealerships, and garages instead.
So yes, some people might lose their jobs because what they’re doing now will become obsolete, but there will almost certainly be new ones created instead. As long as you’re willing to adapt and change with the times, you’re never going to end up with nothing to do.
Damn advent of agriculture putting the poor hunter-gatherers out of work smdh
I think there’s a ceiling on that, too. Not saying we’re necessarily near that right now, but it’s possible to have two robots whose capabilities include maintaining each other. I don’t think the list of possible jobs to do (both current and future) is infinite, though it could still be vast, and if technology continues to reduce the number of people needed to do those jobs, eventually we’ll get to a point where there’s more people wanting jobs than there are jobs available.
Though it is possible that that point is still thousands of years away.
removed by mod
uh oh!
The future lawsuits, I can see them already, and they will be wild.
people will die
They wouldn’t need to ‘improve’ their search experience if they never enshittified the results page like 10 years ago.