trying again; was only getting the link for feisty meow code.
[feisty_meow.git] / scripts / notes / info_overload_report.sh
index 19af089a0b9a75c8147b90673fd4c722126d7717..6bf78ca6fbf20f13bf86ddcf7e753526e973a737 100644 (file)
@@ -1,7 +1,7 @@
 
 # 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()
@@ -15,12 +15,12 @@ function calculate_depth()
 # notes are individual files of tasks, usually, although some are combined.
 note_depth=$(calculate_depth ~/cloud/grunty_notes)
 
-# projects are slightly more productive, ongoing things that are very active.
-project_depth=$(calculate_depth ~/quartz/projects)
+# 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=$(calculate_depth ~/quartz/example_source_code)
+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 ' ')
@@ -34,7 +34,7 @@ done
 
 ##############
 
-total_overload=$(($note_depth + $item_depth + $project_depth + $source_example_depth + $cloud_depth))
+total_overload=$(($note_depth + $item_depth + $unsorted_depth + $source_example_depth + $cloud_depth))
 
 report="\
 \n\
@@ -42,7 +42,7 @@ Current information overload consists of:\n\
 \n\
   $note_depth\tnote files\n\
   $item_depth\tto-do list items\n\
-  $project_depth\tproject files\n\
+  $unsorted_depth\tunsorted files\n\
   $source_example_depth\tsource examples\n\
   $cloud_depth\tcloud notes\n\
   -------\n\