4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 51 / 217
Newer►
  • thumbnail
    aws.png

    Bientôt 3 mois que j'ai commencé avec AWS

    En vert ce avec quoi j'ai pu bien jouer
    En orange survolé
    Et tout le reste

    Ce qui me plait le plus : tout est automatisable soit avec des appels à l'api (SDK dans beaucoup de langage) donc en mode séquentiel, soit avec CloudFormation, une sorte de Configuration Management donc en mode declaratif

    rdv dans 3 mois ;)

    7 décembre 2016 à 11:48:00 UTC+1 - permalink - archive.org - https://infomee.fr/vrac/aws.png
    aws
  • thumbnail
    Solutions Architect—Associate Certification for AWS

    online resources to prepare aws certifications

    7 décembre 2016 à 10:35:03 UTC+1 - permalink - archive.org - https://cloudacademy.com/learning-paths/solutions-architect-associate-aws-14/
    aws certification courses
  • BigGraphite Announcement · criteo/biggraphite Wiki · GitHub

    Via Skunnyk

    6 décembre 2016 à 20:34:42 UTC+1 - permalink - archive.org - https://github.com/criteo/biggraphite/wiki/BigGraphite-Announcement
    graphite
  • thumbnail
    OpenVPN-install/README.md at master · Angristan/OpenVPN-install · GitHub

    Via arnaudb

    5 décembre 2016 à 13:20:24 UTC+1 - permalink - archive.org - https://github.com/Angristan/OpenVPN-install/blob/master/README.md
    openvpn vpn
  • GitHub - utkarshcmu/wizzy: Manage Grafana entities with easy wizzy

    wow une cli pour editer les dashboards grafana.. ça peut servir par exemple pour dupliquer des variables de template d'un dashboard à X autres

    4 décembre 2016 à 12:05:30 UTC+1 - permalink - archive.org - https://github.com/utkarshcmu/wizzy#local-commands
    cli grafana
  • selenium-webdriver | RubyGems.org | your community gem host

    https://github.com/mozilla/geckodriver/releases

    30 novembre 2016 à 11:11:57 UTC+1 - permalink - archive.org - https://rubygems.org/gems/selenium-webdriver
    auto selenium test
  • Note: git memo

    Voir fichier à un commit :
    git show HASH:path/to/file

    Hash du commit initial :
    git rev-list --max-parents=0 HEAD

    Voir liste fichiers modifiés entre 2 commits :
    git diff --name-only SHA1 SHA2
    git log --name-status --oneline HEAD~6..HEAD
    git log --name-status --oneline HEAD~6..HEAD |grep -vP '^\S[^\s]'|sort|uniq

    Voir modif sur un fichier entre 2 commits :
    git diff SHA1 SHA2 main.c

    Trouver l'ancetre commun le plus vieux
    git config --global alias.oldest-ancestor '!bash -c '\''diff -u <(git rev-list --first-parent "${1:-master}") <(git rev-list --first-parent "${2:-HEAD}") | sed -ne "s/^ //p" | head -1'\'' -'
    git oldest-ancestor

    git rebase -i [HASH parent]

    man -7 gitrevisions

    HEAD
    HEAD~1 HEAD^ HEAD^1
    HEAD~2 HEAD^2 HEAD~1^
    HEAD~3

    10:10 V /tmp/git_test [master L|V]
    $ git lola

    • 52f73ef (HEAD -> refs/heads/master) Merge branch 'toto'
      |\
      | * 2f39200 (refs/heads/toto) commit on toto
    • | d581320 Commit on master
      |/
    • eae368a first commit
      10:10 V /tmp/git_test [master L|V]
      $ git log --name-status --oneline eae368a..52f73ef
      52f73ef Merge branch 'toto'
      d581320 Commit on master
      A tata
      2f39200 commit on toto
      A b
    28 novembre 2016 à 14:28:55 UTC+1 * - permalink - archive.org - https://links.infomee.fr/?wo2tCA
    git memo
  • Identifont - Fonts by Similarity
    27 novembre 2016 à 19:19:04 UTC+1 - permalink - archive.org - http://www.identifont.com/similar.html
    font
  • J'ai sauté une tranche

    je le garde sous le coude pour les personnes qui ne comprennent pas bien, article très bien fait

    25 novembre 2016 à 12:22:15 UTC+1 - permalink - archive.org - http://images.math.cnrs.fr/J-ai-saute-une-tranche.html?lang=fr
    impot
  • git: revision magic like a boss (Example) || Coderwall
    HEAD^ is the revision before the current
    HEAD~2 is the same as HEAD^^ and the revision before HEAD^
    24 novembre 2016 à 15:55:17 UTC+1 - permalink - archive.org - https://coderwall.com/p/wjlqvw/git-revision-magic-like-a-boss
    git
  • shenker-tue.pdf

    Don Norman

    What Was His Point?
    •
    The ability to
    master complexity
    is not the same as
    the ability to
    extract simplicity
    •
    When first getting systems to work
    ...
    .

    Focus on mastering complexity
    •
    When making system easy to use and understand

    Focus on extracting simplicity
    •
    You will never succeed in extracting simplicity

    If don’t recognize it is different from mastering complexity

    24 novembre 2016 à 12:00:46 UTC+1 - permalink - archive.org - http://opennetsummit.org/archives/oct11/shenker-tue.pdf
    complexity engineering sdn simplicity
  • Note: List all branch (sort by date)

    git branch -a --sort=-committerdate

    24 novembre 2016 à 10:59:10 UTC+1 - permalink - archive.org - https://links.infomee.fr/?zqUo2Q
    branch git
  • thumbnail
    How to delete a Git branch both locally and remotely? - Stack Overflow

    git push origin --delete <branch_name>

    24 novembre 2016 à 09:12:16 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/2003505/how-to-delete-a-git-branch-both-locally-and-remotely
    branch delete git remote
  • thumbnail
    Edit a file in-place in vim - Stack Overflow

    Comment perdre 30 min

    :set backupcopy=yes

    When you want to modify a file, you have two options, each with its benefits and drawbacks.

    You can overwrite the file in place. This does not use any extra space, and conserves the hard links, permissions and any other attribute beyond the content of the existing file. The major drawback of doing this is that if anything happens while the file is being written (the application crashes, or the power goes out), you end up with a partially written file.
    You can write the new version of the file to a new file with a different name, then move it into place. This uses more space and breaks hard links, and if you have write permissions on a file but not on the directory it contains, you can't do it at all. On the flip side, the old version of the file is atomically replaced by the new version, so at every point in time the file name points to a valid, complete version of the file.

    http://vimdoc.sourceforge.net/htmldoc/options.html#%27backup%27

    23 novembre 2016 à 15:24:04 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/11043534/edit-a-file-in-place-in-vim
    docker file mount vim
  • thumbnail
    Sort lines | Vim Tips Wiki | Fandom powered by Wikia

    vim <3

    :sort u

    21 novembre 2016 à 17:35:31 UTC+1 - permalink - archive.org - http://vim.wikia.com/wiki/Sort_lines
    sort vim
  • thumbnail
    A Rubyist's Guide to Big-O Notation

    Big-O illustré en ruby

    17 novembre 2016 à 22:51:47 UTC+1 - permalink - archive.org - http://blog.honeybadger.io/a-rubyist-s-guide-to-big-o-notation/
    algo bigo dev ruby
  • thumbnail
    How to convert 2 horizontal panes to vertical panes in tmux? - Super User

    C-a space
    to cycle trough available layouts

    17 novembre 2016 à 08:17:55 UTC+1 - permalink - archive.org - http://superuser.com/questions/493048/how-to-convert-2-horizontal-panes-to-vertical-panes-in-tmux
    tmux
  • Ce que m'a apporté mon défi de lire 52 livres en 52 semaines, le bilan 7 ans après

    Je l'aime bien cet olivier, j'ai découvert son blog au tout début, j'étais en BTS donc 2009, j'ai commencé avec le bouquin la semaine de 4h et j'ai en lu une dizaine suggéré. J'aime bien alterner les lecture fiction et non fiction, ça change un peu et on apprends des choses même si c'est souvent du bon sens, on découvre d'autres manières de voir les choses

    16 novembre 2016 à 20:58:34 UTC+1 - permalink - archive.org - http://www.des-livres-pour-changer-de-vie.fr/ce-que-ma-apporte-mon-defi-de-lire-52-livres-en-52-semaines-le-bilan-7-ans-apres/
    book livre
  • [Linux] Petite astuce pour une tâche de fond - Liens en vrac de sebsauvage

    nice! (ahah)

    16 novembre 2016 à 20:27:38 UTC+1 - permalink - archive.org - http://sebsauvage.net/links/?PfISxw
    background linux nice
  • Fugitive.vim - working with the git index

    je découvre ce plugin vim qui a l'air juste magique pour interagir avec git

    16 novembre 2016 à 14:22:37 UTC+1 - permalink - archive.org - http://vimcasts.org/episodes/fugitive-vim-working-with-the-git-index/
    git plugin vim
Links per page: 20 50 100
◄Older
page 51 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation