Skip to content

Instantly share code, notes, and snippets.

@edgriebel
edgriebel / kitchensink.boxstarter.txt
Last active August 29, 2015 14:14
boxstarter.org Kitchen sink developer install
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
cinst java.jdk
cinst nodejs.install
cinst chocolateygui
cinst putty.install
cinst vim
cinst paint.net
cinst sublimetext2
#cinst cyg-get git,git-completion,wget,curl,bash-completion,bc,unzip,chere,dos2unix
@edgriebel
edgriebel / min.boxstarter.txt
Last active October 29, 2016 03:37
boxstarter.org minimum
# Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
# Enable-RemoteDesktop
cinst jdk8
cinst putty.install
cinst vim
cinst cyg-get git,wget,curl,dos2unix,unix2dos,git-completion
cinst eclipse
cinst ant
cinst tomcat
@edgriebel
edgriebel / Mint_extract_accounts.js
Last active January 11, 2017 14:51
Extract account names and nicknames from Mint into a form to import into Excel or Google Docs. When importing, split on "="
accts=jQuery('.accounts-data-li');
acctlist = accts.map(function(x) {
var a=jQuery(accts[x]);
var n=a.find('.accountName');
var nn=a.find('.nickname');
var b=a.find('.balance');
var v=n.text()+":"+nn.text()+"="+b.text();
console.log("account: " + v);
return v;
});
@edgriebel
edgriebel / stylish-itsdeductible.css
Last active April 2, 2017 20:33
Stylish/userstyles.org to fix some broken parts of ItsDeductibleOnline.intuit.com
/* Make data entry tables full-height so
we can use scroll wheel or arrows
instead of manually grabbing thumb */
div.dataTables_scrollBody {
height: inherit !important;
}
/* move "Add More Items To Donation" to top instead of having to scroll down for every item */
table.bottomNav {
position: absolute;
@edgriebel
edgriebel / filtering_demo.ipynb
Last active January 27, 2020 01:58
IPython Notebook Comparing speed of Iterating over NumPy arrays vs. Python sum() and native NumPy.sum
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.