Skip to content

Instantly share code, notes, and snippets.

View tejastank's full-sized avatar

Tejas Tank tejastank

  • India
View GitHub Profile
@skydiablo
skydiablo / gist:1122473
Created August 3, 2011 12:04
PHP SSH2 Wrapper
<?php
class ssh2 {
const SSH_COMMAND_FINISHED_FLAG = '___SSH_COMMAND_FINISHED___';
private $host = 'localhost';
private $port = 22;
private $username = 'root';
private $password = '';
private $connectionMethods = array(
@dahnielson
dahnielson / UUID.php
Last active January 14, 2025 05:54
Pure PHP UUID generator
<?php
/**
* UUID class
*
* The following class generates VALID RFC 4122 COMPLIANT
* Universally Unique IDentifiers (UUID) version 3, 4 and 5.
*
* UUIDs generated validates using OSSP UUID Tool, and output
* for named-based UUIDs are exactly the same. This is a pure
* PHP implementation.
@zed
zed / ping.py
Created December 12, 2009 19:04
#!/usr/bin/env python
"""
A pure python ping implementation using raw socket.
Note that ICMP messages can only be sent from processes running as root.
Derived from ping.c distributed in Linux's netkit. That code is