bourgoin's comments
bourgoin | 2 years ago | on: Judge sends Sam Bankman-Fried to jail over witness tampering
> that's a shame
that's a shame ;)
bourgoin | 2 years ago | on: The explosive legacy of the hand sanitizer boom
bourgoin | 2 years ago | on: Mandatory Certification Regarding Generative Artificial Intelligence
> All attorneys appearing before the Court must file on the docket a certificate attesting either that no portion of [...] or that any language drafted by generative artificial intelligence was checked for accuracy, using print reporters or traditional legal databases, by a human being [...] held responsible under Rule 11 for the contents of any filing that he or she signs and submits to the Court, regardless of whether generative artificial intelligence drafted any portion of that filing
Asking the attorneys to re-acknowledge that documents they file are their official entries into the record, no matter what programs are used to generate them, makes sense in principle as a way to preempt the "algorithm told us to" argument.
bourgoin | 3 years ago | on: Responsible AI Challenge
bourgoin | 4 years ago | on: Difficult situation on campus: traffic jam of food delivery robots
The bot and I were moving towards each other on a sidewalk, and when I came close it stopped, as they do when sensing an object in front of them. But there was an awkward moment as I tried to go around it and it repeatedly jerked forward an inch as its motor kicked on and off. Maybe I was walking around the very edge of its radius. In any case, my behavior must have triggered some pathfinding bug, because it turned and drove right into my legs, after which it stopped and sat stationary. Luckily they're small and move slowly so it wasn't a big deal, but that memory stuck with me. Articles about Tesla pathfinding issues always bring it back to the surface.
bourgoin | 4 years ago | on: Spotify deletes 70 Joe Rogan episodes
Comedian: 45, Political Commentator/Media Personality: 8, Brian Redban: 5, Health/Fitness: 2, Scientist: 2, Author: 2, Musician: 1, Pornstar: 1, (MMA) Fight Companion: 1, Giorgio Tsoukalos, Kevin Smith, Cliffy B & Johnny Cristo (can't even figure out who these last two are)
bourgoin | 4 years ago | on: Iowa man convicted of lottery rigging scheme granted parole
Why go through all of the trouble generating true randomness with a Geiger counter just to use the result as the seed to a PRNG, rather than using your true random method to generate the lottery numbers directly?
bourgoin | 4 years ago | on: Old songs now represent 70 percent of the U.S. music market
bourgoin | 4 years ago | on: The Zen of Drinking Alone
Over the years I've slowly come to a realization: These substances have various effects, but at the heart what they really do is make me less aware. Sometimes I guess it's a good thing. Alcohol makes me less aware of the part of me that is self-conscious in social situations, and of how others perceive me. Cannabis makes you feel more aware of experiences, but it proves to be an illusion. I guess they're really not that bad on the balance, but as I grow older and I have spent more and more time thinking about cultivating awareness - of the present moment; of my body and mind and senses; of things in life that are truly important, and which maybe even make me anxious to contemplate - I find that I simply don't enjoy intoxication as much anymore because there's something I enjoy more about awareness.
More and more I hear this nagging voice when intoxicated. It says: "I'm bored; I'm nervous; I'm scared; I'm sad; I'm worried; I'm self-conscious; I'm restless; Someday I will die. What I'm doing right now is trying to be less aware of these things. But maybe they aren't just to be ignored or avoided. Maybe they're an adaptive part of the human mind. Maybe there really is something worth being anxious about."
bourgoin | 4 years ago | on: My “Investment Mindset”
bourgoin | 4 years ago | on: ‘Something’s going on’: UFOs threaten national security, US politicians warn
bourgoin | 4 years ago | on: First genetically modified mosquitoes released in the United States
bourgoin | 5 years ago | on: Neuroscientists discover molecular mechanism that allows memories to form (2020)
bourgoin | 5 years ago | on: I wrote the world's worst text editor (2020)
bourgoin | 5 years ago | on: Who Owns the Nile?
bourgoin | 5 years ago | on: The political case for a blanket cryptocurrency ban
It seems to me you're implying that the colossal environmental damage inherent to a Bitcoin-driven world economy would be offset by the abolition of militaries, police, and banks, but I don't see how you make that jump. $trillions of military spending are used to secure resources and strategic assets and ensure national security, not to defend against bank robberies. A world without militaries or police is unimaginably different from our world in so many more ways than just the medium of exchange.
And if you can't point guns at people to make them give up part of their pile, how will you implement the CO2 tax?
bourgoin | 5 years ago | on: Lawyers used sheepskin as anti-fraud device for hundreds of years
bourgoin | 5 years ago | on: Based Cooking
There is a happy medium in the amount of information contained in a recipe. Certainly a recipe that says to cook 7 ounces of meat for 12 minutes so that it reaches 167F internal temperature is ridiculous and if that recipe will fail if not executed perfectly, then that is indeed stifling to my creativity. On the other hand, if a recipe doesn't tell me whether it means a tablespoon or a cup of flour, that actually makes it more difficult to be creative since it is unclear what I would be deviating from. I've never felt stymied by a recipe that says to use 1 tbsp of butter/flour for a roux - if I decide I want to add more then I will.
I guess my complaint is that the writer has removed information from the recipe such that it now contains less information than that generally accepted medium. A certain balance of information has become convention in cookbooks and I think it's for good reason. Removing that information to me smacks of a mindset that we programmers can be notorious for - something like "this other domain can't be that hard, I can improve it by removing all this extraneous complexity that seems to me to have no purpose." It brings to mind the parable of Chesterton's fence.
Thank you for your thoughts. I hope this makes the spirit of my previous comment more clear.
bourgoin | 5 years ago | on: Based Cooking
I don't see how REMOVING information benefits either a beginner or an experienced cook.
Python 3:
>>> num_strings = ['Zero', 'One', 'Two', ... 'Seven Hundred Thirty Two' ... ] # I tried 0 to 1000. num_strings generation script sold separately
>>> def find_gematria_matches(values): return [i for i,ns in enumerate(num_strings) if i == sum(values[ord(c)-65] for c in ns.upper() if c.isalpha())]
>>> find_gematria_matches([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]) # "zero-indexed" gematria
[213]
>>> find_gematria_matches([5,20,2,23,13,12,11,3,0,7,17,1,21,24,10,4,16,14,15,9,25,22,8,6,18,19]) # R. Leo Gillis' Trigrammaton Qabalahn
[232, 242]