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
""" | |
Compare 2 SIRs by exact binomial and mid-p | |
========================================== | |
This is a conversion of SAS code written by Minn Soe and published by the CDC. | |
The original SAS code is available here: http://www.cdc.gov/nhsn/sas/binom.sas | |
Author: Max Masnick, PhD (https://masnick.org/contact) | |
Last modified: 2016-04-28 |
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
#! /usr/bin/env bash | |
current_folder=`osascript -e 'tell application "Finder"' -e "if (${1-1} <= (count Finder windows)) then" -e "get POSIX path of (target of window ${1-1} as alias)" -e 'else' -e 'get POSIX path of (desktop as alias)' -e 'end if' -e 'end tell'` | |
newest_file=`mdls -name kMDItemFSName -name kMDItemDateAdded -raw /Users/YOUR_USERNAME_HERE/Downloads/* | xargs -0 -I {} echo {} | sed 'N;s/\n/ /' | sort --reverse | head -1 | sed -E "s/^.*\\+0000 //"` | |
mv "/Users/YOUR_USERNAME_HERE/Downloads/$newest_file" "$current_folder" | |
osascript -e "display notification \"$newest_file → $current_folder\" with title \"File moved\"" |
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
tell application "Finder" | |
set finderSelList to selection as alias list | |
end tell | |
if finderSelList ≠ {} then | |
repeat with i in finderSelList | |
set contents of i to POSIX path of (contents of i) | |
end repeat | |
set AppleScript's text item delimiters to linefeed |
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
def icd9_transform(icd9): | |
l = len(icd9) | |
if l == 3: | |
return "%s000" % icd9 | |
elif l == 4: | |
return "%s00%s" % (icd9[0:3], icd9[-1:]) | |
elif l == 5: | |
return "%s0%s" % (icd9[0:3], icd9[-2:]) | |
else: | |
return icd9 |
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
tell application "Google Chrome" | |
set frontIndex to active tab index of front window | |
set theURL to URL of tab frontIndex of front window | |
end tell | |
return theURL |
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
# Based off of https://github.com/jupyter/notebook/blob/master/docs/source/extending/savehooks.rst | |
import io | |
import os | |
from notebook.utils import to_api_path | |
_script_exporter = None | |
_html_exporter = None | |
def script_post_save(model, os_path, contents_manager, **kwargs): |
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
javascript:$('img').filter(function() { if( this.src.indexOf('.GIF') >= 0 || this.src.indexOf('.gif') >= 0) return this; }).replaceWith('<img src="http://placekitten.com.s3.amazonaws.com/homepage-samples/408/287.jpg" />');; |
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
cap log c | |
clear | |
set more off | |
cd "/path/to/folder/" | |
local files : dir "`c(pwd)'" files "*.dta" | |
clear | |
foreach f in `files' { |
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
<div id="dropbox-include">Loading from Dropbox...</div> | |
<script language="javascript"> | |
function loadFromProxy() { | |
$("#dropbox-include").html("Loading from Dropbox proxy..."); | |
var newUrl = "{{page.dropbox_url}}".replace("https://dl.dropboxusercontent.com/u/000000/permanent/text/", "https://your-dropbox-text-proxy.herokuapp.com/"); | |
jQuery.get(newUrl, function(data) { | |
console.log("Got file from "+newUrl+".") | |
}).done(function(data){ | |
var converter = new Markdown.Converter(); | |
$("#dropbox-include").html(converter.makeHtml(data)); |