Manitou lake - Teller county, Colorado
This is a tree overlooking Manitou lake in Teller county, Colorado. A family favorite spot that we often go to for bbq or just to get out of the house. I love the lighting and colors in the tree. The dark foreground and the tree leading up to the single cloud and moon in the sky. I don't like the random bits of neighboring tree peaking into the frame.
micro Cavity experiment - Cambridge, Massachusetts
This was the first experiment I built at MIT. Taken shortly after the first bake to ultra-high vacuum. Unfortunately, We didn't trap during this attempt. We observed voltage breakdown on the trapping device preventing us from successfully confining any ions. I like the personification of the chamber here, kind of ninja-like headband and the viewports make for a nice pair of eyes.
Boat - Copenhagen, Denmark
Random boat we walked past when visiting Copenhagen. I believe this was near the royal palaces, not that it really matters. This day was surprisingly cold which made taking pictures a pretty low priority, unfortunately. I like the lens flare and the center frame in focus painter.
Mario chess - Boston, Massachusetts
I took this picture sometime shortly after I got my camera. My sister gifted me this chess board for Christmas. I really like the depth of field and the colors here. The more I look at this the more I appreciate the detail of the pieces (or piece... Mario).
Rundetaarn street scene - Copenhagen, Denmark
The building on the left is the Rundetaarn and on the right is the best roasted nuts I've ever had. probably because I was freezing and hungry and they were warm and delicious.
Nordkette Cable Car - Innsbruck, Austria
This was taken in late november while I was visiting a lab at the university. A friend and I decided to take the cable car to the top of the mountain. We hoped we'd get a view of the valley but the weather turned as we were on our way up and didn't get to see much. On the way back down it really started snowing Hence the barely visible visitor center.
Bookshelf - Boston, Massachusetts
I took this in our first apartment after moving across the country to boston. Somehow we managed to grab an amazing apartment on Boylston st. across from the Lenox hotel and right down the street from the prudential center. All of which is apparent from this bookshelf (sarcasm). Thanks to my cousin for the radiometer and my mom for the chest.
Royce hall UCLA - Los Angeles, California
I'm not sure when I took this picture, possibly shortly before graduation. It reminds me that I didn't explore enough of the campus while I was there.
Himmelbjerget - Søhøjlandet, Denmark
I'm not sure why I like this so much but I do. This was taken at Himmelbjerget 'Sky mountain' in Denmark, a whopping 482ft high hill with a small-medium sized tower on top of it. Probably mid-way through a physics? sponsored hike through the surrounding area. At the time I was a visiting student at Aarhus university working in an ion lab there.
These are some of my favorite photos that I’ve taken. Mostly doing this to try and get image handling slightly nicer than just directly embedding the full res jpgs. Solution so far is a mix of jquery magnific popup and photorama’s galleries. I’ve changed the “<img src” to use a liquid filter serving half-sized images within the post, magnific takes the href value for displaying the full screen image. To this end I also wrote a script for processing an gallery image files. Using imagemagick the script resizes all images to 1600 x ? for full resolution displayed, it copies and reduces these images by 30% for displaying in-line and lastly it runs imageOptim on all images to further minimize the filesize.
#!/usr/bin/env python
import string
import argparse
import sys
from subprocess import call
import os
debug = False
parser = argparse . ArgumentParser ( description = "Image optimization for blog" )
parser . add_argument ( "-d" , "--directory" , default = "." , type = str , help = "specify working directory" )
parser . add_argument ( "-o" , "--operation" , default = "complete" , type = str , help = "complete resize convert copyAndResize optimize" )
in_args = vars ( parser . parse_args ( sys . argv [ 1 :]))
if in_args [ "operation" ] == "complete" :
in_args [ "operation" ] = [ "convert" , "resize" , "copyAndResize" , "optimize" ]
else :
in_args [ "operation" ] = [ in_args [ "operation" ]]
print "Operating directory " , in_args [ "directory" ]
for args in in_args [ "operation" ]:
if args == "optimize" :
cmdoptim = "open -a ImageOptim %s/" % ( in_args [ "directory" ])
print cmdoptim
os . system ( cmdoptim )
elif args == "resize" :
cmdr = 'mogrify -resize 1600> %s/*.jpg' % ( in_args [ "directory" ])
cmdr = cmdr . split ( ' ' )
print cmdr
call ( cmdr )
cmdr = 'mogrify -resize 1600> %s/*.png' % ( in_args [ "directory" ])
cmdr = cmdr . split ( ' ' )
print cmdr
call ( cmdr )
elif args == "copyAndResize" :
ignorepost = 'find %s/*.jpg \! -name "*_post.jpg" | xargs -J %% ' % in_args [ "directory" ]
cmd2x = ignorepost + 'convert %% -resize 30%% -set filename:area %%t_post %s/%%[filename:area].jpg' % ( in_args [ "directory" ])
print cmd2x
os . system ( cmd2x )
ignorepost = 'find %s/*.png \! -name "*_post.png" | xargs -J %% ' % in_args [ "directory" ]
cmd2x = ignorepost + 'convert %% -resize 30%% -set filename:area %%t_post %s/%%[filename:area].png' % ( in_args [ "directory" ])
print cmd2x
os . system ( cmd2x )
elif args == "convert" :
cmdconvert = "mogrify -format jpg %s/*.JPG" % in_args [ "directory" ]
print cmdconvert
os . system ( cmdconvert )
cmdconvert = "mogrify -format png %s/*.PNG" % in_args [ "directory" ]
print cmdconvert
os . system ( cmdconvert )
else :
print 'available cmds: resize convert copyAndResize optimize '