I hereby claim:
- I am hongster on github.
- I am hongster (https://keybase.io/hongster) on keybase.
- I have a public key whose fingerprint is DAD6 71CB E980 8801 48B7 20C8 7C1C E5E3 11EC E1DC
To claim this, I am signing this object:
#!/usr/bin/env php | |
<?php | |
/** | |
* Get SHA5 digest for remote SSL cert | |
* | |
* @param string $host Domain or IP address | |
* @param int $port Port number, default 443. | |
* @return string Hexadecimal in lowercase | |
*/ | |
function getSHA256Digest($host, $port = 443) { |
[ODBC Data Sources] | |
NZSQL = NetezzaSQL | |
[NZSQL] | |
;Path of a driver used for database connection | |
Driver = NetezzaSQL | |
;A decription used to identify the database connection properties. | |
Description = NetezzaSQL ODBC |
#!/usr/local/bin/python | |
from bs4 import BeautifulSoup | |
import urllib2 | |
import re | |
import sys | |
import codecs | |
def process_folder(folder_url): | |
page = urllib2.urlopen(folder_url) |
#!/usr/bin/env php | |
<?php | |
/* This script is designed to delete logs files if it exceeds a defined size limit. | |
* Size limit is applied to all log files, instead of individual file. | |
* The logs are sorted by filename in reversed alphabetical order. | |
* Each file's size is counted and sum with previous file. If size limit is exceeded, | |
* subsequent files are deleted. | |
*/ | |
const MB = 1024 * 1024; |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
""" | |
Exercise in generate Primitive Pythagorean Triples using Euclid's formula. | |
Ref: http://bit.ly/1MOK3kY | |
""" | |
import fractions | |
import math | |
def pythagorean_triple(s, t): |
package main | |
import ( | |
"fmt" | |
"runtime" | |
) | |
func main() { | |
// https://golang.org/pkg/runtime/#MemStats | |
var memStats runtime.MemStats |
package main | |
import ( | |
"fmt" | |
"net" | |
"time" | |
"bufio" | |
) | |
func handleConnection(conn net.Conn) { |
<?xml version="1.0" encoding="utf-8"?> | |
<service> | |
<short>RabbitMQ Management Console</short> | |
<description>Web interface for managing RabbitMQ</description> | |
<port protocol="tcp" port="15672"/> | |
</service> |
<?xml version="1.0" encoding="utf-8"?> | |
<service> | |
<short>RabbitMQ Server</short> | |
<description>Robust messaging for applications</description> | |
<port protocol="tcp" port="5671"/> | |
<port protocol="tcp" port="5672"/> | |
</service> |