Jonathan Ross Killed Renee Good

He should be indicted.

Whether or not he is convicted he should shunned by all good people for the rest of his life. 

Saying this is protected by the 1st amendment (true statement then opinion) but our current administration hates the 1st amendment.

https://www.syracuse.com/news/2026/06/federal-agents-demand-syracuse-woman-remove-instagram-post-about-ice-good-morning-cny-for-june-25.html

The federal agents who attempted this silencing of the truth should be ashamed for not resigning when ordered to do this. If they are not ashamed then they are fascist authoritarian assholes and should be shunned for the rest of their lives.

LibreOffice Calc Unusual Formulas

I’ve been using Calc since it was first released and occasionally I discover an older spreadsheet with some clever formulas that I know would take a bit of effort to re-create. So I’ll add them to this post as I encounter them.

  1. Show elapsed time to right now as years and months
    Formula: =TEXT(YEARS($A2,NOW(),0),0)&” Years “&TEXT(MONTHS($A2,NOW(),1)-(YEARS($A2,NOW(),0)*12),0)&” Months”
    Sample Result: 5 Years 3 Months
  2. Find the minimum value of a range excluding values below a specific limit
    Formula: =MINIFS(I3:I310,H3:H310,”>4″)
    This  returns the minimum value present in the first range if the value in the same row of the second range is > four.