Commit
·
98990ac
1
Parent(s):
ff09ecc
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,8 +30,6 @@ JOIN (
|
|
| 30 |
UNNEST(repo_name) AS unnested_repo_name) commits_table
|
| 31 |
ON
|
| 32 |
commits_table.unnested_repo_name = lang_table.repo_name
|
| 33 |
-
|
| 34 |
-
|
| 35 |
WHERE
|
| 36 |
((license_table.license LIKE 'mit')
|
| 37 |
OR (license_table.license LIKE 'artistic-2.0')
|
|
@@ -67,12 +65,38 @@ WHERE
|
|
| 67 |
OR (lang_table.language_name LIKE 'Matlab')
|
| 68 |
OR (lang_table.language_name LIKE 'MATLAB')
|
| 69 |
OR (lang_table.language_name LIKE 'Ruby') )
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
```
|
| 77 |
|
| 78 |
3,641,694,786
|
|
|
|
| 30 |
UNNEST(repo_name) AS unnested_repo_name) commits_table
|
| 31 |
ON
|
| 32 |
commits_table.unnested_repo_name = lang_table.repo_name
|
|
|
|
|
|
|
| 33 |
WHERE
|
| 34 |
((license_table.license LIKE 'mit')
|
| 35 |
OR (license_table.license LIKE 'artistic-2.0')
|
|
|
|
| 65 |
OR (lang_table.language_name LIKE 'Matlab')
|
| 66 |
OR (lang_table.language_name LIKE 'MATLAB')
|
| 67 |
OR (lang_table.language_name LIKE 'Ruby') )
|
| 68 |
+
AND
|
| 69 |
+
LENGTH(commits_table.message) > 5
|
| 70 |
+
AND
|
| 71 |
+
LENGTH(commits_table.message) < 10000
|
| 72 |
+
AND LOWER(commits_table.message) NOT LIKE 'update readme.md'
|
| 73 |
+
AND LOWER(commits_table.message) NOT LIKE 'initial commit'
|
| 74 |
+
AND LOWER(commits_table.message) NOT LIKE 'update'
|
| 75 |
+
AND LOWER(commits_table.message) NOT LIKE 'mirroring from micro.blog.'
|
| 76 |
+
AND LOWER(commits_table.message) NOT LIKE 'update data.json'
|
| 77 |
+
AND LOWER(commits_table.message) NOT LIKE 'update data.js'
|
| 78 |
+
AND LOWER(commits_table.message) NOT LIKE 'add files via upload'
|
| 79 |
+
AND LOWER(commits_table.message) NOT LIKE 'update readme'
|
| 80 |
+
AND LOWER(commits_table.message) NOT LIKE "can't you see i'm updating the time?"
|
| 81 |
+
AND LOWER(commits_table.message) NOT LIKE 'pi push'
|
| 82 |
+
AND LOWER(commits_table.message) NOT LIKE 'dummy'
|
| 83 |
+
AND LOWER(commits_table.message) NOT LIKE 'update index.html'
|
| 84 |
+
AND LOWER(commits_table.message) NOT LIKE 'first commit'
|
| 85 |
+
AND LOWER(commits_table.message) NOT LIKE 'create readme.md'
|
| 86 |
+
AND LOWER(commits_table.message) NOT LIKE 'heartbeat update'
|
| 87 |
+
AND LOWER(commits_table.message) NOT LIKE 'updated readme'
|
| 88 |
+
AND LOWER(commits_table.message) NOT LIKE 'update log'
|
| 89 |
+
AND LOWER(commits_table.message) NOT LIKE 'test'
|
| 90 |
+
AND LOWER(commits_table.message) NOT LIKE 'no message'
|
| 91 |
+
AND LOWER(commits_table.message) NOT LIKE 'readme'
|
| 92 |
+
AND LOWER(commits_table.message) NOT LIKE 'wip'
|
| 93 |
+
AND LOWER(commits_table.message) NOT LIKE 'updates'
|
| 94 |
+
AND LOWER(commits_table.message) NOT LIKE 'first commit'
|
| 95 |
+
AND LOWER(commits_table.message) NOT LIKE 'commit'
|
| 96 |
+
AND LOWER(commits_table.message) NOT LIKE 'update _config.yaml'
|
| 97 |
+
AND LOWER(commits_table.message) NOT LIKE 'update data.json'
|
| 98 |
+
AND LOWER(commits_table.message) NOT LIKE 'update data.js'
|
| 99 |
+
AND LOWER(commits_table.message) NOT LIKE 'merge%';
|
| 100 |
```
|
| 101 |
|
| 102 |
3,641,694,786
|