“the poor dopamine seeker, I fear his long-standing obsessions have affected him”
Many fall in the face of chaos, but not this one, not today
- 3 Posts
- 18 Comments
Pencilnoob@lemmy.worldto TenForward: Where Every Vulcan Knows Your Name@lemmy.world•Stupid Sexy TrekEnglish3·2 months agoMake love not war
Pencilnoob@lemmy.worldto No Stupid Questions@lemmy.world•Month-long awareness celebrationsEnglish8·2 months agoIn Costa Rica elections are a whole thing, like everyone’s out with flags on cars and megaphones yelling about one of the 20+ political parties.
Also Semana Santa is a week long Catholic holiday.
Pencilnoob@lemmy.worldto Showerthoughts@lemmy.world•The history of societal collapses are all just examples of Universe 25English5·2 months agoDespite all my rage, I’m still just a rat in a cage
Pencilnoob@lemmy.worldto TenForward: Where Every Vulcan Knows Your Name@lemmy.world•Holy time warp, BatmanEnglish6·3 months agoI don’t mind the memes, content is content after all. However, this one got me laughing
Pencilnoob@lemmy.worldto No Stupid Questions@lemmy.world•What's the point in getting married?English9·3 months agoA wedding can cost almost nothing. I found a very small local poor church and offered them $100 bucks to use the place on a Saturday. I baked a big cake, decorated it plain white. I overnight smoked a brisket, made a pan of Mac and cheese.
Got a friend to officiate, and told our friends and families a month in advance. We told everyone it was a potluck. We got $100 plain rings. My grandmother ended up buying some cool flowers for decorations. A friend played some music on the church speakers.
All in, it probably cost us $400 out of pocket, and we got enough cash from attendees to cover that and pay for us to take off work for the week to just hang out and move in together, staycation style. To be fair, I don’t think either of us would have wanted a vacation style honeymoon, we did that kind of thing later. That first week was a lot of figuring out how to live together, so that took time.
So it’s possible to have a big party with friends and family, but spend very little. Just have everyone bring some food and it’ll work out.
Studies show that folks are less likely to have a happy long term marriage the more they spend on a wedding. It’s a pretty clear correlation that expensive weddings typically make folks more unhappy and starts the relationship off with more financial stress. So, don’t feel bad about being frugal! As long as you are both happy, it can be very inexpensive.
Pencilnoob@lemmy.worldto Showerthoughts@lemmy.world•Lemmy has the ideal number of posts for me. Just enough to have a good time but not too many that I'm scrolling foreverEnglish21·3 months agoI mute a ton of communities, and I really like quickly getting to the “end” of All. Then I’ve blocked some other dopamine sites, so I get bored and go play outside 🤣
I’m sure someone will be like “um akchuly” to my explanation. But for me it’s good enough to think if it that way.
I’ve worked in Haskell and F# for a decade, and added some of the original code to the Unison compiler, so I’m at least passingly familiar with the subject. Enough that I’ve had to explain it to new hires a bunch of times to get them to to speed. I find it easier to learn something when I’m given a practical use for it and how it solves that problem.
In practical terms, it’s most commonly a code pattern where any function that interacts with something outside your code (database, filesystem, external API) is “given permission” so all the external interactions are accounted for. You have to pass around something like a permission to allow a function to interact with anything external. Kind of like dependency injection on steroids.
This allows the compiler to enhance the code in ways it otherwise couldn’t. It also prevents many kinds of bugs. However, it’s quite a bit of extra hassle, so it’s frustrating if you’re not used to it. The way you pass around the “permission” is unusual, so it gives a lot of people a headache at first.
This is also used for internal permissions like grabbing the first element of an array. You only get permission if the array has at least one thing inside. If it’s empty, you can’t get permission. As such there’s a lot of code around checking for permission. Languages like Haskell or Unison have a lot of tricks that make it much easier than you’d think, but you still have to account for it. That’s where you see all the weird functions in Haskell like
fmap
and>=
. It’s helpers to make it easier to pass around those “permissions”.What’s the point you ask? There’s all kinds of powerful performance optimizations when you know a certain block of code never touches the outside world. You can split execution between different CPU cores, etc. This is still in it’s infancy, but new languages like Unison are breaking incredible ground here. As this is developed further it will be much easier to build software that uses up multiple cores or even multiple machines in distributed swarms without having to build microservice hell. It’ll all just be one program, but it runs across as many machines as needed. Monads are just one of the first features that needed to exist to allow these later features.
There’s a whole math background to it, but I’m much more a “get things done” engineer than a “show me the original math that inspired this language feature” engineer, so I think if it more practically. Same way I explain functions as a way to group a bunch of related actions, and not as an implementation of a lambda calculus. I think people who start talking about burritos and endofunctors are just hazing.
Just a heads-up, Home Assistant Voice Preview edition is pretty rough right now. It’s nowhere near good enough that I’d buy one for every room.
A lot of the issues are just software related, so there’s no reason it can’t get as good as a commercial device.
This guy explains it well: https://youtu.be/L4ONmyjG6ec?si=5NZOh4NFPQSZORmi
That being said, it’s neat, and I’m running both the tts and stt locally on my Home Assistant server! No Internet access at all, entirely local! It’s remarkable.
If you want to see what I mean, you can setup tts and stt on your Home Assistant without buying the hardware device and just talk to it with your phone and the app installed. You’ll see it’s kind of slow to respond and really gets hung up trying to parse the commands.
I don’t regret getting the hardware, it’s really neat, but I’m not going to rush to get any more at this time. I’ll wait a while for the software side to catch up.
Pencilnoob@lemmy.worldto RetroGaming@lemmy.world•The PS2 turns 25 years old today. Crazy, right? Perfect day for revisiting some classics. What are some of your favourite PS2 games?English8·5 months agoKATAMARI DAMACYYYYYY BUM BUM BUM BUM
Pencilnoob@lemmy.worldto RetroGaming@lemmy.world•Game suggestions for daily bus/train rides?English8·6 months agoFinal fantasy tactics
Pencilnoob@lemmy.worldto ADHD memes@lemmy.dbzer0.com•So you've decided to just... embrace it?English1·9 months agoThe relief of not needing to mask anymore hits hard
Pencilnoob@lemmy.worldto Technology@lemmy.zip•Elon Musk said he’d eliminate bots from X. Instead, election influence campaigns are running wild.English0·11 months agoEvery day I don’t use x/insta/meta/Google my jaw unclenches a little more
Pencilnoob@lemmy.worldto No Stupid Questions@lemmy.world•can you smoke bacteria out of meat boiling it?English13·11 months agoThanks for getting me to laugh this early
Pencilnoob@lemmy.worldto Linux@programming.dev•Ubuntu 24.10 Now Defaults To NVIDIA On WaylandEnglish4·1 year agoWow that’s good news, I’ll have to give it a shot
Pencilnoob@lemmy.worldto Linux@programming.dev•Ubuntu 24.10 Now Defaults To NVIDIA On WaylandEnglish13·1 year agoAm I going to have a bad time trying to switch to Wayland? I just use discord, Spotify, steam, some basic steam games, Krita, and emacs
I disagree, other than a few notable counter examples most times folks are only successful when they build reliable business relationships. Most relationships will dissolve if one party is playing games.
On average it’s more effective to follow “The No Assholes Rule”. There’s plenty of studies (referenced in the book Good To Great) that indicate that humble business leaders produce build more stable and long term profitable companies.
Lying manipulators can sometimes get ahead but just as often they get found out and blackballed.
I think it might be like a game theory type situation where if everyone is honest, then the first liar might get ahead a lot (although I suspect in that situation they’d immediately be shunned by all honest folk if found out). If everyone is a liar then honest folk have nothing to hide and probably will just be really defensive in their dealings.