4355 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 58 / 218
Newer►
  • thumbnail
    Blog-Libre | BorgBackup, borg pour les intimes
    August 22, 2016 at 12:54:11 PM GMT+2 - permalink - archive.org - https://www.blog-libre.org/2016/08/21/borgbackup-borg-pour-les-intimes/
    backup
  • Note: Kibana example request

    Little reminder

    request field matching exactly "/myapi/foo/bar"
    request.raw:"/myapi/foo/bar"

    request field starting with "/myapi" :
    request.raw:\/myapi\/*

    request field end with foo :
    request.raw:*.foo

    August 18, 2016 at 11:08:20 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?dOU5gQ
    example kibana request
  • It’s The Future - CircleCI

    So I just need to split my simple CRUD app into 12 microservices, each with their own APIs which call each others’ APIs but handle failure resiliently, put them into Docker containers, launch a fleet of 8 machines which are Docker hosts running CoreOS, “orchestrate” them using a small Kubernetes cluster running etcd, figure out the “open questions” of networking and storage, and then I continuously deliver multiple redundant copies of each microservice to my fleet. Is that it?

    -Yes! Isn’t it glorious?

    I’m going back to Heroku.

    Flamewar started

    August 18, 2016 at 11:02:58 AM GMT+2 - permalink - archive.org - https://circleci.com/blog/its-the-future/
    docker future heroku
  • Kit SDK AWS pour Python

    Un sdk en python pour aws

    https://boto3.readthedocs.io/en/latest/guide/resources.html

    August 16, 2016 at 5:40:40 PM GMT+2 - permalink - archive.org - https://aws.amazon.com/fr/sdk-for-python/
    aws python sdk
  • thumbnail
    rfc - Is there any documentation for omitting zeroes in dot-decimal notation of IPV4 addresses? - Stack Overflow

    ok ok... curl 127.0.0.1 == curl 127.1

    On peut omettre les 0

    Pas 'standard' mais fonctionne sur debian

    Il y avait un autre shortcut pour ping localhost mais je l'ai perdu :-/

    August 16, 2016 at 11:12:45 AM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/10133820/is-there-any-documentation-for-omitting-zeroes-in-dot-decimal-notation-of-ipv4-a
    curl localhost tips
  • Projet de dashboard domestique avec un Raspberry Pi

    C'est parti je vais tenter de me faire un truc dans le genre ce week end ! ^^
    Un dashboard avec plein d'infos cool :

    • heure/date
    • agenda
    • meteo
    • ensoleillement / lune
    • heure lever/coucher soleil
    August 11, 2016 at 9:01:36 PM GMT+2 - permalink - archive.org - http://www.magdiblog.fr/boa-pi-homedashscreen/1-raspberry-pi-home-dash-screen/
    dashboard pi
  • mod_dir - Serveur Apache HTTP Version 2.4

    avec le mod_dir chargé, la directive DirectorySlash est à On par défaut

    Que fait cette directive ?
    Dans le cas d'une ressource qui ne se termine pas par "/" et qui n'existe pas, apache va balancer une 301 vers cette même ressource avec un "/" à la fin.

    Ainsi pour atteindre www.foo.com/yoyo/index.html

    On peut simplement faire :
    www.foo.com/yoy
    -> 301 www.foo.com/yoy/
    -> Et apache envoie le index.html (car DirectoryIndex inclut index.html par défaut)

    August 11, 2016 at 1:56:16 PM GMT+2 - permalink - archive.org - https://httpd.apache.org/docs/current/fr/mod/mod_dir.html
    301 apache dir slash
  • NVD - FAQ

    What is the difference between the NVD and the Common Vulnerabilities and Exposures (CVE) standard vulnerability dictionary?
    The NVD is the CVE dictionary augmented with additional analysis, a database, and a fine-grained search engine. The NVD is a superset of CVE. The NVD is synchronized with CVE such that any updates to CVE appear immediately on the NVD.

    August 10, 2016 at 3:55:35 PM GMT+2 - permalink - archive.org - https://nvd.nist.gov/faq#d18d52fd-d1c7-44a5-b417-f2210724d433
    security
  • Note: curl, header host, https, SNI

    Si on veut curl une ressource sur l'ip (car pas de résolution, pas envie de modifier /etc/hosts..)
    On va utiliser -H pour rajouter un header host et arriver sur le bon virtualhost :

    curl -H 'Host: www.foo.com' http://192.168.1.1/

    Si la ressource est en https, ça ne passe pas :

    curl -H 'Host: www.foo.com' https://192.168.1.1/

    curl: (51) SSL: certificate subject name (*.foo.com) does not match target host name '192.168.1.1'

    Car le SNI hello se fait avec l'host dans l'url (192.168.1.1) et non pas avec le Header Host

    Un workaround est d'utiliser l'option --resolve

    curl --resolve www.foo.com:192.168.1.1 https://www.foo.com

    On peut aussi utiliser --insecure pour ignore l'erreur mais on ne valide pas que le certificat est ok :

    curl --insecure -H 'Host: www.foo.com' http://192.168.1.1/

    August 10, 2016 at 2:57:59 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Lqccgg
    curl https sni
  • The Art of Monitoring

    bien bien cet ebook, des parties très interessantes sur la comprehension des valeurs qu'il faut remonter (average = useless, median = better, 90/95percentile = the best)

    En revanche toutes les parties technique qui dévrivent l'installation/configuration bof bof.. ça prends de la place, on les lit pas et si on veut vraiment mettre tout ça en place, on va se plonger dans les docs officielles et pas suivre betement le livre.

    Mais quand même cool pour les premiers chapitres où il explique son approche.

    August 2, 2016 at 5:38:56 PM GMT+2 - permalink - archive.org - https://www.artofmonitoring.com/
    ebook median monitoring percentile
  • thumbnail
    bash - median of column with awk - Stack Overflow
    This awk program assumes one column of numerically sorted data:

    #/usr/bin/env awk
    {
        count[NR] = $1;
    }
    END {
        if (NR % 2) {
            print count[(NR + 1) / 2];
        } else {
            print (count[(NR / 2)] + count[(NR / 2) + 1]) / 2.0;
        }
    }

    Sample usage:

    sort -n data_file | awk -f median.awk
    August 2, 2016 at 5:33:42 PM GMT+2 * - permalink - archive.org - http://stackoverflow.com/questions/6166375/median-of-column-with-awk
    awk median
  • gh-ost: GitHub’s online schema migration tool for MySQL - GitHub Engineering
    August 2, 2016 at 2:31:04 PM GMT+2 - permalink - archive.org - http://githubengineering.com/gh-ost-github-s-online-migration-tool-for-mysql/
    db github migration mysql
  • Articles written by Jeremy Thomas

    Really like this layout to display blog posts
    and articles look like really interesting

    August 2, 2016 at 9:47:51 AM GMT+2 - permalink - archive.org - http://jgthms.com/articles.html
    design ui ux
  • Unités CSS: em, px, pt, cm, in…

    D'autres nouvelles unités rendent possible le fait de spécifier des tailles relatives à la fenêtre du lecteur, ce sont les unités vw and vh. Le vw équivaut à 1/100e de la largeur de la fenêtre et le vh équivaut à 1/100e de sa hauteur. Il y a également vmin, qui sélectionne la plus petite valeur entre vw et vh. Et vmax. (vous devinerez ce qu'elle signifie.)

    August 2, 2016 at 9:43:17 AM GMT+2 - permalink - archive.org - https://www.w3.org/Style/Examples/007/units.fr.html
    css
  • A teenage TED speaker’s mom on how she encourages her sons to innovate | TED Blog
    August 1, 2016 at 10:27:22 PM GMT+2 - permalink - archive.org - http://blog.ted.com/a-teenage-ted-speakers-mom-on-how-she-encourages-her-sons-to-innovate/?utm_campaign=social&utm_medium=referral
    parenting
  • SSH Blamer

    Encore un exemple d'utilisation de env= dans le authorized keys

    via skunnyk

    August 1, 2016 at 5:09:11 PM GMT+2 - permalink - archive.org - http://damiengustave.fr/ssh-blamer/
    blame log ssh
  • Web Design in 4 minutes
    August 1, 2016 at 5:02:58 PM GMT+2 - permalink - archive.org - http://jgthms.com/web-design-in-4-minutes/
    design
  • Graphite-API documentation — Graphite-API 1.1.3 documentation

    Pour remplacer graphite-web (django) par plus léger

    August 1, 2016 at 2:06:59 PM GMT+2 - permalink - archive.org - http://graphite-api.readthedocs.io/en/latest/
    graphite
  • 10 Modern Software Over-Engineering Mistakes

    Tellement d'accord... KISSB : Keep it simple stupid, bordel !

    August 1, 2016 at 9:36:27 AM GMT+2 - permalink - archive.org - https://medium.com/@rdsubhas/10-modern-software-engineering-mistakes-bc67fbef4fc8#.xjvpvhmk2
    engineer
  • “Serverless” is just a name. We could have called it “Jeff” — Serverless Zone
    July 31, 2016 at 4:53:14 PM GMT+2 - permalink - archive.org - https://serverless.zone/serverless-is-just-a-name-we-could-have-called-it-jeff-1958dd4c63d7#.x25smrmgh
    serverless
Links per page: 20 50 100
◄Older
page 58 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation