View discogsGenresStyles.csv
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
Genre | Style | |
---|---|---|
Blues | Boogie Woogie | |
Blues | Chicago Blues | |
Blues | Country Blues | |
Blues | Delta Blues | |
Blues | East Coast Blues | |
Blues | Electric Blues | |
Blues | Harmonica Blues | |
Blues | Hill Country Blues | |
Blues | Jump Blues |
View optimal-grant-proposals.csl
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
<?xml version="1.0" encoding="UTF-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB"> | |
<info> | |
<title>Optimal style for grant proposals</title> | |
<!--<id>http://csl.mendeley.com/styles/20448741/minimal-grant-proposals</id>--> | |
<id>http://www.zotero.org/styles/optimal-grant-proposals</id> | |
<link href="http://www.zotero.org/styles/optimal-grant-proposals" rel="self"/> | |
<author> | |
<name>Anton Crombach</name> | |
<email>anton.crombach@gmail.com</email> |
View minimal-grant-proposals.csl
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
<?xml version="1.0" encoding="UTF-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="en-GB"> | |
<info> | |
<title>Minimal style for grant proposals</title> | |
<!--<id>http://csl.mendeley.com/styles/20448741/minimal-grant-proposals</id>--> | |
<id>http://www.zotero.org/styles/minimal-grant-proposals</id> | |
<link href="http://www.zotero.org/styles/minimal-grant-proposals" rel="self"/> | |
<author> | |
<name>Anton Crombach</name> | |
<email>anton.crombach@gmail.com</email> |
View FitCircleTo2DCoords.ipf
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
Function FitCircleTo2DCoords(w) | |
Wave w | |
// requires 2D numeric wave with two columnns corresponding to xy coords | |
if(Dimsize(w,1) != 2) | |
return -1 | |
endif | |
// make two 1D waves for x and y coords | |
SplitWave/O/NAME="xW;yW;" w | |
Wave xW,yW | |
// solve in terms of u and v coordinates |
View pngSizeForOverleaf.ijm
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
/* | |
* Figure out the width of png images for Overleaf | |
* png are 300 dpi and page width is 170 mm | |
*/ | |
#@ File (label = "Input directory", style = "directory") input | |
#@ String (label = "File suffix", value = ".png") suffix | |
setBatchMode(true); | |
processFolder(input); |
View config.ini
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
[General] | |
IniMode=true | |
[formats] | |
data\align-ampersand\bold=true | |
data\align-ampersand\fontFamily= | |
data\align-ampersand\foreground=#dc8cc3 | |
data\align-ampersand\italic=false | |
data\align-ampersand\overline=false | |
data\align-ampersand\pointSize=0 |
View ExportDocsAsPNG.jsx
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
/**************************************************************** | |
* Script to save a directory of ai files to PNG | |
* Options are: white bakcground, 300 dpi and clipped to artboard | |
*****************************************************************/ | |
var folder = Folder.selectDialog(); | |
if (folder) { | |
var files = folder.getFiles("*.ai"); | |
for (var i = 0; i < files.length; i++) { | |
var currentFile = files[i]; | |
app.open(currentFile); |
View r_project_setup.R
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
## Setup preferred directory structure in wd | |
ifelse(!dir.exists("Data"), dir.create("Data"), "Folder exists already") | |
ifelse(!dir.exists("Output"), dir.create("Output"), "Folder exists already") | |
ifelse(!dir.exists("Output/Data"), dir.create("Output/Data"), "Folder exists already") | |
ifelse(!dir.exists("Output/Plots"), dir.create("Output/Plots"), "Folder exists already") | |
ifelse(!dir.exists("Script"), dir.create("Script"), "Folder exists already") |
View spindleSaver.ijm
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
/* | |
* Short routine to save a single timepoint from a 2 channel movie | |
* Used for knocksideways spindle analysis | |
* Best done with "click ROI" square ROI over cell of interest | |
*/ | |
dir = getDirectory("home")+"Desktop"+File.separator | |
winName = getTitle(); | |
sliceNo = round(getSliceNumber() / 2); | |
s = "title=[tempwin] duplicate frames=" + d2s(sliceNo,0); | |
run("Duplicate...", s); |
View haversine.ipf
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
// calculates spherical distance between two points on earth given coords in decimal degrees | |
// uses haversine formula | |
// radius of earth is taken to be 6371 km (IUGG/WGS-84 mean) | |
Function SphericalDistanceBetweenTwoPoints(lat1, long1, lat2, long2) | |
Variable lat1, long1, lat2, long2 | |
// convert inputs in degrees to radians | |
lat1*= pi/180 | |
long1*= pi/180 | |
lat2*= pi/180 |
NewerOlder