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
#!/bin/bash | |
tempdir=/tmp/mono-import | |
monorepo=$(pwd) | |
package=$(basename -s .git $1) | |
# fail on errors | |
set -e | |
# make sure we're in a git repo |
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
const { promises: fs } = require('fs'); | |
const path = require('path'); | |
main(process.argv.slice(2)).catch(console.error); | |
async function main(argv) { | |
if (argv.length !== 3) { | |
printUsage(); | |
process.exit(1); | |
} |
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
public static class ListQuickSelectExtensions | |
{ | |
private static Random random = new Random(); | |
/// <summary> | |
/// Swaps the values at the two indexes in the list. | |
/// </summary> | |
/// <typeparam name="T">The list element type.</typeparam> | |
/// <param name="xs">The list.</param> | |
/// <param name="a">The index of an element to swap.</param> |
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
# Makefile for building Arduino firmware with Arduino 1.0. | |
# Version 1.0 by stewartml (www.stewartml.co.uk) | |
# | |
# Adapted from Makefile-arduino v0.5 by Akkana Peck <[email protected]> | |
# Adapted from a long-ago Arduino 0011 Makefile by mellis, eighthave, oli.keller | |
# | |
# This Makefile allows you to build sketches from the command line | |
# without the Arduino environment (or Java). | |
# | |
# Detailed instructions for using this Makefile: |