Apparently the good ship Titanic was severely damaged by a fire even before it was launched. And it was this fire damage, rather than an iceberg, that led to the catastrophe. Click HERE to read an article on this new theory.
Courtesy CBS News Two recent stories continue to haunt me, as I’m sure they haunt the rest of the nation. At a Pennsylvania high school , young Alex Hribal, age 16, greeted his fellow students one morning last week by stabbing 21 of them with a set of kitchen knives. He also attacked a school security officer. Four of his victims remain in critical condition. Tomorrow, the school will reopen so parents and students can do a walk-through. The school plant has been cleaned and sanitized of the blood and gore, but the fear, I’m afraid, will be much harder to clean away. Classes begin on Wednesday, but it is safe to say no one in the community will be the same again. Hribal did not stand out as a troubled teen before the rampage. Mental illness does not necessarily broadcast its presence to the world before bullets fly or steel flashes, bloodstained and corroded, in a school hallway. There are sleepers out there, psychologists warn us. Some...
The quiet, old, musty-smelling, echoes of history. The library has survived fires, earthquakes, floods. This makes it biblical, mythological, the field of Elysium for the mind life. I have come to this library in late spring to read, to write, to consider where my life is going. All the students have left, and I am alone with my thoughts, and the thoughts of those lining the shelves. Mute testimonies from another age. I hear the voices calling me . I walk between the stacks, selecting random volumes: 1909, 1921, 1894, 1910. The spines are creased and lined, the type worn away. I open the books and find some have not been checked out since the 1950s. There they sit, waiting patiently for someone to come along and bring them to life again by reading. The library is a four-story affair built on the side of a hill. You enter on the third floor. Spanish colonial architecture, all arches and vaulted ceilings. This is the reading area, now filled with computer stations. Above is a sort of ba...
The ECMAScript proposal “ String padding ” by Jordan Harband & Rick Waldron is part of ECMAScript 2017 . This blog post explains it. Padding strings Use cases for padding strings include: Displaying tabular data in a monospaced font. Adding a count or an ID to a file name or a URL: 'file 001.txt' Aligning console output: 'Test 001: ✓' Printing hexadecimal or binary numbers that have a fixed number of digits: '0x00FF' String.prototype.padStart(maxLength, fillString=' ') This method (possibly repeatedly) prefixes the receiver with fillString , until its length is maxLength : > 'x'.padStart(5, 'ab') 'ababx' If necessary, a fragment of fillString is used so that the result’s length is exactly maxLength : > 'x'.padStart(4, 'ab') 'abax' If the receiver is as long as, or longer than, maxLength , it is returned unchanged: > 'abcd'.padStart(2, '#') 'abcd'...
Comments
Post a Comment