Shaare your links...
418 links
Liens · Devenet Home Login RSS feed Tags cloud
◄ older
15 of 21
newer ►
  • PHP: gethostbynamel - Manual → http://www.php.net/manual/en/function.gethostbynamel.php
    Récupération liste d'adresses IP v4 à partir d'un nom de domaine.

    Voir aussi :
    > gethostbyname() - Get the IPv4 address corresponding to a given Internet host name
    > gethostbyaddr() - Get the Internet host name corresponding to a given IP address
    > checkdnsrr() - Check DNS records corresponding to a given Internet host name or IP address
    > getmxrr() - Get MX records corresponding to a given Internet host name
    Fri Nov 27 14:27:53 2015 – #permalink
    as php
  • Configurer le SSL avec Apache 2 | Apache | IT-Connect → http://www.it-connect.fr/configurer-le-ssl-avec-apache-2%EF%BB%BF/
    Fri Nov 20 00:46:52 2015 – #permalink
    apache https
  • SSL Enabling Forward Secrecy | DigiCert.com → https://www.digicert.com/ssl-support/ssl-enabling-perfect-forward-secrecy.htm#apache_forward_secrecy
    Fri Nov 20 00:46:30 2015 – #permalink
    apache https
  • Apache Disabling SSL v3 Instructions | DigiCert.com → https://www.digicert.com/ssl-support/apache-disabling-ssl-v3.htm
    Fri Nov 20 00:45:41 2015 – #permalink
    apache https
  • Chiffrement fort SSL/TLS : Mode d'emploi - Serveur Apache HTTP Version 2.4 → https://httpd.apache.org/docs/2.4/fr/ssl/ssl_howto.html
    Fri Nov 20 00:45:14 2015 – #permalink
    apache https
  • Recharger une page au bout de 2 secondes sans resoumettre un formulaire - Liens Ecyseo → http://bookmarks.ecyseo.net/?Nv-seA
    onclick="window.setTimeout('location.assign(location.href)',2000);"
    Thu Nov 19 14:03:13 2015 – #permalink
    js web
  • Mise à jour de la version 2.2 vers la version 2.4 - Serveur Apache HTTP Version 2.4 → https://httpd.apache.org/docs/2.4/upgrading.html
    Changements de la version 2.2 à 2.4 d'Apache.
    Je garde aussi ça au chaud : https://httpd.apache.org/docs/2.4/fr/vhosts/examples.html

    Pour supprimer les paquets inutiles en tant que serveur :
    apt-get remove --dry-run --auto-remove --purge libx11-.*
    Fri Oct 9 10:50:16 2015 – #permalink
    server web
  • You are welcome - 9GAG → http://9gag.com/gag/aZNzbYW
    Serviette en papier (ou tissu) qui sert de support pour les couverts :
    1. plier en 4 la serviette (si papier en général déjà fait)
    2. Rabattre le côté supérieur droit sur le côté extérieur inférieur gauche
    3. Faire la même chose deux fois de suite mais en rabattant le côté à l'intérieur du pli précédent
    4. Retourner la serviette et plier les deux côtés de manière parallèle aux bords
    5. C'est prêt
    Mon Oct 5 12:24:54 2015 – #permalink
    life
  • Quickly tying a tie - 9GAG → http://9gag.com/gag/aMQOxXP
    Comment faire un nœud de cravate rapidement
    Mon Oct 5 12:24:32 2015 – #permalink
    life
  • Preload Hints For Web Fonts - Bram Stein → http://www.bramstein.com/writing/preload-hints-for-web-fonts.html
    Préchargement des web-fonts
    Thu Sep 3 16:57:00 2015 – #permalink
    css html
  • Windows 10 super-debloating guide → http://secondclock.net/?p=28
    Commandes pour désactiver les services/applications Windows 10 non souhaités.
    Wed Aug 19 10:27:59 2015 – #permalink
    windows
  • [CSS] Note centrer une image dans un bloc → http://lehollandaisvolant.net/?mode=links&id=20150731185744
    #container {
       max-height: 100%;
    }

    #container img {
       /* Keeps image from going outside the screen */
       max-height: 100%;
       max-width: 100%;
       /* Keeps image from beeing distorted */
       height: auto;
       width: auto;
       /* centering horizontally AND vertically */
       /* 50% of container */
       position: relative;
       top: 50%;
       left: 50%;
       /* 50% of image */
       transform: translate(-50%,-50%);
    }
    Fri Jul 31 21:40:30 2015 – #permalink
    css
  • Google coupe le cordon entre Google+ et ses autres services → http://www.numerama.com/magazine/33804-google-coupe-le-cordon-entre-google-et-ses-autres-services.html
    C'est pas trop tôt !
    Tue Jul 28 10:44:41 2015 – #permalink
    google
  • How To Write Unmaintainable Code → https://thc.org/root/phun/unmaintain.html
    Comment écrire du code non maintenable !
    Thu Jul 23 10:25:50 2015 – #permalink
    code
  • Clap de fin pour le support de Windows Server 2003  - Le Monde Informatique → http://www.lemondeinformatique.fr/actualites/lire-clap-de-fin-pour-le-support-de-windows-server-2003%C3%82%C2%A0-61768.html
    Après la fin du support de XP il y a quelques temps, c'est le support de Windows Server 2003 qui est arrivé à échéance.
    Wed Jul 15 14:32:41 2015 – #permalink
    windows
  • Créer un e-mail responsive sans media queries – L'intégration d'e-mails → http://emails.hteumeuleu.fr/2015/06/creating-a-future-proof-responsive-email-without-media-queries/
    Mon Jun 22 12:14:43 2015 – #permalink
    css email html ressource
  • JavaScript Garden → https://bonsaiden.github.io/JavaScript-Garden/
    Article qui semble assez complet sur le langage JavaScript.
    Fri Jun 5 13:41:02 2015 – #permalink
    js ressource web
  • Responsive Tables in Pure CSS - LivingSocial's Technology Blog - Le Hollandais Volant → http://lehollandaisvolant.net/?id=20150528170631
    Comment transformer un tableau en un tableau responsive lisible sur des petits écrans

    @media (max-width: 500px) {

    /* table + tbody are blocks */
    #mytable, #mytable tbody {
    display: block;
    width: 100%;
    }

    /* each row becomes table */
    #mytable tr {
    display: table;
    margin-top: 20px;
    width: 100%;
    border-spacing: 5px 0;
    }

    /* each cell becomes a row (of the row that had become a table)  */
    #mytable tr td {
    display: table-row;
    width: 100%;
    }
    }
    Thu May 28 18:03:08 2015 – #permalink
    css web
  • noisy 404. → http://codepen.io/rlemon/pen/jPPLNV
    Page d'erreur 404 qui simule le bruit d'une chaîne de télévision que l'on ne reçoit pas.
    Excellent :)

    (via http://lehollandaisvolant.net/?id=20150515193151)
    Sat May 16 00:40:41 2015 – #permalink
    css html
  • Je suis développeur - Ad Virgilium → http://www.advirgilium.net/index.php?post=384
    C'est malheureusement souvent le cas.
    Sat Apr 25 18:14:10 2015 – #permalink
    code life web
◄ older
15 of 21
newer ►
Shaarli by sebsauvage
Shaarli-Theme by Nicolas based on idleman theme