chisel

joined 2 weeks ago
[–] chisel@piefed.social 35 points 12 hours ago (1 children)

The government is doing everything about this. It's literally being done entirely by the government.

If you want the government to be doing the opposite thing about this, the time for action was during the past few elections, before the fascists got control over all three branches. Best the dems can do now is try to lock things up as best they can. Maybe by shutting down the government or something idk.

[–] chisel@piefed.social 11 points 1 day ago (1 children)

Using 7 chars to represent 8. Now that's efficiency!

[–] chisel@piefed.social 18 points 1 day ago (4 children)

Do you, though? Pi starts 3.141592, but 7/22 starts 3.142857, already wrong by the 4th digit.

[–] chisel@piefed.social 3 points 1 day ago

About time!

[–] chisel@piefed.social 2 points 2 days ago

That's pretty common. You garnish their salary, sell off assets, and recover what you can.

[–] chisel@piefed.social 1 points 3 days ago (3 children)

The families that sued him and settled for $7.5M were from the community. Did they enable him? What about the children that attend the same school and will now have less funding for their education? Did they enable him? Do they deserve to partake in the punishment?

Make the people that did the offense pay for it.

[–] chisel@piefed.social 8 points 3 days ago (38 children)

Some coach diddles kids and the families and kids have to pay for it through insane tax hikes and less school funding? In what world does that make sense?

They already put the coach in prison for 15 years and probation for 25 years after that. Why punish the local community too? Yes, the families should be made whole, but not at the expense of objectively innocent tax payers and schoolchildren.

[–] chisel@piefed.social 14 points 4 days ago (3 children)

He trapped a professional stuntman in a burning building with a pyrotechnics crew, multiple fire suppression methods, and a professionally tested saftey system?

Wait until you hear about what Ridley Scott did to Matt Damon on Mars.

[–] chisel@piefed.social -3 points 4 days ago

Trained professionals with specialized on-site safety crews and kill switches. "But think of the children who will recreate this!" 🙄 Manufactured outrage to cash in on the Mr. Beast hate bandwagon.

[–] chisel@piefed.social 4 points 4 days ago (1 children)

It's not a legal issue. They'd just shut down any accounts doing this. They already detect and shut down account sharing and this is just a variant of that. No law or government intervention necessary.

[–] chisel@piefed.social 50 points 4 days ago (1 children)

Sling couldn't have asked for a better marketing campaign

 

PieFed allows you to specity CSS in your settings so you can make it look however you like. What CSS do you use to improve your experience?

I whipped up some today to make the PWA better (for me) on mobile. It moves the post and comment action buttons to the right side, where your hand is (sorry lefties), puts the title below the preview for image/video posts, and makes previews full-width on mobile. Pretty minor, but it makes a big impact to me.

.post_utilities_bar .pull-right,  
.comment_actions .pull-right {  
  margin: 0;  
}  

.post_utilities_bar .voting_buttons_new,  
.comment_actions .voting_buttons_new {  
  order: -1;  
}  

.post_utilities_bar,  
.comment .comment_actions  {  
  justify-content: right !important;  
  flex-direction: row-reverse;  
}  

@media only screen and (max-width:990px) {  
  .post_teaser_image_preview,  
  .post_teaser_video_preview {  
    position: relative;  
    right: 13px;  
    width: 100vw;  
  }  

  .post_teaser_image_preview a,  
  .post_teaser_video_preview div {  
    border: none;  
    border-radius: 0;  
    max-width: 100vw;  
    max-height: 100vh;  
  }  

  .post_teaser_video_preview p {  
    margin-bottom: 0;  
  }  

  .post_teaser_body:has(.post_teaser_image_preview, .post_teaser_video_preview) {  
    display: flex;  
    flex-direction: column;  
  }  

  .post_teaser_body .post_teaser_image_preview,  
  .post_teaser_body .post_teaser_video_preview {  
    order: -1;  
  }  
}  

A screenshot of the frontpage of PieFed with the above css added in

Sidenote, I think the css feature might be doing some xml encoding or something because > doesn't seem to work in selectors. I didn't mess around enough to prove that definitively.

view more: next ›