anthony_romeo | 2 years ago | on: I paid for Sublime Text
anthony_romeo's comments
anthony_romeo | 2 years ago | on: I paid for Sublime Text
anthony_romeo | 2 years ago | on: Trinary Decision Trees for missing value handling
anthony_romeo | 2 years ago | on: The Password Game
But I wasn’t able to finish: I got a captcha with digits 5, 3, 7, and 8. When the chessboard appeared, the best move was Qe6. These conflicted with the rule to have all digits sum to 25 (5+3+7+8+6=29).
anthony_romeo | 2 years ago | on: Quantum Computing 101
anthony_romeo | 3 years ago | on: Ask HN: Which books have made you a better thinker and problem solver?
It describes arguments as existing within different types of dialectic contexts (e.g. debate, deliberation, negotiation). Arguments that are fallacious in one context (e.g. threatening your opponent in a debate) are not in other contexts (e.g. threatening your opponent in a negotiation). From this, informal fallacies are defined not as inherently bad arguments that must always be avoided, but rather they emerge when one inappropriately shifts the dialectic from one type of argument to another.
anthony_romeo | 3 years ago | on: APL deserves its renaissance too (2018)
I haven’t had the audacity to use it in production code, but it’s interesting to play around with and great for quick note taking or hacker news comments. (Sadly I’m on my phone right now to not make use of it for this comment)
anthony_romeo | 3 years ago | on: Likely cause of mystery child hepatitis outbreak found
If memory serves me right, early on in the pandemic, the health care systems of a number of countries and cities (e.g. Italy, NYC) were completely overwhelmed by infected individuals with severe respiratory illnesses, many of whom needed several days of ventilator treatment to survive. Many aspects of society in these areas ceased to function because of the effects of the virus itself (and the effective collapse of the health care system). Support for government mandates grew out of a desire to mitigate the effects of the virus.
In the US, after a pretty devastating March 2020, government mandates were largely left to the states, meaning that states/cities more strongly affected by COVID were able to choose stronger mitigation strategies and vice-versa.
After we learned more about the virus, after a vaccine was developed & released, and after the virus mercifully mutated into a less lethal version of itself, the likelihood repeating the same sort of shock on the healthcare system dropped. Many states had already lifted their restrictions in 2020, and states that were hit harder early (e.g. NY, CA) gradually lifted their restrictions throughout 2021.
I interpret Dr. Birx's quote to suggest that she believed that "fifteen days" time was not enough time to slow the spread, and that this was the largest span of time for which she was able to obtain authorization. The later expansion to "thirty days to slow the spread" suggests that Dr. Birx was correct.
I'll also note that, the following month, the President of the United States suggested that citizens should "LIBERATE MICHIGAN!" of their mask mandates and business restrictions. From this, your claim that mask mandates were "unquestionably pushed" seems inaccurate to me. On the contrary -- the first year of the pandemic was a perpetual deliberation on the effectiveness of mitigation strategies. Lockdown strategies continue to be debated despite lockdowns being basically nonexistent in most of the US now.
anthony_romeo | 3 years ago | on: ‘What Do You Think Is the Most Important Problem Facing This Country Today?’
I ask this because I'm pretty sure race relations are still being discussed among "the news media" and I'm wondering how you came to this conclusion.
anthony_romeo | 3 years ago | on: New Arizona law makes it illegal to film within 8 feet of police
What if a bystander records 10 feet away, but a second person stands in between and records 5 feet away? Has the area of law enforcement activity expanded to include the first bystander because of the second bystander is breaking a law?
I guess bystanders who didn’t bring their tape measure can just run the risk of recording and let the courts shake it out, right?
anthony_romeo | 3 years ago | on: New Arizona law makes it illegal to film within 8 feet of police
anthony_romeo | 3 years ago | on: Supreme Court Overturns Roe vs. Wade
I understand your position. On your point about why people think marriage is a right… I suspect this is because, at present, many rights are coupled with marriage - visitation rights at a hospital being the classic example.
anthony_romeo | 3 years ago | on: Supreme Court Overturns Roe vs. Wade
anthony_romeo | 3 years ago | on: Supreme Court Overturns Roe vs. Wade
Couples without children can adopt children, regardless of the gender of the parents.
anthony_romeo | 3 years ago | on: Ask HN: What are examples of common beliefs conclusively invalidated by data?
anthony_romeo | 3 years ago | on: Ask HN: Shouldn't an 8% inflation rate be synonymous to an economic recession?
Real GDP (which accounts for inflation) was up in 4Q 2021, but down 1Q 2022. Based on a somewhat arbitrarily-selected article I briefly skimmed the beginning of, Real GDP is expected to be up in 2Q.
https://www.philadelphiafed.org/surveys-and-data/real-time-d...
Of course, it always comes down to the details, which I haven’t really looked into.
anthony_romeo | 3 years ago | on: Some monkeypox patients also have sexually transmitted diseases, CDC says
anthony_romeo | 3 years ago | on: Some monkeypox patients also have sexually transmitted diseases, CDC says
anthony_romeo | 3 years ago | on: Find a good available .com domain
anthony_romeo | 3 years ago | on: WTFPython: Exploring and understanding Python through surprising snippets
Ya, this is because the initialized object is stored as the default parameter, and is not initialized every time the function runs.
def functy(dicty={}):
print('dicty=', dicty)
return dicty
output = functy()
# dicty = {}
output.update({'key': 'value'})
functy()
# dicty = {'key': 'value'}