chisel

joined 1 week ago
[โ€“] chisel@piefed.social 1 points 10 minutes ago

That's the beauty of it! The stupid overreaching big-government law says real doctors need to review appeals and review notes and consider circumstances. But that's fuxkings stupud when a single line of code can deny claims and appeals at 1000x the speed and send EVEN MORE money to daddy's dragon den which will then trickle down directly into MY POCKETS.

I took the liberty of writing my own hyper-advance AI to handle the task. It should only need 10 racks of GPUs to run.

public static void reviewClaim(Claim wasteOfMoney) {
  if (wasteOfMoney.isNotCovered()) {
    wasteOfMoney.deny();
  } else {
    wasteOfMoney.deny();
  }
}
[โ€“] chisel@piefed.social 4 points 37 minutes ago (2 children)

Erhm, gubbermint unhealthcare has DEATH PANELS where they KILL YOU!!!!! I much prefer my profit-driven health utopia. It's much more simpler, no panels required!

flow chart of sexy profit driven health care system. Has one question with one outcome. Will it cost money? The only path, yes, leads to death.

Fuck yes, bleed my dry insurance-senpai. Take my father's heart and buy a chair for your 100th yacht. CEO shinigami-san I wuv you owo. ๐Ÿคค

[โ€“] chisel@piefed.social 2 points 1 hour ago

If you're fine with self hosting, you can just self host it and backup your local drives to a remote location. That's what I do.

For backup software, I use Duplicacy. But Veeam, Borg, etc.. would work just fine. For images, since they're just static files and you don't really need a version history, you could get away with a scheduled rsync job. Though, technically that leaves you more at risk of ransomeware or something that overwrites your data.

For remote storage, I'd first consider a Hetzner storage box since they are flat-rate pricing and pretty dang cheap at $13/mo for 5TB. You might also consider StorJ, B2, S3, etc... I'd just stay away from any lesser known ultra-cheap storage providers.

[โ€“] chisel@piefed.social 5 points 1 hour ago* (last edited 1 hour ago)

And if they don't comply? Is it possible for them to do anything other than shoot it down to physically enforce this?

[โ€“] chisel@piefed.social 1 points 22 hours ago

Well they certainly don't help

[โ€“] chisel@piefed.social 4 points 1 day ago

And yet my $0 non-subscription remains the same price

[โ€“] chisel@piefed.social 11 points 2 days ago

For context, here's an article about another pump.fun streamer: Teen creates memecoin, dumps it, earns $50,000. Regretably, I don't have any articles on-hand about the tens of thousands of people that are losing money to this scam.

[โ€“] chisel@piefed.social 18 points 2 days ago (1 children)

The article says he is a pump.fun streamer. That's not even real crypto. It's literally a pump and dump website where anyone can make a new fake token by giving it a name and a picture. Then the price is set algorithmically until it gets enough people buying it that it converts into a real token. There are no fundamentals or differentiating factors between the tokens. It's all a scam built upon the greater fool theory. At least different crypto currencies have different attributes and reasons to use them over others.

You wouldn't want cold storage of any tokens on that site since they'll be worthless the next day.

But, tbf, I don't know if it was pump.fun slop that was stolen or a real crypto currency.

[โ€“] chisel@piefed.social 75 points 2 days ago (4 children)

There is malware that can infect you simply by opening an office document. One of the cooler security trainings I've been through was a recorded demo of it. Opened a doc on one computer, enabled editing, then another computer was able to extract credentials from ram or something.

[โ€“] chisel@piefed.social 1 points 2 days ago

I hate this move and love my sideloaded apps. However, there are plenty of self hosted apps on the play store. It's just putting in a unique address at setup, not compiling a whole unique app for each server.

[โ€“] chisel@piefed.social 11 points 2 days ago (1 children)

Yeah, but has she fixed her laugh though?

[โ€“] chisel@piefed.social 1 points 2 days ago* (last edited 2 days ago)

The consequences have been apparent for nearly a decade already. Arguably longer.

 

ABC claims Kimmel was canceled over comments he made about Kirk. The evidence says otherwise.

Starts at 2 minutes. This is the monologue referenced by the Deadline article on his cancelation.

Here's another that may or may not be related: https://www.youtube.com/watch?v=aHT7ICvMtlA

 

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 โ€บ