
“Continuing up Rennes. Dodging little Saabs and Renaults. Loving walking here. Sun alternately streaming. Obliterating physiognomies. No longer nouns. But movement. Disappearing. Now heavily raining. Sitting out anyway. Over drain smelling of beer. Metro. Sewers. Fetid breath of Paris. Two cold coffees. Watching shadows lengthening. On la Gaite opposite. Where Colette once performing. Having walked in old boots across city. Drawing mole above lip. Rice-powdering delicious arms. Paris a drug. P saying on phone. Yes Paris a drug. A woman. And I waking this a.m. Thinking there must be some way. Of staying. Now my love’s silhouette of rooftops eclipsing. Into night. Cold heinous breath. Blowing on privates. Through grille underneath.””
“P.S. I offer a topic for discussion. The past is nothing more than the present romanticized, while the future is history with imagination. Any thoughts?””
“SHORT NOTE ABOUT SHA-1 A lot of people become concerned at some point that they will, by random happenstance, have two objects in their repository that hash to the same SHA-1 value. What then? If you do happen to commit an object that hashes to the same SHA-1 value as a previous object in your repository, Git will see the previous object already in your Git database and assume it was already written. If you try to check out that object again at some point, you’ll always get the data of the first object. However, you should be aware of how ridiculously unlikely this scenario is. The SHA-1 digest is 20 bytes or 160 bits. The number of randomly hashed objects needed to ensure a 50% probability of a single collision is about 280 (the formula for determining collision probability is p = (n(n-1)/2) * (1/2^160)). 280 is 1.2 x 10^24 or 1 million billion billion. That’s 1,200 times the number of grains of sand on the earth. Here’s an example to give you an idea of what it would take to get a SHA-1 collision. If all 6.5 billion humans on Earth were programming, and every second, each one was producing code that was the equivalent of the entire Linux kernel history (3.6 million Git objects) and pushing it into one enormous Git repository, it would take roughly 2 years until that repository contained enough objects to have a 50% probability of a single SHA-1 object collision. A higher probability exists that every member of your programming team will be attacked and killed by wolves in unrelated incidents on the same night.””