As He died to make men holy
Let us die to make things cheap

  • 34 Posts
  • 1.44K Comments
Joined 2 年前
cake
Cake day: 2024年1月8日

help-circle

  • Love this album and song.

    A “black mariah” refers either to a police wagon or a hearse. In the case of this poor fellow he’s got a wooden coat and he’s never coming home—the narrator is seeing the hearse coming, in the form of a big black Ford.

    It gets a bit confusing when the Clash sings “no need for the black mariah” in Guns of Brixton—in that case they’re saying there’s no need for a police wagon, as the protagonist of the song has already been shot dead. Presumably they’ll need a hearse though.

    Nick Cave uses the slang for a police car in the Curse of Milhaven, where the protagonist is “off to the asylum in an old black mariah”.


  • You’re being distracted from actually doing something.

    A constant stream of awful bullshit, right to your screen. The feeling of doing something by shouting into the abyss.

    Trump doesn’t care if you see pictures of him raping children or learn about all his corruption unless it is transformed into actual political action. Taking to the street, organizing, running for office, supporting those who do.

    Everything is a distraction from action.














  • Yeah. January 29 was a post on reddit that did well and was kept up. Then if I understand correctly on the 6th it was posted again to the same community with a graph or something, but the post was not kept up. Nevertheless it caused a new pretty neat spike in users.

    Current number is 1148. I’m on mobile right now, but if anyone runs this in R it’ll procduce an up to date graph:

    
    
    mau <- c(109, 114, 114, 114, 120, 123, 370, 502, 569, 588, 602, 611, 613, 969, 987, 992, 993, 995)  
    Date <- as.Date(as.Date("2026-01-24"):as.Date("2026-02-10"))  
    plot(Date, mau, type="l", ylab="Monthly active users", lwd="2", main="Monthly active users of piefed.ca",  
         col="#D80621", xaxs="i", yaxs="i", ylim=c(0,1000))  
    grid()  
    
    

    Active users have now doubled in a week. Though it’s a slightly misleading measure as an active user that just signed up is much less reliable than an active user who signed up two years ago. But that doesn’t really matter if the purpose is to use it for promotional purposes. :)




  • Here’s the number of monthly active users, which might look more impressive to people who obsess over the Y axis:

    Monthly active users of piefed.ca per day

    It’s not super pretty as I just threw it together and really should be doing other things. But it’s colour matching the Canadian flag, which I hope is appreciated. :)

    I guess a key takeaway is that the number of active users at Piefed.ca multiplied by more than five since late January.

    mau <- c(109, 114, 114, 114, 120, 123, 370, 502, 569, 588, 602, 611, 613)  
    Date <- as.Date(as.Date("2026-01-24"):as.Date("2026-02-05"))  
    plot(Date, mau, type="l", ylab="Monthly active users", lwd="2", main="Monthly active users of piefed.ca",  
         col="#D80621", xaxs="i", ylim=c(0,613))  
    grid()