4339 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►
  • How to Setup AWS S3 Access from Specific IPs - Pete Cheslock

    {
    "Id": "S3PolicyId1",
    "Statement": [
    {
    "Sid": "IPDeny",
    "Effect": "Deny",
    "Principal": {
    "AWS": ""
    },
    "Action": "s3:
    ",
    "Resource": "arn:aws:s3:::my-wicked-awesome-bucket/*",
    "Condition": {
    "NotIpAddress": {
    "aws:SourceIp": "72.309.38.2/32"
    }
    }
    }
    ]
    }

    December 19, 2016 at 12:19:23 PM GMT+1 - permalink - archive.org - https://pete.wtf/2012/05/01/how-to-setup-aws-s3-access-from-specific-ips/
    aws ip s3
  • thumbnail
    Top 10+ meilleurs jeux de société et jeux d'ambiance du moment | Topito
    December 15, 2016 at 6:46:47 PM GMT+1 - permalink - archive.org - http://www.topito.com/top-meilleurs-jeux-de-societe-ambiance
    game jeu
  • 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
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