4137 links
741 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
◄Older
page 79 / 170
Newer►
  • thumbnail
    ProxySQL
    October 10, 2016 10:20:04 AM GMT+02:00 * - permalink -
    QRCode
    - http://proxysql.com/
    loadbalancing sql mysql
  • Python Apprendre programmation Django Raspberry Pi - Cours tutoriels Tuto documentation française- langage de programmation orienté objet poo

    via http://sebsauvage.net/links/?X4IETA

    y'a une doc sur django dedans

    October 10, 2016 10:01:10 AM GMT+02:00 * - permalink -
    QRCode
    - http://apprendre-python.com/
    python django
  • thumbnail
    Storage | Prometheus

    Settings for high numbers of time series

    Prometheus can handle millions of time series. However, you have to adjust the storage settings to handle much more than 100,000 active time series. Essentially, you want to allow a certain number of chunks for each time series to be kept in RAM. The default value for the storage.local.memory-chunks flag (discussed above) is 1048576. Up to about 300,000 series, you still have three chunks available per series on average. For more series, you should increase the storage.local.memory-chunks value. Three times the number of series is a good first approximation. But keep the implication for memory usage (see above) in mind.

    If you have more active time series than configured memory chunks, Prometheus will inevitably run into a situation where it has to keep more chunks in memory than configured. If the number of chunks goes more than 10% above the configured limit, Prometheus will throttle ingestion of more samples (by skipping scrapes and rule evaluations) until the configured value is exceeded by less than 5%. Throttled ingestion is really bad for various reasons. You really do not want to be in that situation.

    October 7, 2016 05:44:35 PM GMT+02:00 * - permalink -
    QRCode
    - https://prometheus.io/docs/operating/storage/
    prometheus
  • thumbnail
    appbaseio/mirage: 🔎 GUI for writing Elasticsearch queries
    October 7, 2016 02:40:29 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/appbaseio/mirage
    elasticsearch elasticsarch
  • Get the Code | OpenBTS
    October 7, 2016 01:27:06 PM GMT+02:00 * - permalink -
    QRCode
    - http://openbts.org/get-the-code/
    4g 3g lte hack
  • thumbnail
    openLTE download | SourceForge.net
    October 7, 2016 01:26:50 PM GMT+02:00 * - permalink -
    QRCode
    - https://sourceforge.net/projects/openlte/
    4g 3g lte hack
  • Products | Nuand -
    October 7, 2016 01:26:19 PM GMT+02:00 * - permalink -
    QRCode
    - https://www.nuand.com/blog/shop/
    4g 3g lte hack
  • How to Save the Princess in 8 Programming Languages [Comic]

    lel le lisp, c'est tellement ça :D

    October 7, 2016 10:54:45 AM GMT+02:00 * - permalink -
    QRCode
    - https://www.geeksaresexy.net/2016/10/06/save-princess-8-programming-languages-comic/
    lol comic
  • thumbnail
    paradoxxxzero/gnome-shell-system-monitor-applet: Display system informations in gnome shell status bar, such as memory usage, cpu usage, network rates…

    my bad c'est celle-ci que j'utilise, l'autre pue la merde

    October 7, 2016 10:06:49 AM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet
    gnome-shell
  • System Monitor - GNOME Shell Extensions

    Bon en fait c'est la seule qui manquait à mon screenshot précédent :D

    October 7, 2016 10:02:48 AM GMT+02:00 * - permalink -
    QRCode
    - https://extensions.gnome.org/extension/1064/system-monitor/
    gnome-shell
  • thumbnail
    La liste de mes extensions atm (part 1)

    October 7, 2016 10:01:49 AM GMT+02:00 * - permalink -
    QRCode
    - https://dooby.fr/s/zpV3xMMJZXft6NyzfY33lTk63.png
    gnome-shell
  • Dynamic Top Bar - GNOME Shell Extensions

    et op une nouvelle extension à mon gnome shell, je surkiffe ce WM depuis sa sortie, les devs qui le conçoivent le rendent meilleur à chaque itération, bref : je suis fan

    October 7, 2016 10:00:14 AM GMT+02:00 * - permalink -
    QRCode
    - https://extensions.gnome.org/extension/885/dynamic-top-bar/
    gnome-shell
  • thumbnail
    uProxy: personal browser proxy for Firefox and Chrome - gHacks Tech News
    October 6, 2016 12:48:58 PM GMT+02:00 * - permalink -
    QRCode
    - http://www.ghacks.net/2016/10/06/uproxy-personal-browser-proxy-firefox-chrome/
    proxy
  • Generating fantasy maps

    extra fun

    October 5, 2016 09:58:07 AM GMT+02:00 * - permalink -
    QRCode
    - http://mewo2.com/notes/terrain/
    lol cartes maps fantasy
  • Windows Crypto Ransomware in Go: Ransomware
    October 5, 2016 09:56:10 AM GMT+02:00 * - permalink -
    QRCode
    - https://n0where.net/windows-crypto-ransomware-in-go-ransomware/
    ransomware malware
  • OpenVPN sur le port 443 partagé avec un serveur web | memo-linux.com

    via https://ecirtam.net/links/?mVxTUA

    Partager le port 443 entre OpenVPN et un serveur web
    
    Éditer le fichier de configuration du serveur, exemple un OpenVPN sous Yunohost :
    nano /etc/openvpn/yunohost.conf
    Modifier le protocole UDP part TCP :
    proto tcp
    Indiquer le port :
    port 443
    Ajouter la directive port-share :
    port-share 127.0.0.1 1443
    Éditer le fichier de configuration du client VPN (toujours dans le cas de Yunohost) :
    nano var/www/openvpn/domaine.tld.ovpn 
    Changer le port d’écoute :
    remote domaine.tld 443
    Changer le port d’écoute pour le serveur web :
    Nginx :
    sed -i -e "s/443/1443/g" /etc/nginx/conf.d/*.conf
    Apache2 :
    sed -i -e "s/443/1443/g" /etc/apache2/ports.conf
    Relancer les services :
    Serveur web Nginx :
    systemctl restart nginx
    Serveur web Apache2 :
    systemctl restart apache2
    Serveur OpenVPN :
    systemctl restart openvpn
    ou pour Yunohost :
    systemctl restart openvpn@yunohost.service
    Test de connexion du serveur OpenVPN et du serveur web sur le port 443
    
    Test du serveur OpenVPN :
    sudo openvpn domaine.tld.ovpn
    October 5, 2016 09:51:29 AM GMT+02:00 * - permalink -
    QRCode
    - https://memo-linux.com/openvpn-sur-le-port-443-partage-avec-un-serveur-web/
    openvpn https
  • thumbnail
    Explorer la comète de Rosetta - L'image d'astronomie du jour - APOD
    October 4, 2016 10:07:10 AM GMT+02:00 * - permalink -
    QRCode
    - http://www.cidehom.com/apod.php?_date=161003
    comète
  • thumbnail
    profilehooks/README.rst at master · mgedmin/profilehooks
    October 3, 2016 02:25:07 PM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/mgedmin/profilehooks/blob/master/README.rst
    python profiling
  • Free Open Source Self Hosted VirusTotal: Malice
    October 3, 2016 11:45:04 AM GMT+02:00 * - permalink -
    QRCode
    - https://n0where.net/free-open-source-self-hosted-virustotal-malice/
    virus
  • thumbnail
    Optimiser Linux pour améliorer la vitesse et l'autonomie

    encore une fois, un gars qui pense que linux == ubuntu

    sinon tu bride ton cpu et tu passe ton temps à autre chose

    October 3, 2016 11:44:11 AM GMT+02:00 * - permalink -
    QRCode
    - https://www.security-helpzone.com/rendre-linux-ecologique-gren-it-news-335.html
    cpu perf
Links per page: 20 50 100
◄Older
page 79 / 170
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation