Thermodynamics and Kinetics Group
Materials Science and Engineering Division
National Institute of Standards and Technology
Gaithersburg, MD
This file contains hidden or 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
| ## This record is from https://drive.google.com/file/d/0B4101gT3tHveSEVyQVRFVHNhbUU/view?usp=sharing | |
| {u'datastore': {u'parameters': {u'root': u'./Data/4e6d840d9723'}, | |
| u'type': u'FileSystemDataStore'}, | |
| u'dependencies': [{u'diff': u'', | |
| u'module': u'python', | |
| u'name': u'Cython', | |
| u'path': u'/users/wd15/.virtualenvs/fipy/lib/python2.6/site-packages/Cython', | |
| u'source': u'attribute', | |
| u'version': u'0.17.2'}, |
This file contains hidden or 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
| """ | |
| Usage: script.py [<jsonfile>] | |
| Script for testing Sumatra | |
| To set up environment. | |
| $ git init | |
| $ git add script.py | |
| $ git ci -m "First commit." |
This file contains hidden or 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
| theData = [ 1, 2, 3 ] | |
| d3.select("body").selectAll("p") | |
| .data(theData) | |
| .enter() | |
| .append("p") | |
| .text((d) -> d) |
This file contains hidden or 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
| TEMPLATE_DIR = . | |
| TEMPLATES = $(wildcard $(TEMPLATE_DIR)/*.handlebars) | |
| TEMPLATE_JS = ./template.js | |
| .PHONY: handlebars clean | |
| all: handlebars | |
| clean: | |
| rm -rf $(TEMPLATE_JS) |
This file contains hidden or 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
| display: | |
| - template: :d3templates.gist-list | |
| gist-list: | |
| - append: $div.row | |
| - selectAll: div.col | |
| - requests: | |
| gist.json: https://api.github.com/users/wd15/gists | |
| call: | |
| - data: :d3.requests.gist |
This file contains hidden or 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
| # Daniel Wheeler Projects/Interests | |
| - Name: Data Driven Simulation Mangement (DDSM) | |
| Repositories: | |
| - https://github.com/data-driven-science/ddsm-db | |
| - https://github.com/data-driven-science/ddsm-view | |
| - https://github.com/data-driven-science/ddsm-api | |
| - https://github.com/data-driven-science/ddsm-cloud | |
| - https://github.com/open-research/sumatra | |
| Participants: |
This file contains hidden or 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
| ;;; git-commit.el --- Major mode for editing git commit messages | |
| ;; This software is Copyright (c) 2010 by Florian Ragwitz. | |
| ;; | |
| ;; This is free software, licensed under: | |
| ;; The GNU General Public License, Version 2, June 1991 | |
| ;; Author: Florian Ragwitz <[email protected]> | |
| ;; Version: 0.1 | |
| ;; Keywords: convenience git |