Browse Source

Added README

Alois Mahdal 12 years ago
parent
commit
9cec5a7b99
1 changed files with 29 additions and 0 deletions
  1. 29
    0
      README.md

+ 29
- 0
README.md View File

@@ -0,0 +1,29 @@
1
+#minions#
2
+
3
+My favorite tiny Perl scripts for development and testing.
4
+
5
+
6
+##htlog.cgi##
7
+
8
+Collects GET requests with parameters *msg* and *tag* and logs them into single text file
9
+
10
+
11
+##htlogger.pm##
12
+
13
+API to make usage for *htlog.cgi* in Perl scripts even easier
14
+
15
+
16
+##autotest.pl##
17
+
18
+Script to make it easy to start testing your Perl module with Test::More etc.  Suggested use is to sit on the other monitor, run all *.t* files around and around and be annoying about the fact that they fail.
19
+
20
+
21
+##timestamp.pl##
22
+
23
+Script to measure how long mone second takes.  For those that know how long it takes, it can serve as a snippet for Perl `&stamp()`.
24
+
25
+
26
+
27
+##helper.pm##
28
+
29
+Container module for some utility methods for Perl.  Probably only dmup*() is interesting, it bears a nice quick and dirty way for dumping Perl data.