The thing I most appreciate about celebrated writer, Maya Angelou , is her bravery. She spoke and wrote what was on her mind, never mincing words. In today’s world of empty praise and false positive affirmation, this poet is a fresh ocean breeze in the heat of summer. I love her poetry and I teach it often along with her memoir, I Know Why The Caged Bird Sings . Her work connects back to the Harlem Renaissance writers and other African-American artists. The title of her memoir comes from a poem by Paul Lawrence Dunbar (1872-1906). However, she is not an artist addressing a particular race; she is a poet for the ages and for all people, a true American treasure. The Washington Post published a piece yesterday by Valerie Strauss that made clear Angelou’s ability to speak the truth. She was exuberant about the election of President Obama, and he in turn awarded her the Presidential Medal of Freedom in 2011. However, she often spo...
Iris Mittenaere , 24, est la première Française depuis une soixantaine d'années à être couronnée Miss Univers . Brune d'1m72, Iris étudie la chirurgie dentaire, et compte lancer en France des efforts d'hygiène bucco-dentaire. Pourquoi pas ? Il ne faut pas confondre ce concours américain avec celui de Miss Monde, né en Grande-Bretagne. Je découvre avec une certaine surprise qu'Iris n'a pas le genre de beauté féminine qui m'attire, mais je ne sais pas du tout ce que ça signifie. Hier soir, j'ai regardé Je vous trouve très beau à la télévision. Alors là, pour moi, la comédienne roumaine Medeea Marinescu est franchement Miss Terre : le genre de jeune paysanne qui, sur une propriété agricole de la Drôme, me ferait courir comme un fou sur les pentes. L'attirance sexuelle est vraiment quelque chose de très particulier. Heureusement que ça ne compte pas dans les concours dits "de beauté"... Voilà, encore une fois, un domaine que l’on pourrait expl...
The classic command for running a simple web server from a shell is: python -m SimpleHTTPServer [«port»] As a result, files are served at http://localhost:«port» , with 8000 being the default if you omit the port. This command has the advantage that it is built into Python and that Python is built into Mac OS X. However, this command always serves the current working directory (the directory that you are currently in), there is no way to provide a directory as an argument. That’s a problem if the directory you want to serve is constantly being deleted and recreated. Node.js doesn’t have a similar built-in mechanism, but there is an npm package that you can install: http-server . npm install -g http-server A basic way of using the shell command that this package comes with is: http-server [«path»] [-p «port»] Afterwards, files are served at http://localhost:«port» . If you omit the path, ./public is used, if it exists, and ./ otherwise. If you omit the port, 8080 is used....
Comments
Post a Comment