u
[feisty_meow.git] / scripts / notes / info_overload_report.sh
index 46901db55e33eaf724506bb8eaf6e4dc13c21b79..428f4306d690e841e5bbda4f7939778bdc80ea22 100644 (file)
@@ -1,36 +1,76 @@
 
 # these metrics are how bogged down we are in to-do type items.
 
-REPORT_FILE="$HOME/quartz/history_info_overload.txt"
+REPORT_FILE="$HOME/cloud/overload_history.txt"
+
+# given a path, this will find how many items are under it, ignoring svn and git files.
+function calculate_depth()
+{
+  local dir="$1"; shift
+  find "$dir" -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l | tr -d ' '
+}
+
+##############
 
 # notes are individual files of tasks, usually, although some are combined.
-note_depth=$(find ~/quartz/grunty_notes/ -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l)
+note_depth=$(calculate_depth ~/cloud/grunty_notes)
 
-# projects are slightly more productive, ongoing things that are very active.
-project_depth=$(find ~/quartz/projects/ -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l)
+# unsorted files haven't been categorized yet.
+unsorted_depth=$(calculate_depth ~/cloud/unsorted)
 
 # source examples need to be sucked into other places, other codebases.  they are not
 # supposed to pile up here.
-source_example_depth=$(find ~/quartz/example_source_code/ -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l)
+source_example_depth=$(calculate_depth ~/cloud/example_source)
+
+# the list files are web documents with to-do lists.  individual items are marked with <li>.
+item_depth=$(find ~/cloud/grunty_notes/ -type f -iname "*.html" -exec grep "<li" "{}" ';' | wc -l | tr -d ' ')
+
+# scan across all appropriately named folders in our folders that live in the "cloud".
+cloud_project_depth=0
+for i in ~/cloud/*project* ~/cloud/*research*; do
+  temp_depth=$(calculate_depth $i)
+  cloud_project_depth=$(($cloud_project_depth + $temp_depth))
+done
+
+# also snag the files labelled as trivia, since they're still to-dos...
+cloud_trivia_depth=0
+for i in ~/cloud/*trivia*; do
+  temp_depth=$(calculate_depth $i)
+  cloud_trivia_depth=$(($cloud_trivia_depth + $temp_depth))
+done
 
+# and then count up the things that we think will be cleaned soon, but one thing we have learned
+# is that things that are intended are not always followed up on right away.  this catches us
+# being too hopeful and makes sure nothing seems to be getting done that's lagging.
+cloud_active_depth=0
+for i in ~/cloud/*active*; do
+  temp_depth=$(calculate_depth $i)
+  cloud_active_depth=$(($cloud_active_depth + $temp_depth))
+done
 
-#hmmm: need the counter of things in the html files back too.
-#      those are doc'd in the notes about refactoring notes?
+#hmmm: the find and add thing is starting to look like a useful function.
 
-total_overload=$(($note_depth + $project_depth + $source_example_depth))
-#hmmm: don't forget to add others.
+##############
+
+total_overload=$(($note_depth + $item_depth + $unsorted_depth + $source_example_depth + $cloud_project_depth + $cloud_trivia_depth + $cloud_active_depth))
 
 report="\
 \n\
-We have studied your information overload and find that there are:\n\
-  $note_depth note files\n\
-  $project_depth project files\n\
-  $source_example_depth source examples\n\
+Current information overload consists of:\n\
+\n\
+  $note_depth\tgrunty notes\n\
+  $item_depth\tto-do list items\n\
+  $cloud_active_depth\tactive items\n\
+  $cloud_project_depth\tproject files\n\
+  $source_example_depth\tsource examples\n\
+  $cloud_trivia_depth\ttrivial notes\n\
+  $unsorted_depth\tunsorted files\n\
   -------\n\
-  $total_overload total items\n\
+  $total_overload\ttotal items\n\
+\n\
 Gathered On: $(date)\n\
-##############\n\
-"
+\n\
+##############"
 
 echo -e "$report" | tee -a "$REPORT_FILE"