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
#!/usr/bin/python3 | |
import matplotlib | |
import numpy | |
import sys | |
import matplotlib.pyplot as plt | |
filename = sys.argv[1] | |
data = numpy.loadtxt(filename, delimiter=',', skiprows=2, usecols=(1,), | |
comments='\r') |
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 5 columns, instead of 3 in line 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
X,CH2,Start,Increment, | |
Sequence,Volt,-6.9999998435e-002,9.9999997474e-005, | |
0,5.920e-002, | |
1,-5.920e-002, | |
2,5.920e-002, | |
3,-5.920e-002, | |
4,0.000e000, | |
5,-1.184e-001, | |
6,0.000e000, | |
7,-1.776e-001, |
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 5 columns, instead of 3 in line 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
X,CH2,Start,Increment, | |
Sequence,Volt,-6.9999998435e-002,9.9999997474e-005, | |
0,5.920e-002, | |
1,-5.920e-002, | |
2,5.920e-002, | |
3,-5.920e-002, | |
4,0.000e000, | |
5,-1.184e-001, | |
6,-5.920e-002, | |
7,-1.776e-001, |
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
_repo: The-Sabbath-School-Index-Pointing-out-the-history-and-progress-of-Sunday-schools-with-approve__48100 | |
_version: 0.1.0 | |
covers: | |
- cover_type: archival | |
image_path: 48100-h/images/cover.jpg | |
creator: | |
author: | |
agent_name: Pardee, Richard Gay | |
gutenberg_agent_id: '44622' | |
url: http://www.gutenberg.org/2009/agents/44622 |
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
py_binary( | |
name = 'generate_compile_command', | |
srcs = [ | |
'generate_compile_command.py', | |
], | |
deps = [ | |
'//third_party/bazel:extra_actions_proto_py', | |
], | |
) |
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
==================== Test output for //src/test/java/com/google/devtools/build/lib:analysis_test: | |
JUnit4 Test Runner | |
.Feb 21, 2016 3:26:04 AM com.google.devtools.build.lib.skyframe.FilesystemValueChecker$3 accept | |
INFO: Spent 1 ms checking 0 filesystem nodes (0 scanned) | |
Feb 21, 2016 3:26:04 AM com.google.devtools.build.lib.pkgcache.LegacyLoadingPhaseRunner execute | |
INFO: Starting pattern evaluation | |
Feb 21, 2016 3:26:04 AM com.google.devtools.build.lib.pkgcache.LegacyLoadingPhaseRunner preLoadingLogging | |
INFO: Starting loading phase | |
Feb 21, 2016 3:26:04 AM com.google.devtools.build.lib.pkgcache.LegacyLoadingPhaseRunner postLoadingLogging | |
INFO: Loading phase finished |
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
inputs = ['input_%s' % i for i in range(3000)] | |
genrules = ['genrule_%s' % i for i in range(100)] | |
genrule( | |
name = 'gen_inputs', | |
outs = inputs, | |
cmd = 'touch ' + ' '.join(['$(location %s)' % i for i in inputs]), | |
) | |
[genrule( |