Warning: MathJax requires JavaScript to process the mathematics on this page.
If your browser supports JavaScript, be sure it is enabled.

Hi, I'm VanessaSaurus, a Software Engineer.
Building tools, containers, and cloudy things, with a penchant for Python and parsnips. -- about me

Raaawwr..!

Hackerspace Cupcake Challenge I was pretty excited about the Hackerspace Cupcake Challenge until I realized that I wasn’t part of a Hackerspace, and it would not be feasible to join or make my own. Under these circumstances, I decided to host my own... Read more

Sudomance In honor of the xkcd cartoon, “Sudo make me a sandwich” : Version 1: Version 2: Read more

Interactive Timeseries Visualization I am working on a mini project that, simply put, will be a webpage that visualizes BOLD timeseries for a particular task and contrast. The goal is to have these average group timeseries created and uploaded automatically so that there... Read more

Sudo, make me a sandwich! I love this cartoon from xkcd As I dream up a new design for this, how about some sandwich python? #!/usr/bin/python class sandwich: def __init__(self): self.sandwich ={'bread':'None','made':False,'spread':'None','name':'None'} def __repr__(self): return "<Name:%s,Made:%s,Spread:%s,Bread:%s>"%(self.sandwich['name'],self.sandwich['made'],self.sandwich['spread'],self.sandwich['bread']) def getFromPantry(self,fillings,bread): self.sandwich['spread'] = fillings self.sandwich['bread'] = bread def... Read more