Skip to content

Instantly share code, notes, and snippets.

View jlouros's full-sized avatar

João Louros jlouros

View GitHub Profile
@jlouros
jlouros / build.cake
Last active July 14, 2019 06:38
Cake build sample file
// arguments
string target = Argument("target", "Default");
string configuration = Argument("configuration", "Release");
// define directories.
ConvertableFilePath mainSln = File("./src/Example.sln");
ConvertableDirectoryPath buildDir = Directory("./src/Example/bin") + Directory(configuration);
// tasks
Task("Clean")
@jlouros
jlouros / BatchCellCount
Created February 11, 2015 15:15
ImageJ macro to perform a batch cell count
// ImageJ macro to perform a batch cell count for a given directory (with images)
// ImageJ can be downloaded from http://rsb.info.nih.gov/ij/
requires("1.48g");
dir = getDirectory("Choose a Directory");
list = getFileList(dir);
Dialog.create("User selection");