- 整体
- 这些依赖是必须的,以RHEL/CentOS举例
yum install automake libtool flex bison pkgconfig gcc-c++ libevent-devel
(function(f) { | |
var d, e, p = function() { | |
d = (new (window.UAParser || exports.UAParser)).getResult(); | |
e = new Detector; | |
return this | |
}; | |
p.prototype = { | |
getSoftwareVersion: function() { | |
return "0.1.11" | |
}, |
#!/usr/bin/perl | |
# This script parses Git blame's "porcelain" output format and | |
# ascertains the oldest lines of code seen. | |
# | |
# If you want to perform a custom report, just define your own callback | |
# function and invoke parse_porcelain() with it. | |
# | |
# The expected input format is slightly modified from raw `git blame | |
# -p`. Here is an example script for producing input: |
#!/usr/bin/env python | |
# | |
# A script that runs the commands to perform Netflix's | |
# "Linux Performance Analysis in 60,000 Milliseconds" | |
# | |
# (http://techblog.netflix.com/2015/11/linux-performance-analysis-in-60s.html) | |
# | |
import subprocess | |
import datetime | |
import argparse |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |