Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
(nikea3)edill@edill-810g:~/dev/python/metadatastore (mds-corrections $)$ gitinspector | |
The following historical commit information, by author, was found in the repository: | |
Author Commits Insertions Deletions % of changes | |
Arman Arkilic 67 1302 1000 13.46 | |
Eric Dill 111 4918 4037 52.37 | |
Matt Cowan 6 193 43 1.38 | |
Thomas A Caswell 65 931 371 7.61 | |
arkilic 66 1713 1156 16.78 | |
danielballan 58 918 462 8.07 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
(nikea3)edill@edill-810g:~/dev/python/ophyd (master % u=)$ gitinspector | |
The following historical commit information, by author, was found in the repository: | |
Author Commits Insertions Deletions % of changes | |
CSX-1 Operator 5 117 85 0.48 | |
Dan Allan 1 36 20 0.13 | |
Daron Chabot 42 1491 647 5.05 | |
Eric Dill 8 522 65 1.39 | |
Garth Williams 4 94 47 0.33 | |
Ken L 136 19976 10027 70.80 |
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
package: | |
name: mongoengine | |
version: !!str 0.8.7 | |
source: | |
fn: mongoengine-0.8.7.tar.gz | |
url: https://github.com/MongoEngine/mongoengine/archive/v0.8.7.tar.gz | |
md5: 96e78c892d3e30ed0c813e8fa5fe133e | |
# patches: | |
# List any patch files here |
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
dct = { | |
'thing1': 'a', | |
'thing3': 'c', | |
'thing4': 'd', | |
'thing5': 'e' | |
} | |
def plotting_function(thing1=None, thing2=None, thing3=None, **kwargs): | |
print('thing1 = %s' % thing1) | |
print('thing2 = %s' % thing2) |
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
edill@xf03id-ca1:~$ mongod | |
mongod --help for help and startup options | |
Fri Jun 5 16:53:55 [initandlisten] MongoDB starting : pid=14510 port=27017 dbpath=/data/db/ 64-bit host=xf03id-ca1 | |
Fri Jun 5 16:53:55 [initandlisten] | |
Fri Jun 5 16:53:55 [initandlisten] ** WARNING: You are running on a NUMA machine. | |
Fri Jun 5 16:53:55 [initandlisten] ** We suggest launching mongod like this to avoid performance problems: | |
Fri Jun 5 16:53:55 [initandlisten] ** numactl --interleave=all mongod [other options] | |
Fri Jun 5 16:53:55 [initandlisten] | |
Fri Jun 5 16:53:55 [initandlisten] db version v2.0.6, pdfile version 4.5 | |
Fri Jun 5 16:53:55 [initandlisten] git version: nogitversion |
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
edill@xf03id-ca1:~$ cat /etc/mongodb.conf | |
# mongodb.conf | |
# Where to store the data. | |
dbpath=/DATA/mongodb | |
#where to log | |
logpath=/var/log/mongodb/mongodb.log | |
logappend=true |
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
edill@xf03id-ca1:~$ cat /etc/init.d/mongodb | |
#!/bin/sh | |
# | |
# init.d script with LSB support. | |
# | |
# Copyright (c) 2007 Javier Fernandez-Sanguino <[email protected]> | |
# | |
# This is free software; you may redistribute it and/or modify | |
# it under the terms of the GNU General Public License as | |
# published by the Free Software Foundation; either version 2, |