Accurate to four decimal places. Verified through multiple data recorded flights. In CSV Format.
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
import numpy as np | |
import pandas as pd | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
import json | |
%matplotlib inline | |
%config InlineBackend.figure_format = 'retina' | |
pd.options.mode.chained_assignment = None |
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
out = {} | |
for (const k in originTest.contractService.contracts) { | |
out[k] = {4: {address:originTest.contractService.contracts[k].networks[4].address}} | |
} | |
JSON.stringify(out) |
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
// Example usage: | |
// | |
// console.table(await debugEvents(origin.contractService, {fromBlock:175, topics:[]})) | |
// | |
async function debugEvents(contractService, options){ | |
const web3 = contractService.web3 | |
// Lookup table for contracts from bytecode |
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
strace -c -p {PID} |
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
perl -MList::Util=shuffle -e 'print shuffle(<STDIN>);' | head -n 1 |
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
ffmpeg -i INPUT.MOV -ss 39 -to 52 -async 1 -acodec copy -vcodec copy OUTPUT.cut.MOV |
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
# Install and use imapsync to copy imap accounts between servers | |
# Known issues: | |
# - Same username on both servers | |
# - Same password on both servers | |
# - No special characters in passwords | |
# - You'll want to run in parallel on big moves. | |
aptitude install libmail-imapclient-perl libterm-readkey-perl libio-socket-ssl-perl libdigest-hmac-perl liburi-perl libfile-copy-recursive-perl | |
git clone https://github.com/imapsync/imapsync.git |
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
start | |
= nodes | |
nodes | |
= node* | |
node | |
= list | |
/ stringkeyvalue |
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
$.makeArray($('div[itemprop=price]').map(function(){return $(this).text().replace(/[^0-9]/g,'');}) ).join("\n") |