aspe:keyoxide.org:SANRZ2DWCGCATM22OQ26RWURBI
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
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<!-- OPML generated by Fever --> | |
<head><title>Fever</title></head> | |
<body> | |
<outline text="Kindling"> | |
<outline type="rss" text="www.woz.ch/taeglich/feed" title="www.woz.ch/taeglich/feed" xmlUrl="www.woz.ch/taeglich/feed" htmlUrl=""/> | |
<outline type="rss" text="500 Internal Server Error" title="500 Internal Server Error" xmlUrl="https://www.biorxiv.org/alerts?destination=alerts/search/add&search_query=haberth%25C3%25BCr" htmlUrl="https://www.biorxiv.org/alerts?destination=alerts/search/add&search_query=haberth%25C3%25BCr"/> | |
<outline type="rss" text="Andrew Janowczyk" title="Andrew Janowczyk" xmlUrl="http://www.andrewjanowczyk.com/feed" htmlUrl="https://andrewjanowczyk.com"/> | |
<outline type="rss" text="Arq Backup Blog" title="Arq Backup Blog" xmlUrl="https://www.arqbackup.com/blog/feed" htmlUrl="https://www.arqbackup.com/blog"/> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Title: Simple Sabotage Field Manual Author: Strategic Services Office of Strategic Services
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.
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 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
sed -i 's/Haberthuer2010/doi:10.1107\/S0909049510019618/g' *.md | |
sed -i 's/Haberthur2013/doi:10.1152\/japplphysiol.00642.2013/g' *.md | |
sed -i 's/Haberth_r2013/doi:10.1152\/japplphysiol.00642.2013/g' *.md | |
sed -i 's/Haberth_r_2013/doi:10.1152\/japplphysiol.00642.2013/g' *.md | |
sed -i 's/haberthr/doi:10.5281\/zenodo.3768407/g' *.md | |
sed -i 's/Barr__2014/doi:10.14814\/phy2.12063/g' *.md | |
sed -i 's/Barr__2016/doi:10.1152\/ajplung.00325.2016/g' *.md | |
sed -i 's/Tschanz_2014/doi:10.1152\/japplphysiol.01355.2013/g' *.md | |
sed -i 's/TSCHANZ_2011/doi:10.1111\/j.1365-2818.2010.03481.x/g' *.md | |
sed -i 's/Schittny_2008/doi:10.1152\/ajplung.00296.2007/g' *.md |
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 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
def cropper(image, | |
despeckle=True, | |
verbose=False, | |
threshold=50): | |
'''Crop array to biggest item in it''' | |
dimensions = len(image.shape) | |
if verbose: | |
print('Cropping %s-dimensional image' % dimensions) | |
# Threshold | |
thresholded = image > threshold |