4345 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 50 / 218
Newer►
  • thumbnail
    How to Setup Additional Entropy for Cloud Servers Using Haveged | DigitalOcean
    • yum install -y gcc
    • wget http://www.issihosts.com/haveged/haveged-1.9.1.tar.gz
    • tar xf haveged-1.9.1.tar.gz
    • cd haveged-1.9.1
    • make
    • ./configure
    • make
    • make install
    • /usr/local/sbin/haveged -w 1024

    To run this inside a container, you have to docker run --privileged
    You can run this on host, then map /dev/random from host inside container

    /!\ In test environment ONLY :

    Don't install anything, just map /dev/urandom from host into /dev/random container
    docker run -v /dev/urandom:/dev/random

    Test entropy : (rng-tools)
    cat /dev/random | rngtest -c 1000

    23 décembre 2016 à 11:57:52 UTC+1 - permalink - archive.org - https://www.digitalocean.com/community/tutorials/how-to-setup-additional-entropy-for-cloud-servers-using-haveged
    entropy random urandom
  • thumbnail
    Javascript only - sort a bunch of DIVs - Stack Overflow
    23 décembre 2016 à 11:15:40 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/5066925/javascript-only-sort-a-bunch-of-divs
    div js sort
  • Pull Request Merge Strategies: The Great Debate - Atlassian Developers
    22 décembre 2016 à 11:23:06 UTC+1 - permalink - archive.org - https://developer.atlassian.com/blog/2014/12/pull-request-merge-strategies-the-great-debate/
    git workflow
  • Git team workflows: merge or rebase? | Atlassian Git Tutorial

    perso je tends pour le rebase

    22 décembre 2016 à 11:22:40 UTC+1 - permalink - archive.org - https://www.atlassian.com/git/articles/git-team-workflows-merge-or-rebase/
    git workflow
  • Läckerli Huus
    21 décembre 2016 à 12:09:56 UTC+1 - permalink - archive.org - http://www.laeckerli-huus.ch/
    gateau miam suisse
  • thumbnail
    Difference between git pull --rebase and git pull --ff-only - Stack Overflow
    What will happen if I use git pull --rebase ?

    git pull --rebase is roughly equivalent to

    git fetch
    git rebase origin/master

    i.e. your remote changes (C) will be applied before the local changes (D), resulting in the following tree

    A -- B -- C -- D

    What will happen if I use git pull --ff-only ?

    It will fail.

    git pull --ff-only corresponds to

    git fetch
    git merge --ff-only origin/master

    --ff-only applies the remote changes only if they can be fast-forwarded. From the man:

    Refuse to merge and exit with a non-zero status unless the current HEAD is already up-to-date or the merge can be resolved as a fast-forward

    Since your local and remote branches have diverged, they cannot be resolved by a fast-forward and git pull --ff-only would fail.

    21 décembre 2016 à 08:45:23 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/25430600/difference-between-git-pull-rebase-and-git-pull-ff-only
    ff git merge
  • 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"
    }
    }
    }
    ]
    }

    19 décembre 2016 à 12:19:23 UTC+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
    15 décembre 2016 à 18:46:47 UTC+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
    14 décembre 2016 à 18:25:36 UTC+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.%';

    14 décembre 2016 à 10:03:40 UTC+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.
    14 décembre 2016 à 08:43:57 UTC+1 - permalink - archive.org - https://github.com/git-tips/tips
    git tip tips
  • Git - how to revert multiple recent commits
    14 décembre 2016 à 08:23:26 UTC+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
    13 décembre 2016 à 11:59:16 UTC+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)

    12 décembre 2016 à 12:59:10 UTC+1 - permalink - archive.org - https://links.infomee.fr/?3KOHAQ
    aws iam policy
  • [ANNOUNCE] haproxy-1.7.0

    woot

    11 décembre 2016 à 18:18:24 UTC+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

    9 décembre 2016 à 23:36:44 UTC+1 - permalink - archive.org - http://www.bortzmeyer.org/bcp38.html
    network rfc
  • PrivateBin

    fork zerobin

    via arnaudb

    9 décembre 2016 à 16:00:18 UTC+1 - permalink - archive.org - https://privatebin.net/
    paste pastebin
  • Fugitive.vim - resolving merge conflicts with vimdiff

    :Gdiff
    :dp

    9 décembre 2016 à 14:47:25 UTC+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

    9 décembre 2016 à 14:06:22 UTC+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

    9 décembre 2016 à 13:58:49 UTC+1 - permalink - archive.org - https://javascript30.com/
    javascript js
Links per page: 20 50 100
◄Older
page 50 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation