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
#r "nuget: MetadataExtractor" | |
open System | |
open System.IO | |
open MetadataExtractor | |
open MetadataExtractor.Formats.Exif | |
module Exif = | |
type private Metadata = Map<string, MetadataExtractor.Directory> |
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
open System | |
open System.Data | |
open System.Linq | |
type Table<'key> when 'key: comparison = | |
{ columns: string list | |
sortedKeys: 'key seq option | |
map: Map<'key, double array> } | |
module Table = |
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 | |
INPUT="$1" | |
CLEAN=$false | |
check_dependencies() { | |
for name in az curl sed tput; do | |
[[ $(which $name 2>/dev/null) ]] || { | |
echo -en "$name needs to be installed." | |
deps=1 |