- Scott Chacon on the Interwebs(リンク切れ)
- Scott Chacon on the Interwebs
- GitHub Flow - The best way to use Git and GitHub
31 Aug 2011
- hosts: localhost | |
connection: local | |
vars: | |
role: common | |
tasks: | |
- name: create directories for ansible files. | |
file: path={{ item }} state=directory | |
with_items: | |
- group_vars | |
- host_vars |
package main | |
import ( | |
"bytes" | |
"exec" | |
"log" | |
"os" | |
) | |
// Pipeline strings together the given exec.Cmd commands in a similar fashion |
package main | |
import ( | |
"bytes" | |
"encoding/hex" | |
"flag" | |
"fmt" | |
"io" | |
"log" | |
"net" |
<?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. |
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use IO::Socket::INET; | |
use Getopt::Long; | |
my $port = 7003; | |
my $host = '127.0.0.1'; | |
my $timeout = 10; |