Temps de travail et productivité en France - Le bazar de mydjey

Je copiecolle ici pour mémoire:

On entend souvent des phrases comme "les français travaillent moins que [...] blablabla". S'ensuit une phrase sur la compétitivité française sensé être moins bonne que chez certains de nos voisins européens.

Si l'on prend en compte le temps de travail effectif, c'est à dire, en tenant compte des temps partiels (très développé aux Pays-Bas mais aussi en Allemagne). Voici les chiffres qu'on obtient [1] :

France : 34.5
Allemagne : 34.3
Suède : 34.6
Royaumes-Uni : 35.5
Danemark : 33.4
Pays-Bas : 30.4
États-Unis : 34.4


Précisions pour la France :
Durée légal du travail : 35 heures. Du fait des heures supplémentaires le temps de travail effectifs est de : 37.4 heures.
Lorsque on inclut dans le calcul les contrats à temps partiel cette durée est de : 34.5 heures.

La France est donc sensiblement dans la moyenne des pays comparés.

Quand à la productivité française, elle est l'une des plus élevée au monde : 15% de plus que la moyenne européenne, près de 30% de plus que la productivité japonaise [2].


[1] Source : Silence n°453, février 2017
[2] Source : Alternatives économiques n°357, mai 2016




Let's Look at 50+ Interesting CSS Properties & Values | CSS-Tricks

Quelques trucs que je retiens pour moi :

counters

body {
  counter-reset: heading; /* init the counter for headings (you can give it any other name) */
}
h2 {
  counter-increment: heading; /* increments the counter on every <h1> tag */
  counter-reset: subheading;  /* here we init or reset the subheading */
  /* so that we get 1.1, 1.2, 1.3, then after new heading it will go 2.1, 2.2, 2.3 */
}
h2:before {
  content: counter(heading) " - "; /* using :before selector and counter() function we can add the index to the heading */
}
h3 {
  counter-increment: subheading; /* increment the subheading counter on every <h2> tag */
}
h3:before {
  content: counter(heading) "." counter(subheading) " - ";
}

currentColor

.parent {
  color: #ccc;
  border: 1px solid currentColor;
}
.child {
  background: currentColor;
}

image-rendering

.pixelated {
  -webkit-image-rendering: pixelated;
  image-rendering: pixelated;
}

img {
  width: 200px;
  height: 200px;
}

shape-outside

  • Keyword values: none, margin-box, padding-box, border-box, padding-box
  • Function values: circle(), ellipse(), inset(), polygon()
.-shape-outside {
  shape-outside: circle(50%);
  float: left;
}

.circle {
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 24px;
  overflow: hidden;
  border: 1px solid #eee;
  img {
    width: 100%;
    height: 100%;
  }
}

div {
  text-align: justify;
}

html, body {
  height: auto;
}

@supports

@supports (display: grid) {
  .container {
    display: grid;
  }
}            

@supports (image-rendering) {
  img {
    image-rendering: pixelated;
  }
}


@supports (display: grid) and ((image-rendering: crisp-edges) or (image-rendering: pixelated)) {

}

var()

:root {
  --primary-color: #cccccc;
}
body {
  color: var(--primary-color, #cccccc);/* le second est le fallback */
}

vh, vw, vmin, vmax

These values are used for sizing things relative to the viewport size. While width is alwasys relative to the parent container, vh or vw always use viewport size as a basis.

  • vh: 1 vh is equal to 1/100 of viewport height
  • vw: 1 vw is equal to 1/100 of viewport width
  • vmin: it is the least value of vh and vw
  • vmax: is the largest value of those two

For a browser window that has a viewport 1280x655px, 1vh is equal to 6.55 pixels, 1vw is equal to 12.8pixels, vmin is 6.55 pixels (smallest of the two values), and vmax is 12.8 pixels (largest of the two values).

writing-mode


.vertical-rl {
  writing-mode: vertical-rl;
}
.vertical-lr {
  writing-mode: vertical-lr;
}
```<div class="img_source"><a href="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT9AE-gH-YzrjroQjQxh76bQIs_W94nTXX8C45nGCToFe9Dxz3S">Source image</a></div>

Le Clavier Cannibale: Le possessif qui pue: quand Valls joue les féministes

"ll y a des ambiguïtés et des risques d'accommodements de sa part [avec l'islamisme radical], c'est un des débats que nous avons à gauche, a-t-il déclaré. Il me semble important qu'on soit au clair. Il ne peut pas y avoir le moindre compromis avec les communautarismes et avec ces pratiques qui concernent nos femmes."



Manuel Valls



Fil RSS des articles