4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 71 / 217
Newer►
  • Ruby & WebSockets: TCP for the Browser - igvita.com
    December 14, 2015 at 10:10:24 AM GMT+1 - permalink - archive.org - https://www.igvita.com/2009/12/22/ruby-websockets-tcp-for-the-browser/
    websocket
  • Getting Started with Ruby and WebSockets
    December 14, 2015 at 10:09:20 AM GMT+1 - permalink - archive.org - https://blog.engineyard.com/2013/getting-started-with-ruby-and-websockets
    ruby websocket
  • RimWorld - sci-fi colony sim

    à tester!

    December 12, 2015 at 10:56:43 AM GMT+1 - permalink - archive.org - http://rimworldgame.com/
    game
  • breaz - The best way to start your next tech challenge
    December 10, 2015 at 10:57:38 AM GMT+1 - permalink - archive.org - https://breaz.io/
    job
  • Talent.io - European companies compete for great developers
    December 10, 2015 at 10:57:30 AM GMT+1 - permalink - archive.org - https://www.talent.io/
    job
  • How to fix your Elasticsearch cluster stuck in initializing shards mode?

    Ok donc cet article m'a été vraiment utile.. à garder en cas d'autres problèmes avec ES

    for shard in $(curl -XGET http://localhost:9200/_cat/shards | grep UNASSIGNED | awk '{print $2}'); do
    curl -XPOST 'localhost:9200/_cluster/reroute' -d '{
    "commands" : [ {
    "allocate" : {
    "index" : "t37",
    "shard" : $shard,
    "node" : "datanode15",
    "allow_primary" : true
    }
    }
    ]
    }'
    sleep 5
    done

    December 10, 2015 at 10:53:07 AM GMT+1 - permalink - archive.org - https://t37.net/how-to-fix-your-elasticsearch-cluster-stuck-in-initializing-shards-mode.html
    debug elasticsearch es fix
  • Generate Mozilla Security Recommended Web Server Configuration Files

    via Doo

    December 9, 2015 at 11:34:38 AM GMT+1 - permalink - archive.org - https://mozilla.github.io/server-side-tls/ssl-config-generator/
    htts ssl
  • thumbnail
    Choosing an HTTP Status Code — Stop Making It Hard | Racksburg
    December 8, 2015 at 3:59:39 PM GMT+1 - permalink - archive.org - http://racksburg.com/choosing-an-http-status-code/
    code http
  • Monitoring Cassandra garbage collector — Medium
    December 7, 2015 at 4:35:28 PM GMT+1 - permalink - archive.org - https://medium.com/@mlowicki/monitoring-cassandra-garbage-collector-83c8a515e403#.rlt191830
    cassandra elk gc
  • Get HTTPS for free!

    letsencrypt frontend

    This website is static, so it can be saved and loaded locally. Just right-click and "Save Page As.."!
    Released under MIT license | Source code: https://github.com/diafygi/gethttpsforfree

    December 7, 2015 at 4:20:43 PM GMT+1 - permalink - archive.org - https://gethttpsforfree.com/
    le letsencrypt
  • Programing Excavation: Taking care of the Garbage in Cassandra
    December 7, 2015 at 2:59:04 PM GMT+1 - permalink - archive.org - http://progexc.blogspot.co.il/2015/12/taking-care-of-garbage-in-cassandra.html
    cassandra gc java
  • The Netflix Tech Blog: Debugging Node.js in Production
    December 4, 2015 at 4:13:07 PM GMT+1 - permalink - archive.org - http://techblog.netflix.com/2015/12/debugging-nodejs-in-production.html
    debug node nodejs
  • Memory Flame Graphs
    December 4, 2015 at 4:12:59 PM GMT+1 - permalink - archive.org - http://www.brendangregg.com/FlameGraphs/memoryflamegraphs.html
    debug graph
  • It Was Never Going to Work, So Let’s Have Some Tea sur Vimeo

    fun :)

    December 4, 2015 at 3:52:54 PM GMT+1 - permalink - archive.org - https://vimeo.com/146524997
    sys sysadmin talk video
  • SUSE/Portus

    via VG

    December 3, 2015 at 4:08:59 PM GMT+1 - permalink - archive.org - https://github.com/SUSE/Portus
    docker registry
  • Labella.js

    could be useful

    December 3, 2015 at 2:14:07 PM GMT+1 - permalink - archive.org - http://twitter.github.io/labella.js/
    js timeline
  • Check incoming update from puppet forge

    Un petit script pour check si les modules ont de nouvelles version dispo (il faut jq)

    #!/bin/bash
    
    modules=$(puppet module list|grep '\(v[0-9]\.[0-9]\.[0-9]\)')
    
    IFS=$'\n'
    for line in $modules; do
        name=$(echo $line|cut -d' ' -f2)
        version=$(echo $line|grep -o '\(v[0-9]\.[0-9]\.[0-9]\)'|sed 's/v//')
        current_version=$(curl -s https://forgeapi.puppetlabs.com/v3/modules/${name}|jq '.current_release.version'|sed 's/"//g')
        if [[ $version == $current_version ]]; then
            echo "OK $name $version $current_version"
        else
            echo "OUTDATED $name $version $current_version"
        fi  
    done
    November 30, 2015 at 4:37:25 PM GMT+1 * - permalink - archive.org - https://links.infomee.fr/?6tdMVA
    bash for forge IFS loop module puppet
  • systemd service file for kibana 4.3

    [Unit]
    Description=Kibana 4

    [Service]
    Type=simple
    User=logstash
    Environment=CONFIG_PATH=/opt/kibana/config/kibana.yml
    Environment=NODE_ENV=production
    ExecStart=/opt/kibana/node/bin/node /opt/kibana/src/cli

    [Install]
    WantedBy=multi-user.target

    November 30, 2015 at 2:56:07 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?ynURrg
    kibana systemd
  • Work with network commands

    On the isolated_nw which was user defined, the Docker network feature updated the /etc/hosts with the proper name resolution. Inside of container2 it is possible to ping container3 by name.

    November 26, 2015 at 6:01:24 PM GMT+1 - permalink - archive.org - https://docs.docker.com/engine/userguide/networking/work-with-networks/
    docker network
  • Docker container networking

    La doc évolue vite au fur et à mesure des versions.. en la relisant j'ai appris plein de nouvelles choses

    November 26, 2015 at 5:50:45 PM GMT+1 - permalink - archive.org - https://docs.docker.com/engine/userguide/networking/dockernetworks/
    docker network
Links per page: 20 50 100
◄Older
page 71 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation