Skip to content

Instantly share code, notes, and snippets.

@rpmuller
rpmuller / Crash Course v0.5.ipynb.json
Last active November 24, 2022 09:14
Crash Course in Python for Scientists
This file has been truncated, but you can view the full file.
{
"metadata": {
"name": "",
"signature": "sha256:a04c38d9604adb7eb9ca89860dfa1ef72db66037cc2c07c391ef8e67a31f9254"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@rpmuller
rpmuller / parse_orgtable.py
Created November 19, 2015 20:22
Parse an orgmode table into a Pandas dataframe
def parse_orgtable(s):
"""Parse an org-table (input as a multiline string) into a Pandas data frame."""
# This didn't quite work, because spaces messed things up
#import cStringIO
#table = pd.read_table(cStringIO.StringIO(s),sep='|',skiprows=[1],skipinitialspace=True)
#table = table.drop(table.columns[[0,-1]],1)
# I suppose I could have simply run strip() on all of the resulting column names, since that was the problem
def parseline(l):
w = l.split('|')[1:-1]
return [wi.strip() for wi in w]
@rpmuller
rpmuller / Sympy Circuit Plot.ipynb.json
Last active April 24, 2022 18:09
Quantum Circuit Plotting with SymPy
{
"metadata": {
"name": "Sympy Circuit Plot"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@rpmuller
rpmuller / PyQuante Testing.ipynb
Last active July 8, 2021 00:53
Notes, timings, and additional tests for the development of pyquante2 by comparing to to PyQuante (1.6.??).
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rpmuller
rpmuller / CellularAutomata.py
Created July 12, 2013 20:23
Wolfram-style cellular automata using PIL
#!/usr/bin/env python
"""
CellularAutomata.py: Wolfram-style cellular automata in Python
Options:
-h # Use a screen of height # for the simulation
-w # Use a screen of width # for the simulation
-r Use a random initial row (rather than the standard single 1 in the middle)
-R # Use rule # for the simulation
@rpmuller
rpmuller / svg-display.ipynb
Last active January 23, 2019 05:53
IPython's SVG display functionality, in conjunction with the ease of making SVG strings using ElementTrees, makes it really easy to have a nice drawing canvas inside of IPython.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rpmuller
rpmuller / Polynomial.py
Last active August 24, 2018 11:30
Simple polynomial module.
#!/usr/bin/env python
"""\
Polynomial.py - A set of utilities to manipulate polynomials. This consists
of a set of simple functions to convert polynomials to a Python list, and
manipulate the resulting lists for multiplication, addition, and
power functions. There is also a class that wraps these functions
to make their use a little more natural.
This can also evaluate the polynomials at a value, and take integrals
and derivatives of the polynomials.
@rpmuller
rpmuller / InteractiveShell.py
Created July 12, 2013 20:35
Create an interactive shell in a GUI
class FileCacher:
"Cache the stdout text so we can analyze it before returning it"
def __init__(self): self.reset()
def reset(self): self.out = []
def write(self,line): self.out.append(line)
def flush(self):
output = '\n'.join(self.out)
self.reset()
return output
@rpmuller
rpmuller / Tight Binding.ipynb
Created May 30, 2013 01:31
Tight Binding program to compute the band structure of simple semiconductors. Expands on the basic Harrison parameters. Parameters taken from Vogl, Hjalmarson and Dow, [A Semiempirical Tight-Binding Theory of the Electronic Structure of Semiconductors](http://www.sciencedirect.com/science/article/pii/0022369783900641), J. Phys. Chem. Sol. 44 (5)…
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rpmuller
rpmuller / Testing.md
Last active December 19, 2015 17:08
Testing Gist Pages

Playing around to see what one can do using Gist pages for writing.