Archive for the ‘Uncategorized’ Category
Friday, November 4th, 2011
These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
Sun Grid Engine (SGE) – qstat – What do the states stand for?Category State SGE Letter Code
Pending pending qw
pending, user hold qw
pending, system hold hqw
pending, user and system hold hqw
pending, user hold, re-queue hRwq
pending, system hold, re-queue hRwq
pending, user and system hold, re-queue hRwq
Running running r
transferring t
running, re-submit Rr
transferring, re-submit Rt
Suspended job suspended s, ts
queue suspended S, tS
queue suspended by alarm T, tT
all suspended with re-submit Rs, Rts, RS, RtS, RT, RtT
Error all pending states with error Eqw, Ehqw, EhRqw
Deleted all running and suspended states with deletion dr, dt, dRr, dRt, ds, dS, dT, dRs, dRS, dRT
Tags: Barcode, Filemaker, Game, Git, Kinect, Python, Sge, Stackoverflow, Thread
Saturday, October 22nd, 2011
These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
New JDBC Drivers for FileMaker 11I was getting these errors trying to connect to FileMaker 11 via JDBC on DBVisualizer. It turns out you need this new JDBC driver.
Product: DbVisualizer Personal 7.1.5
Build: #1590 (2011/02/24 17:23)
Java VM: Java HotSpot(TM) 64-Bit Server VM
Java Version: 1.6.0_26
Java Vendor: Apple Inc.
OS Name: Mac OS X
OS Arch: x86_64
OS Version: 10.6.8
An error occurred while establishing the connection:
Long Message:
[DataDirect][SequeLink JDBC Driver]Internal network error, session aborted due to session protocol data unit format error, connection closed.
Details:
Type: java.sql.SQLException
Error Code: 2207
SQL State: HY000
1) Nested Exception:
Long Message:
Session aborted due to IIOP problems.
Details:
Type: java.sql.SQLException
Error Code: 7772
SQL State: HY000
2) Nested Exception:
Long Message:
IIOP error, invalid protocol identifier.
Details:
Type: java.sql.SQLException
Error Code: 7529
SQL State: HY000
Mean and Standard Deviation in Python8.3 meanstdv()
Summary
Mean and standard deviation of data
Usage
real, real = meanstdv(list)
“”" Calculate mean and standard deviation of data x[]: mean = {sum_i x_i over n} std = sqrt(sum_i (x_i – mean)^2 over n-1) “”" def meanstdv(x): from math import sqrt n, mean, std = len(x), 0, 0 for a in x: mean = mean + a mean = mean / float(n) for a in x: std = std + (a – mean)**2 std = sqrt(std / float(n-1)) return mean, std
Tags: Dbvizualizer, Excel, Filemaker, Jdbc, Perl, Python, Sql, Xlwt
Thursday, October 13th, 2011
These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
Requests: HTTP for Humans — Requests 0.6.2 (dev) documentationMost existing Python modules for sending HTTP requests are extremely verbose and cumbersome. Python’s builtin urllib2 module provides most of the HTTP capabilities you should need, but the api is thoroughly broken. It requires an enormous amount of work (even method overrides) to perform the simplest of tasks.
Things shouldn’t be this way. Not in Python.
Tags: Computervision, Django, Gene, Genetics, Http, Linux, Passport, Photo, Python, R, Sed, Statistics, Testing, Tutorial
Friday, September 23rd, 2011
These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
The Mouse as a Model SystemThis somewhat explains why a backcross experiment would be desired or necessary. It also explains some interesting ideas about genetics in general.
Tags: 3D, Backcross, Django, Genetics, Msg, Mysql, Photo, Python, R, Scanner, Statistics, Unicode, Work
Friday, September 16th, 2011
These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.
Tags: Book, Confluence, Django, Documentation, Git, Mod_Wsgi, Perl, Programming, Python, Ssl, Tutorial, Wiki, Work
|
|