finitebanjo

joined 5 months ago
[–] [email protected] 17 points 10 hours ago

Thats nothing, the Play Integrity API is trying to block usage by other operating systems like CalyxOS and Graphene. Imo much more insidious and opaque.

[–] [email protected] -2 points 10 hours ago

The poster isn't from world, but yeah theres a constant external pressure from tankies. Its even worse on instances that didnt defederate from Hexbear.

[–] [email protected] -5 points 10 hours ago

No shit, they're a chinese propogandist.

If they do have US Citizenship they probably voted for Trump.

[–] [email protected] 7 points 10 hours ago (5 children)

If you see anti-liberal sentiment that means "capitalism" which means "western world power" because some parts of Lemmy is overrun with CCP trolls and bots.

The actual definition of Liberal is meaningless here, but worth noting it means "advocate of equality and personal rights and freedoms".

[–] [email protected] -2 points 10 hours ago (3 children)

I mean

Consequentially saying the dems are shit resulted in authoritarianism

So yeah

But what that user was saying is that 90% of the posts on Lemmy about Dems shitting beds are made by Tankies who unapologetically support Trump and Putin.

[–] [email protected] -2 points 10 hours ago* (last edited 10 hours ago) (1 children)

I'm not sure where you've been hiding but Net Neutrality got struck down when we voted Fascists into power, so maybe cool it with blaming the dems for that one, pal.

[–] [email protected] 6 points 12 hours ago (3 children)

Maybe, but for now she doesn't have a single co-sponsor. LINK TO THE BILL

[–] [email protected] 1 points 14 hours ago* (last edited 14 hours ago)

TBH they can't really pass anything even if they wanted to focus on more important issues. Majority Leaders call votes and they're both Republicans.

[–] [email protected] 3 points 14 hours ago* (last edited 14 hours ago) (5 children)

Why would you not quote the first paragraph that explains everything about the law?

US Rep. Zoe Lofgren (D-Calif.) today proposed a law that would let copyright owners obtain court orders requiring Internet service providers to block access to foreign piracy websites. The bill would also force DNS providers to block sites.

TBH it's not that bad since it doesn't affect VPNs or domestic piracy sites, ironically. It's bad but it's not the apocalypse like some other commenters suggest.

[–] [email protected] 54 points 14 hours ago (4 children)

He doesn't actually care who or what is responsible as long as he can tell people it isn't him.

If he had half a brain he would just say investigations are ongoing whenever asked.

 
 
 
 
 
 

A couple of weeks ago I decided to put together a website in my spare time, and it went absolutely terribly.

Then I scrapped that project and started over in React JS.

Anyways, what are the pros and cons of defining the Header and Footer like so:

const Header = () => {
  return (
    <div>
      This is where I'd put my Nav Bar
    </div>
  )
}

const Footer = () => {
  return (
    <div>
      
      copyright 2024

    </div>
  )
}

const App = () => {
  return (
    <div>
      <Header />
      
         The Entire Bee Movie Script might go here for example

      <Footer />
    </div>
  )
}

Is there any issue with this sort of design versus storing the navbar and footer in a separate file and calling them as needed when pages load?

 
 
 
 
 
 
view more: next ›