4360 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
23 results tagged http x
  • thumbnail
    GitHub - reorx/httpstat: curl statistics made simple
    December 8, 2019 at 10:49:17 AM GMT+1 - permalink - archive.org - https://github.com/reorx/httpstat
    http curl stat
  • thumbnail
    GitHub - wg/wrk: Modern HTTP benchmarking tool

    Du benchmark simple avec :

    • scripts lua pour faire des choses plus avancées
    • la possibilité de jouer le bench pendant x minutes (ce qu'il me fallait et qu'ab n'avait pas)
    November 28, 2019 at 10:32:21 AM GMT+1 - permalink - archive.org - https://github.com/wg/wrk
    benchmark http
  • thumbnail
    Prometheus adds default http port to the Host header when querying targets. · Issue #2226 · prometheus/prometheus

    prometheus uses header host with value = $host:$port ...

    March 24, 2019 at 6:01:13 PM GMT+1 - permalink - archive.org - https://github.com/prometheus/prometheus/issues/2226
    prometheus http scrape
  • Note: python SimpleHTTPServer

    python -m SimpleHTTPServer 8000

    python -m http.server 8000

    November 28, 2017 at 11:56:32 AM GMT+1 * - permalink - archive.org - https://links.infomee.fr/shaare/rAuVpg
    python http
  • thumbnail
    tsenart/vegeta: HTTP load testing tool and library. It's over 9000!

    via jesaisplusqui

    May 31, 2017 at 4:43:34 PM GMT+2 - permalink - archive.org - https://github.com/tsenart/vegeta
    bench http load
  • Utiliser la balise meta viewport pour contrôler la mise en page sur les navigateurs mobiles - Mozilla | MDN

    <meta name="viewport" content="width=device-width, user-scalable=no">

    May 29, 2017 at 11:49:53 AM GMT+2 - permalink - archive.org - https://developer.mozilla.org/fr/docs/Mozilla/Mobile/Balise_meta_viewport
    mobile web meta http
  • 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/
    http code
  • thumbnail
    http2/h2i at master · bradfitz/http2
    October 16, 2015 at 2:52:05 PM GMT+2 - permalink - archive.org - https://github.com/bradfitz/http2/tree/master/h2i
    http http2
  • httpbin(1): HTTP Client Testing Service

    Peut etre utile

    • https://github.com/vcr/vcr
    • https://github.com/kevin1024/vcrpy
    June 12, 2015 at 5:28:19 PM GMT+2 - permalink - archive.org - http://httpbin.org/
    http test service api
  • thumbnail
    Hubot

    Bien! Le hubot peut écouter en http, on peut donc intéragir assez simplement avec lui depuis un autre programme avec curl par exemple :)

    https://github.com/github/hubot/blob/master/docs/scripting.md#http-listener
    https://github.com/nandub/hubot-irc
    https://gist.github.com/oremj/3702073

    August 5, 2014 at 11:55:42 AM GMT+2 - permalink - archive.org - https://github.com/github/hubot/tree/master/docs
    hubot irc http bot
  • Apache force https

    Petit pense bête :

    <VirtualHost :80>
    RewriteEngine on
    RewriteCond %{HTTPS} off
    RewriteRule (.
    ) https://%{HTTP_HOST}%{REQUEST_URI}
    </VirtualHost>

    ou

    <VirtualHost *:80>
    ServerName mon.domaine.fr
    Redirect / https://mon.domainefr/
    </VirtualHost>

    July 1, 2014 at 12:12:40 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/UgoQhQ
    apache https http
  • Comment fonctionne HTTP ? | Sam & Max: Python, Django, Git et du cul

    http en mode explain me like i'm 5
    très bon article !

    June 20, 2014 at 4:12:00 PM GMT+2 - permalink - archive.org - http://sametmax.com/comment-fonctionne-http/
    http
  • Module ngx_http_core_module

    Petite chose à savoir côté conf nginx : chaque header appartenant à la requête est disponible sous la forme d'une variable portant le nom : $http_name

    avec "name" = le nom du header en remplaçant les "-" par des "_" et le tout en minuscule, ouf.

    Exemple : X-Header-De-la-mort devient : $http_x_header_de_la_mort

    Utile pour introduire de la logique conditionnelle sur ces headers :)

    June 19, 2014 at 11:13:08 AM GMT+2 - permalink - archive.org - http://nginx.org/en/docs/http/ngx_http_core_module.html
    nginx header http
  • thumbnail
    github.com/buger/gor

    Un outil de capture de trafic HTTP qui peut le rejouer en direct ou bien le dumper dans un fichier pour le rejouer plus tard.

    April 9, 2014 at 11:34:55 AM GMT+2 - permalink - archive.org - https://github.com/buger/gor
    http dump sys capture trafic
  • thumbnail
    Why we don't use a CDN: A story about SPDY and SSL

    Bon article sur quelques subtilités ssl

    via Skunnyk

    February 21, 2014 at 9:52:11 AM GMT+1 - permalink - archive.org - https://thethemefoundry.com/blog/why-we-dont-use-a-cdn-spdy-ssl/
    nginx ssl https http bench
  • thumbnail
    Analyse du load de page

    http://www.webpagetest.org/

    Sympa la découpe : DNS Lookup / Initial Connection (RTT) / SSL nego / TTFB

    February 21, 2014 at 9:50:49 AM GMT+1 - permalink - archive.org - http://infomee.fr/vrac/waterfall.png
    tools analyse http https graph
  • thumbnail
    github.com/nemasu/asmttpd

    :o

    February 3, 2014 at 1:01:52 PM GMT+1 - permalink - archive.org - https://github.com/nemasu/asmttpd
    http server assembleur
  • JoeBlog Siege Home

    iege is an http load testing and benchmarking utility. It was designed to let web developers measure their code under duress, to see how it will stand up to load on the internet. Siege supports basic authentication, cookies, HTTP and HTTPS protocols. It lets its user hit a web server with a configurable number of simulated web browsers. Those browsers place the server “under siege.”

    via arnaudb

    January 29, 2014 at 2:09:17 PM GMT+1 - permalink - archive.org - http://www.joedog.org/siege-home/
    siege qa bench http load test
  • thumbnail
    Blog Stéphane Bortzmeyer: Utiliser l'Autorité de Certification CAcert
    November 15, 2012 at 5:51:40 PM GMT+1 - permalink - archive.org - http://www.bortzmeyer.org/cacert.html
    https ssl http
  • thumbnail
    Fiddler : Monitorer le traffic HTTP | malekal's site
    September 8, 2011 at 9:54:12 PM GMT+2 - permalink - archive.org - http://www.malekal.com/2011/03/04/fiddler-monitorer-le-traffic-http/
    monitoring http
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation