This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### MATPLOTLIBRC FORMAT | |
# This is a sample matplotlib configuration file - you can find a copy | |
# of it on your system in | |
# site-packages/matplotlib/mpl-data/matplotlibrc. If you edit it | |
# there, please note that it will be overridden in your next install. | |
# If you want to keep a permanent local copy that will not be | |
# over-written, place it in HOME/.matplotlib/matplotlibrc (unix/linux | |
# like systems) and C:\Documents and Settings\yourname\.matplotlib | |
# (win32 systems). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib | |
matplotlib.use('Agg') | |
import matplotlib.pyplot as plt | |
def on_draw(event): | |
print "on_draw!" | |
f = plt.figure() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
+-----+ +-----+ | |
a | | a | | | |
x | ax1 | x | ax1 | | |
1 | | 1 | | | |
+-----+ should become: +-----+ | |
a | | a | | | |
x | ax2 | x | ax2 | | |
2 | | 2 | | | |
+-----+ +-----+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import matplotlib | |
matplotlib.use('Agg') | |
import matplotlib.pyplot as plt | |
import numpy as np | |
DTYPES = { | |
'em': [('step', int), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# make_pov.py | |
# | |
# Original script written by Robert Campbell | |
# Modified by Tsjerk A. Wassenaar and Patrice Peterson | |
from os.path import splitext | |
from pymol import cmd | |
def make_pov(file, name="PymolObject", clip=False): | |
f1, f2 = file, splitext(file)[0] + '.inc' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"name": "Cd2+ soil pollution in Europe" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{chemfig} | |
\makeatletter | |
\definearrow9{-X>}{% | |
\CF@arrow@shift@nodes{#7}% | |
\expandafter\draw\expandafter[\CF@arrow@current@style,-CF@full](\CF@arrow@start@node)--(\CF@arrow@end@node)node[midway](Xarrow@arctangent){};% | |
\edef\CF@tmp@str{\ifx\@empty#1\@empty[draw=none]\fi}% | |
\expandafter\draw\CF@tmp@str (Xarrow@arctangent)% | |
arc[radius=\CF@compound@sep*\CF@current@arrow@length*\ifx\@empty#8\@empty0.333\else#8\fi,start angle=\CF@arrow@current@angle-90,% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"+" stuff should (hopefully) be easily moddable | |
Uncategorized | |
------------- | |
- in-game multiplayer setup :) | |
- *in-game* Munin integration | |
Animations/Graphics/Sounds/etc. | |
------------------------------- | |
- new melee weapon animations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainter: Duca | |
# Contributor: yescalona | |
# Contributor: Carlos RÃos V. (aka crosvera) | |
# Contributor: Patrice Peterson <runiq at archlinux dot us> | |
pkgname=pymol-svn | |
_pkgname=pymol | |
pkgver=4043 | |
pkgrel=2 | |
pkgdesc="A user-sponsored molecular visualization system on an open-source foundation" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Check XenServer SR utilization. | |
(C) Copyright Pekka Panula/Sofor Oy | |
Licence: GPLv2 or later | |
Author: Pekka Panula, E-Mail: [email protected] | |
Contact if bugs, etc. | |
- Uses HTTPS to connect to XenServer; if you have a pool, use a |