screen shot of top and mtop: Inline-style: ![alt text][logo]
mysql status when cpu is 190%:
+------------------------------------------+-------------+
| Variable_name | Value |
screen shot of top and mtop: Inline-style: ![alt text][logo]
mysql status when cpu is 190%:
+------------------------------------------+-------------+
| Variable_name | Value |
| #!/usr/bin/env python | |
| __author__ = 'seckcoder' | |
| import sys | |
| import json | |
| from mysql.connector.pooling import MySQLConnectionPool | |
| import traceback | |
| from mysql.connector.conversion import MySQLConverter |
| __author__ = 'seckcoder' | |
| import config | |
| import boto.ec2.cloudwatch | |
| import subprocess | |
| import time | |
| from datetime import datetime | |
| region = "us-east-1" |
| import numpy as np | |
| import numpy.linalg as linalg | |
| import matplotlib.pyplot as plt | |
| import math | |
| def p4(): | |
| A = np.array([[1, 3, 2], | |
| [-1, 2, -5], | |
| [2, -4, 3]]) |
| #lang racket | |
| ; Implementations and examples are inspired by Matt Might's blog posts: | |
| ; http://matt.might.net/articles/programming-with-continuations--exceptions-backtracking-search-threads-generators-coroutines/ | |
| ; Note I didn't just copy the code. I implemented it independently, so it looks a lot different from Matt's code. | |
| (define (current-continuation) | |
| (call/cc (lambda (k) | |
| (k k)))) | |
| (define (exception) |
| (* Added by OPAM. *) | |
| let () = | |
| try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH") | |
| with Not_found -> () | |
| ;; | |
| #use "topfind";; | |
| #thread;; | |
| #camlp4o;; | |
| #require "core.top";; |
| To 侯: | |
| 我把 | |
| And we present a system that's capable of | |
| integrating transfer function design results | |
| from a group of experts to facilitate the | |
| design process of novice users by providing | |
| useful interactions that enable flexible | |
| navigation in the transfer function feature | |
| space and effective visual suggestion. |
| (let ((a 1)) | |
| (define (f x) | |
| (define b (+ a x)) | |
| (define a 5) | |
| (+ a b)) | |
| (f 10)) |
| #!/usr/local/bin/guile -s | |
| !# | |
| ; Scheme(guile) implementation for http://weibo.com/1822142792/Abqbesr1n?mod=weibotime | |
| ; include guile pattern matching module | |
| (use-modules (ice-9 match)) | |
| ; transform a list of words to list of lines, with length of line not exceeding line-len | |
| (define (words->lines words line-len) | |
| (cond ((null? words) '()) |
| var assert = require("assert"), | |
| ms = require("ms"); | |
| function LimitedAccessObject(opts) { | |
| var initial = { | |
| times:1, | |
| costed:0, | |
| autoRefresh:false, | |
| refreshInterval:0 | |
| }; |