Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5185 links 

page 4 / 8

Liste des liens

160 results tagged outils x
How To Use SSHFS to Mount Remote File Systems Over SSH | DigitalOcean
2019-12-19 6:31 - permalink -

In many cases it can become cumbersome to transfer files to and from a droplet. Imagine a development usage scenario where you are coding apps remotely and find yourself uploading a script repeatedly to your virtual server to test. This can become quite a hassle in a very short period of time. Luckily there is a way to mount your VPS file system to your local computer so you can make changes on the fly and treat your droplet as local storage. In this article, we will show you how to do exactly that.

apple Linux outils ssh webdev windows
- https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh
Googol résiste (et ça fait du boulot) - Warrior du Dimanche
2019-12-10 11:3 - permalink -

L'ami Bronco a mis à jour Googol et ça fonctionne impecab-bien (pour une fois wink wink )!

copains moteur-de-recherche outils
- http://warriordudimanche.net/article1162/googol-resiste-et-ca-fait-du-boulot
Films pour enfants, pour quel age ?
2019-11-26 1:12 - permalink -

Ce site recense énormément de films pour enfants. Il indique pour chaque film un âge conseillé en fonction des thèmes abordés et des éventuelles scènes difficiles.

cinéma outils sites
- https://www.filmspourenfants.net/
Paged.js – Paged Media
2019-11-19 23:45 - permalink -

Outil pour imprimer des pages HTML.

css html impression javascript outils page
- https://www.pagedmedia.org/paged-js/
Estimation du temps pour un projet technique
2019-11-18 17:59 - permalink -
developpement outils wikipedia
- https://en.wikipedia.org/wiki/Program_evaluation_and_review_technique#Time
OpenVPN Admin
2019-11-13 11:56 - permalink -

Administrate its OpenVPN with a web interface (logs visualisations, users managing...) and a SQL database.

openvpn outils
- https://github.com/Chocobozzz/OpenVPN-Admin
Creating a traceroute program in PHP
2019-11-13 11:40 - permalink -

http://www.adayinthelifeof.nl/2010/07/30/creating-a-traceroute-program-in-php/


define ("SOL_IP", 0);
define ("IP_TTL", 2);    // On OSX, use '4' instead of '2'.

$dest_url = "www.google.com";   // Fill in your own URL here, or use $argv[1] to fetch from commandline.
$maximum_hops = 30;
$port = 33434;  // Standard port that traceroute programs use. Could be anything actually.

// Get IP from URL
$dest_addr = gethostbyname ($dest_url);
print "Tracerouting to destination: $dest_addr\n";

$ttl = 1;
while ($ttl < $maximum_hops) {
    // Create ICMP and UDP sockets
    $recv_socket = socket_create (AF_INET, SOCK_RAW, getprotobyname ('icmp'));
    $send_socket = socket_create (AF_INET, SOCK_DGRAM, getprotobyname ('udp'));

    // Set TTL to current lifetime
    socket_set_option ($send_socket, SOL_IP, IP_TTL, $ttl);

    // Bind receiving ICMP socket to default IP (no port needed since it's ICMP)
    socket_bind ($recv_socket, 0, 0);

    // Save the current time for roundtrip calculation
    $t1 = microtime (true);

    // Send a zero sized UDP packet towards the destination
    socket_sendto ($send_socket, "", 0, 0, $dest_addr, $port);

    // Wait for an event to occur on the socket or timeout after 5 seconds. This will take care of the
    // hanging when no data is received (packet is dropped silently for example)
    $r = array ($recv_socket);
    $w = $e = array ();
    socket_select ($r, $w, $e, 5, 0);

    // Nothing to read, which means a timeout has occurred.
    if (count ($r)) {
        // Receive data from socket (and fetch destination address from where this data was found)
        socket_recvfrom ($recv_socket, $buf, 512, 0, $recv_addr, $recv_port);

        // Calculate the roundtrip time
        $roundtrip_time = (microtime(true) - $t1) * 1000;

        // No decent address found, display a * instead
        if (empty ($recv_addr)) {
            $recv_addr = "*";
            $recv_name = "*";
        } else {
            // Otherwise, fetch the hostname for the address found
            $recv_name = gethostbyaddr ($recv_addr);
        }

        // Print statistics
        printf ("%3d   %-15s  %.3f ms  %s\n", $ttl, $recv_addr,  $roundtrip_time, $recv_name);
    } else {
        // A timeout has occurred, display a timeout
        printf ("%3d   (timeout)\n", $ttl);
    }

    // Close sockets
    socket_close ($recv_socket);
    socket_close ($send_socket);

    // Increase TTL so we can fetch the next hop
    $ttl++;

    // When we have hit our destination, stop the traceroute
    if ($recv_addr == $dest_addr) break;
}

You need to be root. This means it probably is not going to work when running it from a web-server, you have to run it from the command line:

jthijssen@tarabas:~/traceroute$ sudo php traceroute.php
Tracerouting to destination: 199.6.1.164
  1   192.168.1.1      0.004 ms  192.168.1.1
  2   *                0.005 ms  static.kpn.net
  3   (timeout)
  4   139.156.113.141  0.005 ms  nl-asd-dc2-ias-csg01-ge-3-2-0-kpn.net
  5   195.190.227.221  0.005 ms  asd2-rou-1022.nl.euroringen.net
  6   134.222.229.105  0.005 ms  asd2-rou-1001.NL.eurorings.net
  7   134.222.97.186   0.007 ms  kpn-1402.xe-0-0-0.jun1.galilei.network.bit.nl
  8   213.154.236.75   0.012 ms  213.154.236.75
  9   199.6.1.164      0.012 ms  pub3.kernel.org

This is a traceroute to www.kernel.org. I’ve removed the second hop (because that’s the IP at my place). The 3rd hop returned a timeout. Probably the station there did not return a ICMP packet back to use.

The above code can be found on github: https://github.com/jaytaph/traceroute

ip outils php
- https://stackoverflow.com/questions/12463819/php-script-to-traceroute
Yvan Masson / RemoteHelpBuilder · GitLab
2019-10-28 10:55 - permalink -

Grap - aide à distance !

Teamviewer c'est pratique, mais c'est payant et propriétaire. Grâce au travail d'Yvan Masson (informaticien en Savoie), nous avons notre propre logiciel Libre d'aide à distance !
Ce logiciel est auditable, améliorable et modifiable en suivant ce lien.

outils partage
- https://framagit.org/Yvan-Masson/RemoteHelpBuilder
Extract favorite scenes from YouTube videos
2019-10-24 13:45 - permalink -

Outils permettant de découper une vidéo postée sur Youtube

outils web youtube
- https://ytcutter.com/
Ray Ortega ✊ sur Twitter : "RSS = direct connection to a creator.Anything less = someone else controls access to your audience. Podcasts are awesome cause they are inherently 'open.' If your podcast is not accessible via RSS, you don't actually have a podcast. Or ownership."
2019-10-21 10:26 - permalink -

So true. Rendez-nous notre RSS !

Liberté outils rss vie-privée
- https://lehollandaisvolant.net/?mode=links&id=20191019191532
Le Cartable Fantastique
2019-10-2 17:35 - permalink -

Une association qui œuvre pour faciliter la vie des écoliers dys.

dys logiciel outils
- https://www.cartablefantastique.fr/
Placeit - Beer Label Maker for Pale Ale Brews
2019-09-23 13:13 - permalink -

Trop Bien ! Pour fabriquer des étiquettes.
Via Yome

impression outils étiquette
- https://placeit.net/c/design-templates/stages/beer-label-maker-for-pale-ale-brews-768?fontText_T1=Barbaro-Roman&pos-size_Main%20Graphic=0.3320_0.2393_0.3333_0.4345_d
Compare Them All | WikiMatrix
2019-06-28 16:33 - permalink -

Comparateur de wikis

outils wiki
- https://www.wikimatrix.org/
GitHub - timovn/MyWebTools - Le Hollandais Volant
2019-06-5 16:4 - permalink -

Cool. Merci

code copains outils timo tools webdev
- https://lehollandaisvolant.net/?mode=links&id=20190605095439
Utilitaires - Kulture ChroniK : tutoriels, actu, test high-tech, geek, informatique
2019-06-3 13:1 - permalink -

Utilitaires pour la gestion d'un raspberry pie.

logiciel outils Raspberry utilitaire
- https://www.kulturechronik.fr/t%C3%A9l%C3%A9charger/utilitaires/
Erase / Start-slow · GitLab
2019-03-11 18:3 - permalink -

Une page d'accueil personnalisée

Libre outils web
- https://framagit.org/Erase/Start-slow/
ICONSVG - Quick customizable SVG icons for your project
2019-03-8 1:45 - permalink -

Pour se fabriquer des icones en svg.
Via Bronco. Merci l'ami ;)

icones outils svg
- https://iconsvg.xyz/
Weboob - Web Outside of Browsers
2018-12-21 10:47 - permalink -

À télécharger !

application Linux outils python web
- http://weboob.org/
Reprenons le contrôle de nos événements ! #JoinMobiliZon
2018-12-12 22:48 - permalink -

MobiliZon est un outil destiné à créer des plateformes de gestion de communautés et d'événements. Son but est d'aider un maximum de personnes à s'émanciper des groupes et événements Facebook, de Meetup, etc.

framasoft Libre outils vie-privée
- https://joinmobilizon.org/fr/
Edit fonts - Firefox Developer Tools | MDN
2018-12-6 10:39 - permalink -

Une fonctionnalité que j'avais loupé dans l'outil de développement de Firefox.

developpement Firefox font outils polices
- https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector/How_to/Edit_fonts
page 4 / 8


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2