4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 34 / 217
Newer►
  • kubernetes/kops: Kubernetes Operations (kops) - Production Grade K8s Installation, Upgrades, and Management

    via VG

    November 6, 2018 at 5:22:57 PM GMT+1 - permalink - archive.org - https://github.com/kubernetes/kops
    k8s
  • thumbnail
    shell - How to select lines between two marker patterns which may occur multiple times with awk/sed - Stack Overflow

    Use awk with a flag to trigger the print when necessary:

    $ awk '/abc/{flag=1;next}/mno/{flag=0}flag' file
    def1
    ghi1
    jkl1
    def2
    ghi2
    jkl2

    How does this work?

    /abc/ matches lines having this text, as well as /mno/ does.
    /abc/{flag=1;next} sets the flag when the text abc is found. Then, it skips the line.
    /mno/{flag=0} unsets the flag when the text mno is found.
    The final flag is a pattern with the default action, which is to print $0: if flag is equal 1 the line is printed.

    For a more detailed description and examples, together with cases when the patterns are either shown or not, see How to select lines between two patterns?.

    November 5, 2018 at 4:42:37 PM GMT+1 - permalink - archive.org - https://stackoverflow.com/questions/17988756/how-to-select-lines-between-two-marker-patterns-which-may-occur-multiple-times-w
    awk
  • dive/README.md at master · wagoodman/dive · GitHub
    October 28, 2018 at 5:05:15 PM GMT+1 - permalink - archive.org - https://github.com/wagoodman/dive/blob/master/README.md
    docker image tool
  • The Node.js Event Loop: Not So Single Threaded - YouTube
    October 27, 2018 at 6:59:13 PM GMT+2 - permalink - archive.org - https://www.youtube.com/watch?v=qV8FgRt-HJI
    nodejs thread
  • Overview of Blocking vs Non-Blocking | Node.js

    The event loop is different than models in many other languages where additional threads may be created to handle concurrent work.

    October 27, 2018 at 12:37:30 PM GMT+2 - permalink - archive.org - https://nodejs.org/en/docs/guides/blocking-vs-non-blocking/
    nodejs
  • Why Asynchronous? - NodeSource
    October 27, 2018 at 12:11:28 PM GMT+2 - permalink - archive.org - https://nodesource.com/blog/why-asynchronous
    asynchronous nodejs sync
  • netdata/netdata: Get control of your servers. Simple. Effective. Awesome! https://my-netdata.io/

    à tester sur serveurs perso

    via pierrick

    October 25, 2018 at 11:59:09 AM GMT+2 - permalink - archive.org - https://github.com/netdata/netdata
    monitoring netdata
  • FAQ | Prometheus

    pull vs push

    October 25, 2018 at 11:49:35 AM GMT+2 - permalink - archive.org - https://prometheus.io/docs/introduction/faq/#why-do-you-pull-rather-than-push?
    monitoring prometheus
  • thumbnail
    pushgateway/README.md at master · prometheus/pushgateway

    "prometheus only pull"

    On peut aussi faire du push de manière détournée

    • https://github.com/prometheus/node_exporter/blob/master/README.md#textfile-collector
    October 25, 2018 at 11:08:25 AM GMT+2 - permalink - archive.org - https://github.com/prometheus/pushgateway/blob/master/README.md
    monitoring prometheus
  • Play with Kubernetes
    October 25, 2018 at 8:53:19 AM GMT+2 - permalink - archive.org - https://labs.play-with-k8s.com/
    k8s
  • Docker Tips : access the Docker daemon via ssh – @lucjuggery – Medium

    not bad! better than unprotected socket access ;)

    October 25, 2018 at 8:50:54 AM GMT+2 - permalink - archive.org - https://medium.com/lucjuggery/docker-tips-access-the-docker-daemon-via-ssh-97cd6b44a53?mkt_tok=eyJpIjoiTmpZNE5HWXdOVFJtWkRWbCIsInQiOiI1b0Zsb1RkNk4rXC9qSWtyajFCN3RsSERRQytkSk0wRzZkQ3dRU3g0eXM0YUV3R3RWM1dpb3dqNXpYVjc4MUlNMmpcL1ZIeGdLbk1yQjZYZjNIbjczOTBLOUY4YlBsSUVQRVZwMUg5bGZnNlRHOXpTaFdhdkIydnhmTFd1V0JyRE50In0%3D
    docker remote ssh
  • thumbnail
    PyMySQL · PyPI
    September 25, 2018 at 1:49:37 PM GMT+2 - permalink - archive.org - https://pypi.org/project/PyMySQL/
    mysql python
  • awslabs/amazon-ecr-credential-helper: Automatically gets credentials for Amazon ECR on docker push/docker pull
    September 20, 2018 at 4:26:36 PM GMT+2 - permalink - archive.org - https://github.com/awslabs/amazon-ecr-credential-helper
    aws ecr
  • How to prevent splunk from merging few JSON strings into single event? - Question | Splunk Answers

    BREAK_ONLY_BEFORE=^{

    September 19, 2018 at 4:48:21 PM GMT+2 - permalink - archive.org - https://answers.splunk.com/answers/558993/how-to-prevent-splunk-from-merging-few-json-string.html
    splunk
  • How to use *args and **kwargs in Python - SaltyCrane Blog
    September 18, 2018 at 3:07:27 PM GMT+2 - permalink - archive.org - https://www.saltycrane.com/blog/2008/01/how-to-use-args-and-kwargs-in-python/
    args function kwargs python
  • Note: Python log tee

    pour ne pas bufferiser l'ouput d'un script python et avoir le résultat en direct dans un | tee -a :
    python -u script.py | tee -a mon.log

    September 13, 2018 at 4:52:12 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?F1LIUA
    python tee
  • Yes Or No? yesno.wtf — foolproof™ decision-making (api available)
    August 22, 2018 at 9:07:44 PM GMT+2 - permalink - archive.org - https://yesno.wtf/
    no yes
  • thumbnail
    synappio / free-email-domains · GitLab
    August 21, 2018 at 9:36:02 AM GMT+2 - permalink - archive.org - https://gitlab.com/synappio/free-email-domains
    domain free mail
  • thumbnail
    command line - Bash Tab Completion: '-bash: unexpected EOF while looking for matching `)' -bash: syntax error: unexpected end of file - Ask Ubuntu

    saleté de bug

    August 20, 2018 at 12:22:46 PM GMT+2 - permalink - archive.org - https://askubuntu.com/questions/571544/bash-tab-completion-bash-unexpected-eof-while-looking-for-matching-bash
    autocomplete ubuntu
  • Elasticsearch Zero Downtime Reindexing - Problems and Solutions - codecentric AG Blog

    not easy

    August 14, 2018 at 3:45:37 PM GMT+2 - permalink - archive.org - https://blog.codecentric.de/en/2014/09/elasticsearch-zero-downtime-reindexing-problems-solutions/
    downtime elasticsearch index mapping
Links per page: 20 50 100
◄Older
page 34 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation