kalvn's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
2581-2600 of 4324
Krypton - The new way to protect your private key on your phone. https://krypt.co/
31/03/2018 10:01:02

Un concept intéressant. Il utilise votre téléphone comme second facteur d'authentification pour vos sessions SSH avec clé privée.

ssh private key
Noun Project - Icons for Everything https://thenounproject.com/
29/03/2018 13:25:58

Des tonnes d'icônes (environ 1 million !) gratuites.

icones gratuit libre
Dylan Curran on Twitter: "Want to freak yourself out? I'm gonna show just how much of your information the likes of Facebook and Google store about you without you even realising it" https://twitter.com/iamdylancurran/status/977559925680467968
29/03/2018 13:08:16

Petite piqûre de rappel sur ce que les géants du net stockent sur vous.

C'est un peu rigolo de communiquer ça sur Twitter mais bon ça reste utile :)

privacy google facebook microsoft
Designing For Print With CSS — Smashing Magazine https://www.smashingmagazine.com/2015/01/designing-for-print-with-css/
27/03/2018 21:46:47
CSS print
History of a rewrite – Marco Solazzi – Medium https://medium.com/@dwightjack/history-of-a-rewrite-30e4fadaac0f
27/03/2018 15:39:38

Un retour d'expérience sur une migration de React vers Vue.js (et accessoirement de GSAP vers anime.js).

ReactJS VueJS animation retourdexperience
Mapy.cz https://mapy.cz
27/03/2018 13:50:07

Un Google Maps alternatif. Assez bien fichu.

carte carte
Installer un Raspberry Pi sans clavier, sans écran, ni connexion ethernet – Korben https://korben.info/installer-un-raspberry-pi-sans-clavier-sans-ecran-ni-connexion-ethernet.html
27/03/2018 11:20:23

Sous le coude. Le lien de la vidéo.

raspberrypi
Build a Reusable Pagination Component with Vue.js ← Alligator.io https://alligator.io/vuejs/vue-pagination-component/
22/03/2018 13:43:50

Sous le coude.

VueJS page
Vue-Multiselect | Vue Select Library https://vue-multiselect.js.org/
22/03/2018 13:36:36

Un multi-select pour Vue.js.

VueJS selection lib
Headless CMS and Content API | ButterCMS https://buttercms.com/
20/03/2018 18:20:35

Un CMS sans front. Uniquement une API. Et à vous de construire votre site en appelant l'API. Il y a des librairies toutes faites pour les langages les plus courants (Ruby, JS, C#, PHP, Python, Go - étrangement pas Java).

Par contre c'est payant. Si quelqu'un connaît un équivalent gratuit et open-source je suis preneur.

cms API
How To Permanently Delete Your Google Search History http://archive.is/4jN3F
20/03/2018 18:15:32
  1. Télécharger ses données.
  2. Supprimer l'activité enregistrée à l'aide du menu à trois points en haut à droite.
  3. Désactiver le tracking.
google privacy tracking
Hemingway Editor http://www.hemingwayapp.com/
19/03/2018 15:52:09

Un outil qui vous aide à rédiger vos articles en privilégiant les phrases courtes et les tournures simples.

Les retours ont l'air très bons à son sujet.

anglais écriture blog orthographe grammaire style
CSS Variables https://flaviocopes.com/css-variables/
16/03/2018 08:55:30

Une courte introduction aux variables CSS.

CSS variable
Good to great UI animation tips – UX Collective https://uxdesign.cc/good-to-great-ui-animation-tips-7850805c12e5
15/03/2018 17:15:15

Comment des petites animations permettent d'améliorer l'expérience.

UX animation
Let's Encrypt lance ACMEv2 et les certificats wildcard - Next INpact https://www.nextinpact.com/brief/let-s-encrypt-lance-acmev2-et-les-certificats-wildcard-3083.htm
15/03/2018 09:09:23

Let's Encrypt supporte maintenant les certificats wildcard de type *.mondomaine.fr. Très pratique pour n'avoir qu'un seul certificat à gérer pour une infinité de sous-domaines.

letsencrypt certificat HTTPS
Windows 7 – Comment réparer la mise à jour ? – Korben https://korben.info/windows-7-comment-reparer-la-mise-a-jour.html
15/03/2018 09:05:42

Sous le coude.

windows7 Windows update
How to use Log Analytics tool - Analytics Platform - Matomo https://matomo.org/docs/log-analytics-tool-how-to/
14/03/2018 21:10:04

Importer vos logs Apache dans Matomo (Piwik).

analytics log apache
Note: Vérifier l'encodage d'une chaîne de caractère en PHP /shaare/O2-Stw
14/03/2018 11:09:24

En utilisant le client HTTP Guzzle en PHP, je me suis aperçu que parfois le retour d'une requête GET n'est pas encodé en UTF-8. Et ça semble dépendre de l'environnement. Dans mon cas ça ne marchait pas en local mais sur le serveur oui. Et si vous vous contentez simplement de ne pas en tenir compte et d'ajouter utf8_encode sur la payload de la réponse, ça donne des choses bizarre.

Du coup voici une vérification que vous pouvez faire :

$body = (string) $res->getBody();

if (!preg_match('!!u', $body)) {
    $body = utf8_encode($body);
}

Source : https://stackoverflow.com/questions/4407854/how-to-detect-if-have-to-apply-utf8-decode-or-encode-on-a-string

encodage php HTTP
PHP Twitter Hashtag Validation Regex · GitHub https://gist.github.com/janogarcia/3946583
13/03/2018 15:30:20

Une regex pour valider un hashtag. Implémentation en PHP.

<?php
/**
* PHP Regex to validate a Twitter hashtag
* 
* Useful for validating a text input (an HTML form in your CMS or custom application) that must be a valid Twitter hashtag.
* Valid examples: #a, #_, #_1, #_a, #1a, #áéìôü, #123hàsh_täg446
* Invalid examples: #1, ##hashtag, #hash-tag, #hash.tag, #hash tag, #hashtag!, (any hashtag that is more than 140 characters long, hash symbol included)
* 
* Regex explanation:
* First, the lookahead assertion (?=.{2,140}$) checks the minimum and max length, as explained here http://stackoverflow.com/a/4223213/1441613
* A hash symbol must be the first character. The allowed values for the hash symbol can be expressed with any of the following subpatterns: (#|\\uff0){1}, (#|\x{ff03}){1}, or (#|#){1}.
* A hashtag can contain any UTF-8 alphanumeric character, plus the underscore symbol. That's expressed with the character class [0-9_\p{L}]*, based on http://stackoverflow.com/a/5767106/1441613
* A hashtag can't be only numeric, it must have at least one alpahanumeric character or the underscore symbol. That condition is checked by ([0-9_\p{L}]*[_\p{L}][0-9_\p{L}]*), similar to http://stackoverflow.com/a/1051998/1441613
* Finally, the modifier 'u' is added to ensure that the strings are treated as UTF-8.
*
* More info:
* https://github.com/twitter/twitter-text-conformance
* https://github.com/nojimage/twitter-text-php
* https://github.com/ngnpope/twitter-text-php
*/
preg_match('/^(?=.{2,140}$)(#|\x{ff03}){1}([0-9_\p{L}]*[_\p{L}][0-9_\p{L}]*)$/u', '#hashtag');
php regex hashtag
Cheapass Parallax - daverupert.com https://daverupert.com/2018/02/cheapass-parallax/
13/03/2018 13:51:41

L'effet parallaxe en 6 lignes de JS avec des variables CSS.

CSS JavaScript parallaxe scroll
2581-2600 of 4324
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn