This file contains hidden or 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
| #!/usr/bin/perl | |
| # | |
| # usage: gen-random-csv.pl 1000 7 13 > data.csv | |
| # -> generates 1000 docs with 2 random fields of cardinality 7 and 13. | |
| my $num_docs = shift; | |
| die "Need to specify a number of documents" unless $num_docs; | |
| my @field_bounds = @ARGV; | |
| die "Need to specify some random field limits" unless @field_bounds; |
This file contains hidden or 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
| $ (gpg --list-sigs Hostetter && gpg --armor --export Hostetter) | |
| pub 4096R/F8F58E19 2013-07-25 | |
| uid Chris "Hoss" Hostetter <hossman@apache.org> | |
| sig 3 F8F58E19 2013-07-25 Chris "Hoss" Hostetter <hossman@apache.org> | |
| sub 4096R/9AF15240 2013-07-25 | |
| sig F8F58E19 2013-07-25 Chris "Hoss" Hostetter <hossman@apache.org> | |
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| Version: GnuPG v1.4.11 (GNU/Linux) |
NewerOlder