Monthly Shaarli

All links of one month in a single page.

December, 2019

Midi était en flammes | Anis Gras – Le lieu de l'autre

Cie La difforme - Jessica Dalle

Midi était en flammes, deuxième spectacle de la compagnie le Difforme, est une variation sur le roman et film Théorème du poète visionnaire Pier Paolo Pasolini.
Le passage d’un ange vient bouleverser la vie verrouillée d’une famille bourgeoise, provoquant chez chacun de ses membres une quête solitaire.
Développant un langage d’images, de corps, de musique et de sons, le spectacle interroge notre rapport collectif au désir, au sacré et à la morale, nous immergeant dans les sensations vécues par des individus en quête d’absolu.
L’équipe artistique au plateau se compose de sept acteurs dont un circassien et un musicien.
« Pour être poète, il faut avoir du temps : bien des heures de solitude, seul moyen pour que quelque chose se forme, vice, liberté, pour donner style au chaos. » P. P. Pasolini

What are CN, OU, DC in an LDAP search?
thumbnail

What are CN, OU, DC?

From RFC2253 (UTF-8 String Representation of Distinguished Names):

String  X.500 AttributeType

CN commonName
L localityName
ST stateOrProvinceName
O organizationName
OU organizationalUnitName
C countryName
STREET streetAddress
DC domainComponent
UID userid

<br/>
What does the string from that query mean?

The string ("CN=Dev-India,OU=Distribution Groups,DC=gp,DC=gl,DC=google,DC=com") is a path from an hierarchical structure (DIT = Directory Information Tree) and should be read from right (root) to left (leaf).

It is a DN (Distinguished Name) (a series of comma-separated key/value pairs used to identify entries uniquely in the directory hierarchy). The DN is actually the entry's fully qualified name.

Here you can see an example where I added some more possible entries.<br/>
The actual path is represented using green.

enter image description here

The following paths represent DNs (and their value depends on what you want to get after the query is run):

  • "DC=gp,DC=gl,DC=google,DC=com"
  • "OU=Distribution Groups,DC=gp,DC=gl,DC=google,DC=com"
  • "OU=People,DC=gp,DC=gl,DC=google,DC=com"
  • "OU=Groups,DC=gp,DC=gl,DC=google,DC=com"
  • "CN=QA-USA,OU=Distribution Groups,DC=gp,DC=gl,DC=google,DC=com"
  • "CN=Dev-India,OU=Distribution Groups,DC=gp,DC=gl,DC=google,DC=com"
  • "CN=Ted Owen,OU=People,DC=gp,DC=gl,DC=google,DC=com"
10 HTML Elements You Didn't Know You Needed
thumbnail

I’ve heard the sentiment “HTML is easy” more times than I can count. And while I would agree that HTML is perhaps easier to learn than other programming languages, you shouldn’t take it for granted.

HTML is a powerful markup language which can be used to give our web applications structure and provide powerful accessibility benefits, but only when used appropriately.

Thus, today we’ll discover ten HTML elements you might not have known existed in the hopes that you can create more accessible, and structurally-sound web applications.

Sleek, modular open source JavaScript file uploader
thumbnail

Uppy fetches files locally and from remote places like Dropbox or Instagram. With its seamless integration, reliability and ease of use,

Uppy is truly your best friend in file uploading.