English : guide to good writing photo

English : guide to good writing

plume-encrier

My several years in the word game have learnt me several rules:

A writer must not shift your point of view.

A writer should not alienate half his readers by using gender-specific language.

Also, always avoid annoying alliteration.

Always pick on the correct idiom.

Analogies in writing are like feathers on a snake.

And don’t start a sentence with a conjunction.

Avoid clichés like the plague – they’re old hat.

Avoid trendy locutions that sound flaky.

Be careful to use the rite homonym.

Be more-or-less specific.

Contractions aren’t necessary, and shouldn’t be used.

DO NOT use all caps for emphasis.

Do not use hyperbole; not one in a million can do it effectively.

“Do not use unattributed quotations.”

Don’t be redundant; don’t use more words than necessary; it’s highly superfluous.

Don’t indulge in sesquipedalian lexicological constructions.

Don’t never use no double negatives – that’s a no-no!

Don’t overuse exclamation marks!!!!!

Don’t repeat yourself, or recapitulate what you have said before.

Eliminate quotations. As Ralph Waldo Emerson said, “I hate quotations. Tell me what you know.”

Eschew ampersands & abbreviations, etc.

Eschew obfuscation.

Everyone should be careful to use a singular pronoun with singular nouns in their writing.

Exaggeration is a million times worse than understatement.

Foreign words and phrases are no longer de rigueur; French is so passé.

Go around the barn at high noon to avoid colloquialisms.

If any word is improper at the end of a sentence, a linking verb is.

Indubitably, you should employ the vernacular.

It behoves thee to be abstentious of archaic expressions.

Never use a big word when a diminutive alternative would suffice.

No sentence fragments.

One should never generalise.

One-word sentences? Eliminate. Always!

Parenthetical remarks (however relevant) are unnecessary.

Parenthetical words however must be enclosed in commas.

Place pronouns as close as possible, especially in long sentences of ten or more words, to their antecedents.

Placing a comma between subject and predicate, is not correct.

Prepositions are not words to end a sentence with.

Proofread carefully to see if you any words out.

Puns are for children, not groan adults.

Remember to never split an infinitive.

Subject and verb always has to agree.

Take the bull by the hand and avoid mixing metaphors.

The passive voice is to be avoided.

Understatement is always absolutely the most fantastic and best way to promote earth-shattering ideas.

Use an apostrophe in it’s proper place, but omit it when its not needed.

Use words correctly, irregardless of how others use them.

Using euphemisms is ill-advised; they should be consigned to the sanitary landfill.

Who needs rhetorical questions?

Writing carefully, dangling participles must be avoided.

— Written by Frank L. Visco and originally published in the June 1986 issue of Writers’ Digest.

Coup de cœur : Pegasus Actual

Pegasus Actual est un groupe de blues-rock qui vient de Memphis et qui est influencé par le Delta blues.

Randy McFarland et JoJo Jefferies se sont associés pour créer un son fusion qui sonne comme le carrefour de musiques américaines : le jeu de guitare aérien de Randy McFarland colle tout à fait avec la voix chaude de Jo Jo Jeffries.

Cela crée un son assez changeant, qui verse dans le blues-rock jusqu’à presque basculer dans le rock-progressif de Pink Floyd à certains moments.

Le groupe se compose de JoJo Jefferies (vocals), Randy McFarland (guitars), Dennis Cupp (bass), Kenny Long (keyboards) et Rick Shelton (drums).

Pegasus Actual a été à l’honneur de l’émission spéciale “Guitar Greats” de BBC Radio 2 le 13 octobre 2008. Le groupe passe presqu’exclusivement sur les ondes des radios indépendantes en Europe, aux Etats-Unis et en Australie.

Recommandé !

enceintes-bluetooth-novodio-puresound

Ubuntu : associer une clé bluetooth avec des enceintes bluetooth Novodio PureSound

Pour mon anniversaire, j’ai eu la bonne surprise de découvrir mon cadeau : des enceintes Bluetooth Novodio PureSound, pour écouter de la musique ou des podcasts dans le salon sans pour autant rester planté devant l’ordinateur du bureau.

J’ai récupéré une vieille clé bluetooth. Je la branche, elle est détectée instantanément sous Ubuntu sans avoir à installer de pilotes additionnels. Génial.

Etape 1 : installation des paquets bluetooth

Pour commencer, j’avais enlevé il y a quelques années tous les pilotes et applications relatifs à bluetooth, étant donné que je n’avais rien sur cette machine qui disposait de cette technologie.

Du coup, il me faut réinstaller le paquet gnome-bluetooth

sudo apt-get install gnome-bluetoothCode language: JavaScript (javascript)

Etape 2 : établir une connexion permanente

Mettez l’enceinte sous tension et appuyez sur le gros bouton broadcast au dos de l’appareil pour qu’il puisse être détecté.

On lance le scan des appareils Bluetooth à portée :

hcitool scan

Résultat:

Scanning ...
	DC:2C:26:10:09:8D	Novodio PureSoundCode language: CSS (css)

Notre enceinte bluetooth Novodio PureSound est bien détectée. hcitool nous donne également son adresse MAC, que nous allons ajouter à notre configuration :

sudo nano /etc/bluetooth/hcid.conf

et on ajoute les informations relatives à notre enceinte :

device DC:2C:26:10:09:8D {
         name "Novodio PureSound"
         auth enable;
         encrypt enable;
 }Code language: JavaScript (javascript)

et on redémarre le service bluetooth

sudo service bluetooth start

Il existe une manière plus graphique d’ajouter l’enceinte : il suffit de cliquer sur Applications > Outils Système > Paramètres Systèmes > Bluetooth.

Lire la suite