chisel

joined 1 week ago
[–] chisel@piefed.social 1 points 21 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.

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

It's not uncommon for police to murder someone / do something terrible, get fired, then immediately move to the next town over and get hired. This is nothing.

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

Wtf are you talking about? People buy Tylenol all the time.

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

Defederate from 1 user? 🤣

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

By "first-party" here, I mean sites that make the product they're selling. Like I wouldn't trust the reviews on Samsung's website for a Samsung phone. Amazon is separate enough that the conflict of interest isn't really there, but Amazon reviews are so targeted by illegitimate reviews that they're not S-tier trustworthy.

 

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 ›