4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 50 / 217
Newer►
  • thumbnail
    Blanc-manger Coco - Blanc-manger Coco - Le jeu
    December 14, 2016 at 6:25:36 PM GMT+1 - permalink - archive.org - http://blancmangercoco.com/blanc-manger-coco-le-jeu-principal/
    carte game jeu
  • thumbnail
    wildcard - Grant permissions to a set of databases matching a pattern in MysQL 5.0 - Stack Overflow

    Use ` instead of ' in the database name, and escape the _

    GRANT ALL PRIVILEGES ON xian\_%.* TO xian@'192.168.1.%';

    December 14, 2016 at 10:03:40 AM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/2469119/grant-permissions-to-a-set-of-databases-matching-a-pattern-in-mysql-5-0
    mysql
  • GitHub - git-tips/tips: Most commonly used git tips and tricks.
    December 14, 2016 at 8:43:57 AM GMT+1 - permalink - archive.org - https://github.com/git-tips/tips
    git tip tips
  • Git - how to revert multiple recent commits
    December 14, 2016 at 8:23:26 AM GMT+1 - permalink - archive.org - http://serebrov.github.io/html/2014-01-04-git-revert-multiple-recent-comments.html
    git
  • thumbnail
    GitHub - jwilder/nginx-proxy: Automated nginx proxy for Docker containers using docker-gen
    December 13, 2016 at 11:59:16 AM GMT+1 - permalink - archive.org - https://github.com/jwilder/nginx-proxy
    docker nginx proxy
  • Note sur les Policy IAM

    Une policy IAM est constituée de statement, ce sont des règles (des blocs de codes)

    {
    "Statement":[{
    "Effect":"effect",
    "Action":"action",
    "Resource":"arn",
    "Condition":{
    "condition":{
    "key":"value"
    }
    }
    }
    ]
    }

    Chaque règle dans sa forme la plus simple est composée de 3 choses :

    Effect : allow ou deny

    Action : quelle action concerne la règle

    Resource : la resource concernée

    Chaque service Amazon (EC2, ECR, etc...) expose une liste d'action, on peut trouver cette liste dans la doc (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements.html#Action)

    Et chaque resource peut être identifiée par un arn (une manière simple de retrouver un ARN est d'afficher la resources dans l'interface web AWS, il y a souvent l'arn)

    December 12, 2016 at 12:59:10 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?3KOHAQ
    aws iam policy
  • [ANNOUNCE] haproxy-1.7.0

    woot

    December 11, 2016 at 6:18:24 PM GMT+1 - permalink - archive.org - http://about://reader?url=https%3A%2F%2Fwww.mail-archive.com%2Fhaproxy%40formilux.org%2Fmsg24244.html
    haproxy
  • Blog Stéphane Bortzmeyer: BCP 38, ne pas laisser des adresses IP usurpées sortir de son réseau

    J'avais eu les RFC sur ce sujet à commenter pendant le Master, souvenir ahah

    December 9, 2016 at 11:36:44 PM GMT+1 - permalink - archive.org - http://www.bortzmeyer.org/bcp38.html
    network rfc
  • PrivateBin

    fork zerobin

    via arnaudb

    December 9, 2016 at 4:00:18 PM GMT+1 - permalink - archive.org - https://privatebin.net/
    paste pastebin
  • Fugitive.vim - resolving merge conflicts with vimdiff

    :Gdiff
    :dp

    December 9, 2016 at 2:47:25 PM GMT+1 - permalink - archive.org - http://vimcasts.org/episodes/fugitive-vim-resolving-merge-conflicts-with-vimdiff/
    fugitive merge vim
  • Note: inception

    I've edited my .vimrc to add fugitive plugin and commited it by using fugitive

    December 9, 2016 at 2:06:22 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?4Ww4qQ
    git vim
  • thumbnail
    JavaScript 30 — Build 30 things with vanilla JS in 30 days with 30 tutorials

    ça a l'air bien

    via Shahor

    December 9, 2016 at 1:58:49 PM GMT+1 - permalink - archive.org - https://javascript30.com/
    javascript js
  • The Fugitive Series - a retrospective

    <3

    December 9, 2016 at 11:53:51 AM GMT+1 - permalink - archive.org - http://vimcasts.org/blog/2011/05/the-fugitive-series/
    fugitive vim
  • Note: AWS Beanstalk et cron

    On peut avoir besoin de faire tourner un ou plusieurs cron dans un environnement Beanstalk composé de X instances
    Etant donné que toute les instances sont configurées de la meme manière, si on rajoute le cron dans la config, il sera éxecuté sur toutes les instances

    Une solution serait de determiner si on est le "runnner" ou non avant de lancer le cron

    Pour que toutes les instances sachent qui est le runner, on peut imaginer un système comme celui ci :

    • on interroge l'ELB avec les API pour avoir ses backends
    • on trie cette liste de backend
    • le runner est le premier de cette liste
    • si notre ip est égale à celle du runner, on lance le cron

    ça a l'avantage de fonctionner quel que soit le nombre d'instances et ne pas stocker un état (on utilise les infos de l'ELB)

    Et si on ne veut pas faire tourner tous les crons sur le runner, on pourrait déterminer runnner1 runnner2 runner3 etc suivant l'ordre et faire tourner certains crons si on est runner1 ou bien runner2

    December 9, 2016 at 11:13:10 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?fmh_YQ
    aws beanstalk cron elb
  • Malcolm best of FR - YouTube

    Souvent mes journées au taf ressemblent à ça : je veux changer une ampoule, je finis sous la voiture

    December 9, 2016 at 11:05:47 AM GMT+1 - permalink - archive.org - https://www.youtube.com/watch?v=NgzMWmVkn_4&feature=youtu.be&t=161
    it malcolm
  • linux - Looking for files NOT owned by someone - Stack Overflow

    find . ! -user foo -print

    December 9, 2016 at 10:21:36 AM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/5927489/looking-for-files-not-owned-by-someone
    find
  • How to resolve git merge conflicts with Vim - Flaviu Simihaian's Blog - Entrepreneur and Developer

    \o/

    December 9, 2016 at 9:54:02 AM GMT+1 - permalink - archive.org - http://flaviusim.com/blog/how-to-do-a-git-merge-with-vim/
    git merge vim
  • thumbnail
    Building A Multiplayer 8 Bits Sequencer

    nice..

    December 8, 2016 at 5:54:21 PM GMT+1 - permalink - archive.org - http://marcgg.com/blog/2016/11/21/chiptune-sequencer-multiplayer/
    dev game ruby
  • Multipart Upload Overview - Amazon Simple Storage Service
    December 8, 2016 at 11:17:28 AM GMT+1 - permalink - archive.org - http://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html
    aws multipart s3
  • Detecting File Moves & Renames with Rsync | Lincoln Loop

    Une méthode pour ne pas rsync des fichiers qui ont été déplacés dans la source

    Et en commentaire une extension à la solution qui m'a l'air pas mal du tout

    I use a derivative of this method, by creating a separate hard-links directory with md5-filenames. This gets rid of any duplicate files as well. Any files in this hard links directory with link count 1 are removed. Any files in the albums tree without the same inode to be found in the hard links tree are hard-linked into the hard links tree by using an MD5 of the file. Before I rsync I update the hard links dir, so when my wife decides to make a beautiful photobook and copies and moves lots of photos around, my ADSL doesn't get swamped when backing up my local photo store.

    The same script also generates JPG files from Nikon image files (NEF).

    This works both on FreeBSD/Linux/UNIX/etc as well as NTFS. Which is nice.

    December 8, 2016 at 8:46:34 AM GMT+1 - permalink - archive.org - https://lincolnloop.com/blog/detecting-file-moves-renames-rsync/
    rsync
Links per page: 20 50 100
◄Older
page 50 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation