memes

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

Raptor_007, in Just here to celebrate my cake day! (4 years!)

Wow, happy cake day to you!

ff0000,
@ff0000@lemmy.ml avatar

Thank you very much! :)

CarbonatedPastaSauce, in Just here to celebrate my cake day! (4 years!)

Relax! You keep up this frenetic posting and you might cross the threshold of 1 post per year!

Congrats on being on Lemmy before the rest of the world knew it existed. 😁

ff0000,
@ff0000@lemmy.ml avatar

😆 i’ll try and calm down, we don’t want me flooding the Fediverse with my insane posting schedule!

And thank you! Those years have flown by indeed!

AngryCommieKender, in other toys

I thought they all burned up at the end of TS3?

EndlessKnotBoi,
@EndlessKnotBoi@lemm.ee avatar

They all came back with the power of love, friendship and making the company some money.

AngryCommieKender,

It’s a meme reference

MeatsOfRage, (edited ) in The two sides of man
MajorMajormajormajor,

Worst story ever.

Etterra, in They are too expensive and gimicky either way

I actually can’t believe anybody would be stupid enough to think that Wi-Fi ever needed to be on a washing machine. That is literally a idea designed to milk extra money from sucker’s.

XTornado, (edited )

I mean… It’s not absolutely necessary? Yes.

It’s nice that it alerts you is finished specially taking into account it doesn’t always takes the same time and all that ? Yes

A beep or similar works too? Yes, but sometimes you are not near enough or similar and could be useful.

Or starting it remotely so when you reach home just finished or nearly and just arrive and hang the clothes.

jubilationtcornpone,

I worked for an industrial tool manufacturer for a couple years. It’s well known brand but not one you can just go to Home Depot and buy. Their tools are very specialized and very expensive.

Anyway, the last project I was on before I left was one where they tried to create smart tools. It wasn’t a completely bad idea. Those things have specific maintenance requirements. Reminding the user that it’s time for maintenance based on a cycle count, hour count, or severity of conditions was actually a good idea.

But, management wanted two things: Wireless charging, and the ability to feed data from the tool back to a dashboard that the user could log into. Then, they would charge a premium for the “smart tool” and get the customer to pay for access to the dashboard. At least that was the idea. The problem was that customers didn’t give a shit about either of those “features.” They just wanted their tools to work reliably. The division president refused to listen. I don’t know how it worked out. For unrelated reasons, I didn’t hang around long enough to find out.

Adding [unnecessary] electronics to tools and appliances is cheap. There’s some engineering costs involved but once that’s done, the components usually amount to a small fraction of the overall build cost. And the markup is insane, which is one reason why they add those “features”.

I suspect that there’s plenty of engineering teams out there questioning why a stove needs WiFi and then getting overridden by some SVP who has literally never used a stove in his entire life.

Nachorella, in Yo Dawg, new Outlook just dropped

I tried to change to Thunderbird but I can’t figure out how to make it work with my work e-mail. I’m wondering how much of that has to do with my work e-mail using office365. 🤔

sep,

Everything. O365/outlook do not use normal email protocols. On normal exchange you can enable imap. Do not know about o365 tho. Also unfortunatly you loose a lot of other features if you dare to step outside the walled garden.

blargbluuk,

IMAP can be turned on for office 365 but it’s up to the org admins

jubilationtcornpone,

I think O365 only allows authentication via OAuth2. Can’t just punch in your password and go anymore. Not sure if Thunderbird supports that or not.

unique_hemp,

It does, and so does FairEmail.

MystikIncarnate,

By default they use protocols specific to outlook/exchange/365. Sometimes referred to as activesync or outlook anywhere, which encapsulates their own protocol (I think it’s MAPI?) Over an HTTPS tunnel.

These technologies have had a lot of names.

In the past few years 365 also requires TLS 1.2 at least, and oauth. Oauth is when a mini browser window pops up for your 2FA info, like ms authenticator or duo or whatever your organisation is using. The nice thing about oauth is that it’s compatible with many identity providers, not just MS. The bad thing is that it’s fairly unique that outlook supports it. I don’t know of any other email clients that support it…

Even if you can get passed the login, most mail clients don’t support MAPI over HTTPS the way that outlook does. There are some android/iPhone apps that support it, but that’s not universal either; the naming can fluctuate between the options I’ve mentioned earlier.

The only good way to get this done (speaking as someone who has had to help someone get it working), the organizational email admin needs to enable either pop or (preferably) IMAP, and assign an application password to it. This password is long and usually a string of random characters. It gets saved to your email client software and it is used nowhere else. It’s been a long time since I’ve done this and I’m not sure it’s still supported like this.

I hope that gives you more information as to the challenge ahead of you.

Good luck.

unique_hemp,

Both Thunderbird and FairEmail work with outlook OAuth for me.

MystikIncarnate,

Good to know.

mtchristo, (edited ) in I'm really getting over the enshitification of the internet.

Browsers are leading slower and slower

That’s because of heavy use of JavaScript and frameworks like React. Websites like Facebook are a nightmare to deal with.

++ social media has killed personal blogs. Which one of the biggest losses to me.

FooBarrington,

No, it’s not due to React. If the code were written in vanilla it wouldn’t be more efficient, just harder to maintain.

ICastFist,
@ICastFist@programming.dev avatar

The trick is in not using javascript where you don’t need it, which would cut 95% of all its use around the interwebs

FooBarrington,

I don’t agree completely - there are a lot of things that are possible without JavaScript, which are improved either due to better UX or improved safety through JS.

Easy examples for better UX is anything to do with forms and multi-step processes. Getting validation errors while typing is massively better than getting them on submit, and it’s easy to store temporary edit states locally to prevent data re-entry. This especially goes for offline-first applications.

IMO more importantly, local JS is always preferable to server-side logic when possible, since it means your data never leaves your browser. Imagine a JSON formatter that processes data server-side - you can never be sure what they are doing with your data! Compared to that local JS is incredibly portable (every platform has a browser) and isn’t reliant on anything else. I build my utility apps both in the usual bundler way, and as single files - meaning I can offer my app as a single HTML file you can download and use however you want.

Of course the security benefits aren’t perfect - it’s always possible data is still sent somewhere. I really hope that one day we’ll get an API that allows a website to limit further network connections to specific URLs. This would give users of such applications real peace of mind.

ICastFist,
@ICastFist@programming.dev avatar

When all I want to do is read content, no JS is needed. That has been a solved problem for decades. UX is problematic because now you have these huge PC screens and comparatively tiny mobile screens to account for. Most developers go for mobile first and completely ignore the rest, so you have loads of sites that are needlessly displayed like slow powerpoint presentations, autoscrolling to the next anchor because that’s “good UX” somehow.

Form validation with JS goes back decades and no one in their right minds relies entirely on frontend validation. It’s great because it can be immediate, but it’s easier to sidestep either by accident or on purpose. Since a lot of forms nowadays are “autogenerated” from their respective UI libraries, they come with a lot of unnecessary cruft.

meaning I can offer my app as a single HTML file you can download and use however you want

I sure hope that doesn’t need a “local server” of any sort to work. It’s one of the things that baffles me the most, javascript that only works with a npm server to connect to. I also hope it’s not bundled as an electron app, what’s the point of having an entire chrome browser bundled just to run a single page?

FooBarrington, (edited )

When all I want to do is read content, no JS is needed.

I didn’t say otherwise.

UX is problematic because now you have these huge PC screens and comparatively tiny mobile screens to account for. Most developers go for mobile first and completely ignore the rest, so you have loads of sites that are needlessly displayed like slow powerpoint presentations, autoscrolling to the next anchor because that’s “good UX” somehow.

Okay? I’m not sure what you’re arguing against. Some websites have bad UX, and that means the technology used to implement that bad UX is in itself bad?

Form validation with JS goes back decades and no one in their right minds relies entirely on frontend validation.

I didn’t say anyone should rely entirely on frontend validation.

It’s great because it can be immediate, but it’s easier to sidestep either by accident or on purpose. Since a lot of forms nowadays are “autogenerated” from their respective UI libraries, they come with a lot of unnecessary cruft.

Again, what exactly are you arguing for or against? You said “don’t use JavaScript when you don’t need it”. You don’t need frontend validation, it’s a nice to have, but it would be incredibly stupid to say “this form is way better without frontend validation”.

I sure hope that doesn’t need a “local server” of any sort to work. It’s one of the things that baffles me the most, javascript that only works with a npm server to connect to. I also hope it’s not bundled as an electron app, what’s the point of having an entire chrome browser bundled just to run a single page?

No, the single HTML file I’m talking about doesn’t require a server or Electron or anything besides a browser. What are you on about?

You either seem to be willfully misunderstanding me, or you’re projecting a bunch of random webdev grievances onto me. Why?

CurlyMoustache,
@CurlyMoustache@lemmy.world avatar

I just started a personal blog as my small contribution to combat Dead Internet Theory. I’m not going to link it here because I don’t want to doxx myself

Ticktok,

Yea, the creation of sites like neocities is such a fun return to oldweb and the joys of relearning html and creating a static site. And tools like Jekyll for generating and maintaining your own blog are great

CurlyMoustache,
@CurlyMoustache@lemmy.world avatar

I did it because I missed the “old internet” from the early and middle 00s. Now everything is just SEO-orgies, and locked behind paywalls

Dirk, in Great greta 🙂
@Dirk@lemmy.ml avatar

It’s in the internet! This HAS to be true.

KevinKostnier2,

Check the community you are in.

phoenixz, in Google “search”

Which is why I stopped going since about 4 years ago now. One day I just went to a different mall, and never looked back

fidodo,

Where? I feel Google has gone way downhill but the Bing based search engines haven’t seemed any better.

snowe,
@snowe@programming.dev avatar

Kagi.

cmgvd3lw,

And that mall is

lemmesay,
@lemmesay@discuss.tchncs.de avatar

tons of alternatives.
search engines with independent indexes(i.e., not beholden to any big search engine):

  • mojeek
  • brave search(semi independent)
  • kagi(semi independent)

meta-search engines(gets results from other search engines):

  • startpage(google)
  • duckduckgo(bing)
  • qwant(bing)
  • swisscows(bing)
  • metager(multiple sources)
  • searx(ng)(multiple sources, configurable by user)

I’m still missing a ton but this should give you an idea.

for more, see this interactive graph, or this Wikipedia list which includes other niche types of search engines as well.

I personally use mojeek(because of their independent index) with duckduckgo as a fallback.

Mojeek,
@Mojeek@lemmy.ml avatar

thanks a lot for the mention, if you wanna use that fallback less and less, feeding back on algo updates via www.mojeek.com/eval always helps us

lemmesay,
@lemmesay@discuss.tchncs.de avatar

didn’t know about the page. thanks! and good to see you on Lemmy.

blunderworld, in Great greta 🙂

