Skip to content

Instantly share code, notes, and snippets.

View softins's full-sized avatar

Tony Mountifield softins

View GitHub Profile
@softins
softins / checkkeys.txt
Created August 24, 2023 15:46
Output from checkkeys.pl
tony@pi:~/jamulus/src/translation $ ../../tools/checkkeys.pl
Language: de_DE
Language: es_ES
Language: fr_FR
Language: it_IT
Language: ko_KR
Language: nb_NO
Language: nl_NL
Language: pl_PL
Language: pt_BR
@softins
softins / binsearch.pl
Created September 27, 2021 15:19
Test program for binary search algorithm
#!/usr/bin/perl
use strict;
use integer;
use Data::Dumper;
my @data = ();
my @order = ();
my $n = 0;