4362 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 42 / 219
Newer►
  • thumbnail
    GitHub - abutaha/aws-es-proxy: aws-es-proxy is a small web server application sitting between your HTTP client (browser, curl, etc...) and Amazon Elasticsearch service.

    Amazon Elasticsearch access control may be based on IAM account with signed request mechanism
    One way not to rewrite all applications is using such a proxy

    September 5, 2017 at 5:35:53 PM GMT+2 * - permalink - archive.org - https://github.com/abutaha/aws-es-proxy
    es elasticsearch aws
  • thumbnail
    How to Configure Symfony to Work behind a Load Balancer or a Reverse Proxy (current)
    August 30, 2017 at 11:23:47 AM GMT+2 - permalink - archive.org - http://symfony.com/doc/current/request/load_balancer_reverse_proxy.html
    symfony lb proxy header
  • How-to Debug a Running Docker Container from a Separate Container – Medium
    August 25, 2017 at 1:35:42 PM GMT+2 - permalink - archive.org - https://medium.com/@rothgar/how-to-debug-a-running-docker-container-from-a-separate-container-983f11740dc6
    docker debug
  • Passbolt | Open source password manager for teams
    August 25, 2017 at 8:52:38 AM GMT+2 - permalink - archive.org - https://www.passbolt.com/
    password manager
  • Formation VueJS 2 | Grafikart.fr

    Une bonne intro en Fr et en vidéo de VueJS

    August 24, 2017 at 2:19:13 PM GMT+2 - permalink - archive.org - https://www.grafikart.fr/formations/vuejs
    vuejs js
  • thumbnail
    How to Set external Parameters in the Service Container (2.7)
    August 23, 2017 at 11:03:46 AM GMT+2 - permalink - archive.org - https://symfony.com/doc/2.7/configuration/external_parameters.html
    symfony env
  • thumbnail
    HTML: Simple Maintenance Page · GitHub

    <!doctype html>
    <title>Site Maintenance</title>
    <style>
    body { text-align: center; padding: 150px; }
    h1 { font-size: 50px; }
    body { font: 20px Helvetica, sans-serif; color: #333; }
    article { display: block; text-align: left; width: 650px; margin: 0 auto; }
    a { color: #dc8100; text-decoration: none; }
    a:hover { color: #333; text-decoration: none; }
    </style>

    <article>
    <h1>We’ll be back soon!</h1>
    <div>
    <p>Sorry for the inconvenience but we’re performing some maintenance at the moment. If you need to you can always <a href="mailto:#">contact us</a>, otherwise we’ll be back online shortly!</p>
    <p>— The Team</p>
    </div>
    </article>

    August 23, 2017 at 10:19:43 AM GMT+2 - permalink - archive.org - https://gist.github.com/pitch-gist/2999707
    maintenance page
  • thumbnail
    WINDOWS93
    August 21, 2017 at 4:07:34 PM GMT+2 - permalink - archive.org - http://www.windows93.net/
    joke
  • thumbnail
    linux - tmux: hangs and do not load, and do not respond to any option command - Stack Overflow

    Parfois, après avoir été déco, il arrive que mon tmux 'freeze' : je peux attach, detach, mais je ne peux rien faire dans les window

    Apparement cela vient de mon client qui s'est mal détaché. Pour régler le problème :

    tmux list-clients
    tmux detach-client

    August 21, 2017 at 11:11:36 AM GMT+2 - permalink - archive.org - https://stackoverflow.com/questions/7408068/tmux-hangs-and-do-not-load-and-do-not-respond-to-any-option-command
    tmux bug
  • Afraid of Makefiles? Don't be! | Matthias Endler
    August 20, 2017 at 10:43:36 AM GMT+2 - permalink - archive.org - https://matthias-endler.de/2017/makefiles/
    make makefile
  • thumbnail
    How to Set external Parameters in the Service Container (2.7)

    En gros pour dockeriser une app symfony pre 3.2 (ET 2.7 minimum) :

    • il faut utiliser des env var speciales : SYMFONY__*
    • faire en sorte que apache les passent en contexte à l'application (PassEnv)
    • Bien sur il faut que tout ça soit dynamique... (entrypoint, sed conf apache..)

    sed -i "s/PLACEHOLDER/PassEnv $(env|grep -Po 'SYMFONY__[^=]+'| paste -s -d' ')/" test.file

    A partir de symfony 3.2 c'est beaucoup plus facile car les variables d'environnements sont directement accessibles dans les fichiers de configuration

    August 18, 2017 at 5:33:48 PM GMT+2 * - permalink - archive.org - http://symfony.com/doc/2.7/configuration/external_parameters.html
    docker php symfony
  • thumbnail
    http://fakeupdate.net/
    August 18, 2017 at 3:34:44 PM GMT+2 - permalink - archive.org - http://fakeupdate.net/
    joke
  • thumbnail
    phpredis/cluster.markdown at develop · phpredis/phpredis · GitHub

    redis cluster php session handler

    August 18, 2017 at 2:06:35 PM GMT+2 - permalink - archive.org - https://github.com/phpredis/phpredis/blob/develop/cluster.markdown#session-handler
    php redis cluster
  • Note: List item in dynamo db table

    aws dynamodb scan --table-name foo

    August 18, 2017 at 11:10:05 AM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/AqSZDA
    aws dynamodb
  • Note: Delete dynamo db item in cmdline

    aws dynamodb delete-item --table-name foo --key "{\"id\":{\"S\":\"$id\"}}"

    August 18, 2017 at 11:08:55 AM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/bx3KXg
    aws dynamodb
  • thumbnail
    plexinc/pms-docker: Plex Media Server Docker repo, for all your PMS docker needs.
    July 25, 2017 at 3:26:27 PM GMT+2 - permalink - archive.org - https://github.com/plexinc/pms-docker
    plex streaming
  • upload-server-certificate — AWS CLI 1.11.124 Command Reference

    --path

    July 25, 2017 at 11:07:06 AM GMT+2 - permalink - archive.org - http://docs.aws.amazon.com/cli/latest/reference/iam/upload-server-certificate.html
    aws iam ssl
  • SET – Redis

    Un lock simple avec un seul redis master :

    SET lock_name random_value NX EX 250

    NX : crée seulement si existe
    EX : timeout en seconde

    Retirer le lock seulement en donnant la valeur de creation du lock

    Dans le cas de plusieurs serveurs redis pas du tout synchronisés, c'est plus compliqué (distributed lock) --> https://redis.io/topics/distlock

    M'enfin c'est quand meme plus simple d'utiliser une queue (RMQ, SQS..) quand on peut

    July 17, 2017 at 3:12:40 PM GMT+2 * - permalink - archive.org - https://redis.io/commands/set
    redis lock
  • thumbnail
    Is Ruby Too Slow For Web-Scale?
    July 14, 2017 at 8:56:00 AM GMT+2 - permalink - archive.org - https://www.speedshop.co/2017/07/11/is-ruby-too-slow-for-web-scale.html
    ruby rails perf scale
  • thumbnail
    SQS — Boto 3 Docs 1.4.4 documentation

    On peut "remettre" ou plutot rendre disponible de nouveau un message SQS en changeant sa visibility timeout à 0

    July 12, 2017 at 11:37:59 AM GMT+2 - permalink - archive.org - http://boto3.readthedocs.io/en/latest/reference/services/sqs.html#SQS.Client.change_message_visibility
    aws sqs
Links per page: 20 50 100
◄Older
page 42 / 219
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation