We can't make this file beautiful and searchable because it's too large.
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
timestamp,data | |
2021-02-01 00:01:24,88 | |
2021-02-01 00:01:54,88 | |
2021-02-01 00:04:24,88 | |
2021-02-01 00:04:59,88 | |
2021-02-01 00:05:58,88 | |
2021-02-01 00:06:16,88 | |
2021-02-01 00:06:33,88 | |
2021-02-01 00:06:35,88 | |
2021-02-01 00:06:42,88 |
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
{ | |
"packages": [ | |
{ | |
"name": "arduino", | |
"maintainer": "MOD Devices", | |
"websiteURL": "http://www.arduino.cc/", | |
"email": "[email protected]", | |
"help": { | |
"online": "http://www.arduino.cc/en/Reference/HomePage" | |
}, |
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
#!/bin/bash | |
# print green | |
function info { | |
echo -e "\e[0;32m"$@"\e[0m" | |
} | |
# print yellow | |
function warn { | |
echo -e "\e[0;33m"$@"\e[0m" |
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/bash | |
generators=(bom_csv_grouped_by_value.py bom_csv_grouped_by_value_with_fp.py bom_csv_sorted_by_ref.py bom_html_by_value.py bom_html_grouped_by_value.py bom_html_with_advanced_grouping.py bom_sorted_by_ref.py) | |
for generator in ${generators[@]}; do | |
python2 ${generator} /tmp/bom-test.xml /tmp/bom-test-py2.out | |
python3 ${generator} /tmp/bom-test.xml /tmp/bom-test-py3.out | |
[[ `diff /tmp/bom-test-py2.out /tmp/bom-test-py3.out` ]] && echo "Fail: ${generator}" && exit 1 | |
done |