PROJET AUTOBLOG


Warrior du Dimanche

Site original : Warrior du Dimanche

⇐ retour index

Attentat dans une mosquée de Québec : ce que l’on sait du suspect - Les liens du Lapin Masqué

mardi 31 janvier 2017 à 12:34

@Kevin: Tu l'as écrit avant moi ;-)
Gros +1

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

mardi 31 janvier 2017 à 11:19

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




RcloneBrowser (Rclone GUI) Lets You Manage Multiple Cloud Storage Services From A Single Desktop App ~ Web Upd8: Ubuntu / Linux blog

mardi 31 janvier 2017 à 11:03

Chéboncha !
Un bon moyen de synchroniser aussi Bozon
(je bosse TOUJOURS sur la v3 )

Via SebSauvage, Ecyseo


Acharnement - Le Hollandais Volant

mardi 31 janvier 2017 à 09:07

Gros +1 global...

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

lundi 30 janvier 2017 à 10:04

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

.-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.

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>