aboutsummaryrefslogtreecommitdiff
path: root/misc/notes.txt
diff options
context:
space:
mode:
authorZachary Sloan2013-08-21 18:05:21 -0500
committerZachary Sloan2013-08-21 18:05:21 -0500
commit668a715e3626030edad87b428678ce9eca66eb3d (patch)
tree430eb239ae16175596b31656c9e01e763e40b50a /misc/notes.txt
parentf5398e8d1dde6a321d302a86fd8d8bb36789b92b (diff)
downloadgenenetwork2-668a715e3626030edad87b428678ce9eca66eb3d.tar.gz
Fixed an issue where correlationFunction was being imported
instead of its updated name correlation_function
Diffstat (limited to 'misc/notes.txt')
-rw-r--r--misc/notes.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/notes.txt b/misc/notes.txt
index ede8176b..91a0e67c 100644
--- a/misc/notes.txt
+++ b/misc/notes.txt
@@ -292,3 +292,10 @@ CREATE FULLTEXT INDEX __________ ON Table (Column);
If <4 character searches not working:
Add ft_min_word_len = 2 (to make te minimum characters 2) to config file
Rebuild relevant tables with fulltext indexes with "REPAIR TABLE _______ QUICK"
+
+===========================================
+
+To delete all .pyc files (for example if there's some issue you're having trouble resolving):
+find . -name '*.pyc' -delete
+http://stackoverflow.com/questions/785519/how-do-i-remove-all-pyc-files-from-a-project
+