deleted_by_author

  • Loading...
  • KevinKostnier2,

    Check the community you are in.

    SpiceDealer, (edited ) in I'm really getting over the enshitification of the internet.
    @SpiceDealer@lemmy.world avatar

    Use Invidious/yewtu.be instead of Youtube itself

    Switch to either Brave or Librewolf

    Use archive.is (or archive.ph) to view websites locked behind a paywall or email block

    Tell friends and family to share said content in person

    Fear not my friend! We can take back the Internet by refusing Big Tech’s services.

    Sheeple,
    @Sheeple@lemmy.world avatar

    I wouldn’t recommend brave browser tbh. Librewolf or Firefox it is

    Lyricism6055,

    Brave definitely feels like some sortve liability. I think it’s still owned by a Chinese company right?

    aredditimmigrant,

    Regardless, I switched off because I was tired of getting ads in the browser. Been using ff for a while now

    TheOSINTguy, in Great greta 🙂

    Inspector element goes crazy.

    KevinKostnier2,
    Cowbee, in I'm really getting over the enshitification of the internet.

    Capitalism does this to itself due to the profit motive. Where once is innovation and brand new disruption becomes petty iteration as this new frontier slowly but surely becomes a well-oiled profit machine. The upside is that FOSS makes replacing this profit-generating soul-sucking bloatware with better alternatives very easy.

    Replacing the existing infrastructure of Capitalism by building up parallel structures is a valid means of weakening Capital itself.

    Kaizodrack,

    Really waiting for an youtube alternative tbh.

    Cowbee,

    PeerTube! If you just want a better YouTube, check out NewPipe.

    Kaizodrack,

    Already use Newpipe, might give Peertube a chance tho.

    Cowbee,

    You definitely should if you want a viable alternative!

    Mr_Blott, in The machine is always broken

    I’m not that often in Maccies but I’ve never heard of the flurry machine being broken, I’ve read it’s a US thing due to the maintenance contracts

    That said the meme still works in Europe because I’m pretty sure they’re not allowed to call that hydrogenated vegetable oil-filled shite “ice cream” here 😂

    XTornado,

    Idk… Here in Spain it is called Ice Cream and based on what I read it uses cream.

    sentient_loom,
    @sentient_loom@sh.itjust.works avatar

    The meme works only as an ad. Pseudo-critical reminder of BRAND and SUGAR

    McD0nblds is pure diseased semen leaking out of a rapist’s asshole into customers’ dying mouths

    AngryCommieKender, (edited )

    Hydrogenated vegetable oil? The stuff that is used for soft-serv in the US is ultra-thick sweetened, vanilla flavored, milk. You could put it on cereal, if you really want diabetes.

    Ingredients: Milk, Sugar, Cream, Corn Syrup, Natural Flavor, Mono And Diglycerides, Cellulose Gum, Guar Gum, Carrageenan, Vitamin A Palmitate.

    helenslunch, (edited )
    @helenslunch@feddit.nl avatar

    As per usual, the explanation is corporate shitfuckery.

    Video explanation

    tl;dr the company Taylor manufactures the ice cream machines to fail without any explanation or diagnosis process, then charge wildly exorbitant fees to fix them, and cut McD’s in on the profit. Some franchises found ways around this and McD’s just ordered them to stop. So the franchises just leave them broken as often as possible.

    GissaMittJobb, in You liar!

    I much prefer hang drying.

    • Less wear on the clothes
    • Basically no energy cost (technically not correct but it’s really whatever)
    • Free humidifying during the dry winters
    • Fairly satisfying thing to do while listening to a podcast

    The primary downside is that it’s no fun to do it when it rains, neither indoors or outdoors, but as long as you time your laundry well enough, it’s all good.

    exocrinous,

    Relying on the weather to dry your clothes is a scam. You’re just going to get tricked. I have ADHD so it’s a no go

    GissaMittJobb,

    What does ADHD have to do with this? I’m not sure that I get it.

    exocrinous, (edited )

    I can’t remember to do shit because I don’t experience the mental construct of time in the same way as neurotypicals. And even with an alarm, it’s still an extra cognitive load that makes me more likely to mess up everything else. If I forget the clothes on the line for a week, they’ll degrade in the elements and get mildew from the night dew. Inside is a better place for me to forget my clothes. I have less stuff to remember for less time, an alarm is more help to me, and I don’t have to plan for unexpected variables.

    The drying machine is a disabled person’s ally.

    GissaMittJobb,

    I see - remembering to bring the laundry inside is the issue.

    While there’s nothing wrong with using a dryer - I’m certainly not going to deny you the privilege - perhaps hanging the clothes inside could be a passable workaround for the memory issue? Assuming your indoor environment allows for it, that is.

    camelbeard, (edited )

    At home I hang most of the clothes, but we where at a short trip and we had some wet towels and swimgear, so de decided to just do one full laundry with most of our wet and dirty clothes. The first duration before I even started the cycle was that it should be done at about 16:10 it was actually done more than an hour later.

    meliaesc,

    It’s -11°F where I am today, my family still lives in Jamaica and I envy their ability to hang their clothes so much.

    GissaMittJobb,

    It should be possible to hang your clothes indoors still, I guess. Outdoors as well I’ve been told, when it’s a bit below freezing, but I’ll admit that I’ve never actually tried that.

    BCsven,

    Nothing like spring/summer outdoor fresh dried laundry

  • All
  • Subscribed
  • Moderated
  • Favorites
  • memes@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #