Skip to content

Instantly share code, notes, and snippets.

@rickvip
rickvip / github.css
Created October 28, 2015 09:21 — forked from theconektd/github.css
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@rickvip
rickvip / ping.py
Created October 23, 2015 06:58 — forked from pklaus/ping.py
A pure python ping implementation using raw socket.
#!/usr/bin/env python2
"""
Other Repositories of python-ping
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* https://github.com/l4m3rx/python-ping supports Python2 and Python3
* https://bitbucket.org/delroth/python-ping
@rickvip
rickvip / sys_auth.py
Last active January 10, 2016 17:33
"sys_auth()" function in PHPCMS and Discuz writed by Python
import time
import hashlib
import base64 as b64
def md5(string):
return hashlib.md5(str(string)).hexdigest()
# "sys_auth()" function in PHPCMS and Discuz