There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

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

paholg ,

But they’re not even that passionate about this. Shitty game companies continue to be rewarded by players.

paholg ,

Guess they need to watch food network a second time.

paholg ,

Panko bread dough is placed between two metal surfaces, and is cooked by running an electric current through it. This avoids any crust forming, causing it to be very uniform.

I imagine you could do the same with brownies.

paholg ,

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?

Study reveals "widespread, bipartisan aversion" to neighbors owning AR-15 rifles (www.psypost.org)

A recent study published in the Proceedings of the National Academy of Sciences reveals that across all political and social groups in the United States, there is a strong preference against living near AR-15 rifle owners and neighbors who store guns outside of locked safes. This surprising consensus suggests that when it comes...

paholg ,

It says “a leading cause”, not “the leading cause”. Depending on how long your list of leading causes is, anything could qualify.

I skimmed the source they linked, and it lists guns as the leading cause of death for ages 1-19. I did not see an overall list.

I would agree that a more carefully phrased sentence would have been better and less misleading.

Link to source: …jhu.edu/…/2020-gun-deaths-in-the-us-4-28-2022-b.…

paholg ,

That is irrelevant. If Trump’s behavior would cause a regular schlub to be jailed, then he should be jailed, full stop. That’s how the law is supposed to work.

paholg ,

What does fried food have to do with requiring low sodium?

paholg ,

It is a stretch when you’re hearing from that person directly.

paholg ,

I pay for YouTube. I’m mildly optimistic that this won’t make it into the paid version, but I also wouldn’t be surprised if it does.

I’ve already had to cancel Amazon Prime after they made the base tier have ads, but continued to show ads after paying extra for ad-free.

paholg ,

If physics taught you that 1 = pi, you may want to retake some classes.

paholg ,

Aluminum is the fifth most common element on Earth, and is naturally present in pretty large quantities in soil.

Are you sure you aren’t confusing it with lead?

paholg ,

If you were as confused by this as I was:

Shortly after the vote, the U.S. Chamber of Commerce said it would sue the FTC to block the rule

The US Chamber of Commerce is a right-wing lobbying group for businesses, unrelated to the US Department of Commerce which is an actual government agency.

…wikipedia.org/…/United_States_Chamber_of_Commerc…

paholg ,

No, sorry. Ethically, this technology can only be used for torture.

paholg ,

Then, you could take those comments, and have the compiler use them to ensure you’re using the right variable in the right place. Oh wait, we just invented a type system.

paholg ,

It could be Ruby; puts is more common, but there is a print. With some silly context, the answer could even be correct:


<span style="font-style:italic;color:#969896;">#!/usr/bin/env ruby
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">module </span><span style="color:#323232;">DayLength
</span><span style="color:#323232;">  </span><span style="font-weight:bold;color:#a71d5d;">def </span><span style="font-weight:bold;color:#795da3;">length
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">if </span><span style="color:#323232;">[</span><span style="color:#183691;">"Sunday"</span><span style="color:#323232;">, </span><span style="color:#183691;">"Monday"</span><span style="color:#323232;">, </span><span style="color:#183691;">"Tuesday"</span><span style="color:#323232;">, </span><span style="color:#183691;">"Wednesday"</span><span style="color:#323232;">, </span><span style="color:#183691;">"Thursday"</span><span style="color:#323232;">, </span><span style="color:#183691;">"Friday"</span><span style="color:#323232;">, </span><span style="color:#183691;">"Saturday"</span><span style="color:#323232;">].</span><span style="color:#62a35c;">include? </span><span style="color:#ed6a43;">self
</span><span style="color:#323232;">      </span><span style="color:#183691;">"24 hours"
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">else
</span><span style="color:#323232;">      </span><span style="font-weight:bold;color:#a71d5d;">super
</span><span style="color:#323232;">    </span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">  </span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">
</span><span style="font-weight:bold;color:#a71d5d;">class </span><span style="color:#0086b3;">String
</span><span style="color:#323232;">  </span><span style="font-weight:bold;color:#a71d5d;">prepend </span><span style="color:#0086b3;">DayLength
</span><span style="font-weight:bold;color:#a71d5d;">end
</span><span style="color:#323232;">
</span><span style="color:#323232;">day </span><span style="font-weight:bold;color:#a71d5d;">= </span><span style="color:#183691;">"Monday"
</span><span style="color:#323232;">
</span><span style="color:#323232;">x </span><span style="font-weight:bold;color:#a71d5d;">=</span><span style="color:#323232;"> day.length
</span><span style="color:#323232;">
</span><span style="color:#62a35c;">print</span><span style="color:#323232;">(x)
</span>
paholg ,

Works even better in Ruby, as the code as given is valid, you just need to monkey patch length:


<span style="color:#323232;">#!/usr/bin/env ruby
</span><span style="color:#323232;">
</span><span style="color:#323232;">module DayLength
</span><span style="color:#323232;">  def length
</span><span style="color:#323232;">    if ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"].include? self
</span><span style="color:#323232;">      "24 hours"
</span><span style="color:#323232;">    else
</span><span style="color:#323232;">      super
</span><span style="color:#323232;">    end
</span><span style="color:#323232;">  end
</span><span style="color:#323232;">end
</span><span style="color:#323232;">
</span><span style="color:#323232;">class String
</span><span style="color:#323232;">  prepend DayLength
</span><span style="color:#323232;">end
</span><span style="color:#323232;">
</span><span style="color:#323232;">day = "Monday"
</span><span style="color:#323232;">
</span><span style="color:#323232;">x = day.length
</span><span style="color:#323232;">
</span><span style="color:#323232;">print(x)
</span>
paholg ,

Ah yes, I’ll just replace all my power sockets, get rid of all my electronics, and only buy imported European electronics from now on.

It’s so obvious, why didn’t I think of it before.

Oh yeah, and rewire my whole house to 240 V. Easy peasy.

paholg ,

I’m sorry to hear that. I think at one point in my past, about half my job was tracking down nil dereference errors in Ruby. And probably a quarter was writing tests for things a good type system would catch at compile time.

paholg ,

I’m waiting for Outlook (Taylor’s Version).

paholg ,

That is not a use for blockchain.

Say I want to say that I created an image. I could post that image’s hash to a block chain, and point to it as something anyone can check.

But you already have to trust me for that to be valuable. So I can just host that hash in any of a myriad of conventional methods that are simpler, more performant, and less wasteful.

paholg ,

The only selling point of blockchain is that it’s trustless. This becomes a less-useful property when it comes to things in the real world, as you tend to need to trust at least one party.

For example, anything they achieved there with blockchain, they could have achieved with a simple government-run web service and a traditional database.

paholg ,

I assume you meant trillion and not million for those gdp figures? Even then, they’re low.

paholg ,

But you can delete your copy, ask others nicely to delete theirs, and refuse to accept more copies of the same thing.

I’m not sure if Lemmy supports any of this, but it seems pretty important for e.g. child porn.

paholg ,

I’m not sure we even bother to suggest they don’t use them on civilians.

paholg ,

By vertical tabs do you mean tabs on the side instead of the top? If so, check out the tree-style tabs extension, it’s great.

paholg ,

Fwiw, I’ve been playing mostly fine on my Linux desktop. One crash, but otherwise no issues.

paholg ,

Your white led is a blue led with a phosphorescent coating.

paholg ,

Hear me out: part of me welcomes that.

Currently, most websites are awful to browse, and a few are not. If we switch to a world where most are inaccessible to me, and a few are nice, then I’ll spend less time being frustrated by cookie popups and the like.

Like, if a site’s going to be terrible, I almost prefer it just not let me in at all.

As an example, I used to click the occasional Twitter link. Now that I can’t see comments, I refuse, and life is a bit improved.

paholg ,

You need an account and to be logged in to see comments now.

paholg ,

Not really, no. Who’s going to honor the deed? There’s your central authority that can control it.

paholg ,

Are you not aware that we have been heavily involved with this conflict for a very long time?

paholg ,

I hate to break it to you, but hot dogs and tacos are the same.

cuberule.com

paholg ,

It’s so weird to see him in a uniform with no visor.

paholg ,

I’m sorry, but that’s a shit take. If someone wants to have kids, they shouldn’t worry about legal trouble in the case of miscarriage. Full stop.

No one should be okay with the government having this much overreach.

paholg ,

I’m saying we (all of us) should find it absolutely unacceptable that these legal risks exist.

paholg ,

Depends on how traditional you want to get. The original metric was the number of 14" shells something could survive. Given that, 20 seems pretty good for a car.

paholg ,

I hope that anyone who thinks they’re a Rick spends a lot of time in therapy and on self-reflection, working to change that.

paholg ,

It’s still wild to me that I visited Hawaii as a kid, and then several years later. When I went back, a road I had driven on as kid was covered in lava.

paholg ,

What? The people who made him buy it got paid already. I’m sure they’re laughing every time they see it drop in value.

paholg ,

If it were truly about comedy, wouldn’t he at least try to be a bit funny while doing it?

paholg ,

It’s really not at these scales. Earth and Mars go from roughly 4 light minutes apart to over 20.

At the best case, saying something and then waiting 8 minutes for a response is hardly what I’d call “real time”.

paholg ,

Do you have a source that sports are a net financial positive for schools?

Here’s an article about students being charged thousands of dollars each per year for sports programs: nbcnews.com/…/hidden-figures-college-students-may…

Here’s an article showing that only 25/65 Division I schools had a net positive revenue from sports: bestcolleges.com/…/do-college-sports-make-money/, with those losing money losing a lot more than the ones making money.

Another: pbs.org/…/analysis-who-is-winning-in-the-high-rev…

Just search for “college sports net revenue” and I’d be surprised if you find much, if anything, that agrees with you.

paholg ,

Yeah, the few at the top bring in revenue, but most don’t. Speculating on future revenue is not helpful.

If you’d read the links I shared, you’d see the revenue figures include alumni donations, and they’re still a net negative for the majority of schools.

paholg ,

It definitely is. A passkey in a TPM, for example, cannot leave a device. Also, passkeys can have phishing resistance that you cannot obtain with a password and most MFA solutions.

Where passkeys fall short is registering new devices and recovery. I’m not sure what 1Password’s solution is here.

paholg ,

If it were just the principal then this child would never have been arrested. Sadly, a lot of people in this story should be removed from any position of authority, or possibly society altogether.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines