From b4bd8dd1b1c94a880372872560f32839807c56a0 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Tue, 23 Dec 2014 15:13:36 -0200 Subject: Implement sx-tab-meta-or-main command --- sx-tab.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sx-tab.el b/sx-tab.el index 6c5e21e..d2e278f 100644 --- a/sx-tab.el +++ b/sx-tab.el @@ -189,5 +189,20 @@ If SITE is nil, use `sx-default-site'." (file-name-directory load-file-name))) nil t) + +;;; Inter-modes navigation +(defun sx-tab-meta-or-main () + "Switch to the meta version of a main site, or vice-versa. +Inside a question, go to the frontpage of the site this question +belongs to." + (interactive) + (if (and (derived-mode-p 'sx-question-list-mode) + sx-question-list--site) + (sx-question-list-switch-site + (if (string-match "\\`meta\\." sx-question-list--site) + (replace-match "" :fixedcase nil sx-question-list--site) + (concat "meta." sx-question-list--site))) + (sx-tab-frontpage nil (sx--site (sx--data-here 'question))))) + (provide 'sx-tab) ;;; sx-tab.el ends here -- cgit v1.2.3 From 6b837ca538576d97c30af8091a2ebbc2691ddaff Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Tue, 23 Dec 2014 23:33:19 -0200 Subject: get-questions accepts a submethod argument --- sx-question.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sx-question.el b/sx-question.el index 3fcc438..a890d37 100644 --- a/sx-question.el +++ b/sx-question.el @@ -26,7 +26,7 @@ (require 'sx-filter) (require 'sx-method) -(defun sx-question-get-questions (site &optional page keywords) +(defun sx-question-get-questions (site &optional page keywords submethod) "Get SITE questions. Return page PAGE (the first if nil). Return a list of question. Each question is an alist of properties returned by the API with an added (site SITE) @@ -39,6 +39,7 @@ KEYWORDS are added to the method call along with PAGE. :keywords `((page . ,page) ,@keywords) :site site :auth t + :submethod submethod :filter sx-browse-filter)) (defun sx-question-get-question (site question-id) -- cgit v1.2.3 From 635c863b0c0d19db45d44ce0f25f41f0be650c92 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Tue, 23 Dec 2014 23:33:37 -0200 Subject: 3 more tabs: unanswered, unanswered my tags, featured --- sx-tab.el | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sx-tab.el b/sx-tab.el index d2e278f..4b9d50b 100644 --- a/sx-tab.el +++ b/sx-tab.el @@ -189,6 +189,48 @@ If SITE is nil, use `sx-default-site'." (file-name-directory load-file-name))) nil t) + +;;; Unanswered +(sx-tab--define "Unanswered" + (lambda (page) + (sx-question-get-questions + sx-question-list--site page nil 'unanswered))) +;;;###autoload +(autoload 'sx-tab-unanswered + (expand-file-name + "sx-tab" + (when load-file-name + (file-name-directory load-file-name))) + nil t) + + +;;; Unanswered My-tags +(sx-tab--define "Unanswered-my-tags" + (lambda (page) + (sx-question-get-questions + sx-question-list--site page nil 'unanswered/my-tags))) +;;;###autoload +(autoload 'sx-tab-unanswered + (expand-file-name + "sx-tab" + (when load-file-name + (file-name-directory load-file-name))) + nil t) + + +;;; Featured +(sx-tab--define "Featured" + (lambda (page) + (sx-question-get-questions + sx-question-list--site page nil 'featured))) +;;;###autoload +(autoload 'sx-tab-featured + (expand-file-name + "sx-tab" + (when load-file-name + (file-name-directory load-file-name))) + nil t) + ;;; Inter-modes navigation (defun sx-tab-meta-or-main () -- cgit v1.2.3 From 542ddf73506c2c297106e4b3f4ec0a1d80a35ad8 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Tue, 23 Dec 2014 23:40:01 -0200 Subject: Define new keymap for inter-modes motion --- sx-goto.el | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 sx-goto.el diff --git a/sx-goto.el b/sx-goto.el new file mode 100644 index 0000000..f1a55bc --- /dev/null +++ b/sx-goto.el @@ -0,0 +1,56 @@ +;;; sx-goto.el --- Keymap for navigating between pages. -*- lexical-binding: t; -*- + +;; Copyright (C) 2014 Artur Malabarba + +;; Author: Artur Malabarba + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;;; Code: + +(require 'sx) +(require 'sx-filter) +(require 'sx-method) +(require 'sx-question-list) + + +;;; Keybinds +;;;###autoload +(define-prefix-command 'sx-goto-map) + +(mapc (lambda (x) (define-key sx-goto-map (car x) (cadr x))) + '( + ;; These immitate the site's G hotkey. + ("m" sx-tab-meta-or-main) + ("a" sx-ask) + ("h" sx-tab-frontpage) + ;; This is `n' on the site. + ("u" sx-tab-unanswered) + ;; These are extra things we can do, because we're awesome. + ("i" sx-inbox) + ("f" sx-tab-featured) + ("U" sx-tab-unanswered-my-tags) + ("n" sx-tab-newest) + ("w" sx-tab-week) + ("v" sx-tab-topvoted) + )) + +(provide 'sx-goto) +;;; sx-goto.el ends here + +;; Local Variables: +;; indent-tabs-mode: nil +;; End: -- cgit v1.2.3 From 00ccd139248e782cd8316eff65c26aed838c7e46 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Mon, 29 Dec 2014 18:44:20 -0200 Subject: Don't barf if read-question cdr is not a date --- sx-question.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sx-question.el b/sx-question.el index 03ebb4b..5ce5d7f 100644 --- a/sx-question.el +++ b/sx-question.el @@ -118,7 +118,8 @@ See `sx-question--user-read-list'." ;; Question already present. ((setq cell (assoc .question_id site-cell)) ;; Current version is newer than cached version. - (when (> .last_activity_date (cdr cell)) + (when (or (not (numberp (cdr cell))) + (> .last_activity_date (cdr cell))) (setcdr cell .last_activity_date))) ;; Question wasn't present. (t -- cgit v1.2.3 From 53fdb88732568fb9c9e5d682f88371e602064d42 Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Fri, 2 Jan 2015 20:07:34 -0500 Subject: Add test file for state changes --- test/test-state.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/test-state.el diff --git a/test/test-state.el b/test/test-state.el new file mode 100644 index 0000000..32f52b2 --- /dev/null +++ b/test/test-state.el @@ -0,0 +1,12 @@ +(defmacro with-question-data (cell id &rest body) + (declare (indent 2)) + `(let ((,cell '((question_id . ,id) + (site_par . "emacs") + (last_activity_date . 1234123456)))) + ,@body)) + +(ert-deftest test-question-mark-read () + "00ccd139248e782cd8316eff65c26aed838c7e46" + (should + (with-question-data q nil + (sx-question--mark-read q)))) -- cgit v1.2.3 From 5332946380610d5166c2d7b517a817e021130edd Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 11:30:04 -0200 Subject: More tests --- test/test-state.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/test-state.el b/test/test-state.el index 32f52b2..7af4a64 100644 --- a/test/test-state.el +++ b/test/test-state.el @@ -7,6 +7,16 @@ (ert-deftest test-question-mark-read () "00ccd139248e782cd8316eff65c26aed838c7e46" + (with-question-data q 10 + ;; Check basic logic. + (should (sx-question--mark-read q)) + (should (sx-question--read-p q)) + (should (not (setcdr (assq 10 (cdr (assoc "emacs" sx-question--user-read-list))) nil))) + ;; Don't freak out because the cdr was nil. + (should (not (sx-question--read-p q))) + (should (sx-question--mark-read q))) (should (with-question-data q nil + ;; Don't freak out because question_id was nil. (sx-question--mark-read q)))) + -- cgit v1.2.3 From 38c7c3e8f062dc8f0f61136312d8bccdb78f8f2e Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 11:36:36 -0200 Subject: Rename to sx-switchto.el --- sx-goto.el | 56 -------------------------------------------------------- sx-switchto.el | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 56 deletions(-) delete mode 100644 sx-goto.el create mode 100644 sx-switchto.el diff --git a/sx-goto.el b/sx-goto.el deleted file mode 100644 index f1a55bc..0000000 --- a/sx-goto.el +++ /dev/null @@ -1,56 +0,0 @@ -;;; sx-goto.el --- Keymap for navigating between pages. -*- lexical-binding: t; -*- - -;; Copyright (C) 2014 Artur Malabarba - -;; Author: Artur Malabarba - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see . - -;;; Commentary: - -;;; Code: - -(require 'sx) -(require 'sx-filter) -(require 'sx-method) -(require 'sx-question-list) - - -;;; Keybinds -;;;###autoload -(define-prefix-command 'sx-goto-map) - -(mapc (lambda (x) (define-key sx-goto-map (car x) (cadr x))) - '( - ;; These immitate the site's G hotkey. - ("m" sx-tab-meta-or-main) - ("a" sx-ask) - ("h" sx-tab-frontpage) - ;; This is `n' on the site. - ("u" sx-tab-unanswered) - ;; These are extra things we can do, because we're awesome. - ("i" sx-inbox) - ("f" sx-tab-featured) - ("U" sx-tab-unanswered-my-tags) - ("n" sx-tab-newest) - ("w" sx-tab-week) - ("v" sx-tab-topvoted) - )) - -(provide 'sx-goto) -;;; sx-goto.el ends here - -;; Local Variables: -;; indent-tabs-mode: nil -;; End: diff --git a/sx-switchto.el b/sx-switchto.el new file mode 100644 index 0000000..064ba82 --- /dev/null +++ b/sx-switchto.el @@ -0,0 +1,56 @@ +;;; sx-switchto.el --- Keymap for navigating between pages. -*- lexical-binding: t; -*- + +;; Copyright (C) 2014 Artur Malabarba + +;; Author: Artur Malabarba + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;;; Code: + +(require 'sx) +(require 'sx-filter) +(require 'sx-method) +(require 'sx-question-list) + + +;;; Keybinds +;;;###autoload +(define-prefix-command 'sx-switchto-map) + +(mapc (lambda (x) (define-key sx-switchto-map (car x) (cadr x))) + '( + ;; These immitate the site's G hotkey. + ("m" sx-tab-meta-or-main) + ("a" sx-ask) + ("h" sx-tab-frontpage) + ;; This is `n' on the site. + ("u" sx-tab-unanswered) + ;; These are extra things we can do, because we're awesome. + ("i" sx-inbox) + ("f" sx-tab-featured) + ("U" sx-tab-unanswered-my-tags) + ("n" sx-tab-newest) + ("w" sx-tab-week) + ("v" sx-tab-topvoted) + )) + +(provide 'sx-switchto) +;;; sx-switchto.el ends here + +;; Local Variables: +;; indent-tabs-mode: nil +;; End: -- cgit v1.2.3 From 6c7093fd2b9e0bc411e350b009a96fbe1ee53e27 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 11:36:48 -0200 Subject: Add switchto to sx-load --- sx-load.el | 1 + 1 file changed, 1 insertion(+) diff --git a/sx-load.el b/sx-load.el index e7cb6b0..8de4374 100644 --- a/sx-load.el +++ b/sx-load.el @@ -43,6 +43,7 @@ sx-request sx-search sx-site + sx-switchto sx-tab )) -- cgit v1.2.3 From 7792498420eeb3c1ba8de447b90ae19a9b9e5410 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 11:42:01 -0200 Subject: Alphabetical sort. --- sx-switchto.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sx-switchto.el b/sx-switchto.el index 064ba82..8305644 100644 --- a/sx-switchto.el +++ b/sx-switchto.el @@ -34,18 +34,18 @@ (mapc (lambda (x) (define-key sx-switchto-map (car x) (cadr x))) '( ;; These immitate the site's G hotkey. - ("m" sx-tab-meta-or-main) ("a" sx-ask) ("h" sx-tab-frontpage) + ("m" sx-tab-meta-or-main) ;; This is `n' on the site. ("u" sx-tab-unanswered) ;; These are extra things we can do, because we're awesome. - ("i" sx-inbox) ("f" sx-tab-featured) - ("U" sx-tab-unanswered-my-tags) + ("i" sx-inbox) ("n" sx-tab-newest) - ("w" sx-tab-week) + ("U" sx-tab-unanswered-my-tags) ("v" sx-tab-topvoted) + ("w" sx-tab-week) )) (provide 'sx-switchto) -- cgit v1.2.3 From bab11dd61c08f3522d874166d7033dd867492d11 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 11:42:30 -0200 Subject: ADd sx-tab-switch --- sx-switchto.el | 1 + 1 file changed, 1 insertion(+) diff --git a/sx-switchto.el b/sx-switchto.el index 8305644..46a085e 100644 --- a/sx-switchto.el +++ b/sx-switchto.el @@ -43,6 +43,7 @@ ("f" sx-tab-featured) ("i" sx-inbox) ("n" sx-tab-newest) + ("t" sx-tab-switch) ("U" sx-tab-unanswered-my-tags) ("v" sx-tab-topvoted) ("w" sx-tab-week) -- cgit v1.2.3 From 191dc355ae2ca00cdb84d01298a8caea14dbe8da Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 11:43:03 -0200 Subject: Add sx-question-list-switch-site --- sx-switchto.el | 1 + 1 file changed, 1 insertion(+) diff --git a/sx-switchto.el b/sx-switchto.el index 46a085e..e5889e1 100644 --- a/sx-switchto.el +++ b/sx-switchto.el @@ -43,6 +43,7 @@ ("f" sx-tab-featured) ("i" sx-inbox) ("n" sx-tab-newest) + ("s" sx-question-list-switch-site) ("t" sx-tab-switch) ("U" sx-tab-unanswered-my-tags) ("v" sx-tab-topvoted) -- cgit v1.2.3 From 25cf5bf2e784ac870fa4c6f00502eda6dc8e7f22 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 12:06:23 -0200 Subject: Define some keys conditionally --- sx-switchto.el | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/sx-switchto.el b/sx-switchto.el index e5889e1..1a2c3a0 100644 --- a/sx-switchto.el +++ b/sx-switchto.el @@ -43,13 +43,31 @@ ("f" sx-tab-featured) ("i" sx-inbox) ("n" sx-tab-newest) - ("s" sx-question-list-switch-site) ("t" sx-tab-switch) ("U" sx-tab-unanswered-my-tags) ("v" sx-tab-topvoted) ("w" sx-tab-week) )) + +;;; These are keys which depend on context. +;;;; For instance, it makes no sense to have `switch-site' bound to a +;;;; key on a buffer with no `sx-question-list--site' variable. +(defmacro sx--define-conditional-key (keymap key def &rest body) + "In KEYMAP, define key sequence KEY as DEF conditionally. +This is like `define-key', except the definition \"disapears\" +whenever BODY evaluates to nil." + (declare (indent 3) + (debug (form form form &rest sexp))) + `(define-key ,keymap ,key + '(menu-item + ,(format "maybe-%s" (or (car (cdr-safe def)) def)) ignore + :filter (lambda (&optional _) + (when (progn ,@body) ,def))))) + +(sx--define-conditional-key sx-switchto-map "s" #'sx-question-list-switch-site + (and (boundp 'sx-question-list--site) sx-question-list--site)) + (provide 'sx-switchto) ;;; sx-switchto.el ends here -- cgit v1.2.3 From 33d0e830929ef07f0e1aee84189fb8aec8d52f62 Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 12:08:31 -0200 Subject: Bind switchto-map to "s" --- sx-question-list.el | 4 ++-- sx-question-mode.el | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/sx-question-list.el b/sx-question-list.el index cf849db..c189ad8 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -314,10 +314,10 @@ into consideration. ("J" sx-question-list-next-far) ("K" sx-question-list-previous-far) ("g" sx-question-list-refresh) - (":" sx-question-list-switch-site) ("t" sx-tab-switch) ("a" sx-ask) - ("s" sx-search) + ("S" sx-search) + ("s" sx-switchto-map) ("v" sx-visit-externally) ("u" sx-toggle-upvote) ("d" sx-toggle-downvote) diff --git a/sx-question-mode.el b/sx-question-mode.el index 721f935..c618c96 100644 --- a/sx-question-mode.el +++ b/sx-question-mode.el @@ -231,7 +231,8 @@ Letters do not insert themselves; instead, they are commands. (" " scroll-up-command) ("a" sx-answer) ("e" sx-edit) - ("s" sx-search) + ("S" sx-search) + ("s" sx-switchto-map) (,(kbd "S-SPC") scroll-down-command) ([backspace] scroll-down-command) ([tab] forward-button) -- cgit v1.2.3 From 671dceecafb9cb48b739b7fb54bf2b71bbc7e32c Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 12:54:28 -0200 Subject: Make question-list--site buffer local. Don't ask me why it wasn't already. --- sx-question-list.el | 1 + 1 file changed, 1 insertion(+) diff --git a/sx-question-list.el b/sx-question-list.el index c189ad8..9e08787 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -399,6 +399,7 @@ Non-interactively, DATA is a question alist." (defvar sx-question-list--site nil "Site being displayed in the *question-list* buffer.") +(make-variable-buffer-local 'sx-question-list--site) (defun sx-question-list-refresh (&optional redisplay no-update) "Update the list of questions. -- cgit v1.2.3 From e6c5b821b1c13ec0125e2a305f121e763a79ddfc Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Sun, 4 Jan 2015 13:16:42 -0200 Subject: sx-tag--get-all also retrieves synonyms --- sx-tag.el | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/sx-tag.el b/sx-tag.el index 07b7a77..8c468a6 100644 --- a/sx-tag.el +++ b/sx-tag.el @@ -28,18 +28,24 @@ ;;; Getting the list from a site (defvar sx-tag-filter (sx-filter-from-nil - (tag.name)) + (tag.name + tag.synonyms)) "Filter used when querying tags.") -(defun sx-tag--get-all (site) - "Retrieve all tags for SITE." - (mapcar - (lambda (tag) - (cdr (assoc 'name tag))) +(defun sx-tag--get-all (site &optional no-synonyms) + "Retrieve all tags for SITE. +If NO-SYNONYMS is non-nil, don't return synonyms." + (cl-reduce + (lambda (so-far tag) + (let-alist tag + (cons .name + (if no-synonyms so-far + (append .synonyms so-far))))) (sx-method-call 'tags :get-all t :filter sx-tag-filter - :site site))) + :site site) + :initial-value nil)) (defun sx-tag--get-some-tags-containing (site string) "Return at most 100 tags for SITE containing STRING. -- cgit v1.2.3 From f5efa010e4c16eda6d3652b325efaf524acd9422 Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Sun, 4 Jan 2015 12:16:00 -0500 Subject: Add page and pagesize only if not already present --- sx-method.el | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/sx-method.el b/sx-method.el index e0764fb..e68a4ea 100644 --- a/sx-method.el +++ b/sx-method.el @@ -60,6 +60,9 @@ authentication. :PAGE is the page number which will be requested :PAGESIZE is the number of items to retrieve per request, default 100 +Any conflicting information in :KEYWORDS overrides the :PAGE +and :PAGESIZE settings. + When AUTH is nil, it is assumed that no auth-requiring filters or methods will be used. If they are an error will be signaled. This is to ensure awareness of where auth is needed. @@ -127,8 +130,10 @@ Return the entire response as a complex alist." (error "This request requires authentication.")))) ;; Concatenate all parameters now that filter is ensured. (push `(filter . ,(sx-filter-get-var filter)) keywords) - (push `(page . ,page) keywords) - (push `(pagesize . ,pagesize) keywords) + (unless (assq 'page keywords) + (push `(page . ,page) keywords)) + (unless (assq 'pagesize keywords) + (push `(pagesize . ,pagesize) keywords)) (when site (push `(site . ,site) keywords)) (funcall call -- cgit v1.2.3 From 9a06e13b4e52b18fb2dd0ed9b759cecd863af169 Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Sun, 4 Jan 2015 12:21:50 -0500 Subject: Declare lexical binding on all files --- sx-cache.el | 2 +- sx-encoding.el | 2 +- sx-load.el | 2 +- sx-time.el | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sx-cache.el b/sx-cache.el index 51c2267..e68397d 100644 --- a/sx-cache.el +++ b/sx-cache.el @@ -1,4 +1,4 @@ -;;; sx-cache.el --- caching +;;; sx-cache.el --- caching -*- lexical-binding: t; -*- ;; Copyright (C) 2014 Sean Allred diff --git a/sx-encoding.el b/sx-encoding.el index 0e66677..795f175 100644 --- a/sx-encoding.el +++ b/sx-encoding.el @@ -1,4 +1,4 @@ -;;; sx-encoding.el --- encoding +;;; sx-encoding.el --- encoding -*- lexical-binding: t; -*- ;; Copyright (C) 2014 Sean Allred diff --git a/sx-load.el b/sx-load.el index e7cb6b0..9df975d 100644 --- a/sx-load.el +++ b/sx-load.el @@ -1,4 +1,4 @@ -;;; sx-load.el --- Load all files of the sx package. +;;; sx-load.el --- Load all files of the sx package. -*- lexical-binding: t; -*- ;; Copyright (C) 2014 Artur Malabarba diff --git a/sx-time.el b/sx-time.el index 3de124d..e05d95a 100644 --- a/sx-time.el +++ b/sx-time.el @@ -1,4 +1,4 @@ -;;; sx-time.el --- time +;;; sx-time.el --- time -*- lexical-binding: t; -*- ;; Copyright (C) 2014 Sean Allred -- cgit v1.2.3 From ac34d14dd0dc61d8aad3d62b6e95c65208110c37 Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Sun, 4 Jan 2015 12:36:24 -0500 Subject: Remove .total from default filter See http://api.stackexchange.com/docs/paging#total. --- sx-filter.el | 1 - 1 file changed, 1 deletion(-) diff --git a/sx-filter.el b/sx-filter.el index ad37e67..c67d05b 100644 --- a/sx-filter.el +++ b/sx-filter.el @@ -72,7 +72,6 @@ All wrapper fields are included by default." .page_size .quota_max .quota_remaining - .total .type) nil none))) -- cgit v1.2.3 From a9dfed758f2ef75081606228fdff87ad9c6f6ddb Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Sun, 4 Jan 2015 13:00:55 -0500 Subject: Remove data/ directory This will be tracked in a separate `data` branch or similar. --- data/tags/academia.el | 341 - data/tags/android.el | 1156 - data/tags/anime.el | 675 - data/tags/apple.el | 1025 - data/tags/arduino.el | 193 - data/tags/askubuntu.el | 2711 --- data/tags/astronomy.el | 283 - data/tags/aviation.el | 474 - data/tags/beer.el | 92 - data/tags/bicycles.el | 379 - data/tags/biology.el | 618 - data/tags/bitcoin.el | 603 - data/tags/blender.el | 136 - data/tags/boardgames.el | 467 - data/tags/bricks.el | 141 - data/tags/buddhism.el | 299 - data/tags/chemistry.el | 203 - data/tags/chess.el | 257 - data/tags/chinese.el | 169 - data/tags/christianity.el | 817 - data/tags/codegolf.el | 193 - data/tags/codereview.el | 734 - data/tags/cogsci.el | 257 - data/tags/cooking.el | 723 - data/tags/craftcms.el | 292 - data/tags/crypto.el | 351 - data/tags/cs.el | 457 - data/tags/cs50.el | 467 - data/tags/cstheory.el | 472 - data/tags/datascience.el | 159 - data/tags/dba.el | 830 - data/tags/diy.el | 665 - data/tags/drupal.el | 841 - data/tags/dsp.el | 313 - data/tags/earthscience.el | 271 - data/tags/ebooks.el | 165 - data/tags/economics.el | 227 - data/tags/edx-cs169-1x.el | 322 - data/tags/electronics.el | 1382 -- data/tags/ell.el | 351 - data/tags/emacs.el | 454 - data/tags/english.el | 902 - data/tags/expatriates.el | 212 - data/tags/expressionengine.el | 607 - data/tags/fitness.el | 389 - data/tags/freelancing.el | 101 - data/tags/french.el | 232 - data/tags/gamedev.el | 919 - data/tags/gaming.el | 3386 --- data/tags/gardening.el | 397 - data/tags/genealogy.el | 293 - data/tags/german.el | 231 - data/tags/gis.el | 1659 -- data/tags/graphicdesign.el | 487 - data/tags/ham.el | 197 - data/tags/hermeneutics.el | 271 - data/tags/hinduism.el | 341 - data/tags/history.el | 579 - data/tags/homebrew.el | 395 - data/tags/hsm.el | 142 - data/tags/islam.el | 555 - data/tags/italian.el | 73 - data/tags/ja.stackoverflow.el | 324 - data/tags/japanese.el | 236 - data/tags/joomla.el | 234 - data/tags/judaism.el | 887 - data/tags/linguistics.el | 478 - data/tags/magento.el | 797 - data/tags/martialarts.el | 150 - data/tags/math.el | 1102 - data/tags/matheducators.el | 176 - data/tags/mathematica.el | 560 - data/tags/mathoverflow.net.el | 1281 -- data/tags/mechanics.el | 591 - data/tags/meta.academia.el | 93 - data/tags/meta.android.el | 117 - data/tags/meta.anime.el | 96 - data/tags/meta.apple.el | 104 - data/tags/meta.arduino.el | 83 - data/tags/meta.askubuntu.el | 191 - data/tags/meta.astronomy.el | 75 - data/tags/meta.aviation.el | 83 - data/tags/meta.beer.el | 77 - data/tags/meta.bicycles.el | 93 - data/tags/meta.biology.el | 89 - data/tags/meta.bitcoin.el | 77 - data/tags/meta.blender.el | 76 - data/tags/meta.boardgames.el | 81 - data/tags/meta.bricks.el | 78 - data/tags/meta.buddhism.el | 77 - data/tags/meta.chemistry.el | 79 - data/tags/meta.chess.el | 77 - data/tags/meta.chinese.el | 80 - data/tags/meta.christianity.el | 126 - data/tags/meta.codegolf.el | 121 - data/tags/meta.codereview.el | 128 - data/tags/meta.cogsci.el | 92 - data/tags/meta.cooking.el | 100 - data/tags/meta.craftcms.el | 77 - data/tags/meta.crypto.el | 82 - data/tags/meta.cs.el | 100 - data/tags/meta.cs50.el | 71 - data/tags/meta.cstheory.el | 96 - data/tags/meta.datascience.el | 72 - data/tags/meta.dba.el | 84 - data/tags/meta.diy.el | 86 - data/tags/meta.drupal.el | 109 - data/tags/meta.dsp.el | 72 - data/tags/meta.earthscience.el | 90 - data/tags/meta.ebooks.el | 78 - data/tags/meta.economics.el | 88 - data/tags/meta.edx-cs169-1x.el | 104 - data/tags/meta.el | 1279 -- data/tags/meta.electronics.el | 108 - data/tags/meta.ell.el | 85 - data/tags/meta.emacs.el | 92 - data/tags/meta.english.el | 160 - data/tags/meta.expatriates.el | 81 - data/tags/meta.expressionengine.el | 71 - data/tags/meta.fitness.el | 83 - data/tags/meta.freelancing.el | 76 - data/tags/meta.french.el | 96 - data/tags/meta.gamedev.el | 96 - data/tags/meta.gaming.el | 178 - data/tags/meta.gardening.el | 80 - data/tags/meta.genealogy.el | 80 - data/tags/meta.german.el | 87 - data/tags/meta.gis.el | 107 - data/tags/meta.graphicdesign.el | 91 - data/tags/meta.ham.el | 83 - data/tags/meta.hermeneutics.el | 87 - data/tags/meta.hinduism.el | 86 - data/tags/meta.history.el | 84 - data/tags/meta.homebrew.el | 80 - data/tags/meta.hsm.el | 74 - data/tags/meta.islam.el | 120 - data/tags/meta.italian.el | 70 - data/tags/meta.ja.stackoverflow.el | 63 - data/tags/meta.japanese.el | 88 - data/tags/meta.joomla.el | 80 - data/tags/meta.judaism.el | 144 - data/tags/meta.linguistics.el | 88 - data/tags/meta.magento.el | 88 - data/tags/meta.martialarts.el | 74 - data/tags/meta.math.el | 207 - data/tags/meta.matheducators.el | 89 - data/tags/meta.mathematica.el | 92 - data/tags/meta.mathoverflow.net.el | 105 - data/tags/meta.mechanics.el | 74 - data/tags/meta.moderators.el | 77 - data/tags/meta.money.el | 85 - data/tags/meta.movies.el | 97 - data/tags/meta.music.el | 98 - data/tags/meta.networkengineering.el | 76 - data/tags/meta.opendata.el | 76 - data/tags/meta.outdoors.el | 80 - data/tags/meta.parenting.el | 89 - data/tags/meta.patents.el | 81 - data/tags/meta.pets.el | 80 - data/tags/meta.philosophy.el | 76 - data/tags/meta.photo.el | 121 - data/tags/meta.physics.el | 112 - data/tags/meta.pm.el | 85 - data/tags/meta.poker.el | 70 - data/tags/meta.politics.el | 81 - data/tags/meta.productivity.el | 77 - data/tags/meta.programmers.el | 167 - data/tags/meta.pt.stackoverflow.el | 178 - data/tags/meta.puzzling.el | 104 - data/tags/meta.quant.el | 75 - data/tags/meta.raspberrypi.el | 79 - data/tags/meta.reverseengineering.el | 76 - data/tags/meta.robotics.el | 74 - data/tags/meta.rpg.el | 114 - data/tags/meta.russian.el | 78 - data/tags/meta.salesforce.el | 87 - data/tags/meta.scicomp.el | 76 - data/tags/meta.scifi.el | 164 - data/tags/meta.security.el | 104 - data/tags/meta.serverfault.el | 151 - data/tags/meta.sharepoint.el | 96 - data/tags/meta.skeptics.el | 113 - data/tags/meta.softwarerecs.el | 111 - data/tags/meta.sound.el | 78 - data/tags/meta.space.el | 88 - data/tags/meta.spanish.el | 80 - data/tags/meta.sports.el | 75 - data/tags/meta.sqa.el | 73 - data/tags/meta.stackoverflow.el | 389 - data/tags/meta.startups.el | 76 - data/tags/meta.stats.el | 112 - data/tags/meta.superuser.el | 207 - data/tags/meta.sustainability.el | 78 - data/tags/meta.tex.el | 143 - data/tags/meta.tor.el | 75 - data/tags/meta.travel.el | 102 - data/tags/meta.tridion.el | 74 - data/tags/meta.unix.el | 125 - data/tags/meta.ux.el | 114 - data/tags/meta.video.el | 75 - data/tags/meta.webapps.el | 112 - data/tags/meta.webmasters.el | 89 - data/tags/meta.windowsphone.el | 74 - data/tags/meta.wordpress.el | 99 - data/tags/meta.workplace.el | 111 - data/tags/meta.worldbuilding.el | 88 - data/tags/meta.writers.el | 94 - data/tags/moderators.el | 99 - data/tags/money.el | 734 - data/tags/movies.el | 1769 -- data/tags/music.el | 396 - data/tags/networkengineering.el | 346 - data/tags/opendata.el | 196 - data/tags/outdoors.el | 350 - data/tags/parenting.el | 293 - data/tags/patents.el | 1188 - data/tags/pets.el | 224 - data/tags/philosophy.el | 324 - data/tags/photo.el | 1041 - data/tags/physics.el | 834 - data/tags/pm.el | 217 - data/tags/poker.el | 103 - data/tags/politics.el | 287 - data/tags/productivity.el | 180 - data/tags/programmers.el | 1761 -- data/tags/pt.stackoverflow.el | 1774 -- data/tags/puzzling.el | 118 - data/tags/quant.el | 495 - data/tags/raspberrypi.el | 347 - data/tags/reverseengineering.el | 240 - data/tags/robotics.el | 203 - data/tags/rpg.el | 680 - data/tags/russian.el | 120 - data/tags/salesforce.el | 974 - data/tags/scicomp.el | 307 - data/tags/scifi.el | 1637 -- data/tags/security.el | 684 - data/tags/serverfault.el | 5065 ----- data/tags/sharepoint.el | 1151 - data/tags/skeptics.el | 559 - data/tags/softwarerecs.el | 597 - data/tags/sound.el | 1207 - data/tags/space.el | 584 - data/tags/spanish.el | 172 - data/tags/sports.el | 179 - data/tags/sqa.el | 222 - data/tags/stackapps.el | 200 - data/tags/stackoverflow.el | 39549 --------------------------------- data/tags/startups.el | 249 - data/tags/stats.el | 1080 - data/tags/superuser.el | 5053 ----- data/tags/sustainability.el | 185 - data/tags/tex.el | 1179 - data/tags/tor.el | 194 - data/tags/travel.el | 1334 -- data/tags/tridion.el | 175 - data/tags/unix.el | 2000 -- data/tags/ux.el | 863 - data/tags/video.el | 228 - data/tags/webapps.el | 938 - data/tags/webmasters.el | 872 - data/tags/windowsphone.el | 244 - data/tags/wordpress.el | 807 - data/tags/workplace.el | 280 - data/tags/worldbuilding.el | 221 - data/tags/writers.el | 236 - 266 files changed, 137860 deletions(-) delete mode 100644 data/tags/academia.el delete mode 100644 data/tags/android.el delete mode 100644 data/tags/anime.el delete mode 100644 data/tags/apple.el delete mode 100644 data/tags/arduino.el delete mode 100644 data/tags/askubuntu.el delete mode 100644 data/tags/astronomy.el delete mode 100644 data/tags/aviation.el delete mode 100644 data/tags/beer.el delete mode 100644 data/tags/bicycles.el delete mode 100644 data/tags/biology.el delete mode 100644 data/tags/bitcoin.el delete mode 100644 data/tags/blender.el delete mode 100644 data/tags/boardgames.el delete mode 100644 data/tags/bricks.el delete mode 100644 data/tags/buddhism.el delete mode 100644 data/tags/chemistry.el delete mode 100644 data/tags/chess.el delete mode 100644 data/tags/chinese.el delete mode 100644 data/tags/christianity.el delete mode 100644 data/tags/codegolf.el delete mode 100644 data/tags/codereview.el delete mode 100644 data/tags/cogsci.el delete mode 100644 data/tags/cooking.el delete mode 100644 data/tags/craftcms.el delete mode 100644 data/tags/crypto.el delete mode 100644 data/tags/cs.el delete mode 100644 data/tags/cs50.el delete mode 100644 data/tags/cstheory.el delete mode 100644 data/tags/datascience.el delete mode 100644 data/tags/dba.el delete mode 100644 data/tags/diy.el delete mode 100644 data/tags/drupal.el delete mode 100644 data/tags/dsp.el delete mode 100644 data/tags/earthscience.el delete mode 100644 data/tags/ebooks.el delete mode 100644 data/tags/economics.el delete mode 100644 data/tags/edx-cs169-1x.el delete mode 100644 data/tags/electronics.el delete mode 100644 data/tags/ell.el delete mode 100644 data/tags/emacs.el delete mode 100644 data/tags/english.el delete mode 100644 data/tags/expatriates.el delete mode 100644 data/tags/expressionengine.el delete mode 100644 data/tags/fitness.el delete mode 100644 data/tags/freelancing.el delete mode 100644 data/tags/french.el delete mode 100644 data/tags/gamedev.el delete mode 100644 data/tags/gaming.el delete mode 100644 data/tags/gardening.el delete mode 100644 data/tags/genealogy.el delete mode 100644 data/tags/german.el delete mode 100644 data/tags/gis.el delete mode 100644 data/tags/graphicdesign.el delete mode 100644 data/tags/ham.el delete mode 100644 data/tags/hermeneutics.el delete mode 100644 data/tags/hinduism.el delete mode 100644 data/tags/history.el delete mode 100644 data/tags/homebrew.el delete mode 100644 data/tags/hsm.el delete mode 100644 data/tags/islam.el delete mode 100644 data/tags/italian.el delete mode 100644 data/tags/ja.stackoverflow.el delete mode 100644 data/tags/japanese.el delete mode 100644 data/tags/joomla.el delete mode 100644 data/tags/judaism.el delete mode 100644 data/tags/linguistics.el delete mode 100644 data/tags/magento.el delete mode 100644 data/tags/martialarts.el delete mode 100644 data/tags/math.el delete mode 100644 data/tags/matheducators.el delete mode 100644 data/tags/mathematica.el delete mode 100644 data/tags/mathoverflow.net.el delete mode 100644 data/tags/mechanics.el delete mode 100644 data/tags/meta.academia.el delete mode 100644 data/tags/meta.android.el delete mode 100644 data/tags/meta.anime.el delete mode 100644 data/tags/meta.apple.el delete mode 100644 data/tags/meta.arduino.el delete mode 100644 data/tags/meta.askubuntu.el delete mode 100644 data/tags/meta.astronomy.el delete mode 100644 data/tags/meta.aviation.el delete mode 100644 data/tags/meta.beer.el delete mode 100644 data/tags/meta.bicycles.el delete mode 100644 data/tags/meta.biology.el delete mode 100644 data/tags/meta.bitcoin.el delete mode 100644 data/tags/meta.blender.el delete mode 100644 data/tags/meta.boardgames.el delete mode 100644 data/tags/meta.bricks.el delete mode 100644 data/tags/meta.buddhism.el delete mode 100644 data/tags/meta.chemistry.el delete mode 100644 data/tags/meta.chess.el delete mode 100644 data/tags/meta.chinese.el delete mode 100644 data/tags/meta.christianity.el delete mode 100644 data/tags/meta.codegolf.el delete mode 100644 data/tags/meta.codereview.el delete mode 100644 data/tags/meta.cogsci.el delete mode 100644 data/tags/meta.cooking.el delete mode 100644 data/tags/meta.craftcms.el delete mode 100644 data/tags/meta.crypto.el delete mode 100644 data/tags/meta.cs.el delete mode 100644 data/tags/meta.cs50.el delete mode 100644 data/tags/meta.cstheory.el delete mode 100644 data/tags/meta.datascience.el delete mode 100644 data/tags/meta.dba.el delete mode 100644 data/tags/meta.diy.el delete mode 100644 data/tags/meta.drupal.el delete mode 100644 data/tags/meta.dsp.el delete mode 100644 data/tags/meta.earthscience.el delete mode 100644 data/tags/meta.ebooks.el delete mode 100644 data/tags/meta.economics.el delete mode 100644 data/tags/meta.edx-cs169-1x.el delete mode 100644 data/tags/meta.el delete mode 100644 data/tags/meta.electronics.el delete mode 100644 data/tags/meta.ell.el delete mode 100644 data/tags/meta.emacs.el delete mode 100644 data/tags/meta.english.el delete mode 100644 data/tags/meta.expatriates.el delete mode 100644 data/tags/meta.expressionengine.el delete mode 100644 data/tags/meta.fitness.el delete mode 100644 data/tags/meta.freelancing.el delete mode 100644 data/tags/meta.french.el delete mode 100644 data/tags/meta.gamedev.el delete mode 100644 data/tags/meta.gaming.el delete mode 100644 data/tags/meta.gardening.el delete mode 100644 data/tags/meta.genealogy.el delete mode 100644 data/tags/meta.german.el delete mode 100644 data/tags/meta.gis.el delete mode 100644 data/tags/meta.graphicdesign.el delete mode 100644 data/tags/meta.ham.el delete mode 100644 data/tags/meta.hermeneutics.el delete mode 100644 data/tags/meta.hinduism.el delete mode 100644 data/tags/meta.history.el delete mode 100644 data/tags/meta.homebrew.el delete mode 100644 data/tags/meta.hsm.el delete mode 100644 data/tags/meta.islam.el delete mode 100644 data/tags/meta.italian.el delete mode 100644 data/tags/meta.ja.stackoverflow.el delete mode 100644 data/tags/meta.japanese.el delete mode 100644 data/tags/meta.joomla.el delete mode 100644 data/tags/meta.judaism.el delete mode 100644 data/tags/meta.linguistics.el delete mode 100644 data/tags/meta.magento.el delete mode 100644 data/tags/meta.martialarts.el delete mode 100644 data/tags/meta.math.el delete mode 100644 data/tags/meta.matheducators.el delete mode 100644 data/tags/meta.mathematica.el delete mode 100644 data/tags/meta.mathoverflow.net.el delete mode 100644 data/tags/meta.mechanics.el delete mode 100644 data/tags/meta.moderators.el delete mode 100644 data/tags/meta.money.el delete mode 100644 data/tags/meta.movies.el delete mode 100644 data/tags/meta.music.el delete mode 100644 data/tags/meta.networkengineering.el delete mode 100644 data/tags/meta.opendata.el delete mode 100644 data/tags/meta.outdoors.el delete mode 100644 data/tags/meta.parenting.el delete mode 100644 data/tags/meta.patents.el delete mode 100644 data/tags/meta.pets.el delete mode 100644 data/tags/meta.philosophy.el delete mode 100644 data/tags/meta.photo.el delete mode 100644 data/tags/meta.physics.el delete mode 100644 data/tags/meta.pm.el delete mode 100644 data/tags/meta.poker.el delete mode 100644 data/tags/meta.politics.el delete mode 100644 data/tags/meta.productivity.el delete mode 100644 data/tags/meta.programmers.el delete mode 100644 data/tags/meta.pt.stackoverflow.el delete mode 100644 data/tags/meta.puzzling.el delete mode 100644 data/tags/meta.quant.el delete mode 100644 data/tags/meta.raspberrypi.el delete mode 100644 data/tags/meta.reverseengineering.el delete mode 100644 data/tags/meta.robotics.el delete mode 100644 data/tags/meta.rpg.el delete mode 100644 data/tags/meta.russian.el delete mode 100644 data/tags/meta.salesforce.el delete mode 100644 data/tags/meta.scicomp.el delete mode 100644 data/tags/meta.scifi.el delete mode 100644 data/tags/meta.security.el delete mode 100644 data/tags/meta.serverfault.el delete mode 100644 data/tags/meta.sharepoint.el delete mode 100644 data/tags/meta.skeptics.el delete mode 100644 data/tags/meta.softwarerecs.el delete mode 100644 data/tags/meta.sound.el delete mode 100644 data/tags/meta.space.el delete mode 100644 data/tags/meta.spanish.el delete mode 100644 data/tags/meta.sports.el delete mode 100644 data/tags/meta.sqa.el delete mode 100644 data/tags/meta.stackoverflow.el delete mode 100644 data/tags/meta.startups.el delete mode 100644 data/tags/meta.stats.el delete mode 100644 data/tags/meta.superuser.el delete mode 100644 data/tags/meta.sustainability.el delete mode 100644 data/tags/meta.tex.el delete mode 100644 data/tags/meta.tor.el delete mode 100644 data/tags/meta.travel.el delete mode 100644 data/tags/meta.tridion.el delete mode 100644 data/tags/meta.unix.el delete mode 100644 data/tags/meta.ux.el delete mode 100644 data/tags/meta.video.el delete mode 100644 data/tags/meta.webapps.el delete mode 100644 data/tags/meta.webmasters.el delete mode 100644 data/tags/meta.windowsphone.el delete mode 100644 data/tags/meta.wordpress.el delete mode 100644 data/tags/meta.workplace.el delete mode 100644 data/tags/meta.worldbuilding.el delete mode 100644 data/tags/meta.writers.el delete mode 100644 data/tags/moderators.el delete mode 100644 data/tags/money.el delete mode 100644 data/tags/movies.el delete mode 100644 data/tags/music.el delete mode 100644 data/tags/networkengineering.el delete mode 100644 data/tags/opendata.el delete mode 100644 data/tags/outdoors.el delete mode 100644 data/tags/parenting.el delete mode 100644 data/tags/patents.el delete mode 100644 data/tags/pets.el delete mode 100644 data/tags/philosophy.el delete mode 100644 data/tags/photo.el delete mode 100644 data/tags/physics.el delete mode 100644 data/tags/pm.el delete mode 100644 data/tags/poker.el delete mode 100644 data/tags/politics.el delete mode 100644 data/tags/productivity.el delete mode 100644 data/tags/programmers.el delete mode 100644 data/tags/pt.stackoverflow.el delete mode 100644 data/tags/puzzling.el delete mode 100644 data/tags/quant.el delete mode 100644 data/tags/raspberrypi.el delete mode 100644 data/tags/reverseengineering.el delete mode 100644 data/tags/robotics.el delete mode 100644 data/tags/rpg.el delete mode 100644 data/tags/russian.el delete mode 100644 data/tags/salesforce.el delete mode 100644 data/tags/scicomp.el delete mode 100644 data/tags/scifi.el delete mode 100644 data/tags/security.el delete mode 100644 data/tags/serverfault.el delete mode 100644 data/tags/sharepoint.el delete mode 100644 data/tags/skeptics.el delete mode 100644 data/tags/softwarerecs.el delete mode 100644 data/tags/sound.el delete mode 100644 data/tags/space.el delete mode 100644 data/tags/spanish.el delete mode 100644 data/tags/sports.el delete mode 100644 data/tags/sqa.el delete mode 100644 data/tags/stackapps.el delete mode 100644 data/tags/stackoverflow.el delete mode 100644 data/tags/startups.el delete mode 100644 data/tags/stats.el delete mode 100644 data/tags/superuser.el delete mode 100644 data/tags/sustainability.el delete mode 100644 data/tags/tex.el delete mode 100644 data/tags/tor.el delete mode 100644 data/tags/travel.el delete mode 100644 data/tags/tridion.el delete mode 100644 data/tags/unix.el delete mode 100644 data/tags/ux.el delete mode 100644 data/tags/video.el delete mode 100644 data/tags/webapps.el delete mode 100644 data/tags/webmasters.el delete mode 100644 data/tags/windowsphone.el delete mode 100644 data/tags/wordpress.el delete mode 100644 data/tags/workplace.el delete mode 100644 data/tags/worldbuilding.el delete mode 100644 data/tags/writers.el diff --git a/data/tags/academia.el b/data/tags/academia.el deleted file mode 100644 index f12c36f..0000000 --- a/data/tags/academia.el +++ /dev/null @@ -1,341 +0,0 @@ -("abet" - "abroad" - "abstract" - "abuse" - "academic-freedom" - "academic-history" - "academic-life" - "accreditation" - "acknowledgement" - "acm" - "adjunct-faculty" - "administration" - "advisor" - "affiliation" - "africa" - "age" - "announcements" - "anonymity" - "anthropology" - "application" - "application-letter" - "article" - "arxiv" - "asia" - "assessment" - "assistant-professor" - "attendance" - "audio-video-recording" - "austria" - "authorship" - "awards" - "bachelor" - "best-practice" - "bibliometrics" - "bibtex" - "bioinformatics" - "biology" - "biotechnology" - "blog" - "books" - "business-school" - "canada" - "career" - "career-path" - "certification" - "changing-fields" - "chapters" - "cheating" - "chemistry" - "china" - "citation-style" - "citations" - "code" - "collaboration" - "colleagues" - "college-athletics" - "comments" - "communication" - "community" - "computer-science" - "conference" - "conflict-of-interest" - "consulting" - "contract" - "copy-editing" - "copyright" - "correspondence" - "course-design" - "coursework" - "cover-letter" - "creative-commons" - "credentials" - "credibility" - "cross-referencing" - "cv" - "data" - "databases" - "deadlines" - "defense" - "degree" - "design" - "digital-libraries" - "disability" - "disreputable-publishers" - "distance-learning" - "doi" - "economics" - "editors" - "education" - "electrical-engineering" - "elsevier" - "email" - "emotional-responses" - "engineering" - "errors-erratum" - "ethics" - "etiquette" - "eu" - "europe" - "evaluation" - "evaluation-criteria" - "exams" - "expenses" - "experiment-design" - "extended-paper" - "extracurricular" - "facebook" - "facilities-services" - "faculty-application" - "feedback" - "fees" - "formatting" - "france" - "funding" - "gender" - "germany" - "gifts" - "glossary" - "google-scholar" - "governance" - "gpa" - "grades" - "grading" - "graduate-admissions" - "graduate-school" - "graduation" - "grammar" - "graphics" - "gre" - "grey-literature" - "group-dynamics" - "habilitation" - "harassment" - "health-issues" - "homework" - "ieee" - "ielts" - "impact-factor" - "independent-researcher" - "indexing" - "india" - "industry" - "intellectual-property" - "interdisciplinary" - "international" - "international-students" - "internship" - "interpersonal-issues" - "interview" - "introduction" - "irb" - "japan" - "job" - "job-search" - "joint-appointment" - "journal-workflow" - "journals" - "lab-management" - "lab-meeting" - "labor-union" - "language" - "language-exams" - "latex" - "law" - "learning" - "lecture-notes" - "lecturer" - "legal-issues" - "library" - "license" - "linguistics" - "literature" - "literature-review" - "literature-search" - "major" - "management" - "masters" - "mathematics" - "medicine" - "mentoring" - "meta" - "methodology" - "mooc" - "motivation" - "multidisciplinary" - "netherlands" - "network-analysis" - "networking" - "new-zealand" - "non-tenure" - "note-taking" - "nsf" - "office-hours" - "online-degree" - "online-learning" - "online-publication" - "online-resource" - "open-access" - "open-science" - "outreach" - "outward-appearance" - "paper-submission" - "paperwork" - "part-time" - "patents" - "pedagogy" - "peer-review" - "personal-name" - "phd" - "physics" - "plagiarism" - "policy" - "political-science" - "politics" - "popular-science" - "postdocs" - "poster" - "powerpoint" - "preparation" - "preprint" - "presentation" - "privacy" - "procrastination" - "professional-association" - "professors" - "program-committee" - "programming" - "project-design" - "projects" - "proofreading" - "psychology" - "public-domain" - "publication-bias" - "publications" - "publishability" - "publishers" - "pubmed" - "quotation" - "ranking" - "reading" - "recommendation-letter" - "recruiting" - "reference-managers" - "reference-request" - "rejection" - "religious-issues" - "repository" - "reproducible-research" - "reputation" - "research" - "research-assistantship" - "research-dissemination" - "research-group" - "research-misconduct" - "research-topic" - "research-undergraduate" - "resources" - "responsibilities" - "retraction" - "review-articles" - "sabbatical" - "salary" - "science" - "scientific-productivity" - "scopus" - "second-degree" - "self-archiving" - "self-plagiarism" - "self-promotion" - "seminars" - "service-activities" - "sexual-misconduct" - "slides" - "social-media" - "social-science" - "social-skills" - "soft-money" - "soft-skills" - "software" - "spam" - "statement-of-purpose" - "statistics" - "stem" - "student-employee" - "student-exchange" - "student-success" - "students" - "study" - "study-plan" - "summer-school" - "supervision" - "supporting-information" - "survey-research" - "sweden" - "switzerland" - "syllabus" - "systematic" - "tables" - "taxes" - "teaching" - "teaching-assistant" - "teaching-statement" - "technology" - "tenure-track" - "terminology" - "theory" - "thesis" - "thesis-committee" - "time-management" - "time-off" - "titles" - "toefl" - "tools" - "training" - "transcript-of-records" - "transfer-student" - "translations" - "travel" - "tuition" - "tutoring" - "twitter" - "typesetting" - "typography" - "undergraduate" - "united-kingdom" - "united-states" - "university" - "version-control" - "veterans" - "visa" - "visiting" - "website" - "wikipedia" - "work-ethics" - "work-life-balance" - "workflow" - "working-time" - "workplace" - "workshop" - "writing" - "writing-style") diff --git a/data/tags/android.el b/data/tags/android.el deleted file mode 100644 index 53eac5e..0000000 --- a/data/tags/android.el +++ /dev/null @@ -1,1156 +0,0 @@ -("1.5-cupcake" - "1.6-donut" - "2-step-verification" - "2.1-eclair" - "2.2-froyo" - "2.3-gingerbread" - "2.3.3-gingerbread" - "2g" - "3.0-honeycomb" - "3.1-honeycomb" - "3.2-honeycomb" - "3g" - "4.0-ice-cream-sandwich" - "4.1-jelly-bean" - "4.2-jelly-bean" - "4.3-jelly-bean" - "4.4-kitkat" - "4g" - "5.0-lollipop" - "a2dp" - "accessibility" - "accounts" - "acer-iconia-a500" - "acer-z120" - "activation" - "active-sync" - "ad-hoc-networks" - "adb" - "adblock-plus" - "adobe-air" - "adobe-flash" - "adobe-reader" - "adt-bundle" - "advent-amico" - "advertising" - "adw-launcher-ex" - "adw.launcher" - "aim" - "airdroid" - "airplane-mode" - "airplay" - "airpush" - "alarm" - "album-art" - "alcatel-one-touch-idol-s" - "aldiko" - "alerts" - "allshare" - "alternative-markets" - "amazon-appstore" - "amazon-kindle" - "amazon-kindle-fire" - "amazon-kindle-fire-hd" - "amazon-mp3" - "amazon-video" - "android-device-manager" - "android-emulator" - "android-id" - "android-mini-pc" - "android-pc" - "android-sdk" - "android-tv" - "android-versions" - "android-wear" - "android-x86" - "angry-birds" - "ankidroid" - "ant-plus" - "anti-theft" - "antivirus" - "aokp" - "apex-launcher-pro" - "apk" - "apn" - "app-brain" - "app-data" - "app-drawer" - "app-icons" - "app-market-link" - "app-ratings" - "app2sd" - "application-autoupdate" - "application-manager" - "applications" - "archos-101" - "archos-gen7" - "archos-gen8" - "arm-processors" - "armv6" - "arnova-gbook" - "art" - "astrid" - "astro" - "asus-eee-pad-transformer" - "asus-padfone-t00c" - "asus-transformer-infinity" - "asus-zenfone-5" - "att" - "attachment" - "audio" - "audio-recording" - "audiobooks" - "authorization" - "auto-answer" - "auto-correct" - "auto-rotation" - "auto-start" - "autodesk-sketchbook" - "automation" - "avd-manager" - "background" - "background-data" - "backlight" - "backup" - "backup-manager" - "bandwidth" - "barcode" - "bash" - "battery" - "battery-life" - "beaglebone-black" - "beam" - "beats-by-dre" - "benchmarks" - "bittorrent" - "blackberry-messenger" - "bloatware" - "bluestacks" - "bluetooth" - "bluetooth-audio" - "bluetooth-hsp" - "bluetooth-le" - "bluetooth-pairing" - "bluetooth-tethering" - "bookmarklets" - "bookmarks" - "boot" - "boot-animation" - "boot-loop" - "bootloader" - "bootloader-lock" - "browser" - "browser-add-ons" - "browser-history" - "bugs" - "builds" - "busybox" - "buttons" - "cache" - "calculator" - "calendar" - "calibration" - "call-history" - "call-recording" - "call-screening" - "call-waiting" - "callerid" - "calls" - "camera" - "camera-flash" - "camera-sound" - "candy-crush-saga" - "car-dock" - "carrieriq" - "carriers" - "cdma" - "cell-broadcast" - "cellular-radio" - "certificates" - "charging" - "chat" - "chat-history" - "chrome-for-android" - "chromecast" - "chromium" - "cifs" - "clash-of-clans" - "clock" - "clock-speed" - "clockworkmod-recovery" - "cloud" - "coby-kyros" - "color" - "coloros" - "command-line" - "compass" - "compatibility" - "connectify" - "connection-issues" - "contact-groups" - "contact-photo" - "contact-shortcut" - "contacts" - "content-filter" - "copy-paste" - "crashes" - "csc" - "custom-rom" - "custom-sounds" - "customization" - "cyanogenmod" - "cyanogenmod-11" - "dailymotion" - "dalvik" - "darky-rom" - "dashclock-widget" - "data-connection" - "data-migration" - "data-monitoring" - "data-plan" - "data-recovery" - "data-traffic" - "data-transfer" - "date-and-time" - "daydream" - "debug" - "decrypt" - "default-application" - "defaults" - "delete" - "dell" - "development" - "device-administrator" - "device-firmware" - "device-migration" - "dhcp" - "dialer" - "dialer-codes" - "dictionary" - "direct-call" - "disable-app" - "disable-apps" - "disk-drive" - "disk-encryption" - "dlna" - "dns" - "dnsmasq" - "dock" - "docking-station" - "document-scanner" - "documentation" - "documents" - "dolphin-browser" - "doubletwist" - "downgrade" - "download-manager" - "downloading" - "drafts" - "drag-n-drop" - "drawing" - "driving-mode" - "drm" - "droid-eris" - "dropbox" - "dual-boot" - "dual-sim" - "earphone" - "earpiece" - "easter-egg" - "ebook-reader" - "ebooks" - "echo" - "echo-cancelling" - "editing" - "email" - "emergency-calls" - "emoticons" - "emulator" - "encryption" - "epub" - "equalizer" - "es-file-explorer" - "evernote" - "excel" - "exchange" - "exchange-tasks" - "ext2" - "ext3" - "ext4" - "external-display" - "external-gps" - "external-keyboard" - "external-sd" - "face-unlock" - "facebook" - "facebook-home" - "facebook-messenger" - "factory-image" - "factory-reset" - "fastboot" - "fax" - "feedback" - "feedly" - "ffmpeg" - "file-archives" - "file-management" - "file-permissions" - "file-properties" - "file-sharing" - "file-system" - "file-transfer" - "files" - "filter" - "firefox" - "firewall" - "fitbit" - "fitness" - "flashtool" - "flickr" - "flipboard" - "fm-radio" - "focus" - "folder-organizer" - "fonts" - "force-close" - "force-stop" - "formatting" - "foursquare" - "freeware" - "friendstream" - "fring" - "front-camera" - "ftp" - "galaxy-apps" - "gallery" - "gallery-vault" - "gamepad" - "games" - "gateway" - "genymotion" - "geolocation" - "geotagging" - "gesture-typing" - "glonass" - "gmail" - "gmail-password" - "go-contacts" - "go-keyboard" - "go-launcher-ex" - "go-sms" - "google" - "google-account" - "google-analytics" - "google-apps" - "google-authenticator" - "google-backup" - "google-calendar" - "google-cardboard" - "google-checkout" - "google-chrome-to-phone" - "google-contacts" - "google-currents" - "google-drive" - "google-earth" - "google-experience" - "google-glass" - "google-goggles" - "google-keep" - "google-keyboard" - "google-latitude" - "google-listen" - "google-maps" - "google-maps-navigation" - "google-now" - "google-play-books" - "google-play-game-services" - "google-play-games" - "google-play-movies" - "google-play-music" - "google-play-services" - "google-play-store" - "google-plus" - "google-plus-hangouts" - "google-plus-huddles" - "google-plus-photos" - "google-reader" - "google-search" - "google-settings" - "google-sheets" - "google-sketchup" - "google-talk" - "google-tasks" - "google-translate" - "google-tv" - "google-voice" - "google-voice-actions" - "google-wallet" - "gotomeeting" - "gprs" - "gps" - "gps-tracking" - "gpu" - "graphics" - "greenify" - "gsm" - "gyroscope" - "handcent-sms" - "hands-free" - "haptic-feedback" - "hard-reset" - "hardware" - "hardware-acceleration" - "hardware-agnostic" - "hardware-requirements" - "hdmi" - "headphone-jack" - "headphones" - "headset" - "headset-controls" - "hebrew" - "heimdall" - "hidden" - "history" - "home-button" - "home-screen" - "home-screen-folders" - "home-screen-shortcuts" - "honmi-h2" - "hotmail" - "htc" - "htc-aria" - "htc-chacha" - "htc-desire" - "htc-desire-500" - "htc-desire-816-dual" - "htc-desire-c" - "htc-desire-hd" - "htc-desire-s" - "htc-desire-sv" - "htc-desire-x" - "htc-desire-z" - "htc-dream" - "htc-droid-dna" - "htc-droid-incredible" - "htc-droid-incredible-2" - "htc-evo" - "htc-evo-3d" - "htc-explorer" - "htc-flyer" - "htc-hd2" - "htc-hero" - "htc-incredible-s" - "htc-legend" - "htc-magic" - "htc-mytouch" - "htc-mytouch-3g-slide" - "htc-one" - "htc-one-m8" - "htc-one-mini" - "htc-one-remix" - "htc-one-s" - "htc-one-v" - "htc-one-x" - "htc-one-x+" - "htc-one-xl" - "htc-rezound" - "htc-sensation" - "htc-sensation-xe" - "htc-sense" - "htc-sync-3.0" - "htc-tattoo" - "htc-thunderbolt" - "htc-vivid" - "htc-wildfire" - "htc-wildfire-s" - "html" - "html5" - "https" - "huawei" - "huawei-ascend-ii" - "huawei-g300" - "huawei-g520-5000" - "huawei-g610s" - "huawei-g700" - "huawei-u8150" - "huawei-u8160" - "huawei-u8500" - "huawei-u8650" - "huawei-u8800" - "huawei-u8815" - "huawei-u8850" - "huawei-u8860" - "hyperlinks" - "id3-tag" - "images" - "imap" - "imei" - "imo-instant-messenger" - "import" - "in-app-purchase" - "inbox-by-gmail" - "init.d" - "input-methods" - "instagram" - "installation" - "instant-messaging" - "instant-messenger" - "instant-upload" - "instapaper" - "insufficient-memory" - "intel-haxm" - "intents" - "internal-sd" - "internal-storage" - "international-prefix" - "internet" - "internet-radio" - "ios" - "ip-address" - "iptables" - "ipv6" - "irola-dx752" - "itunes" - "j2me" - "java" - "javascript" - "jorte" - "juice-defender" - "k9-mail" - "karbonn" - "karbonn-a1+" - "karbonn-a10" - "karbonn-a15" - "karbonn-a5+" - "karbonn-a9" - "karbonn-smart-tab-7" - "kernel" - "keyboard" - "keyboard-shortcuts" - "kik-messenger" - "kindle-for-android" - "kingo" - "kingsoft-office" - "kiosk-mode" - "kobo" - "lan" - "languages" - "launcher" - "launcherpro" - "lenovo" - "lenovo-a660" - "lenovo-ideapad-tablet-a1" - "lenovo-thinkpad-tablet" - "lenovo-yoga" - "lg" - "lg-doubleplay" - "lg-escape" - "lg-g-watch-r" - "lg-g2" - "lg-g3" - "lg-gt540-optimus" - "lg-l90-dual" - "lg-motion" - "lg-nitro-hd" - "lg-optimus" - "lg-optimus-2x" - "lg-optimus-4x" - "lg-optimus-4x-hd" - "lg-optimus-g" - "lg-optimus-l3" - "lg-optimus-l5" - "lg-optimus-l5-2" - "lg-optimus-l7-2" - "lg-optimus-l9" - "lg-optimus-l90" - "lg-optimus-logic" - "lg-optimus-one" - "lg-optimus-slider" - "lg-p999" - "lg-thrill" - "lg-viper" - "lg-vs740" - "line" - "link2sd" - "linux" - "live-wallpaper" - "llama" - "locale" - "localization" - "location-services" - "lock-screen" - "lock-screen-widgets" - "locked-out" - "logging" - "logitech-revue" - "lookout" - "loopback" - "lost-phone" - "lte" - "mac-address" - "mac-os-x" - "magnetometer" - "maintenance" - "malware" - "manufacturers" - "maps" - "media-button" - "media-files" - "media-player" - "media-scanner" - "media-search" - "menu" - "mhl" - "micromax-a110" - "micromax-a35" - "micromax-a57" - "micromax-a87" - "micromax-a89" - "micromax-funbook" - "microphone" - "mightytext" - "minuum" - "miracast" - "missed-calls" - "miui" - "mms" - "mobicel-p7030" - "mobile-data" - "mobile-network" - "mobiucare" - "monochrome" - "moon-reader" - "moto-e" - "moto-x" - "motoblur" - "motorola" - "motorola-atrix-4g" - "motorola-atrix-hd" - "motorola-charm" - "motorola-defy" - "motorola-droid" - "motorola-droid-2" - "motorola-droid-3" - "motorola-droid-4" - "motorola-droid-bionic" - "motorola-droid-pro" - "motorola-droid-razr" - "motorola-droid-x" - "motorola-droid-x2" - "motorola-droid-xyboard" - "motorola-electrify" - "motorola-flipside" - "motorola-milestone" - "motorola-milestone-2" - "motorola-moto-360" - "motorola-moto-e" - "motorola-moto-g" - "motorola-moto-g2" - "motorola-photon" - "motorola-razr-i" - "motorola-triumph" - "motorola-xoom" - "mount" - "mouse" - "mp3" - "mp3-player" - "mp4" - "ms-office" - "mtp" - "multi-touch" - "multi-user" - "multi-window" - "multiple-devices" - "multirom-manager" - "multitasking" - "music" - "music-player" - "mute" - "mx-player" - "mylink" - "mytracks" - "nandroid" - "navbar" - "navigation" - "netflix" - "networking" - "news-and-weather" - "nextbook-premium-8" - "nexus-4" - "nexus-5" - "nexus-6" - "nexus-7" - "nexus-9" - "nexus-one" - "nfc" - "nikon-s800c" - "nokia-series-60" - "non-market" - "nook" - "nook-color" - "nook-for-android" - "nook-hd" - "nook-simple-touch" - "nook-tablet" - "notes" - "notification-bar" - "notification-icons" - "notification-led" - "notifications" - "nova-launcher" - "ntfs" - "ntlm" - "obd" - "ocr" - "odex" - "odin" - "offline" - "offline-map" - "ok-google" - "oncall" - "onda-tablet" - "onedrive" - "onenote" - "oneplus-one" - "oom-priority" - "open-source" - "openoffice" - "openvpn" - "opera-mini" - "opera-mobile" - "oppo-find-7" - "optimization" - "orientation" - "os" - "osmand" - "ota-update" - "outlook" - "outlook.com" - "ouya" - "overclocking" - "overheating" - "owncloud" - "pac-rom" - "page-buddy" - "paid-apps" - "pandigital-novel" - "pandigital-supernova" - "pandora" - "parental-control" - "partition" - "password" - "password-protection" - "pattern-lock" - "pause" - "pc-studio" - "pdf" - "pebble" - "people-app" - "performance" - "peripherals" - "permissions" - "personal-info" - "photos" - "physical-damage" - "picasa" - "picture-frame-widget" - "pipo-s2" - "pmp" - "podcast" - "polaris-office" - "pop3" - "popup" - "power" - "power-on" - "power-options" - "pppoe" - "prestigio-multipad" - "prestigio-pap-4040-duo" - "prey" - "printing" - "privacy" - "privileges" - "processes" - "processor" - "productivity" - "profiles" - "protected-apps" - "proximity-sensor" - "proxy" - "push-notifications" - "python" - "qr-code" - "quick-responses" - "quick-settings" - "quickoffice" - "radio-firmware" - "ram" - "read-only" - "reading" - "reboot" - "recent-apps-list" - "recovery-mode" - "reformat" - "region" - "remote-access" - "remote-control" - "remote-wipe" - "resource-monitoring" - "restore" - "restricted-profiles" - "reverse-tether" - "ringtone" - "rmaps" - "roaming" - "rockplayer" - "rom" - "rom-flashing" - "rom-manager" - "rom-update" - "root" - "rooting" - "router" - "rss" - "rsync" - "rtsp" - "ruu" - "s-calendar" - "s-memo" - "s-note" - "s-off" - "s-pen" - "s-planner" - "s-voice" - "s2e" - "safe-mode" - "samsung" - "samsung-admire" - "samsung-apps" - "samsung-captivate" - "samsung-captivate-glide" - "samsung-conquer" - "samsung-continuum" - "samsung-droid-charge" - "samsung-epic-4g" - "samsung-europa" - "samsung-fascinate" - "samsung-galaxy-5" - "samsung-galaxy-551" - "samsung-galaxy-ace" - "samsung-galaxy-ace-2" - "samsung-galaxy-ace-plus" - "samsung-galaxy-apollo" - "samsung-galaxy-attain" - "samsung-galaxy-chat" - "samsung-galaxy-core-2" - "samsung-galaxy-fame" - "samsung-galaxy-fit" - "samsung-galaxy-gear" - "samsung-galaxy-gio" - "samsung-galaxy-grand" - "samsung-galaxy-grand-2" - "samsung-galaxy-i7500" - "samsung-galaxy-mini" - "samsung-galaxy-music-duos" - "samsung-galaxy-nexus" - "samsung-galaxy-note" - "samsung-galaxy-note-10.1" - "samsung-galaxy-note-2" - "samsung-galaxy-note-3" - "samsung-galaxy-note-4" - "samsung-galaxy-note-8" - "samsung-galaxy-player" - "samsung-galaxy-pocket" - "samsung-galaxy-s" - "samsung-galaxy-s-2" - "samsung-galaxy-s-2-plus" - "samsung-galaxy-s-3" - "samsung-galaxy-s-3-mini" - "samsung-galaxy-s-4" - "samsung-galaxy-s-4-mini" - "samsung-galaxy-s-5" - "samsung-galaxy-s-advance" - "samsung-galaxy-s-duos" - "samsung-galaxy-s-duos-2" - "samsung-galaxy-s-plus" - "samsung-galaxy-sl" - "samsung-galaxy-spica" - "samsung-galaxy-star" - "samsung-galaxy-star-duos" - "samsung-galaxy-tab" - "samsung-galaxy-tab-10" - "samsung-galaxy-tab-2-10.1" - "samsung-galaxy-tab-2-7" - "samsung-galaxy-tab-3" - "samsung-galaxy-tab-3-10.1" - "samsung-galaxy-tab-3-7" - "samsung-galaxy-tab-4" - "samsung-galaxy-tab-7-plus" - "samsung-galaxy-tab-7.7" - "samsung-galaxy-tab-8.9" - "samsung-galaxy-y" - "samsung-galaxy-y-duos" - "samsung-infuse-4g" - "samsung-intercept" - "samsung-kies" - "samsung-knox" - "samsung-media-hub" - "samsung-nexus-10" - "samsung-nexus-s" - "samsung-stellar" - "samsung-touchwiz" - "samsung-vibrant" - "save" - "screen" - "screen-brightness" - "screen-protector" - "screen-resolution" - "screen-sharing" - "screen-timeout" - "screencast" - "screenshots" - "scripts" - "sd-card" - "sd-ext" - "sdhc" - "search" - "search-history" - "security" - "seesmic" - "selinux" - "sensors" - "services" - "setcpu" - "settings" - "share-menu" - "shazam" - "shell" - "shoutcast" - "shutdown" - "side-loading" - "signal" - "signature-error" - "silent-mode" - "sim-card" - "sim-unlocking" - "simplenote" - "sip" - "skype" - "sleep" - "slimport" - "smart-cover" - "smart-lock" - "smart-tv" - "sms" - "sms-blocking" - "snapchat" - "social-networking-service" - "softkey" - "sony-ericsson-live-view" - "sony-ericsson-w8" - "sony-ericsson-xperia-mini" - "sony-ericsson-xperia-neo" - "sony-ericsson-xperia-play" - "sony-ericsson-xperia-ray" - "sony-ericsson-xperia-x10" - "sony-ericsson-xperia-x8" - "sony-live-with-walkman" - "sony-smartwatch" - "sony-xperia" - "sony-xperia-active" - "sony-xperia-arc" - "sony-xperia-arc-s" - "sony-xperia-j" - "sony-xperia-l" - "sony-xperia-mini-pro" - "sony-xperia-neo-l" - "sony-xperia-neo-v" - "sony-xperia-p" - "sony-xperia-ray" - "sony-xperia-s" - "sony-xperia-sola" - "sony-xperia-tipo" - "sony-xperia-u" - "sony-xperia-v" - "sony-xperia-x10-mini" - "sony-xperia-x10-mini-pro" - "sony-xperia-z" - "sony-xperia-z1" - "sony-xperia-z2" - "sophix-tablet" - "spam" - "speaker" - "speakerphone" - "special-chars" - "spell-check" - "spice-mi-350" - "spotify" - "sprint" - "sqlite" - "ssh" - "stack-exchange" - "standby" - "statistics" - "sticker" - "stock-android" - "stock-browser" - "stock-email-app" - "stock-rom" - "storage" - "streaming" - "stylus" - "super-amoled" - "superuser" - "swap" - "swiftkey" - "swype" - "sygic" - "sync" - "system" - "system-apps" - "system-error" - "system-freeze" - "system-info" - "t-mobile" - "t-mobile-g2x" - "t-mobile-sidekick-4g" - "tablet" - "tablet-apps" - "talk-back" - "task-management" - "tasker" - "teamviewer" - "tech-specs" - "tecno-n3" - "tectiles" - "tegra" - "telegram" - "television" - "temp-files" - "terminal" - "tethering" - "text-editor" - "text-input" - "text-layout" - "text-prediction" - "text-selection" - "text-to-speech" - "textsecure" - "themes" - "thermal-printer" - "thumbnails" - "time-zones" - "titanium-backup" - "to-do-list" - "toast-notifications" - "tor" - "torrents" - "toshiba-ac100" - "touchdown" - "touchscreen" - "trackball" - "translate" - "trebuchet" - "trello" - "troubleshooting" - "tweetcaster" - "tweetdeck" - "twitter" - "twrp" - "ubuntu-one" - "unbricking" - "uninstallation" - "unknown-sources" - "unrevoked" - "unrooting" - "untagged" - "update" - "uploads" - "url" - "usb" - "usb-connection-mode" - "usb-debugging" - "usb-drivers" - "usb-host-mode" - "usb-mass-storage" - "usb-modem" - "usb-on-the-go" - "usb-peripherals" - "usb-storage" - "usb-tethering" - "user-agent-string" - "user-interface" - "ussd" - "vanilla-android" - "vanilla-ui" - "vcard" - "verizon" - "verizon-backup-assistant" - "viber" - "vibration" - "video" - "video-calling" - "video-conference" - "video-out" - "video-recording" - "video-streaming" - "viewsonic-gtablet" - "vimtouch" - "virtualbox" - "virtualization" - "vlc" - "vm" - "vnc" - "voice-command" - "voice-message" - "voice-recognition" - "voice-recording" - "voicemail" - "voip" - "volume" - "volume-control" - "voodoo" - "vpn" - "wakelock" - "wallpaper" - "warranty" - "water-damage" - "weather" - "web-market" - "web-server" - "webcam" - "webview" - "wep" - "whatsapp-messenger" - "wi-fi" - "widgets" - "wifi-analyzer" - "wifi-direct" - "wifi-hotspot" - "wifi-tethering" - "wiki" - "wikipedia" - "winamp" - "windows" - "windows-mobile" - "wireless-charging" - "wma" - "wpa-supplicant" - "wpa2" - "xiaomi" - "xmpp" - "xolo-x900" - "xperia-sp" - "xposed-framework" - "xprivacy" - "yahoo-mail" - "youtube" - "z4root" - "zip" - "zoe" - "zoom" - "zte-blade" - "zte-light-tab" - "zte-merit" - "zte-racer" - "zte-score") diff --git a/data/tags/anime.el b/data/tags/anime.el deleted file mode 100644 index 9b4888a..0000000 --- a/data/tags/anime.el +++ /dev/null @@ -1,675 +0,0 @@ -(".hack" - "3x3-eyes" - "5-centimeters-per-second" - "accel-world" - "afro-samurai" - "agarest-war" - "agarest-war-2" - "agarest-war-zero" - "ai-tenchi-muyo" - "air" - "air-gear" - "aiura" - "ajin-demi-human" - "akai-ito" - "akame-ga-kill" - "akatsuki-no-yona" - "akazukin-chacha" - "akira" - "aku-no-hana" - "akuma-no-riddle" - "aldnoah-zero" - "allison-and-lillia" - "amagami" - "amagi-brilliant-park" - "amaranto" - "amnesia" - "amv" - "anedoki" - "angel-beats" - "animation-mistakes" - "anime-history" - "anime-no-chikara" - "anime-production" - "anime-tenchou" - "ano-hana" - "another" - "anpanman" - "aoi-bungaku" - "aoishiro" - "ar-no-surge" - "ar-tonolico" - "arakawa-under-the-bridge" - "arata-naru-sekai" - "arcana-famiglia" - "area-d" - "area-no-kishi" - "aria" - "assassination-classroom" - "atelier" - "avatar" - "ayakashi" - "azumanga-daioh" - "baccano" - "bagi" - "baka-and-test" - "bakuman" - "banana-no-nana" - "barakamon" - "barefoot-gen" - "bartender" - "basquash" - "bastard" - "battle-angel-alita" - "beck" - "beelzebub" - "berserk" - "binbou-gami-ga" - "binchou-tan" - "black-cat" - "black-god" - "black-jack" - "black-lagoon" - "black-rock-shooter" - "bleach" - "blood+" - "blood-c" - "blood-lad" - "bloody-monday" - "blue-exorcist" - "bodacious-space-pirates" - "boku-no-imouto-osaka-okan" - "bookmark-of-demise" - "boys-over-flowers" - "brave-10" - "bravely-default" - "broken-blade" - "brynhildr-in-the-darkness" - "btooom" - "buddha" - "bungaku-shoujo" - "buso-renkin" - "c-control" - "c3-bu" - "cage-of-eden" - "captain-earth" - "captain-tsubasa" - "cardcaptor-sakura" - "cardfight-vanguard" - "carnival-phantasm" - "censorship" - "chaos-head" - "chihayafuru" - "chiisana-obake" - "chobits" - "chrome-shelled-regios" - "chuunibyou" - "clannad" - "claymore" - "cobra" - "code-breaker" - "code-e" - "code-geass" - "conventions" - "cool-devices" - "coppelion" - "copyright" - "cosprayers" - "cowboy-bebop" - "crayon-shin-chan" - "cross-ange" - "crossovers" - "crows" - "crunchyroll" - "crystal-triangle" - "cube-x-cursed-x-curious" - "culture" - "d-frag" - "d-gray-man" - "d.n.angel" - "da-capo" - "daily-lives-of-hs-boys" - "danganronpa" - "danna-wakaranai-ken" - "daphne-the-brilliant-blue" - "darker-than-black" - "date-a-live" - "deadman-wonderland" - "death-billiards" - "death-note" - "deltora-quest" - "denkigai-no-honya-san" - "dennou-coil" - "denpa-onna-seishun-otoko" - "denpa-teki-na-kanojo" - "detective-conan" - "devil-may-cry" - "diebuster" - "digimon" - "digimon-tamers" - "disgaea" - "dog-days" - "dokkiri-doctor" - "domo-kun" - "donyatsu" - "doraemon" - "doujinshi" - "dragon-ball" - "dragon-ball-gt" - "dragon-half" - "dragon-recipe" - "dramatical-murder" - "durarara" - "dusk-maiden-of-amnesia" - "eden-of-the-east" - "ef" - "elfen-lied" - "emma" - "ergo-proxy" - "eureka-seven" - "everyday-tales-of-cat-god" - "excel-saga" - "eyeshield-21" - "fairy-tail" - "fam-the-silver-wing" - "fate-apocrypha" - "fate-extra" - "fate-kaleid-liner" - "fate-stay-night" - "fate-strange-fake" - "fate-zero" - "fillers" - "final-fantasy" - "fireball" - "first-squad" - "flame-of-recca" - "flcl" - "fractale" - "free" - "freezing" - "from-the-new-world" - "fruits-basket" - "full-metal-panic" - "full-moon-wo-sagashite" - "fullmetal-alchemist" - "fuse" - "fushigi-yugi" - "future-boy-conan" - "fuuka" - "g-senjou-no-maou" - "ga-rei" - "gainax" - "gakuen-alice" - "gakuen-heaven" - "galaxy-angel" - "game-history" - "gankutsuou" - "gantz" - "garo" - "garzeys-wing" - "gatchaman" - "gatchaman-crowds" - "gate-keepers" - "genius-party" - "genshiken" - "gentlemens-alliance-cross" - "getbackers" - "ghost-hound" - "ghost-hunt" - "ghost-in-the-shell" - "ghost-in-the-shell-sac" - "gingitsune" - "gintama" - "girls-und-panzer" - "glasslip" - "golden-boy" - "golden-time" - "gosick" - "great-teacher-onizuka" - "guilty-crown" - "gunbuster" - "gundam" - "gundam-build-fighters" - "gungrave" - "gunslinger-girl" - "gunxsword" - "gurren-lagann" - "guyver" - "haganai" - "haikyuu" - "hajime-no-ippo" - "hakuouki" - "hamatora" - "hanamonogatari" - "hanasaku-iroha" - "hanayamata" - "haruhi-suzumiya" - "hataraku-maou-sama" - "hatsuyuki-sakura" - "hayao-miyazaki" - "hayate-no-gotoku" - "heidi-girl-of-the-alps" - "hellsing" - "henneko" - "hidamari-sketch" - "hideaki-anno" - "high-school-dxd" - "highschool-of-the-dead" - "higurashi-no-naku-koro-ni" - "hikaru-no-go" - "hitsugi-no-chaika" - "hokuto-no-ken" - "honey-and-clover" - "hoshi-no-samidare" - "hourou-musuko" - "howls-moving-castle" - "humanity-has-declined" - "hunter-x-hunter" - "hyouge-mono" - "hyouka" - "hyperdimension-neptunia" - "ib" - "identification-request" - "ikkitousen" - "inari-konkon-koi-iroha" - "inazuma-eleven" - "infinite-stratos" - "initial-d" - "inuyasha" - "japanese-language" - "jigoku-shoujo" - "jinsei" - "jojo-no-kimyouna-bouken" - "joshi-kausei" - "joshiraku" - "k-on" - "k-project" - "kagerou-project" - "kaiketsu-zorro" - "kaito-kid" - "kami-sen" - "kamichama-karin" - "kamidori-alchemy-meister" - "kamisama-dolls" - "kangaroo-no-tanjoubi" - "kanon" - "kantai-collection" - "kara-no-kyoukai" - "kashimashi" - "katahane" - "katanagatari" - "kaze-no-stigma" - "ken-akamatsu" - "kenichi" - "kikis-delivery-service" - "kill-la-kill" - "kimi-ni-todoke" - "kingdom" - "kingdom-hearts" - "kiniro-mosaic" - "kinos-journey" - "kissxsis" - "kite" - "knights-of-sidonia" - "kobato" - "kobu-tori" - "kodomo-no-jikan" - "koe-no-katachi" - "kokoro-connect" - "koukou-tekkenden-tough" - "kuroko-no-basket" - "kuroshitsuji" - "kyoto-animation" - "kyoukai-no-kanata" - "kyousougiga" - "la-corda-doro" - "last-exile" - "le-fruit-de-la-grisaia" - "legend-galactic-heroes" - "liar-game" - "library-wars" - "licensing" - "life-of-ichabod" - "light-novel-production" - "little-busters" - "live-action" - "location" - "log-horizon" - "lotte-no-omocha" - "love-hina" - "love-live" - "love-love" - "lucky-star" - "lupin-the-third" - "macross" - "madoka-magica" - "magi" - "magical-warfare" - "magician" - "mahoromatic" - "mahou-shoujo-taisen" - "mahouka-koukou" - "mahoutsukai-no-yoru" - "mai-hime" - "mai-otome" - "maid-sama" - "maison-ikkoku" - "majikoi" - "maken-ki" - "makoto-shinkai" - "mamoru-hosoda" - "mamoru-oshii" - "manabi-straight" - "manga-history" - "manga-production" - "mangaka" - "mangirl" - "maoyuu-maou-yuusha" - "maria-sama-ga-miteru" - "maris-the-chojo" - "mashiroiro-symphony" - "mawaru-penguindrum" - "mayo-chiki" - "medaka-box" - "megane-x-parfait" - "melty-blood" - "meme" - "merchandise" - "mermaid-melody" - "michiko-to-hatchin" - "midori-days" - "minami-ke" - "mirai-nikki" - "miss-monochrome" - "mission-e" - "mnemosyne" - "mobile-suit-gundam-seed" - "moetan" - "momotaro" - "mondaiji" - "monogatari-series" - "monster" - "monthly-girls-nozaki-kun" - "mushiking" - "mushishi" - "mushoku-tensei" - "mushrambo" - "music" - "muv-luv" - "my-neighbor-totoro" - "nadia" - "nagi-no-asukara" - "nana" - "nanatsu-no-taizai" - "nanoha" - "naruto" - "natsu-no-arashi" - "natsumes-book-of-friends" - "nausicaa" - "negima" - "neon-genesis-evangelion" - "nichijou" - "nijigahara-holograph" - "ninja-hattori-kun" - "nisekoi" - "no-game-no-life" - "noblesse" - "nobunaga-the-fool" - "nobunagun" - "nodame-cantabile" - "noein" - "non-non-biyori" - "noragami" - "noukome" - "obake-no-qtaro" - "odin-starlight-mutiny" - "one-outs" - "one-piece" - "one-week-friends" - "only-sense-online" - "ookami-kakushi" - "orange-marmalade" - "oregairu" - "oreimo" - "oresama-kingdom" - "oreshura" - "orguss" - "osadai" - "osamu-tezuka" - "otome-yokai-zakuro" - "ouran-koukou-host-club" - "outbreak-company" - "over-drive" - "oyasumi-punpun" - "paca-plus" - "pandora-hearts" - "panel-arrangement" - "papakiki" - "paprika" - "paradise-kiss" - "paranoia-agent" - "parappa-the-rapper" - "parasyte" - "patlabor" - "persona4" - "personality" - "photo-kano" - "photon" - "plastic-neesan" - "pokemon" - "ponyo" - "porco-rosso" - "poyopoyo-kansatsu-nikki" - "pretear" - "pretty-cure" - "prince-of-tennis" - "princess-and-the-pilot" - "princess-jellyfish" - "princess-tutu" - "prism-nana" - "psycho-pass" - "psyren" - "pupa" - "rahxephon" - "ranma" - "rave-master" - "ray" - "read-or-die" - "reborn" - "requiem-for-the-phantom" - "reset" - "resources" - "retag" - "revolutionary-girl-utena" - "rinne-no-lagrange" - "ro-kyu-bu" - "robotech" - "robotics-notes" - "rocket-girls" - "ronin-warriors" - "rosario-vampire" - "rozen-maiden" - "rurouni-kenshin" - "rwby" - "sabagebu" - "sailor-moon" - "saint-seiya" - "saint-seiya-omega" - "saiunkoku-monogatari" - "sakamichi-no-apollon" - "sakamoto-desu-ga" - "sakasama-no-patema" - "saki" - "sakigake-otokojuku" - "samurai-champloo" - "samurai-flamenco" - "sankarea" - "santa-company" - "satisfaction-guaranteed" - "sayonara-zetsubou-sensei" - "school-days" - "seirei-no-moribito" - "seitokai-yakuindomo" - "sekai-ichi-hatsukoi" - "sekien-no-inganock" - "sekirei" - "sengoku-basara" - "serial-experiments-lain" - "shakugan-no-shana" - "shaman-king" - "shaman-warrior" - "shiei-no-sona-nyl" - "shigatsu-wa-kimi-no-uso" - "shiki" - "shikkoku-no-sharnoth" - "shingeki-no-bahamut" - "shingeki-no-kyojin" - "shinigami-saigo-onegai" - "shirobako" - "shokugeki-no-soma" - "shonen-jump" - "shura-no-toki" - "shurabara" - "sign-language" - "silver-spoon" - "sket-dance" - "skip-beat" - "slam-dunk" - "smash-hit" - "somedays-dreamers" - "sono-hanabira" - "sora-no-method" - "sora-no-otoshimono" - "sora-no-woto" - "soremachi" - "soreseka" - "soul-eater" - "sound-effects" - "space-battleship-yamato" - "space-brothers" - "speed-grapher" - "spice-and-wolf" - "spirited-away" - "spotted-flower" - "squid-girl" - "star-driver" - "steins-gate" - "strawberry-marshmallow" - "strawberry-panic" - "strike-the-blood" - "strike-witches" - "studio-ghibli" - "suisei-no-gargantia" - "sunday-without-god" - "sundome" - "super-sonico" - "sword-art-online" - "symbolism" - "tales-of-the-abyss" - "tamayura" - "tantei-gakuen-q" - "tears-to-tiara" - "technology" - "tenchi-multiverse" - "tensai-bakabon" - "terminology" - "terra-formars" - "tetsujin-28" - "the-breaker" - "the-cain-saga" - "the-familiar-of-zero" - "the-idolmaster" - "the-law-of-ueki" - "the-pet-girl-of-sakurasou" - "the-pilots-love-song" - "the-ravages-of-time" - "the-tatami-galaxy" - "the-twelve-kingdoms" - "the-wallflower" - "the-wind-rises" - "the-world-god-only-knows" - "theme-song" - "those-who-hunt-elves" - "thunder-jet" - "tiger-and-bunny" - "time-of-eve" - "to-love-ru" - "toaru-kagaku-no-railgun" - "toaru-majutsu-no-index" - "toki-wo-kakeru-shoujo" - "tokyo-esp" - "tokyo-ghoul" - "tokyo-godfathers" - "tokyo-mew-mew" - "tokyo-ravens" - "tonari-no-seki-kun" - "tonnura-san" - "toradora" - "toriko" - "touhou-project" - "tower-of-god" - "transformers" - "travel" - "trigun" - "trinity-blood" - "trinity-seven" - "tropes" - "tsubasa-chronicle" - "tsukihime" - "tsukimonogatari" - "uchouten-kazoku" - "umineko-no-naku-koro-ni" - "un-go" - "unbreakable-machine-doll" - "uq-holder" - "urusei-yatsura" - "utawarerumono" - "vagabond" - "valkyria-chronicles" - "valvrave-the-liberator" - "vampire-knight" - "vandread" - "vividred-operation" - "vocaloid" - "voice-acting" - "wagatsuma-san-ore-no-yome" - "wagnaria" - "wake-up-girls" - "waremete" - "wasurenagumo" - "watamote" - "welcome-to-the-nhk" - "white-album" - "white-album-2" - "windaria" - "witch-craft-works" - "wixoss" - "wizard-barristers" - "wolf-children" - "wolfs-rain" - "wolverine" - "worst" - "x-1999" - "xxxholic" - "yakitate-japan" - "yamada-and-the-7-witches" - "yamato-2199" - "yami-shibai" - "yawara" - "yosuga-no-sora" - "yotsubato" - "youre-under-arrest" - "yowamushi-pedal" - "yozakura-quartet" - "yu-gi-oh" - "yu-yu-hakusho" - "yuki-yuna-is-a-hero" - "yumekui-merry" - "yuruyuri" - "zankyou-no-terror" - "zaregoto" - "zatch-bell" - "zetsuen-no-tempest" - "zettai-junpaku" - "zettai-karen-children" - "zoids") diff --git a/data/tags/apple.el b/data/tags/apple.el deleted file mode 100644 index 225f143..0000000 --- a/data/tags/apple.el +++ /dev/null @@ -1,1025 +0,0 @@ -("1password" - "32-bit" - "3d-video" - "3rd-party" - "4g" - "4k" - "64-bit" - "802.1x" - "accelerometer" - "accessibility" - "accessories" - "accounts" - "acl" - "activation-lock" - "active-directory" - "activity-monitor" - "ad-hoc" - "adblock" - "address-book" - "adium" - "admin" - "administrator" - "adobe" - "adobe-air" - "adobe-bridge" - "adobe-flash" - "adobe-lightroom" - "adobe-photoshop" - "afp" - "agents" - "airdisk" - "airdrop" - "airplane-mode" - "airplay" - "airport" - "airport-utility" - "airprint" - "airtunes" - "alarm" - "album" - "album-art" - "alert" - "alfred" - "alias" - "amazon-ec2" - "amazon-s3" - "android" - "animation" - "anonymizer" - "antenna" - "anti-virus" - "apache" - "aperture" - "apns" - "app-nap" - "apple-configurator" - "apple-hardware-test" - "apple-id" - "apple-inc" - "apple-lossless" - "apple-pay" - "apple-remote-desktop" - "apple-store" - "apple-watch" - "apple2gs" - "applecare" - "applescript" - "appletv" - "appleworks" - "application-switcher" - "applications" - "arabic" - "archive" - "archive-utility" - "assistive-technology" - "att" - "attachments" - "audio" - "audiobook" - "authentication" - "authorization" - "auto-complete" - "auto-update" - "autocorrect" - "autofs" - "automation" - "automator" - "automount" - "autosave" - "avi" - "back-to-my-mac" - "background-app-refresh" - "backlight" - "backup" - "bash" - "battery" - "benchmark" - "bento" - "beta-seed-program" - "bettertouchtool" - "billing" - "binary" - "bless" - "blog" - "blu-ray" - "blued" - "bluetooth" - "bonjour" - "bookmarks" - "boot" - "bootable-disk" - "bootcamp" - "bose" - "brightness" - "browser-history" - "bsd" - "bug" - "bus-power" - "caldav" - "calendar" - "call" - "caller-id" - "camera" - "camera-roll" - "canon" - "caps-lock" - "car-integration" - "carddav" - "cards-app" - "case" - "cd-burning" - "cdma" - "cell-phone-carriers" - "cellular-data" - "certificate" - "character" - "character-map" - "charge" - "charger" - "charging" - "chat" - "children" - "chrome-extensions" - "chromecast" - "cinema-display" - "clash-of-clans" - "classic-mac-os" - "cleaning" - "click" - "client" - "clock" - "closed-clamshell" - "cocoa" - "coda" - "code-signing" - "color" - "command-line" - "comparison" - "compass" - "compatibility" - "compression" - "configuration" - "configuration-management" - "configuration-profiles" - "console" - "contacts" - "contacts.app" - "continuity" - "control-center" - "cookies" - "cooling" - "copy-paste" - "copyright" - "core-storage" - "cpu" - "crash" - "cron" - "crontab" - "crop" - "css" - "csv" - "cups" - "cursor" - "customization" - "cydia" - "daemons" - "daisy-chaining" - "damage" - "darwin" - "dashboard" - "dashboard-widget" - "data" - "data-recovery" - "data-synchronization" - "data-transfer" - "database" - "defaults" - "delete" - "deleting" - "design" - "desktop" - "developer-program" - "development" - "diagnostic" - "dialog" - "dictionary" - "digital-signature" - "digitizer" - "directory-utility" - "disk-format" - "disk-space" - "disk-utility" - "disk-volume" - "diskutil" - "display" - "displayport" - "distnoted" - "dmg" - "dns" - "do-not-disturb" - "dock" - "dock-connector" - "document-management" - "documentation" - "documents-in-the-cloud" - "domain" - "downgrade" - "drag" - "drawing" - "driver" - "drm" - "drobo" - "dropbox" - "dtrace" - "dtruss" - "dual-boot" - "dual-channel" - "dual-screen" - "dvd" - "dvd-burning" - "dvd-player" - "dvd-studio-pro" - "dvi" - "dvorak" - "dynamic-library" - "ear-phones" - "ebook" - "eclipse" - "education" - "efi" - "eject" - "emacs" - "email" - "emoji" - "encoding" - "encryption" - "energy" - "enterprise" - "environment" - "environmental" - "epoch" - "epub" - "error" - "ethernet" - "evernote" - "exchange" - "exchange-activesync" - "exfat" - "exif" - "expose" - "ext2" - "extended-attributes" - "external-disk" - "face-recognition" - "facebook" - "facetime" - "fake.app" - "family-sharing" - "fast-user-switching" - "fat32" - "fax" - "file" - "file-conversion" - "file-extensions" - "file-recovery" - "file-sharing" - "file-transfer" - "filesystem" - "filevault" - "final-cut-express" - "final-cut-pro" - "find-my-iphone" - "find-my-mac" - "finder" - "finder-tags" - "fink" - "firefox" - "firewall" - "firewire" - "firewire-800" - "firmware" - "firmware-password" - "flac" - "flash-memory" - "flickr" - "floppy" - "fluid.app" - "folder-action" - "folders" - "font" - "font-book" - "formatting" - "freenas" - "front-row" - "fsck" - "fsevents" - "ftp" - "fullscreen" - "fuse" - "fusion-drive" - "g5" - "game-center" - "games" - "garageband" - "garageband-09" - "garageband-11" - "garageband-ios" - "gatekeeper" - "gcc" - "geektool" - "generic-hotspot" - "geolocation" - "gesture" - "gift" - "git" - "gmail" - "google" - "google-apps" - "google-calendar" - "google-chrome" - "google-docs" - "google-drive" - "google-hangouts" - "google-maps" - "google-notifier" - "google-now" - "google-plus" - "google-reader" - "google-sync" - "google-voice" - "gps" - "gpu" - "graph" - "grapher" - "graphics" - "graphics-card" - "griffin" - "group" - "growl" - "grub" - "guest-account" - "guid" - "guided-access" - "h.264" - "hacking" - "handwriting" - "hang" - "hard-drive" - "hardware" - "hardware-recommendation" - "hdcp" - "hdd" - "hdmi" - "hdr" - "headless" - "headphones" - "health-kit" - "health.app" - "hfs" - "hfs+" - "hibernate" - "hidden-features" - "hidden-file" - "highlights" - "history" - "home-kit" - "home-sharing" - "homebrew" - "hosts" - "hotmail" - "html" - "http" - "hulu" - "i7" - "ibeacon" - "ibook" - "ibooks" - "ibooks-author" - "ibookstore" - "ical" - "ichat" - "icloud" - "icon" - "id3-tags" - "ide" - "identity" - "idisk" - "idvd" - "ifile" - "ilife" - "imac" - "image-capture" - "image-editing" - "image-processing" - "imap" - "imessage" - "imovie" - "import" - "in-app-purchase" - "indexing" - "input-source" - "instagram" - "install" - "instapaper" - "instruments" - "intel" - "internationalization" - "internet" - "internet-explorer" - "internet-recovery" - "internet-sharing" - "invisible-files" - "ios" - "ios-3" - "ios-4" - "ios-4.2" - "ios-4.3" - "ios-5" - "ios-5.1" - "ios-5.1.1" - "ios-6" - "ios-7" - "ios-8" - "ios-appstore" - "ios-hotspot" - "ios-recovery-mode" - "ios-sdk" - "ios-simulator" - "ios-supervision" - "ip" - "ipa" - "ipad" - "ipad-2" - "ipad-3" - "ipad-4" - "ipad-air" - "ipc" - "ipfw" - "iphone" - "iphone-3g" - "iphone-3gs" - "iphone-4" - "iphone-4s" - "iphone-5" - "iphone-5c" - "iphone-5s" - "iphone-6" - "iphone-config-util" - "iphone-dock" - "iphoto" - "ipod" - "ipod-classic" - "ipod-nano" - "ipod-shuffle" - "ipod-touch" - "ipod.app" - "ipsw" - "ipv6" - "iso" - "iterm" - "itunes" - "itunes-connect" - "itunes-dj" - "itunes-match" - "itunes-producer" - "itunes-radio" - "itunes-store" - "itunes-u" - "iweb" - "iwork" - "jabber" - "jailbreak" - "japanese" - "java" - "javascript" - "kaleidoscope" - "kerberos" - "kernel" - "kernel-extensions" - "kernel-panic" - "keybindings" - "keyboard" - "keychain" - "keynote" - "kindle" - "kvm" - "language" - "last.fm" - "latex" - "launch-services" - "launchbar" - "launchd" - "launchpad" - "ldap" - "leopard" - "library" - "library-management" - "libre-office" - "license" - "lid" - "lightning" - "links" - "linux" - "lion" - "logic" - "logicboard" - "login" - "login-items" - "login-screen" - "logout" - "logs" - "look-up" - "lte" - "lyrics" - "m4a" - "m4b" - "mac" - "mac-address" - "mac-appstore" - "mac-mini" - "mac-pro" - "macbook" - "macbook-air" - "macbook-pro" - "macports" - "macvim" - "magic-mouse" - "magic-trackpad" - "magsafe" - "mail-rules" - "mail.app" - "maintenance" - "malware" - "mamp" - "mapping" - "maps" - "markdown" - "mavericks" - "mdm" - "mdns" - "mds" - "mediaplayer" - "meid" - "memory" - "memory-leak" - "memory-pressure" - "menu-bar" - "menu-bar-apps" - "menu-extra" - "merge" - "messages" - "metadata" - "microphone" - "microsoft" - "microsoft-sharepoint" - "midi" - "mighty-mouse" - "migration" - "migration-assistant" - "mini-display-adapter" - "minimize" - "mirroring" - "mission-control" - "mobile-device-management" - "mobile-iphoto" - "mobile-mail" - "mobile-safari" - "mobileme" - "modem" - "monitoring" - "mono" - "motherboard" - "motion" - "mount" - "mountain-lion" - "mouse" - "mouse-keys" - "mov" - "move" - "movie" - "mp3" - "mp4" - "mplayer" - "ms-office" - "multi-boot" - "multi-touch" - "multimarkdown" - "multiple-displays" - "multitasking" - "music" - "music.app" - "mysql" - "nas" - "navigation" - "neooffice" - "netboot" - "netflix" - "network-user" - "networking" - "newsstand" - "nfs" - "nike-running" - "nikeplus" - "non-unibody" - "notes.app" - "notification-center" - "notifications" - "ntfs" - "ntp" - "numbers" - "nvram" - "ocr" - "office365" - "omni-focus" - "omni-graffle" - "onenote" - "open-directory" - "open-office" - "open-source" - "opencl" - "opendirectoryd" - "openssl" - "opera" - "optical-drive" - "oracle" - "osx" - "osx-reinstallation" - "osx-server" - "package-management" - "pages" - "panther" - "parallels-desktop" - "parental-controls" - "partition" - "passbook" - "passcode" - "password" - "path" - "paypal" - "pc" - "pdf" - "performance" - "peripheral" - "perl" - "permission" - "phone.app" - "phonetic" - "photo-booth" - "photo-stream" - "photos" - "photos.app" - "php" - "picasa" - "ping" - "pixelmator" - "pkg" - "playlist" - "plex" - "plist" - "plot" - "plugins" - "pmset" - "podcasts" - "podcasts-app" - "pop" - "portable-home-directory" - "postgresql" - "postscript" - "power" - "power-mac" - "power-management" - "power-nap" - "powerbook" - "powerpc" - "pptp" - "preferences" - "preview" - "price" - "printing" - "privacy" - "process" - "processor" - "productivity" - "profile-manager" - "projector" - "proxy" - "push" - "python" - "quality" - "quartz-composer" - "quicklook" - "quicklook-plugin" - "quicksilver" - "quicktime" - "quit" - "r" - "raid" - "rails" - "rar" - "ratings" - "reading-list" - "readitlater" - "reboot" - "recording" - "recovery" - "recovery-hd" - "recycle" - "reeder" - "refit" - "refresh" - "remapping" - "reminders" - "remote-control" - "remote-desktop" - "remote-disc" - "remote.app" - "rename" - "repair" - "resolution" - "resources" - "restart" - "restore" - "resume" - "retail" - "retina-display" - "retina-macbook-pro" - "reviews" - "rightclick" - "ringtones" - "root" - "rosetta" - "router" - "rss" - "rsync" - "ruby" - "rvm" - "safari" - "safari-6" - "safari-extensions" - "safari-reader" - "safari-windows" - "safe-mode" - "samba" - "sandbox" - "sata" - "saving" - "scanning" - "schedule" - "scp" - "scratches" - "screen" - "screen-capture" - "screen-lock" - "screen-sharing" - "screensaver" - "screw" - "script" - "scroll-bars" - "scrolling" - "sd-card" - "search" - "search-engine" - "secure-erase" - "security" - "serial-number" - "server.app" - "serveradmin" - "services" - "settings" - "setup" - "setup-assistant" - "sftp" - "sharing" - "shazam" - "shell" - "shortcut" - "shortcut-menu" - "shutdown" - "sidebar" - "signal" - "signal-strength" - "signature" - "silent-mode" - "silverlight" - "sim" - "simbl" - "single-user" - "sips" - "siri" - "skim" - "skitch" - "skype" - "sleep-wake" - "slideshow" - "smart" - "smart-cover" - "smart-folders" - "smart-playlist" - "smb" - "smime" - "sms" - "smtp" - "snmp" - "snow-leopard" - "socks" - "software" - "software-recommendation" - "software-update" - "sort" - "sound-volume" - "soundflower" - "space" - "spaces" - "spam" - "sparrow" - "sparrow-ios" - "sparsebundle" - "speaker-dock" - "speakers" - "special-effects" - "speech" - "speech-synth" - "spellcheck" - "spelling" - "spotify" - "spotlight" - "springboard" - "sqlite" - "ssd" - "ssh" - "ssl" - "stacks" - "starcraft-2" - "startup" - "stat" - "statistics" - "status-bar" - "steam" - "stereo" - "storage" - "streaming" - "stylus" - "sublimetext" - "subtitle" - "subversion" - "sudo" - "superduper" - "swift" - "swiftkey" - "switching" - "symlink" - "system-information" - "system-prefs" - "system-requirements" - "tabs" - "tag" - "tail" - "tar" - "target-disk-mode" - "target-display" - "tcp" - "television" - "temperature" - "template" - "terminal" - "terminology" - "tethering" - "text" - "text-editor" - "text-input" - "text-to-speech" - "textedit" - "textmate" - "textwrangler" - "theft-recovery" - "themes" - "third-party" - "thunderbolt" - "thunderbolt-display" - "tiger" - "time" - "time-capsule" - "time-machine" - "time-tracking" - "timezone" - "tmux" - "tor" - "torrent" - "touchid" - "touchscreen" - "trackpad" - "transition" - "transmission" - "trash" - "trello" - "trim" - "trojan" - "troubleshooting" - "truecrypt" - "tuneflex" - "tunnel" - "turbo-boost" - "tutorials" - "twain" - "tweaks" - "tweetbot" - "twitter" - "two-step-authentication" - "ubuntu" - "udid" - "ui" - "ukelele" - "undo-redo" - "unibody" - "unicode" - "uninstall" - "universal-binaries" - "unix" - "unlock" - "untagged" - "upgrade" - "url" - "usb" - "user-account" - "utf-8" - "uti" - "utilities" - "uuid" - "verify" - "versions" - "vga" - "vga-adapter" - "vi" - "vibrate" - "video" - "video-adapter" - "video-capture" - "video-conference" - "video-editing" - "virtual-memory" - "virtualbox" - "virtualization" - "virus" - "visual-voicemail" - "vlc" - "vmware" - "voice" - "voice-control" - "voice-dictation" - "voice-memo" - "voice-recognition" - "voicemail" - "voiceover" - "voip" - "vpn" - "vpp" - "wake-on-lan" - "wallpaper" - "warranty" - "wav" - "waveform" - "web-browser" - "web-browsing" - "web-inspector" - "web-sharing" - "webapp" - "webcam" - "webdav" - "webgl" - "webkit" - "webserver" - "websites" - "whatsapp.app" - "widgets" - "wifi" - "wifi-calling" - "wiki" - "window-manager" - "windows" - "windows-7" - "windows-8" - "windows-taskbar" - "windows-vista" - "windows-xp" - "wine" - "wireless-mighty-mouse" - "wireshark" - "wmv" - "word-processor" - "wordpress" - "workspaces" - "x11" - "xcode" - "xml" - "xmpp" - "xquartz" - "xserve" - "yahoo" - "yosemite" - "youtube" - "zevo" - "zfs" - "zip" - "zoom" - "zsh") diff --git a/data/tags/arduino.el b/data/tags/arduino.el deleted file mode 100644 index 3f4a0c3..0000000 --- a/data/tags/arduino.el +++ /dev/null @@ -1,193 +0,0 @@ -("1-wire" - "accelerometer" - "adafruit" - "algorithm" - "analogread" - "analogwrite" - "android" - "arduino-due" - "arduino-duemilanove" - "arduino-galileo" - "arduino-ide" - "arduino-leonardo" - "arduino-mega" - "arduino-micro" - "arduino-motor-shield" - "arduino-nano" - "arduino-pro-micro" - "arduino-pro-mini" - "arduino-uno" - "arduino-uno-smd" - "arduino-yun" - "arduinoisp" - "arduno-nano" - "assembly" - "atmega328" - "atmega32u4" - "atmel-studio" - "attiny" - "audio" - "automatization" - "avr" - "avr-toolchain" - "avrdude" - "bare-conductive" - "battery" - "benchmark" - "bluetooth" - "bootloader" - "bossa" - "build" - "button" - "c" - "c++" - "class" - "clones" - "code-optimization" - "coding-standards" - "communication" - "compile" - "computer-vision" - "core-libraries" - "counterfeit" - "current" - "darlington" - "data-type" - "debian" - "debounce" - "debugging" - "digital" - "display" - "documentation" - "eclipse" - "eeprom" - "electricity" - "electronics" - "emulation" - "enclosure" - "ethernet" - "events" - "fat" - "firmware" - "flash" - "float" - "frequency" - "ftdi" - "fuses" - "gps" - "gsm" - "gyroscope" - "hardware" - "heat" - "i2c" - "icsp" - "ide" - "ino" - "interrupt" - "ipc" - "ir" - "isp" - "isr" - "johnny-five" - "lan" - "lcd" - "led" - "library" - "linux" - "mac-os" - "map" - "matlab" - "memory-usage" - "midi" - "millis" - "modbus" - "mosfet" - "motor" - "mpu6050" - "namespace" - "networking" - "node.js" - "nrf24l01+" - "oscillator-clock" - "osx" - "performance" - "pins" - "pointer" - "potentiometer" - "power" - "progmem" - "programmer" - "programming" - "project" - "project-critique" - "prototype" - "proximity" - "pulsein" - "pwm" - "python" - "relay" - "reliability" - "remote-control" - "reset" - "resistor" - "revisions" - "rf" - "rfid" - "robotics" - "rotary-encoder" - "safety" - "saving" - "sd-card" - "sensors" - "serial" - "servo" - "severino" - "shields" - "shift-register" - "signal-processing" - "simulator" - "singlestep" - "sketch" - "sketch-size" - "sleep" - "software" - "softwareserial" - "solar" - "spi" - "sram" - "ssh" - "string" - "struct" - "system-design" - "tcpip" - "teensy" - "temperature-sensor" - "terminal" - "testing" - "text-processing" - "threads" - "time" - "timers" - "timing" - "tinygps" - "tlc5940" - "tmrpcm" - "transistor" - "uart" - "ubuntu" - "ui" - "uln2003a" - "untagged" - "uploading" - "usb" - "variables" - "version-control" - "virtualwire" - "voltage-level" - "web" - "web-server" - "web-service" - "wifi" - "wire-library" - "wires" - "xbee") diff --git a/data/tags/askubuntu.el b/data/tags/askubuntu.el deleted file mode 100644 index 34396c3..0000000 --- a/data/tags/askubuntu.el +++ /dev/null @@ -1,2711 +0,0 @@ -(".desktop" - ".htaccess" - ".profile" - ".sh" - ".ttf" - "10.04" - "10.10" - "11.04" - "11.10" - "12.04" - "12.04.5" - "12.10" - "13.04" - "13.10" - "14.04" - "14.10" - "2d" - "32-bit" - "3d" - "3g" - "4g" - "64-bit" - "7.10" - "7zip" - "8.04" - "8.10" - "9.04" - "9.10" - "a2dp" - "aac" - "abcde" - "abiword" - "ac100" - "ac3" - "accessibility" - "accomplishments" - "accounts" - "ace" - "acer" - "acl" - "acpi" - "active-3d" - "active-directory" - "activities-overview" - "ada" - "adapter" - "adb" - "adblock" - "add-apt-repository" - "add-on" - "address-book" - "adduser" - "adhoc" - "administration" - "administrator" - "adobe" - "adobe-acrobat" - "adobe-air" - "adobe-kuler" - "adobe-reader" - "adsl" - "adt" - "afs" - "ahci" - "aif" - "aircrack-ng" - "airplane-mode" - "airplay" - "akonadi" - "alacarte" - "alcatel" - "alfa-wireless" - "alias" - "alien" - "alienware" - "alps" - "alsa" - "alt" - "alternate" - "alternative" - "amarok" - "amazon" - "amazon-ec2" - "amazon-mp3-downloader" - "ambiance" - "amd-processor" - "anacron" - "android" - "android-sdk" - "android-studio" - "animations" - "anjuta" - "anki" - "annotation" - "ansi" - "antialiasing" - "antivirus" - "apache-ant" - "apache2" - "apache2.4" - "apic" - "app-install" - "apparmor" - "appearance" - "appindicator" - "apple" - "apple-keyboard" - "applet" - "application-development" - "application-finder" - "application-submission" - "application-switcher" - "applications-lens" - "appmenu" - "apport" - "apt" - "apt-cache" - "apt-cacher" - "apt-cacher-ng" - "apt-fast" - "apt-listchanges" - "apt-mirror" - "aptana-studio" - "aptdaemon" - "apticron" - "aptitude" - "aptoncd" - "apturl" - "arabic" - "architecture" - "archive" - "ardour" - "arduino" - "arista-transcoder" - "ark" - "arm" - "artillery" - "artwork" - "ascii" - "asciidoc" - "aspire" - "aspire-one" - "asterisk" - "asus" - "at-command" - "ath5k" - "ath9k" - "athena-filemanager" - "atheros" - "ati" - "atime" - "attachment" - "audacious" - "audacity" - "audible" - "audio-jack" - "audio-player" - "audio-recording" - "audio-sync" - "audiobooks" - "authentication" - "auto-completion" - "auto-login" - "autoconf" - "autofs" - "autohide" - "autokey" - "automatic" - "automation" - "automount" - "autoplay" - "autorun" - "autossh" - "autostart" - "autotools" - "avahi" - "avconv" - "avi" - "avidemux" - "awesome" - "awk" - "awn" - "aws" - "axel" - "ayatana" - "b43" - "background" - "background-process" - "backintime" - "backlight" - "backport" - "backtrack" - "backup" - "backuppc" - "backwards-compatability" - "badblocks" - "baloo" - "bamboo" - "bandwidth" - "banner" - "banshee" - "barcode" - "bash" - "bash-history" - "bashrc" - "batch" - "batch-rename" - "battery" - "bazaar" - "bbswitch" - "bc" - "bcache" - "beagleboard" - "beatbox" - "benchmarks" - "beowulf" - "berkeleydb" - "beta" - "bfq" - "bfs" - "bgcolor" - "binary" - "bind" - "binutils" - "bios" - "bitcoin" - "bitnami" - "bittorrent" - "bkchem" - "blackberry" - "blacklist" - "bleachbit" - "blender" - "blocklist" - "blogs" - "blu-ray" - "bluefish" - "bluetooth" - "bluetooth-speaker" - "boinc" - "bookmarks" - "books" - "boost" - "boot" - "boot-failure" - "boot-order" - "boot-partition" - "boot-repair" - "boot-time" - "boot-to-ram" - "bootcamp" - "bootchart" - "bootloader" - "bootup" - "bottle" - "boxee" - "boxes" - "brainstorm" - "branding" - "brasero" - "bricscad" - "brightness" - "broadband" - "broadcasting" - "broadcom" - "brother" - "browser" - "bsd" - "btrfs" - "bug-reporting" - "bugzilla" - "build" - "bumblebee" - "burg" - "burning" - "business-desktop-remix" - "busybox" - "button" - "byobu" - "bzip2" - "bzrlib" - "c" - "c#" - "c++" - "cabextract" - "cac-reader" - "cache" - "caching" - "cacti" - "cad" - "cairo" - "cairo-dock" - "caja" - "calculator" - "calendar" - "calibre" - "calligra" - "camera" - "canon" - "canonical" - "cappind" - "capslock" - "capture" - "card-reader" - "cardapio" - "case-insensitive" - "cat" - "catalyst" - "ccsm" - "cd" - "cd-drive" - "cd-image" - "cd-ripping" - "cdma" - "cdn" - "cedarview" - "centrino" - "ceph" - "certificates" - "certification" - "cgi" - "cgminer" - "cgroup" - "character-set" - "charms" - "charset" - "chcon" - "checkbox" - "checkinstall" - "checksums" - "cheese" - "chef" - "chemaxon" - "chess" - "chinese" - "chm" - "chm2pdf" - "chmod" - "chmsee" - "chorded-keyboard" - "chown" - "chrome-extension" - "chromebook" - "chromecast" - "chromeos" - "chromium" - "chroot" - "chsh" - "cifs" - "cinelerra" - "cinnamon" - "cisco" - "citrix" - "clamav" - "clang" - "class" - "claws" - "cleanup" - "clementine" - "click-packages" - "click-policy" - "client" - "clipboard" - "clipboard-manager" - "clock" - "clone" - "clonezilla" - "cloning" - "cloud" - "cloud-init" - "cluster" - "clutter" - "clutterflow" - "cmake" - "cms" - "cmus" - "cmyk" - "cobbler" - "code-blocks" - "codecs" - "coding-practice" - "color-depth" - "color-management" - "colors" - "command-line" - "commercial" - "community" - "compaq" - "comparison" - "compat-wireless" - "compatibility" - "compilation-target" - "compiler" - "compiling" - "compiz" - "compose" - "compose-key" - "compositing" - "compression" - "compton" - "configuration" - "configuration-management" - "configure" - "conky" - "connection" - "connection-sharing" - "connman" - "console" - "console-kit" - "contacts" - "container" - "context-menu" - "continuous-deployment" - "contributing" - "conversion" - "convert" - "convert-command" - "cookie" - "copy.com" - "coreboot" - "coreutils" - "couchdb" - "covergloobus" - "cp" - "cpan" - "cpu" - "cpu-architecture" - "cpu-load" - "cpufreq" - "cpuinfo" - "cpulimit" - "cr-48" - "crash" - "crashplan" - "cream" - "creative-zen" - "crebs" - "cron" - "cron-jobs" - "crontab" - "cross-compilation" - "crossover" - "crossover-office" - "crossplatform" - "crunchbang" - "cryptroot" - "cryptsetup" - "csd" - "csh" - "css" - "csv" - "cube" - "cuda" - "cups-lpd" - "curl" - "curlftpfs" - "cursor" - "cursor-theme" - "custom-distributions" - "custom-installer" - "customization" - "customizer" - "cuttlefish" - "cybercafe" - "cyrillic" - "cyrus" - "daap" - "dansguardian" - "darktable" - "dash-shell" - "data-loss" - "data-recovery" - "database" - "date" - "davfs2" - "davmail" - "daw" - "dbus" - "dconf" - "dd" - "dd-wrt" - "ddclient" - "ddrescue" - "dead-keys" - "deadbeef" - "deadlock" - "deb" - "debconf" - "debdelta" - "debian" - "debian-installer" - "debootstrap" - "debug" - "debugging" - "debuild" - "decompress" - "decryption" - "default" - "default-browser" - "default-programs" - "defrag" - "deja-dup" - "delete" - "delicious" - "dell" - "dell-mini-10" - "dell-mini-9" - "dell-studio-xps-16" - "dell-vostro" - "deluge" - "dependencies" - "derivatives" - "design" - "desktop-directories" - "desktop-environments" - "desktopcouch" - "detect" - "development" - "device-name" - "devices" - "devilspie" - "df" - "dh-make" - "dhclient" - "dhcp" - "dhcpd" - "diagnostic" - "diagram" - "dialog" - "dictionary" - "diff" - "differences" - "digikam" - "digital-dairy" - "directory" - "disconnect" - "disk" - "disk-check" - "disk-image" - "disk-management" - "disk-ripping" - "disk-usage" - "disk-utility" - "display" - "display-manager" - "display-resolution" - "displaylink" - "displayport" - "dist-upgrade" - "distro-recommendation" - "django" - "djvu" - "dkim" - "dkms" - "dlna" - "dm-cache" - "dmcrypt" - "dmesg" - "dmraid" - "dns" - "dnsmasq" - "do-release-upgrade" - "doc" - "dock" - "dockbarx" - "docker" - "docking" - "docky" - "document" - "document-management" - "documentation" - "dolphin" - "domain-server" - "donation" - "dosbox" - "dotnet" - "doublecmd" - "dovecot" - "downgrade" - "download-manager" - "download-speed" - "downloaders" - "downloads" - "doxygen" - "dpi" - "dpkg" - "dput" - "dracut" - "drag-and-drop" - "dragon" - "drive" - "drivel" - "drivers" - "drm" - "dropbox" - "drupal" - "dsl" - "dual-boot" - "dual-monitor" - "dualhead" - "dump" - "duplex-printing" - "duplicate" - "duplicate-files" - "duplicity" - "duration" - "dv6" - "dvb" - "dvb-t" - "dvd" - "dvd-audio" - "dvd-backup" - "dvi" - "dvorak" - "dynamic-ip" - "dynamic-linking" - "dyndns" - "e1000" - "easter-egg" - "easybcd" - "easytether" - "ebooks" - "ebtables" - "ec2-api-tools" - "echo" - "eclipse" - "eclipse-cdt" - "ecryptfs" - "edac" - "editing" - "editor" - "edubuntu" - "education" - "eeepc" - "effects" - "ejabberd" - "eject" - "ekiga" - "elantech" - "elementary" - "elementary-theme" - "elevation" - "elinks" - "emacs" - "email" - "email-client" - "embedded-system" - "emblem" - "emerald" - "emesene" - "emmc" - "empathy" - "emulation" - "emulator" - "encfs" - "encoding" - "encrypted-partition" - "encryption" - "engine" - "enhanceio" - "enigmail" - "enlightenment" - "environment" - "environment-variables" - "eog" - "epiphany" - "eps" - "epson" - "epub" - "equalizer" - "equivs" - "erlang" - "error-handling" - "espeak" - "essid" - "esx" - "etc" - "ethernet" - "ettercap" - "evdev" - "events" - "evernote" - "everpad" - "evince" - "evolution" - "evolution-mapi" - "exaile" - "exe" - "executable" - "execute-command" - "exfat" - "expect" - "expo-mode" - "expresscard" - "ext3" - "ext4" - "extension" - "external-hdd" - "external-monitor" - "external-soundcard" - "extract" - "extras" - "f-spot" - "f2fs" - "facebook" - "factor" - "faenza" - "fail2ban" - "failover" - "fan" - "fancontrol" - "fat32" - "fax" - "fbgrab" - "fcitx" - "fdisk" - "fedena" - "fedora" - "ffmpeg" - "fglrx" - "file-association" - "file-extension" - "file-format" - "file-properties" - "file-roller" - "file-server" - "file-sharing" - "file-size" - "file-sorting" - "file-type" - "filelink" - "filemanager" - "filename" - "files" - "filesystem" - "filezilla" - "finance" - "find" - "find-command" - "fingerprint-reader" - "firefox" - "firefox-extensions" - "firestarter" - "firewall" - "firewire" - "firmware" - "fish" - "flac" - "flareget" - "flash" - "flashcache" - "flask" - "flicker" - "flickr" - "floppy" - "fluendo" - "flush" - "fluxbox" - "flv" - "focus" - "folder" - "font-rendering" - "fontconfig" - "fontforge" - "fonts" - "foobar2000" - "foobnix" - "format" - "format-conversion" - "fortran" - "fortune" - "framebuffer" - "framerate" - "free" - "free-software" - "freebasic" - "freelan" - "freemat" - "freenx" - "freespeak" - "freeze" - "frequency" - "friends-app" - "fsck" - "fstab" - "ftp" - "fujitsu-siemens" - "fullscreen" - "function-keys" - "functions" - "fuse" - "g++" - "galaxy-nexus" - "gallium" - "gamepad" - "games" - "gammu" - "gateway" - "gcalctool" - "gcc" - "gconf" - "gdb" - "gdebi" - "gdevilspie" - "gdm" - "geany" - "geary" - "gedit" - "gem" - "gems" - "geoip" - "gestures" - "get-iplayer" - "gettext" - "ghostscript" - "gif" - "gigolo" - "gimp" - "gis" - "git" - "git-buildpackage" - "github" - "gitosis" - "gksu" - "gksudo" - "glade" - "glassfish" - "glib" - "glibc" - "glippy" - "glitch" - "globalmenu" - "gloobus-preview" - "gma3600" - "gma500" - "gmail" - "gmplayer" - "gmrun" - "gmusicbrowser" - "gnash" - "gnome" - "gnome-activity-journal" - "gnome-calculator" - "gnome-classic" - "gnome-color-manager" - "gnome-control-center" - "gnome-disk-utility" - "gnome-do" - "gnome-documents" - "gnome-fallback" - "gnome-keyring" - "gnome-panel" - "gnome-pie" - "gnome-power-manager" - "gnome-screensaver" - "gnome-screenshot" - "gnome-session" - "gnome-settings-daemon" - "gnome-shell-extension" - "gnome-terminal" - "gnome-tweak-tool" - "gnome2" - "gnomevfs" - "gnote" - "gnu" - "gnu-r" - "gnu-screen" - "gnumeric" - "gnupg" - "gnuplot" - "gobject" - "golang" - "goldendict" - "google" - "google-app-engine" - "google-calendar" - "google-chat" - "google-chrome" - "google-desktop" - "google-drive" - "google-earth" - "google-glass" - "google-hangouts" - "google-maps" - "google-musicmanager" - "google-picasa" - "google-plus" - "google-reader" - "google-talk" - "google-video" - "googledart" - "governor" - "gparted" - "gpg" - "gpl" - "gpodder" - "gps" - "gpt" - "gpu" - "grab-handles" - "gradle" - "grails" - "graphics" - "graphics-tablet" - "graphite" - "grep" - "greybird" - "greylisting" - "grive" - "grooveshark" - "groovy" - "groups" - "grub-efi" - "grub-legacy" - "grub2" - "grubrescue" - "grunt" - "gsettings" - "gst" - "gstreamer" - "gtalk" - "gthumb" - "gtk" - "gtk-2" - "gtk3" - "gtkrc" - "guake" - "guest-additions" - "guest-os" - "guest-session" - "gufw" - "gui" - "guvcview" - "gvfs" - "gvim" - "gwibber" - "gzip" - "h264" - "hadoop" - "hal" - "hamster" - "handbrake" - "hard-drive" - "hard-link" - "hardware" - "hardware-acceleration" - "hardware-certification" - "hardware-enablement-stack" - "hardware-recommendation" - "hardware-test" - "hash" - "haskell" - "hd-video" - "hd6470m" - "hda-intel" - "hdmi" - "hdtv" - "header" - "headless" - "headphones" - "headset" - "heat" - "hebrew" - "held-packages" - "helpfile" - "hfs+" - "hibernate" - "hidden-features" - "hidden-files" - "high-availability" - "history" - "home-directory" - "home-server" - "home-theatre" - "hostap" - "hostapd" - "hosting" - "hostname" - "hosts" - "hot-spot" - "hotot" - "hotplug" - "hp" - "hp-cloud" - "hp-pavilion" - "hp-touchpad" - "hplip" - "htc" - "htdocs" - "html" - "html5" - "htop" - "https" - "httrack" - "huawei" - "hud" - "hvr-2250" - "hybrid" - "hybrid-efi" - "hybrid-graphics" - "hyper-v" - "i3-wm" - "i915" - "ibm" - "ibm-lotus-notes" - "ibm-lotus-symphony" - "ibus" - "icaclient" - "icc" - "icecast" - "icecat" - "icedtea" - "ices" - "iceweasel" - "icmp" - "icon-themes" - "icons" - "ide" - "ideapad" - "idevices" - "idle" - "idm" - "ie" - "ifconfig" - "ifolder" - "imac" - "image-editor" - "image-processing" - "image-viewer" - "imagemagick" - "images" - "imap" - "indexing" - "indicator" - "indicator-message" - "indicator-sound" - "indicator-syc" - "inetd" - "info" - "init" - "init.d" - "initramfs" - "inkscape" - "inode" - "inotify" - "input" - "input-devices" - "input-language" - "input-method" - "inputrc" - "inspiron" - "instagram" - "install-from-source" - "installation" - "installed-programs" - "instant-messaging" - "insync" - "integrated" - "intel" - "intel-cpu" - "intel-graphics" - "intel-hd" - "intel-smart-response" - "intel-video" - "intel-wireless" - "intellij" - "interface" - "internationalization" - "internet" - "internet-connection" - "internet-radio" - "interrupts" - "intranet" - "io" - "iodbc" - "ios" - "iotop" - "iowait" - "ip" - "ip-address" - "ip-forward" - "ip-scanner" - "ipad" - "iphone" - "iphoto" - "ipmi" - "ipod" - "ipsec" - "iptables" - "ipv6" - "ipython" - "irc" - "ircd-hybrid" - "irda" - "irssi" - "iscsi" - "iso" - "isp" - "itunes" - "ivtv" - "ivybridge" - "iwlwifi" - "jabber" - "jack" - "japanese" - "jar" - "java" - "javafx" - "javascript" - "jboss" - "jce" - "jdk" - "jdownloader" - "jekyll" - "jenkins" - "jfs" - "jhbuild" - "jigdo" - "jmol" - "job-control" - "jockey" - "join" - "joomla" - "joystick" - "jpeg" - "jpilot" - "jre" - "jshint" - "juju" - "julia-lang" - "jungledisk" - "jupiter" - "jvm" - "k3b" - "k3copy" - "kaddressbook" - "kate" - "kazam" - "kde" - "kde-apps" - "kde-connect" - "kde-telepathy" - "kde4" - "kde5" - "kdenlive" - "kdevelop" - "kdm" - "keepass" - "keepassx" - "kerberos" - "kerio" - "kernel" - "kernel-modules" - "keryx" - "key" - "key-binding" - "keyboard" - "keyboard-accelerators" - "keyboard-backlight" - "keyboard-layout" - "keychain" - "keycodes" - "keyrings" - "keys" - "keyserver" - "kickoff" - "kickstart" - "kile" - "kill" - "killall" - "kindle" - "kinect" - "kiosk" - "klipper" - "kmail" - "kmix" - "kms" - "kmymoney" - "knr" - "kodak" - "kodi" - "komodo-edit" - "konica" - "konqueror" - "konsole" - "kontact" - "kopete" - "korean" - "korganizer" - "krunner" - "krusader" - "ksm" - "ksnapshot" - "ktorrent" - "kubuntu" - "kubuntu-netbook" - "kupfer" - "kvm" - "kvm-switch" - "kwallet" - "kwin" - "kylin" - "lame" - "lamp" - "lan" - "landscape" - "language" - "language-support" - "laptop" - "laserjet" - "last.fm-client" - "latex" - "launcher" - "launchpad" - "launchpad-api" - "launchpadlib" - "launchy" - "layout" - "lazarus" - "ld" - "ldap" - "legal" - "lenovo" - "lenovo-s12-intel" - "lenses" - "less" - "lexmark" - "lg" - "libav" - "libdbusmenu" - "libertas" - "libgcrypt" - "libnotify" - "libpcap" - "libpurple" - "libraries" - "libre.fm" - "libreoffice" - "libtiff" - "libunity" - "libvirt" - "libxml" - "license" - "lid" - "liferea" - "light-locker" - "lightdm" - "lightning" - "lightread" - "lighttpd" - "lightworks" - "likewise" - "lilypond" - "limit" - "linaro" - "lincroft" - "linespacing" - "lingot" - "lintian" - "lirc" - "lirc-zilog" - "live-cd" - "live-environment" - "live-usb" - "livedvd" - "lm-sensors" - "lmms" - "local" - "locale" - "localhost" - "localization" - "locally-integrated-menus" - "localrepository" - "locate" - "location" - "location-bar" - "lock" - "lock-screen" - "lockup" - "locoteams" - "log" - "logging" - "login" - "login-screen" - "logitech" - "logitech-t630" - "logitech-unifying" - "logo" - "logout" - "logrotate" - "logs" - "looking-glass" - "low-power" - "lowgraphics" - "lpd" - "ls" - "lsb-release" - "lsof" - "lspci" - "lsusb" - "lts" - "ltsp" - "ltsp-client" - "lua" - "lubuntu" - "luks" - "luz" - "lvm" - "lxc" - "lxde" - "lxdm" - "lxml" - "lxpanel" - "lxqt" - "lxrandr" - "lxsession" - "lxterminal" - "lynis" - "lynx" - "lyrics" - "lyx" - "m4a" - "maas" - "mac" - "mac-mini" - "macbook" - "macbook-air" - "macbook-pro" - "macbuntu" - "macosx" - "madwifi" - "magic-mouse" - "magic-trackpad" - "mail" - "mail-notification" - "mail-server" - "maildir" - "mailing-list" - "mailman" - "mailutils" - "mainline-kernel" - "maintenance" - "make" - "makefile" - "malware" - "man" - "manpage" - "margin" - "mariadb" - "markdown" - "market-share" - "marlin" - "mass-storage" - "master-pdf-editor" - "mate" - "math" - "matlab" - "matplotlib" - "matrox" - "maven-3" - "maximized" - "mbox" - "mbr" - "md5sum" - "mdadm" - "mdm" - "media" - "media-buttons" - "media-library" - "media-manager" - "mediaserver" - "mediatomb" - "mediawiki" - "medibuntu" - "meego" - "mega" - "memenu" - "memory" - "memory-leak" - "memory-test" - "memory-usage" - "memtest" - "mencoder" - "menu" - "menu-bar" - "menulibre" - "mercurial" - "merge" - "mesa" - "mesh" - "messages" - "messaging-menu" - "messaging-tray" - "metacity" - "metadata" - "metapackages" - "mib" - "micro-sd" - "microphone" - "microsoft" - "microsoft-installer" - "microsoft-keyboard" - "microsoft-lync" - "microsoft-mouse" - "microsoft-office" - "microsoft-powerpoint" - "microsoft-word" - "midi" - "midnight-commander" - "midori" - "migration" - "mime-type" - "minecraft" - "mingw32" - "minidlna" - "minimize" - "minitube" - "minix" - "mint" - "mir" - "miro" - "mirrors" - "mkdir" - "mkv" - "mms" - "mobi" - "mobile-broadband" - "mod-rewrite" - "mod-ssl" - "mode" - "modelines" - "modem" - "modem-manager" - "modprobe" - "modules" - "mogrify" - "mongodb" - "monit" - "monitor" - "monitoring" - "mono" - "monodevelop" - "moonlight" - "motd" - "motherboard" - "motif" - "motu" - "mount" - "mountpoint" - "mouse" - "mouse-scroll" - "mouse-wheel" - "mousepad" - "mov" - "mozc" - "mozilla" - "mp3" - "mp3-player" - "mp3-tag" - "mp4" - "mpd" - "mpi" - "mplayer" - "ms-dos" - "ms-exchange" - "msgfmt" - "msi" - "msn" - "mta" - "mtp" - "multi-core" - "multi-touch" - "multi-user" - "multiarch" - "multiboot" - "multimedia" - "multimedia-keys" - "multipath" - "multiple-desktops" - "multiple-instances" - "multiple-monitors" - "multiple-users" - "multiple-workstations" - "multipointerx" - "multiseat" - "multiverse" - "mumble" - "munin" - "muon-package-manager" - "music" - "music-player" - "musicbrainz" - "mustek" - "mute" - "mutt" - "mutter" - "mv" - "mv-command" - "my-weather-indicator" - "mysql" - "mysql-workbench" - "mythbuntu" - "mythtv" - "myunity" - "nagios3" - "naming" - "naming-conventions" - "nano" - "nas" - "nat" - "naturallanguageprocessing" - "nautilus" - "nautilus-actions" - "nautilus-elementary" - "nautilus-extensions" - "nautilus-script" - "navigation" - "ncmpcpp" - "ncurses" - "ndb" - "ndiswrapper" - "neatx" - "nemo" - "nepomuk" - "nessus" - "netbeans" - "netcat" - "netextender" - "netflix" - "netflix-desktop" - "netgear" - "netinstall" - "netstat" - "network-bonding" - "network-bridge" - "network-drive" - "network-manager" - "network-monitoring" - "networking" - "nexus-10" - "nexus-4" - "nexus-7" - "nfc" - "nfs" - "nftables" - "nginx" - "nic" - "nice" - "nimbuzz" - "nitro" - "nitroshare" - "nmap" - "nodejs" - "nohup" - "noise" - "nokia" - "nomodeset" - "non-pae" - "notes" - "notification" - "notification-area" - "notify-osd" - "notify-send" - "nouveau" - "nova" - "novell-netware" - "npm" - "nrpe" - "ns2" - "ntfs" - "ntfs-3g" - "ntop" - "ntp" - "ntpdate" - "nullmailer" - "numlock" - "numpad" - "nut" - "nux" - "nvidia" - "nvidia-current-dev" - "nvidia-optimus" - "nvidia-prime" - "nvidia-settings" - "nx" - "oauth" - "objdump" - "objective-c" - "ocr" - "octave" - "odt" - "oem" - "office" - "office-communicator" - "official-repositories" - "offline" - "ogg-opus" - "ogg-vorbis" - "okular" - "onboard" - "one-hundred-paper-cuts" - "oneconf" - "online-accounts" - "online-storage" - "onscreen-keyboard" - "open-source" - "openbox" - "openchrome" - "opencl" - "opencv" - "opendns" - "openerp" - "opengl" - "openjdk" - "openldap" - "openoffice.org" - "openpgp" - "openrc" - "openshot" - "openssh" - "openssl" - "openstack" - "openstack-autopilot" - "openswan" - "openvas" - "openvpn" - "openvz" - "opera" - "optical" - "optimization" - "oracle" - "orca" - "orchestra" - "org-mode" - "organizer" - "orientation" - "os-prober" - "oss" - "oss-sound-system" - "otrs" - "output" - "overclocking" - "overheating" - "overlay-scrollbars" - "overlayfs" - "owncloud-client" - "owncloud-server" - "ownership" - "oxygen" - "p2p" - "package-info" - "package-management" - "packaging" - "packet-analyzer" - "pae" - "pagestack" - "paid-applications" - "paint" - "palm" - "pam" - "pam-environment" - "pandoc" - "pandora" - "panel" - "panel-applets" - "pango" - "panorama" - "pantheon" - "parallels" - "parental-controls" - "partial-upgrade" - "partitioning" - "partitions" - "pascal" - "passphrase" - "passwd" - "passwd-file" - "password" - "password-recovery" - "paste" - "pastebin" - "patch" - "paths" - "pavucontrol" - "pbuilder" - "pbuilder-dist" - "pci" - "pcie" - "pcmanfm" - "pcscd" - "pcsx2" - "pdf" - "pdf-bookmarks" - "pdfgrep" - "pencil" - "pentesting" - "performance" - "peripherals" - "perl" - "permanent-delete" - "permissions" - "persistence" - "persistent" - "personalization" - "pg" - "pgp" - "phone" - "phonon" - "photo" - "photo-editing" - "photo-management" - "photography" - "photorec" - "photoshop" - "php" - "php5-fpm" - "phpbb" - "phpmyadmin" - "phppgadmin" - "pianobar" - "picasa" - "pictures" - "pidgin" - "pidgin-sipe" - "pim" - "ping" - "pinning" - "pinyin" - "pip" - "pipe" - "pipelight" - "pithos" - "pitivi" - "pixma" - "pkexec" - "pkg-config" - "places" - "plank" - "plasma" - "plasma-netbook" - "platform-integration" - "playback" - "playlists" - "playonlinux" - "plex" - "plexmediaserver" - "plotting" - "plugins" - "plymouth" - "pm-utils" - "png" - "podcast" - "pointers" - "policy" - "policykit" - "polipo" - "pommed" - "popcon" - "popper" - "popup-ads" - "port-forwarding" - "portable" - "porting" - "poster" - "postfix" - "postgres" - "postgresql" - "postgresql-8.4" - "postgrey" - "postscript" - "poulsbo" - "power-cog" - "power-management" - "powerline-plugin" - "powernap" - "powerpc" - "powertop" - "ppa" - "ppc" - "ppc64le" - "ppp" - "pppoe" - "pptp" - "pptpd" - "preferences" - "prefix" - "preinstallation" - "preload" - "presario" - "preseed" - "presentation" - "prevent" - "previews" - "primus" - "print-screen" - "printing" - "prism" - "privacy" - "privileges" - "privoxy" - "proc" - "process" - "process-priority" - "productivity" - "proftpd" - "programming" - "project-management" - "projector" - "promotion" - "prompt" - "proposed-updates" - "proprietary" - "protocol" - "proxy" - "ps" - "ps1" - "ps3" - "pstn" - "pstree" - "ptp" - "pulseaudio" - "puppet" - "puppetmaster" - "purchase" - "pure-ftpd" - "purge" - "putty" - "pxe" - "pygi" - "pygtk" - "pymol" - "pyqt" - "pysdm" - "pyside" - "python" - "python-2.7" - "python3" - "qbittorrent" - "qcow2" - "qdbus" - "qemu" - "qgtkstyle" - "qmail" - "qmake" - "qml" - "qsystemtrayicon" - "qt" - "qt-creator" - "qt3" - "qt5" - "quality" - "quantum" - "quicklists" - "quickly" - "quicktime" - "quodlibet" - "quota" - "qupzilla" - "qutecom" - "r" - "rabbitmq" - "rabbitvcs" - "radeon" - "radiance" - "radius" - "raid" - "raid5" - "rails" - "ralink" - "ram" - "ram-usage" - "randr" - "rar" - "rarcrack" - "raspberrypi" - "razorqt" - "rdbms" - "rdesktop" - "rdiff-backup" - "rdp" - "re-installation" - "read-only" - "readline" - "realtek" - "realtime" - "reboot" - "recipe" - "recoll" - "record" - "recording" - "recordmydesktop" - "recovery-mode" - "red5" - "redirect" - "redis" - "redmine" - "refind" - "refit" - "regex" - "reinstall" - "reinstalling" - "reiserfs" - "rekonq" - "release" - "release-management" - "release-notes" - "release-upgrade" - "relinux" - "remapping" - "remastersys" - "remmina" - "remote" - "remote-access" - "remote-assistance" - "remote-control" - "remote-desktop" - "remote-imaging" - "remote-login" - "remote-x-session" - "removing" - "rename" - "repair" - "replaygain" - "repository" - "reprepro" - "rescue-mode" - "reset" - "resize" - "resolution" - "resolv.conf" - "resolvconf" - "responsiveness" - "restart" - "restore" - "restricted" - "restricted-access" - "restricted-formats" - "resume" - "rev" - "reverse-tethering" - "reviews" - "rfkill" - "rhythmbox" - "ricoh" - "right-to-left" - "ristretto" - "rkhunter" - "rm" - "rockbox" - "root" - "rootkit" - "rosegarden" - "rotate" - "rotate-monitor" - "router" - "routing" - "rpc" - "rpm" - "rsnapshot" - "rss" - "rsync" - "rsyslog" - "rtl" - "rtl8192ce" - "rtmp" - "rtsp" - "ruby" - "runescape" - "runlevel" - "runtime-pm" - "rust" - "rvm" - "rygel" - "s2ram" - "safely" - "safety" - "sagemath" - "samba" - "samba4" - "samsung" - "sandy-bridge" - "sane" - "sansa-clip" - "sasl" - "sass" - "sata" - "scale-mode" - "scaling" - "scanner" - "scanning" - "schedule" - "scheduled" - "scidavis" - "scilab" - "scite" - "scons" - "scopes" - "scp" - "screen" - "screen-corruption" - "screencast" - "screenlets" - "screensaver" - "screenshot" - "scribus" - "scripting" - "scripts" - "scrollbar" - "scrolling" - "scrot-command" - "sd-card" - "sdk" - "sdl" - "seahorse" - "seamonkey" - "search" - "searchmonkey" - "sector-size" - "secure-boot" - "secure-delete" - "security" - "security-card" - "sed" - "segmentation-fault" - "selinux" - "semantic" - "send2printer" - "sendmail" - "sensord" - "sensors" - "separation" - "serial-port" - "server" - "services" - "session" - "setcap" - "setpci" - "settings" - "setup" - "sftp" - "sh" - "share" - "shared" - "shared-folders" - "shared-library" - "sharing" - "shell-scripting" - "shellshock" - "shm" - "shopping-lens" - "shortcut-keys" - "shortcuts" - "shotwell" - "show-desktop" - "shredding" - "shutdown" - "shutter" - "shuttle" - "sid" - "signal" - "signature" - "simon" - "simplecv" - "single-sign-on" - "single-user" - "sip" - "sis-graphics" - "skel" - "skype" - "sleep" - "slideshow" - "slim" - "slock" - "slowmovideo" - "smart" - "smartcard" - "smartphone" - "smartscopes" - "smarty" - "smb" - "smbus" - "smem" - "smplayer" - "sms" - "smtp" - "snap-windows" - "snapshot" - "snmp" - "social" - "sockets" - "socks5" - "software-center" - "software-installation" - "software-recommendation" - "software-sources" - "software-uninstall" - "software-updater" - "solaris" - "solr" - "sony" - "sopcast" - "sort" - "sound" - "sound-blaster" - "sound-editor" - "sound-juicer" - "sound-recorder" - "sound-theme" - "soundcard" - "soundconverter" - "source" - "source-code" - "source-packages" - "spdif" - "speakers" - "special-characters" - "speech-recognition" - "spell-checking" - "spindown" - "splashtop" - "split" - "spotify" - "sputnik" - "spyder" - "sql" - "sqldeveloper" - "sqlite" - "sqlite3" - "squashfs" - "squid" - "squid-deb-proxy" - "squid3" - "ssd" - "ssh" - "ssh-agent" - "ssh-import-id" - "sshd" - "sshfs" - "ssl" - "ssmtp" - "stable" - "stable-release-updates" - "stack" - "stackapplet" - "standalone-session" - "standby" - "startup" - "startup-applications" - "startup-disk" - "startup-disk-creator" - "startupmanager" - "stat" - "static-ip" - "statistical" - "statusbar" - "stdout" - "steam" - "stickynotes" - "storage" - "stream" - "streaming" - "stress-testing" - "stud" - "style" - "stylus" - "su" - "sublime-text" - "subpixel-rendering" - "subtitle" - "sudo" - "support" - "surface" - "suspend" - "suspend-resume" - "svg" - "svn" - "swap" - "swf" - "switch-user" - "switchable-graphics" - "switchbox" - "sylpheed" - "symbian" - "symbolic-link" - "synapse" - "synaptic" - "synaptics" - "sync" - "synergy" - "synfig-studio" - "syntax" - "syntax-highlighting" - "syslinux" - "syslog" - "sysrq" - "system" - "system-call-fastboot" - "system-info" - "system-installation" - "system-language" - "system-monitor" - "system-requirements" - "system-settings" - "system-tray" - "systemd" - "systemd-logind" - "systray" - "sysv" - "tablet" - "tabs" - "tag" - "tagging" - "tail" - "tap-to-click" - "tar" - "task-management" - "taskbar" - "tasksel" - "tcl" - "tcpdump" - "tcsh" - "teamspeak" - "teamviewer" - "tearing" - "tee" - "telepathy" - "telinit" - "telnet" - "teminal-bell" - "temperature" - "templates" - "terminal-bell" - "terminal-server" - "terminator" - "terminology" - "testdisk" - "testdrive" - "testing" - "testsuite" - "tether" - "tethering" - "texas-instruments" - "texlive" - "text" - "text-editor" - "text-mode" - "text-processing" - "text-to-speech" - "tftp" - "themes" - "theoretical" - "thinkpad" - "thumbnails" - "thunar" - "thunar-custom-actions" - "thunderbird" - "thunderbolt" - "tightvncserver" - "tilda" - "tiling" - "time" - "time-command" - "time-management" - "timeout" - "timestamp" - "timezone" - "tint2" - "titlebar" - "tkinter" - "tlp" - "tls" - "tmp" - "tmpfs" - "tmux" - "tomboy" - "tomcat" - "tomcat6" - "tomcat7" - "tools" - "tooltip" - "top" - "top-bar" - "tor" - "tor-browser" - "torque" - "torrent-client" - "toshiba" - "toshiba-satellite" - "totem" - "touchegg" - "touchpad" - "touchscreen" - "tox" - "tp-smapi" - "traceroute" - "tracker" - "trackpad" - "trackpoint" - "trademark" - "traffic" - "training" - "transcode" - "transfer" - "translation" - "transmission" - "transparency" - "transparent-proxy" - "trash" - "tree" - "trim" - "troubleshooting" - "truecrypt" - "tsclient" - "tt-rss" - "tty" - "tunnel" - "turbo-boost" - "tuxguitar" - "tuxonice" - "tv" - "tv-card" - "tv-tuner" - "tvtime" - "tweak" - "twinkle" - "twinview" - "twitter" - "typing-break" - "ubiquity" - "ubufox" - "ubuntu-advantage" - "ubuntu-bug" - "ubuntu-builder" - "ubuntu-core" - "ubuntu-drivers" - "ubuntu-edge" - "ubuntu-email-address" - "ubuntu-emulator" - "ubuntu-font-family" - "ubuntu-for-android" - "ubuntu-forums" - "ubuntu-gnome" - "ubuntu-light" - "ubuntu-membership" - "ubuntu-minimal" - "ubuntu-netbook" - "ubuntu-on-arm" - "ubuntu-one" - "ubuntu-one-api" - "ubuntu-one-windows" - "ubuntu-pay" - "ubuntu-phone" - "ubuntu-restricted-extras" - "ubuntu-sdk" - "ubuntu-studio" - "ubuntu-touch" - "ubuntu-tv" - "ubuntu-tweak" - "ubuntu-website" - "ubuntu-wiki" - "uck" - "udev" - "udf" - "udisks" - "uds" - "uec" - "uefi" - "ufs" - "ufw" - "uget" - "ulimit" - "ultrabook" - "ultrastar-deluxe" - "umask" - "uml" - "umount" - "unallocated" - "unattended-upgrades" - "unclaimed" - "undelete" - "unetbootin" - "unicode" - "unicode-entry" - "uninstall" - "unionfs" - "uniq" - "unison" - "unistd" - "unity" - "unity-2d" - "unity-control-center" - "unity-dash" - "unity-greeter" - "unity-launcher" - "unity-next" - "unity-previews" - "unity-tweak-tool" - "unity-web-player" - "unity8" - "unix" - "unknown-device" - "unlock" - "unmount" - "unprivileged" - "unreadable" - "unsupported-packages" - "untagged" - "unzip" - "update-alternatives" - "update-manager" - "update-notifier" - "updatedb" - "updates" - "upgrade" - "upload" - "upnp" - "ups" - "upstart" - "upstream" - "uptime" - "ureadahead" - "url" - "usability" - "usb" - "usb-creator" - "usb-drive" - "usb-installation" - "usb-modem" - "usb-modeswitch" - "usb-storage" - "usbfs" - "usbhid" - "user-data" - "user-management" - "user-mode-linux" - "user-profile" - "user-space" - "useradd" - "username" - "users" - "ushare" - "ussd" - "ustream" - "utf-8" - "utorrent" - "uuid" - "uvc" - "uwsgi" - "ux" - "v4l" - "vaapi" - "vagrant" - "vaio" - "vala" - "valgrind" - "vcd" - "vdi" - "vdpau" - "vector" - "vector-drawings" - "verbose" - "version" - "version-control" - "version-upgrade" - "versions" - "vga" - "vgaswitcheroo" - "vi" - "via" - "viber" - "vidalia" - "video" - "video-capture-card" - "video-conversion" - "video-driver" - "video-editor" - "video-player" - "video-streaming" - "video4linux" - "viewports" - "vifm" - "vim" - "vim-plugin" - "vimrc" - "vinagre" - "vino" - "virt-manager" - "virtual" - "virtual-console" - "virtual-printer" - "virtual-terminal" - "virtualbox" - "virtualbox-networking" - "virtualdesktop" - "virtualenv" - "virtualenvwrapper" - "virtualgl" - "virtualhost" - "virtualization" - "virtualmin" - "viruses" - "visio" - "visual-artifacts" - "visualization" - "visudo" - "vlc" - "vm" - "vmbuilder" - "vmdk" - "vmware" - "vmware-fusion" - "vmware-player" - "vmware-server" - "vmware-tools" - "vmware-view" - "vmware-workstation" - "vnc" - "vncviewer" - "vnstat" - "vodafone" - "voice-recognition" - "voip" - "voltage" - "volume-control" - "vpn" - "vpnc" - "vps" - "vsftpd" - "vst" - "vulnerability" - "vuze" - "w3m" - "w64codecs" - "wacom" - "wakeonlan" - "wakeup" - "wallch" - "wallpaper" - "warning" - "watch-command" - "watchdog" - "wav" - "wayland" - "weather" - "web-design" - "web-development" - "web-feed" - "webapp-development" - "webapps" - "webbrowser-app" - "webcam" - "webdav" - "webex" - "webgl" - "webkit" - "webm" - "webmin" - "webserver" - "websites" - "weston" - "wget" - "whatsapp" - "wheel" - "whisker" - "white-screen" - "who" - "whois" - "whoopsie" - "wicd" - "widgets" - "wifi-direct" - "wifi-hardware-switch" - "wii" - "wildcards" - "windicators" - "window" - "window-buttons" - "window-decoration" - "window-management" - "window-manager" - "window-placement" - "windows" - "windows-7" - "windows-8" - "windows-phone" - "windows-vista" - "windows-xp" - "wine" - "winetricks" - "winff" - "wingpanel" - "wired" - "wireless" - "wireless-access-point" - "wireless-keyboards" - "wireshark" - "wma" - "wmctrl" - "wmv" - "wodim" - "word-documents" - "word-processor" - "wordpress" - "workflow" - "workgroup" - "workrave" - "workspace-switcher" - "workspaces" - "wpa" - "wpa-supplicant" - "wpa2" - "wps-office" - "writer" - "wubi" - "wunderlist" - "wvdial" - "wwan" - "www" - "wxpython" - "x-forwarding" - "x11" - "x11-forwarding" - "x11rdp" - "x121e" - "x230" - "x2go" - "x2goclient" - "xampp" - "xbacklight" - "xbindkeys" - "xbmc" - "xbox-360" - "xcalib" - "xchat" - "xclip" - "xcompmgr" - "xdebug" - "xdg" - "xdg-open" - "xdmcp" - "xdotool" - "xen" - "xeon-phi" - "xerox" - "xev" - "xfce" - "xfce-panel" - "xfce4" - "xfce4-power-manager" - "xfce4-terminal" - "xfdesktop" - "xfs" - "xfwm4" - "xhci-hcd" - "xine" - "xinerama" - "xinetd" - "xinit" - "xinput" - "xkb" - "xkill" - "xls" - "xml" - "xmms" - "xmodmap" - "xmonad" - "xmpp" - "xnview" - "xorg" - "xps" - "xps-file" - "xrandr" - "xrdp" - "xsane" - "xscreensaver" - "xserver" - "xte" - "xterm" - "xubuntu" - "xulrunner" - "xvfb" - "xwinwrap" - "yaboot" - "yahoo" - "yakuake" - "yed" - "yelp" - "yoga-2" - "youtube" - "youtube-dl" - "yum" - "yumi" - "zeitgeist" - "zend" - "zendframework" - "zenity" - "zentyal" - "zeroconf" - "zfs" - "zimbra" - "zip" - "zlib" - "zombie" - "zoneminder" - "zoom" - "zram" - "zsh" - "zsnes" - "zswap" - "zsync" - "zte") diff --git a/data/tags/astronomy.el b/data/tags/astronomy.el deleted file mode 100644 index 62dfc4d..0000000 --- a/data/tags/astronomy.el +++ /dev/null @@ -1,283 +0,0 @@ -("67p" - "aberration" - "abiogenesis" - "accretion-discs" - "active-galactic-nuclei" - "albedo" - "algorithm" - "amateur-observing" - "angular-diameter" - "angular-resolution" - "antimatter" - "apparent-magnitude" - "artificial-satellite" - "ascension" - "asteroid-belt" - "asteroids" - "astrometry" - "astrophotography" - "astrophysics" - "atmosphere" - "azimuth" - "background-radiation" - "big-bang-theory" - "binary" - "binary-star" - "binoculars" - "black-hole" - "bortle-scale" - "brown-dwarf" - "callisto" - "carbon-cycle" - "ccd" - "charge" - "charon" - "chthonian" - "classification" - "climate" - "clock" - "cmb" - "collimation" - "comets" - "constelations" - "constellations" - "coordinate" - "core" - "coronal-mass-ejection" - "cosmic-ray" - "cosmological-horizon" - "cosmological-inflation" - "cosmology" - "dark-energy" - "dark-matter" - "data-analysis" - "date-time" - "declination" - "deep-sky-observing" - "density" - "disk" - "distances" - "dobsonian-telescope" - "doppler-shift" - "ds9" - "dust" - "dwarf-galaxy" - "dwarf-planets" - "early-universe" - "earth" - "earth-like-planet" - "eccentric-orbit" - "electron" - "element" - "elemental-abundances" - "epicycle" - "escape-velocity" - "europa" - "exoplanet" - "expansion" - "explosion" - "exposure" - "extinction" - "extra-terrestrial" - "fermi-paradox" - "formation" - "fundamental-astronomy" - "galactic-dynamics" - "galaxy" - "galaxy-center" - "galaxy-cluster" - "galileo-probe" - "gamma-ray-bursts" - "gas" - "gas-giants" - "general-relativity" - "geology" - "globular-clusters" - "gravitational-lensing" - "gravitational-waves" - "gravity" - "greenhouse-gasses" - "habitation-zone" - "hawking-radiation" - "heat" - "helium" - "high-energy-astrophysics" - "history" - "holographic-principle" - "homework" - "horizon" - "hot-jupiter" - "hubble-telescope" - "hydrogen" - "hydrostatic-equilibrium" - "hypergiants" - "impact" - "impact-probability" - "inclination" - "initial-mass-function" - "instruments" - "intergalactic-space" - "interstellar" - "interstellar-medium" - "interstellar-travel" - "johannes-kepler" - "jupiter" - "kbo" - "kepler" - "kuiper-belt" - "lagrange-point" - "laws-of-physics" - "lhb" - "life" - "light" - "light-pollution" - "lithium" - "local-group" - "luminosity" - "lunar" - "lunar-eclipse" - "magnetic-field" - "magnetometer" - "magnitude" - "main-sequence" - "mars" - "mass" - "matter" - "maven" - "mean-earth" - "mercury" - "messier-catalog" - "metal" - "meteor" - "meteorite" - "milky-way" - "minerals" - "moon" - "moon-phases" - "moonlanding" - "movement" - "multiverse" - "n-body-simulations" - "naked-eye" - "naming" - "nasa" - "natural-satellites" - "navigation" - "near-earth-object" - "nebula" - "neptune" - "neutrinos" - "neutron-star" - "new-horizons-probe" - "newtonian-gravity" - "newtonian-telescope" - "nucleosynthesis" - "obliquity" - "observable-universe" - "observation" - "observatory" - "oort-cloud" - "optics" - "orbit" - "orbital-elements" - "orbital-migration" - "origin-of-life" - "orrery" - "parallax" - "parsec" - "phase" - "photography" - "photons" - "photosphere" - "planet" - "planetary-formation" - "planetary-ring" - "planets" - "plasma-physics" - "pluto" - "pole" - "positional-astronomy" - "protostar" - "pulsar" - "quantum-field-theory" - "quasars" - "radiation" - "radiative-transfer" - "radio-astronomy" - "reality-check" - "red-giant" - "redshift" - "refractor-telescope" - "resource" - "roche-limit" - "rogue-planet" - "rotation" - "sample-return" - "satellite" - "satellite-galaxy" - "saturn" - "size" - "soft-question" - "software" - "solar" - "solar-eclipse" - "solar-flare" - "solar-mass" - "solar-storm" - "solar-system" - "solar-wind" - "sombrero-galaxy" - "space" - "space-debris" - "space-geometry" - "space-probe" - "space-telescope" - "space-time" - "space-travel" - "special-relativity" - "spectra" - "spectrometry" - "spectroscopy" - "speed" - "star" - "star-cluster" - "star-formation" - "star-gazing" - "star-systems" - "stellar-astrophysics" - "stellar-atmospheres" - "stellar-dynamics" - "stellar-evolution" - "stellar-structure" - "stellar-system" - "sun" - "supermassive-black-hole" - "supernova" - "surface" - "telescope" - "telescope-care" - "telescope-lens" - "temperature" - "terminology" - "terrestrial-planets" - "tidal-forces" - "titan" - "tno" - "topographic-map" - "triton" - "trojan-asteroids" - "turbulence" - "ufo" - "ultraviolet" - "units" - "universe" - "untagged" - "uranus" - "vagabond" - "velocity" - "venus" - "volcanism" - "water" - "weather" - "white-hole" - "wormhole") diff --git a/data/tags/aviation.el b/data/tags/aviation.el deleted file mode 100644 index a8048b7..0000000 --- a/data/tags/aviation.el +++ /dev/null @@ -1,474 +0,0 @@ -("aaib" - "aatd" - "acars" - "accident-investigation" - "accidents" - "ads-b" - "aerobatics" - "aerodynamics" - "aeroelasticity" - "aeronautical-charts" - "afd" - "afm" - "ailerons" - "aim" - "air-race" - "air-traffic-control" - "airbus" - "airbus-a319" - "airbus-a320" - "airbus-a350" - "airbus-a380" - "aircraft-carrier" - "aircraft-certification" - "aircraft-design" - "aircraft-failure" - "aircraft-heavy" - "aircraft-identification" - "aircraft-lighting" - "aircraft-limitations" - "aircraft-maintenance" - "aircraft-manufacturer" - "aircraft-ownership" - "aircraft-performance" - "aircraft-physics" - "aircraft-purchase" - "aircraft-recognition" - "aircraft-registration" - "aircraft-storing" - "aircraft-systems" - "airfoil" - "airframe-and-powerplant" - "airframe-parachute" - "airline-operations" - "airline-pilot" - "airliner" - "airlines" - "airman-certification" - "airport" - "airport-design" - "airport-lighting" - "airport-markings" - "airship" - "airshow" - "airspace" - "airspeed" - "airworthiness" - "airworthiness-directive" - "altimeter" - "altitude" - "amateur-built" - "amateur-experimental" - "amphibian" - "anac-regulations" - "anti-ice" - "anti-missile" - "approach" - "apu" - "apu-failure" - "asos" - "atf" - "atis" - "atpl" - "attitude" - "australia" - "auto-rotation" - "autopilot" - "avgas" - "aviation-history" - "avionics" - "bae-146" - "ballooning" - "beta-range" - "biplane" - "birds" - "boarding" - "boeing" - "boeing-737" - "boeing-747" - "boeing-757" - "boeing-767" - "boeing-777" - "boeing-787" - "bombardier" - "bomber" - "books" - "braking" - "caa-regulations" - "cabin-design" - "cabin-pressure" - "call-sign" - "canada" - "carbon-footprint" - "career" - "cargo" - "casa-regulations" - "caution" - "cell-phone" - "cessna-150" - "cessna-152" - "cessna-162" - "cessna-172" - "cessna-182" - "cessna-208" - "cessna-citation" - "cfi" - "cg" - "checkride" - "chicago-convention" - "circling-approach" - "class-b-airspace" - "class-d-airspace" - "class-e-airspace" - "clearance" - "clock" - "closed-runways" - "cockpit" - "cockpit-voice-recorder" - "codeshare" - "cold-weather" - "commercial-aviation" - "commercial-operations" - "concorde" - "constant-speed-propeller" - "contrails" - "coordinates" - "cost" - "countermeausures" - "cpdlc" - "cpl" - "crew" - "crop-duster" - "cross-country" - "crosswind" - "cruise" - "currency" - "dash-8" - "datasets" - "defence" - "density-altitude" - "descent" - "designated-examiner" - "dgca-india" - "dgca-india-regulations" - "disasters" - "discrepancy" - "dispatch" - "ditching" - "drag" - "drone" - "e6b" - "easa" - "easa-regulations" - "easyjet" - "economics" - "efb" - "ejection-seat" - "electric-engine" - "electrics" - "electronics" - "elevator" - "emergency" - "emergency-services" - "emissions" - "empennage" - "engine" - "engine-failure" - "engine-starting" - "equipment" - "etops" - "eu" - "european-union" - "evacuation" - "experimental-aircraft" - "f-111" - "f-16" - "f-22" - "faa" - "faa-approval" - "faa-regulations" - "faa-surveillance" - "faa-wings" - "failsafes" - "failures" - "fams" - "far-121" - "far-135" - "far-23" - "far-25" - "far-61" - "far-91" - "fbo" - "ferry-flight" - "ffdo" - "fighter" - "fighter-jet" - "fire" - "fixed-wing" - "flaps" - "flight-attendant" - "flight-controls" - "flight-data-recorder" - "flight-director" - "flight-instruments" - "flight-interception" - "flight-level" - "flight-mechanic" - "flight-planning" - "flight-plans" - "flight-schedules" - "flight-school" - "flight-simulator" - "flight-test" - "flight-training" - "flightradar24" - "flutter" - "fly-by-wire" - "flying-in-formation" - "fms" - "france" - "fsdo" - "fss" - "fuel" - "fuel-dumping" - "fuel-tanks" - "fuselage" - "fwc" - "g-force" - "gauge" - "general-aviation" - "germany" - "glass-cockpit" - "glide-ratio" - "glider" - "go-around" - "gps" - "ground-operations" - "gyroplane" - "gyroscope" - "hang-glider" - "heading" - "helicopter" - "high-altitude" - "holding" - "hong-kong" - "hud" - "human-factors" - "hypotheticals" - "hypoxia" - "iacc" - "iaps" - "iata" - "icao" - "icao-recommendations" - "ice" - "ils" - "imc" - "incident" - "india" - "inertial-nav-system" - "inflight-entertainment" - "instrument-flight-rules" - "instrument-procedures" - "insurance" - "international" - "intersecting-runways" - "jet" - "jet-engine" - "jetpack" - "landing" - "landing-gear" - "laser-illumination" - "level-change" - "liability" - "lift" - "light-sport-aircraft" - "lighter-than-air" - "literature-recommendation" - "livery" - "localizer" - "lockheed" - "logbook" - "logbook-endorsements" - "logging" - "lot16-incident" - "luftfahrt-bundesamt" - "lufthansa" - "luftvo" - "magnetic-variation" - "maintenance" - "maneuver" - "md83" - "measurement" - "medical" - "metar" - "mh370-incident" - "microlight" - "military" - "missiles" - "mixture" - "model-aircraft" - "modifications" - "multi-engine" - "nasa" - "nat" - "navaids" - "navigation" - "ndb-approach" - "netherlands" - "night-flying" - "noise" - "nomenclature" - "non-precision-approach" - "non-towered-airport" - "notam" - "ntsb" - "oceanic" - "online-radar" - "operations" - "ownership" - "oxygen" - "pack" - "pan-pan" - "panam103-incident" - "paper-airplane" - "papi" - "parachute" - "part-61" - "passenger" - "pattern" - "payload" - "performance-calculation" - "phraseology" - "pilot-career" - "pilot-job" - "pilot-technique" - "pilots" - "pirep" - "piston-engine" - "pitch" - "pitot-static" - "plane-spotting" - "pneumatics" - "polar" - "ppl" - "preflight" - "private-airport" - "procedure" - "proficiency" - "propeller" - "propfan" - "qnh" - "radar" - "radio" - "radio-communications" - "raim" - "range" - "rc-aircraft" - "recovery" - "refueling" - "regulations" - "renters-insurance" - "reynolds-number" - "rotary-wing" - "rotorcraft" - "rudder" - "runway-incursion" - "runways" - "russia" - "rvsm" - "ryanair" - "safety" - "seaplane" - "search-and-rescue" - "security" - "see-and-avoid" - "separation" - "sfo" - "sic" - "sid-star" - "sidestick" - "simulator" - "single-engine" - "skydiving" - "skywriting" - "software" - "sop" - "sound-barrier" - "soviet-union" - "special-use-airspace" - "special-vfr" - "spins" - "spoilers" - "sr-71" - "stability" - "stall" - "static-electricity" - "stc" - "stealth" - "student-pilot" - "supersonic" - "symbology" - "t-tail" - "tail-dragger" - "takeoff" - "tam3054-incident" - "tanker" - "taxiing" - "tcas" - "temperature" - "terminology" - "terps" - "terrorism" - "tfr" - "theory" - "thermals" - "throttle" - "thrust-reverser" - "thunderbirds" - "time" - "touchdown" - "traffic-pattern" - "transatlantic" - "transponder" - "transport-canada" - "transport-category" - "trim" - "tsa" - "turbine" - "turbocharged" - "turboprop" - "turbulence" - "twin-engine" - "type-ratings" - "uav" - "uk" - "ultralight" - "united-kingdom" - "unmanned-aerial-vehicle" - "unpowered" - "untagged" - "us-cbp" - "us-cuba" - "us1549-incident" - "usa" - "usaf" - "v-speeds" - "v-tail" - "vasi" - "vertical-speed" - "visibility" - "visual-approaches" - "visual-flight-rules" - "vmc" - "vor" - "wake-turbulence" - "weather" - "website" - "weight-and-balance" - "wind" - "winds-aloft" - "wing" - "wing-warping" - "winglets" - "wwii") diff --git a/data/tags/beer.el b/data/tags/beer.el deleted file mode 100644 index 4c05b1e..0000000 --- a/data/tags/beer.el +++ /dev/null @@ -1,92 +0,0 @@ -("3.2-beer" - "abv" - "additives" - "age" - "aging" - "alcohol-level" - "ale" - "aroma" - "bottle-conditioning" - "bottles" - "bottling" - "breweries" - "brewing" - "buying" - "cans" - "carbonation" - "cellaring" - "cicerone" - "cider" - "classification" - "colour" - "competition" - "cooking" - "cooling" - "distribution" - "draught" - "drinking" - "filtering" - "finings" - "flavor" - "foam" - "foreign-beer" - "freshness" - "garnish" - "gas" - "german" - "glassware" - "growlers" - "hangover" - "head" - "health" - "hefeweizen" - "history" - "hops" - "ibu" - "imperal-stout" - "inebriation" - "ingredients" - "ipa" - "keg" - "lager" - "lambic" - "laws" - "local" - "mulling" - "non-alcoholic" - "nutrition" - "pairing" - "pennsylvania" - "pilsener" - "poland" - "porter" - "pouring" - "preparation-for-drinking" - "preservation" - "production" - "recommendations" - "resources" - "restaurants" - "retail-availiability" - "saison" - "schwarzbier" - "science" - "serving" - "shandy" - "skunking" - "specialty-beers" - "storage" - "stout" - "style" - "taps" - "taste" - "tasting" - "temperature" - "terminology" - "trappist" - "tripel" - "united-states" - "untagged" - "varieties" - "water" - "yeast") diff --git a/data/tags/bicycles.el b/data/tags/bicycles.el deleted file mode 100644 index 53a490e..0000000 --- a/data/tags/bicycles.el +++ /dev/null @@ -1,379 +0,0 @@ -("26-inch" - "27-inch" - "29er" - "650b" - "7-speed" - "accessories" - "accidents" - "adjustment" - "adjustment-screw" - "advice" - "advocacy" - "aerodynamics" - "aluminium" - "aluminum" - "android" - "animal-attack" - "animals" - "australia" - "axle" - "bags" - "bamboo" - "basket" - "battery" - "bearings" - "beginner" - "belt-drive" - "best-practice" - "bicycle" - "bike-computer" - "bike-culture" - "bike-fit" - "bike-lane" - "bike-selection" - "bike-setup" - "bike-share" - "bike-vs-car" - "bikeroutes" - "bmx" - "body-hair" - "book" - "bottle" - "bottom-bracket" - "brake-levers" - "brake-noise" - "brake-pads" - "brakes" - "braking" - "braze-on" - "brompton" - "build" - "cable" - "cable-routing" - "cadence" - "california" - "camera" - "campagnolo" - "canada" - "cannondale" - "car-rack" - "carbon" - "cargo" - "cassette" - "cassettte" - "century" - "ceramic" - "chain" - "chain-tug" - "chainline" - "chainring" - "chamois" - "chamois-creme" - "charities" - "child-seat" - "children" - "citi-bike" - "city" - "clamp" - "cleaning" - "cleat" - "clicking" - "climbing" - "clipless" - "clothes" - "clothing-care" - "co2" - "coaster" - "cog" - "commute" - "commuter" - "commuting-bike" - "compact-crankset" - "compatibility" - "competition" - "cone" - "conversion" - "coolweather" - "corrosion" - "crack" - "cranks" - "crankset" - "creak" - "cross-training" - "cruiser" - "cycle-computer" - "cyclocross" - "damage" - "derailleur" - "derailleur-rear" - "design" - "diamondback" - "disc" - "disc-brake" - "distance-riding" - "diy" - "doping" - "downhill" - "downtube-shifter" - "drafting" - "drivetrain" - "drivetrain-slipping" - "dropouts" - "dyamo" - "dynamo-hub" - "electric" - "electric-bike" - "electric-power" - "electronics" - "emergency" - "equipment" - "ergonomics" - "etiquette" - "europe" - "evaluation" - "exercise" - "failure" - "fatbike" - "fenders" - "fitness" - "fixed-gear" - "flip-flop-hub" - "folding-bicycle" - "fork" - "framebuilding" - "frames" - "freewheel" - "front" - "frozen" - "frugal" - "full-suspension" - "garmin" - "gears" - "gel-saddle" - "geometry" - "germany" - "glasses" - "glossary" - "gloves" - "gps" - "gravel" - "grips" - "group-rides" - "handcycle" - "handlebar-tape" - "handlebars" - "handling" - "hayes" - "headlights" - "headphones" - "headset" - "health" - "heart-rate" - "helmets" - "hills" - "history" - "hub" - "hybrid-bike" - "hydration" - "hydraulic" - "hydraulic-disc-brake" - "ice" - "identification" - "identify-this-bike" - "indoor" - "inflation" - "injury" - "innertube" - "installation" - "internally-geared-hub" - "interrupter-brakes" - "iphone" - "jacket" - "joytech" - "jump" - "kickstand" - "kids" - "lanes" - "lbs" - "learning" - "leather" - "led-lights" - "lefty-fork" - "legal" - "liability" - "light" - "lighting" - "lock" - "london" - "long-distance" - "lubricant" - "luggage" - "maintenance" - "maps" - "master-link" - "mechanical" - "men-specific" - "messenger-bags" - "mirrors" - "mixte" - "modification" - "mountain-bike" - "multi-tool" - "muscle-pain" - "navigation" - "new-bicycle-assembly" - "nexus" - "night-riding" - "nipples" - "noise" - "nutrition" - "off-road" - "open-source" - "organized-rides" - "pads" - "pain" - "paintjob" - "panniers" - "parking" - "parking-racks" - "parts" - "pedals" - "penny-farthing" - "performance" - "performance-tracking" - "physics" - "planning" - "pollution" - "power" - "preparation" - "presta" - "preventative-maintenance" - "price" - "product-rec" - "protection" - "prototype" - "public-transportation" - "pump" - "puncture" - "quick-release" - "race" - "racing" - "racing-bikes" - "racing-strategy" - "rack" - "rails" - "rain" - "randonneuring" - "rear-wheel" - "recumbent" - "reference" - "regional" - "reliability" - "repair" - "repair-stand" - "replacement" - "resource" - "restoration" - "riding-position" - "rim-brake" - "rim-tape" - "rims" - "road-bike" - "rollers" - "rotor" - "rust" - "saddle" - "saddle-post" - "safety" - "salt" - "schrader" - "seatpost" - "security" - "sharing-scheme" - "shifter" - "shifting" - "shimano" - "shimano-di2" - "shocks" - "shoes" - "shopping" - "shorts" - "signals" - "single-speed" - "skewer" - "skills" - "skipping" - "smartphone-mount" - "snow" - "software" - "spandex" - "spd" - "speed" - "spokes" - "sprocket" - "sram" - "stationary-bike" - "steel" - "stem" - "storage" - "subjective" - "sun-protection" - "suspension" - "taillight" - "tandems" - "technique" - "technology" - "tension" - "terminology" - "theft" - "thru-axle" - "tire" - "tire-lever" - "tire-pressure" - "titanium" - "toe-overlap" - "toe-straps-clips" - "tools" - "topeak" - "torque-wrench" - "touring" - "touring-bikes" - "track-racing" - "trackstand" - "traffic" - "trailer" - "trails" - "trainer" - "training" - "transport-by-car" - "transportation" - "travelling" - "trek" - "triathlon" - "tricks" - "tricycle" - "tubeless" - "turbo-trainer" - "uk" - "unicycle" - "untagged" - "upgrade-or-new-bike" - "upgrades" - "urban-riding" - "us" - "used-bike" - "utility-cycling" - "valves" - "vintage" - "visibility" - "wear" - "weather" - "weight" - "wheel-building" - "wheel-truing" - "wheels" - "wheelset" - "wind" - "winter" - "women-specific" - "xc") diff --git a/data/tags/biology.el b/data/tags/biology.el deleted file mode 100644 index 2504280..0000000 --- a/data/tags/biology.el +++ /dev/null @@ -1,618 +0,0 @@ -("3d-structure" - "aami" - "abiogenesis" - "action-potential" - "adaptation" - "addiction" - "agriculture" - "aids" - "alcohol" - "algae" - "allele" - "allelopathy" - "allergies" - "allometry" - "altruism" - "amino-acids" - "anaerobic-respiration" - "analgesia" - "anatomy" - "anemia" - "angiosperms" - "animal-models" - "ant" - "anthropology" - "antibiotic-resistance" - "antibiotics" - "antibody" - "antigen" - "antihistamines" - "antipredator-adaptation" - "apoptosis" - "aquaculture" - "arachnology" - "archaea" - "artificial-selection" - "aspirin" - "assay-development" - "astrobiology" - "atrial-fibrillation" - "autoimmune" - "autonomic-nervous-system" - "autophagy" - "autoreceptor" - "auxology" - "bacterial-toxins" - "bacteriology" - "balaenoptera" - "behavior" - "behaviour" - "benzodiazepine" - "binding-sites" - "bio-mechanics" - "biochemistry" - "biodiversity" - "bioenergetics" - "bioinformatics" - "bioinorganic-chemistry" - "biological-networks" - "bioluminescence" - "biomedical-technology" - "biophysics" - "biosensor" - "biostatistics" - "biosynthesis" - "biotechnology" - "blast" - "blood-circulation" - "blood-pressure" - "blood-sugar" - "blood-transfusion" - "bone-biology" - "book-recommendation" - "botany" - "brain" - "brain-stem" - "breast" - "breathing" - "calcium" - "cancer" - "carbohydrates" - "cardiology" - "ccp4" - "celiac-disease" - "cell" - "cell-based" - "cell-biology" - "cell-culture" - "cell-cycle" - "cell-division" - "cell-membrane" - "cell-signaling" - "cell-sorting" - "cellular-respiration" - "central-nervous-system" - "centrifugation" - "cerebellum" - "chemical-communication" - "chemistry" - "chemosynthesis" - "chickens" - "chimerism" - "chip" - "chirality" - "chloroplasts" - "chromatin" - "chromatography" - "chromosome" - "chronic" - "chronobiology" - "cilia" - "circadian-rhythms" - "circulatory-system" - "cladistics" - "classification" - "climate-change" - "clinical-trial" - "cloning" - "coa" - "cocaine" - "codon-usage" - "cognition" - "collective-behaviour" - "coma" - "communication" - "community" - "community-ecology" - "competent-cells" - "complexity" - "computational-model" - "congestion" - "conservation-biology" - "coot" - "copy-number-variation" - "cpg" - "cranial-nerves" - "cycle" - "cytochrome" - "cytogenetics" - "cytokinesis" - "cytology" - "cytoskeleton" - "data" - "database" - "death" - "decay" - "definitions" - "dehydration" - "demography" - "dendritic-cells" - "dendrology" - "development" - "diabetes-mellitus" - "diet" - "differentiation" - "digestion" - "digestive-system" - "dissection" - "dissociation-constant" - "diy-biology" - "dna" - "dna-damage" - "dna-isolation" - "dna-methylation" - "dna-programming" - "dna-replication" - "dna-sequencing" - "dogs" - "dopamine" - "dosage-compensation" - "dose" - "dreaming" - "drosophila" - "dynorphin" - "ear-canal" - "ebola" - "echolocation" - "ecoli" - "ecology" - "ecophysiology" - "ecosystem" - "eggs" - "electrocardiography" - "electroencephalography" - "electrophysiology" - "elisa" - "embryology" - "endocrine" - "endocrinology" - "endothelium" - "energy" - "entomology" - "environment" - "enzyme-kinetics" - "enzymes" - "epidemiology" - "epigenetics" - "ethnobiology" - "ethology" - "eukaryotic-cells" - "evo-devo" - "evolution" - "evolutionary-game-theory" - "excreta" - "exercise" - "exons" - "experiment" - "experimental" - "experimental-design" - "extinction" - "extra-cellular-matrix" - "extrasystole" - "extremophiles" - "eyes" - "fat-metabolism" - "fatty-acid-synthase" - "feline" - "fermentation" - "fitness" - "flight" - "flow-cytometry" - "fluorescent-microscopy" - "food" - "forensics" - "forward-genetics" - "fret" - "fruit" - "fst" - "gamete" - "gasotransmitter" - "gastroenterology" - "gel-electrophoresis" - "gender" - "gene" - "gene-annotation" - "gene-expression" - "gene-regulation" - "gene-synthesis" - "general-biology" - "genetic-code" - "genetic-diagrams" - "genetic-variance" - "genetics" - "genomes" - "genomics" - "gentic-linkage" - "germination" - "global-acidification" - "global-warming" - "glucose" - "gluten" - "glycerinated" - "green-fluorescent-protein" - "growth" - "growth-media" - "gwas" - "hair" - "hallucinogens" - "hardy-weinberg" - "hdac" - "healing" - "health" - "hearing" - "heat" - "hematology" - "hepatitis" - "herpetology" - "high-throughput" - "histamine" - "histology" - "histone" - "histone-deacetylase" - "histone-modifications" - "history" - "hiv" - "hla" - "hoechst" - "homeostasis" - "homework" - "homocysteine" - "homology" - "horizontal-gene-transfer" - "host-pathogen-interaction" - "human-anatomy" - "human-biology" - "human-ear" - "human-evolution" - "human-eye" - "human-genetics" - "human-genome" - "human-physiology" - "hybridization" - "hydration" - "hygiene" - "hyperemia" - "hypersensitivity" - "hypothalamus" - "ichthyology" - "identification" - "images" - "imaging" - "immunity" - "immunoglobin" - "immunology" - "immunosuppression" - "implantation" - "infection" - "inflammation" - "information" - "information-theory" - "inhibitor" - "injury" - "instinct" - "insulin" - "intelligence" - "intracellular-transport" - "introns" - "invasive-species" - "invertebrates" - "iris" - "isoforms" - "joints" - "kidney" - "kinetics" - "lab-reagents" - "lab-techniques" - "language" - "lcr" - "learning" - "lentivirus" - "life" - "life-history" - "lifespan" - "ligation" - "light" - "limnology" - "linguistics" - "lipids" - "literature" - "liver" - "lungs" - "lymph" - "lymphatic" - "malaria" - "mammals" - "marine-biology" - "marsupials" - "mass-spec" - "mass-spectrometry" - "mathematical-models" - "measurement" - "medicinal-chemistry" - "medicine" - "medium" - "meiosis" - "melanin" - "melatonin" - "membrane" - "membrane-transport" - "memory" - "metabolism" - "metabolomics" - "mhc" - "mice" - "microarray" - "microbiology" - "microrna" - "microscopy" - "milk" - "minerals" - "minipreps" - "mitochondria" - "mitosis" - "molecular-biology" - "molecular-evolution" - "molecular-genetics" - "montelukast" - "morphology" - "mouse" - "movement" - "mri" - "mrna" - "muscles" - "mushroom" - "mutations" - "mycology" - "natural-selection" - "network" - "neural-engineering" - "neuroanatomy" - "neurodegerative-disorders" - "neurology" - "neuromodulation" - "neurophysiology" - "neuroplasticity" - "neuroscience" - "neurotransmitter" - "niche" - "nmr" - "nomenclature" - "nose" - "nucleic-acids" - "nutrition" - "odour" - "olfaction" - "ontogeny" - "oogenesis" - "operons" - "opioid" - "organic-chemistry" - "organs" - "ornithology" - "osmoregulation" - "osmosis" - "ovulation" - "oxidative" - "pacemaker" - "pain" - "palaeontology" - "pandemic" - "parasitism" - "parasitology" - "parasympaticus" - "pathogenesis" - "pathology" - "pathophysiology" - "pcr" - "pdb" - "peer-review-journal" - "perception" - "peripheral-nervous-system" - "pets" - "ph" - "pharmacodynamic" - "pharmacokinetic" - "pharmacology" - "phenology" - "philosophy-of-science" - "phosphate" - "phosphorylation" - "photoperiod" - "photosynthesis" - "phylogenetics" - "physiology" - "pigmentation" - "plant-anatomy" - "plant-physiology" - "plasmids" - "pollination-biology" - "polymerase" - "polyploidy" - "population-biology" - "population-dynamics" - "population-genetics" - "predator" - "pregnancy" - "primer" - "prion" - "prokaryotes" - "protein-binding" - "protein-engineering" - "protein-evolution" - "protein-expression" - "protein-folding" - "protein-interaction" - "protein-structure" - "proteins" - "proteolysis" - "protocol" - "psychology" - "psychophysics" - "publishing" - "pulmonology" - "purification" - "purkinje" - "pymol" - "quantitative-genetics" - "quorum-sensing" - "radiation" - "receptor" - "recombinant" - "recombination" - "recording" - "red-blood-cell" - "reference-request" - "reflexes" - "renal-physiology" - "replication" - "reproduction" - "reproductive-biology" - "reptile" - "research-design" - "research-process" - "research-tools" - "respiration" - "restriction-enzymes" - "retrovirus" - "reverse-genetics" - "reverse-transcription" - "review" - "ribosome" - "rna" - "rna-interference" - "rna-sequencing" - "rodents" - "rrna" - "safety" - "saliva" - "salt" - "sar" - "scales" - "scientific-literature" - "sds-page" - "seeds" - "selection" - "senescence" - "sensation" - "senses" - "sensory" - "sepsis" - "sequence-alignment" - "sequence-analysis" - "sequence-assembly" - "serotonin" - "sex" - "sex-chromosome" - "sex-ratio" - "sexual-dimorphism" - "sexual-selection" - "sexuality" - "signal-analysis" - "signalling" - "sirs" - "skin" - "sleep" - "small-rnaseq" - "smoking" - "snp" - "sociality" - "sociobiology" - "software" - "soil" - "speciation" - "species" - "species-distribution" - "species-identification" - "speculative" - "spliceosome" - "splicing" - "staining" - "statistics" - "stem-cells" - "sterilisation" - "stomach" - "structural-biology" - "structure-prediction" - "sugar" - "surgery" - "swimming-kinetics" - "sympaticus" - "synapses" - "syncytium" - "synestesia" - "synthetic-biology" - "systems-biology" - "t7-promoter" - "taste" - "taxonomy" - "teaching" - "teaching-resources" - "teeth" - "telomere" - "temperature" - "teratology" - "terminology" - "territoriality" - "textbook" - "theoretical-biology" - "thermodynamics" - "thermophilia" - "thermoregulation" - "tissue" - "tissue-repair" - "toxicology" - "transcription" - "transcription-factor" - "transdermal" - "transformation" - "transfusion" - "translation" - "transplantation" - "treatment" - "tuberculosis" - "tumour" - "twins" - "ultrasound" - "underwater" - "uv" - "vaccination" - "vegetable" - "vegetation" - "veins" - "venous-return" - "ventricles" - "vertebrates" - "vessel" - "vestigial" - "virology" - "virus" - "vision" - "visual-system" - "visualization" - "vitamins" - "western-blot" - "writing" - "xray-crystallography" - "yeast" - "zinc" - "zoology") diff --git a/data/tags/bitcoin.el b/data/tags/bitcoin.el deleted file mode 100644 index ba4e431..0000000 --- a/data/tags/bitcoin.el +++ /dev/null @@ -1,603 +0,0 @@ -(".net" - "0-confirmation" - "abe" - "academic-research" - "acceptance" - "account-to-account" - "accounting" - "accounts" - "address" - "address-generation" - "address-shortening" - "adoption" - "airdrop" - "alert-system" - "algorithms" - "alias" - "altcoin" - "alternatives" - "amazon" - "amd" - "aml" - "android" - "anonymity" - "antminer" - "api" - "apple" - "appstore" - "arbitrage" - "architecture" - "argentina" - "armory" - "asic" - "asicminer" - "ati" - "attack" - "auroracoin" - "authentication" - "automation" - "avalon" - "backup" - "balance" - "bamt" - "bandwidth" - "banks" - "base58" - "base58checked" - "bfgminer" - "bgp-attack" - "bip" - "bip11" - "bip12" - "bip16" - "bip22" - "bip30" - "bip32" - "bip34" - "bip38" - "bip39" - "bip70" - "bitaddress.org" - "bitauth" - "bitcoin-atm" - "bitcoin-days-destroyed" - "bitcoin-foundation" - "bitcoin-literature" - "bitcoin-qt" - "bitcoin-qt-setup" - "bitcoin-symbol" - "bitcoin.conf" - "bitcoincore-development" - "bitcoind" - "bitcoinica" - "bitcoinj" - "bitcoinjs" - "bitcointalk" - "bitcore" - "bitfinex" - "bitinstant" - "bitmain" - "bitpay" - "bitshares" - "bitstamp" - "bittrex" - "blackcoin" - "block" - "block-header" - "block-propagation" - "block-solution-time" - "blockchain" - "blockchain-fork" - "blockchain-wallet-app" - "blockchain.info" - "blockexplorer" - "blocktrail" - "bloom-filter" - "bootstrap" - "bootstrap.dat" - "botnets" - "bots" - "brain-wallet" - "broadcast" - "btc-trading-corp" - "btcd" - "btce" - "btcguild" - "bter" - "build" - "business" - "businesses" - "buttercoin" - "butterfly-labs" - "buy-bitcoins" - "c#" - "c++" - "canada" - "cash" - "cgminer" - "chain-reorganization" - "chainwork" - "change" - "chargeback" - "charity" - "charts" - "checkpoints" - "client" - "coin" - "coin-age" - "coinbase" - "coinjoin" - "coldstorage" - "colored-coins" - "commerce" - "commercial" - "community" - "compiling" - "confirmations" - "confirmed" - "connection" - "consensus" - "contracts" - "contribution" - "control" - "conversion" - "counterparty" - "counterparty.co" - "cpu" - "credit-card" - "crypto-2.0" - "cryptography" - "cryptonote" - "cryptsy" - "cudaminer" - "currencies" - "currency-control" - "daemon" - "data-security" - "database" - "datacoin" - "ddos" - "debitcard" - "decentralized" - "decentralized-assets" - "decentralized-storage" - "deflation" - "demurrage" - "destroy-bitcoins" - "deterministic" - "development" - "diablominer" - "difficulty" - "digitalcoin" - "discovery" - "diskspace" - "divisibility" - "dll" - "dns" - "dogecoin" - "domain-registering" - "donation" - "doublespend" - "dust" - "dwolla" - "e-wallet" - "earnings" - "ecb" - "ecdsa" - "ecommerce" - "economics" - "economy" - "education" - "electricity" - "electrum" - "eligius" - "email" - "encoding" - "encryption" - "endianness" - "energy" - "error" - "escrow" - "ethereum" - "eu" - "europe" - "examples" - "exchange-fees" - "exchange-order" - "exchange-rate" - "exchanges" - "exploitation" - "export" - "factom" - "fallback-nodes" - "faucets" - "final" - "finance" - "financial-regulations" - "fincen" - "firewall" - "firstbits" - "forging" - "forks" - "formatting" - "forum" - "fpga" - "fractional-reserve" - "fragmentation" - "fraud" - "funds" - "future" - "future-proof" - "gambling" - "gaming" - "gavin-andresen" - "genesis-block" - "getblocktemplate" - "getmemorypool" - "gettransactions" - "getwork" - "glbse" - "governance" - "government" - "gpu" - "green-address" - "gridseed" - "guiminer" - "hacking" - "harborly" - "hardware" - "hardware-wallet" - "hash" - "hashing" - "hashpower" - "hashrate" - "hawala" - "hd-wallet" - "height" - "history" - "hive" - "hosting" - "http" - "hybrid" - "identity" - "immature-coins" - "import" - "india" - "inflation" - "installation" - "installing" - "instawallet" - "intersango" - "introducing-bitcoin" - "investing" - "ios" - "iou" - "irc" - "java" - "javascript" - "job" - "json-rpc" - "key-selling-points" - "keypool" - "kyc" - "latency" - "learning" - "leasing" - "ledger" - "legal" - "lending" - "leveldb" - "library" - "license" - "limit" - "linode" - "linux" - "litecoin" - "litecoin-qt" - "live-data" - "local" - "localbitcoins" - "localization" - "locktime" - "logging" - "logo" - "loss" - "lost-bitcoins" - "lost-transactions" - "lost-wallet" - "m-of-n" - "mac" - "macroeconomics" - "malware" - "march-2013-fork" - "margin" - "market" - "market-depth" - "marketing" - "marketplace" - "mastercoin" - "maxcoin" - "measurements" - "media" - "memory" - "memorycoin" - "mempool" - "merchant-services" - "merchants" - "merged" - "merkle-tree" - "message" - "message-signing" - "message-verification" - "mgw" - "mgwbtc" - "micropayments" - "mining" - "mining-pools" - "mining-setup" - "mintpal" - "mixing" - "mnemonic" - "mobile" - "money" - "money-laundering" - "money-supply" - "money-transfer" - "movecmd" - "mpos" - "msigna" - "msvc" - "mtgox" - "multi-factor" - "multi-sig" - "multi-sig-addresses" - "multi-sig-transactions" - "multibit" - "multigateway" - "music" - "mysql" - "namecoin" - "network" - "networking" - "news" - "nextcoin" - "nfc" - "nmc" - "node.js" - "nodes" - "non-standard-transaction" - "nonce" - "nothing-at-stake" - "nvidia" - "nxt" - "nxt-marketplace" - "off-chain" - "offline" - "offline-transactions" - "open-source" - "open-transactions" - "openbazaar" - "options" - "oracle" - "orphaned-block" - "otc" - "output" - "ownership" - "p2pool" - "p2sh" - "packets" - "paper-wallet" - "passphrase" - "payment" - "payment-processors" - "payment-protocol" - "payments" - "paypal" - "peercoin" - "peers" - "people" - "performance" - "pgp" - "phishing" - "phoenix" - "php" - "physical-coins" - "poclbm" - "politics" - "pool-hopping" - "pool-operators" - "pool-payout-methods" - "port" - "portable" - "pos" - "ppcoin" - "prediction" - "price" - "price-volatility" - "primecoin" - "primecoind" - "primeminer" - "priority" - "privacy" - "private-key" - "profitability" - "project" - "promotion" - "proof-of-destruction" - "proof-of-existence" - "proof-of-stake" - "proof-of-work" - "properties" - "protocol" - "protoshares" - "provably-fair" - "proxy" - "pruning" - "psu" - "public-key" - "pubnub" - "pushpool" - "pycoin" - "python" - "qrcode" - "qt" - "quantum-computing" - "quarkcoin" - "quote" - "race-attack" - "random" - "raspberry-pi" - "raw" - "raw-data" - "raw-transaction" - "receiving" - "recover-private-key" - "recover-wallet" - "recovery-wallet" - "regtest" - "regulation" - "relay" - "reporting" - "restore" - "retail" - "reverse-transaction" - "reward" - "reward-schedule" - "ring-signatures" - "ripemd160" - "ripple" - "ripple-api" - "ripple-client" - "ripple-gateways" - "ripple-transaction-fees" - "ripple-trust" - "risk-mitigation" - "ronpaulcoin" - "ruby" - "s2" - "safemode" - "safety" - "salt" - "satoshi" - "satoshi-nakamoto" - "satoshidice" - "scalability" - "scam" - "script" - "scrypt" - "secp256k1" - "secureae" - "securities" - "security" - "security-key" - "seed" - "sell-bitcoins" - "sending" - "sequence" - "server" - "services" - "sha256" - "shared" - "shares" - "shopping-cart-interface" - "shrinking-money-supply" - "sidechain" - "signature" - "signing" - "silk-road" - "solidcoin" - "solo-mining" - "solution-withholding" - "spam" - "specification" - "speculation" - "speed" - "spending" - "spv" - "ssl" - "standard" - "start" - "statement" - "stealth-address" - "stellar" - "stocks" - "storage" - "stratum" - "support" - "sybil-attack" - "synchronization" - "target" - "taxes" - "tcp" - "technical-analysis" - "tenebrix" - "terminology" - "testing" - "testnet" - "theft" - "theory" - "thin-clients" - "throttling" - "ticker" - "time" - "timestamp" - "tools" - "tor" - "traceability" - "trade" - "tradehill" - "trading" - "transaction-fees" - "transaction-malleability" - "transaction-selection" - "transaction-verification" - "transactions" - "transit-fees" - "travel" - "trucoin" - "trust" - "two-factor" - "tx" - "txid" - "ubuntu" - "uk" - "unconfirmed" - "undofiles" - "uri" - "usa" - "user-base" - "user-data" - "utility" - "utxo" - "value" - "vanity-address" - "vanitygen" - "verification" - "vertcoin" - "video" - "virtual-currency" - "virus" - "visa" - "volume" - "voting" - "wallet" - "wallet-notify" - "wallet-security" - "wallet.dat" - "watch-only" - "weaknesses" - "wealth-distribution" - "webminer" - "website-integration" - "websites" - "websockets" - "wiki" - "wikileaks" - "windows" - "wire-transfers" - "withdrawal" - "wot" - "x11" - "xrp-reserve" - "yacoin" - "zerocoin") diff --git a/data/tags/blender.el b/data/tags/blender.el deleted file mode 100644 index 6f3e460..0000000 --- a/data/tags/blender.el +++ /dev/null @@ -1,136 +0,0 @@ -("3d-printing" - "addon" - "animation" - "antialiasing" - "append" - "armature" - "baking" - "blend-files" - "blend-modes" - "blender-internal" - "blur" - "bmesh" - "bones" - "camera" - "cloth-simulation" - "collada" - "color-management" - "command-line" - "compatibility" - "compositor" - "constraints" - "conversion" - "coordinates" - "curves" - "customization" - "cycles" - "depth-of-field" - "dimensions" - "documentation" - "dopesheet" - "drawmodes" - "drivers" - "dynamic-paint" - "dynamic-topology" - "edges" - "editing" - "export" - "external-applications" - "file-browser" - "file-format" - "fluid-simulation" - "force-fields" - "freestyle" - "game-engine" - "geometry" - "gpu" - "graph-editor" - "greasepencil" - "groups" - "image" - "import" - "installation" - "instances" - "interface" - "keyframes" - "layers" - "light" - "linked-data" - "linux" - "logic-bricks" - "mac" - "makehuman" - "masking" - "matcaps" - "materials" - "measurement" - "memory-management" - "mesh" - "meta-objects" - "mirror" - "modeling" - "modifiers" - "network" - "nla-editor" - "node-editor" - "nodes" - "normals" - "nurbs-surface" - "objects" - "ocean-simulation" - "opengl" - "operator" - "osl" - "outliner" - "particles" - "path" - "performance" - "physics" - "point-clouds" - "properties" - "pynodes" - "python" - "render-layers" - "rendering" - "rigging" - "rigid-body-simulation" - "rigify" - "scene" - "scripting" - "sculpting" - "selection-tools" - "shaders" - "shape-keys" - "shortcut" - "smoke-simulation" - "snapping" - "soft-body" - "sound" - "terminology" - "text-editor" - "text-object" - "texture-baking" - "texture-painting" - "texturing" - "theme" - "three.js" - "topology" - "tracking" - "transforms" - "transparency" - "units" - "unity" - "uv" - "versions" - "vertex-colors" - "vertex-groups" - "vertices" - "video" - "video-sequence-editor" - "viewport" - "volumetrics" - "webgl" - "weight-painting" - "windows" - "wireframe" - "workflow") diff --git a/data/tags/boardgames.el b/data/tags/boardgames.el deleted file mode 100644 index c0b563b..0000000 --- a/data/tags/boardgames.el +++ /dev/null @@ -1,467 +0,0 @@ -("1000-blank-white-cards" - "13x13" - "18xx" - "3d-chess" - "7-wonders" - "7-wonders-cities" - "7-wonders-leaders" - "a-touch-of-evil" - "abalone" - "accessibility" - "advanced-civilization" - "age-of-steam" - "agricola" - "agricola-fotm" - "agricola-goodies" - "ah-innsmouth-horror" - "ah-miskatonic-horror" - "alexandros" - "alhambra" - "alien-frontiers" - "american-megafauna" - "android-netrunner" - "arcadia-quest" - "arcana" - "archipelago" - "archipelago-solo-exp" - "arctic-scavengers" - "arkham-horror" - "ascension" - "at-the-gates-of-loyang" - "avalonhill" - "axis-and-allies" - "axis-and-allies-mini" - "bacchus-banquet" - "backgammon" - "balance" - "bang" - "barbarian-prince" - "basing" - "battlestar-galactica" - "belfort" - "belote" - "bestow" - "betrayal-at-house-on-hill" - "betting" - "bidding" - "bios-megafauna" - "black-friday" - "blackjack" - "blokus" - "blood-bowl" - "board-game-adaptations" - "board-size" - "boggle" - "bohnanza" - "boss-monster" - "brass" - "bridge" - "broadside" - "button-men" - "call-of-cthulhu-lcg" - "canasta" - "candy-land" - "carcassonne" - "carcassonne-catapult" - "carcassonne-new-world" - "carcassonne-river" - "card-sleeves" - "card-wars" - "cards-against-humanity" - "careers" - "cargo-noir" - "carrom" - "casino-games" - "castaways" - "castle-panic" - "castle-ravenloft" - "catan-card-game" - "catan-cities-and-knights" - "catan-junior" - "catan-traders-barbarians" - "caverna" - "caylus" - "chaos-in-the-old-world" - "chaos-marauders" - "cheating" - "checkers" - "chess" - "chez-geek" - "chinese-checkers" - "chupacabra" - "circus-maximus" - "citadels" - "civilization-board-game" - "claustrophobia" - "cluedo" - "combat" - "complexity" - "components" - "computer-ai" - "computers" - "connect-four" - "conquest-lcg" - "conquest-of-planet-earth" - "cooperation" - "copyright" - "core-worlds" - "cosmic-encounter" - "counting" - "coup-the-resistance" - "crayon-rail-games" - "cribbage" - "crokinole" - "cuba" - "custom-game-pieces" - "dc-comics-deck-building" - "dead-of-winter" - "death-angel" - "deck-building" - "decktet" - "defenders-of-the-realm" - "descent" - "designer-board-games" - "destruct-3" - "dice" - "diplomacy" - "discworld-ankh-morpork" - "discworld-the-witches" - "diskwars" - "dixit" - "dnd-adventure-system" - "do-it-yourself" - "domaine" - "dominion" - "dominion-alchemy" - "dominion-cornucopia" - "dominion-dark-ages" - "dominion-hinterlands" - "dominion-intrigue" - "dominion-promotional" - "dominion-prosperity" - "dominion-seaside" - "dominoes" - "dont-break-the-ice" - "doom" - "dungeon" - "dungeon-lords" - "dungeon-run" - "dungeonquest" - "dunwich-horror" - "duplicate-bridge" - "eclipse" - "elder-sign" - "eldritch-horror" - "elfenland" - "eminent-domain" - "empires-in-arms" - "end-game" - "end-of-times" - "escape-from-atlantis" - "etiquette" - "euchre" - "evolution" - "exodus" - "expansions" - "extension" - "family-games" - "farmageddon" - "few-acres-of-snow" - "firefly" - "flames-of-war" - "flash-duel" - "flash-point" - "fluxx" - "forbidden-desert" - "forbidden-island" - "friday" - "galaxy-trucker" - "game-accessories" - "game-design" - "game-development" - "game-of-life" - "game-of-thrones" - "game-of-thrones-card-game" - "game-system" - "game-theory" - "ghost-catch" - "ghost-stories" - "gin" - "gloom" - "glory-to-rome" - "go" - "goban" - "gomoku" - "gosu" - "great-dalmuti" - "great-museum-caper" - "guillotine" - "haggis" - "hand-and-foot" - "handicap" - "hansa-teutonica" - "hearts" - "heroic" - "history" - "hive" - "hnefatafl" - "home-builders" - "hordes" - "house-rules" - "icehouse" - "identify-this-game" - "illuminati" - "in-the-lab" - "in-the-year-of-the-dragon" - "influence" - "innistrad" - "invasion" - "ios" - "jenga" - "joseki" - "joseki-deviation" - "junta" - "kgs" - "khet" - "kids" - "kids-of-catan" - "kifu" - "killer-bunnies" - "king-of-tokyo" - "king-of-tokyo-power-up" - "kingdom-builder" - "last-night-on-earth" - "le-havre" - "legal" - "legend-of-the-five-rings" - "legends-of-andor" - "liars-dice" - "libertalia" - "life-adventures" - "little-wars" - "lord-of-the-rings" - "lord-of-the-rings-lcg" - "lords-of-waterdeep" - "lost-cities" - "love-letter" - "luck" - "mad-zeppelin" - "mage-knight" - "mage-knight-bg" - "magic-the-gathering" - "mahjong" - "mancala" - "mansions-of-madness" - "marvel-dice-masters" - "mascarade" - "mechanics" - "memoir-44" - "metagame" - "mice-and-mystics" - "midway" - "miniatures" - "modelling" - "monopoly" - "monopoly-deal" - "mordheim" - "mtg-commander" - "mtg-cube" - "mtg-drafting" - "mtg-history" - "mtg-manabase" - "mtg-modern" - "mtg-multiplayer" - "mtg-online" - "mulligans" - "munchkin" - "munchkin-quest" - "mundus-novus" - "my-little-pony-ccg" - "necromunda" - "necron" - "netrunner-ccg" - "neuroshima-hex" - "nine-mens-morris" - "ninja-burger" - "notation" - "nuns-on-the-run" - "online" - "opening" - "openings" - "ora-et-labora" - "orks" - "othello" - "pandante" - "pandemic" - "pandemic-contagion" - "pandemic-on-the-brink" - "party" - "pass-the-pigs" - "pathfinder-adventure" - "pegasus" - "pegs-and-jokers" - "penny-arcade-gamersvsevil" - "phase-10" - "pinochle" - "pirates-cove" - "pit" - "play-time" - "playing-cards" - "pokemon" - "poker" - "poker-texas-holdem" - "positional-judgement" - "power-grid" - "priests-of-ra" - "principato" - "print-and-play" - "priority" - "probability" - "professional" - "prototyping" - "psychology" - "puerto-rico" - "puerto-rico-expansion-2" - "puzzle-strike" - "puzzles" - "quarriors" - "quarto" - "race-for-the-galaxy" - "railroad" - "random" - "rank" - "rat-a-tat-cat" - "recommendations" - "redemption-tcg" - "redshirts" - "reference" - "relic" - "republic-of-rome" - "resident-evil-dbg" - "revolver" - "rex" - "riichi-mahjong" - "risk" - "risk-legacy" - "rivals-for-catan" - "robinson-crusoe" - "robo-rally" - "roll-through-the-ages" - "roma" - "rota" - "rummikub" - "rummy" - "saboteur" - "saboteur-2" - "saint-petersburg" - "san-juan" - "scarborough-fair" - "schnapsen" - "scoring" - "scrabble" - "seafarers-of-catan" - "sealed-deck" - "senet" - "sentinel-tactics" - "sentinels-multiverse" - "set" - "settlers-of-catan" - "setup" - "shadow-hunters" - "shadows-over-camelot" - "shape" - "shogi" - "shogun" - "shuffling" - "skill" - "small-world" - "small-world-underground" - "smash-up" - "solitaire" - "somnium" - "sorry" - "space-alert" - "space-orks" - "spades" - "spiel-des-jahres" - "splendor" - "spoiler" - "stack" - "star-trek-ccg" - "star-trek-dbg" - "star-wars-lcg" - "star-wars-x-wing" - "starcraft" - "starfarers-of-catan" - "starship-catan" - "statistics" - "steam" - "stone-age" - "storage" - "stratego" - "study" - "substitutes" - "summoner-wars" - "sw-empire-vs-rebellion" - "swish" - "taboo" - "tactics" - "takenoko" - "talisman" - "tau" - "teaching" - "team-game" - "terminology" - "terra-mystica" - "the-agents" - "the-resistance" - "the-resistance-avalon" - "the-walled-city" - "thematic-content" - "thickness" - "third-reich" - "through-the-ages" - "thunderstone-dragonspire" - "thurn-and-taxis" - "tic-tac-toe" - "ticket-to-ride" - "ticket-to-ride-europe" - "titan" - "tournament" - "trading" - "trashing" - "trick-taking-games" - "troyes" - "tsumego" - "tsuro" - "tsuro-of-the-seas" - "turn-order" - "twilight-imperium" - "twilight-struggle" - "two-headed-giant" - "two-player" - "two-rooms-and-a-boom" - "uno" - "untagged" - "variants" - "vassal" - "version" - "vinci" - "wargaming" - "warhammer-40k" - "warhammer-fantasy" - "warhammer-invasion" - "warhammer-quest" - "warmachine" - "werewolf" - "wizard" - "wow-tcg" - "xia" - "yahtzee" - "yaku" - "yomi" - "yu-gi-oh" - "yucata" - "zombicide" - "zombies" - "zooloretto") diff --git a/data/tags/bricks.el b/data/tags/bricks.el deleted file mode 100644 index 21dddea..0000000 --- a/data/tags/bricks.el +++ /dev/null @@ -1,141 +0,0 @@ -("12v" - "3d-printing" - "3rd-party" - "9v" - "abs" - "accessories" - "advent-calendar" - "afol" - "angles" - "automation" - "bionicle" - "bluetooth" - "boat" - "brands" - "bricklink" - "bridge" - "building" - "cad" - "castle" - "cellulose-acetate" - "city" - "cleaning" - "collectable-minifigures" - "colour" - "commander" - "compatibility" - "convetions" - "curved" - "customization" - "design" - "discontinued" - "duplo" - "durability" - "ebay" - "education" - "electronics" - "ev3" - "ev3-g" - "ev3dev" - "fll" - "friends" - "gears" - "glue" - "harry-potter" - "hero-factory" - "heroica" - "history" - "ideas" - "identification" - "instructions" - "inventory" - "investment" - "ios" - "juniors" - "labview" - "ldd" - "ldraw" - "lego-games" - "lego-group" - "lego-store" - "lejos" - "lighting" - "lotr" - "lugbulk" - "manipulation" - "manufacturing" - "mechanical" - "micro-scale" - "microfigure" - "mindstorms" - "minidolls" - "minifigures" - "moc" - "model-identification" - "modular-buildings" - "monobrick" - "monorail" - "motors" - "nomeclature" - "nxc" - "nxt" - "nxt-g" - "organisation" - "packaging" - "part-identification" - "part-substitution" - "patent" - "pc" - "pick-a-brick" - "piece-information" - "piece-usage" - "plastics" - "play-off" - "pneumatic" - "power-functions" - "preservation" - "programming" - "rcx" - "records" - "remote-control" - "repair" - "replacement-parts" - "robotic" - "safety" - "scale" - "sensor-colour" - "sensor-ultrasonic" - "set-database" - "set-modification" - "set-numbering" - "sets" - "shapes" - "shopping" - "size" - "slope" - "snir" - "snot" - "software" - "space" - "star-wars" - "steering" - "stickers" - "storage" - "system" - "technic" - "terminology" - "the-lego-movie" - "theme" - "tools" - "trading" - "trains" - "transport" - "untagged" - "value" - "vehicle" - "video-games" - "vintage" - "water" - "wedo" - "wheel" - "x-pods") diff --git a/data/tags/buddhism.el b/data/tags/buddhism.el deleted file mode 100644 index 5b369da..0000000 --- a/data/tags/buddhism.el +++ /dev/null @@ -1,299 +0,0 @@ -("abhidhamma" - "abhinna" - "academic-buddhism" - "alan-watts" - "alaya-vijnana" - "almsbowl" - "altar" - "amitabha" - "anagami" - "anapanasati" - "anatman" - "anatta" - "anuttarayoga" - "apocalypse" - "architecture" - "arhats" - "art" - "asadarana" - "asankara" - "atheism" - "attachment" - "avalokitesvara" - "avatamsaka-suttra" - "avyakrta" - "beatnik" - "beginner" - "belief" - "believe" - "bhikkhu" - "bhumi" - "birth-stories" - "blasphemy" - "boddhisattva" - "bodhisattva" - "bodhisattva-vows" - "bon" - "books" - "brahma" - "buddha-nature" - "buddhas" - "buddhavamsa" - "buddhist-text" - "canon" - "caste" - "causes" - "chant" - "chinese-buddhism" - "chinese-canon" - "chogyam-trungpa" - "choice" - "christianity" - "cinca-manavika" - "comparative-religion" - "comparison" - "compassion" - "conceit" - "conditionality" - "consciousness" - "controversy" - "conversion" - "correction" - "daily-life" - "dalai-lama" - "dana" - "death" - "debate" - "defilements" - "demographics" - "dependent-origination" - "destiny" - "deva" - "devadatta" - "dhammapada" - "dilemma" - "doctrine" - "dosa" - "doubt" - "dreams" - "dzogchen" - "early-buddhism" - "east-asian-buddhism" - "eight" - "eight-precepts" - "eightfold-path" - "english" - "enlightenment" - "environmentalism" - "epistemology" - "equanimity" - "ethics" - "etiquette" - "evil" - "evolution" - "faith" - "fear" - "five-hindrances" - "five-niyamas" - "five-precepts" - "food" - "four-noble-truths" - "free-will" - "fundamentals" - "gautama-buddha" - "gender" - "god" - "hakuin" - "hell" - "hermeneutics" - "hinayana" - "hinduism" - "historicity" - "history" - "holidays" - "iconography" - "ignorance" - "impermanence" - "insight" - "intoxicants" - "jainism" - "jargon" - "jhana" - "jodo-shinshu" - "justice" - "karma" - "karma-kagyu" - "karmamudra" - "kathina" - "killing" - "kleshas" - "koans" - "kwan-yin" - "laity" - "lamas" - "lamrim" - "laws" - "lay-buddhism" - "learning" - "learning-materials" - "legends" - "liberation" - "literature" - "lobha" - "loneliness" - "madhyamika" - "mahamudra" - "mahayana" - "maitreya-buddha" - "mantra" - "mara" - "marriage" - "meal-gatha" - "meat" - "meditation" - "middle-way" - "mind-and-matter" - "mindfulness" - "miracles" - "modern-world" - "monastery" - "monasticism" - "money" - "monk" - "morality" - "mudra" - "nagarjuna" - "nana" - "navayana" - "new-age-buddhism" - "nichiren" - "nidanas" - "nihilism" - "nine-purification-breaths" - "nirvana" - "nispannakrama" - "no-self" - "non-buddhism" - "non-sensual" - "non-violence" - "ordination" - "padmasambhava" - "pali-canon" - "pali-language" - "paracanonical" - "parents" - "paticcasamuppada" - "peta" - "petakopadesa" - "phenomenology" - "philosophy" - "phychic" - "pilgrimage" - "plants" - "posture" - "practice" - "prajnaparamita" - "pratityasamutpada" - "prayer" - "precept" - "preta" - "proselytism" - "psychic-powers" - "psychology" - "puja" - "pure-land" - "radical-buddhism" - "reality" - "rebirth" - "reference-request" - "refuge" - "reincarnation" - "relationship" - "religion" - "repentance" - "right-effort" - "right-intention" - "right-livelihood" - "right-speech" - "right-view" - "rituals" - "sadness" - "samadhi" - "samatha" - "samsara" - "sangha" - "sati" - "satipatthana" - "science" - "scientific-method" - "scripture" - "seclusion" - "sects" - "secular-buddhism" - "self" - "sexual-misconduct" - "sexuality" - "shambhala" - "shikantaza" - "shin-buddhism" - "shingon" - "shugendo" - "six-realms" - "six-worlds" - "slavery" - "sleep" - "soul" - "stages-of-the-path" - "statue" - "stories" - "stream-entry" - "suffering" - "suicide" - "sunyata" - "sutras" - "tanha" - "tantra" - "taoism" - "tara" - "tathagata" - "teachers" - "teaching" - "temples" - "terminology" - "texts" - "thai" - "thangka" - "the-buddha" - "theravada" - "thogal" - "ti-lakkhana" - "tibetan-buddhism" - "time" - "tipitaka" - "traditions" - "translation" - "trikaya" - "triratna-buddhism" - "truth" - "tulku" - "twelve-aspects" - "ultimate-realities" - "uposatha" - "utpattikrama" - "vajrayana" - "vasubandhu" - "vedas" - "vegetarianism" - "vinaya" - "vipassana" - "visualization" - "visuddhimagga" - "well-being" - "western-philosophy" - "wheel-of-life" - "worship" - "wrongview" - "yoga" - "yogacara" - "zazen" - "zen") diff --git a/data/tags/chemistry.el b/data/tags/chemistry.el deleted file mode 100644 index fe0c699..0000000 --- a/data/tags/chemistry.el +++ /dev/null @@ -1,203 +0,0 @@ -("acid-base" - "adsorption" - "alcohol" - "allotropes" - "alloy" - "analytical-chemistry" - "applied-chemistry" - "aqueous-solution" - "aromatic-compounds" - "astrochemistry" - "atmospheric-chemistry" - "atomic-radius" - "atoms" - "basis-set" - "bent-bond" - "biochemistry" - "boiling-point" - "bond" - "books" - "breaking-bad" - "carbocation" - "carbon-allotropes" - "carbonyl-compounds" - "catalysis" - "chemical-biology" - "cheminformatics" - "chirality" - "chromatography" - "classification" - "cleaning" - "colloids" - "color" - "combustion" - "computational-chemistry" - "concentration" - "conductivity" - "conformers" - "cooking" - "coordination-compounds" - "covalent-compounds" - "crystal-structure" - "cyclohexane" - "density-functional-theory" - "dipole" - "disposal" - "dna-rna" - "drugs" - "electricity" - "electrochemistry" - "electrolysis" - "electromagnetic-radiation" - "electron-affinity" - "electronegativity" - "electronic-configuration" - "electrons" - "electrostatic-energy" - "elements" - "energy" - "enthalpy" - "entropy" - "environmental-chemistry" - "enzymes" - "equation-of-state" - "equilibrium" - "everyday-chemistry" - "experimental-chemistry" - "explosives" - "extraction" - "fats" - "filtering" - "food-chemistry" - "formal-charge" - "free-energy" - "ft-ir" - "fuel" - "gas-laws" - "geochemistry" - "geometrical-isomerism" - "geometry" - "glassware" - "gloves" - "graph-theory" - "graphite" - "green-chemistry" - "group-theory" - "halides" - "heat" - "history-of-chemistry" - "home-experiment" - "homework" - "hybridization" - "hydrogen" - "hydrolysis" - "identification" - "inn" - "inorganic-chemistry" - "intermolecular-forces" - "ionic-compounds" - "ionization-energy" - "ions" - "isomers" - "isotope" - "iupac" - "kinetics" - "lewis-structure" - "liquid-crystals" - "magnetism" - "mass-spectrometry" - "materials" - "medicinal-chemistry" - "melting-point" - "metal" - "metallurgy" - "mixtures" - "model" - "mole" - "molecular-orbital-theory" - "molecules" - "nanotechnology" - "nmr" - "noble-gases" - "nomenclature" - "notation" - "nuclear" - "optical-properties" - "orbitals" - "organic-chemistry" - "organometallic-compounds" - "osmosis" - "oxidation-state" - "ozone" - "periodic-table" - "periodic-trends" - "ph" - "pharmacology" - "phase" - "phase-equilibria" - "photochemistry" - "physical-chemistry" - "plastics" - "polarity" - "polymers" - "precipitation" - "protons" - "purification" - "qtaim" - "quantum-chemistry" - "radicals" - "raman" - "rare-earth-elements" - "reaction" - "reaction-control" - "reaction-coordinate" - "reaction-mechanism" - "reactivity" - "recrystallization" - "redox" - "reduction-potential" - "reference-request" - "resonance" - "safety" - "selectivity" - "silver" - "software" - "solid-state-chemistry" - "solubility" - "solutions" - "solvents" - "spectrophotometry" - "spectroscopy" - "spin" - "stability" - "stereochemistry" - "stereoisomerism" - "stoichiometry" - "structural-biology" - "structural-diagrams" - "sublimation" - "surface-chemistry" - "surfactants" - "sustainability" - "symmetry" - "synthesis" - "taste" - "tautomer" - "teaching-lab" - "temperature" - "terminology" - "textbook-erratum" - "theoretical-chemistry" - "thermodynamics" - "thiols" - "titration" - "toxicity" - "transition-metals" - "transition-state-theory" - "valence-bond-theory" - "vapor-pressure" - "viscosity" - "vsepr-theory" - "water" - "x-ray-diffraction" - "zwitterion") diff --git a/data/tags/chess.el b/data/tags/chess.el deleted file mode 100644 index f733456..0000000 --- a/data/tags/chess.el +++ /dev/null @@ -1,257 +0,0 @@ -("1.d4" - "1.e4" - "50-move-rule" - "advantage" - "aggressive-play" - "alekhine" - "alekhines-defense" - "analysis" - "anand" - "android" - "annotation" - "arena" - "armageddon" - "aronian" - "attack" - "babaschess" - "bad-bishop" - "beginner" - "berlin" - "best-practice" - "big-list" - "birds-opening" - "bishop-endgame" - "bishop-pair" - "bishops" - "blindfold-chess" - "blitz" - "blunder" - "board-vision" - "bogo-indian-defense" - "books" - "botvinnik" - "brute-force" - "bughouse" - "bullet-chess" - "calculation" - "candidate-move" - "capablanca" - "capablanca-chess" - "captures" - "carlsen" - "carlsen-anand-2014" - "caro-kann" - "castling" - "catalan" - "center" - "cheating" - "check" - "checkmate" - "chess-algorithms" - "chess-blog" - "chess-clocks" - "chess-informant" - "chess-variants" - "chess960" - "chessbase" - "chessboards" - "claim-draw" - "closed-position" - "clubs" - "cm" - "cochrane-gambit" - "colle-system" - "colle-zukertort" - "combinations" - "composing" - "computer-chess" - "correspondence-chess" - "cql" - "database" - "defense" - "doubled-pawn" - "download-games" - "draw" - "dutch-defense" - "eco" - "education" - "elementary-mates" - "elo" - "en-passant" - "endgame" - "engines" - "english-opening" - "equipment" - "etiquette" - "evaluation" - "evans-gambit" - "exchange" - "famous" - "famous-events" - "famous-games" - "famous-moves" - "famous-players" - "fen" - "fianchetto" - "fiction" - "fide" - "fischer" - "fm" - "forced-move" - "formation" - "four-knights" - "french-defense" - "fried-liver-attack" - "fritz" - "gambits" - "game-complexity" - "game-length" - "gelfand" - "glicko" - "grandmaster" - "grunfeld-defense" - "handicapping" - "history" - "houdini" - "human-versus-machine" - "illegal-move" - "im" - "isolated-pawn" - "italian-game" - "karjakin" - "karpov" - "kasparov" - "kings" - "kings-gambit" - "kings-indian" - "kingside" - "knights" - "kramnik" - "learning" - "linux" - "losing" - "mac" - "mac-os-x" - "magazines" - "major-piece-endgame" - "master-games" - "material-balance" - "mathematics" - "memorization" - "middlegame" - "minor-pieces" - "minor-variations" - "modern-benoni" - "modern-defense" - "monograph" - "morphy" - "move" - "najdorf" - "nalimov" - "nimzo-indian" - "notation" - "novelties" - "novelty" - "old-indian" - "online" - "online-blitz" - "online-chess" - "open-source" - "open-tournament" - "opening" - "otb-chess" - "passed-pawn" - "patterns" - "pawn-endgame" - "pawn-promotion" - "pawn-structure" - "pawns" - "performance" - "petroff-defense" - "pgn" - "philidor-defense" - "pieces" - "pins" - "pirc-defense" - "planning" - "ply" - "point-value" - "popularity" - "positional-play" - "preparation" - "press-conference" - "problems" - "programming" - "psychology" - "puzzles" - "quality" - "queens" - "queens-gambit" - "queens-gambit-accepted" - "queens-indian" - "rapid" - "rating" - "refuted" - "retrograde-analysis" - "rook-and-minor-endgame" - "rook-endgame" - "rooks" - "rules" - "ruy-lopez" - "sacrifice" - "scandinavian-defense" - "scheveningen" - "scholastic-chess" - "scid" - "scoresheet" - "scoring-system" - "scotch-game" - "servers" - "shogi" - "sicilian-defense" - "simultaneous" - "slav-defense" - "smith-morra-gambit" - "software" - "solving-chess" - "spassky" - "sportsmanship" - "stalemate" - "statistics" - "stockfish" - "stonewall-attack" - "strategy" - "studies" - "study" - "style" - "suicide-chess" - "super-grandmaster" - "tablebases" - "tactics" - "tal" - "talent" - "teaching" - "team" - "terminology" - "theory" - "time-control" - "time-management" - "titles" - "tournament" - "tournament-directors" - "training" - "transpositions" - "traveling" - "traxler-counter-attack" - "two-knights" - "uci" - "untagged" - "uscf" - "websites" - "winboard" - "windows" - "winning" - "world-championship" - "xiangqi" - "zugzwang" - "zwischenzug") diff --git a/data/tags/chinese.el b/data/tags/chinese.el deleted file mode 100644 index bebbd14..0000000 --- a/data/tags/chinese.el +++ /dev/null @@ -1,169 +0,0 @@ -("ü" - "abstract" - "academic" - "accent" - "acronyms" - "adjectives" - "advanced" - "adverbs" - "ambiguity" - "antonyms" - "audio" - "beginner" - "books" - "calendar" - "calligraphy" - "cantonese" - "casual" - "character-identification" - "characters" - "chengyu" - "chinese-new-year" - "classical-chinese" - "classifiers" - "collocation" - "comparison" - "congratulations" - "conversation" - "culture" - "database" - "dialect" - "dictionary" - "difference" - "differentiation" - "direction-complement" - "directions" - "doraemon" - "emphasis" - "equivalent-phrase" - "erhuayin" - "etiquette" - "etymology" - "euphemism" - "expressions" - "finals" - "fonts" - "food" - "formalities" - "games" - "gender" - "genericization" - "german" - "grammar" - "greetings" - "hakka" - "handwriting" - "hanzi" - "history" - "hokkien" - "hong-kong" - "hsk" - "idioms" - "ime" - "interjections" - "intermediate" - "introductions" - "kanji" - "kinship" - "language-learning" - "learn-chinese" - "learning" - "listening" - "literary-chinese" - "literature" - "loanwords" - "lyrics" - "magazines" - "mainland-china" - "mandarin" - "meaning" - "meaning-in-context" - "measure-word" - "medieval-chinese" - "middle-chinese" - "mistakes" - "mnemonics" - "movies" - "multimedia" - "names" - "negation" - "nuance" - "number" - "old-chinese" - "oral-tradition" - "orthography" - "particles" - "past-tense" - "phonology" - "phrase" - "pinyin" - "place-names" - "poetry" - "politeness" - "possessives" - "practice" - "preposition" - "pronouns" - "pronunciation" - "proper-nouns" - "punctuation" - "radicals" - "readers" - "reading" - "reference-materials" - "regional-variation" - "resources" - "romanization" - "sandhi" - "sentence-structure" - "shanghainese" - "simplified" - "simplified-chinese" - "slang" - "social-norm" - "software" - "speaking" - "spelling" - "spoken" - "standard" - "stroke-order" - "strokes" - "structure" - "style" - "swearing" - "synonyms" - "syntax" - "taiwan" - "taiwanese" - "teaching-methods" - "technology" - "terminology" - "terms-of-address" - "time" - "tone-markers" - "tones" - "tools" - "topolect" - "traditional-chinese" - "traditional-vs-simplified" - "transcription" - "translation" - "transliteration" - "untagged" - "usage" - "verbs" - "vocab" - "vocabular" - "vocabulary" - "websites" - "word" - "word-choice" - "word-lists" - "word-requests" - "writing" - "xiehouyu" - "yale-romanization" - "yes-no-questions" - "zhuyin-fuhao" - "古文" - "地") diff --git a/data/tags/christianity.el b/data/tags/christianity.el deleted file mode 100644 index 5581ee4..0000000 --- a/data/tags/christianity.el +++ /dev/null @@ -1,817 +0,0 @@ -("1-corinthians" - "1-john" - "1-kings" - "1-nephi" - "1-peter" - "1-samuel" - "1-thessalonians" - "1-timothy" - "2-corinthians" - "2-john" - "2-kings" - "2-peter" - "2-samuel" - "2-timothy" - "24-7-prayer" - "4-living-creatures" - "666" - "aaron" - "aaronic-priesthood" - "abortion" - "abraham" - "absalom" - "abuse" - "acts" - "adam" - "adam-and-eve" - "adelphopoiesis" - "adultery" - "advent" - "advent-wreath" - "afterlife" - "age-of-accountability" - "alcohol" - "aliens" - "amalekites" - "amillenialism" - "amish" - "an" - "anabaptist" - "angels" - "anger" - "anglicanism" - "animals" - "annihilationism" - "annulment" - "anointing-of-the-sick" - "anthropology" - "antichrist" - "antinomianism" - "apocrypha" - "apologetics" - "apostasy" - "apostle-john" - "apostles" - "apostles-creed" - "apostolic-succession" - "applications" - "aramaic" - "archaeology" - "archetype" - "architecture" - "arianism" - "ark-of-noah" - "ark-of-the-covenant" - "arminianism" - "art" - "artifacts" - "ascension" - "asia" - "assumption-of-mary" - "astrology" - "astronomy" - "atheism" - "atonement" - "augustine" - "augustine-of-hippo" - "authority" - "authorship" - "aw-tozer" - "babylonians" - "baptism" - "baptist" - "barabbas" - "beast" - "beatification" - "belief" - "bible" - "bible-commentary" - "bible-interpretation" - "bible-society" - "bible-translation" - "biblical-basis" - "biblical-languages" - "biblical-mystery" - "biblical-reliability" - "big-bang" - "biology" - "bishops" - "blasphemy" - "blessings" - "blood-of-christ" - "boasting" - "book-of-james" - "book-of-judges" - "book-of-mormon" - "books" - "born-again" - "bronze-serpent" - "brownists" - "bunyan" - "burial" - "cafeteria-catholic" - "cain" - "calendar" - "calendar-of-saints" - "calling" - "calvin" - "calvinism" - "canon" - "canon-law" - "canonization" - "capital-punishment" - "catechism" - "catechumenate" - "catholic-bible" - "catholic-catechism" - "catholic-rites" - "catholicism" - "celebrations" - "celibacy" - "cessationism" - "charismatic" - "charity" - "children" - "christian-identity" - "christian-literature" - "christian-living" - "christian-psychology" - "christianity-in-india" - "christmas" - "christology" - "christophany" - "chronicles" - "church" - "church-and-state" - "church-building" - "church-discipline" - "church-fathers" - "church-hierarchy" - "church-history" - "church-identification" - "church-local" - "church-magisterium" - "church-of-england" - "church-offices" - "church-polity" - "church-process" - "church-structure" - "church-universal" - "circumcision" - "civil" - "civil-authority" - "clergy" - "clothing" - "commandments" - "common-teachings" - "communion" - "communion-of-saints" - "community-of-christ" - "comparative-christianity" - "comparative-religion" - "confession" - "confirmation" - "constantine" - "contraception" - "conversion" - "copyright" - "corporal-punishment" - "covenant-theology" - "covenants" - "creation" - "creeds-and-confessions" - "cross" - "crucifix" - "crucifixion" - "crusades" - "cs-lewis" - "culpability" - "culture" - "curses" - "cursing" - "cyrus" - "damnation" - "dance" - "daniel" - "darkness" - "david" - "dead-sea-scrolls" - "death" - "definition" - "deification" - "demons" - "denomination" - "determinism" - "deuterocanonical-books" - "deuteronomy" - "devotion" - "diaconate" - "didache" - "diet" - "dietary" - "discernment" - "disciple" - "dispensationalism" - "divination" - "divine-intervention" - "divine-law" - "divinity" - "division" - "divorce" - "doctrine" - "doctrine-and-covenants" - "documentary-hypothesis" - "dogma" - "doubt" - "drugs" - "dualism" - "early-church" - "earth" - "easter" - "eastern-orthodox" - "ecclesiastes" - "ecclesiology" - "ecumenical-council" - "ecumenism" - "eden" - "edom" - "egypt" - "ehud" - "eisegesis" - "elders" - "election" - "elijah" - "elisha" - "emergent" - "enoch" - "environmentalism" - "ephesians" - "epistemology" - "epistle-of-barnabas" - "epistles" - "esau" - "eschatology" - "esotericism" - "esv" - "eternal-life" - "ethics" - "eunuchs" - "euthanasia" - "evangelical-counsel" - "evangelical-free" - "evangelicalism" - "evangelism" - "evolution" - "ex-cathedra" - "excommunication" - "exegesis" - "existance" - "exodus" - "exorcism" - "extra-biblical" - "extra-terrestrial-life" - "ezekiel" - "faith" - "faith-healing" - "fall-of-man" - "family" - "fasting" - "fate" - "feasts" - "feelings" - "fellowship" - "filioque" - "flag" - "flood-of-noah" - "food" - "foreknowledge" - "foreshadowing" - "forever" - "forgiveness" - "fossils" - "free-will" - "freedom-of-religion" - "freemasonry" - "fruit-of-the-spirit" - "fundamentalism" - "fundamentalist" - "funeral" - "g-k-chesterton" - "galatians" - "gambling" - "gap-theory" - "garden-of-eden" - "gay-marriage" - "gender" - "genealogy" - "general-revelation" - "genesis" - "gentile" - "genuflection" - "geography" - "geology" - "giants" - "gideon" - "global-christianity" - "glory" - "gnosticism" - "god-given-rights" - "godparents" - "gods" - "golden-rule" - "good-and-evil" - "gospel" - "gospel-of-john" - "gospel-of-luke" - "gospel-of-mark" - "gospel-of-matthew" - "gospels" - "government" - "government-laws" - "grace" - "graphic-passages" - "great-commission" - "greek" - "guardian-angels" - "hades" - "hail-mary" - "halloween" - "hate" - "healing" - "healthcare" - "heaven" - "hebrew" - "hebrews" - "hell" - "heresy" - "heretic" - "hindered-prayer" - "hinduism" - "historic-customs" - "historical-criticism" - "historical-jesus" - "history" - "holidays" - "holiness" - "holy-ghost" - "holy-orders" - "homosexuality" - "honor" - "human-body" - "humanity" - "humor" - "hymns" - "hyperdispensationalism" - "hypostatic-union" - "iconoclasm" - "iconography" - "identity-christianity" - "idolatry" - "ignatius" - "immaculate-conception" - "immersionist" - "immortality" - "imprimatur" - "imputation" - "incarnation" - "incest" - "indulgence" - "inerrancy" - "infallibility" - "infants" - "infinity" - "inspiration" - "intelligent-design" - "inter-faith" - "intercession" - "intercession-of-saints" - "intervention" - "irresistible-grace" - "isaiah" - "islam" - "israel" - "jacob" - "james-apostle" - "jargon" - "jasher" - "jehovahs-witnesses" - "jeremiah" - "jerome" - "jerusalem" - "jesus" - "jews" - "job" - "joel" - "john" - "john-apostle" - "john-of-damascus" - "john-piper" - "john-the-baptist" - "jonah" - "joseph" - "joseph-husband-of-mary" - "joseph-smith" - "joshua" - "joy" - "jubilee" - "judaism" - "judas-iscariot" - "jude" - "judge" - "judgment" - "just-war-theory" - "justice" - "justification" - "killing" - "kingdom" - "kingdom-of-god" - "kingship" - "kjv" - "knowledge" - "lake-of-fire" - "language" - "last-supper" - "latin-vulgate" - "law" - "law-and-gospel" - "law-of-gradualness" - "lazarus" - "lds" - "leadership" - "lectionary" - "legend" - "lent" - "leprosy" - "levites" - "leviticus" - "lgbt" - "liberal" - "lifestyle" - "limited-atonement" - "literalism" - "liturgy" - "liturgy-of-the-hours" - "logic" - "lords-prayer" - "lot" - "love" - "luck" - "luke" - "lust" - "lutheranism" - "lying" - "malachi" - "manuscript" - "mariology" - "marriage" - "martin-luther" - "martyrdom" - "mary-and-martha" - "mass" - "matthew" - "meaning" - "mediator" - "meditation" - "megachurch" - "membership" - "mennonite" - "mental-illness" - "mercy" - "messiah" - "messianic-judaism" - "metaphor" - "metaphysics" - "methodist" - "methuselah" - "mexican-tradition" - "michael" - "mind" - "ministry" - "miracles" - "missions" - "modalism" - "monarchy-of-the-father" - "monasticism" - "money" - "monotheism" - "moral-evil" - "morality" - "moravians" - "mortality" - "mosaic-law" - "moses" - "movements" - "murder" - "music" - "mysticism" - "name-of-god" - "name-of-jesus" - "names-of-god" - "nations" - "nativity" - "natural-disasters" - "natural-law" - "natural-marriage" - "nature-of-christ" - "nature-of-god" - "nature-of-man" - "nehemiah" - "new" - "new-covenant" - "new-creation" - "new-earth" - "new-testament" - "nicene-creed" - "niv" - "noah" - "non-christian" - "non-denominational" - "non-trinitarian" - "npp" - "numbers" - "numerology" - "nwt" - "oaths" - "obedience" - "occult" - "official-doctrine" - "old-earth-creation" - "old-testament" - "omnibenevolence" - "omnipotence" - "omniprescence" - "omniscience" - "oneness-pentecostalism" - "ordinances" - "ordination" - "origen" - "origin" - "original-sin" - "other-religions" - "pacifism" - "pagan" - "papacy" - "papal-bull" - "papal-execution" - "papal-infallibility" - "papal-magesterium" - "papal-magisterium" - "parables" - "parenting" - "parents" - "passover" - "pastor" - "pastoral-care" - "patristics" - "patronage" - "paul-apostle" - "paul-tillich" - "payment" - "pearl-of-great-price" - "pentacostalism" - "pentecost" - "pentecostalism" - "perfection" - "perpetual-virginity" - "persecution" - "perseverance-of-saints" - "personalism" - "peter" - "philippians" - "philosophy" - "phoebe" - "phrase" - "pilate" - "place-of-the-dead" - "plato" - "pleasure" - "pneumatology" - "poetry" - "polemic" - "political-correctness" - "politics" - "polygamy" - "polytheism" - "pope-francis" - "pope-francis-pontificate" - "positive-christianity" - "power" - "practice" - "praise" - "prayer" - "preaching" - "predestination" - "premillenialism" - "presbyterianism" - "priesthood" - "priests" - "progressive" - "prophecy" - "prophets" - "proselytizing" - "prosperity-gospel" - "protestant-bible" - "protestantism" - "proverbs" - "psalm" - "psalter" - "punishment" - "purgatory" - "puritanism" - "purpose" - "qur" - "racism" - "rapture" - "rastafarian" - "reading-bible" - "reborn" - "reconciliation" - "reference-request" - "reformation" - "reformed-baptist" - "reformed-theology" - "regeneration" - "regulative-principle" - "reincarnation" - "relationships" - "relics" - "religion" - "religious-education" - "religious-orders" - "religious-practice" - "repentance" - "resurrection" - "revelation" - "reward" - "righteousness" - "ritual" - "romans" - "rome" - "rosary" - "rosicrucianism" - "rules" - "sabbath" - "sabbath-year" - "sacraments" - "sacred-deposit-of-faith" - "sacrifice" - "sadducees" - "saint" - "sanctification" - "sarah" - "satan" - "saul" - "schism" - "science" - "scots-confession" - "scripture" - "scriptures" - "second-coming" - "secret-societies" - "sect" - "sectarianism" - "sedevacantism" - "self-defense" - "seminary" - "septuagint" - "seraphim" - "sermon" - "sermon-on-the-mount" - "serpent" - "service" - "seth" - "seventh-day-adventists" - "sexuality" - "shroud-of-turin" - "signs-of-the-times" - "sin" - "sinners" - "sinners-prayer" - "sirach" - "slave-to-god" - "slavery" - "society" - "society-of-friends" - "society-of-sacred-heart" - "sodom" - "sola-fide" - "sola-gratia" - "sola-scriptura" - "solomon" - "son-of-god" - "song-of-solomon" - "soteriology" - "souls" - "southern-baptist" - "sovereignty" - "speaking-in-tongues" - "special-revelation" - "spirit" - "spiritual-gifts" - "spiritual-growth" - "spiritual-warfare" - "spirituality" - "st-augustine-of-hippo" - "st-thomas-aquinas" - "subordinationism" - "subsidiarity" - "suffering" - "suicide" - "summa-theologica" - "sunday" - "superstition" - "symbolism" - "syncretism" - "tabernacle" - "tamuz" - "technology" - "temple" - "temptation" - "ten-commandments" - "terminology" - "tetragrammaton" - "textual-criticism" - "textual-discrepancies" - "the-eighth-commandment" - "theistic-evolution" - "theodicy" - "theological-frameworks" - "theology" - "theophany" - "theosis" - "thief-on-the-cross" - "third-heaven" - "thomas-a-kempis" - "thought" - "time" - "timetable" - "timothy" - "tithe" - "tithing" - "titles-of-god" - "titles-of-jesus" - "titus" - "tolstoy" - "tongues" - "torah" - "total-depravity" - "tradition" - "transfiguration" - "transhumanism" - "translation" - "transubstantiation" - "tribulation" - "trinitarian" - "trinity" - "tripartite" - "trusting-others" - "truth" - "twelve-apostle" - "typology" - "unbelievers" - "unconditional-election" - "united-kingdom" - "united-states" - "unity" - "universal-priesthood" - "universalism" - "unsaved" - "untagged" - "valid" - "vatican-ii" - "veneration" - "vestments" - "violence" - "virgin-mary" - "virginity" - "virtues" - "vocations" - "vodou" - "voltaire" - "war" - "watchman-nee" - "wealth" - "weapons" - "wesley" - "wesleyanism" - "western-church" - "westminster-confession" - "will-of-god" - "willow-creek" - "wine" - "wisdom" - "wise-men" - "witness" - "women" - "women-priests" - "word-of-faith" - "word-study" - "words-of-jesus" - "works" - "world-youth-day" - "worship" - "worship-practices" - "young-earth-creation" - "youth" - "zoroastrian" - "zwingli") diff --git a/data/tags/codegolf.el b/data/tags/codegolf.el deleted file mode 100644 index 04fedf5..0000000 --- a/data/tags/codegolf.el +++ /dev/null @@ -1,193 +0,0 @@ -("1p5" - "3d" - "ai-player" - "algorithm-advice" - "anagrams" - "animation" - "apl" - "arithmetic" - "array-manipulation" - "ascii-art" - "assembly" - "astrology" - "atomic-code-golf" - "audio" - "base-conversion" - "bash" - "befunge" - "binary" - "binary-matrix" - "binary-tree" - "bioinformatics" - "bitwise" - "board-game" - "boggle" - "braille" - "brainfuck" - "brownian" - "browser" - "busy-beaver" - "by-language" - "c" - "c#" - "c++" - "calendar" - "cellular-automata" - "chef" - "chemistry" - "chess" - "cjam" - "clock" - "code-bowling" - "code-challenge" - "code-generation" - "code-golf" - "code-shuffleboard" - "code-trolling" - "combinatorics" - "compile-time" - "compiler" - "complex-numbers" - "compression" - "concurrency" - "connected-figure" - "conversion" - "cops-and-robbers" - "counting" - "crossword" - "cryptography" - "css" - "data-structures" - "date" - "deadfish" - "delphi" - "division" - "duct-tape-coding" - "ecmascript-6" - "electrical-engineering" - "encode" - "error-correction" - "f#" - "factorial" - "fastest-algorithm" - "fastest-code" - "fibonacci" - "field-theory" - "floating-point" - "fractal" - "function" - "functional-programming" - "game" - "game-of-life" - "generation" - "geometry" - "golf-practice" - "golfing-advice" - "golfing-language" - "golfscript" - "google" - "grammars" - "graphical-output" - "graphs" - "grid" - "hardware" - "hashing" - "haskell" - "hello-world" - "hq9+" - "image-processing" - "internet" - "interpreter" - "j" - "java" - "javascript" - "jsfuck" - "json" - "keyboard" - "king-of-the-hill" - "kolmogorov-complexity" - "logic-gates" - "lua" - "machine-code" - "malware" - "manufactoria" - "markov-chain" - "math" - "matlab" - "maze" - "metagolf" - "minesweeper" - "mit-scratch" - "morse" - "music" - "natural-language" - "nesting" - "new-years" - "number" - "number-theory" - "obfuscation" - "ocaml" - "optical-char-recognition" - "optimization" - "optimized-output" - "packing" - "palindrome" - "parsing" - "path-finding" - "perl" - "perl-6" - "permutations" - "php" - "pi" - "pixel-art" - "polyglot" - "polynomials" - "popularity-contest" - "powershell" - "primes" - "printable-ascii" - "programming-puzzle" - "puzzle-generator" - "puzzle-solver" - "python" - "quine" - "r" - "random" - "recursion" - "regular-expression" - "repeated-transformation" - "restricted-source" - "reverse-engineering" - "roman-numerals" - "rosetta-stone" - "ruby" - "search" - "sequence" - "set-theory" - "shifting" - "shortest-time" - "simulation" - "sorting" - "source-layout" - "stack-exchange-api" - "steganography" - "string" - "subsequence" - "sudoku" - "syntax" - "tetris" - "tex" - "tic-tac-toe" - "time-complexity" - "tips" - "tree-traversal" - "trigonometry" - "typography" - "underhanded" - "unicode" - "vim" - "whitespace-language" - "winterbash-2014" - "word" - "word-puzzle" - "x86-family") diff --git a/data/tags/codereview.el b/data/tags/codereview.el deleted file mode 100644 index e675dad..0000000 --- a/data/tags/codereview.el +++ /dev/null @@ -1,734 +0,0 @@ -(".htaccess" - ".net" - ".net-2.0" - ".net.3.5" - "abap" - "abstract-factory" - "actionscript" - "actionscript-3" - "active-record" - "actor" - "ada" - "ado.net" - "adventure-game" - "ai" - "ajax" - "akka" - "algorithm" - "amazon-s3" - "amp" - "android" - "angular.js" - "animation" - "ant" - "apache-spark" - "apex-code" - "api" - "applescript" - "arduino" - "array" - "asp-classic" - "asp.net" - "asp.net-mvc" - "asp.net-mvc-2" - "asp.net-mvc-3" - "asp.net-mvc-4" - "asp.net-web-api" - "aspect-oriented" - "assembly" - "assertions" - "async-await" - "async.js" - "asynchronous" - "atomic" - "audio" - "authentication" - "authorization" - "autofac" - "autohotkey" - "autoloader" - "automapper" - "awk" - "awt" - "backbone.js" - "backtracking" - "bacon.js" - "base64" - "bash" - "basic" - "batch" - "bdd" - "beautiful-soup" - "beginner" - "bem" - "binary-search" - "bioinformatics" - "bit-twiddling" - "bitset" - "bitwise" - "bluetooth" - "bookmarklet" - "boost" - "bottle" - "brainfuck" - "breadth-first-search" - "c" - "c#" - "c++" - "c++-cli" - "c++03" - "c++0x" - "c++11" - "c++14" - "c11" - "c99" - "cache" - "caesar-cipher" - "cakephp" - "callback" - "canvas" - "captcha" - "casting" - "category" - "cfml" - "chess" - "child-process" - "circular-list" - "classes" - "cli" - "client" - "clojure" - "closure" - "clustering" - "cobol" - "cocoa" - "cocoa-touch" - "cocos2d-x" - "codeigniter" - "codenameone" - "coffeescript" - "coldfusion" - "coldfusion-10" - "collections" - "collision" - "com" - "combinatorics" - "comments" - "common-lisp" - "community-challenge" - "comparative-review" - "compiler" - "complexity" - "compression" - "computational-geometry" - "concurrency" - "conditions" - "connection-pool" - "console" - "constants" - "constructor" - "container" - "contest-problem" - "contextmenu" - "control-structures" - "controller" - "converting" - "coordinate-system" - "cordova" - "core-data" - "couchdb" - "covariance" - "cross-browser" - "crypto++" - "cryptography" - "css" - "css3" - "csv" - "curl" - "cursor" - "cyclomatic-complexity" - "cython" - "d" - "d3.js" - "dapper" - "dart" - "data-importer" - "data-mining" - "data-structures" - "database" - "database-schema" - "datatable" - "datetime" - "db2" - "ddd" - "declaration" - "delegates" - "delphi" - "dependency-injection" - "depth-first-search" - "design-patterns" - "device-driver" - "dictionary" - "directory" - "divide-and-conquer" - "django" - "doctrine" - "dojo" - "dom" - "drupal" - "dsl" - "dto" - "duck-typing" - "dynamic-loading" - "dynamic-programming" - "easymock" - "eclipse" - "ecmascript-6" - "edit-distance" - "eigen" - "elasticsearch" - "elisp" - "elixir" - "elm" - "eloquent" - "emacs" - "email" - "embedded" - "ember.js" - "entity-component-system" - "entity-framework" - "enum" - "erb" - "erlang" - "erm" - "error-handling" - "escaping" - "etl" - "event-handling" - "excel" - "exception" - "exception-handling" - "exercism" - "express.js" - "ext.js" - "extension-methods" - "f#" - "facebook" - "factor" - "factory-method" - "fancybox" - "fastbuild" - "fibonacci-sequence" - "file" - "file-structure" - "file-system" - "finance" - "firebase" - "firefox-addon" - "fixed-point" - "fizzbuzz" - "flask" - "flex" - "floating-point" - "fluent-assertions" - "form" - "formatting" - "forth" - "fortran" - "foundation" - "fpga" - "framework" - "freetype" - "ftp" - "functional-programming" - "functions" - "game" - "game-maker" - "game-of-life" - "garbage-collection" - "generator" - "generics" - "genetic-algorithm" - "geospatial" - "git" - "go" - "google-app-engine" - "google-apps-script" - "google-chrome" - "google-contacts-api" - "google-maps" - "google-sheets" - "gpgpu" - "gradle" - "grails" - "grammar" - "grand-central-dispatch" - "graph" - "graphics" - "groovy" - "grunt.js" - "gson" - "guava" - "gui" - "gulp.js" - "gwt" - "hadoop" - "haml" - "hangman" - "hash-map" - "hash-set" - "hash-table" - "hashcode" - "haskell" - "haxe" - "hdl" - "heap" - "helper" - "hibernate" - "higher-order-functions" - "hiveql" - "hlsl" - "homekit" - "homework" - "html" - "html5" - "http" - "https" - "hy" - "i18n" - "idisposable" - "ienumerable" - "imacros" - "image" - "immutable" - "import" - "inheritance" - "insertion-sort" - "instagram" - "integer" - "interface" - "internet-explorer" - "interpreter" - "interval" - "interview-questions" - "io" - "ios" - "iteration" - "iterator" - "j" - "jasmine" - "java" - "java-8" - "javafx" - "javascript" - "jdbc" - "jms" - "jodatime" - "join" - "jpa" - "jquery" - "jquery-ui" - "jsf" - "jsf-2" - "json" - "jsp" - "jstl" - "julia" - "junit" - "jwt" - "kernel" - "kivy" - "knockout.js" - "kotlin" - "kturtle" - "lambda" - "laravel" - "layout" - "lazy" - "ldap" - "less-css" - "lex" - "libgdx" - "library" - "library-design" - "linked-list" - "linkedin" - "linq" - "linq-to-sql" - "linux" - "lisp" - "livescript" - "localization" - "lock-free" - "locking" - "lodash.js" - "logging" - "logo" - "lolcode" - "lombok" - "lookup" - "loop" - "lua" - "lua-table" - "lucene" - "machine-learning" - "macros" - "make" - "makefile" - "mapreduce" - "mariadb" - "marionette.js" - "markdown" - "masking" - "math-expression-eval" - "mathematics" - "matlab" - "matplotlib" - "matrix" - "maven" - "maxscript" - "mediator" - "memoization" - "memory-management" - "mergesort" - "meta-programming" - "metalsmith" - "meteor" - "microdata" - "minecraft" - "minesweeper" - "mithril.js" - "mixins" - "mobile" - "mocha" - "mocks" - "modules" - "monads" - "mongodb" - "mongoose" - "monogame" - "mootools" - "moq" - "mpi" - "ms-access" - "ms-word" - "multiprocessing" - "multithreading" - "multiton" - "mustache" - "mvc" - "mvp" - "mvpvm" - "mvvm" - "mysql" - "mysqli" - "namespaces" - "naming" - "natural-language-proc" - "nested-form" - "netty" - "networking" - "nginx" - "nimrod" - "ninject" - "node.js" - "nosql" - "null" - "number-guessing-game" - "numbers-to-words" - "numerical-methods" - "numpy" - "nunit" - "oauth-2.0" - "object" - "objective-c" - "objective-c-runtime" - "observable" - "ocaml" - "octave" - "odbc" - "odoo" - "oop" - "opencl" - "opencv" - "opengl" - "openmp" - "openquery" - "openssl" - "operator-overloading" - "optimization" - "oracle" - "osx" - "overloading" - "pagination" - "palindrome" - "pandas" - "paper.js" - "parameter-pack" - "parse.com" - "parsec" - "parsing" - "pascal" - "pascal-script" - "passport" - "pathfinding" - "pawn" - "pdf" - "pdo" - "peg.js" - "performance" - "perl" - "perl6" - "phonegap" - "php" - "php5" - "phpunit" - "physics" - "playing-cards" - "plsql" - "plugin" - "poco" - "poco-libraries" - "pointers" - "polymer" - "polymorphism" - "portability" - "posix" - "postgresql" - "postscript" - "postsharp" - "powershell" - "primes" - "processing" - "processing.js" - "producer-consumer" - "programming-challenge" - "progress-4gl" - "project-euler" - "prolog" - "promises" - "propel" - "properties" - "protocol-buffers" - "protocols" - "prototypal-class-design" - "proxy" - "pthreads" - "pubnub" - "pygame" - "pymongo" - "pyramid" - "python" - "python-2.7" - "python-elixir" - "python2.6" - "python3" - "qml" - "qt" - "query-selector" - "queue" - "quick-sort" - "quiz" - "r" - "rabbitmq" - "racket" - "radix-sort" - "rags-to-riches" - "rake" - "raknet" - "random" - "range" - "raphael.js" - "rational-numbers" - "raytracing" - "razor" - "react.js" - "rebol" - "recursion" - "redis" - "reference" - "reflection" - "regex" - "reinventing-the-wheel" - "repository" - "require.js" - "rest" - "revealing-module-pattern" - "rock-paper-scissors" - "roman-numerals" - "roslyn" - "rspec" - "rss" - "rtti" - "ruby" - "ruby-on-rails" - "rust" - "salesforce" - "sandbox" - "sass" - "scala" - "scheme" - "scipy" - "scope" - "scrapy" - "scss" - "sdl" - "search" - "security" - "sed" - "selenium" - "serial-port" - "serialization" - "server" - "service-broker" - "servlets" - "session" - "set" - "sfinae" - "sfml" - "sh" - "shadow-dom" - "sharepoint" - "shell" - "shuffle" - "sicp" - "siebel-escript" - "sieve-of-eratosthenes" - "signal-handling" - "signal-processing" - "signalr" - "simd" - "simon-says" - "simulation" - "singleton" - "smalltalk" - "smart-pointers" - "soap" - "socket" - "solaris" - "sorting" - "spl" - "spring" - "sprite-kit" - "sputnik" - "sql" - "sql-injection" - "sql-server" - "sqlalchemy" - "sqlite" - "sse" - "ssh" - "ssis" - "ssl" - "stack" - "stack-oriented-language" - "stackexchange" - "stan" - "state" - "state-machine" - "static" - "statistics" - "stl" - "stored-procedure" - "stream" - "strings" - "struts2" - "stylus" - "subroutine" - "sudoku" - "susy" - "svg" - "svn" - "swift" - "swing" - "symfony2" - "synchronization" - "system.reactive" - "t-sql" - "task-parallel-library" - "tcl" - "tcp" - "tcsh" - "tdd" - "tds" - "template" - "template-meta-programming" - "ternary-operator" - "tex" - "thread-safety" - "threadx" - "ti-basic" - "tic-tac-toe" - "time-limit-exceeded" - "timeout" - "timer" - "tk" - "tkinter" - "tornado" - "tpl-dataflow" - "trait" - "trampoline" - "tree" - "trie" - "turtle-graphics" - "twig" - "twisted" - "twitter" - "twitter-bootstrap" - "type-safety" - "typescript" - "udp" - "uikit" - "uml" - "underscore.js" - "unicode" - "unit-testing" - "unity3d" - "unix" - "url" - "user-defined-literals" - "user-interface" - "utf-8" - "validation" - "value-semantics" - "variant-type" - "vb.net" - "vb6" - "vba" - "vbscript" - "vectorization" - "vectors" - "verilog" - "vhdl" - "video" - "vimscript" - "visual-studio" - "wcf" - "weak-references" - "web-scraping" - "web-services" - "webdriver" - "websocket" - "weekend-challenge" - "winapi" - "windows" - "windows-phone" - "windows-phone-7" - "windows-runtime" - "winforms" - "wolfram-mathematica" - "wordpress" - "wpf" - "wrapper" - "xamarin.forms" - "xaml" - "xml" - "xna" - "xpcom" - "xsd" - "xslt" - "yacc" - "yaml" - "yii" - "zend-framework" - "zeromq") diff --git a/data/tags/cogsci.el b/data/tags/cogsci.el deleted file mode 100644 index fbdad33..0000000 --- a/data/tags/cogsci.el +++ /dev/null @@ -1,257 +0,0 @@ -("abnormal-psychology" - "addiction" - "adhd" - "advertising-psychology" - "aesthetics" - "agent-based-modeling" - "aggression" - "aging" - "alcohol" - "altruism" - "anchoring" - "animal-cognition" - "anthropology" - "anxiety" - "arousal" - "arrogance" - "artificial-intelligence" - "aspergers" - "attention" - "attitudes" - "attraction" - "attribution" - "audition" - "auditory-discrimination" - "autism" - "automaticity" - "bayesian" - "behavior" - "behavioral-economics" - "behaviorism" - "bias" - "big-5" - "bipolar-disorder" - "body-language" - "brain-development" - "brain-injury" - "brain-training" - "categorisation" - "clinical-psychology" - "cognitive-bias" - "cognitive-development" - "cognitive-dissonance" - "cognitive-modeling" - "cognitive-neuroscience" - "cognitive-psychology" - "collaboration" - "color" - "commitment" - "communication" - "comparative-cognition" - "computational-modeling" - "concentration" - "conditioning" - "confidence" - "connectionism" - "consciousness" - "consumer-psychology" - "correlation" - "creativity" - "creatvity" - "cross-cultural-psychology" - "cross-modal" - "cueing" - "data" - "deception" - "decision-making" - "decoding" - "depression" - "developmental-psychology" - "devices" - "dopamine" - "dreams" - "dynamic-systems" - "economics" - "educational-psychology" - "eeg" - "ego-depletion" - "electrophysiology" - "emotion" - "empathy" - "encoding" - "eog" - "epilepsy" - "episodic-memory" - "evolution" - "experimental-psychology" - "expertise" - "extroversion" - "eye-movement" - "fear" - "feeding" - "fmri" - "forensic-psychology" - "frontal-lobes" - "game-theory" - "gamification" - "gender" - "genetics" - "gestalt-psychology" - "goals" - "habituation" - "hallucinations" - "halo-effect" - "hci" - "health-psychology" - "hearing" - "history-of-psychology" - "human-factors" - "humour" - "hypnosis" - "ideation" - "intelligence" - "internet" - "introversion" - "intuition" - "io-psychology" - "ipip" - "jung" - "language" - "lateralization" - "leadership" - "learning" - "linguistics" - "long-term-memory" - "love" - "ltp" - "mathematical-ability" - "mathematical-psychology" - "measurement" - "mechanical-turk" - "meditation" - "memory" - "mental-exhaustion" - "meta-analysis" - "metacognition" - "methodology" - "military-psychology" - "mirror-neurons" - "mnemonic" - "mood" - "moral-psychology" - "motivation" - "motor" - "music" - "nature-nurture" - "nef" - "neural-network" - "neuro-linguistic-prog" - "neuroanatomy" - "neurobiology" - "neurogenesis" - "neuroimaging" - "neurology" - "neuromarketing" - "neurophysiology" - "neuropsychology" - "nlp" - "norms" - "optical-illusion" - "pain" - "parenting" - "perception" - "perceptual-learning" - "performance" - "personality" - "philosophy-of-mind" - "phobia" - "physical-attraction" - "physiology" - "placebo" - "plasticity" - "political-psychology" - "positive-psychology" - "positive-thinking" - "priming" - "problem-solving" - "procedural-memory" - "procrastination" - "prosocial-behavior" - "psychiatry" - "psychoacoustics" - "psychoanalysis" - "psychology" - "psychopharmacology" - "psychophysics" - "psychosis" - "ptsd" - "publication-process" - "qualia" - "rationality" - "reaction-time" - "reading" - "recognition" - "reference-request" - "reinforcement-learning" - "reliability" - "religion" - "reproducible-research" - "sampling" - "savant-syndrome" - "schizophrenia" - "selection-recruitment" - "self" - "self-control" - "self-discipline" - "semantic-memory" - "sensation" - "sex-differences" - "sexuality" - "short-term-memory" - "signal-detection" - "similarirty" - "sleep" - "social-cognition" - "social-desirability" - "social-networks" - "social-neuroscience" - "social-psychology" - "sociology" - "software" - "spatial-cognition" - "spm" - "sport-psychology" - "sports-psychology" - "statistics" - "stimulation" - "stress" - "study-cognitive-sciences" - "survey" - "synchronization" - "synesthesia" - "task-analysis" - "tdcs" - "teaching-of-psychology" - "terminology" - "test" - "testosterone" - "theoretical-neuroscience" - "theory-of-the-mind" - "time" - "training" - "transfer" - "trust" - "unconscious" - "untagged" - "valence" - "validation" - "vestibular-system" - "video-games" - "vision" - "visualization" - "wandering-mind" - "well-being" - "wisdom-of-crowds" - "working-memory" - "workload" - "writing") diff --git a/data/tags/cooking.el b/data/tags/cooking.el deleted file mode 100644 index add693b..0000000 --- a/data/tags/cooking.el +++ /dev/null @@ -1,723 +0,0 @@ -("acidity" - "additives" - "african" - "aging" - "alcohol" - "alcohol-content" - "alfredo" - "alkalinity" - "allergy" - "allium" - "almond-milk" - "almonds" - "aluminum-cookware" - "american-cuisine" - "apple" - "apple-pie" - "apples" - "argentinian-cuisine" - "artichoke" - "asian-cuisine" - "asparagus" - "australian-cuisine" - "avocados" - "baby-food" - "bacon" - "bacteria" - "bagels" - "baker-percentage" - "baking" - "baking-powder" - "baking-soda" - "balkan-cuisine" - "bananas" - "barbecue" - "barbecue-sauce" - "barley" - "basics" - "basil" - "basting" - "batter" - "bay-leaf" - "bbq" - "beans" - "bechamel" - "beef" - "beer" - "beeswax" - "beets" - "bell-peppers" - "beverages" - "biga" - "biscuits" - "blanching" - "blender" - "blind-baking" - "blowtorch" - "blueberries" - "boiling" - "bones" - "botulism" - "bouillon" - "braising" - "bread" - "breadcrumbs" - "breakfast" - "brie" - "brining" - "brisket" - "broccoli" - "broiler" - "broth" - "brown-sugar" - "brownies" - "brussels-sprouts" - "buckwheat" - "budget-cooking" - "bulghur" - "bulk-cooking" - "burner" - "butchering" - "butter" - "buttermilk" - "cabbage" - "caffeine" - "cajun-cuisine" - "cake" - "cakes" - "calories" - "camping" - "candy" - "canning" - "capsicum" - "caramel" - "caramelization" - "carbon-steel" - "carbonara" - "carbonation" - "caribbean-cuisine" - "carob" - "carpaccio" - "carrots" - "casserole" - "cast-iron" - "catering" - "cauliflower" - "cedar-plank" - "celery" - "ceramic" - "ceviche" - "chai" - "charcoal" - "charcuterie" - "cheese" - "cheese-making" - "cheesecake" - "chemistry" - "cherries" - "chestnuts" - "chia" - "chicken" - "chicken-breast" - "chicken-stock" - "chicken-wings" - "chickpeas" - "children" - "chili" - "chilies" - "chilli" - "chilling" - "chinese-cuisine" - "chips" - "chocolate" - "chopping" - "chorizo" - "chutney" - "cilantro" - "cinnamon" - "citrus" - "classification" - "cleaning" - "clothing" - "clotted-cream" - "cocktails" - "cocoa" - "coconut" - "cod" - "coffee" - "cold-brew" - "color" - "coloring" - "comparisons" - "condiments" - "confit" - "consistency" - "containers" - "convection" - "convenience-foods" - "conversion" - "cookbook" - "cookies" - "cooking-myth" - "cooking-time" - "cookware" - "copper-cookware" - "coriander" - "corn" - "corned-beef" - "cornstarch" - "cost" - "crab" - "cranberries" - "crawfish" - "cream" - "cream-cheese" - "creme-anglaise" - "creme-brulee" - "creme-fraiche" - "crepe" - "crock" - "crockpot" - "crudo" - "crumb-crust" - "crumble" - "crust" - "cubes" - "cucumbers" - "culinary-uses" - "cultural-difference" - "cupcakes" - "curing" - "curry" - "custard" - "cut-of-meat" - "cutting" - "cutting-boards" - "dairy" - "dairy-free" - "dashi" - "decanter" - "decorating" - "deep-dish-pizza" - "deep-frying" - "defrosting" - "dehydrating" - "dessert" - "dicing" - "dip" - "disposal" - "dough" - "doughnuts" - "drinks" - "dry-aging" - "drying" - "duck" - "dumplings" - "dutch-oven" - "eetch" - "efficiency" - "egg-noodles" - "egg-whites" - "eggplant" - "eggs" - "elderberries" - "electric-stoves" - "emulsion" - "english-cuisine" - "equipment" - "espresso" - "evaporated-milk" - "experimental" - "extracts" - "fats" - "fermentation" - "feta" - "fiber" - "filling" - "filtering" - "fire" - "fish" - "flambe" - "flan" - "flatbread" - "flavor" - "flavour-pairings" - "flax" - "flour" - "flour-tortilla" - "flowers" - "foam" - "focaccia" - "foil-cooking" - "fondant" - "fondue" - "food-history" - "food-identification" - "food-preservation" - "food-processing" - "food-safety" - "food-science" - "food-transport" - "free-range" - "freezing" - "french-cuisine" - "french-fries" - "french-press" - "fresh" - "fried-eggs" - "frosting" - "frozen" - "frozen-yogurt" - "fruit" - "fruit-leather" - "fryer" - "frying" - "frying-pan" - "fudge" - "gammon" - "ganache" - "garbage-disposal" - "garlic" - "gas" - "gelatin" - "gelling-agents" - "german-cuisine" - "ghee" - "ginger" - "gingerbread" - "glass" - "glaze" - "glucose-syrup" - "gluten-free" - "gnocchi" - "goat" - "goose" - "grade" - "grains" - "granola" - "grapes" - "grating" - "gravy" - "greek-cuisine" - "greens" - "griddle" - "grilling" - "grinding" - "ground-beef" - "gumbo" - "haddock" - "ham" - "hamburgers" - "hand-blender" - "hard-boiled-eggs" - "heat" - "herbs" - "high-altitude" - "history" - "hollandaise" - "hominy" - "honey" - "honeycomb" - "hot" - "hot-dog" - "hot-sauce" - "hummus" - "hungarian-cuisine" - "ice-cream" - "icing" - "indian-cuisine" - "indonesian-cuisine" - "induction" - "infusion" - "ingredient-selection" - "italian-cuisine" - "jalapeno" - "jam" - "japanese-cuisine" - "jelly" - "jerk" - "jerky" - "jewish-cuisine" - "juice" - "juicing" - "kale" - "kangaroo" - "kebab" - "kefir" - "ketchup" - "kettle" - "ketupat" - "kimchi" - "kitchen" - "kiwifruit" - "kneading" - "knife-safety" - "knife-skills" - "knives" - "kofta" - "kohlrabi" - "kombucha" - "korean-cuisine" - "kosher" - "kosher-salt" - "lamb" - "language" - "lasagna" - "learning" - "leavening" - "leeks" - "leg-of-ham" - "legumes" - "lemon" - "lemon-juice" - "lemonade" - "lentils" - "lettuce" - "lime" - "liqueur" - "liver" - "lobster" - "local" - "low-carb" - "low-fat" - "macaron" - "maillard" - "maintenance" - "malt" - "mango" - "maple-syrup" - "margarine" - "marinade" - "marrow" - "marshmallow" - "masa" - "mascarpone" - "mash" - "mass-cooking" - "mate" - "mayonnaise" - "measurements" - "measuring-scales" - "meat" - "meatballs" - "meatloaf" - "melon" - "melting" - "melting-chocolate" - "melting-sugar" - "menu-planning" - "meringue" - "mexican-cuisine" - "microwave" - "middle-eastern-cuisine" - "milk" - "milling" - "minestrone" - "mint" - "mistakes" - "mixing" - "moisture" - "mold" - "molecular-gastronomy" - "mortar" - "mousse" - "mozzarella" - "msg" - "muffins" - "mushrooms" - "mussels" - "mustard" - "mutton" - "neopolitan-pizza" - "non-stick" - "noodles" - "nut-butters" - "nutrient-composition" - "nuts" - "oats" - "offal" - "oil" - "okra" - "olive" - "olive-oil" - "omelette" - "onions" - "oranges" - "oregano" - "organic" - "organization" - "outdoor-cooking" - "oven" - "oxtail" - "packaging" - "paella" - "pairing" - "pan" - "pancake" - "pancakes" - "pancetta" - "paneer" - "pantry" - "parboiling" - "parchment" - "parmesan" - "parsley" - "parsnip" - "passover" - "pasta" - "pasteurization" - "pastry" - "pate" - "peaches" - "peanuts" - "pectin" - "peel" - "peeling" - "pepper" - "peppercorns" - "peppers" - "pestle" - "pickling" - "pie" - "pineapple" - "pita" - "pizza" - "pizza-stone" - "plating" - "please-remove-this-tag" - "plums" - "poaching" - "polenta" - "polish-cuisine" - "pomegranate" - "pop-rocks" - "popcorn" - "pork" - "pork-belly" - "pork-chops" - "pork-shoulder" - "pot" - "pot-pie" - "pot-roast" - "potatoes" - "poultry" - "prawns" - "preparation" - "presentation" - "pressure-canner" - "pressure-cooker" - "pretzels" - "produce" - "professional" - "proofing" - "propane-grill" - "pudding" - "puff-pastry" - "pulses" - "pumpkin" - "puree" - "quiche" - "quickbread" - "quinoa" - "rabbit" - "ramen" - "raspberries" - "ratio" - "ravioli" - "raw" - "raw-meat" - "recipe-scaling" - "recommendation" - "reduction" - "refrigerator" - "reheating" - "resources" - "restaurant" - "restaurant-mimicry" - "rhubarb" - "ribs" - "rice" - "rice-cooker" - "ripe" - "rising" - "risotto" - "roast" - "roast-beef" - "roasting" - "rolling" - "romanian-cuisine" - "root" - "roux" - "rum" - "russian-cuisine" - "rye" - "safety" - "saffron" - "salad" - "salad-dressing" - "salami" - "salmon" - "salmonella" - "salsa" - "salt" - "sandwich" - "sardines" - "sashimi" - "sauce" - "sauerkraut" - "sausages" - "sauteing" - "scallops" - "scottish-cuisine" - "scrambled-eggs" - "seafood" - "seasonal" - "seasoning" - "seasoning-pans" - "seeds" - "seitan" - "semifreddo" - "serbian-cuisine" - "serving" - "serving-suggestion" - "shallots" - "sharpening" - "shellfish" - "shopping" - "shortcuts" - "shortening" - "shrimp" - "sifting" - "silver" - "skewers" - "skillet" - "skin" - "slow-cooking" - "smell" - "smoke-flavor" - "smoking" - "smoothie" - "snacks" - "snail" - "soaking" - "soda" - "sodium" - "software" - "sorbet" - "souffle" - "soup" - "sour-cream" - "sourdough" - "sourdough-starter" - "sous-vide" - "soy" - "soymilk" - "spaghetti" - "spanish-cuisine" - "spherification" - "spices" - "spicy-hot" - "spinach" - "spit-roast" - "spoilage" - "sponge-cake" - "sprinkles" - "sprouting" - "squash" - "stainless-steel" - "stand-mixer" - "standards" - "starch" - "starter" - "steak" - "steaming" - "stews" - "sticky-rice" - "stir-fry" - "stock" - "stoneware" - "storage" - "storage-lifetime" - "storage-method" - "stove" - "straining" - "strawberries" - "stuffing" - "substitutions" - "sugar" - "sugar-free" - "sushi" - "sweet-potato" - "syrup" - "taffy" - "tahini" - "tamarind" - "tart" - "tartare" - "tasting" - "tea" - "teflon" - "temperature" - "tempering" - "tenderizing" - "texture" - "thai" - "thai-cuisine" - "thanksgiving" - "thawing" - "thermometer" - "thickening" - "tilapia" - "timing" - "toaster" - "toasting" - "toffee" - "tofu" - "tomatoes" - "tortilla" - "tortilla-chips" - "tortilla-press" - "traditional" - "truffles" - "tumeric" - "tuna" - "turkey" - "turkish-cuisine" - "tzatziki" - "uht" - "uk" - "untagged" - "utensils" - "vacuum" - "vanilla" - "veal" - "vegan" - "vegetables" - "vegetarian" - "venison" - "vietnamese-cuisine" - "vinegar" - "vital-wheat-gluten" - "vitamins" - "vodka" - "waffle" - "wasabi" - "washing" - "water" - "watermelon" - "websites" - "wheat" - "whipped-cream" - "whipper" - "whiskey" - "white-pepper" - "wine" - "wok" - "wood" - "wrapper" - "yeast" - "yiest" - "yogurt" - "yolk" - "yorkshire-puddings" - "zucchini") diff --git a/data/tags/craftcms.el b/data/tags/craftcms.el deleted file mode 100644 index e7793d0..0000000 --- a/data/tags/craftcms.el +++ /dev/null @@ -1,292 +0,0 @@ -("404" - "404-page" - "activation" - "admin" - "ajax" - "analytics" - "apache" - "archives" - "array" - "assetfilemodel" - "assets" - "attachment" - "attribute" - "authentication" - "author" - "auto-generate" - "auto-updates" - "baseelementmodel" - "beer" - "best-practice" - "block-types" - "blocks" - "booking" - "bootstrap-craft" - "cache" - "caching" - "calendar" - "categories" - "category" - "channels" - "children" - "cloudflare" - "cms" - "comments" - "composer" - "concatenation" - "conditional" - "config" - "configuration" - "constants" - "content" - "contentmodel" - "control-panel" - "controller" - "conversion" - "cookies" - "cp-dashboard" - "cptrigger" - "craft" - "csrf" - "css" - "current-user" - "custom" - "custom-field" - "custom-fieldtype" - "custom-statuses" - "dashboard" - "dashboard-widgets" - "database" - "date" - "datetime" - "debugging" - "decimal" - "defined" - "deletion" - "deployment" - "devmode" - "difference" - "docker" - "documentation" - "draft" - "drop-down" - "ecommerce" - "editor" - "elementcriteriamodel" - "elementtype" - "emails" - "entires" - "entities" - "entries" - "entries-field" - "entry" - "entry-type" - "entrymodel" - "environments" - "error" - "error-message" - "error-templates" - "escaping" - "events" - "expiration" - "extends" - "fastcgi" - "feature-request" - "feed" - "field" - "field-layout-designer" - "fieldtypes" - "filecache" - "filesystem" - "filter" - "forloop" - "form" - "format" - "frontend" - "function" - "gallery" - "garnish" - "getsegment" - "getsources" - "git" - "globals" - "group" - "guest" - "guest-entries" - "hash" - "haystack" - "hhvm" - "hiding" - "hook" - "htaccess" - "https" - "image" - "image-transforms" - "import" - "include" - "index" - "input" - "install" - "installation" - "ip-address" - "javascript" - "join" - "jquery" - "json" - "keyboard-shortcuts" - "language" - "learning-craft" - "license" - "lightswitch" - "limit" - "linebreak" - "live" - "live-preview" - "localization" - "logic" - "login" - "logs" - "loop" - "macro" - "mamp" - "manual-updates" - "markdown" - "masked" - "matrix" - "mcrypt" - "member" - "merge" - "micropub" - "migration" - "modal" - "models" - "multi-domain" - "multi-environment" - "navigation" - "nested-set" - "new" - "newrelic" - "nginx" - "null" - "number" - "order" - "ordering" - "osx" - "owner.slug" - "pagination" - "params" - "password" - "pdf" - "pending" - "performance" - "permissions" - "php" - "phpstorm" - "phpunit" - "plugin-charge" - "plugin-contactform" - "plugin-development" - "plugin-duktvideos" - "plugin-icons" - "plugin-import" - "plugin-mailer" - "plugin-oauth" - "plugin-redactorclips" - "plugin-redactorstyles" - "plugin-smartmap" - "plugin-sproutforms" - "plugin-storehours" - "plugin-territories" - "plugins" - "post" - "postdate" - "preview" - "previous-next" - "queries" - "railgun" - "random" - "range" - "records" - "redactor" - "redirect" - "redirection" - "redis" - "reference-tags" - "regex" - "registration" - "reindex" - "relations" - "relic" - "replace" - "request" - "required" - "requirements" - "reroute" - "reservation" - "responsive-images" - "richtext" - "routes" - "routing" - "rss" - "s3" - "saving" - "scope" - "scrolling" - "search" - "sections" - "secure" - "security" - "segments" - "seo" - "server" - "services" - "session" - "set" - "setup" - "singles" - "sitename" - "siteurl" - "slug" - "sorting" - "sources" - "sprites" - "stage" - "standards" - "status" - "statuses" - "sticky" - "string" - "structure" - "subdomain" - "sync" - "table-field" - "tabs" - "tags" - "tasks" - "template" - "templating" - "theme" - "timezone" - "titles" - "token" - "transforms" - "troubleshooting" - "unit-testing" - "untagged" - "updates" - "updating" - "upgrades" - "upload" - "uppercase" - "url" - "user-groups" - "user-interface" - "user-profile" - "usermodel" - "users" - "validation" - "variable" - "variable-type" - "varnish" - "whitespace" - "workflow") diff --git a/data/tags/crypto.el b/data/tags/crypto.el deleted file mode 100644 index 8dfa64e..0000000 --- a/data/tags/crypto.el +++ /dev/null @@ -1,351 +0,0 @@ -("2nd-preimage-resistance" - "3des" - "access-control" - "accumulators" - "acoustic-cryptanalysis" - "adversarial-model" - "aes" - "algebraic-attack" - "algorithm-design" - "alternating-step" - "anonymity" - "arithmetic" - "arx" - "asn.1" - "attack" - "attribute-based-encry" - "authenticated-encryption" - "authentication" - "avalanche" - "backdoors" - "bcrypt" - "biclique-attack" - "bijection" - "birthday-attack" - "bitcoin" - "bitlocker" - "blind-signature" - "block-cipher" - "blocksize" - "blowfish" - "blum-blum-shub" - "broadcast-encryption" - "brute-force-attack" - "camellia" - "cbc" - "cbc-mac" - "ccm" - "certificateless-crypto" - "certificates" - "cfb" - "challenge-response" - "chosen-ciphertext-attack" - "chosen-plaintext-attack" - "cipher" - "ciphertext-only-attack" - "classical-cipher" - "cmac" - "coding-theory" - "collision-resistance" - "commitments" - "commutative-encryption" - "complexity" - "compression" - "congruence" - "constants" - "convergent-encryption" - "copy-protection" - "cpu" - "cramer-shoup" - "crc" - "crl" - "cryptanalysis" - "cryptdb" - "cryptoapi" - "cryptographic-hardware" - "csprng" - "ctr" - "data-privacy" - "database" - "decryption-oracle" - "deniable-encryption" - "des" - "desx" - "deterministic-encryption" - "dictionary-attack" - "differential-analysis" - "diffie-hellman" - "digital-cash" - "discrete-logarithm" - "disk-encryption" - "distinguisher" - "distinguishing-attack" - "distributed-decryption" - "dpa" - "dsa" - "dual-ec-drgb" - "eax" - "ecb" - "ecdsa" - "ecies" - "ed25519" - "education" - "elephant-diffuser" - "elgamal-encryption" - "elgamal-signature" - "elliptic-curves" - "embedded" - "encoding" - "encryption" - "enigma" - "entropy" - "ephemeral" - "error-propagation" - "factorization" - "falsifiable-assumption" - "feal" - "feistel-network" - "fiat-shamir" - "file-encryption" - "file-format" - "finite-field" - "fips-140" - "forgery" - "format-preserving" - "fortuna" - "forward-secrecy" - "frequency-analysis" - "function-evaluation" - "functional-encryption" - "gcm" - "group-theory" - "hamming" - "hash" - "hash-signature" - "hash-tree" - "hashed-elgamal" - "hermitian-curves" - "hill-cipher" - "historic" - "history" - "hkdf" - "hmac" - "homomorphic-encryption" - "homomorphic-signatures" - "host-proof" - "hotp" - "hybrid" - "idea" - "identity-based-encryption" - "implementation" - "ind-cca" - "index-of-coincidence" - "information-theory" - "initialization-vector" - "integrity" - "ipsec" - "java" - "javascript" - "kbkdf" - "kdf" - "keccak" - "key-check-value" - "key-derivation" - "key-distribution" - "key-escrow" - "key-exchange" - "key-generation" - "key-recovery" - "key-reuse" - "key-rotation" - "key-schedule" - "key-size" - "key-wrap" - "keys" - "knapsack" - "known-plaintext-attack" - "lattice-crypto" - "length-extension" - "lfsr" - "license-key" - "lightweight" - "linear-cryptanalysis" - "literature" - "luby-rackoff" - "lucas" - "mac" - "malleability" - "man-in-the-middle" - "mars" - "matrix-multiplication" - "mceliece" - "md2" - "md4" - "md5" - "meet-in-the-middle-attack" - "memory-hard" - "mental-poker" - "merkle-damgaard" - "miracl" - "mixing-function" - "mixnets" - "miyaguchi-preneel" - "modes-of-operation" - "modular-arithmetic" - "monotone-access-structure" - "montgomery" - "multi-prime-rsa" - "multiparty-computation" - "multiple-encryption" - "needham-schroeder" - "negligible" - "niederreiter" - "nist" - "non-repudiation" - "nonce" - "notation" - "nsa" - "ntru" - "number-theory" - "oaep" - "oblivious-ram" - "oblivious-transfer" - "ocb" - "ofb" - "one-time-pad" - "one-time-password" - "one-way-function" - "onion-routing" - "openssl" - "order-preserving" - "padding" - "padding-oracle" - "paillier" - "pairings" - "password-based-encryption" - "passwords" - "pbkdf" - "pbkdf-2" - "pen-and-paper" - "perfect-secrecy" - "performance" - "permutation" - "pgp" - "pir" - "pkcs11" - "pkcs8" - "pki" - "plausible-deniability" - "playfair" - "pohlig-hellman" - "poly1305" - "post-quantum-cryptography" - "predicate-encryption" - "preimage-resistance" - "prg" - "prime-numbers" - "private-set-intersection" - "proof-of-work" - "protocol-analysis" - "protocol-design" - "provable-security" - "proxy-re-encryption" - "pseudo-random-function" - "pseudo-random-generator" - "pseudo-random-permutation" - "public-key" - "quadratic-residuosity" - "quantum-cryptography" - "rabin-cryptosystem" - "rainbow-table" - "random-number-generator" - "random-oracle-model" - "randomness" - "rc2" - "rc4" - "rc6" - "reference-request" - "remote-data-checking" - "replay-attack" - "resources" - "rijndael" - "ripemd" - "rsa" - "rsap" - "s-boxes" - "s-mime" - "safe-prime" - "salsa20" - "salt" - "schnorr-identification" - "schnorr-signature" - "scrypt" - "searchable-encryption" - "secret-sharing" - "secure-channel" - "secure-index" - "secure-storage" - "security-definition" - "semantic-security" - "serpent" - "sha-1" - "sha-2" - "sha-256" - "sha-3" - "sha-3-competition" - "sha-512" - "shamir-secret-sharing" - "side-channel-attacks" - "signature" - "simon" - "siv" - "skein" - "skipjack" - "smartcard" - "software-obfuscation" - "speck" - "sponge" - "sponge-function" - "srp" - "srp-6" - "ssh" - "ssl" - "sstp" - "standards" - "statistical-test" - "steganography" - "stream-cipher" - "substitution-cipher" - "symmetric" - "tea" - "terminology" - "test-vectors" - "theory" - "three-pass-protocol" - "threefish" - "threshold-cryptography" - "timed-release" - "timestamping" - "timing-attacks" - "tokenization" - "traffic-analysis" - "traitor-tracing" - "transposition-cipher" - "trapdoor" - "truecrypt" - "tweakable-cipher" - "twofish" - "u-prove" - "universal-composability" - "universal-hash" - "untagged" - "verifiability" - "vigenere" - "voip" - "voting" - "white-box" - "wpa2-psk" - "xml-encryption" - "xor" - "xts" - "zero-knowledge-proofs") diff --git a/data/tags/cs.el b/data/tags/cs.el deleted file mode 100644 index f655e5d..0000000 --- a/data/tags/cs.el +++ /dev/null @@ -1,457 +0,0 @@ -("3-sat" - "abstract-data-types" - "access-control" - "adjacency-matrix" - "agent-based-computing" - "algorithm-analysis" - "algorithm-design" - "algorithms" - "ambiguity" - "amortized-analysis" - "answer-set-programming" - "api-design" - "applied-theory" - "approximation" - "approximation-algorithms" - "arithmetic" - "arrays" - "artificial-intelligence" - "assembly" - "assignment-problem" - "asymptotics" - "authentication" - "automata" - "automated-theorem-proving" - "average-case" - "backtracking" - "balanced-search-trees" - "balls-and-bins" - "base-conversion" - "bayesian-statistics" - "bcnf" - "bdd" - "benchmarking" - "big-data" - "binary-arithmetic" - "binary-search" - "binary-trees" - "bioinformatics" - "bipartite-matching" - "bloom-filters" - "board-games" - "boltzmann-machine" - "books" - "boolean-algebra" - "bpp" - "branch-and-bound" - "buchi-automata" - "busy-beaver" - "c" - "c++" - "cache-oblivious" - "category-theory" - "ccs" - "cellular-automata" - "check-my-algorithm" - "check-my-answer" - "check-my-proof" - "chernoff-bounds" - "church-numerals" - "church-turing-thesis" - "circuits" - "classification" - "clique" - "clocks" - "closure-properties" - "cluster" - "co-np" - "code-generation" - "coding-theory" - "colorings" - "combinatorics" - "combinatory-logic" - "communication-complexity" - "communication-protocols" - "comparison" - "compilers" - "complexity" - "complexity-classes" - "complexity-theory" - "computability" - "computable-analysis" - "computation-models" - "computational-geometry" - "computational-linguistics" - "computer-algebra" - "computer-architecture" - "computer-games" - "computer-networks" - "computer-vision" - "computer-vs-human" - "concurrency" - "consensus" - "constant-time" - "constraint-programming" - "constructors" - "context-free" - "context-sensitive" - "continuations" - "coq" - "correctness-proof" - "counting" - "cpu-cache" - "cpu-pipelines" - "crossing-number" - "cryptography" - "curry-howard" - "dag" - "data-compression" - "data-mining" - "data-sets" - "data-structures" - "database-theory" - "databases" - "deadlocks" - "decision-problem" - "decomposition" - "denotational-semantics" - "dependent-types" - "descriptive-complexity" - "dictionaries" - "didactics" - "digital-circuits" - "digital-preservation" - "discrete-mathematics" - "distributed-systems" - "divide-and-conquer" - "duality" - "dynamic-programming" - "edit-distance" - "education" - "efficiency" - "embedding" - "empirical-research" - "encoding-scheme" - "encryption" - "entropy" - "enumeration" - "epistemology" - "equality" - "error-correcting-codes" - "error-estimation" - "euclidean-distance" - "eulerian-paths" - "evolutionary-computing" - "expanders" - "facial-recognition" - "factorial" - "factoring" - "fault-tolerance" - "features" - "filesystems" - "finite-automata" - "finite-model-theory" - "finite-sets" - "first-order-logic" - "floating-point" - "formal-grammars" - "formal-languages" - "formal-methods" - "formal-systems" - "fourier-transform" - "functional-programming" - "game-semantics" - "game-theory" - "genetic-algorithms" - "graph-algorithms" - "graph-isomorphism" - "graph-theory" - "graph-traversal" - "graphics" - "graphs" - "greedy-algorithms" - "group-theory" - "halting-problem" - "hamiltonian-path" - "hash" - "hash-tables" - "hci" - "heaps" - "heuristics" - "hidden-markov-models" - "higher-order-logic" - "history" - "hoare-logic" - "homotopy-type-theory" - "human-computing" - "image-processing" - "imperative-programming" - "in-place" - "incompleteness" - "induction" - "inductive-datatypes" - "information-retrieval" - "information-theory" - "integer-programming" - "integers" - "integrity" - "interactive-proof-systems" - "interpreters" - "intervals" - "intuition" - "java" - "k-map" - "kernel-functions" - "knapsack-problems" - "knowledge-representation" - "knuth" - "kolmogorov-complexity" - "lambda-calculus" - "landau-notation" - "language-design" - "lattices" - "learning-theory" - "left-recursion" - "lempel-ziv" - "linear-algebra" - "linear-bounded-automata" - "linear-programming" - "linear-temporal-logic" - "linked-lists" - "lisp" - "lists" - "logic" - "logic-programming" - "logical-validity" - "longest-common-substring" - "loop-invariants" - "loops" - "lower-bounds" - "machine-code" - "machine-learning" - "machine-models" - "markov-chains" - "master-theorem" - "matching" - "mathematical-analysis" - "mathematical-foundations" - "mathematical-programming" - "mathematical-software" - "matrices" - "max-cut" - "maximum-subarray" - "memoization" - "memory-access" - "memory-allocation" - "memory-hardware" - "memory-management" - "message-passing" - "modal-logic" - "model-checking" - "modelling" - "modular-arithmetic" - "monads" - "monte-carlo" - "mu-calculus" - "multi-tasking" - "multiplication" - "mutual-exclusion" - "natural-lang-processing" - "nearest-neighbour" - "network-analysis" - "network-flow" - "network-topology" - "neural-computing" - "neural-networks" - "nondeterminism" - "normal-forms" - "notation" - "np" - "np-complete" - "np-hard" - "number-formats" - "number-theory" - "numeral-representations" - "numerical-algorithms" - "numerical-analysis" - "object-oriented" - "ocr" - "one-way-functions" - "online-algorithms" - "ontologies" - "operating-systems" - "operational-semantics" - "optimization" - "oracle-machines" - "order-theory" - "os-kernel" - "overloading" - "p-vs-np" - "packing" - "paging" - "parallel-computing" - "parameterized-complexity" - "parsers" - "parsing" - "partial-order" - "partition" - "partition-problem" - "partitions" - "pattern-recognition" - "peer-to-peer" - "performance" - "permutations" - "persistent-data-structure" - "petri-nets" - "philosophy" - "pi-calculus" - "planning" - "polynomial-time" - "polynomials" - "power-consumption" - "precedence-graph" - "primes" - "priority-queues" - "probabilistic-algorithms" - "probability-theory" - "process-algebras" - "process-scheduling" - "program-correctness" - "program-optimization" - "program-verification" - "programming-languages" - "programming-paradigms" - "prolog" - "proof-assistants" - "proof-of-work" - "proof-techniques" - "propositional-logic" - "protocols" - "pseudo-polynomial" - "pseudo-random-generators" - "pumping-lemma" - "pushdown-automata" - "quantum-computing" - "quicksort" - "radix-sort" - "random" - "random-graphs" - "random-number-generator" - "random-walks" - "randomized-algorithms" - "randomness" - "ranking" - "real-numbers" - "real-time" - "reasoning" - "recommendation-systems" - "recurrence-relation" - "recursion" - "recursion-theory" - "reductions" - "reference-question" - "reference-request" - "reflection" - "regular-expressions" - "regular-langauges" - "regular-languages" - "reinforcement-learning" - "relational-algebra" - "relativization" - "reliability" - "research" - "resource-allocation" - "reversible-computing" - "rice" - "robotics" - "rolling-hash" - "rounding" - "routing" - "rsa-protocol" - "runtime-analysis" - "sampling" - "sat" - "sat-solvers" - "satisfiability" - "scheduling" - "search-algorithms" - "search-problem" - "search-trees" - "searching" - "security" - "selection-problem" - "self-reference" - "semantic-networks" - "semantics" - "semi-decidability" - "sequential-circuit" - "set-cover" - "sets" - "shared-memory" - "shift-register" - "shortest-path" - "signal-processing" - "simulation" - "small-step" - "smt-solvers" - "social-networks" - "software-engineering" - "software-testing" - "software-verification" - "sorting" - "space-analysis" - "space-complexity" - "spanning-trees" - "speech-recognition" - "splay-trees" - "square-grid" - "stack" - "stack-inspection" - "statistics" - "storage" - "streaming-algorithm" - "string-metrics" - "strings" - "structured-data" - "subsequences" - "substrings" - "sudoku" - "suffix-array" - "svm" - "symbolic-computation" - "synchronization" - "syntax" - "syntax-trees" - "tape-complexity" - "temporal-logic" - "term-rewriting" - "termination" - "terminology" - "testing" - "threads" - "tiling" - "time-complexity" - "topology" - "transitivity" - "traveling-salesman" - "tree-grammars" - "trees" - "turing-completeness" - "turing-machines" - "turing-test" - "type-checking" - "type-inference" - "type-theory" - "typing" - "uncountability" - "undecidability" - "unification" - "user-interface" - "variable-binding" - "vc-dimension" - "video" - "virtual-memory" - "voting" - "weighted-graphs" - "word-combinatorics" - "xor") diff --git a/data/tags/cs50.el b/data/tags/cs50.el deleted file mode 100644 index 381e25d..0000000 --- a/data/tags/cs50.el +++ /dev/null @@ -1,467 +0,0 @@ -("2014" - "2015" - "academichonesty" - "adaptive" - "ajax-0.html" - "algorithm" - "allocation" - "android" - "angle" - "annoucements" - "ap" - "appliance" - "apps" - "argc" - "argv" - "array" - "assembling" - "atomocity" - "auto" - "automatic" - "ball" - "best-approach" - "bftype" - "binary" - "binary-code" - "binarysearch" - "blank" - "bmp" - "bootstrap" - "bottom" - "bouncing" - "brackets" - "breakout" - "bruteforce" - "buffer" - "bug" - "buggy" - "buy" - "buy.php" - "bytecode" - "bytes" - "c" - "c++" - "caesar" - "capitalize" - "cash" - "casting" - "ceasar" - "certificate" - "change-password" - "char" - "chart" - "chat" - "check" - "check50" - "checking" - "chrome" - "chromebook" - "clang" - "class" - "clones" - "collision-detection" - "color" - "command" - "command-line-arguments" - "compare" - "compilation-error" - "compile" - "compiler" - "compiling" - "complexity" - "connect50" - "const" - "constants" - "contest" - "controller" - "conversion" - "copy" - "copyfile" - "costumes" - "count.c" - "counting" - "course-info" - "course-materials" - "courseware" - "crack" - "credit" - "criptography" - "crypt" - "cryptography" - "cs50-appliance" - "cs50-discuss" - "cs50-finance" - "cs50-forms" - "cs50-library" - "cs50-live" - "cs50-shuttle" - "cs50.h" - "cs50submit" - "cs50x" - "csi" - "css" - "custom.conf" - "cypher" - "database" - "datatype" - "deadline" - "debug" - "debugger" - "decimal" - "declaration" - "define" - "dictionary" - "directions" - "disability" - "distinction" - "do" - "doesnotwork" - "dowhile" - "download" - "drand48" - "draw" - "driving" - "dropbox" - "dropdown" - "dropoff" - "earth" - "edit" - "edx" - "effective" - "email" - "encryption" - "eof" - "error" - "error-handling" - "expected-output" - "explorer" - "extra-feature" - "extract" - "failed" - "fclose" - "fgetc" - "fifteen" - "file" - "fileio" - "final" - "finalproject" - "finance" - "find" - "find.c" - "firefox" - "float" - "fopen" - "for-loop" - "form-data" - "fputc" - "fread" - "free" - "freed" - "fscanf" - "fseek" - "fullscreen" - "function" - "functions.php" - "fwrite" - "game-of-fifteen" - "garbage" - "gdb" - "gedit" - "general" - "get" - "getint" - "getstring" - "gevents.h" - "global" - "google-earth" - "gradebook" - "graded" - "grading" - "graph" - "greedy" - "greedy.c" - "gwindow" - "hack" - "hacker" - "hacker1" - "hacker2" - "hacker3" - "hacker5" - "hail" - "hardware-virtualization" - "harvard-extension-school" - "hash-function" - "hash-table" - "haystack" - "headers" - "heap" - "hello" - "hello.c" - "helper.c" - "helpers" - "helpers.c" - "hexadecimal" - "hosting" - "hosts-file" - "houses.js" - "html" - "hyperlinks" - "increment-operator" - "init" - "initbricks" - "injection" - "install" - "installation" - "int" - "internet" - "is-word" - "iso" - "ispunct" - "january" - "java" - "javascript" - "joke" - "jpg" - "jquery" - "key" - "keyboard-layout" - "keyword" - "konami" - "label" - "latest" - "lectures" - "libraries" - "library" - "license" - "linearsearch" - "linked" - "linked-list" - "linked.c" - "linker" - "linking" - "linux" - "list" - "lives" - "load" - "local-variable" - "logging" - "lookup" - "loop" - "ls" - "mac" - "machine" - "machine-code" - "macro" - "main" - "make" - "makefile" - "malloc" - "mario" - "mario.c" - "max" - "memory" - "memory-leak" - "message" - "missing" - "mistake" - "modf" - "modulo" - "mongodb" - "move" - "mvc" - "mysql" - "needle" - "negative" - "nested-loops" - "node" - "nomove" - "notation" - "notepad" - "number" - "object" - "off-by-one" - "onlinehosting" - "open" - "osx" - "outfile" - "pack" - "padding" - "paddle" - "parse" - "passengers.js" - "passing" - "password" - "permission" - "php" - "phpmailer" - "phpmyadmin" - "pickup" - "pipes" - "placemark" - "plugin" - "pointers" - "portfolio" - "portfolio.php" - "possessives" - "post" - "power" - "pre-processor" - "printf" - "problem" - "project" - "proxy" - "pset" - "pset0" - "pset1" - "pset100" - "pset2" - "pset3" - "pset4" - "pset5" - "pset6" - "pset7" - "pset8" - "pseudocode" - "query" - "question" - "quizz" - "quote.csv" - "quote.php" - "rand" - "random" - "random-access" - "realloc" - "recommended-readings" - "recover" - "recover.c" - "recursion" - "register" - "removals" - "render" - "resize" - "resize.c" - "resubmission" - "retaking" - "rot16" - "rot26" - "round" - "salt" - "scanf" - "scartch" - "scope" - "scratch" - "search" - "section7" - "sections" - "segfault" - "segmentation-fault" - "selection" - "sell" - "sell.php" - "seminars" - "sensing" - "setup" - "shorts" - "shuttle" - "size" - "sizeof" - "solution" - "sort" - "sorting" - "sound" - "sounddriver" - "spaces" - "speed" - "speller" - "spl" - "sprintf" - "sprite" - "sql" - "srand48" - "stack" - "staff" - "static" - "status-code-400" - "stdio" - "strcmp" - "string" - "strlen" - "structs" - "studio" - "style" - "style50" - "submissions" - "submit" - "substrings" - "sudo" - "swap" - "swapping" - "table" - "teamviewer" - "template" - "terminal" - "tile" - "timestamp" - "todo" - "torrent" - "transcript" - "trie" - "typedef" - "typing" - "ubuntu" - "unable" - "undefined" - "undefinedreference" - "unistd.h" - "unload" - "unsigned-char" - "untagged" - "update50" - "upload" - "valgrind" - "validator" - "values" - "variables" - "vertical-resizing" - "vhost" - "videos" - "view-source" - "vigenere" - "vim" - "vinenere" - "virtual" - "virtual-machine" - "virtualbox" - "visual" - "visual-studio" - "vm" - "vmware" - "vmware-fusion" - "vmware-player" - "void" - "walkthroughs" - "web" - "web-hosting" - "webpage" - "week0" - "week1" - "week11" - "week12" - "week2" - "week4" - "week5" - "week6" - "week7" - "week8" - "week9" - "wget" - "while" - "while-loop" - "whodunit" - "windows" - "won" - "word" - "yellow" - "yosemite" - "zamyla" - "zip") diff --git a/data/tags/cstheory.el b/data/tags/cstheory.el deleted file mode 100644 index 23254a4..0000000 --- a/data/tags/cstheory.el +++ /dev/null @@ -1,472 +0,0 @@ -("3sum" - "ac0" - "adaptive" - "advice-and-nonuniformity" - "advice-request" - "ag.algebraic-geometry" - "agda" - "ai.artificial-intel" - "algebra" - "algebraic-complexity" - "algebraic-topology" - "algorithmic-lens" - "alternating-hierarchy" - "amortized-analysis" - "analysis-of-algorithms" - "application-of-theory" - "applicative" - "approximation" - "approximation-algorithms" - "approximation-hardness" - "apx" - "ar.hardware-architecture" - "arithmetic-circuits" - "asymptotics" - "authorship" - "automata-theory" - "automated-theorem-proving" - "automorphism" - "availability" - "average-case-complexity" - "barriers" - "bibliography" - "biclique-cover" - "big-list" - "big-picture" - "binary-decision-diagrams" - "binary-space-partitions" - "binary-trees" - "bioinformatics" - "bipartite-graphs" - "black-box" - "board-games" - "books" - "boolean-formulas" - "boolean-functions" - "boolean-matrix" - "bounded-degree" - "bounded-depth" - "bounds" - "bss" - "cache-oblivious" - "calculus-of-constructions" - "card-games" - "career" - "cc-complexity-theory" - "cc.complexity-theory" - "ce.computational-finance" - "cellular-automata" - "cg.comp-geom" - "chernoff-bound" - "church-turing-thesis" - "circuit-complexity" - "circuit-depth" - "circuit-families" - "circuits" - "citations" - "clique" - "cliquewidth" - "clustering" - "co.combinatorics" - "coding-theory" - "cograph" - "combinatorial-game-theory" - "combinatorics" - "combinatory-logic" - "communication-complexity" - "comonad" - "comp-number-theory" - "compilers" - "complexity-assumptions" - "complexity-classes" - "compressed-sensing" - "computability" - "computable-analysis" - "computational-geometry" - "computing-over-reals" - "concurrency" - "conditional-results" - "conferences" - "constructive-mathematics" - "context-free" - "context-free-languages" - "continuations" - "convex-geometry" - "convex-hull" - "convex-optimization" - "convolution" - "cook-levin" - "coq" - "correctness" - "counter-automata" - "counting-complexity" - "covering-problems" - "cps-transforms" - "cr.crypto-security" - "cryptographic-attack" - "csp" - "ct.category-theory" - "curry-howard" - "cv.computer-vision" - "data-mining" - "data-sets" - "data-streams" - "db.databases" - "dc.distributed-comp" - "dc.parallel-comp" - "decidability" - "decision-trees" - "definitions" - "delaunay-triangulation" - "denotational-semantics" - "dependent-type" - "derandomization" - "descriptive-complexity" - "determinant" - "dfa" - "directed-acyclic-graph" - "disjoint-paths" - "domain-theory" - "ds.algorithms" - "ds.data-structures" - "dynamic-algorithms" - "dynamic-programming" - "edit-distance" - "embeddings" - "encoding" - "epsilon-nets" - "equivalence" - "evolutionary-game-theory" - "exact-cover" - "examples" - "exp-time-algorithms" - "expanders" - "experimental" - "exploration-exploitation" - "expspace" - "extensionality" - "extractors" - "extremal-combinatorics" - "factoring" - "fault-tolerance" - "feasible-interpolation" - "fft" - "finite" - "finite-model-theory" - "fixed-parameter-tractable" - "fl.formal-languages" - "flow-problems" - "formal-methods" - "formal-modeling" - "formal-systems" - "formulas" - "fourier-analysis" - "fractals" - "function" - "functional-programming" - "gate-elimination" - "gct" - "generalizations" - "genetic-algorithms" - "genetic-programming" - "gr.group-theory" - "grammars" - "graph-algorithms" - "graph-classes" - "graph-colouring" - "graph-drawing" - "graph-isomorphism" - "graph-minor" - "graph-theory" - "greedy-algorithms" - "gt.game-theory" - "halting-problem" - "halting-time" - "hamiltonian-paths" - "hard-instances" - "hash-function" - "haskell" - "heuristics" - "hierarchy-theorems" - "high-dimensional-geometry" - "hindley-milner" - "ho.history-overview" - "homomorphic-encryption" - "homomorphism" - "homotopy-type-theory" - "hybrid-logic" - "hypercomputation" - "hypergraphs" - "hypersequents" - "image-processing" - "imperative-programming" - "implementation" - "independence" - "index" - "integer-lattice" - "integer-programming" - "integrality-gap" - "interactive-proofs" - "interval-graphs" - "intuition" - "ir.information-retrieval" - "it.information-theory" - "iterated-rounding" - "journals" - "kernels" - "key-exchange" - "knowledge-representation" - "kolmogorov-complexity" - "lambda-calculus" - "language-design" - "lattice" - "lg.learning" - "limited-independence" - "linear" - "linear-algebra" - "linear-equations" - "linear-logic" - "linear-programming" - "linear-temporal-logic" - "lisp" - "lo.logic" - "logic-programming" - "logical-relations" - "logspace" - "lower-bounds" - "machine-learning" - "machine-models" - "mandelbrot" - "markov-chains" - "matching" - "matrices" - "matrix-product" - "max-cut" - "max-flow" - "max-flow-min-cut" - "max2sat" - "measure-theory" - "mechanism-design" - "median" - "merge" - "metric-spaces" - "metrics" - "minimization" - "minsky-machine" - "modal-logic" - "model-checking" - "model-theory" - "monad" - "monoid" - "monotone" - "monte-carlo" - "motion-planning" - "mu-calculus" - "multicommodity-flow" - "na.numerical-analysis" - "nash-equilibrium" - "natural" - "natural-computing" - "natural-deduction" - "natural-proofs" - "ne.neural-evol" - "near-neighbors" - "network-modeling" - "nexp" - "nfa" - "ni.networking-internet" - "nondeterminism" - "normalization" - "norms" - "notation" - "np" - "np-complete" - "np-hardness" - "np-intermediate" - "nt.number-theory" - "obfuscation" - "object-oriented" - "one-way-function" - "online-algorithms" - "online-learning" - "open-problem" - "operational-semantics" - "optimization" - "oracles" - "order-theory" - "p" - "p-hardness" - "p-vs-np" - "pac-learning" - "packing" - "padding" - "paper-review" - "parallel" - "paramerized-computation" - "parameterized-complexity" - "parametricity" - "parity" - "parsing" - "partial-order" - "partition-problem" - "pcp" - "percolation" - "perfect-graph" - "permanent" - "permutations" - "petri-nets" - "phase-transition" - "philosophy" - "physics" - "pi-calculus" - "pl.programming-languages" - "planar-graphs" - "polygon" - "polymorphism" - "polynomial-hierarchy" - "polynomial-time" - "polynomials" - "polytope" - "post-correspondence" - "ppad" - "pr.probability" - "prefix-free-code" - "primal-dual" - "primes" - "privacy" - "probabilistic-automata" - "probabilistic-circuits" - "probabilistic-computation" - "process-algebra" - "program-analysis" - "program-logic" - "program-verification" - "project-topic" - "proof-assistants" - "proof-complexity" - "proof-search" - "proof-size" - "proof-techniques" - "proof-theory" - "proofs" - "property-testing" - "pseudorandom-generators" - "pseudorandomness" - "pspace" - "puzzles" - "qma" - "quadratic" - "quantum-computing" - "quantum-information" - "quantum-walk" - "query-complexity" - "queueing-theory" - "ramsey-theory" - "random-graphs" - "random-k-sat" - "random-oracles" - "random-walks" - "randomized-algorithms" - "randomness" - "range-searching" - "real-closed-fields" - "recreational" - "recursion" - "recursive" - "reductions" - "reference-request" - "regular-expressions" - "regular-language" - "relation-algebra" - "relational-structures" - "relativization" - "research-practice" - "resolution" - "sample-complexity" - "sat" - "scheduling" - "scheme" - "se.software-engineering" - "search-engines" - "search-problem" - "security" - "selection" - "semantics" - "semidefinite-programming" - "separation" - "sequent-calculus" - "set-cover" - "set-system" - "set-theory" - "shannon-entropy" - "shortest-path" - "simplex" - "skip-lists" - "sliding-window" - "smoothed-analysis" - "social-sciences" - "soft-question" - "software" - "sorting" - "sorting-network" - "soundness" - "space-bounded" - "space-complexity" - "space-time-tradeoff" - "sparse-matrix" - "spectra" - "spectral" - "spectral-graph-theory" - "st.statistics" - "stable" - "statistical-physics" - "stochastic-process" - "streaming" - "streaming-algorithms" - "string-matching" - "string-search" - "structural-complexity" - "submodularity" - "subset-sum" - "succinct" - "survey" - "svm" - "symmetry" - "synchronization" - "tag-removed" - "teaching" - "temporal-logic" - "tensor-rank" - "term-rewriting-systems" - "terminology" - "time-complexity" - "time-hierarchy" - "topological-graph-theory" - "topology" - "total-ordering" - "transitive-closure" - "transitive-reduction" - "trapdoors" - "tree" - "treewidth" - "tsp" - "turing-machines" - "two-player-games" - "type-inference" - "type-systems" - "type-theory" - "typed-lambda-calculus" - "unary-languages" - "undecidability" - "uniformity" - "unique-games-conjecture" - "unique-solution" - "universal-computation" - "universal-turing-machines" - "untagged" - "upper-bounds" - "vc-dimension" - "voronoi" - "worst-case" - "writing" - "zero-knowledge") diff --git a/data/tags/datascience.el b/data/tags/datascience.el deleted file mode 100644 index 35c5781..0000000 --- a/data/tags/datascience.el +++ /dev/null @@ -1,159 +0,0 @@ -(".net" - "ab-testing" - "accuracy" - "algorithms" - "annotation" - "anomaly-detection" - "anonymization" - "apache-mahout" - "apache-pig" - "aws" - "beginner" - "bigdata" - "bigtable" - "binary" - "c" - "c#" - "career" - "caret" - "categorical-data" - "chess" - "classification" - "clustering" - "clusters" - "computer-vision" - "confusion-matrix" - "consumerweb" - "correlation" - "crawling" - "cross-validation" - "csv" - "data-binning" - "data-cleaning" - "data-formats" - "data-indexing-techniques" - "data-mining" - "data-partition" - "data-stream-mining" - "data-visualization" - "databases" - "dataset" - "deep-learning" - "definitions" - "dimensionality-reduction" - "distributed" - "dna" - "e-commerce" - "education" - "efficiency" - "energy" - "ensemble-modeling" - "error-handling" - "ethics" - "evaluation" - "experiments" - "facebook" - "feature-extraction" - "feature-scaling" - "feature-selection" - "forecast" - "fpm" - "framework" - "freebase" - "gbm" - "genetic" - "glm" - "google" - "google-api" - "gradient-descent" - "graphs" - "hadoop" - "hbase" - "hierarchical-data-format" - "hive" - "hog" - "indexing" - "infographics" - "information-retrieval" - "java" - "javascript" - "jpmml" - "k-fold" - "k-means" - "kaggle" - "kappa" - "knitr" - "knowledge-base" - "knowledge-body" - "language-model" - "lda" - "library" - "libsvm" - "logistic-regression" - "long-tail" - "machine-learning" - "machine-translation" - "map-reduce" - "market-data" - "marketing" - "metadata" - "mongodb" - "neo4j" - "neuralnetwork" - "nlp" - "nosql" - "object-recognition" - "octave" - "online-learning" - "open-source" - "optimization" - "pandas" - "panel-data" - "parallel" - "parallelism" - "parameter" - "parsing" - "performance" - "pig" - "pmml" - "predictive-modeling" - "processing" - "python" - "r" - "random-forest" - "rbm" - "recommendation" - "regression" - "relational-dbms" - "reporting" - "representation-learning" - "research" - "rfm-scoring" - "ruby" - "sampling" - "scala" - "scalability" - "scikit" - "search" - "sequence" - "sequential" - "similarity" - "sklearn" - "social-network-analysis" - "software-develpment" - "sql" - "starting-point" - "state-of-the-art" - "statistics" - "svm" - "tableau" - "tagging" - "text-mining" - "time-series" - "tools" - "topic-model" - "treebank" - "tsp" - "unbalanced-classes" - "usecase" - "visualization") diff --git a/data/tags/dba.el b/data/tags/dba.el deleted file mode 100644 index 0f84c56..0000000 --- a/data/tags/dba.el +++ /dev/null @@ -1,830 +0,0 @@ -("abort" - "access-control" - "acid" - "active-directory" - "activity-monitor" - "ado.net" - "advantage" - "aerospike" - "aggregate" - "agile" - "alerts" - "alias" - "alt-linux" - "alter-database" - "alter-table" - "amazon-ec2" - "amazon-linux" - "amazonrds" - "android" - "ansi-sql-standard" - "application-design" - "architecture" - "archive" - "array" - "ask-brent" - "attunity" - "audit" - "audit-trail" - "auditing" - "authentication" - "authorization" - "auto-commit" - "auto-growth" - "auto-increment" - "availability" - "availability-groups" - "awr" - "aws" - "backup" - "barman" - "bcp" - "benchmark" - "berkeley-db" - "best-practices" - "big-table" - "binlog" - "bitmap-index" - "blob" - "blocking" - "books" - "btree" - "bucardo" - "bufferpool" - "building-security" - "bulk" - "bulkcopy" - "bulkinsert" - "business-intelligence" - "c#" - "cache" - "calculated-fields" - "career" - "cascade" - "case" - "casesensitive" - "cassandra" - "cast" - "casting" - "catalogs" - "cdc" - "centos" - "centos-7" - "central-management-server" - "change-data-capture" - "change-management" - "change-tracking" - "character-set" - "check-constraints" - "checkpoint" - "checksum" - "client" - "cloud" - "clustered-index" - "clustered-primary-key" - "clustering" - "cms" - "coalesce" - "code" - "cognos" - "collation" - "columnstore" - "command-line" - "compatibilitylevel" - "composite-types" - "compression" - "concat" - "concurrency" - "condition" - "config" - "configuration" - "connection-pooling" - "connection-timeout" - "connections" - "connectivity" - "consistency" - "constraint" - "content-management" - "copy" - "corruption" - "couchbase" - "couchdb" - "count" - "crash" - "cron" - "cross-apply" - "cryptography" - "crystal-reports" - "csv" - "csv-file" - "cte" - "cube" - "cursors" - "data-archival" - "data-collection" - "data-import" - "data-integrity" - "data-loss" - "data-migration" - "data-pages" - "data-synchronization" - "data-tier-application" - "data-validation" - "data-versioning" - "data-warehouse" - "database-administration" - "database-agnostic" - "database-backup" - "database-denormalization" - "database-design" - "database-diagrams" - "database-engine" - "database-internals" - "database-link" - "database-mail" - "database-maintenance" - "database-mirroring" - "database-projects" - "database-recommendation" - "database-replication" - "database-restore" - "database-restoring" - "database-shrinking" - "database-size" - "database-structure" - "database-theory" - "database-tuning" - "database-tuning-advisor" - "datadir" - "datafile" - "dataguard" - "datapump" - "datatypes" - "date" - "date-format" - "datetime" - "datetime2" - "dax" - "db-mail" - "db2" - "db2-9.5" - "db2-9.7" - "db2-luw" - "dba" - "dbcc" - "dbcc-checkdb" - "dblink" - "dbms" - "dbms-redefinition" - "dbms-scheduler" - "ddl" - "deadlock" - "debian" - "debugging" - "decimal" - "default-value" - "delete" - "dependencies" - "deployment" - "derby" - "derived-tables" - "design-considerations" - "design-pattern" - "determinism" - "development" - "dimension" - "dimensional-modeling" - "disaster-recovery" - "disk-space" - "disk-structures" - "distributed-databases" - "distributed-transactions" - "dml" - "dmv" - "dns" - "document-oriented" - "documentation" - "drop-table" - "drupal" - "dtexec" - "dts" - "dump" - "duplicate" - "duplication" - "dynamic-ports" - "dynamic-sql" - "dynamodb" - "eav" - "ec2" - "elasticsearch" - "embedded" - "empty-string" - "encoding" - "encryption" - "enterprise-manager" - "enterprisedb" - "entity-framework" - "enum" - "environment-variables" - "erd" - "error-handling" - "error-log" - "errors" - "erwin" - "etl" - "event" - "event-notification" - "exadata" - "excel" - "exception" - "exclusion-constraint" - "execution-plan" - "exists" - "expdp" - "explain" - "explain-plan" - "export" - "express-edition" - "extended-events" - "extended-stored-procedure" - "facttable" - "failover" - "fast-refresh" - "feature-comparison" - "features" - "fedora" - "fields" - "fifo" - "filegroups" - "files" - "filestream" - "filetable" - "fill-factor" - "filtered-index" - "fine-grained-auditing" - "firebird" - "flashback" - "floating-point" - "foreign-data" - "foreign-key" - "format" - "foxpro" - "fragmentation" - "freebsd" - "freetds" - "full-text-search" - "functions" - "fusion-io" - "gae-datastore" - "galera" - "gaps-and-islands" - "generalization" - "generate-script" - "geoportal" - "gin-index" - "gist-index" - "goldengate" - "google-app-engine" - "grants" - "graph" - "greatest-n-per-group" - "greenplum" - "group-by" - "group-concatenation" - "guid" - "h2" - "hadoop" - "hadr" - "hang" - "hardware" - "hashing" - "hbase" - "heap" - "heroku" - "hibernate" - "hierarchical" - "hierarchical-data" - "hierarchical-queries" - "high-availability" - "hints" - "homework" - "hsqldb" - "hstore" - "ibdata" - "ibm-netezza-administrator" - "ibm-tsm" - "identity" - "identity-column" - "if-not-exists" - "impdp" - "import" - "in-memory-database" - "in-memory-oltp" - "incremental-load" - "index" - "index-spool" - "index-statistics" - "index-tuning" - "informatica" - "information-schema" - "informix" - "infosphere-data-architect" - "inheritance" - "innodb" - "insert" - "installation" - "instance" - "integer" - "integration" - "intellisense" - "interbase" - "interface" - "interview-question" - "ipv6" - "iseries" - "isnull" - "isolation-level" - "isql" - "java" - "jdbc" - "job" - "jobs" - "join" - "json" - "kerberos" - "keyboard-shortcuts" - "kill" - "learning" - "libreoffice-base" - "license" - "like" - "limits" - "linked-server" - "linq" - "linux" - "listener" - "load" - "load-balancing" - "lock" - "lock-escalation" - "locked-objects" - "locking" - "log" - "log-shipping" - "logins" - "logs" - "maatkit" - "mac-os-x" - "maintenance" - "maintenance-plans" - "management" - "many-to-many" - "mariadb" - "mariadb-cluster" - "master" - "master-data-services" - "materialized-view" - "max-connections" - "maxdop" - "mdx" - "memcached" - "memory" - "memory-optimized-tables" - "merge" - "merge-replication" - "metadata" - "microsoft" - "migration" - "mirroring" - "mondrian" - "money" - "mongo-repair" - "mongodb" - "monitoring" - "ms-access" - "ms-access-2007" - "ms-access-2010" - "msdb" - "msdtc" - "multi-master" - "multi-tenant" - "my.cnf" - "myisam" - "mysql" - "mysql-4" - "mysql-5" - "mysql-5.0" - "mysql-5.1" - "mysql-5.5" - "mysql-5.6" - "mysql-cluster" - "mysql-console" - "mysql-fabric" - "mysql-proxy" - "mysql-workbench" - "mysqladmin" - "mysqlbinlog" - "mysqld" - "mysqld-multi" - "mysqld-safe" - "mysqldump" - "mysqlhotcopy" - "mysqli" - "mysqlslap" - "mysqltuner" - "naming-convention" - "native-client" - "natural-key" - "ndbcluster" - "nearest-neighbor" - "neo4j" - "netezza" - "network" - "nhibernate" - "nls" - "nolock" - "nonclustered-index" - "normalization" - "nosql" - "null" - "number-formatting" - "object-scripting" - "odbc" - "odp.net" - "offset-fetch" - "olap" - "oledb" - "ontology" - "openldap" - "openoffice-base" - "openrowset" - "operator" - "optimization" - "optimize" - "optimizer" - "oracle" - "oracle-10g" - "oracle-10g-r2" - "oracle-11-r2" - "oracle-11g" - "oracle-11g-r2" - "oracle-12c" - "oracle-8i" - "oracle-9i" - "oracle-apex" - "oracle-asm" - "oracle-database-appliance" - "oracle-enterprise-manager" - "oracle-fail-safe" - "oracle-grid-control" - "oracle-rac" - "oracle-se" - "oracle-sql-developer" - "oracle-streams" - "oracle-xe" - "order-by" - "orm" - "osx" - "outer-join" - "output-clause" - "overlapping" - "page-splits" - "paging" - "pam" - "parallelism" - "parameter" - "parse" - "partitioning" - "password" - "password-recovery" - "pattern-matching" - "pentaho" - "percona" - "percona-server" - "percona-toolkit" - "percona-tools" - "perfmon" - "performance" - "performance-testing" - "performance-tuning" - "perl" - "permissions" - "pervasive" - "pg-basebackup" - "pg-dump" - "pg-hba.conf" - "pgadmin" - "pgadmin-1.18" - "pgbouncer" - "pgcrypto" - "pgpool" - "php" - "phpmyadmin" - "physical-design" - "pivot" - "pivot-table" - "plan-cache" - "plpgsql" - "plpython" - "plsql" - "plsql-developer" - "pluggable-database" - "plugins" - "polymorphic-associations" - "postgis" - "postgres-xc" - "postgresql" - "postgresql-8.3" - "postgresql-8.4" - "postgresql-9.0" - "postgresql-9.1" - "postgresql-9.2" - "postgresql-9.3" - "postgresql-9.4" - "postgresql-domain" - "postgresql-fdw" - "postgresql-performance" - "powershell" - "prepared-statement" - "primary-key" - "privileges" - "procedure-cache" - "procedure-definition" - "process" - "profiler" - "progress-database" - "psql" - "pt-table-checksum" - "python" - "query" - "query-cache" - "query-hints" - "query-optimization" - "query-performance" - "query-plan" - "query-refactor" - "query-timeout" - "queue" - "quoted-identifier" - "rac" - "raid" - "rails" - "raiserror" - "random" - "range-types" - "rank" - "rdbms" - "rds" - "read-only-database" - "record" - "recovery" - "recursive" - "recursive-query" - "redhat" - "redis" - "redo-log" - "redshift" - "referential-integrity" - "regex" - "regular-expression" - "relational" - "relational-division" - "relational-theory" - "remote" - "replace" - "replication" - "repmgr" - "reporting" - "reporting-services" - "reserved-word" - "resource-governor" - "restore" - "riak" - "rman" - "rockmongo" - "role" - "rollback" - "row" - "row-estimates" - "row-level-security" - "row-lock" - "running-totals" - "san" - "sap" - "scalability" - "scaling" - "scheduled-tasks" - "scheduler" - "schema" - "schema-copy" - "script" - "scripting" - "secondary-replica" - "security" - "select" - "self-service" - "semi-sync-replication" - "sequence" - "serialization" - "server" - "service-accounts" - "service-broker" - "service-pack" - "session" - "set-returning-functions" - "settings" - "setup" - "sharding" - "sharepoint" - "shell-scripting" - "shrink" - "shutdown" - "single-quote" - "size" - "sleep" - "slony" - "slow-log" - "slowly-changing-dimension" - "smallsql" - "smo" - "snapshot" - "snapshot-isolation" - "solaris" - "solaris-10" - "sorting" - "source-code" - "source-control" - "spatial" - "spatial-access" - "spexecutesql" - "splitting" - "spn" - "sql" - "sql-agent" - "sql-audit" - "sql-azure" - "sql-clr" - "sql-injection" - "sql-loader" - "sql-localdb" - "sql-server" - "sql-server-2000" - "sql-server-2005" - "sql-server-2008" - "sql-server-2008-express" - "sql-server-2008-r2" - "sql-server-2008r2-express" - "sql-server-2012" - "sql-server-2012-express" - "sql-server-2014" - "sql-server-7" - "sql-server-agent" - "sql-server-ce" - "sql-server-compact" - "sql-server-core" - "sql-server-express" - "sql-server-pdw" - "sql-server-tools" - "sql-servfer" - "sql-variant-property" - "sqlcmd" - "sqlite" - "sqll" - "sqlplus" - "ssas" - "ssd" - "ssdt" - "ssis" - "ssis-2012" - "ssis-expressions" - "ssl" - "ssma" - "ssms" - "ssrs" - "ssrs-2005" - "ssrs-2008" - "ssrs-2008-r2" - "ssrs-2012" - "standard-edition" - "standards" - "standby" - "star-schema" - "startup" - "statistics" - "storage" - "storage-engine" - "stored-procedures" - "string" - "string-representation" - "style" - "subquery" - "substring" - "subtypes" - "suggestions" - "sum" - "surrogate-key" - "sybase" - "sybase-sql-anywhere" - "sybasease" - "sybaseiq" - "synonyms" - "syntax" - "system-databases" - "system-tables" - "t-sql" - "table" - "tablespaces" - "tabular-model" - "tcpip" - "tde" - "temp-tables" - "tempdb" - "tempdb-version-store" - "temporal-tables" - "temporary-tables" - "teradata" - "terminology" - "testing" - "time" - "timeout" - "timestamp" - "timesten" - "timezone" - "toad" - "tokudb" - "tokumx" - "tools" - "top-queries" - "trace" - "tracing" - "transaction" - "transaction-log" - "transactional-replication" - "tree" - "trigger" - "troubleshooting" - "truncate" - "try-catch" - "tungsten-replicator" - "tuning" - "type-conversion" - "ubuntu" - "udf" - "undefined-relations" - "union" - "unique-constraint" - "unique-index" - "unique-key" - "uniqueidentifier" - "unit-test" - "unix" - "unixodbc" - "unpivot" - "untagged" - "update" - "upgrade" - "upsert" - "user-defined-functions" - "users" - "usertypes" - "utc-time" - "utf-8" - "vacuum" - "varbinary" - "varchar" - "vba" - "vendor-support" - "version-control" - "vertica" - "view" - "virtual-columns" - "virtualisation" - "visio" - "visual-studio" - "visual-studio-2010" - "visual-studio-2012" - "visual-studio-2013" - "vldb" - "vmware" - "voltdb" - "vss" - "wait" - "wait-types" - "wal" - "wallet" - "wamp" - "warning" - "web-server" - "window-functions" - "windows" - "windows-8" - "windows-server" - "windows-server-2003" - "windows-server-2008-r2" - "xbase" - "xml" - "xquery" - "xtrabackup" - "xtradb" - "xtradb-cluster" - "zos") diff --git a/data/tags/diy.el b/data/tags/diy.el deleted file mode 100644 index d165e6a..0000000 --- a/data/tags/diy.el +++ /dev/null @@ -1,665 +0,0 @@ -("120-240v" - "220v" - "240v" - "access-panel" - "accessibility" - "acoustic" - "acrylic" - "additives" - "adhesive" - "advice" - "afci" - "air-conditioner" - "air-conditioning" - "air-filter" - "air-leaks" - "air-quality" - "airlesssprayer" - "alarm" - "alkyd" - "alternative-energy" - "aluminum" - "aluminum-wiring" - "anchor" - "ants" - "appliances" - "architecture" - "asbestos" - "asphalt" - "attic" - "attic-conversion" - "audio" - "back-up" - "backer-board" - "backsplash" - "bandsaw" - "barn" - "baseboard" - "basement" - "basement-refinishing" - "bath" - "bathroom" - "bathroom-fixtures" - "bathtub" - "battery" - "beam" - "bedroom" - "bench" - "blinds" - "blockage" - "blocking" - "blower" - "boiler" - "bolts" - "brackets" - "breaker" - "breaker-box" - "brick" - "building-regulations" - "built-ins" - "bulb" - "bundled-cables" - "cabinets" - "cable-management" - "cables" - "cabling" - "canopy" - "carpentry" - "carpet" - "casing-bead" - "cast-iron" - "caulk" - "caulking" - "ceiling" - "ceiling-fan" - "ceiling-fans" - "cement" - "cement-board" - "cementmixer" - "central-air" - "central-heating" - "central-vacuum" - "ceramic-tile" - "cfl" - "chain" - "chainsaw" - "chemicals" - "child-safety" - "children" - "chimney" - "chlorine" - "cinderblock" - "circuit" - "circuit-breaker" - "circular-saw" - "cleaning" - "clearance" - "clog" - "closer" - "closet" - "clothes-washer" - "coax" - "coaxial-cable" - "code-compliance" - "column" - "compost" - "compressor" - "concrete" - "concrete-block" - "condensation" - "conduit" - "confined-space" - "connectors" - "construction" - "contractors" - "cooling" - "copper" - "copper-tubing" - "cord-and-plug" - "cork" - "corner-bead" - "corrosion" - "cosmetic" - "cost-effective" - "countertops" - "cover" - "crack" - "crawlspace" - "curtain-rail" - "custom-cabinetry" - "cutting" - "damage" - "damp-proof-course" - "dangerous" - "data-wiring" - "deadbolt" - "deck" - "decking" - "deflection" - "demolition" - "design" - "desk" - "detached-structure" - "deumidifier" - "dimmer-switch" - "dishwasher" - "disposal" - "dissolve" - "distribution-board" - "diy-vs-pro" - "door-frame" - "doorbell" - "doorknob" - "doors" - "dormer" - "downspout" - "draft" - "draft-hood" - "drafting" - "drain" - "drain-waste-vent" - "drainage" - "drains" - "drawers" - "drill" - "driveway" - "dry-rot" - "dryer" - "drywall" - "drywall-anchor" - "drywall-mud" - "duct-tape" - "ductless" - "ducts" - "ductwork" - "earthquake" - "egress" - "electric-motor" - "electrical" - "electrical-distribution" - "electrical-panel" - "emergency-preparedness" - "encapsulation" - "energy-audit" - "energy-efficiency" - "engine" - "engineered-flooring" - "engineering" - "epoxy" - "error-tolerance" - "erv" - "evaporative-cooling" - "excavator" - "exhaust" - "exhaust-fan" - "exhaust-vent" - "extension" - "extension-cord" - "exterior" - "extermination" - "fan" - "fans" - "fastener" - "fastening" - "faucet" - "fence" - "fiberglass" - "fieldstone" - "filter" - "finish" - "finishing" - "fire-extinguisher" - "fire-hazard" - "fire-pit" - "fire-sprinkler" - "fireplace" - "fireproof" - "firewood" - "fitting" - "flange" - "flashing" - "flex-pipe" - "flooding" - "floor" - "flooring" - "fluorescent" - "footings" - "forced-air" - "foundation" - "frame" - "framing" - "freezing" - "french-drain" - "front-door" - "fungus" - "furnace" - "furniture" - "fuse-breaker" - "galvanizing" - "gap" - "garage" - "garage-door" - "garage-door-opener" - "garbage-disposal" - "gardening" - "gas" - "gate-post" - "gates" - "generator" - "gfci" - "glass" - "glass-top-range" - "glue" - "granite" - "grass" - "gravel" - "green" - "grinder" - "grounding" - "grounding-and-bonding" - "grout" - "guide" - "gutters" - "halogen" - "hand-tools" - "handrail" - "hanging" - "hardware" - "hardwood" - "hardwood-floor" - "hardwood-refinishing" - "health-and-safety" - "hearth" - "heat" - "heat-pump" - "heater" - "heating" - "hinges" - "hiring" - "historic" - "hole" - "hole-repair" - "home-automation" - "home-theater" - "hood" - "hose" - "hot-tub" - "hot-water" - "house-wrap" - "humidifier" - "humidity" - "hurricane-panels" - "hvac" - "ice" - "ice-maker" - "imaging" - "insect" - "inspection" - "installation" - "insulation" - "interference" - "interior" - "ir" - "irrigation" - "jamb" - "joinery" - "joints" - "joists" - "junction" - "junction-box" - "kerosene" - "kitchen-counters" - "kitchen-sink" - "kitchens" - "knob-and-tube" - "knobs" - "ladder" - "laminate" - "laminate-floor" - "lamp" - "landscaping" - "lath-and-plaster" - "lauan" - "lawn" - "lawn-mower" - "layout" - "lead" - "leak" - "led" - "ledger" - "lennox" - "level" - "light-fixture" - "lighting" - "linoleum" - "load-bearing" - "locating" - "lock" - "locks" - "loft" - "low-voltage" - "lubrication" - "lumber" - "magnetron" - "mailbox" - "maintenance" - "marble" - "masonry" - "materials" - "mdf" - "measuring" - "memory-foam" - "metal" - "metal-cutting" - "metal-roof" - "meter" - "mice" - "microhood" - "microwave-oven" - "mirror" - "miter" - "moisture" - "mold" - "molding" - "mortar" - "mosaic" - "mosquitoes" - "moss" - "motion-sensor" - "moulding" - "mounting" - "mudding" - "municipality" - "mystery" - "nails" - "natural-gas" - "nec" - "nest" - "new-home" - "noise" - "noise-reduction" - "odors" - "oil-based-paint" - "oil-finish" - "old-house" - "old-work" - "outdoor" - "outlets" - "oven" - "overflow" - "paint" - "paint-removal" - "painting" - "particle-board" - "partition" - "patch" - "patching-drywall" - "patio" - "pavers" - "pergola" - "pest" - "pest-control" - "pet-door" - "pet-proofing" - "pex" - "phone-wiring" - "pier-blocks" - "pilot-light" - "pine" - "pipe" - "placement" - "plane" - "planning" - "planning-permission" - "planting" - "plaster" - "plastic" - "play-structures" - "plumbing" - "plumbing-fixture" - "plywood" - "pocket-door" - "pole" - "polyurethane" - "pond" - "pool" - "popcorn" - "porch" - "porch-swing" - "post" - "powder-actuated" - "power" - "power-backup" - "powertools" - "precautions" - "prefab" - "preparation" - "prepping" - "pressure-treated" - "primer" - "product-recommendation" - "product-review" - "projector" - "propane" - "protection" - "pump" - "pushfit" - "putty" - "pvc" - "quietrock" - "radiant-barrier" - "radiant-heating" - "radiator" - "radon" - "railing" - "rain" - "rebar" - "rebuild" - "receptacle" - "receptacles" - "recessed-lighting" - "recycling" - "refrigerant" - "refrigerator" - "register" - "relocating" - "remodeling" - "removal" - "remove" - "render" - "renovation" - "rental" - "repainting" - "repair" - "replacement" - "retaining-wall" - "retrofit" - "reuse" - "rewire" - "ring-main" - "rivets" - "rock" - "roller-shutter" - "roof" - "roofing" - "rough-in" - "routers" - "rtfm" - "rust-proofing" - "rust-removal" - "safety" - "sander" - "sanding" - "saving-money" - "saw" - "screens" - "screwdriver" - "screws" - "sealer" - "sealing" - "seasonal" - "security" - "self-assembly-furniture" - "self-leveling-concrete" - "septic" - "septic-tanks" - "severe-weather" - "sewer" - "sharpening" - "sheathing" - "shed" - "shellac" - "shelving" - "shingles" - "shower" - "shutoff" - "shutters" - "sidewalk" - "siding" - "silicone" - "sill" - "sink" - "sinkhole" - "skylight" - "slab" - "slate" - "sliding-glass-door" - "slope" - "smell" - "smoke-detectors" - "socket" - "soffit" - "software" - "solar" - "solar-panels" - "solar-thermal" - "solar-tubes" - "soldering" - "sound-proofing" - "spackle" - "spackling-paste" - "span-tables" - "speakers" - "spiral-saw" - "splicing" - "spray-foam" - "spraying" - "spraypainting" - "sprinkler-system" - "squeak" - "staining" - "stairs" - "steam" - "steel" - "steps" - "stone" - "storage" - "storm-door" - "stove" - "stove-top" - "structural" - "stucco" - "studs" - "subfloor" - "subpanel" - "sump-pump" - "support" - "surge-suppression" - "sustainability" - "switch" - "table" - "table-saw" - "tankless" - "taping" - "taps" - "technique" - "telephone" - "television" - "temperature" - "temporary" - "terminology" - "termite" - "testing" - "texture" - "thermocouple" - "thermostat" - "thermostat-c-wire" - "thinset" - "tile" - "tiling" - "timber-framing" - "timer" - "toilet" - "tongue-and-groove" - "tools" - "transfer-switch" - "transition" - "trash-can" - "travertine" - "treehouse" - "trench" - "trim" - "trim-carpentry" - "troubleshooting" - "tub" - "turf" - "tv-antenna" - "uk" - "underground" - "underlayment" - "us" - "utilities" - "uv-exposure" - "valve" - "vanity" - "vapor-barrier" - "varnishing" - "veneer" - "vent" - "ventilation" - "venting" - "vibration" - "vinyl" - "vinyl-flooring" - "vinyl-siding" - "voc" - "wainscoting" - "wallpaper" - "walls" - "washer" - "washing-machine" - "water" - "water-circulating-heating" - "water-damage" - "water-filtration" - "water-hammer" - "water-heater" - "water-pressure" - "water-purification" - "water-quality" - "water-softener" - "water-tank" - "waterproofing" - "weather-resistant" - "weatherstripping" - "weeds" - "weep-hole" - "welding" - "well" - "well-pump" - "wind" - "windmill" - "windows" - "winter" - "winterizing" - "wire" - "wiring" - "wood" - "wood-filler" - "wood-finish" - "wood-finishing" - "wooden-furniture" - "woodstove" - "woodworking" - "workshop" - "yurt") diff --git a/data/tags/drupal.el b/data/tags/drupal.el deleted file mode 100644 index df0a5bd..0000000 --- a/data/tags/drupal.el +++ /dev/null @@ -1,841 +0,0 @@ -(".htaccess" - ".info" - "403-forbidden" - "5" - "6" - "7" - "8" - "9" - "access-callbacks" - "accordion" - "acquia" - "actions" - "active-tab" - "active-trail" - "activity" - "ad" - "adaptive" - "addressfield" - "admin" - "admin-menu" - "admin-theme" - "administration-views" - "administrator" - "advanced-block-form" - "advanced-forum" - "advertising" - "aegir" - "aggregation" - "ahah" - "ajax" - "ajax-comments" - "ajax-forms" - "ajaxified-cart" - "alias" - "alternative" - "amazon-ec2" - "amazon-s3" - "analytics" - "anchors" - "angularjs" - "anonymous-users" - "answers" - "apache" - "apache-solr" - "apc" - "app-cache" - "archive-backup" - "arguments" - "attachment-views" - "attachments" - "audio" - "auditing" - "aurora" - "authcache" - "authentication" - "authorize.net" - "auto-nodetitle" - "auto-tagging" - "autocomplete" - "autoloading" - "autologin" - "automation" - "availability" - "avatars" - "aws" - "backtrace" - "backup" - "backup-and-migrate" - "bakery" - "banner" - "base-url" - "batch-api" - "bean" - "behaviors" - "better-exposed-filters" - "billy" - "block-access" - "block-api" - "block-visibility" - "blocks" - "blogs" - "boa" - "bookings" - "books" - "boost" - "bootstrap-theme" - "bootstrapping" - "bots" - "boxes" - "breadcrumbs" - "bulk-operations" - "bundles" - "caching" - "calendar" - "canonical-url" - "captcha" - "carousel" - "cck" - "cdn" - "chain" - "change-control" - "charts" - "chat" - "checkbox" - "checkout" - "checkout-pane" - "checksum" - "civicrm" - "ckeditor" - "ckfinder" - "clean-urls" - "clientside-validation" - "cloud" - "cluster" - "code-field" - "coder-review" - "coding-standards" - "collaboration" - "colorbox" - "colorbox-node" - "command-line" - "comments" - "commerce-cart" - "commerce-credits" - "commerce-discount" - "commerce-kickstart" - "commerce-license" - "commerce-order" - "commerce-price" - "commerce-stock" - "commerce-subscription" - "community-drupal-org" - "compass" - "compatibility" - "composer" - "computed-field" - "conditional-clause" - "conditional-css" - "conditional-fields" - "conditions" - "configuration" - "configuration-management" - "contact" - "content-access" - "content-management" - "content-profile" - "content-types" - "context" - "contextual" - "contextual-links" - "cookie-domain" - "cookies" - "copyright" - "coupons" - "cron" - "cropping" - "cross-browser" - "csrf" - "css" - "csv" - "ctools" - "ctools-modal" - "curl" - "d2d" - "dashboard" - "data" - "data-tables" - "database" - "date" - "date-field" - "date-format" - "date-popup" - "db-api" - "db-query" - "db-select" - "debug" - "debugging" - "delete" - "delta" - "deployment" - "design-patterns" - "dev-desktop" - "dev-server" - "devel" - "devel-generate" - "dhtml-menu" - "dialogs" - "diff" - "directory-structure" - "disable-messages" - "discussions" - "display" - "display-suite" - "disqus" - "distributions" - "doctrine-annotation" - "documentation" - "domain-access" - "downloads" - "draft" - "draggable-table" - "draggable-views" - "drop-down-menu" - "dropdown" - "drupal-add-js" - "drupal-commerce" - "drupal-commerce-file" - "drupal-commons" - "drupal-form-submit" - "drupal-gardens" - "drupal-http-request" - "drupal-static" - "drupalcon" - "drupalgap" - "drush" - "drush-make" - "dynamic-queries" - "ec2" - "eck" - "ecommerce" - "edit" - "editablefields" - "editing" - "editor" - "email" - "embedding-content" - "entities" - "entity-api" - "entity-construction-kit" - "entity-field-query" - "entity-form" - "entity-metadata-wrapper" - "entity-reference" - "entity-translation" - "entity.module" - "entityreference" - "erpal" - "error-handling" - "event" - "exif-module" - "export" - "exportables" - "exposed-filters" - "external-data" - "external-database" - "external-links" - "external-php-scripts" - "facebook" - "facet-api" - "facets" - "faq" - "favicon" - "fboauth" - "fckeditor" - "features" - "feed-aggregator" - "feeds" - "feeds-tamper" - "ffmpeg" - "field-api" - "field-collection" - "field-conditional-state" - "field-formatter" - "field-group" - "field-label" - "field-permissions" - "field-preprocess" - "fields" - "fields-expire" - "fieldset" - "file-api" - "file-download" - "file-entity" - "file-extensions" - "file-field-sources" - "file-permissions" - "file-system" - "file-usage" - "filedepot" - "filefield" - "files" - "files-sharing" - "filter" - "fivestar" - "flags" - "flexifield" - "flexslider" - "flickr" - "flowplayer" - "fonts" - "footer" - "form-api" - "form-field-validation" - "form-submission" - "form-validation" - "formats" - "formatters" - "formbuilder" - "forms" - "forum" - "frontpage" - "ftp" - "full" - "fullcalendar" - "gallery" - "gathercontent" - "geocoder" - "geofield" - "geolocation" - "git" - "global-variable" - "globals" - "glossary" - "goals" - "google" - "google-analytics" - "google-maps" - "google-picker-api" - "google-store-locator" - "google-webmaster-tools" - "googlebot" - "graph-api" - "grid" - "group-by" - "guestbook" - "handler" - "header" - "heartbeat" - "hidden-fields" - "hierarchical-select" - "hiphop" - "history" - "homebox" - "honeypot" - "hook-block-view" - "hook-block-view-alter" - "hook-boot" - "hook-exit" - "hook-form-alter" - "hook-init" - "hook-install" - "hook-library" - "hook-menu" - "hook-menu-alter" - "hook-node-info" - "hook-node-insert" - "hook-node-load" - "hook-node-submit" - "hook-node-view" - "hook-nodeapi" - "hook-page-alter" - "hook-query-alter" - "hook-schema" - "hook-theme" - "hook-update-n" - "hook-user-presave" - "hook-view" - "hook-views-data" - "hook-views-pre-render" - "hook-views-query-alter" - "hooks" - "hosting" - "hover" - "html" - "http-basic-auth" - "http-status-codes" - "hybridauth" - "i18n" - "ical" - "iis" - "image-browser" - "image-comment" - "image-processing" - "image-styles" - "image-upload" - "image-widget" - "imagecache" - "imagefield" - "imageflow" - "imagepicker" - "images" - "imce" - "import" - "includes" - "inline-entity-form" - "innodb" - "input-formats" - "install.inc" - "installation" - "installation-profile" - "invite" - "invoice" - "item-list" - "javascript" - "jcarousel" - "jenkins" - "jplayer" - "jquery" - "jquery-mobile" - "jquery-ui" - "json" - "jumpmenu" - "krumo" - "languages" - "layout" - "ldap" - "leaflet" - "less" - "libraries" - "lightbox" - "line-item" - "linkchecker" - "linkedin" - "linkit" - "links" - "linux" - "livereload" - "load-balancers" - "local-actions" - "locale" - "localization" - "locate" - "location" - "log" - "login-redirect" - "logintoboggan" - "mailchimp" - "mailinterface" - "maintenance" - "maintenance-mode" - "make" - "mamp" - "manage-display" - "managed-files" - "mapbox" - "maps" - "mariadb" - "markdown" - "markup" - "media" - "media-gallery" - "membership" - "memcache" - "memcached" - "memory" - "menu" - "menu-block" - "menu-callbacks" - "menu-tabs" - "menu-token" - "messaging" - "meta-tags" - "metadata" - "metatag.module" - "migrate-csv" - "migrate-d2d" - "migrate.module" - "migration" - "migration-class" - "mimemail" - "mobile" - "mobile-tools" - "modal-popup" - "moderation" - "modules" - "mollom" - "mongodb" - "mssql" - "multi-index" - "multi-site" - "multi-step-forms" - "multi-value" - "multiform" - "multilingual" - "multiple-keyword-match" - "multistep" - "mvc" - "myisam" - "mysql" - "namespaces" - "navigation" - "navigation-links" - "ndbcluster" - "newsletter" - "nginx" - "nice-menus" - "node-access" - "node-export" - "node-form" - "node-hierarchy" - "node-limit" - "node-load" - "node-permissions" - "node-references" - "node-registration" - "node-revision" - "node-save" - "node-title" - "node-update" - "node-validate" - "nodeblock" - "nodegallery" - "nodejs" - "nodequeue" - "nodes" - "notifications" - "notify-user" - "oauth" - "omega" - "oop" - "open-atrium" - "open-scholar" - "openid" - "openlayers" - "openlayers-geocoder" - "oracle" - "order-confirmation-email" - "organic-groups" - "organization" - "overlay" - "page" - "page-arguments" - "page-callbacks" - "page-manager" - "page-title" - "paging" - "panelizer" - "panels" - "panopoly" - "pantheon" - "parameter" - "pareview" - "passing-variable" - "password" - "patches" - "path" - "path-aliases" - "path-filter" - "pathauto" - "pathologic" - "payment" - "payment-gateway" - "paypal" - "pdf" - "pdo" - "performance" - "persistent-variables" - "phing" - "phone-number" - "php" - "php-classes" - "php-filter" - "picture" - "placeholders" - "player" - "playlist" - "plugin" - "plupload" - "podcast" - "polls" - "popupmessage" - "position" - "postgresql" - "preprocess" - "preset" - "pressflow" - "preview" - "print" - "print.module" - "printing" - "private-download" - "privatemsg" - "profile2" - "profiling" - "progress-bar" - "project" - "properties" - "proxy" - "psr-0" - "psr-4" - "publishing" - "queries" - "querystring" - "queue" - "queue-api" - "quick-tabs" - "quickedit" - "quickstart" - "quiz" - "rackspace" - "radioactivity" - "rank" - "ranking" - "rate" - "rating" - "rdf.module" - "read-more-control" - "realname" - "recurring" - "redirect" - "redis" - "regex" - "regions" - "related-content" - "relation" - "relevance" - "rename" - "render-api" - "render-arrays" - "reporting" - "reports" - "requirement" - "respond-js" - "responsive" - "rest" - "reverse-proxy" - "revisioning" - "revisions" - "roles" - "routing" - "rules" - "rules-bonus" - "rules-forms" - "rules-scheduler" - "salesforce" - "sass" - "save" - "scaling" - "scheduler" - "schema-api" - "search" - "search-api" - "search-api-solr" - "search-facets" - "search-file-attachments" - "search-views" - "security" - "select" - "select-options" - "seo" - "service-links" - "services" - "services-client" - "services-views" - "session" - "settings.php" - "share" - "sharethis" - "shipping" - "shipping-services" - "shopping-cart" - "shs" - "signature" - "simplenews" - "simpletest" - "single-sign-on" - "site-logo" - "site-offline" - "sitemap" - "skinr" - "slider" - "slideshow" - "slikgrid" - "soap" - "social-networking" - "solr" - "solr-panels" - "sort" - "sorting" - "spaces" - "spam" - "splashify" - "sql" - "sql-queries" - "sql-server" - "sql-sync" - "sqlite" - "ssh" - "ssl" - "staging" - "states" - "statistics" - "status" - "status-messages" - "storage-api" - "storm" - "streaming" - "streamwrapper" - "strict-warning" - "string-overrides" - "strings" - "strongarm" - "styles" - "sub-user" - "subdomain" - "subpages" - "subscriptions" - "subsites" - "summary-or-trimmed" - "superfish" - "swiftmailer" - "symfony" - "symfony-services" - "synchronization" - "syntax-highlighting" - "table" - "table-field" - "table-sorting" - "tableselect" - "tablesort" - "tabs" - "task" - "tax" - "taxonomy" - "taxonomy-access" - "taxonomy-breadcrumb" - "taxonomy-image" - "taxonomy-menu" - "teaser" - "temporary-files" - "term-reference" - "testing" - "text" - "textarea" - "textfield" - "theme-hook-suggestions" - "theme-registry" - "theme-settings" - "theme-switching" - "theme-templates" - "themekey" - "themes" - "theming" - "throbber" - "time" - "timezones" - "tinymce" - "title-alter" - "token-filter" - "tokens" - "toolbar" - "tooltips" - "translation" - "transliteration" - "travis" - "triggers" - "twig" - "twitter" - "ubercart" - "ubercart-stock" - "ui" - "uninstalling" - "unit-testing" - "untagged" - "updates" - "upgrades" - "uploads" - "uri" - "url-alias" - "url-rewrite" - "urls" - "usability" - "usage" - "user-access" - "user-badges" - "user-experience" - "user-login" - "user-logout" - "user-permissions" - "user-picture" - "user-profiles" - "user-reference" - "user-registration" - "user-relationships" - "user-save" - "userpoints" - "users" - "utf8" - "uuid" - "uuid-features" - "ux" - "vagrant" - "validation" - "varnish" - "version-control" - "versions" - "vertical-tabs" - "video" - "view-mode" - "views" - "views-api" - "views-bulk-operations" - "views-contextual-filters" - "views-data-export" - "views-date-filter-handler" - "views-dependent-filter" - "views-field-view" - "views-filters" - "views-handlers" - "views-infinite-scroll" - "views-no-results" - "views-pdf" - "views-php" - "views-php-field" - "views-plugins" - "views-redirect" - "views-relationships" - "views-send" - "views-slideshow" - "views-slideshow-jcarousel" - "views-sorting" - "views-style" - "vote-up-down" - "voting-api" - "watchdog" - "watermark" - "web-services" - "webform" - "webform-civicrm" - "webform-fivestar" - "weight" - "widget" - "wiki" - "wizard" - "workbench" - "workbench-access" - "workbench-moderation" - "workflow" - "wsod" - "wysiwyg" - "xdebug" - "xhprof" - "xml" - "xml-sitemap" - "xmlrpc" - "xpath" - "xslt" - "youtube" - "zen" - "zencoder" - "zend") diff --git a/data/tags/dsp.el b/data/tags/dsp.el deleted file mode 100644 index 5b0f124..0000000 --- a/data/tags/dsp.el +++ /dev/null @@ -1,313 +0,0 @@ -("1d" - "2d" - "3d" - "acoustics" - "adaptive-algorithms" - "adaptive-filters" - "adc" - "algorithms" - "aliasing" - "allpass" - "amplitude" - "analog" - "analytic-signal" - "anisotropic-diffusion" - "anonymity" - "anti-aliasing-filter" - "approximation" - "arm" - "attenuation" - "audio" - "augmented-reality" - "autocorrelation" - "autoregressive-model" - "averaging" - "background-subtraction" - "bandpass" - "bandwidth" - "beamforming" - "biquad" - "bitdepth" - "blind-deconvolution" - "blur" - "bpsk" - "c" - "c#" - "c++" - "calibration" - "camera" - "camera-calibration" - "camera-pose" - "canny-edge-detector" - "cbir" - "cepstral-analysis" - "channelcoding" - "classification" - "coherence" - "color" - "compression" - "compressive-sensing" - "computer-vision" - "conjugate" - "continuous-signals" - "control-systems" - "conversion" - "convolution" - "corners" - "correction" - "correlation" - "cosine" - "counting" - "covariance" - "cross-correlation" - "damping" - "dbfs" - "dct" - "decimation" - "decomposition" - "deconvolution" - "delay" - "demodulation" - "denoising" - "derivation" - "derivative" - "detection" - "dft" - "digital" - "digital-communications" - "digital-filters" - "digitize" - "discrete-signals" - "distance-metrics" - "distortion" - "dithering" - "downsampling" - "dsp-core" - "dynamic-programming" - "ecc" - "edge-detection" - "eeg" - "embedded-systems" - "emg" - "enhancement" - "equalization" - "equalizer" - "ergodic" - "estimation" - "estimators" - "face-detection" - "fading-channel" - "fec" - "feedback" - "fft" - "filter-bank" - "filter-design" - "filtering" - "filters" - "fingerprint-recognition" - "finite-impulse-response" - "fisheye" - "fixed-point" - "floating-point" - "forward-error-correction" - "fourier" - "fourier-series" - "fourier-transform" - "frequency" - "frequency-domain" - "frequency-response" - "frequency-spectrum" - "fsk" - "gabor" - "gaussian" - "geometry" - "gibbs-phenomenon" - "gradient" - "gradient-domain" - "group-delay" - "hardware" - "hardware-implementation" - "harris" - "highpass-filter" - "hilbert" - "histogram" - "hmm" - "homework" - "homography" - "hough-transform" - "hrtf" - "ica" - "ifft" - "image" - "image-compression" - "image-processing" - "image-registration" - "image-segmentation" - "impulse-response" - "independence" - "inertial-navigation" - "infinite-impulse-response" - "information-theory" - "input-muxing" - "integration" - "interpolation" - "java" - "jpeg" - "kalman" - "kalman-filters" - "knn" - "least-squares" - "lens" - "linear-algebra" - "linear-chirp" - "linear-phase" - "linear-prediction" - "linear-systems" - "local-features" - "lowpass-filter" - "lpc" - "machine-learning" - "magnitude" - "matched-filter" - "math" - "matlab" - "matlab-cvst" - "matrix" - "measurement" - "mfcc" - "modulation" - "morphological-operations" - "morphology" - "motion" - "motion-detection" - "moving-average" - "mp3" - "multi-channel" - "multipath" - "music" - "noise" - "non-linear" - "nonharmonic" - "nonuniform" - "normalization" - "nyquist" - "object-recognition" - "ocr" - "octave" - "ofdm" - "online-processing" - "opencv" - "optical-char-recognition" - "optical-flow" - "optimization" - "orthornormal" - "oscillator" - "panorama" - "parametric-eq" - "parks-mclellan" - "particle-filter" - "peak-detection" - "performance" - "periodic" - "phase" - "photo" - "pitch" - "pll" - "point-cloud" - "polar" - "poles-zeros" - "position" - "power-spectral-density" - "preprocessing" - "processing" - "project-ideas" - "projection" - "prony" - "psd" - "python" - "qpsk" - "quadrature" - "quantization" - "radio" - "raised" - "random" - "real-time" - "reconstruction" - "reed-solomon" - "reference-request" - "res" - "resampling" - "resolution" - "ridgelet" - "sampling" - "scale-space" - "scaling-function" - "sdr" - "segmentation" - "self-study" - "sensor" - "separability" - "shape-analysis" - "short-time-ft" - "sift" - "sigma-delta" - "signal-analysis" - "signal-detection" - "signal-synthesis" - "singing" - "smoothing" - "snr" - "soft-question" - "software-implementation" - "sound" - "source-separation" - "spatial" - "spectrogram" - "spectrum" - "speech" - "speech-processing" - "speech-recognition" - "speech-synthesis" - "state-space" - "stationary" - "statistics" - "stereo-vision" - "stft" - "stitching" - "stochastic" - "superresolution" - "supersampling" - "sweep" - "symmetry" - "syncronization" - "system-identification" - "taylor-expansion" - "template-matching" - "terminology" - "text-recognition" - "theory" - "thresholding" - "time-frequency" - "timing" - "tone-generation" - "tracking" - "transfer-function" - "transform" - "ultrasound" - "untagged" - "video" - "video-compression" - "video-processing" - "visual-tracking" - "visualization" - "viterbi-algorithm" - "voice" - "wave" - "waveform-similarity" - "wavelet" - "window" - "window-functions" - "z-plane" - "z-transform" - "zero-padding" - "zeros") diff --git a/data/tags/earthscience.el b/data/tags/earthscience.el deleted file mode 100644 index 569ac8b..0000000 --- a/data/tags/earthscience.el +++ /dev/null @@ -1,271 +0,0 @@ -("aeolian" - "air-currents" - "amber" - "antarctic" - "archaeology" - "astrobiology" - "atmosphere" - "atmosphere-modelling" - "atmosphere-models" - "atmospheric-chemistry" - "atmospheric-circulation" - "atmospheric-dust" - "auroras" - "axial-obliquity" - "barometric-pressure" - "bedrock" - "bifurcation" - "biogeochemistry" - "biological-oceanography" - "biomass" - "biomineralization" - "canada" - "carbon" - "carbon-cycle" - "carbonate" - "carboniferous" - "cf-metadata" - "chaos" - "climate" - "climate-change" - "climate-models" - "climatology" - "clouds" - "co2" - "continental-rifting" - "convection" - "core" - "coriolis" - "correlation" - "cretaceous" - "cryosphere" - "crystallography" - "crystals" - "cyclone" - "data-formats" - "database" - "desert" - "diagenesis" - "dike" - "downscaling" - "dynamics" - "earth-history" - "earth-observation" - "earth-rotation" - "earth-system" - "earth-tilt" - "earthquakes" - "east-africa-rift" - "economic-geology" - "electromagnetism" - "energetics" - "energy-cascade" - "enso" - "environmental-protection" - "equator" - "erosion" - "evaporites" - "evolution" - "fluid-dynamics" - "forest" - "fossil-fuel" - "fossils" - "fracking" - "gas" - "geoalchemy" - "geobiology" - "geochemistry" - "geochronology" - "geodesy" - "geodynamics" - "geography" - "geologic-layers" - "geology" - "geomagnetism" - "geomorphology" - "geophysics" - "geospatial" - "geothermal-heat" - "geysers" - "glaciation" - "glacier" - "glaciology" - "global-warming" - "goes" - "gpp" - "great-oxidation-event" - "greenland" - "groundwater" - "homework" - "hotspot" - "human-influence" - "humidity" - "hydrofluoric-acid" - "hydrology" - "hypothetical" - "ice" - "ice-age" - "ice-berg" - "ice-sheets" - "identification-request" - "igneous" - "in-situ-measurements" - "informatics" - "instrumentation" - "internal-waves" - "intraplate" - "intrusion" - "inversion" - "iron" - "isostasy" - "jet-stream" - "kimberlite" - "laboratory" - "land-surface" - "land-surface-models" - "latitude" - "lightning" - "limestone" - "magmatism" - "magnetosphere" - "mantle" - "mantle-plumes" - "mars" - "mass-extinction" - "measurements" - "mesoscale-meteorology" - "metamorphism" - "meteorite" - "meteorology" - "methane" - "microseism" - "milankovitch-cycles" - "mineralogy" - "minerals" - "mining" - "miocene" - "modeling" - "modelling" - "models" - "monsoon" - "moon" - "mos" - "mountain-building" - "mountains" - "nitrogen" - "nuclear-waste" - "numerical-modelling" - "nwp" - "ocean" - "ocean-currents" - "ocean-models" - "oceanography" - "open-data" - "ordovician" - "orogeny" - "orographic" - "ozone" - "paleobotany" - "paleoclimatology" - "paleogene" - "paleogeography" - "paleomagnetism" - "paleontology" - "passive-margin" - "peak-oil" - "permafrost" - "petrography" - "petroleum" - "petrology" - "physical-constants" - "planetary-formation" - "planetary-science" - "planetology" - "plate-tectonics" - "poles" - "pollution" - "potamology" - "precambrian" - "precipitation" - "predictability" - "projection" - "pyroclastic-flows" - "quasi-geostrophic-theory" - "radiative-transfer" - "radioactivity" - "radiosounding" - "rainbows" - "rare-earth" - "regional-geology" - "remote-sensing" - "resistances" - "resources" - "rheology" - "rivers" - "rocks" - "runoff" - "salinity" - "scaling" - "sea-breeze" - "sea-floor-spreading" - "sea-ice" - "sea-level" - "sedimentology" - "seismology" - "severe-weather" - "silurian" - "simulation" - "snow" - "soil" - "soil-moisture" - "solar-terrestrial-physics" - "solar-wind" - "solitary-waves" - "south-america" - "statistics" - "storms" - "stratigraphy" - "stratosphere" - "structural-geology" - "subduction" - "supervolcano" - "synoptic" - "taphonomy" - "technology" - "tectonics" - "temperature" - "terminology" - "terraforming" - "thermodynamics" - "thermohaline-circulation" - "thunderstorm" - "tibetan-plateau" - "tides" - "topography" - "tornado" - "tropical-cyclone" - "troposphere" - "tsunami" - "turbulence" - "units" - "upper-atmosphere" - "uranium" - "urban-climate" - "validation" - "vei" - "vog" - "volcanic-hazard" - "volcanoes" - "volcanology" - "vorticity" - "water" - "water-table" - "water-vapour" - "waves" - "weather" - "weather-forecasting" - "weather-modification" - "weather-satellites" - "wind" - "wrf" - "younger-dryas") diff --git a/data/tags/ebooks.el b/data/tags/ebooks.el deleted file mode 100644 index f02a7ae..0000000 --- a/data/tags/ebooks.el +++ /dev/null @@ -1,165 +0,0 @@ -("3g" - "4th-generation-kindle" - "accessories" - "adobe-digital-editions" - "adobe-reader" - "amazon" - "amazon-prime" - "android" - "annotations" - "apps" - "audio" - "audiobooks" - "baen-publishing" - "battery" - "bookeen" - "bookmarks" - "buttons" - "calibre" - "canada" - "cataloguing" - "cbz" - "cdf" - "chapters" - "charger" - "cleaning" - "cleartype" - "collections" - "color" - "comic-book" - "conversion" - "copyright" - "cover" - "creation" - "css" - "customization" - "cybook" - "dictionaries" - "display" - "djvu" - "document" - "download" - "dpi" - "drm" - "e-ink" - "ebook-management" - "ebook-readers" - "editing" - "embedding" - "energy-usage" - "epub" - "epub-reader" - "epub3" - "epubcheck" - "eyesight" - "feature-comparison" - "file-format" - "firmware" - "fixed-layout" - "font-rendering" - "fonts" - "format" - "formatting" - "free" - "hardware" - "history" - "html" - "hyperlinking" - "i18n" - "ibooks" - "image" - "independent-publishing" - "indesign" - "instapaper" - "isbn" - "kdp" - "kf8" - "kindle" - "kindle-4" - "kindle-app" - "kindle-cloud-reader" - "kindle-fire" - "kindle-paperwhite" - "kindle-pc-reader" - "kindle-previewer" - "kindle-touch" - "kobo" - "kobo-glo" - "kobo-store" - "language" - "law" - "lcd" - "library" - "libreoffice" - "linux" - "lit" - "loan" - "mac-os" - "maintenance" - "markdown" - "metadata" - "mobi" - "moon+" - "ncx" - "nook" - "nook-simple-touch" - "notes" - "odyssey" - "operating-system" - "opf" - "optimization" - "paperwhite" - "pdb" - "pdf" - "phone" - "power-management" - "pricing" - "printed" - "privacy" - "production" - "programming" - "public-domain" - "publishing" - "recommendation" - "reference-request" - "rss" - "sales" - "sbrz" - "screens" - "screensaver" - "search-engine" - "security" - "send-to-kindle" - "sideloading" - "sigil" - "sleep" - "smashwords" - "software" - "solar-power" - "sony" - "sony-prs-650" - "sony-prs-t1" - "source" - "standard" - "statistics" - "svg" - "sync" - "synchronization" - "table-of-contents" - "text-to-speech" - "time-to-read" - "tos" - "touchscreen" - "tracfone" - "translation" - "unbricking" - "united-arab-emirates" - "united-kingdom" - "united-states" - "untagged" - "usability" - "validation" - "website" - "wifi" - "windows" - "writing") diff --git a/data/tags/economics.el b/data/tags/economics.el deleted file mode 100644 index 5461a90..0000000 --- a/data/tags/economics.el +++ /dev/null @@ -1,227 +0,0 @@ -("algorithms" - "applied-econometrics" - "asset-prices" - "asset-pricing" - "asymmetric-information" - "austrian" - "balance-of-trade" - "banking" - "banks" - "behavioral-economics" - "bias" - "black-scholes-model" - "book-recommendation" - "border-adjustments" - "boundedrationality" - "business-cycles" - "central-banking" - "ces-function" - "chicago-school" - "coase-conjecture" - "coasian-bargaining" - "cobb-douglas" - "code" - "commodities" - "complete-markets" - "computation" - "consumer-credit" - "consumer-spending" - "consumer-surplus" - "consumer-theory" - "consumption" - "contest" - "continuous-time" - "contract-theory" - "convention" - "cooperative-game-theory" - "cost" - "creative-destruction" - "credit-friction" - "cryptocurrency" - "currency" - "currency-peg" - "current-events" - "data-request" - "debt" - "decision-theory" - "definition" - "deflation" - "demographics" - "development" - "dsge" - "dumping" - "dynamic-games" - "dynamic-programming" - "econometrics" - "economic-activity" - "economic-failure" - "economic-measurement" - "economic-methodology" - "economic-terms" - "econophysics" - "edgeworth-box" - "education" - "effective-price" - "efficient-markets" - "elasticity" - "embargo" - "emh" - "empirical-evidence" - "empirical-methods" - "energy-economics" - "environmental-economics" - "epistemology" - "exchange-rates" - "expected-utility" - "experimental-economics" - "externalities" - "federal-reserve" - "finance" - "financial" - "financial-crises" - "financial-economics" - "financial-markets" - "firm" - "first-order-conditions" - "fiscal-policy" - "fracking" - "fractals" - "free-float" - "free-trade" - "friedman" - "game-theory" - "gdp" - "gender-economics" - "general-equilibrium" - "gini-coefficients" - "gnp" - "government" - "great-depression" - "growth" - "growth-theory" - "history" - "history-economic-thought" - "homework" - "household-finance" - "housing" - "identification" - "immiserizing-growth" - "implan" - "income-mobility" - "industrial-organisation" - "inequality" - "inflation" - "information" - "interdisciplinary" - "international-economics" - "international-trade" - "investment" - "ipo" - "keynes" - "keynesian-economics" - "labor-economics" - "labor-theory" - "laffer-curve" - "leontief" - "linear-programming" - "liquidity" - "literature-request" - "long-run" - "macroeconomics" - "malthusian" - "markets" - "markov-chain" - "martingales" - "marxism" - "mathematical-economics" - "mechanism-design" - "micro-data" - "microeconomics" - "minimum-wage" - "monetary-policy" - "money-supply" - "monopoly" - "mrs" - "nash-equilibrium" - "national-bank" - "natural-experiment" - "natural-rate-unemployment" - "networks" - "new-keynesian-economics" - "nonparametrics" - "normative-economics" - "oligopoly" - "open-economy-macro" - "optimal-control" - "optimal-taxation" - "optimization" - "options-pricing" - "pacman-conjecture" - "pareto-efficiency" - "pareto-improvement" - "perfect-complements" - "pigouvian-taxes" - "political-economy" - "poverty" - "predatory-dumping" - "preferences" - "price-discrimination" - "price-elasticity" - "price-floors" - "price-level" - "probability" - "producer-surplus" - "producer-theory" - "production-function" - "productivity" - "profit-maximization" - "public-economics" - "purchasing-power-partity" - "pure-exchange-economy" - "randomized-experiment" - "ranking" - "reduced-form-estimation" - "reference-request" - "regulation" - "rims-ii" - "risk" - "risk-aversion" - "saving" - "school-choice" - "schools-of-thought" - "scientific-method" - "selection-bias" - "self-study" - "shares" - "signaling" - "simulations" - "social-choice" - "social-welfare" - "soft-question" - "solution-check" - "steady-state" - "stock-market" - "structural-estimation" - "supply-and-demand" - "surplus" - "taxation" - "teaching" - "technical-analysis" - "terminology" - "theory" - "time-series" - "total-surplus" - "transversality-condition" - "treatment-effect" - "uncertainty" - "unemployment" - "untagged" - "usa" - "utilitity" - "utility" - "value" - "wage-rigidity" - "wages" - "welfare" - "welfare-economics" - "worldbuilding") diff --git a/data/tags/edx-cs169-1x.el b/data/tags/edx-cs169-1x.el deleted file mode 100644 index 0c05ae6..0000000 --- a/data/tags/edx-cs169-1x.el +++ /dev/null @@ -1,322 +0,0 @@ -(".vdi" - "1-4" - "4" - "404" - "activerecord" - "add" - "additional-help" - "agile" - "anagram" - "anagrams" - "api" - "aptana-studio" - "array" - "article" - "assertion" - "assignment" - "association" - "atlanta" - "attr-accessor" - "autograder" - "autogradersubprocess" - "autotest" - "aws" - "bacon" - "bdd" - "binary-multiple-of-4" - "bones" - "book" - "branching" - "bundle" - "bundler" - "cache" - "calendar" - "california" - "capybara" - "career" - "categories" - "certificate" - "certification" - "ch5" - "chat" - "check-box-tag" - "checkbox" - "checkboxes" - "class" - "cloud9" - "code" - "codeacademy" - "coding" - "collaboration" - "command" - "comments" - "community" - "control" - "controller" - "count" - "course" - "courseinfo" - "courseware" - "coverage" - "create" - "credit" - "crud" - "cs169" - "cs169-2x" - "cs169.1x" - "cs169.2x" - "cucumber" - "database" - "db" - "deadline" - "debug" - "debugger" - "decorator" - "design-patterns" - "diagnostic" - "director" - "discussion" - "doitbest" - "download" - "duedates" - "ec2" - "ec2-security-groups" - "editor" - "edx" - "edx-bug" - "emacs" - "environment" - "erb" - "error" - "esaas" - "factory" - "failed" - "feedback" - "feedvalidator" - "filter" - "form-tag" - "forum" - "gem" - "gemfile" - "gems" - "git" - "gitconfig" - "github" - "gitimmersion" - "google" - "grader" - "grader-issues" - "grader-not-working" - "grades" - "grading" - "group" - "haml" - "hangouts" - "happy" - "hash" - "header" - "hello.rb" - "help" - "heroku" - "homework" - "homework0" - "homework3" - "hour-minutes-timezone" - "hw" - "hw0" - "hw0-part2" - "hw0-part3" - "hw1" - "hw1-3" - "hw1-4" - "hw1part1c" - "hw2" - "hw2-2" - "hw2-3" - "hw2-part3" - "hw2.1" - "hw2.2" - "hw3" - "hw4" - "hw5" - "id" - "ide" - "immersion" - "index" - "instaling" - "install" - "installation" - "instance-methods" - "instance-variables" - "irc" - "iterators" - "javascript" - "junior" - "kernel-driver" - "kindle" - "l-hw2" - "lab" - "lab-8" - "language" - "late" - "lecture" - "legacy" - "legacy-hw2" - "libv8" - "line" - "linecache19" - "link" - "linkedin" - "linux" - "localhost" - "login" - "meta-programming" - "method" - "migrate" - "migration" - "mindterm" - "missing" - "mock" - "models" - "moocs" - "movie.create" - "movies" - "multiple" - "mvc" - "mysql" - "nil" - "nilclass" - "nitrous" - "nitrous.io" - "nokogiri" - "not-rendering" - "of" - "omniauth" - "online" - "oracle" - "oracleofbacon" - "os-x" - "overview" - "p1" - "pair" - "pairing" - "pairprogramming" - "part1" - "part2" - "path" - "penalty" - "performace-questions" - "policies" - "policy" - "port" - "problem" - "problem-with-grader" - "professional" - "progress" - "proxy" - "puts" - "putty" - "quiz" - "quiz0" - "quiz01" - "quiz1" - "quiz2" - "quiz2-2" - "r-hw" - "rails" - "rails-console" - "railties" - "rake-routes" - "rating" - "recording" - "redirect" - "regex" - "regular-expressions" - "render" - "requisites" - "research" - "resilient" - "restful" - "rottenpotatoes" - "routes" - "routing" - "rspec" - "ruby" - "ruby-environment" - "ruby-on-rails" - "run" - "rvm" - "saas" - "saasbook" - "saasbookvm" - "sad" - "sanfrancisco" - "scaffold" - "scenario" - "schedule" - "score" - "screencast" - "script" - "seams" - "server" - "session" - "setup" - "share" - "sidebar" - "signup" - "simplecov" - "single" - "slow" - "soa" - "sort" - "specs" - "split" - "ssh" - "ssl" - "sso" - "string" - "stub" - "studygroup" - "submission" - "subtitles" - "survey" - "symbols" - "syntax" - "ta" - "table" - "tdd" - "terminal" - "testing" - "tests" - "thanks" - "themoviedb" - "tramp-mode" - "transcription" - "tunnel" - "twitter" - "typing-system" - "typo" - "ubuntu" - "untagged" - "update" - "upload" - "vagrant" - "validate" - "validation" - "veiw" - "verified-certificate" - "version" - "video" - "views" - "vimeo" - "virtualbox" - "virtualmachine" - "vm" - "vmware" - "week1" - "week4" - "windows" - "workload" - "xpath" - "youtube" - "zip") diff --git a/data/tags/electronics.el b/data/tags/electronics.el deleted file mode 100644 index 6833dbf..0000000 --- a/data/tags/electronics.el +++ /dev/null @@ -1,1382 +0,0 @@ -(".net-micro-framework" - "1-wire" - "12v" - "24v" - "2d-graphics" - "3-wire" - "3.3v" - "3d" - "3pi" - "4-20ma" - "4046" - "433mhz" - "488.2" - "555" - "5v" - "74hc595" - "74hct4046" - "74hct9046" - "74lvc1gu04" - "7805" - "7segmentdisplay" - "802.11" - "8051" - "8080" - "8085" - "ac" - "ac-dc" - "ac-polarity" - "accelerometer" - "accuracy" - "acid-trap" - "actel" - "active-components" - "activehdl" - "actuator" - "adapter" - "adc" - "adder" - "addressing" - "ads1210" - "afc" - "aldec" - "algorithm" - "alkaline" - "allegro" - "altera" - "alternatives" - "alternator" - "altium" - "alu" - "am" - "amp-hour" - "ampacity" - "amperage" - "amplifier" - "analog" - "analysis" - "android" - "antenna" - "antistatic" - "appliances" - "arc" - "architecture" - "arduino" - "arm" - "arm7" - "arm9" - "arp" - "asic" - "assembler" - "assembly" - "astable" - "atmega" - "atmel" - "atmel-studio" - "attenuator" - "attiny" - "atx" - "atxmega" - "audio" - "automation" - "automotive" - "autonomous" - "autorouter" - "autotransformer" - "aviation-electronics" - "avr" - "avr-gcc" - "avr32" - "avrdude" - "back-emf" - "bad-wiring" - "balancing" - "ballast" - "balun" - "banana-jack" - "bandwidth" - "barcode" - "barrier" - "bascom" - "base" - "basic" - "basic-stamp" - "batteries" - "battery-charging" - "battery-chemistry" - "battery-operated" - "baudrate" - "beagleboard" - "beaglebone-black" - "ber" - "best-practice" - "bfm" - "bga" - "bias" - "bidirectional" - "binary" - "biopotential" - "bit-bang" - "bit-rate" - "bjt" - "blink" - "blinkm" - "bluetooth" - "bluetooth-low-energy" - "bnc" - "board" - "bobbin" - "bode-plot" - "body-diode" - "bom" - "books" - "boolean-algebra" - "boolean-logic" - "boost" - "bootloader" - "bootstrap" - "boundary-scan" - "bpsk" - "breadboard" - "breakout" - "breakpoint" - "bridge" - "brightness" - "brownout" - "brushless-dc-motor" - "bsp" - "buck" - "buffer" - "bus" - "button" - "buying" - "bypass" - "bypass-capacitor" - "c" - "c++" - "c18" - "c51" - "cable-assemblies" - "cables" - "cache" - "cad" - "cadence" - "calculator" - "calculus" - "calibration" - "camera" - "can" - "canbus" - "capacitance" - "capacitive" - "capacitor" - "capacitor-charging" - "capacity" - "capsense" - "carry-look-ahead" - "cascode" - "cases" - "catapult-c" - "ccd" - "ccfl" - "ce" - "cell-battery" - "cellphone" - "ceramic" - "certification" - "character-lcd" - "characteristic-impedance" - "charge" - "charge-pump" - "charger" - "charging" - "charlieplexing" - "chassis" - "checklist" - "chip-design" - "choke" - "circuit" - "circuit-analysis" - "circuit-protection" - "cirrus" - "class-b" - "class-d" - "clearance" - "clock" - "clock-speed" - "clothing" - "cmos" - "cnc" - "coax" - "code" - "code-design" - "code-warrior" - "codevision" - "coil" - "coin-cell" - "colour" - "colour-coding" - "common" - "common-mode" - "communication" - "compact-fluorescent-lamp" - "comparator" - "comparison" - "compass" - "compensation" - "compiler" - "compliance" - "component-selection" - "components" - "computer-architecture" - "computers" - "condenser-microphone" - "conductance" - "conductive" - "conductivity" - "conductors" - "configuration" - "conflict-minerals" - "conformal-coating" - "connector" - "constant" - "constant-current" - "constraints" - "contact" - "contactor" - "contamination" - "contiki-os" - "continuous-rotation-servo" - "control" - "control-circuit" - "control-loop" - "control-system" - "controlled-impedance" - "controller" - "conversion" - "convert" - "converter" - "convolution" - "cooling" - "copper" - "copper-pour" - "cordic" - "core" - "corrosion" - "cortex-a" - "cortex-m" - "cortex-m0" - "cortex-m3" - "cortex-m4" - "cost" - "counter" - "coupling" - "cp2102" - "cpu" - "crc" - "creepage" - "crimp" - "crosstalk" - "crt" - "crystal" - "crystal-set" - "current" - "current-limiting" - "current-measurement" - "current-mirror" - "current-signal" - "current-sink" - "current-source" - "current-transformer" - "custom" - "cut-in" - "cutoff-frequency" - "cutting" - "cyclone" - "dac" - "dali" - "damage" - "darlington" - "data" - "data-operator" - "data-storage" - "datalogger" - "datasheet" - "db9" - "dc" - "dc-ac" - "dc-amplifier" - "dc-dc-converter" - "dc-motor" - "dc-offset" - "dc-transformer" - "ddr" - "ddr2" - "ddr3" - "dds" - "de9" - "debounce" - "debugging" - "debugwire" - "decibel" - "decoder" - "decoupling" - "decoupling-capacitor" - "delay" - "demodulation" - "depletion-region" - "derating" - "design" - "detection" - "detector" - "dev-kit" - "development" - "development-tools" - "device" - "dfm" - "diagram" - "die" - "dielectric" - "diff-amp" - "differential" - "digital-communications" - "digital-filter" - "digital-isolator" - "digital-logic" - "digital-modulation" - "digital-potentiometer" - "dimensions" - "dimmer" - "dimming" - "diodes" - "dip" - "diptrace" - "discharge" - "display" - "distance" - "distortion" - "distributors" - "divide" - "diy" - "dll" - "dma" - "dmx512" - "documentation" - "dot-convention" - "dot-matrix-display" - "dpdt" - "dram" - "drawing" - "drc" - "drift" - "drive-strength" - "driver" - "drone" - "dsp" - "dual" - "dummy-load" - "durability" - "duty-cycle" - "dxdesigner" - "dxf" - "e-core" - "e-ink" - "eagle" - "earth" - "ecl" - "eclipse" - "eda" - "edge" - "editor" - "education" - "eeprom" - "efficiency" - "el-wire" - "elan" - "electret" - "electric-machine" - "electrical" - "electrolytic-capacitor" - "electromagnetic" - "electromagnetism" - "electron" - "electronic-ballast" - "electronic-load" - "electrostrictive-effect" - "elf" - "embedded" - "emc" - "emf" - "emi-filtering" - "emissions" - "emitter-follower" - "emulator" - "enc28j60" - "enclosure" - "encoder" - "encoding" - "encryption" - "energia" - "energy" - "energy-harvesting" - "environmental-sealing" - "equipment" - "error" - "error-amplifier" - "error-correction" - "esc" - "esd" - "esr" - "etching" - "ethercat" - "ethernet" - "ewis" - "exception" - "expander" - "ezdsp" - "fabric" - "fabrication" - "failure" - "fan" - "far-field" - "fat" - "fault" - "fcc" - "feature-extraction" - "feedback" - "ferrite" - "ferrite-bead" - "fet" - "ffc" - "fft" - "field" - "fifo" - "filter" - "fingerprint-sensor" - "fir" - "firmware" - "flag" - "flash" - "flexible" - "flipflop" - "floating-pin" - "floating-point" - "flow" - "flow-control" - "fluid-pump" - "fluorescent-lamp" - "flux" - "flyback" - "fm" - "footprint" - "formula-derivation" - "forward-converter" - "fourier" - "fpaa" - "fpc" - "fpga" - "freertos" - "freescale" - "freeware" - "frequency" - "frequency-measurement" - "frequency-synthesis" - "fsk" - "fsmc" - "ftdi" - "full-bridge" - "function" - "function-generator" - "fuse-bits" - "fuses" - "gain" - "galvo-mirror" - "gate-driving" - "gauge" - "gcc" - "gdb" - "gear" - "generator" - "gerber" - "glcd" - "glue" - "gold" - "goniometer" - "gpio" - "gpio-external-interrupt" - "gprs" - "gps" - "gpu" - "graph" - "ground" - "ground-plane" - "grounding" - "groundloops" - "gsm" - "guitar-pedal" - "gumstix" - "gyrator" - "gyro" - "gyroscope" - "h-bridge" - "hacking" - "hall-effect" - "halogen" - "ham-radio" - "hard-drive" - "hardware" - "harmonics" - "hcs08" - "hd" - "hd44780" - "hdd" - "hdl" - "hdmi" - "header" - "heat" - "heat-protection" - "heatsink" - "hex" - "hf" - "hi-tech-compiler" - "hid" - "high-current" - "high-frequency" - "high-impedance" - "high-power" - "high-speed" - "high-voltage" - "hipot" - "hire" - "history" - "hobbyist" - "home-automation" - "home-experiment" - "homework" - "host" - "hot-air" - "how-does-it-work" - "hub" - "humidity" - "hvdc" - "hysteresis" - "i2c" - "i2s" - "iar" - "ibis" - "icsp" - "ide" - "ideas" - "identification" - "igbt" - "iir" - "image-sensor" - "imageprocessing" - "impedance" - "impedance-matching" - "imu" - "imx31" - "in-circuit" - "incandescent" - "inclination" - "indicator" - "inductance" - "induction" - "induction-motor" - "inductive" - "inductor" - "industrial" - "infrared" - "input" - "input-impedance" - "inrush-current" - "install" - "instrumentation" - "instrumentation-amplifier" - "insulation" - "integrated-circuit" - "integrator" - "intel" - "intercept" - "interconnect" - "interface" - "interference" - "interrupts" - "interview-questions" - "inverter" - "inverting-amplifier" - "io" - "ip67" - "ipad" - "ipc" - "iphone" - "ipod" - "ipv6" - "ir-receiver" - "iron" - "ise" - "isolation" - "isp" - "isr" - "j-link" - "jargon" - "java" - "jennic" - "jfet" - "jitter" - "jtag" - "jumper" - "karnaugh-map" - "keil" - "keyboard" - "keypad" - "kicad" - "kickback" - "kinect" - "kinetis" - "kirchhoffs-laws" - "kits" - "l298" - "ladder" - "lamp" - "laplace-transform" - "laptop" - "laser" - "laser-diode" - "laser-driver" - "latch" - "latency" - "launchpad" - "layers" - "layout" - "lcd" - "ldo" - "ldr" - "lead-acid" - "lead-free" - "leakage-current" - "learning" - "led" - "led-matrix" - "led-strip" - "legal" - "length-matching" - "level" - "level-shifting" - "level-translation" - "libero" - "library" - "licensing" - "lifepo4" - "lifetime" - "light" - "light-guide" - "light-sensor" - "lightning" - "lilypad" - "line" - "line-power" - "linear" - "linear-regulator" - "linker" - "linker-script" - "linux" - "lipo" - "lithium" - "lithium-ion" - "lithium-poly" - "litz-wire" - "lm317" - "lm335" - "lm386" - "lm3915" - "lm78xx" - "load" - "load-cell" - "logic-analyzer" - "logic-family" - "logic-gates" - "logic-level" - "logicworks" - "loop" - "loop-gain" - "loss" - "low-battery" - "low-pass" - "low-power" - "low-voltage" - "lpc" - "lpc43xx" - "lpcxpresso" - "lpf" - "lti-system" - "ltspice" - "lufa" - "lvds" - "mac" - "magnetics" - "magnetometer" - "magstripe" - "mains" - "manchester-coding" - "manufacture" - "manufacturing" - "manufacturing-process" - "markings" - "matching" - "materials" - "math" - "math-notation" - "matlab" - "matrix" - "max232" - "max3232" - "maximum-ratings" - "maxmsp" - "mbed" - "measurement" - "mechanical" - "mechanical-assembly" - "memory" - "memristor" - "mems" - "mems-microphone" - "metal" - "metal-film" - "meter" - "microblaze" - "microchip" - "microcontroller" - "microphone" - "microphonics" - "microprocessor" - "microsd" - "microsoft" - "microstrip" - "microwave" - "midi" - "mips" - "mirror" - "mixer" - "mobile" - "mobile-robot" - "modbus" - "mode" - "model" - "model-railroad" - "modeling" - "modelsim" - "modem" - "modulate" - "modulation" - "monitor" - "mosfet" - "mosfet-driver" - "motherboard" - "motion" - "motor" - "motor-terminals" - "mount" - "mounting-holes" - "mouse" - "mov" - "movement" - "mp3" - "mplab" - "mplabx" - "mppt" - "msp" - "msp430" - "multimeter" - "multiplexer" - "multiplier" - "multisim" - "music" - "mutual-inductance" - "navigation" - "negative" - "netduino" - "network" - "network-interface" - "networking" - "nfc" - "nicd-battery" - "nimh" - "nixie" - "nmos" - "noise" - "noise-spectral-density" - "noisefloor" - "non-inverting" - "non-linear" - "non-volatile-memory" - "norton" - "not-gate" - "npn" - "nrf24l01" - "ntsc" - "nucleo" - "nunchuck" - "nxp" - "nxt" - "obd" - "obfuscation" - "obsolescence" - "offset" - "ohms" - "ohms-law" - "oled" - "omap" - "op-amp" - "open-collector" - "open-drain" - "open-hardware" - "open-source" - "openocd" - "operating-system" - "optical-fibre" - "optics" - "optimization" - "opto-isolator" - "optoelectronics" - "orcad" - "os" - "oscillation" - "oscillator" - "oscilloscope" - "osx" - "otg" - "outdoors" - "outlet" - "output" - "overclocking" - "oversampling" - "packages" - "pads" - "padstack" - "parallax" - "parallel" - "parallel-port" - "parasitic-capacitance" - "parity" - "passive" - "passive-components" - "passive-networks" - "pata" - "pcb" - "pcb-antenna" - "pcb-assembly" - "pcb-design" - "pcb-fabrication" - "pcb-layers" - "pcb123" - "pcie" - "pcm" - "peltier" - "performance" - "ph" - "phase" - "phase-margin" - "phase-shift" - "phasor" - "photodiode" - "photoresistor" - "phototransistor" - "phy" - "physical-design" - "physics" - "pic" - "pic-ccs" - "picaxe" - "pickit" - "picoamp" - "picoblaze" - "pid-controller" - "piezo" - "piezo-buzzer" - "piezoelectric-effect" - "piezoelectricity" - "pinout" - "pins" - "planahead" - "plastic" - "player" - "plc" - "pll" - "plot" - "plug" - "pmbus" - "pmos" - "pn-junction" - "pnp" - "poe" - "polarity" - "pololu" - "polyfuse" - "port" - "portable" - "position" - "potentiometer" - "potting" - "pov" - "power" - "power-consumption" - "power-dissipation" - "power-distribution" - "power-electronics" - "power-factor-correction" - "power-line-communication" - "power-meter" - "power-quality" - "power-supply" - "power-transmission" - "practical" - "preamp" - "precision" - "pricing" - "printed" - "probe" - "problem" - "process" - "processing" - "processor" - "product-design" - "production" - "production-testing" - "profibus" - "profile" - "programmable-logic" - "programmer" - "programming" - "project-management" - "propagation" - "protection" - "proteus" - "protoboard" - "protocol" - "prototyping" - "proximity-sensor" - "ps2" - "psoc" - "psram" - "ptc" - "pulldown" - "pullup" - "pulse" - "pulse-width-coding" - "push-pull" - "pwm" - "python" - "qfn" - "qpsk" - "quad-copter" - "quadrature" - "quartus" - "quartus-ii" - "r2r" - "radar" - "radiation" - "radio" - "ram" - "random" - "random-number" - "range-detector" - "raspberry-pi" - "ratings" - "raw-data" - "rc5" - "rca" - "reactance" - "reactive-power" - "receiver" - "rectifier" - "redundancy" - "reed" - "reference" - "reference-materials" - "reflow" - "register" - "regulations" - "relay" - "reliability" - "remote" - "remote-control" - "renesas" - "repair" - "research" - "reset" - "resistance" - "resistive" - "resistivity" - "resistor-ladder" - "resistor-transistor-logic" - "resistors" - "resolution" - "resonance" - "resonant-converter" - "reuse" - "reverse-engineering" - "reverse-polarity" - "rework" - "rf" - "rfid" - "rgb" - "ribbon-cable" - "ringing" - "ripple" - "ripple-counter" - "ripple-current" - "rise-time" - "rms" - "robot" - "robotics" - "rohs" - "rom" - "roomba" - "rotary" - "rotor" - "routing" - "rs232" - "rs422" - "rs485" - "rtc" - "rtd" - "rtl" - "rtos" - "s-parameters" - "safety" - "saleae-logic-analyzer" - "salvage" - "sample-and-hold" - "sampling" - "santa" - "santa-claus" - "sata" - "saturation" - "sbc" - "scaling" - "scart" - "schematics" - "schmatics" - "schmitt-trigger" - "schottky" - "scpi" - "scr" - "screw-terminal" - "script" - "sd" - "sdio" - "sdr" - "sdram" - "security" - "selectmap" - "semiconductors" - "sensing" - "sensitivity" - "sensor" - "sensor-node" - "sepic" - "serial" - "serial-bus" - "series" - "servo" - "setup" - "sharedbus" - "shield" - "shielding" - "shift-register" - "shoot-through" - "short-circuit" - "sht15" - "shunt" - "siemens" - "signal" - "signal-integrity" - "signal-processing" - "signal-theory" - "signal-to-noise" - "silicon-carbide" - "silkscreen" - "sim" - "sim900" - "simulated" - "simulation" - "simulator" - "sine" - "single-ended" - "single-phase" - "sinking" - "siren" - "skew" - "skin-effect" - "slave" - "sleep" - "slew-rate" - "smart-card" - "smartfusion" - "smbus" - "smith-chart" - "smoke-sensor" - "snr" - "snubber" - "soc" - "socket" - "soe" - "softconsole" - "softcore" - "software" - "software-defined-radio" - "solar-cell" - "solder-mask" - "solder-paste" - "soldering" - "solenoid" - "solenoid-valve" - "solid-state-devices" - "solid-state-relay" - "sound" - "source" - "sourcing" - "space" - "spacing" - "spark" - "sparkfun" - "spartan" - "spartan-6" - "speakers" - "specifications" - "spectrum" - "spectrum-analyzer" - "speech" - "speed" - "speedcontroller" - "spi" - "spice" - "spread-spectrum" - "sram" - "ssd" - "ssd1306" - "stability" - "stable" - "stack" - "stack-pointer" - "stack-up" - "standard" - "state-machines" - "static" - "statistics" - "stator" - "steady-state" - "stellaris" - "stencil" - "stepper-motor" - "stereo" - "stm32" - "stm32cubemx" - "stm32f0" - "stm32f10x" - "stm32f2" - "stm32f3" - "stm32f4" - "stm8" - "storage" - "strain-gage" - "stress-testing" - "stripboard" - "subcircuit" - "substitution" - "summing" - "supercapacitor" - "supply-chain" - "surface-mount" - "surge-protection" - "swd" - "switch-mode-power-supply" - "switches" - "switching" - "switching-losses" - "switching-regulator" - "swr-meter" - "symbol" - "synchro" - "synchronous" - "synthesis" - "synthesizer" - "system" - "system-on-chip" - "system-verilog" - "systemc" - "tachometer" - "tag" - "tank" - "tantalum" - "tcl-script" - "tcp-ip" - "teensy" - "telemetry" - "telephone" - "temperature" - "terminal" - "termination" - "terminology" - "ternary" - "tesla-coil" - "test" - "test-equipment" - "tester" - "testing" - "tft" - "theory" - "theremin" - "thermal" - "thermal-cutoff" - "thermistor" - "thermocouple" - "thevenin" - "thread" - "three-phase" - "through-hole" - "thunderbolt" - "thyristor" - "ti" - "ti-ccstudio" - "time" - "time-constant" - "timer" - "timing" - "timing-analysis" - "tl431" - "tl494" - "to220" - "toggle-switch" - "tolerance" - "toner-transfer" - "tools" - "torque" - "toslink" - "totem-pole" - "touch-panel" - "touchscreen" - "tqfp" - "trace" - "training" - "transceiver" - "transducer" - "transfer" - "transfer-function" - "transformer" - "transformerless" - "transient" - "transient-suppression" - "transistor-array" - "transistors" - "transmission" - "transmission-line" - "transmitter" - "tri-state" - "triac" - "trigger" - "troubleshooting" - "ttl" - "tube" - "tuner" - "tutorial" - "tv" - "tvs" - "twi" - "twisted-pair" - "twitter" - "uart" - "uav" - "uc3" - "ucf" - "ul" - "ultiboard" - "ultrasound" - "undervoltage" - "underwater" - "units" - "untagged" - "update" - "ups" - "usart" - "usb" - "usb-device" - "usb-host" - "usb-hub" - "usb-otg" - "usbasp" - "user-interface" - "uv" - "vacuum-tube" - "varistor" - "vca" - "velocity" - "verification" - "verilog" - "vf-fv-converter" - "vga" - "vhdl" - "vhf" - "via" - "vibration" - "vibration-motor" - "video" - "video-transmitter" - "vintage" - "virtex-series-fpga" - "vivado" - "vlsi" - "vna" - "voltage" - "voltage-clipping" - "voltage-detector" - "voltage-divider" - "voltage-measurement" - "voltage-reference" - "voltage-regulator" - "voltage-source" - "w5100" - "wake-on-radio" - "wall-wart" - "washing" - "watchdog" - "water" - "waterproof" - "watts" - "wave" - "waveform" - "waveguide" - "wear-leveling" - "wearable" - "website" - "wheatstone-bridge" - "wheel" - "wien-bridge" - "wifi" - "wifi-direct" - "wifly" - "wii" - "wiki" - "winding" - "windows" - "wire" - "wire-terminals" - "wirebonding" - "wireless" - "wireless-charging" - "wiring" - "workbench" - "write-protect" - "x-10" - "x86" - "xbee" - "xc8" - "xilinx" - "xilinx-system-generator" - "xmega" - "z80" - "zener" - "zero-crossing" - "zif" - "zigbee") diff --git a/data/tags/ell.el b/data/tags/ell.el deleted file mode 100644 index 2fef9e4..0000000 --- a/data/tags/ell.el +++ /dev/null @@ -1,351 +0,0 @@ -("abbreviations" - "absolute-clauses" - "accent" - "acronyms" - "active-voice" - "adjectives" - "adjuncts" - "adverbial-particles" - "adverbial-phrase" - "adverbs" - "alternatives" - "ambiguity" - "ambitransitive-verbs" - "american-accent" - "american-english" - "answers" - "antecedent" - "antonyms" - "apostrophe" - "appositive" - "archaic" - "archaisms" - "articles" - "as-like" - "aspect" - "attributive" - "australian-english" - "auto-antonyms" - "auxiliary-verbs" - "backshifting" - "british-english" - "canadian-english" - "canonical-post" - "capitalization" - "case" - "causatives" - "clauses" - "cleft-constructions" - "collective-nouns" - "collocation" - "colloquial" - "colons" - "commas" - "comparative" - "comparative-degree" - "comparison" - "complement" - "complementation" - "complimentary-close" - "compounds" - "comprehension" - "computer" - "conditional-constructions" - "confusable" - "conjugations" - "conjunctions" - "connotations" - "consonant-clusters" - "consonants" - "constituent" - "construction" - "continuous" - "contractions" - "conversation" - "cooking" - "coordination" - "correlative-conjunctions" - "correspondence" - "countability" - "countable-nouns" - "culture" - "debate" - "definite-article" - "definition" - "demonstrative" - "demonyms" - "determiner" - "deverbal" - "dialect" - "dictionaries" - "difference" - "diminutive" - "direct-object" - "direct-speech" - "disagreement" - "ditransitive" - "do-support" - "double-genitive" - "dummy-pronouns" - "early-modern-english" - "elision" - "ellipsis" - "email" - "etymology" - "euphony" - "exam-question" - "exclamatives" - "existentials" - "expletive-pronoun" - "expressions" - "extraposition" - "false-friend" - "false-title" - "feminine" - "formal" - "formality" - "format" - "free-relative-clauses" - "french" - "functional-english" - "functions" - "future" - "future-perfect" - "future-tense" - "gender" - "genitive" - "german" - "gerund" - "grammar" - "grammatical-number" - "grammaticality" - "grammaticality-in-context" - "greetings" - "headlinese" - "history" - "homophones" - "hyperbaton" - "hyphen" - "idiom-meaning" - "idiom-request" - "idioms" - "image-identification" - "impersonal-verb" - "indefinite-article" - "indian-english" - "indirect-object" - "infinitive" - "infinitive-phrase" - "informal-english" - "initialisms" - "intensifier" - "internet" - "interpretation" - "interrogative" - "inversion" - "ipa" - "irrealis-mood" - "irregular-verbs" - "jargon" - "jokes" - "language-improvement" - "learning" - "legal" - "letters" - "lexeme" - "licensing" - "life-english" - "linker" - "listening" - "lists" - "literature" - "loan-words" - "logic" - "lyrics" - "mandative" - "mathematics" - "meaning" - "meaning-in-context" - "memorization" - "metaphor" - "military" - "minimal-pairs" - "mnemonic" - "modal-verbs" - "modifiers" - "mood" - "morphology" - "names" - "negation" - "negative" - "neologisms" - "nominalization" - "noun-phrases" - "nouns" - "numbers" - "numerals" - "objects" - "offensive-language" - "onomatopoeia" - "opposite-word" - "orthography" - "parallel" - "parallelism" - "paraphrase" - "parenthesis" - "parsing" - "part-of-speech" - "participal-clause" - "participle-clause" - "participles" - "parts-of-speech" - "passage-correction" - "passive" - "passive-voice" - "past-continuous" - "past-participle" - "past-perfect" - "past-simple" - "past-tense" - "pedagogy" - "perfect-aspect" - "perfect-constructions" - "periods" - "personal-pronouns" - "phonetics" - "phonology" - "phrasal-adjective" - "phrasal-preposition" - "phrasal-verbs" - "phrase" - "phrase-choice" - "phrase-meaning" - "phrase-request" - "phrase-usage" - "plural" - "poetry" - "point-of-view" - "polarity-items" - "politeness" - "possessive" - "practice-interpretation" - "pragmatics" - "predeterminer" - "predicate" - "prefixes" - "prepositional-phrase" - "prepositions" - "present-continuous" - "present-participle" - "present-perfect" - "present-progressive" - "present-tense" - "progressive-aspect" - "pronouns" - "pronunciation" - "proper-nouns" - "prosody" - "proverbs" - "pun" - "punctuation" - "qualifiers" - "quantifiers" - "question-marks" - "questions" - "quotation-marks" - "quotes" - "reading" - "reading-aloud" - "reasoning" - "redundancy" - "reflexive-pronouns" - "register" - "relative-adverb" - "relative-clauses" - "relative-pronouns" - "repetition" - "reported-speech" - "responses" - "restrictive-clauses" - "rhetoric" - "roots" - "salutation" - "seinfeld" - "semi-modals" - "semicolons" - "sentence-choice" - "sentence-construction" - "sentence-meaning" - "sentence-structure" - "sentence-usage" - "sentences" - "silent-letter" - "simple" - "singular" - "sit-set" - "slang" - "slash" - "so" - "spacing" - "speaking-english" - "speech" - "spelling" - "sport" - "stative-verbs" - "style" - "subject" - "subject-complement" - "subject-verb-agreement" - "subjunctive" - "subordinate-clauses" - "such" - "suffixes" - "superlative" - "symbols" - "synonyms" - "syntax" - "tag-questions" - "technical" - "temporal-references" - "tense" - "tense-agreement" - "terminology" - "th" - "that" - "third-person" - "time" - "time-construct" - "time-words" - "toponyms" - "transformation" - "transitive-verbs" - "translation" - "typography" - "uncountable-nouns" - "understanding" - "untagged" - "usage" - "valediction" - "verb" - "verb-agreement" - "verb-forms" - "verb-usage" - "vocabulary" - "vowels" - "which" - "wish" - "word" - "word-choice" - "word-class" - "word-difference" - "word-form" - "word-in-context" - "word-meaning" - "word-order" - "word-origin" - "word-play" - "word-request" - "word-stress" - "word-usage" - "writing" - "zero-article") diff --git a/data/tags/emacs.el b/data/tags/emacs.el deleted file mode 100644 index cabec64..0000000 --- a/data/tags/emacs.el +++ /dev/null @@ -1,454 +0,0 @@ -("abbrev" - "accessibility" - "advice" - "aggressive-indent-mode" - "align" - "android" - "ansi-term" - "appearance" - "apple" - "apropos" - "aquamacs" - "archive-mode" - "artist-mode" - "assembly" - "association-lists" - "async" - "auctex" - "auto-complete-mode" - "auto-insert" - "auto-revert-mode" - "auto-save" - "autoconf-mode" - "automation" - "autopair" - "backup" - "bash" - "bash-completion" - "bbdb" - "beamer" - "bell" - "benchmarking" - "bibtex" - "bidirectional-support" - "binary" - "bongo" - "bookmarks" - "buffer-display-table" - "buffer-list" - "buffer-local" - "buffer-modified" - "buffers" - "byte-compilation" - "bytecode" - "c" - "c++" - "c-mode" - "calc" - "calendar" - "capitalization" - "case-folding" - "cask" - "cc-mode" - "cedet" - "character-encoding" - "cider" - "cl-lib" - "clipboard" - "clojure" - "code-folding" - "coloring" - "colors" - "comint" - "commands" - "comment" - "common-lisp" - "company-mode" - "compilation" - "compilation-mode" - "completion" - "compose-region" - "compression" - "copy-paste" - "crash" - "csharp-mode" - "css" - "csv" - "ctags" - "cursor" - "custom" - "customization" - "customize" - "daemon" - "data-structures" - "debugging" - "define-key" - "deft-mode" - "desktop" - "development" - "diff-mode" - "directories" - "dired" - "disabled-commands" - "display" - "doctor" - "documentation" - "docview" - "ecb" - "echo-area" - "eclimd" - "edebug" - "ediff" - "editing" - "efficiency" - "ein" - "eldoc" - "elfeed" - "elisp" - "elisp-macros" - "emacs-25" - "emacs-compilation" - "emacs-development" - "emacs-internals" - "emacs-lisp-mode" - "emacs-speaks-statistics" - "emacs23" - "emacs24.4" - "emacsclient" - "emacspeak" - "email" - "emms" - "english" - "environment" - "erc" - "error-handling" - "ert" - "eshell" - "ess" - "eval-expression" - "events" - "evernote" - "evil" - "eww" - "excursion" - "faces" - "feedly" - "ffap" - "file-cache" - "file-local-variables" - "files" - "fill-paragraph" - "find-file" - "find-file-at-point" - "flx-ido" - "flycheck" - "flyspell" - "focus" - "follow" - "follow-mode" - "font-lock" - "fonts" - "formatting" - "forms" - "fortran-mode" - "frames" - "fringe" - "fringe-mode" - "ftp" - "functions" - "git" - "github" - "gnome" - "gnus" - "gnutls" - "god-mode" - "good-practices" - "google-docs" - "gtd" - "gud" - "hash-table" - "haskell-mode" - "header-line" - "helm" - "helm-for-files" - "helm-semantic-imenu" - "help" - "help-mode" - "hexl-mode" - "history-variables" - "hooks" - "html" - "http" - "ibuffer" - "icicles" - "ide" - "ido" - "iedit-mode" - "image-mode" - "images" - "imap" - "imenu" - "in-buffer-settings" - "indentation" - "indirect-buffers" - "info" - "init-file" - "input-method" - "insert" - "integration" - "interactive" - "interactive-development" - "introspection" - "invocation" - "ios" - "ipython" - "irc" - "isearch" - "ispell" - "jabber" - "java" - "javascript" - "js2-mode" - "key-bindings" - "key-chord-mode" - "keyboard-macros" - "keymap" - "keystrokes" - "kill-buffer" - "kill-ring" - "large-files" - "latex" - "learning" - "lexical-scoping" - "libraries" - "line-break" - "line-numbers" - "line-spacing" - "linum-mode" - "linux" - "lisp-interaction-mode" - "literate-programming" - "load-path" - "local-variables" - "logging" - "lossage" - "m-x" - "macros" - "magit" - "maintenance" - "major-mode" - "makefile-mode" - "manual" - "margin" - "mark" - "markdown" - "markdown-mode" - "matlab" - "menu-bar" - "mercurial" - "message" - "mew" - "microsoft-windows" - "minibuffer" - "minimap" - "minor-mode" - "mode-line" - "motion" - "mouse" - "move-text" - "movemail" - "mu4e" - "multiple-cursors" - "muse" - "music-player" - "navigation" - "networking" - "newlines" - "nrepl" - "nxml" - "occur" - "omnisharp" - "openwith" - "org-agenda" - "org-babel" - "org-drill" - "org-export" - "org-mode" - "org-publish" - "org-spreadsheet" - "org-table" - "orgstruct" - "osx" - "outline" - "outline-mode" - "overlays" - "package" - "package-development" - "package-repositories" - "pairing" - "pallet" - "paredit" - "parentheses" - "parse-time" - "parsing" - "passwords" - "path" - "pdf" - "performance" - "perl" - "permalink" - "pgp" - "php-mode" - "picture-mode" - "point" - "popup" - "portable" - "powerline" - "predictive-mode" - "prefix-argument" - "prefix-keys" - "prelude" - "presentation" - "prettify-symbols-mode" - "preview-latex" - "privileges" - "process" - "productivity" - "profiler" - "prog-mode" - "programming" - "project" - "projectile" - "projectile-rails" - "property-lists" - "proxy" - "pry" - "pulseaudio" - "pylint" - "pymacs" - "python" - "quail" - "r" - "rails" - "read-only-mode" - "rectangle" - "recursive-edit" - "refactoring" - "reftex-mode" - "regexp" - "region" - "registers" - "regular-expressions" - "remote" - "repl" - "replace" - "req-package" - "restclient" - "restructuredtext" - "revert-buffer" - "rgrep" - "rmail" - "root" - "rope" - "rss" - "ruby" - "ruby-mode" - "rx" - "saving" - "scheduling" - "scheme" - "scratch-buffer" - "screencast" - "scrolling" - "search" - "security" - "self-insert-command" - "semantic-mode" - "sentences" - "server" - "session" - "shell" - "shell-command" - "shell-mode" - "shellcheck" - "shr" - "site-lisp" - "skeleton" - "skewer-mode" - "slime" - "smartparens" - "smex" - "smie" - "software-distribution" - "sorting" - "spacemacs" - "spell-checking" - "sql-interactive-mode" - "sql-mode" - "sqlite" - "ssh" - "ssl" - "string" - "stumpwm" - "subprocess" - "sudo" - "swift" - "sx.el" - "symbolic-links" - "symbols" - "syntax" - "syntax-highlighting" - "syntax-table" - "tabbar" - "table" - "tablet" - "tabs" - "temp-buffer" - "term" - "terminal" - "terminal-emacs" - "tern" - "testing" - "tex" - "tex-mode" - "text" - "text-editing" - "text-properties" - "text-to-speech" - "themes" - "time-date" - "title" - "tramp" - "translation" - "typography" - "uml" - "undo" - "undo-tree-mode" - "unicode" - "uniquify" - "upgrade" - "url" - "use-package" - "variables" - "verilog" - "version-compatibilty" - "version-control" - "vim-emulation" - "w3m" - "wanderlust" - "web" - "web-mode" - "whitespace" - "whitespace-mode" - "widget" - "wildcard" - "windmove" - "window" - "with-editor" - "writing" - "x" - "x11" - "xemacs" - "xml" - "yank" - "yasnippet") diff --git a/data/tags/english.el b/data/tags/english.el deleted file mode 100644 index cb0e25b..0000000 --- a/data/tags/english.el +++ /dev/null @@ -1,902 +0,0 @@ -("20th-century-language" - "aave" - "abbreviations" - "ablaut" - "able-eable" - "able-ible" - "abstract-nouns" - "academia" - "accent" - "acceptability" - "accusative-pronouns" - "acronyms" - "active-voice" - "adjective-position" - "adjectives" - "adjunct" - "adverb-position" - "adverbials" - "adverbs" - "affixes" - "agent-noun-suffix" - "agent-nouns" - "agreement" - "aint" - "all-of" - "all-the" - "allophones" - "alphabet" - "also-too" - "alternative" - "alternative-words" - "ambiguity" - "american-english" - "among-between" - "ampersand" - "anacoluthon" - "analogy" - "and-and" - "and-or" - "anglicization" - "animal" - "antanaclasis" - "antecedents" - "antedecent" - "antimeria" - "antiphrasis" - "antipodean-english" - "antonyms" - "any-every" - "apa-format" - "aphorism" - "aphorism-requests" - "apodosis" - "apostrophe" - "appositives" - "appropriate" - "archaic" - "argument-structure" - "articles" - "as-like" - "aspect" - "aspiration" - "asyndeton" - "at-by" - "at-in" - "at-on" - "at-with" - "attributive" - "australian-english" - "auto-antonyms" - "auxiliary-verbs" - "backshifting" - "bare-conditional" - "bare-infinitive" - "be" - "be-deletion" - "best-most" - "bilingual" - "binomials" - "biology" - "blend-words" - "blending" - "book-title" - "books" - "braces" - "brands" - "bring-take" - "british-dialect" - "british-english" - "business-language" - "buzzword" - "by-on" - "calques" - "camel-case" - "can-could" - "can-may" - "can-vs-be-able" - "canadian-english" - "capitalization" - "caribbean-english" - "case" - "catachresis" - "catch-phrases" - "category" - "catenative-verbs" - "causative-verbs" - "christmas" - "cinema" - "citation" - "class-based-usage" - "clauses" - "clefts" - "cliche" - "clusivity" - "collective-nouns" - "collocation" - "colloquialisms" - "colon" - "colors" - "comma" - "comma-before-and" - "comma-splices" - "commands" - "common-pronunciation" - "common-word" - "commonweath-english" - "comparative" - "comparison" - "complement" - "complex-sentences" - "compliment" - "compound-adjectives" - "compound-sentences" - "compound-subject" - "compound-words" - "compounds" - "comprehension" - "computing" - "concept" - "concision" - "concord" - "conditional" - "conditional-future" - "conditional-perfect" - "confusables" - "conjugation" - "conjunctions" - "connotation" - "consonants" - "construction" - "contemporary-english" - "continuous" - "contraction-vs-full-form" - "contractions" - "contradiction" - "conundrum" - "convention" - "conversation" - "conversion" - "coordinating-conjunctions" - "coordination" - "copula" - "correct" - "correction" - "correlative-conjunctions" - "correspondence" - "could" - "count" - "countable-nouns" - "couple" - "cultural-correctness" - "cultural-phrases" - "currency" - "dangling-participles" - "danish" - "dash" - "data-is-are" - "date" - "dedications" - "defective-nouns" - "defective-verbs" - "definite-article" - "degree-of-comparison" - "demonstrative" - "demonyms" - "deontic-vs-epistemic" - "dependent-clause" - "derivation" - "derivational-morphology" - "derivative" - "derogatory" - "description" - "descriptive-grammar" - "determiners" - "diacope" - "diacritics" - "diaeresis" - "diagramming" - "dialects" - "dialogue" - "dickens" - "diction" - "dictionaries" - "did" - "differences" - "diminutive" - "diphthongs" - "direct-object" - "direction" - "disambiguities" - "discourse-markers" - "disjunction" - "disjuncts" - "distinctions" - "ditransitivity" - "do" - "do-support" - "double-consonant" - "double-genitive" - "double-negation" - "doubled-words" - "dummy-it" - "during" - "dynamic-verbs" - "early" - "early-modern-english" - "ed-vs-t" - "editing" - "eggcorn" - "either-or" - "elative" - "ellipsis" - "email" - "embedded-questions" - "emoticons" - "emotions" - "emphasis" - "endearment" - "ending" - "entomology" - "epigram" - "epithets" - "eponyms" - "equivalence" - "er-ee" - "errors" - "esl" - "essay" - "etc" - "ethnonyms" - "etymology" - "euphemisms" - "example" - "exclamation-mark" - "exclamations" - "explanation" - "expression-choice" - "expressions" - "eye-dialect" - "famous-controversy" - "feminine" - "figurative" - "figures-of-speech" - "filler-words" - "finance" - "finite-verbs" - "firefox" - "flat-adverbs" - "flow" - "food" - "footnotes" - "foreign-phrases" - "formality" - "fractions" - "fragments" - "french" - "functions" - "future-in-past" - "future-perfect" - "future-tense" - "games" - "gender" - "gender-explicit" - "gender-neutral" - "gender-politics" - "gender-positive" - "general-vs-specific" - "generic" - "generic-term" - "generic-they" - "gentilics" - "geography" - "german" - "germanic-languages" - "gerund" - "gerund-phrases" - "gestures" - "get-be" - "glide" - "global" - "got-gotten" - "government" - "grammar" - "grammatical-gender" - "grammatical-number" - "grammatical-structure" - "grammaticality" - "grammatically" - "gre" - "great-vowel-shift" - "greek" - "greengrocers-apostrophe" - "greetings" - "halloween" - "handwriting" - "have-got" - "have-to-vs.must" - "heading" - "headline-case" - "headline-english" - "hebrew" - "heteronyms" - "hiberno-english" - "historical-change" - "history" - "homework" - "homograph" - "homonyms" - "homophones" - "honorifics" - "how-to" - "however-placement" - "humor" - "hyperbaton" - "hyperbole" - "hypercorrection" - "hypernyms" - "hyphen" - "hyponyms" - "i-mutation" - "ic-ical" - "iconography" - "identifier-choice" - "idiom-meaning" - "idiom-requests" - "idiomatic" - "idioms" - "if-question" - "if-that" - "if-vs-whether" - "if-whether" - "image-identification" - "imperative" - "in-for" - "in-of" - "in-on" - "in-order-to" - "inanimate" - "indeed" - "indefinite-article" - "indefinite-pronouns" - "independent-clauses" - "indian-english" - "indirect-object" - "indirect-question" - "indirect-speech" - "infinitive" - "infinitive-vs-gerund" - "inflectional-morphology" - "inflections" - "ing" - "initialisms" - "innuendo" - "insular-english" - "insular-script" - "insults" - "intensifiers" - "intensifying-adverbs" - "interjections" - "international" - "internet" - "interpersonal-relations" - "interpretation" - "interrobang" - "interrogatives" - "interrupting-phrase" - "into-in" - "intonation" - "intransitive-verbs" - "intrusive-r" - "intuition" - "invariants" - "inversion" - "ipa" - "irony" - "irrealis-were" - "irregular" - "is-it-a-phrase" - "is-it-a-rule" - "is-it-a-sentence" - "is-it-a-verb" - "is-it-a-word" - "is-it-an-adjective" - "ise-ize" - "it-that" - "it-this" - "italian" - "italics" - "jargon" - "jokes" - "kinship-terms" - "korean" - "language-change" - "language-evolution" - "language-formation" - "late" - "latin" - "learning" - "legal" - "letter-writing" - "lexicon" - "lie-lay-lain-laid" - "ligature" - "linguistics" - "linking-verbs" - "list" - "list-request" - "listening" - "literary-device" - "literary-english" - "literary-references" - "literary-techniques" - "literature" - "litotes" - "loan-words" - "localisation" - "localism" - "locatives" - "logic" - "look-alikes" - "lyrics" - "magnitude" - "malapropism" - "management" - "mandative" - "many-a" - "marketing-language" - "mass-media" - "mass-nouns" - "mathematics" - "meaning" - "meaning-in-context" - "measuring-units" - "medical" - "mergers" - "metanalysis" - "metaphors" - "metathesis" - "meter" - "metonyms" - "microsoft-word" - "middle-english" - "military" - "minced-oaths" - "minimal-pairs" - "misquotes" - "mistranslation" - "mla" - "mnemonic" - "modal-verbs" - "modals" - "modifier-vs-of" - "modifiers" - "monophthongs" - "mood" - "morphological-domains" - "morphology" - "motto" - "movie" - "multiplicity" - "music" - "names" - "narration" - "nasalization" - "needs-pp" - "negation" - "negative-polarity-items" - "neither-nor" - "neologisms" - "new-years-day" - "new-zealand-english" - "ngrams" - "nicknames" - "nlp" - "no-not" - "nomenclature" - "nominalizations" - "non-finite-verbs" - "non-native-english" - "nonce-words" - "nonsubjective" - "north-american-english" - "noun-adjuncts" - "noun-phrases" - "nouns" - "nuance" - "numbers" - "o-ou" - "object" - "obligation" - "obscure-terms" - "oed-appeals" - "of-for" - "off-of" - "offensive-language" - "old-english" - "old-norse" - "omissibility" - "on-upon" - "onamastics" - "one-body" - "online-resources" - "only" - "onomatopoeia" - "opinion" - "optative-mood" - "or-nor" - "oral-english" - "ordinals" - "origin-unknown" - "ornithology" - "orthography" - "oxymoron" - "palatalization" - "palindrome" - "paragraphs" - "parallelism" - "paraphrasing" - "paraprosdokian" - "parentheses" - "parenthetical-plural" - "parentheticals" - "paronomasia" - "paronyms" - "parsing" - "part-of-speech" - "part-vs-a-part" - "participial" - "participial-adjectives" - "participial-phrases" - "participle" - "particles" - "partitives" - "passive" - "passive-voice" - "past-habitual" - "past-participle" - "past-perfect" - "past-tense" - "past-vs-present" - "pejorative-language" - "pennsylvanian-english" - "percentages" - "perfect" - "perfect-aspect" - "perfect-infinitive" - "period" - "periods" - "periphrastic-phrases" - "personal-pronouns" - "personality" - "personification" - "perspective" - "phase" - "philippine-english" - "philology" - "philosophy" - "phonemes" - "phonetics" - "phonics" - "phonology" - "photography" - "phrasal-adjectives" - "phrasal-verb-split" - "phrasal-verbs" - "phrase-meaning" - "phrase-requests" - "phrase-usage" - "phrases" - "phrasing" - "pied-piping" - "pirate-english" - "placenames" - "places" - "plant-physiology" - "plants" - "pleonasms" - "poetic" - "poetry" - "polite-requests" - "politeness" - "political-correctness" - "politics" - "polysemes" - "pomology" - "pop-culture" - "popularity" - "portmanteau-words" - "portuguese" - "possessive" - "possessive-determiners" - "possessive-of-which" - "possessive-pronouns" - "possessive-s-vs-of" - "possessive-vs-oblique" - "postscript" - "pp-vs-sp" - "pragmatics" - "predicate" - "predicative-complement" - "preference" - "prefixes" - "premodifiers" - "prepositional-objects" - "prepositional-phrase" - "prepositions" - "present-participle" - "present-perfect-tense" - "present-progressive" - "present-tense" - "prestige-dialect" - "pro-verb-constructions" - "productivity" - "products" - "professions" - "programming" - "progressive" - "progressive-aspect" - "pronoun-dropping" - "pronouns" - "pronunciation" - "pronunciation-vs-spelling" - "proofreading" - "proper" - "proper-nouns" - "protasis" - "proverbs" - "provide-with" - "psychology" - "publishing" - "pun" - "punctuation" - "quantifiers" - "question-mark" - "question-tags" - "questions" - "quotation-marks" - "quotations" - "quotes" - "quoting" - "racism" - "range-inclusion" - "rare-words" - "readability" - "reading" - "reason-why" - "received-pronunciation" - "recurring-event" - "redundancy" - "reduplication" - "reflexives" - "register" - "relative" - "relative-clause" - "relative-pronouns" - "relatvie" - "religion" - "repartee" - "repetition" - "request" - "research" - "resources" - "reversed-conditional" - "rhetoric" - "rhetorical-devices" - "rhotic" - "rhoticity" - "rhymes" - "roots" - "rude-words" - "rule-mythology" - "rules" - "run-on-sentence" - "russian" - "salutation" - "sandhi" - "saxon-genitive" - "saying" - "science" - "scottish-english" - "se-ce" - "seasons" - "see-look" - "semantic-shift" - "semantics" - "semi-modals" - "semicolon" - "semiotics" - "sense-verbs" - "senses" - "sentence" - "sentence-ends" - "sentence-patterns" - "sentence-starts" - "sentence-structure" - "sequence-of-tenses" - "serial-comma" - "sex-vs-gender" - "sexist-language" - "shakespeare" - "shall-will" - "shapes" - "shibboleth" - "shift" - "short-form" - "shorthand" - "should" - "signage" - "silent-letters" - "similar" - "similarities" - "simile" - "simple" - "simple-past" - "singapore-english" - "single-word-requests" - "singular-plural" - "singular-they" - "slang" - "slash" - "slogan" - "so-vs-as" - "so-vs-very" - "social-media" - "sociolinguistic" - "software" - "software-bugs" - "some-any" - "sort-ordering" - "sounds" - "south-african-english" - "sp-as-pp" - "sp-vs-past-perfect" - "spacing" - "spanish" - "speech" - "spelling-checker" - "spelling-pronunciations" - "split" - "sports" - "square-brackets" - "statistics" - "stative-verbs" - "stigmatization" - "stress" - "structure" - "style" - "style-manuals" - "subject" - "subject-or-object" - "subject-verb-agreement" - "subjective" - "subjunctive-mood" - "subordinate-clauses" - "suffixes" - "superlative" - "superscript" - "suppletive" - "surnames" - "suspended-hyphen" - "syllabic-consonants" - "syllables" - "syllepsis" - "symbols" - "synecdoche" - "synonyms" - "syntactic-analysis" - "syntax" - "taxonomy" - "teaching-aid" - "tech-slang" - "tech-writing" - "technical" - "technology" - "telephone" - "tenses" - "terminology" - "test" - "that" - "that-it" - "the-that" - "theater" - "them-is" - "them-the" - "there" - "there-is" - "thesaurus" - "third-person" - "this-last" - "this-next" - "this-that" - "thorn" - "till-until" - "time" - "title" - "to-be" - "to-for" - "to-into" - "to-of" - "tone" - "tongue-twisters" - "topicizing" - "toponyms" - "trademarks" - "transatlantic-differences" - "transitive-verbs" - "transitivity" - "translation" - "transliteration" - "triphthongs" - "triple-thrice" - "typography" - "umlaut" - "un-a" - "un-de" - "un-dis" - "un-in" - "un-not" - "uncountable-nouns" - "uniquity" - "unless" - "untagged" - "urban-legend" - "usage" - "use-mention-distinction" - "used-to" - "valediction" - "variants" - "varieties" - "verb-agreement" - "verb-forms" - "verb-phrases" - "verb-stacking" - "verb-tense" - "verbal" - "verbing" - "verbs" - "vernacular" - "view" - "vocabulary" - "vocative" - "voicing" - "vowel-length" - "vowels" - "welsh-english" - "wh-questions" - "what-that" - "when" - "where" - "where-which" - "which-that" - "which-what" - "which-who" - "whiz-deletion" - "who-that" - "whoever-vs-whomever" - "whom" - "whose" - "will-be-going" - "will-would" - "winterfest" - "word-choice" - "word-formation" - "word-games" - "word-order" - "word-phrases" - "word-position" - "word-substitution" - "word-usage" - "workplace" - "world-english" - "worth" - "would" - "writing" - "writing-advice" - "writing-style" - "yiddish" - "you-all" - "zero-article" - "zero-derivation" - "zero-relative-pronoun" - "zeugma") diff --git a/data/tags/expatriates.el b/data/tags/expatriates.el deleted file mode 100644 index de5b6ef..0000000 --- a/data/tags/expatriates.el +++ /dev/null @@ -1,212 +0,0 @@ -("accommodation" - "alaska" - "argentina" - "arrival" - "aruba" - "asylum" - "australia" - "australian-citizens" - "austria" - "bahraini-citizen" - "bangladeshi-citizens" - "banking" - "belgium" - "benefits" - "birth-certificate" - "bolivian-citizen" - "brazil" - "brazilian-citizens" - "british-columbia" - "bulgaria" - "bulgarian-citizens" - "bureaucracy" - "business" - "california" - "cambodia" - "cameroon" - "canada" - "canadian-citizens" - "car" - "car-insurance" - "carreer" - "certification" - "children" - "chile" - "china" - "citizenship" - "climate" - "company" - "cost-of-living" - "costs" - "credit" - "credit-history" - "criminal-records" - "culture" - "currency" - "customs" - "czech-republic" - "danish-citizens" - "dependent-visa" - "digital-nomads" - "documentation" - "driving" - "driving-license" - "dual-citizenship" - "dutch-citizens" - "education" - "education-visa" - "ehic" - "elections" - "employment" - "erasmus" - "esta" - "eu" - "eu-citizens" - "exemptions" - "family" - "financial" - "finland" - "food-and-drink" - "foreign-employment" - "france" - "freelance" - "french-citizens" - "german-citizens" - "germany" - "greece" - "greencard" - "guatemala" - "guatemalan-citizens" - "h1-visa" - "h1b" - "h4-visa" - "health" - "health-care" - "health-insurance" - "health-system" - "holidays" - "hong-kong" - "housing" - "hungarian-citizens" - "identification" - "immigration" - "imports" - "india" - "indian-citizens" - "indonesia" - "insurance" - "international-law" - "ireland" - "irish-citizens" - "israel" - "italian-citizens" - "italy" - "j-visa" - "japan" - "japanese-citizens" - "job-hunting" - "k1-visa" - "labour-law" - "language" - "language-course" - "lease" - "legal" - "loan" - "local-customs" - "luggage" - "malaysia" - "marriage" - "medical" - "medicare" - "mental-health" - "mexican-citizens" - "mexican-residents" - "mexico" - "money-transfer" - "mortgage" - "moving" - "multiple-citizenship" - "names" - "national-id-number" - "nationality" - "netherlands" - "new-zealand" - "new-zealand-citizens" - "non-residents" - "norway" - "ohio" - "oman" - "ontario" - "pakistani-citizen" - "paperwork" - "paraguay" - "passport" - "payment" - "pension" - "pets" - "philippines" - "poland" - "polish-citizens" - "portugal" - "postal-system" - "psychological-health" - "qualifications" - "real-estate" - "regulations" - "religion" - "relocation" - "rental" - "renting" - "repatriation" - "residence-cards" - "residency" - "resident-permit" - "retirement-funds" - "russia" - "russian-citizens" - "safety" - "salary" - "san-francisco" - "saudi-arabia" - "schengen" - "sepa" - "shipping" - "singapore" - "singapore-citizens" - "social-security" - "socializing" - "south-africa" - "south-african-citizens" - "south-korea" - "spain" - "sponsorship" - "startups" - "student" - "student-visa" - "study" - "sweden" - "swedish-citizen" - "switzerland" - "tax-deductions" - "taxes" - "technology" - "telephone" - "television" - "terminology" - "thailand" - "tn-visa" - "turkey" - "uae" - "uk-citizens" - "uk-citizenship" - "ukraine" - "unemployment-benefits" - "united-kingdom" - "untagged" - "us-citizens" - "usa" - "vehicle-registration" - "visa" - "visa-change" - "washington-state" - "working-visa") diff --git a/data/tags/expressionengine.el b/data/tags/expressionengine.el deleted file mode 100644 index 8d08257..0000000 --- a/data/tags/expressionengine.el +++ /dev/null @@ -1,607 +0,0 @@ -(".gitignore" - ".htaccess" - ".html" - "1.x" - "2.7.0" - "2.7.1" - "2.7.3" - "2.8" - "2.9" - "2.9.0" - "3dsecure" - "404" - "ab-pagination" - "accessory" - "accounts" - "act" - "action" - "activation" - "activerecord" - "add-on" - "add-on-development" - "addons" - "admin" - "admin.php" - "administration" - "advanced-conditionals" - "affiliate" - "ajax" - "allow-eecode" - "alphabetically" - "amazon" - "amazons3" - "analytics" - "antenna" - "apache" - "api" - "assets" - "attachment" - "auth" - "authenticate" - "authentication" - "author" - "automation" - "aws" - "backup" - "backup-pro" - "banned" - "batch-update" - "bestpractice" - "better-pages" - "better-workflow" - "blank-screen" - "bluehost" - "bootstrap" - "brilliantretail" - "browser" - "bug" - "bulk" - "bw-required-category" - "cache" - "cache-breaking" - "cache-folder" - "caching" - "calendar" - "calendar-events" - "campaignmonitor" - "captcha" - "cartthrob" - "categories" - "category" - "category-archive" - "category-group" - "category-image-field" - "category-name" - "category-url" - "ce-cache" - "ce-image" - "ce-lossless" - "ce-string" - "champagne" - "channel" - "channel-categories" - "channel-entries" - "channel-entries-api" - "channel-favorites" - "channel-fields" - "channel-files" - "channel-form" - "channel-images" - "channel-polls" - "channel-preferences" - "channel-ratings" - "channel-videos" - "character-encoding" - "charge" - "checkbox" - "checkout" - "child" - "child-categories" - "children" - "chrome" - "ckeditor" - "classes" - "cloudfiles" - "cloudfront" - "codeigniter" - "comment-form" - "comments" - "commerce" - "comparison" - "compatibility" - "composer" - "composer-template" - "conditionals" - "config" - "config-overrides" - "configuration" - "configuration-variables" - "confirmation" - "content" - "content-elements" - "content-type" - "control-panel" - "cookies" - "core" - "core-hacks" - "count" - "coupon-code" - "cp-themes" - "cpanel" - "cron" - "crop" - "csrf" - "css" - "csv" - "curl" - "currency" - "custom" - "custom-classes" - "custom-data" - "custom-fields" - "custom-order-fields" - "custom-system-messages" - "dashee" - "database" - "database-error" - "database-migrations" - "datagrab" - "date" - "date-field-filter" - "date-format" - "datetime" - "debugging" - "default" - "delete" - "deployment" - "detour-pro" - "devdemon" - "devdemon-forms" - "devdemon-tagger" - "devdemon-updater" - "devdocs" - "developer-log" - "development" - "discounts" - "discussion" - "domain" - "donations" - "drop-down" - "dropdate" - "dry" - "dst" - "duplicate" - "dynamic" - "ecommerce" - "edit-date" - "editor" - "ee" - "ee-debug-toolbar" - "ee1" - "ee2" - "ee2-upgrades" - "eeharbor" - "email" - "email-contact-form" - "embed-media" - "embeds" - "encode" - "encryption" - "entries" - "entry" - "entry-date" - "entry-type" - "entry-widgets" - "entryid" - "entrylinks" - "error" - "error-500" - "error-502" - "error-504" - "error-pages" - "events" - "expire" - "export" - "expresso" - "expresso-store" - "expresso-toolbar" - "extension" - "facebook" - "facebook-share" - "fatal" - "feature-request" - "field-conversion" - "field-editor" - "field-group" - "field-pack" - "fields" - "fieldtype" - "file-field" - "file-manager" - "file-uploads" - "filename" - "files" - "filesystem" - "filter" - "filtering" - "focus-lab-master-config" - "forgot-password" - "formatting" - "forms" - "forum" - "freebie" - "freemember" - "ftp" - "functions" - "future-entries" - "gateway" - "general-knowledge" - "geofinder" - "get" - "giftcertificates" - "git" - "global-variables" - "godaddy" - "google" - "google-analytics" - "google-maps" - "google-maps-for-ee" - "google-webmaster-tools" - "grid" - "grouping" - "groups" - "guest" - "gwcode-categories" - "gypsy" - "headers" - "hook" - "hosting" - "how-to" - "htaccess" - "html" - "html-email" - "html-entities" - "http" - "ical" - "ie8" - "iexpression" - "ifelse" - "iis" - "image" - "image-galleries" - "image-path" - "import" - "index" - "index.php" - "inline-editing" - "install" - "integration" - "internetexplorer" - "interval" - "inventory" - "ip" - "iptonation" - "javascript" - "jquery" - "js" - "json" - "lamplighter" - "language" - "layout-variables" - "license" - "licensing" - "links" - "list" - "listing" - "livelook" - "loading-time" - "localhost" - "localization" - "logic" - "login" - "logout" - "long-content" - "loop" - "low" - "low-alphabet" - "low-events" - "low-nice-date" - "low-reorder" - "low-replace" - "low-search" - "low-seg2cat" - "low-variables" - "low-yearly-archives" - "magento" - "mailchimp" - "mailing" - "mailinglist" - "markdown" - "markup" - "math" - "matrix" - "media-temple" - "mediumtext" - "member-categories" - "member-details" - "member-management" - "members" - "membrr" - "memory" - "memory-limit" - "messages" - "meta" - "metadata" - "mightybigrobot" - "migration" - "minimee" - "mobile" - "mod-rewrite" - "modal" - "moderation" - "modifier-options" - "modifiers" - "module" - "multi-language" - "multi-site-manager" - "multilingual" - "multiple-channels" - "multiple-sites" - "multiselect" - "mx-calculator" - "mx-cloner" - "mx-google-map" - "mx-jumper" - "mx-lone-star" - "mx-mobile-detect" - "mx-notify" - "mx-select-plus" - "mx-title-control" - "mx-zip" - "mysql" - "navee" - "navigation" - "nested-list" - "nesting" - "newrelic" - "newsletter" - "next-prev" - "nginx" - "no-results" - "nolan" - "notification" - "nsm-better-meta" - "number-format" - "oauth" - "objective-html" - "offline" - "omnipay" - "open-api" - "opengateway" - "optimization" - "options" - "order-info" - "orderby" - "orders" - "out-of-stock" - "packages" - "page-uri" - "pages" - "paginate" - "pagination" - "paid-membership" - "parameters" - "parcel" - "parent" - "parse" - "parse-order" - "parsing" - "password" - "path" - "payment-gateway" - "paypal" - "paypal-express-checkout" - "payu" - "pdf-press" - "performance" - "permissions" - "php" - "php-errors" - "php.ini" - "phpstringfun" - "pin-payments" - "pixelandtonic" - "playa" - "plugin" - "postmaster" - "pre-populate" - "preload-replace" - "price-modifier" - "primary" - "primary-category" - "product" - "profile" - "profile-edit" - "promo-code" - "pt-checkboxes" - "pt-dropdown" - "pt-list" - "publish-layout" - "publisher" - "queries" - "query" - "query-module" - "querystring" - "random" - "realex" - "recommendation-request" - "redactee" - "redactor" - "redirection" - "redirects" - "reeservation" - "regex" - "register" - "registration" - "regular-expressions" - "related" - "related-entries" - "relationships" - "remember-me" - "repo" - "requirejs" - "resize" - "rest" - "restricted-area" - "reverse-related-entries" - "rewrite" - "richtext" - "routes" - "routing" - "rss" - "rte" - "s3" - "saas" - "saef" - "safecracker" - "safecracker-file" - "safecracker-registration" - "sagepay" - "salesforce" - "saving" - "scm" - "screen-name" - "search" - "secure" - "secureforms" - "security" - "segments" - "seo" - "seo-lite" - "server" - "server-migration" - "session-end-hook" - "sessions" - "settings" - "shine-pdf" - "shipping" - "shopping-cart" - "shortcode" - "shortlist" - "signup" - "simple-commerce" - "simple-search" - "single-sign-on" - "site" - "site-preferences" - "site-url" - "size" - "slow" - "smtp" - "snaptcha" - "snippet-sync" - "snippets" - "social" - "socket" - "solspace" - "solspace-calendar" - "solspace-facebookconnect" - "solspace-freeform" - "solspace-friends" - "solspace-importer" - "solspace-rating" - "solspace-tag" - "solspace-tracker" - "solspace-user" - "sort" - "sorting" - "spam" - "speed" - "sql" - "ssl" - "staging-server" - "stash" - "static" - "statistics" - "status" - "stock" - "store-locator" - "string" - "strip-html" - "stripe" - "structure" - "stylesheets" - "subdomain" - "subscriptions" - "super-admin" - "supersearch" - "switch" - "switchee" - "sync" - "syntax" - "system" - "system-messages" - "table" - "table-class" - "tags" - "tax" - "taxonomy" - "tell-a-friend" - "template-layouts" - "template-manager" - "template-partials" - "template-routes" - "template-scripting" - "templates" - "text-formatting" - "textarea" - "themes" - "threaded-comments" - "thumbnails" - "time" - "timezone" - "title" - "title-master" - "toolbar" - "tracking" - "transcribe" - "twitter" - "twitter-bootstrap" - "twitter-search-2" - "ubuntu" - "untagged" - "update" - "updating" - "upgrade" - "uploads" - "ups-shipping" - "url" - "url-title" - "username" - "users" - "v2.5.5" - "validation" - "variable" - "versioning" - "video" - "vimeo" - "vmg-chosen-member" - "vz-buyers" - "white-screen-of-death" - "widget" - "wiki" - "windows" - "workflow" - "worldpay" - "wygwam" - "wysiwyg" - "wyvern" - "x-frame-options" - "xampp" - "xid" - "xml" - "xss" - "zenbu" - "zoo" - "zoo-triggers" - "zoo-visitor") diff --git a/data/tags/fitness.el b/data/tags/fitness.el deleted file mode 100644 index 386788e..0000000 --- a/data/tags/fitness.el +++ /dev/null @@ -1,389 +0,0 @@ -("10k" - "5k" - "abdominals" - "adductor" - "aerobic" - "age" - "alcohol" - "anaerobic" - "anatomy" - "arms" - "assesment" - "athletic-performance" - "atkins" - "back" - "back-pain" - "backstroke" - "balance" - "ballet" - "barbell" - "barbell-rows" - "barefoot" - "bcaa" - "beginners" - "bellyfat" - "bench-press" - "biceps" - "bicycling" - "biology" - "biomechanics" - "blister" - "blood-flow" - "bmi" - "bmr" - "body-fat" - "body-measurements" - "body-weight-lift" - "bodybuilding" - "bodyweight" - "bodyweight-exercises" - "bones" - "books" - "boxing" - "brain" - "breakfast" - "breathing" - "burn" - "burn-fat" - "cables" - "caffeine" - "calcium" - "calculation" - "calf" - "calisthenics" - "callus" - "calories" - "capoeira" - "carbohydrate" - "cardio" - "chafing" - "checo" - "chest" - "children" - "chin-ups" - "cholesterol" - "circuit-training" - "circulation" - "clothing" - "coaching" - "cold" - "compensation" - "compound-exercises" - "compression" - "conditioning" - "cool-down" - "core" - "couchto5k" - "cramps" - "crawl" - "creatine" - "crossfit" - "crunches" - "curls" - "cutting" - "daily-caloric-intake" - "dancing" - "deadlifts" - "definition" - "dehydration" - "deltoids" - "diet" - "diet-tools" - "dips" - "doms" - "dumbbells" - "eating-habits" - "ectomorph" - "effort" - "eggs" - "elbows" - "electrolytes" - "elliptical" - "endomorph" - "endurance" - "energy" - "energy-drinks" - "exercise" - "exercise-ball" - "exercise-equipment" - "exercise-frequency" - "exercise-technique" - "explosiveness" - "fat" - "fat-loss" - "feet" - "fencing" - "fiber" - "fingers" - "fitbit" - "flexibility" - "food" - "food-preparation" - "foot" - "foot-care" - "foot-pain" - "football" - "forearm" - "form" - "fractures" - "freeweights" - "fruit" - "functional-strength" - "gel" - "genetics" - "getting-in-shape" - "gloves" - "glutes" - "goals" - "grip" - "grip-strength" - "growth" - "gym" - "gymnastics" - "half-marathon" - "hamstring" - "hands" - "health" - "health-risk" - "heart" - "heart-rate" - "heart-rate-monitor" - "hernia" - "high-intensity" - "high-protein" - "hiit" - "hip" - "home-exercise" - "hormones" - "hunger" - "hydration" - "hygiene" - "hypermobile" - "hypertrophy" - "ice-skating" - "illness" - "injury" - "injury-prevention" - "intensity" - "intermittent-fasting" - "interval-training" - "ironman" - "ironman70.3" - "isolation" - "isometric" - "jogging" - "joints" - "juice" - "ketogenic-diet" - "kettlebell" - "knee-pain" - "knees" - "l-glutamine" - "legs" - "leptin" - "leukonychia" - "lifting" - "long-distance" - "long-distance-running" - "low-carb" - "lower-back" - "lower-body-strength" - "lunges" - "machine" - "magnesium" - "maintenance" - "male" - "marathon" - "martial-arts" - "mass" - "massage" - "measurements" - "meat" - "medicine" - "mental" - "mesomorph" - "metabolism" - "micoach" - "milk" - "mobility" - "motivation" - "movements" - "muscle" - "muscle-endurance" - "muscle-gain" - "muscle-groups" - "muscle-imbalance" - "muscle-loss" - "muscle-mass" - "muscle-recovery" - "muscle-soreness" - "muscle-ups" - "myosatellitecell" - "neck" - "novice" - "numbness" - "nutrition" - "nutrition-information" - "obesity" - "olympic" - "olympic-weightlifting" - "overhead-squat" - "overheadpress" - "overtraining" - "p90x" - "pain" - "paleo-diet" - "parkour" - "pectorals" - "performance" - "periodization" - "personal-training" - "physical-therapy" - "physiology" - "physique" - "pilates" - "plateau" - "plates" - "plyometrics" - "polar-wearlink" - "post-workout" - "posture" - "power" - "power-cleans" - "powerlifting" - "pre-workout" - "pregnancy" - "press" - "programming" - "programs" - "progress" - "proprioception" - "protein" - "protein-shakes" - "psoas" - "pull-ups" - "push-ups" - "quads" - "race" - "racing" - "recommended-daily-intake" - "recovery" - "recovery-heart-rate" - "rehabilitation" - "relaxation" - "reps" - "resistance" - "resistance-cord" - "resistancetraining" - "rest" - "rest-pause" - "rings" - "rock-climbing" - "rom" - "rotator-cuff" - "routine" - "running" - "running-form" - "running-shoes" - "running-training-plan" - "safety" - "scar-tissue" - "sea-swimming" - "sets" - "sex" - "shins" - "shoes" - "shoulder-cuff" - "shoulders" - "sit-ups" - "skeleton" - "skiing" - "skin" - "sleep" - "slendertone" - "smoking" - "snacks" - "snatch" - "soccer" - "socks" - "sodium" - "somatotype" - "soreness" - "soy" - "speed" - "spine" - "splits" - "sports" - "sprinting" - "squats" - "stability" - "stairs" - "stamina" - "starting-strength" - "stem-cell" - "steroids" - "stiffness" - "stitch" - "stomach" - "strength" - "strength-gain" - "strength-training" - "stress" - "stretching" - "stronglifts" - "sugar" - "supplements" - "sweat" - "swimming" - "tabata" - "target-heart-rate" - "technique" - "temperature" - "tendons" - "tennis" - "testosterone" - "therapy" - "thigh" - "tight" - "timing" - "tips" - "toning" - "tracking" - "training" - "trapezius" - "trauma" - "travel" - "treadmill" - "treatment" - "trekking" - "triathlon" - "triceps" - "ultimate-frisbee" - "untagged" - "upper-back" - "upper-body-workout" - "vegetables" - "vegetarian" - "vertical-jump" - "vibram" - "video-games" - "vitamins" - "vo2max" - "volleyball" - "walking" - "warm-up" - "water" - "websites" - "weight-gain" - "weight-loss" - "weightlifting" - "weights" - "weighttraining" - "workout" - "workout-routines" - "workout-types" - "workplace" - "wrist" - "yoga" - "zinc" - "zumba") diff --git a/data/tags/freelancing.el b/data/tags/freelancing.el deleted file mode 100644 index bfffe23..0000000 --- a/data/tags/freelancing.el +++ /dev/null @@ -1,101 +0,0 @@ -("accounting" - "advertising" - "agency" - "attracting-clients" - "billable-hours" - "billing" - "branch-office" - "branding" - "budget" - "business-plan" - "canada" - "changes" - "client-support" - "communication" - "consulting" - "contract-cancellation" - "contract-to-hire" - "contracts" - "copyright" - "design" - "difficult-client" - "dress-code" - "entity" - "estimation" - "eu" - "evaluating-clients" - "expenses" - "finance" - "fixed-price" - "foreign-incorporation" - "foreign-markets" - "freelance-websites" - "friends-services" - "germany" - "group-freelancing" - "growth" - "hmrc" - "hourly" - "incorporation" - "information-technology" - "insurance" - "interview" - "invoices" - "ireland" - "late-payment" - "legal" - "licensing" - "linkedin" - "llc" - "long-term" - "marketing" - "moonlighting" - "negotiation" - "nonprofit" - "outsourcing" - "over-due" - "overtime" - "ownership" - "partner" - "pay-rate" - "payment-terms" - "payments" - "pension" - "portfolio" - "price" - "price-per-hour" - "productivity" - "profit-share" - "programmer" - "project" - "project-bidding" - "project-management" - "proposal" - "referral" - "registration" - "regression-testing" - "remote" - "resume" - "retainer" - "sales" - "scope-creep" - "scope-of-work" - "share-ratio" - "small-projects" - "software" - "subcontracting" - "switzerland" - "taxes" - "time-management" - "time-tracking" - "translations" - "travel" - "trust" - "uk" - "ulegal" - "untagged" - "usa" - "virtual-office" - "webmasters" - "working-from-home" - "writing") diff --git a/data/tags/french.el b/data/tags/french.el deleted file mode 100644 index 2357a85..0000000 --- a/data/tags/french.el +++ /dev/null @@ -1,232 +0,0 @@ -("à" - "économie" - "éducation" - "énumération" - "études" - "étymologie" - "évolution" - "abréviations" - "accents-régionaux" - "accord" - "adjectifs" - "adverbes" - "afrique" - "alimentation" - "allemand" - "alphabet" - "ancien-français" - "anglais" - "anglicismes" - "antonyme" - "appositions" - "arabe" - "argot" - "art" - "articles" - "attributs" - "auxiliaires" - "belgique" - "biologie" - "botanique" - "choix-de-mot" - "cinéma" - "citations" - "comparaison-de-langues" - "comparatifs" - "complément" - "concordance-des-temps" - "conditionnel" - "conditions" - "conjonctions" - "conjugaison" - "constructions" - "constructions-causatives" - "contractions" - "conventions" - "coordination" - "correspondance" - "cuisine" - "culture" - "curriculum-vitae" - "démonstratifs" - "déterminants" - "dates" - "de" - "debutant" - "delf" - "demande-de-mot" - "diacritiques" - "dialectes" - "dictionnaires" - "discours-indirect" - "double-négation" - "droit-et-justice" - "e-caduc" - "ecrits" - "elision" - "ellipse" - "email" - "emphase" - "emprunts" - "enfants" - "espace-insécable" - "espagnol" - "euphonie" - "exclamations" - "expressions" - "faux-amis" - "figure-de-style" - "formatage" - "formulation" - "formules-de-politesse" - "francais-classique" - "france" - "futur" - "futur-proche" - "futur-simple" - "géographie" - "gérondif" - "genre" - "genre-biologique" - "grammaire" - "grec" - "grossieretes" - "groupe-nominal" - "histoire" - "homonymie" - "idiomes" - "impératif" - "imparfait" - "indicatif" - "indications-de-lieu" - "indications-de-temps" - "infinitif" - "informatique" - "insultes" - "interjections" - "interrogative" - "intervalle" - "italien" - "japonais" - "jargon" - "jeux" - "jeux-de-mots" - "jurons" - "langage-des-jeunes" - "latin" - "lexique" - "liaisons" - "ligatures" - "linguistique" - "littérature" - "locutions" - "loucherbem" - "médecine" - "majuscules" - "mathématiques" - "mode" - "mode-grammatical" - "mots-composés" - "musique" - "néerlandais" - "négation" - "néologismes" - "nasalisation" - "ne-explétif" - "niveau-de-langue" - "nombres" - "noms" - "noms-propres" - "onomatopées" - "oral" - "ordre-des-mots" - "origine-ou-raison" - "orthographe" - "paroles-de-chanson" - "participe-passé" - "participe-présent" - "partitif" - "passé-composé" - "passé-simple" - "passif" - "patronymes" - "philosophie" - "phonétique" - "physique" - "pluriel" - "plus-que-parfait" - "poésie" - "politique" - "ponctuation" - "possessif" - "préfixes" - "prénoms" - "prépositions" - "presentation" - "professions" - "programmation" - "pronom-de-reprise" - "pronoms" - "pronoms-de-reprise" - "pronoms-impersonnels" - "pronoms-interrogatifs" - "pronoms-personnels" - "pronoms-réfléchis" - "pronoms-reciproques" - "pronoms-relatifs" - "prononciation" - "proverbes" - "québec" - "questions" - "radio" - "regionalismes" - "registre" - "registre-familier" - "registre-soutenu" - "religion" - "ressources" - "rule-of-thumb" - "salutations" - "science" - "sens" - "sms-lingo" - "société" - "spectacle" - "sport" - "standard" - "style-de-redaction" - "subjonctif" - "subordonnées" - "substantivation" - "suffixes" - "suisse" - "sujet" - "superlatifs" - "surnoms" - "synonyme" - "syntaxe" - "téléphone" - "télévision" - "temps-composés" - "temps-grammatical" - "temps-surcomposés" - "terminologie" - "titres" - "toponymes" - "traduction" - "trait-d-union" - "transports" - "travail" - "tropes" - "tutoiement" - "typographie" - "usage" - "verbes" - "verbes-défectifs" - "verbes-pronominaux" - "verlan" - "vocabulaire" - "vouvoiement" - "voyelles" - "vulgarité" - "zoologie") diff --git a/data/tags/gamedev.el b/data/tags/gamedev.el deleted file mode 100644 index 91db26c..0000000 --- a/data/tags/gamedev.el +++ /dev/null @@ -1,919 +0,0 @@ -(".net" - "2.5d" - "2d" - "2d-physics" - "3d" - "3d-engines" - "3d-meshes" - "3dsmax" - "4d" - "4x" - "aabb" - "accessibility" - "achievements" - "actions" - "actionscript" - "actionscript-3" - "adventure" - "advertisement" - "agal" - "ai" - "aiming" - "ajax" - "algebra" - "algorithm" - "allegro" - "alpha" - "alpha-blending" - "amd" - "anaglyph" - "analytics" - "andengine" - "android" - "angles" - "animation" - "ant" - "anti-cheat" - "antialiasing" - "api" - "appstore" - "arcade" - "architecture" - "art" - "artemis" - "articles" - "artifacts" - "artoolkit" - "aspect-ratio" - "assembly" - "asset-creation" - "asset-management" - "asset-workflow" - "assets" - "assimp" - "audio" - "authentication" - "automation" - "avatar" - "awesomium" - "axis" - "balance" - "barycentric-coordinates" - "batching" - "behavior" - "behavior-tree" - "beta" - "beziers" - "billboarding" - "binary" - "biped" - "bit-blit" - "blender" - "blender-game-engine" - "blending" - "blitzmax" - "block-world" - "blog" - "bloom" - "bluetooth" - "blur" - "board-game" - "body" - "books" - "bot" - "bounding-boxes" - "bounding-spheres" - "box2d" - "browser" - "browser-based-games" - "bsp" - "bsp-tree" - "buffers" - "bug" - "build-process" - "buildbox" - "bukkit" - "bullet-physics" - "bump-map" - "business" - "business-model" - "c" - "c#" - "c++" - "c++11" - "c++cli" - "cadisplaylink" - "callbacks" - "camera" - "canvas" - "car" - "card-game" - "career" - "casual-games" - "ccsprite" - "cg" - "character" - "chess" - "chingu" - "chipmunk" - "chrome" - "cinema-4d" - "circle" - "client" - "client-server" - "clipping" - "cloth" - "cloud-computing" - "clouds" - "cocoa" - "cocos2d" - "cocos2d-iphone" - "cocos2d-x" - "cocos2d-x-js" - "cocos3d" - "code-design" - "code-structure" - "coffeescript" - "collada" - "collision-avoidance" - "collision-detection" - "collision-resolution" - "color" - "combat" - "commercial" - "commodore-64" - "community-management" - "company" - "compatibility" - "competition" - "component-based" - "compression" - "computational-geometry" - "computer-science" - "conceptual" - "configuration" - "console" - "construct-2" - "content-generation" - "content-rating" - "control" - "controllers" - "convex-hull" - "coordinates" - "copyright" - "corona-sdk" - "costs" - "cover-systems" - "crafty" - "crittercism" - "cross-platform" - "cryengine" - "csg" - "css" - "cubemap" - "cuda" - "culling" - "curves" - "cutscene" - "d3d" - "data" - "data-driven" - "data-mining" - "data-oriented" - "data-structure" - "databases" - "dataflow" - "dds" - "debugging" - "decal-system" - "deferred-rendering" - "deferred-shading" - "delphi" - "delta" - "demo" - "demographics" - "deployment" - "depth" - "depth-buffer" - "design" - "design-document" - "design-patterns" - "dev-groups" - "development-speed" - "dialog-tree" - "difficulty" - "direct2d" - "directinput" - "direction" - "directx" - "directx10" - "directx11" - "directx9" - "directxmath" - "displacement-mapping" - "distribution" - "dll" - "documentation" - "dod" - "double-buffering" - "draw-order" - "dynamic-difficulty" - "dynamic-mesh" - "easeljs" - "easing" - "eclipse" - "economy" - "editors" - "education" - "effect" - "effects" - "efficiency" - "egl" - "emulation" - "enchant.js" - "encryption" - "engine" - "entities" - "entity" - "entity-component" - "entity-system" - "environment" - "esrb" - "euler-method" - "events" - "evolution" - "exceptions" - "experience" - "export" - "extension" - "extrapolation" - "face" - "facebook" - "farseer-physics-engine" - "fbo" - "fbx" - "feedback" - "file" - "file-format" - "filesystem" - "filtering" - "first-person-shooter" - "fixed-point" - "fixed-timestep" - "flascc" - "flash" - "flash-cs5" - "flash-develop" - "flashdevelop" - "flex" - "flixel" - "floating-point" - "fluid-dynamics" - "flurry" - "fmod" - "fog-of-war" - "fonts" - "force-feedback" - "forces" - "format" - "formula" - "fractal" - "fragment-shader" - "frame-buffer" - "frame-rate" - "framework" - "free" - "free-to-play" - "frustum" - "frustum-culling" - "fsm" - "functional" - "fund-raising" - "fuzzy-logic" - "game-center" - "game-component" - "game-design" - "game-industry" - "game-loop" - "game-maker" - "game-mechanics" - "game-recording" - "game-state" - "game-theory" - "gameobject" - "gamepad" - "gamesalad" - "geometry" - "geometry-shader" - "gestures" - "gimbal-lock" - "gimp" - "git" - "gleed2d" - "gles2" - "glew" - "glfw" - "glfw3" - "glm" - "global-illumination" - "glossary" - "glow" - "glsl" - "glut" - "go" - "google-app-engine" - "google-play" - "google-play-services" - "gpgpu" - "gpu" - "gradle" - "graph" - "graph-theory" - "graphic-effects" - "graphics" - "graphics-design" - "graphics-programming" - "graphs" - "grid" - "gui" - "hacks" - "hammer" - "hand-drawn" - "hardware" - "hardware-acceleration" - "havok" - "haxe" - "hdr" - "heightmap" - "heirarchy" - "heuristics" - "hexagon" - "hiring" - "hlsl" - "homebrew" - "hosting" - "hot-reload" - "html" - "html5" - "http" - "hud" - "human-resources" - "ide" - "image" - "image-effects" - "image-processing" - "impactjs" - "import" - "importing" - "in-app-purchase" - "index-buffer" - "infinite" - "inheritance" - "initialization" - "input" - "installer" - "instancing" - "integration" - "intel" - "intellectual-property" - "interactive-fiction" - "interface" - "interpolation" - "intersection" - "interview" - "inventory" - "inverse-kinematics" - "ios" - "ipad" - "iphone" - "irrlicht" - "isometric" - "java" - "javascript" - "jbox2d" - "jframe" - "jiglibx" - "jmonkeyengine" - "jni" - "job-hierarchy" - "jobs" - "jogl" - "joystick" - "jquery" - "jumping" - "kd-tree" - "keyboard" - "kinect" - "kinematic" - "kismet" - "lag" - "languages" - "latency" - "layers" - "leaderboards" - "legal" - "lerp" - "level-design" - "level-of-detail" - "levels" - "libgdx" - "libgosu" - "libraries" - "licensing" - "light" - "lighting" - "lightmap" - "limitations" - "line-of-sight" - "linear-algebra" - "lines" - "linux" - "loading" - "localization" - "location" - "logic" - "love2d" - "low-poly" - "lua" - "lwjgl" - "management" - "manuals" - "map-editor" - "maps" - "marching-cubes" - "marketing" - "marmalade" - "masking" - "matchmaking" - "materials" - "mathematics" - "matrix" - "maya" - "maze" - "mecanim" - "memory" - "memory-efficiency" - "menu" - "mesa" - "mesh" - "messaging" - "metaprogramming" - "methodology" - "metrics" - "microsoft" - "microtransactions" - "middleware" - "midi" - "milkshape3d" - "minecraft" - "minesweeper" - "mingw" - "mipmapping" - "mipmaps" - "mission-design" - "mmo" - "mmorts" - "mobile" - "model-loader" - "models" - "mods" - "mogre" - "molehill" - "monetization" - "mono" - "monodevelop" - "monogame" - "monotouch" - "motion" - "motion-capture" - "motion-control" - "motivation" - "mouse" - "movement" - "movement-prediction" - "moving-platforms" - "mud" - "multiplayer" - "multiple-graphics-devices" - "multiple-render-targets" - "multiple-windows" - "multisampling" - "multitexturing" - "multithreading" - "multitouch" - "music" - "mvc" - "mysql" - "nape" - "navigation-mesh" - "navmesh" - "ndk" - "networking" - "ngui" - "nifty-gui" - "nintendo" - "node.js" - "noise" - "non-photorealistic" - "normal-mapping" - "normals" - "npc" - "numerical-methods" - "nvidia" - "obj" - "object-pools" - "objective-c" - "objects" - "occlusion" - "octree" - "oculus" - "ogg-vorbis" - "ogre" - "old-school" - "online" - "oop" - "open-source" - "openal" - "openfeint" - "opengl" - "opengl-es" - "opengl-es2" - "opengl-es3" - "opentk" - "operating-system" - "optimization" - "orbit" - "orientation" - "osx" - "outline" - "outsourcing" - "ouya" - "packet" - "palette" - "panda3d" - "parallax-scrolling" - "particles" - "patching" - "patents" - "path-finding" - "patterns" - "pausing" - "payment" - "pc" - "peer-to-peer" - "pegi" - "per-pixel" - "performance" - "perlin-noise" - "perspective" - "phaser" - "php" - "physics" - "physics-engine" - "physx" - "picking" - "pipeline" - "piracy" - "pix" - "pixel" - "pixel-art" - "planet" - "planning" - "platform" - "platformer" - "playn" - "playstation3" - "playstation4" - "playtesting" - "plugin" - "png" - "podcasts" - "point-cloud" - "poker" - "polling" - "polygon" - "polymorphism" - "portals" - "portfolio" - "porting" - "position" - "post-processing" - "powerup" - "pre-production" - "precision" - "preload" - "pricing" - "probability" - "procedural" - "procedural-generation" - "process" - "processing" - "productivity" - "profiler" - "profiling" - "programming" - "progression" - "project-management" - "projectile-physics" - "projection" - "projection-matrix" - "protocol" - "prototyping" - "psm" - "psm-studio" - "psychology" - "publishing" - "puzzle" - "pvp" - "pygame" - "pyglet" - "python" - "qt" - "quads" - "quadtree" - "quake3" - "quaternion" - "quests" - "quizgame" - "racing" - "radar" - "radiosity" - "raknet" - "random" - "ranking" - "rasterization" - "raycasting" - "raytracing" - "realtime" - "recast-navigation" - "rectangle" - "rectangles" - "recursion" - "refactoring" - "reflection" - "reinforcement-learning" - "release" - "rendering" - "rendertargets" - "replays" - "requirements" - "resizing-window" - "resolution" - "resource-management" - "resources" - "response" - "revenue" - "rigging" - "rigid-body-dynamics" - "rk4" - "roguelikes" - "rope-physics" - "rotate" - "rotation" - "rpg" - "rpg-maker-vx" - "rpg-maker-xp" - "rts" - "ruby" - "sales" - "sampler-state" - "sat" - "savegame" - "scalability" - "scale" - "scaling" - "scene" - "scene-graph" - "scene2d" - "scoring" - "screen" - "screen-management" - "screen-recording" - "screenshot" - "scripting" - "scrolling" - "sdk" - "sdl" - "sdl-gfx" - "sdl2" - "seams" - "search" - "security" - "selection" - "separating-axis-theorem" - "serialization" - "serious-games" - "server" - "server-push" - "settings" - "sfml" - "shadermodel3" - "shaders" - "shading" - "shadow-mapping" - "shadows" - "shape" - "sharpdx" - "shoot-em-up" - "shooter" - "shuriken" - "side-scroller" - "signed-distance-field" - "silverlight" - "simd" - "simplex-noise" - "simulations" - "single-player" - "size" - "skeletal-animation" - "skinning" - "sky" - "skybox" - "skyrim" - "skyrim-creation-kit" - "slick" - "slimdx" - "smartfox" - "smooth" - "social" - "socket" - "soft-body-dynamics" - "software-engineering" - "software-rendering" - "sorting" - "sound" - "sound-effects" - "source-code" - "source-engine" - "space-partitioning" - "spaces" - "spawning" - "special-effects" - "specular" - "sphere" - "spherical-harmonics" - "spine" - "splines" - "sponza" - "sprite-kit" - "spritebatch" - "sprites" - "spritesheet" - "sql" - "srgb" - "ssao" - "stage3d" - "standards" - "starcraft" - "starcraft-2" - "starling" - "state" - "statistics" - "steam" - "steering-behaviors" - "stencil" - "stencyl" - "storage" - "storyboard" - "strategy" - "streaming" - "struct" - "substance-engine" - "sunburn" - "support" - "surface" - "svg" - "swf" - "swing" - "synchronization" - "system-requirements" - "teaching" - "teamwork" - "techncal" - "techniques" - "terminology" - "terrain" - "terrain-rendering" - "tessellation" - "test-driven-development" - "testing" - "texel" - "text" - "text-based" - "texture-atlas" - "textures" - "third-person-view" - "three.js" - "tile" - "tiled" - "tilemap" - "tiles" - "tilesets" - "time-management" - "time-travel" - "timer" - "timestep" - "timing" - "tone-mapping" - "tools" - "topography" - "torque" - "torque-x" - "touch" - "tournament" - "tower-defense" - "trademark" - "trailer" - "trajectory" - "tranforms" - "transform" - "transformation" - "transparency" - "tree" - "triangles" - "triangulations" - "trigonometry" - "triplanar-texturing" - "turn-based" - "turn-based-strategy" - "tutorials" - "tweening" - "twitter" - "udk" - "udp" - "ui" - "ui-design" - "unit-testing" - "units" - "unity" - "unityscript" - "unreal" - "unreal-4" - "unreal-editor" - "untagged" - "update" - "urho3d" - "usability" - "user-experience" - "user-generated-content" - "uv-mapping" - "validation" - "valve" - "vao" - "vbo" - "vector" - "vector-algebra" - "vector-art" - "vehicle" - "venture-capitalist" - "version-control" - "vertex" - "vertex-arrays" - "vertex-attribute" - "vertex-buffer" - "video" - "view" - "viewport" - "virtual-machines" - "virtual-reality" - "visibility-determination" - "visual-basic" - "visual-studio" - "visualization" - "voice" - "volumetric-light" - "voxels" - "vsync" - "water" - "web" - "webapp" - "webgl" - "websocket" - "wii" - "win32" - "winapi" - "winding" - "windows" - "windows-8" - "windows-forms" - "windows-phone-7" - "windows-phone-8" - "winforms" - "wings3d" - "world-design" - "world-editor" - "world-of-warcraft" - "wpf" - "xact" - "xamarin" - "xaudio2" - "xbox" - "xbox-controller" - "xbox-live" - "xbox360" - "xcode" - "xml" - "xna" - "xna-4.0" - "xna-content-pipeline" - "xna3.1") diff --git a/data/tags/gaming.el b/data/tags/gaming.el deleted file mode 100644 index 78b5963..0000000 --- a/data/tags/gaming.el +++ /dev/null @@ -1,3386 +0,0 @@ -(".hack-gu" - "0h-h1" - "0x10c" - "100-rogues" - "1000-amps" - "10000000" - "1001-spikes" - "16384-hex" - "18-wheels-of-steel" - "2048" - "2048-numberwang" - "20k-ly-into-space" - "2moons" - "3d-analyze" - "3d-dot-game-heroes" - "3ds" - "3ds-xl" - "4-elements" - "65-million-and-one-bc" - "688-hunter-killer" - "7-days-to-die" - "7.62-high-calibre" - "999" - "a-boy-and-his-blob" - "a-dark-room" - "a-game-of-dwarves" - "a-kingdom-for-keflings" - "a-space-shooter" - "a-tale-in-the-desert" - "a-train-8" - "a-valley-without-wind" - "a-valley-without-wind-2" - "a-virus-named-tom" - "a-world-of-keflings" - "aaaaaa" - "abandonware" - "ac-brotherhood" - "ac-recollection" - "ac-revelations" - "ac3-liberation" - "ac4-kenways-fleet" - "accessibility" - "accessories" - "ace-combat-5" - "ace-combat-ah" - "ace-of-spades" - "ace-patrol" - "achievements" - "achtung-spitfire" - "adom" - "advance-wars" - "adventure-quest-worlds" - "adventure-time-etdbidk" - "adventure-time-hikwysog" - "adventurequest-battlegems" - "adventures-of-shuggy" - "adventures-of-van-helsing" - "afterlife" - "afterwind" - "agarest-war" - "agarest-war-2" - "agarest-war-zero" - "age-of-empires" - "age-of-empires-2" - "age-of-empires-2-hd" - "age-of-empires-3" - "age-of-empires-online" - "age-of-legends" - "age-of-mythology" - "age-of-wonders" - "age-of-wonders-3" - "ai-war-fleet-command" - "aion" - "airmech" - "akaneiro" - "alan-wake" - "albion" - "alchemy" - "aleph-one" - "alice-madness-returns" - "alien-crossfire" - "alien-hive" - "alien-isolation" - "alien-legacy" - "alien-logic" - "alien-swarm" - "aliens-colonial-marines" - "aliens-infestation" - "aliens-vs-predator-2010" - "all-my-enemies" - "all-my-gods" - "allegiance" - "alliance-of-valiant-arms" - "allods-online" - "alpha-centauri" - "alpha-protocol" - "amazing-breaker" - "amazon" - "american-mcgees-alice" - "americas-army-3" - "amiga" - "amiibo" - "amnesia-dark-descent" - "amnesia-machine-for-pigs" - "analogue-a-hate-story" - "anarchy-online" - "and-yet-it-moves" - "android" - "angband" - "angry-birds" - "angry-birds-epic" - "angry-birds-go" - "angry-birds-rio" - "angry-birds-seasons" - "angry-birds-space" - "angry-birds-star-wars" - "angry-gran" - "animal-crossing" - "animal-crossing-city-folk" - "animal-crossing-ds" - "animal-crossing-new-leaf" - "anno-1404" - "anno-1404-venice" - "anno-1503" - "anno-1701" - "anno-2070" - "anno-online" - "annoying-challenge" - "anodyne" - "anomaly-warzone-earth" - "another-bound-neo" - "another-case-solved" - "another-world" - "antichamber" - "aoe-castle-siege" - "apb-reloaded" - "aporkalypse" - "appy-1000mg" - "aquaria" - "aqueduct" - "arcade" - "arcanum" - "arche-age" - "arel-wars-2" - "arkania-blade-of-destiny" - "arkham-city-lockdown" - "arkham-origins-blackgate" - "arma" - "arma-2" - "arma-3" - "armageddon-empires" - "armed-assault" - "armored-core-5" - "armored-princess" - "army-of-darkness-defense" - "around-the-world-in-80-d" - "art-academy-2nd-semester" - "artemis" - "artist-colony" - "arx-fatalis" - "ascend-hand-of-kul" - "ascendancy" - "ascendant" - "ashes-cricket-2009" - "asphalt-6" - "asphalt-7-heat" - "asphalt-8" - "assassins-creed" - "assassins-creed-2" - "assassins-creed-3" - "assassins-creed-4" - "assassins-creed-fc" - "assassins-creed-pirates" - "assassins-creed-pl" - "assassins-creed-rogue" - "assassins-creed-series" - "assassins-creed-unity" - "astro-empires" - "astroflux" - "astroslugs" - "async-corp" - "atari-2600" - "atelier-annie" - "atelier-escha-and-logy" - "atelier-iris-1" - "atelier-iris-2" - "atelier-iris-3" - "atelier-meruru" - "atelier-rorona" - "atelier-totori" - "atlantica-online" - "atom-zombie-smasher" - "attack-of-friday-monsters" - "atwar" - "audio-hardware" - "audiosurf" - "auditorium" - "aura-kingdom" - "autohotkey" - "avadon-black-fortress" - "avatar" - "avatar-the-game" - "avencast" - "avengers-alliance" - "avengers-battle-for-earth" - "avernum-4" - "avernum-6" - "avernum-escape-the-pit" - "avoid-the-noid" - "awesomenauts" - "ayakashi" - "babo-violent" - "back-to-karkand" - "back-to-the-future-ep-1" - "backwards-compatibility" - "backyard-monsters" - "bad-company-2" - "bad-company-2-vietnam" - "bad-dudes-vs-dragonninja" - "bad-piggies" - "badland" - "bag-it" - "baldurs-gate" - "baldurs-gate-2" - "baldurs-gate-2-tob" - "baldurs-gate-enhanced" - "band-stars" - "banished" - "banjo-kazooie" - "basement" - "basement-collection" - "bastion" - "batman-arkham-asylum" - "batman-arkham-city" - "batman-arkham-origins" - "battle-camp" - "battle-city" - "battle-for-middle-earth" - "battle-for-wesnoth" - "battle-gems" - "battle-inf" - "battle-nations" - "battle-of-the-immortals" - "battle-princess" - "battle.net" - "battleblock-theater" - "battlecry" - "battlefield-1942" - "battlefield-1943" - "battlefield-2" - "battlefield-2142" - "battlefield-3" - "battlefield-4" - "battlefield-hardline" - "battlefield-heroes" - "battlefield-p4f" - "battlefield-premium" - "battlefield-series" - "battlefield-vietnam" - "battleheart" - "battleheart-legacy" - "battlelog" - "battleships" - "battlestar-galactica" - "bayonetta" - "bayonetta-2" - "beacon" - "bead-machine" - "beat-hazard" - "bejeweled-3" - "bejeweled-blitz" - "bejeweled-twist" - "ben-10-omniverse" - "ben-10-protector-of-earth" - "beyblade-metal-fusion" - "beyond-good-and-evil" - "beyond-two-souls" - "big-red-racing" - "big-time-gangster" - "binary-domain" - "binding-of-isaac" - "binding-of-isaac-rebirth" - "bionic-commando" - "bionic-commando-rearmed" - "bioshock" - "bioshock-2" - "bioshock-infinite" - "bioshock-series" - "bit-dungeon" - "bit-trip-beat" - "bit-trip-core" - "bit-trip-fate" - "bit-trip-runner" - "black-and-white" - "black-and-white-2" - "black-mesa" - "black-prophecy-na" - "blackguards" - "blacklight-retribution" - "blade-kitten" - "blades-of-time" - "bladeslinger" - "blast-monkeys" - "blazblue" - "bleach-the-blade-of-fate" - "bleed" - "blight-of-the-immortals" - "blockheads" - "blocks-that-matter" - "blocky-roads" - "blood-and-glory-2" - "blood-bowl" - "blood-bowl-legendary-ed" - "blood-brothers" - "bloody-good-time" - "bloons-td-4" - "bloons-td-5" - "bloons-td-battles" - "blue-lacuna" - "blueberry-garden" - "blur" - "bolo" - "bomber-hehhe" - "bomberman-battlefest" - "book-of-unwritten-tales" - "bookworm-adventures" - "boom-beach" - "booster-trooper" - "boot-camp" - "borderlands" - "borderlands-2" - "borderlands-2-ttaodk" - "borderlands-pre-sequel" - "borderlands-series" - "botanicula" - "bound-by-flame" - "box-it" - "boxpop" - "braid" - "brave-frontier" - "brave-trials" - "bravely-default" - "bravely-default-demo" - "breath-of-death-vii" - "breath-of-fire-4" - "brick-force" - "bridge-constructor" - "brigandine" - "brightwood-adventures" - "brink" - "broforce" - "brogue" - "broken-age" - "broken-sword" - "brothers-tale-of-two-sons" - "browser-quest" - "brutal-legend" - "bubble-bobble-neo" - "buck-bumble" - "bug-defense" - "bukkit-worldedit" - "bulletstorm" - "bunni" - "bunny-must-die" - "burnout" - "burnout-3" - "burnout-legends" - "burnout-paradise" - "burnout-revenge" - "burrito-bison-revenge" - "calculords" - "california-games" - "california-gold-rush-2" - "call-of-cthulhu-dcote" - "call-of-duty" - "call-of-duty-black-ops" - "call-of-duty-black-ops-2" - "call-of-duty-elite" - "call-of-duty-ghosts" - "call-of-duty-world-at-war" - "call-of-juarez-gunslinger" - "canabalt" - "candy-box" - "candy-box-2" - "candy-crush-saga" - "capitalism-2" - "captain-forever" - "captain-jameson" - "captain-successor" - "captain-tsubasa" - "carcassonne" - "card-hunter" - "cardinal-quest" - "cargo-commander" - "carmageddon" - "carmen-sandiego" - "cars-2" - "cart-life" - "cartoon-wars" - "castaway" - "caster" - "castle-clash" - "castle-crashers" - "castle-of-dr-brain" - "castle-of-illusion" - "castle-of-the-winds" - "castle-vox" - "castlevania-cotm" - "castlevania-ds" - "castlevania-hd" - "castlevania-los" - "castlevania-los-mof" - "castlevania-ooe" - "castlevania-sotn" - "castleville" - "cat-life-chatchat" - "catacomb-snatch" - "catalog-heaven" - "catherine" - "cave-story" - "centipede" - "chains-of-satinav" - "champions-online" - "chantelise" - "chaos-rings-omega" - "chasm-the-rift" - "cheat-engine" - "cheats" - "chef-de-bubble" - "chess-cube" - "chess-the-gathering" - "chessmaster" - "chicken-invaders-4" - "chickens" - "child-of-eden" - "child-of-light" - "chime" - "chime-super-deluxe" - "chivalry-medieval-warfare" - "chobots" - "chrono-cross" - "chrono-trigger" - "chulip" - "cinders" - "cities-in-motion" - "cities-in-motion-2" - "cities-xl" - "cities-xl-2012" - "city-of-heroes" - "city-story" - "cityville" - "civ-4-colonization" - "civ-5-brave-new-world" - "civ-5-gods-and-kings" - "civ-clicker" - "civilization" - "civilization-2" - "civilization-3" - "civilization-4" - "civilization-4-bts" - "civilization-5" - "civilization-beyond-earth" - "civilization-revolution" - "civilization-revolution-2" - "civworld" - "cl-gm-attractive-people" - "cladun" - "clash-in-the-clouds" - "clash-of-clans" - "clash-of-heroes" - "classic-mac-os" - "clicker-heroes" - "clive-barkers-undying" - "clone-wars-adventures" - "close-combat-arnhem" - "cloud-breakers" - "club-nintendo" - "club-penguin" - "cnc-zero-hour" - "cobalt" - "cod-advanced-warfare" - "cod-black-ops-zombies" - "cod-united-offensive" - "cognition" - "coin-crypt" - "coin-dozer" - "colonization" - "color-mania" - "colossatron" - "columns-3" - "combo-crew" - "command-and-conquer" - "command-and-conquer-3" - "command-and-conquer-4" - "command-and-conquer-ts" - "command-center" - "commander-keen" - "commandos" - "commandos-2" - "commodore-64" - "company-of-heroes" - "company-of-heroes-2" - "competitive-gaming" - "completion-time" - "conception-2" - "conclave" - "condemned" - "conquer-club" - "conquer-online" - "conquest-of-paradise" - "contra" - "contra-rebirth" - "contraption-maker" - "controllers" - "cook-serve-delicious" - "cookie-clicker" - "cookie-clicker-collector" - "cooking-mama-4" - "corsixth" - "cortex-command" - "cossacks-back-to-war" - "costume-quest" - "costume-quest-2" - "counter-strike" - "counter-strike-cz" - "counter-strike-go" - "counter-strike-source" - "covenant-of-the-plume" - "crackdown" - "crackdown-2" - "craft-the-world" - "crash-bandicoot-2" - "crash-team-racing" - "crash-time-2" - "crashday" - "crawl" - "crayon-chronicles" - "crayon-physics" - "creeper-world-3-ae" - "cricket-2011" - "crimson-room" - "crisis-core-ff7" - "cross-edge" - "crossy-road" - "crusader-kings" - "crusader-kings-2" - "crypt-of-the-necrodancer" - "cryptozookeeper" - "crysis" - "crysis-2" - "crysis-3" - "crysis-warhead" - "crystal-story" - "csrclassics" - "cthulhu-saves-the-world" - "cthulu-saves-the-world" - "cube-world" - "cubemen" - "cultures" - "curiosity" - "cursed-crusade" - "custom-robo-arena" - "cut-the-rope" - "cyber-knights" - "cyberia" - "cyberlords-arcology" - "daggerfall" - "dance-central" - "dance-central-2" - "dance-central-3" - "dance-dance-revolution" - "danganronpa" - "danganronpa-2" - "dangerous-adventure" - "dark-age-of-camelot" - "dark-meadow" - "dark-messiah-of-m-m" - "dark-quest" - "dark-reign" - "dark-souls" - "dark-souls-2" - "darkfall-unholy-wars" - "darksiders" - "darksiders-2" - "darkspore" - "darkville" - "darwinia" - "dawn-of-heroes" - "dawn-of-war-2" - "day-of-defeat" - "day-of-defeat-source" - "day-of-the-tentacle" - "dayz-2012" - "dayz-standalone" - "dc-universe-online" - "dcs-world" - "ddr-hottest-party-3" - "de-blob-2" - "dead-ahead" - "dead-island" - "dead-island-epidemic" - "dead-island-riptide" - "dead-nation" - "dead-pixels" - "dead-rising-2" - "dead-rising-3" - "dead-space" - "dead-space-2" - "dead-space-3" - "dead-trigger" - "deadly-premonition" - "deadly-rooms-of-death" - "dear-esther" - "death-rally-2012" - "deathsmiles" - "deathspank" - "deemo" - "defcon" - "defender-2" - "defender-of-the-crown" - "defenders-quest" - "defense-grid-2" - "defense-grid-awakening" - "defense-technica" - "defiance" - "delicious-emily-true-love" - "deluge-rpg" - "delve-deeper" - "democracy-3" - "demon-defence" - "demons-souls" - "deponia" - "descent-1" - "descent-2" - "descent-3" - "desert-strike" - "desktop-defender" - "desktop-dungeons" - "desktop-dungeons-2010" - "despicable-me-minion-rush" - "destiny" - "desura" - "deus-ex" - "deus-ex-human-revolution" - "deus-ex-invisble-war" - "deus-ex-the-fall" - "deus-vult" - "devil-may-cry-3" - "devil-may-cry-4" - "devil-survivor-2" - "diablo" - "diablo-1-hd" - "diablo-2" - "diablo-3" - "diablo-3-barbarian" - "diablo-3-console" - "diablo-3-crusader" - "diablo-3-demon-hunter" - "diablo-3-monk" - "diablo-3-witch-doctor" - "diablo-3-wizard" - "diablo-hellfire" - "diablo-series" - "diamond-dash" - "diddy-kong-racing" - "die2nite" - "diehard-dungeon" - "digimon-world-dawn-dusk" - "digital-distribution" - "directx-10" - "directx-11" - "directx-9" - "dirt" - "dirt-2" - "dirt-3" - "dirt-showdown" - "disco-zoo" - "disgaea" - "disgaea-2" - "disgaea-3" - "disgaea-4" - "disgaea-d2" - "dishonored" - "disney-infinity" - "disney-infinity-2.0" - "disney-infinity-marvel" - "disney-magical-world" - "dissidia-012" - "distant-worlds-legends" - "distant-worlds-shadows" - "distant-worlds-shakturi" - "divekick" - "divine-divinity" - "divinity-2-ego-draconis" - "divinity-original-sin" - "dj-hero" - "dk-country-returns" - "dkc-tropical-freeze" - "dlc-quest" - "dmc-devil-may-cry" - "dnd-shadow-over-mystara" - "dnd-tower-of-doom" - "doctor-lautrec" - "doctor-who-legacy" - "dod-conquest-wizardlands" - "doge2048" - "dogeminer" - "dogfight-1942" - "dogfighter" - "dolphin-olympics-2" - "donkey-kong-64" - "donkey-kong-94" - "donkey-kong-country-3" - "donkey-kong-game-watch" - "dont-look-back" - "dont-move" - "dont-starve" - "dont-starve-together" - "dont-touch-the-spikes" - "doodle-devil" - "doodle-god" - "doodle-jump" - "doom" - "doom-2" - "doom-3" - "doom-3-bfg-edition" - "doom-and-destiny" - "doomrl" - "doorways" - "doritos-crash-course-2" - "dos" - "dosbox" - "dota" - "dota-2" - "dots" - "double-dragon-neon" - "dqm-joker-2" - "dr-laser" - "drag-racing" - "dragon-age-2" - "dragon-age-awakening" - "dragon-age-inquisition" - "dragon-age-legends" - "dragon-age-origins" - "dragon-ball-z-battle-of-z" - "dragon-city" - "dragon-fantasy" - "dragon-nest" - "dragon-quest-9" - "dragon-quest-heroes" - "dragon-quest-series" - "dragon-quest-v" - "dragon-quest-viii" - "dragon-warrior-monsters" - "dragonball-z-budokai-3" - "dragons-call" - "dragons-crown" - "dragons-dogma" - "dragons-dogma-dark-arisen" - "dragons-nest" - "dragons-of-atlantis" - "dragons-prophet" - "dragonvale" - "draw-a-stickman-epic" - "draw-something" - "drawquest" - "dream" - "dream-house-days" - "dreamfall" - "drivatars" - "driver-san-francisco" - "drm" - "droid-assault" - "drop7" - "droplitz" - "drugbound" - "ds" - "dsi" - "dualplay" - "ducktales-remastered" - "duke-nukem-3d" - "duke-nukem-forever" - "dune2" - "dungeon-crawl-stone-soup" - "dungeon-defender-eternity" - "dungeon-defenders" - "dungeon-defenders-2" - "dungeon-hearts" - "dungeon-keeper" - "dungeon-keeper-2" - "dungeon-of-the-endless" - "dungeon-quest" - "dungeon-raid" - "dungeon-robber" - "dungeon-siege" - "dungeon-siege-2" - "dungeon-siege-3" - "dungeon-village" - "dungeonland" - "dungeonmans" - "dungeons" - "dungeons-dragons-online" - "dungeons-of-dredmor" - "dust-514" - "dust-an-elysian-tail" - "dustforce" - "dw-strikeforce" - "dwarf-fortress" - "dwarf-fortress-adventure" - "dynasty-warriors" - "dynasty-warriors-7" - "dynasty-warriors-8" - "dynasty-warriors-next" - "ea-sports-active" - "eador" - "earth-defense-force" - "earth-defense-force-2025" - "earthbound" - "edge" - "edna-and-harvey-new-eyes" - "eets" - "ef-fairy-tale-of-the-two" - "el-shaddai" - "elder-sign-omens" - "eldritch" - "electronic-super-joy" - "elemental-war-of-magic" - "elephant-quest" - "elite-beat-agents" - "elite-dangerous" - "elona-plus" - "empire-defense-2" - "empire-earth" - "empire-total-war" - "emulation" - "enchanted-arms" - "endless-battle" - "endless-legend" - "endless-space" - "endless-space-disharmony" - "enigmo-2" - "entanglement" - "epic-astro-story" - "epic-battle-fantasy-4" - "epic-defense-the-elements" - "epic-mickey" - "epsxe" - "eq-landmark" - "erepublik" - "erkie" - "escape-goat" - "escape-goat-2" - "eschalon-book-2" - "espn-fantasy-football" - "esports" - "esrb" - "estranged-act-1" - "eternal-sonata" - "ether-lords" - "etherlords-2" - "etrian-odyssey" - "etrian-odyssey-2" - "etrian-odyssey-3" - "etrian-odyssey-4" - "etrian-odyssey-untold" - "eufloria" - "euro-truck-simulator-2" - "europa-universalis-3" - "europa-universalis-4" - "europa-universalis-rome" - "evacuation" - "eve-online" - "everquest" - "everquest-2" - "eversion" - "evil-genius" - "evilibrium" - "evochron-mercenary" - "evoland" - "evolva" - "evolve-big-alpha" - "excavatorrr-2-cwoun" - "exoplanet-war" - "expeditions-conquistador" - "extreme-road-trip-2" - "extreme-tux-racer" - "eye-divine-cybermancy" - "eyepet" - "f1-2011" - "f1-2012" - "fable" - "fable-2" - "fable-3" - "fable-anniversary" - "fable-series" - "fable-the-journey" - "facade" - "face-raiders" - "facebook" - "factorio" - "faerie-solitaire" - "faery-legends-of-avalon" - "fall-from-heaven-2" - "fall-of-cybertron" - "fallen-enchantress" - "fallen-london" - "fallout" - "fallout-2" - "fallout-3" - "fallout-3-dc-interiors" - "fallout-new-vegas" - "fallout-series" - "fallout-tactics" - "family-guy-quest-for-stuf" - "fantasica" - "fantasy-lcs" - "fantasy-life" - "far-cry-2" - "far-cry-3" - "far-cry-3-blood-dragon" - "far-cry-4" - "farm-and-grow" - "farming-simulator-2011" - "farming-simulator-2013" - "farmville" - "farmville-country-escape" - "fast-expand" - "fat-princess" - "fate" - "fate-extra" - "fate-of-atlantis" - "fate-of-the-world" - "fate-stay-night" - "favimon" - "fear" - "fear-3" - "feeding-frenzy" - "fez" - "ff-4-heroes-of-light" - "ff-airborn-brigade" - "ff-all-the-bravest" - "ff-tactics" - "ff-tactics-a2" - "ff-tactics-advance" - "ff13-lightning-returns" - "fieldrunners2" - "fiesta-online" - "fifa-10" - "fifa-11" - "fifa-12" - "fifa-13" - "fifa-14" - "fifa-15" - "fifa-9" - "fifa-manager-2011" - "fifa-manager-2013" - "fifa-online-3" - "fifa-pro-club" - "fifa-ultimate-team" - "fifa-wc-brazil-2014" - "fifa-world" - "fight-night-round-4" - "fighting-games" - "final-fantasy" - "final-fantasy-10" - "final-fantasy-10-2" - "final-fantasy-11" - "final-fantasy-12" - "final-fantasy-13" - "final-fantasy-13-2" - "final-fantasy-14" - "final-fantasy-2" - "final-fantasy-3" - "final-fantasy-4" - "final-fantasy-5" - "final-fantasy-6" - "final-fantasy-7" - "final-fantasy-8" - "final-fantasy-9" - "final-fantasy-dimensions" - "final-fantasy-mq" - "final-fantasy-series" - "final-fantasy-v" - "find-mii" - "find-mii-2" - "finding-teddy" - "fire-emblem" - "fire-emblem-awakening" - "fire-emblem-por" - "fire-emblem-sacred-stones" - "firefall" - "firetop-mountain" - "first-person-shooter" - "fish-out-of-water" - "fist-of-the-north-star" - "fistful-of-frags" - "fit-meter" - "fitocracy" - "five-nights-at-freddys" - "five-nights-at-freddys-2" - "fix-it-felix-jr" - "fiz" - "flappy-bird" - "flappy2048" - "flash" - "flashback" - "flashflashrevolution" - "flatout" - "flatout-ultimate-carnage" - "flicky" - "flight-control-hd" - "flight-simulator-x" - "flipnic-ultimate-pinball" - "flow" - "flower-town" - "fluff-friends-rescue" - "fmh-2014" - "fmh-2015" - "fnv-dead-money" - "foiled" - "football-legends" - "football-manager-2010" - "football-manager-2011" - "football-manager-2012" - "football-manager-2013" - "football-manager-2014" - "for-the-motherland" - "force-unleashed" - "force-unleashed-2" - "forge-of-empires" - "forged-alliance-forever" - "forgotten-hope-2" - "forsaken-world" - "fort-conquer" - "fortune-street-wii" - "fortune-summoners" - "forza-3" - "forza-4" - "forza-5" - "forza-horizon" - "forza-horizon-2" - "fossil-fighters" - "fotonica" - "four-days" - "fractal" - "framerate" - "fraps" - "freeciv" - "freecol" - "freedom-planet" - "freelancer" - "freeorion" - "freespace-2" - "freeway-fury-2" - "frets-on-fire" - "frogatto-and-friends" - "from-dust" - "front-mission" - "front-mission-3" - "frontier-elite-2" - "frontierville" - "frozen-synapse" - "frozen-synapse-red" - "fruit-ninja" - "ftl-faster-than-light" - "fuel" - "fully-ramblomatic" - "futuridium-ep" - "g.i.-joe-battleground" - "gabriel-knight" - "galactic-civilizations-2" - "galaga" - "galaxir" - "galaxy-editor" - "galaxy-empire" - "galaxy-on-fire-2" - "game-boy" - "game-boy-advance" - "game-boy-wars" - "game-center" - "game-dev-story" - "game-dev-tycoon" - "game-gear" - "game-identification" - "game-of-thrones" - "game-of-thrones-ascent" - "game-of-war-fire-age" - "gamecube" - "gamer-mom" - "gameranger" - "games-for-windows" - "games-for-windows-live" - "gameshark-pro" - "gaming-history" - "gangland" - "gangster-paradise" - "gardening-mama-2" - "garrys-mod" - "gas-guzzlers" - "geared-2" - "gears-of-war" - "gears-of-war-2" - "gears-of-war-3" - "gears-of-war-judgment" - "gem-miner-2" - "gemcraft-0" - "gemcraft-chasing-shadows" - "gemcraft-labyrinth" - "gemini-rue" - "geneforge-2" - "generals" - "genesis" - "genetos" - "genji-days-of-the-blade" - "geometry-dash" - "ggtracker" - "ghost-recon-aw" - "ghost-recon-fs" - "ghost-recon-phantoms" - "ghosts-n-goblins" - "giana-sisters-td" - "giga-wing" - "ginormo-sword" - "gladius" - "glitch" - "global-agenda" - "globulation-2" - "glory-of-heracles" - "glowfish" - "gnome-boccia" - "gnomoria" - "go" - "go-beryllium" - "go-home-dinosaurs" - "goat-simulator" - "goblin-camp" - "god-of-war" - "god-of-war-3" - "god-of-war-ascension" - "godfather-2" - "godfinger" - "gods-will-be-watching" - "godus" - "godville" - "gog" - "golden-sun" - "golden-sun-dark-dawn" - "golden-sun-the-lost-age" - "goldeneye-007" - "gomoku" - "gone-home" - "google-chrome" - "google-doodles" - "google-maps-pokemon" - "goscurry" - "gotham-city-impostors" - "gothic-2" - "gothic-3" - "gran-turismo" - "gran-turismo-2" - "gran-turismo-3" - "gran-turismo-5" - "gran-turismo-6" - "grand-battle" - "grand-prix-story" - "grand-slam-tennis" - "grand-theft-auto-1" - "grand-theft-auto-2" - "grand-theft-auto-3" - "grand-theft-auto-4" - "grand-theft-auto-5" - "grand-theft-auto-5-ifruit" - "grand-theft-auto-series" - "graphics-card" - "gratuitous-space-battles" - "gravity-rush" - "gray-matter" - "great-adventures-lim" - "great-battles-medieval" - "greed-corp" - "grepolis" - "grid" - "grid-2" - "grid-autosport" - "gridrunner++" - "grim-dawn" - "grim-fandango" - "groove-coaster" - "grow-cannon" - "gta-chinatown-wars" - "gta-creator" - "gta-online" - "gta-san-andreas" - "gta-vice-city" - "gta-vice-city-stories" - "guacamelee" - "guardian-cross" - "guild-2" - "guild-wars" - "guild-wars-2" - "guitar" - "guitar-hero" - "guitar-hero-3" - "guitar-hero-warriors-rock" - "guitar-hero-world-tour" - "gun-bros" - "gun-monkeys" - "gunpoint" - "guns-of-icarus" - "guns-of-icarus-online" - "gunz-the-second-duel" - "gyromancer" - "h.a.w.x.-2" - "h2g2-30th-anniversary" - "hack-ex" - "hack-n-slash" - "hack-slash-crawl" - "hack-slash-loot" - "hacker-evolution-duality" - "hacker-evolution-series" - "hacker-evolution-untold" - "hacker-experience" - "hackycat" - "half-life" - "half-life-2" - "half-life-deathmatch" - "half-life-series" - "half-minute-hero" - "half-minute-hero-2" - "halo-2" - "halo-3" - "halo-4" - "halo-5" - "halo-anniversary" - "halo-combat-evolved" - "halo-mcc" - "halo-reach" - "halo-series" - "halo-spartan-assault" - "halo-wars" - "halo-waypoint" - "hamachi" - "hammer" - "hammerfight" - "hammerwatch" - "happy-action-theatre" - "happy-jump" - "happy-street" - "happy-wars" - "hard-drive" - "hard-reset" - "hardware" - "harms-way" - "harvest-moon" - "harvest-moon-2" - "harvest-moon-anb" - "harvest-moon-awl" - "harvest-moon-btn" - "harvest-moon-gb" - "harvest-moon-innocent" - "harvest-moon-mm" - "harvest-moon-series" - "harvest-moon-tranquility" - "harvest-moon-two-towns" - "hatch" - "hatchi" - "haunt-house-terrortown" - "hawken" - "hay-day" - "hdmi" - "health" - "hearthstone" - "hearts-of-iron-2" - "hearts-of-iron-3" - "heavy-gear" - "heavy-rain" - "hector-badge-of-carnage" - "hedgehog-launch" - "hell-yeah" - "hellgate-london" - "henry-hatsworth" - "heretic" - "hero-academy" - "hero-deckmasters" - "hero-of-sparta-2" - "hero-siege" - "heroes-and-generals" - "heroes-chronicles" - "heroes-might-magic-2" - "heroes-might-magic-3" - "heroes-might-magic-5" - "heroes-of-dragon-age" - "heroes-of-newerth" - "heroes-of-ruin" - "heroes-of-the-storm" - "heroville" - "hexdefense" - "hidden-chronicles" - "highgrounds" - "hill-climb-racing" - "hinterland" - "hitman-2" - "hitman-absolution" - "hitman-blood-money" - "hitman-codename-47" - "hitogata-happa" - "hiversaires" - "hoard" - "home" - "homefront" - "homeworld" - "hosting" - "hot-shots-golf-wi" - "hot-springs-story" - "hotline-miami" - "how-to-survive" - "humble-bundle" - "hundreds" - "hungry-shark" - "hunted-the-demons-forge" - "hydro-thunder-hurricane" - "hydrophobia" - "hyper-princess-pitch" - "hyperdimension-neptunia" - "hyperdimension-neptunia-2" - "hyperdimension-neptunia-v" - "hyrule-warriors" - "i-am-alive" - "i-dig-it" - "ib" - "ibomber-defense" - "ice-age-adventure" - "icebreaker-viking-voyage" - "icewind-dale" - "icewind-dale-2" - "ichi" - "ico" - "icy-gifts-2" - "id-tech-3" - "id-tech-4" - "idle-worship" - "ikariam" - "il2-sturmovik-1946" - "illbleed" - "illyriad" - "ilomilo" - "imaginary-range" - "impire" - "impossible-mission" - "impossible-mission-ii" - "impossible-test-2" - "incredipede" - "incremental-zoo" - "independence-war" - "indiana-jones-im" - "indie-game-the-movie" - "indie-royale" - "indigo-prophecy" - "industrial-revolution" - "industry-giant-2" - "infamous" - "infamous-2" - "infamous-paper-trail" - "infamous-second-son" - "infectonator-2" - "infested-planet" - "infiniminer" - "infinite-undiscovery" - "infinity-blade" - "infinity-blade-2" - "infinity-blade-3" - "infinity-field" - "inflation-rpg" - "ingress" - "injustice-gods-among-us" - "inotia-3" - "insanely-twisted-planet" - "insaniquarium-deluxe" - "inside-a-star-filled-sky" - "insurgency" - "ios" - "iron-brigade" - "irukandji" - "it-belongs-ancient-ruin" - "ittle-dew" - "jackbox-party-pack" - "jade-cocoon-2" - "jade-empire" - "jagged-alliance" - "jagged-alliance-2" - "jagged-alliance-bia" - "jagged-alliance-online" - "jaguar" - "jak-and-daxter" - "jamestown" - "jazzpunk" - "jedi-knight-jedi-academy" - "jelly-defense" - "jet-set-radio" - "jetpack-joyride" - "jets-and-guns" - "jewels" - "jewels-of-the-oracle" - "joe-danger-2" - "journey" - "juiced" - "jumper" - "junk-jack-x" - "jurassic-park-2011" - "just-cause-2" - "just-cause-2-multiplayer" - "just-dance-2014" - "just-dance-3" - "kaillera" - "kairobotica" - "kamidori-alchemy-meister" - "kane-and-lynch" - "kantai-collection" - "karate-champ" - "karoshi-2" - "katahane" - "katamari-damacy" - "katawa-shoujo" - "kawaii-pet-megu" - "kawashima-brain-training" - "kbounce" - "kdfw" - "kennys-adventure" - "kenshi" - "kerbal-space-program" - "ketzals-corridors" - "keyboard" - "kickbeat" - "kid-icarus" - "kid-icarus-myths-monsters" - "kid-icarus-uprising" - "killer-instinct" - "killer-instinct-2013" - "killing-floor" - "killzone-3" - "killzone-mercenary" - "kinect" - "kinect-fun-labs" - "kinect-sports" - "kinect-star-wars" - "kinectimals-unleashed" - "king-arthur-2" - "king-arthurs-gold" - "king-of-dragon-pass" - "king-of-fighters-97" - "king-of-fighters-xiii" - "kingdom-for-princess-iv" - "kingdom-hearts" - "kingdom-hearts-1.5-remix" - "kingdom-hearts-2.5-remix" - "kingdom-hearts-3d" - "kingdom-hearts-bbs" - "kingdom-hearts-com" - "kingdom-hearts-series" - "kingdom-of-loathing" - "kingdom-rush" - "kingdoms-amalur-reckoning" - "kingdoms-of-camelot" - "kings-bounty" - "kings-bounty-crossworlds" - "kings-bounty-dark-side" - "kings-bounty-the-legend" - "kings-quest-v" - "kirby-crystal-shards" - "kirby-mass-attack" - "kirby-return-to-dreamland" - "kirby-super-star" - "kirby-triple-deluxe" - "kirbys-adventure" - "kirbys-adventure-3ds" - "kirbys-epic-yarn" - "kirbys-pinball-land" - "kittens-game" - "klonoa" - "knightfall-2" - "knightmare-tower" - "knights-and-merchants" - "knights-of-pen-and-paper" - "knights-of-xentar" - "kohan" - "kumoon" - "kung-fu-strike" - "la-mulana" - "la-noire" - "landgrab" - "lands-of-lore-god" - "lands-of-lore-toc" - "language" - "lara-croft-gol" - "larax-and-zaco" - "last-bronx" - "last-dream" - "le-ninja" - "leaderboards" - "league-of-legends" - "league-of-legends-chew" - "left-4-dead" - "left-4-dead-2" - "legal" - "legend-of-dragoon" - "legend-of-fae" - "legend-of-grimrock" - "legend-of-grimrock-2" - "legend-of-korra" - "legend-of-legaia" - "legend-of-the-river-king" - "legend-of-zelda" - "legends-of-dawn" - "legends-of-wrestling-2" - "legion-of-heroes" - "lego-batman" - "lego-batman-2" - "lego-batman-3" - "lego-city-undercover" - "lego-harry-potter" - "lego-harry-potter-2" - "lego-indiana-jones" - "lego-loc-lavals-journey" - "lego-lord-of-the-rings" - "lego-marvel-super-heroes" - "lego-movie" - "lego-pirates" - "lego-rock-raiders" - "lego-star-wars" - "lego-star-wars-3" - "lego-universe" - "lemmings" - "letterpress" - "leviathan-warships" - "lexicopolis-a-b-city" - "liberation-maiden" - "lichdom-battlemage" - "life-is-feudal" - "light-maze" - "lightning-returns-demo" - "lights-out" - "lil-kingdom" - "limbo" - "lineage-2" - "linux" - "lips" - "liquid-war" - "little-alchemist" - "little-big-planet" - "little-big-planet-2" - "little-big-planet-karting" - "little-big-planet-vita" - "little-inferno" - "little-racers-street" - "little-raiders" - "loadout" - "lock-n-roll" - "lock-on-flaming-cliffs" - "loh-trails-in-the-sky" - "lollipop-chainsaw" - "lone-survivor" - "long-live-the-queen" - "lord-of-the-rings-online" - "lord-of-ultima" - "lords-of-the-fallen" - "lost-eden" - "lost-in-blue-2" - "lost-odyssey" - "lost-planet-2" - "lost-planet-3" - "lostwinds" - "lotr-war-in-middle-earth" - "lotr-war-in-the-north" - "lsl-reloaded" - "lucius" - "ludum-dare" - "lufia-2" - "luftrausers" - "lugaru-hd" - "luigis-mansion" - "luigis-mansion-dark-moon" - "lumines" - "luminous-arc" - "lunar-racer" - "lure-of-the-temptress" - "mabinogi" - "mac-app-store" - "machinarium" - "madden-10" - "madden-11" - "madden-12" - "madden-13" - "madden-25" - "maddog-williams" - "mafia-1" - "mafia-2" - "mafia-wars" - "mafia-wars-2" - "mag" - "magic-2012" - "magic-2013" - "magic-2014" - "magic-2015" - "magic-tree" - "magicite" - "magicka" - "magicka-square-tablet" - "magnetic-billiards" - "majesty" - "majesty-2" - "make-no-wonder" - "maldita-castilla" - "mame" - "maniac-mansion" - "manic-miner" - "manual" - "manyland" - "maplestory" - "marathon" - "mardek-2" - "mardek-3" - "marine-corps" - "mario-bros" - "mario-kart-64" - "mario-kart-7" - "mario-kart-8" - "mario-kart-double-dash" - "mario-kart-ds" - "mario-kart-wii" - "mario-luigi-dream-team" - "mario-party" - "mario-party-8" - "mario-party-island-tour" - "mario-series" - "mario-sonic-london-2012" - "mario-sonic-winter-games" - "mario-superstar-baseball" - "mario-superstar-saga" - "mario-tennis-open" - "mario-vs-dk-3" - "mark-of-the-ninja" - "marvel-heroes" - "marvel-infinity-gauntlet" - "marvel-puzzle-quest" - "marvel-ultimate-alliance" - "marvel-vs-capcom-2" - "marvel-vs-capcom-3" - "marvelous" - "mass-effect" - "mass-effect-2" - "mass-effect-3" - "mass-effect-3-citadel" - "mass-effect-3-datapad" - "mass-effect-3-multiplayer" - "mass-effect-infiltrator" - "mass-effect-series" - "massive-chalice" - "master-of-magic" - "master-of-orion" - "master-of-orion-2" - "masters-of-the-arcane" - "mavericks" - "max-axe" - "max-payne" - "max-payne-2" - "max-payne-3" - "maze-war" - "mc-equivalent-exchange" - "mc-tinkers-construct" - "mcpatcher" - "mcpixel" - "mdk" - "me2-cerberus-network" - "me3-leviathan" - "me3-resurgence-pack" - "mean-bean-machine" - "mechcommander-2" - "mechwarrior" - "mechwarrior-online" - "medal-of-honor" - "medieval-2-total-war" - "medievil" - "medievil-resurrection" - "mega-defender" - "mega-mall-story" - "mega-man-10" - "mega-man-2" - "mega-man-9" - "mega-man-revolution" - "mega-man-series" - "mega-man-x" - "mega-man-x-series" - "mega-man-x2" - "mega-man-x3" - "mega-man-x4" - "mega-man-x8" - "mega-man-zx" - "mega-man-zx-advent" - "mega-phone" - "megaman-starforce-2" - "megapolis" - "memoria" - "memory-challenge" - "men-of-war" - "mercenary-kings" - "merry-clickmas" - "metal-gear" - "metal-gear-rising" - "metal-gear-solid" - "metal-gear-solid-2" - "metal-gear-solid-3" - "metal-gear-solid-4" - "metal-gear-solid-hd" - "metal-gear-solid-series" - "metal-slug-2" - "metal-slug-3" - "metal-slugs-defense" - "metal-torrent" - "meteor-blitz" - "metro-2033" - "metro-2033-redux" - "metro-last-light" - "metroid" - "metroid-2-return-of-samus" - "metroid-fusion" - "metroid-other-m" - "metroid-prime-3" - "metroid-prime-trilogy" - "metroid-zero-mission" - "mgs-5-ground-zeroes" - "mgs-5-motherbase" - "mgs-peace-walker" - "mgs-revengeance" - "microsoft-flight" - "microsoft-pinball" - "microsoft-train-simulator" - "microvolts" - "middle-manager-of-justice" - "midnight-club-los-angeles" - "midnight-leaves" - "midtown-madness-2" - "might-and-magic" - "might-and-magic-2" - "might-and-magic-6" - "might-and-magic-7" - "might-and-magic-8" - "might-and-magic-x" - "might-magic-heroes-6" - "mighty-quest-epic-loot" - "mighty-switch-force" - "mighty-switch-force-2" - "mii-force" - "miiverse" - "mikeinel-who" - "millenia-ad" - "mindfeud" - "minecraft" - "minecraft-ae" - "minecraft-aether" - "minecraft-armoas-core" - "minecraft-beta" - "minecraft-bigdig" - "minecraft-biomes-o-plenty" - "minecraft-buildcraft" - "minecraft-bukkit" - "minecraft-classic" - "minecraft-comes-alive" - "minecraft-commands" - "minecraft-computercraft" - "minecraft-console" - "minecraft-crash-landing" - "minecraft-direwolf20" - "minecraft-extra-bees" - "minecraft-factorization" - "minecraft-feed-the-beast" - "minecraft-forestry" - "minecraft-forge" - "minecraft-hexxit" - "minecraft-industrialcraft" - "minecraft-mad-science" - "minecraft-mccrayfish" - "minecraft-mekanism" - "minecraft-mods" - "minecraft-mystcraft" - "minecraft-oceancraft" - "minecraft-optifine" - "minecraft-pixelmon" - "minecraft-pocket-edition" - "minecraft-pocket-mine" - "minecraft-portal-gun" - "minecraft-qcraft" - "minecraft-railcraft" - "minecraft-realms" - "minecraft-redpower" - "minecraft-redstone" - "minecraft-scenter" - "minecraft-server" - "minecraft-seus" - "minecraft-spigot" - "minecraft-te" - "minecraft-technic-pack" - "minecraft-tekkit" - "minecraft-thaumcraft" - "minecraft-towny" - "minecraft-twilight-forest" - "minecraft-voltz" - "minecraft-westeroscraft" - "minecraft-zans-minimap" - "miner-wars-arena" - "mines-of-mars" - "minesweeper" - "mini-metro" - "mini-ninjas" - "minibash" - "minicraft" - "minigore2" - "mirrormoon-ep" - "mirrors-edge" - "mission-editing" - "mission-of-crisis" - "mittens" - "mlb-08-the-show" - "mlb-2k10" - "mlb-2k13" - "mm-duel-of-champions" - "mm-heroes-kingdoms" - "mmo-incremental" - "mob-wars" - "moba" - "mobiloid" - "moby-dick" - "mod-nation-racers" - "modern-combat-3" - "modern-warfare" - "modern-warfare-2" - "modern-warfare-3" - "mods" - "moh-allied-assault" - "mojo" - "momodora-ii" - "monaco" - "mond-cards" - "monday-night-combat" - "monitor" - "monkey-island" - "monkey-island-2" - "monopoly-hotels" - "monster-blade" - "monster-clicker" - "monster-girl-quest" - "monster-hunter-3-tri" - "monster-hunter-3-ultimate" - "monster-hunter-freedom-2" - "monster-hunter-freedom-u" - "monster-loves-you" - "monster-maker-3" - "monster-manor" - "monster-monpiece" - "monster-world" - "morrowind" - "mortal-kombat" - "mortal-kombat-2" - "mortal-kombat-3" - "mortal-kombat-4" - "mortal-kombat-9" - "mortal-kombat-ak" - "mortal-kombat-trilogy" - "mother-3" - "motioninjoy-ds3tool" - "motor-world-car-factory" - "motorstorm-rc" - "mount-and-blade" - "mount-and-blade-nw" - "mount-and-blade-warband" - "mount-and-blade-wfas" - "mountain" - "mouse" - "mr-block-free" - "ms-flight-simulator-2004" - "msdos" - "mtg-duels-of-planeswalker" - "mtg-online" - "mtg-tactics" - "mu-online" - "mud-tv" - "muds" - "mugen" - "mugen-souls" - "multiwinia" - "mumble" - "muramasa-the-demon-blade" - "murder" - "murdered-soul-suspect" - "mutant-league-football" - "my-baby-3-and-friends" - "my-fitness-coach" - "my-little-pony" - "my-muppets-show" - "myst" - "myst-series" - "naev" - "nano-assault" - "napoleon-total-war" - "naruto-clash-of-ninjas" - "naruto-ultimate-ninja" - "naruto-ultimate-ninja-3" - "nascar-simracing" - "natural-selection-2" - "nazi-zombie-army" - "nba-jam" - "nba-live-98" - "nba2k11" - "nba2k12" - "nba2k13" - "nba2k14" - "ncaa-football-11" - "need-for-speed-shift" - "need-for-speed-shift-2" - "need-for-speed-undercover" - "need-for-speed-world" - "neo-scavenger" - "neocron" - "neopets" - "nes" - "nes-remix-2" - "netflix" - "nethack" - "nethack4" - "nether" - "netstorm-islands-at-war" - "networking" - "neverball" - "neverwinter" - "neverwinter-nights" - "neverwinter-nights-2" - "new-beginning-final-cut" - "new-little-kings-story" - "new-super-luigi-u" - "new-super-mario-bros" - "new-super-mario-bros-2" - "new-super-mario-bros-u" - "new-super-mario-bros-wii" - "nfl-blitz" - "nfl-pro-2012" - "nfs-3-hot-pursuit" - "nfs-hot-pursuit" - "nfs-hot-pursuit-2" - "nfs-most-wanted-2005" - "nfs-most-wanted-2012" - "nfs-pro-street" - "nfs-rivals" - "nfs-the-run" - "nfs-underground" - "nhl-11" - "nhl-12" - "nhl-13" - "nhl-15" - "nhl-slapshot" - "ni-no-kuni-white-witch" - "nidhogg" - "nier" - "nightsky" - "nimble-quest" - "nimbus" - "ninja-fishing" - "ninja-village" - "nintendo-64" - "nintendo-land" - "nintendogs-and-cats" - "nitrome-must-die" - "nitronic-rush" - "no-heroes-allowed" - "no-more-heroes" - "no-more-heroes-2" - "no-more-room-in-hell" - "no-zombies-allowed" - "northern-expansion" - "nova" - "nova-2" - "nova-3" - "nox" - "nuclear-dawn" - "nuclear-throne" - "oblivion" - "occult-chronicles" - "oceanhorn" - "octgn" - "octodad-dadliest-catch" - "oculus-rift" - "oddworld-abes-exoddus" - "oddworld-munchs-odyssey" - "odin-sphere" - "office-jerk" - "offspring-fling" - "ogame" - "ogre-battle" - "oh-edo-towns" - "oil-rush" - "okami" - "okami-hd" - "olliolli" - "one-chance" - "one-must-fall-2097" - "one-way-heroics" - "onlive" - "open-xcom" - "openfeint" - "openspades" - "openttd" - "operation-flashpoint" - "operation-flashpoint-dr" - "operation-smash" - "orbital-command" - "orcs-must-die" - "orcs-must-die-2" - "order-and-chaos-online" - "oregon-trail-40th-anniv" - "oregon-trail-settlers" - "organ-trail" - "origin" - "os-x" - "osmos" - "osu" - "otherland" - "otomedius-excellent" - "out-there" - "outcast" - "outer-wilds" - "outlast" - "outpost" - "ouya" - "overlord" - "overlord-2" - "pac-man" - "painkiller-resurrection" - "pajama-sam" - "pal" - "pandemic-2" - "pando-media-booster" - "pandora-first-contact" - "pandoras-tower" - "pangya-fantasy-golf" - "panzadrome" - "panzer-corps" - "panzer-general" - "papa-sangre-2" - "paper-mario" - "paper-mario-sticker-star" - "paper-mario-ttyd" - "paperplane" - "papers-please" - "paradise-island" - "paradroid" - "parameters" - "paranautical-activity" - "parking-mania-lite" - "parmen" - "patapon-2" - "path-of-exile" - "patrician-ii" - "patrician-iii" - "patrician-iv" - "payday-2" - "payday-the-heist" - "pc" - "pcsx2" - "peggle" - "peggle-blast" - "peggle-nights" - "penny-arcade-2" - "penny-arcade-3" - "penny-arcade-4" - "penumbra" - "perfect-dark" - "perfect-world" - "performance" - "perpetuum" - "persona-2-ep" - "persona-2-innocent-sin" - "persona-3-fes" - "persona-3-portable" - "persona-4" - "persona-4-arena" - "persona-q" - "pes-2011" - "pes-2012" - "pes-2013" - "pet-rescue-saga" - "petz-dogs-2" - "petz-dogz-2" - "phantasy-star-4" - "phantasy-star-online" - "phantasy-star-universe" - "phoenix-wright-aa" - "phoenix-wright-dd" - "physical-media" - "piano-tiles" - "pictionary-ultimate" - "pid" - "pikmin-3" - "pilota" - "pinball" - "pinball-fx2" - "pirate101" - "pirates-ahoy" - "piston-jump" - "pitfall" - "pitman" - "pixel-dungeon" - "pixel-gun-3d" - "pixel-hell" - "pixel-kingdom" - "pixel-people" - "pixel-perfect-puzzles" - "pixel-piracy" - "pixel-poro" - "pixeljunk-monsters" - "pixeljunk-shooter" - "pixelry" - "pizza-frenzy" - "plague-inc" - "plague-inc-evolved" - "plain-sight" - "planescape-torment" - "planet-crashers" - "planetary-annihilation" - "planetfall" - "planetside" - "planetside-2" - "plants-vs-zombies" - "plants-vs-zombies-2" - "platform-game" - "playstation-move" - "playstation-plus" - "playstation-tv" - "pocket-academy" - "pocket-army" - "pocket-clothier" - "pocket-empires" - "pocket-frogs" - "pocket-harvest" - "pocket-league-story" - "pocket-legends" - "pocket-mine" - "pocket-planes" - "pocket-stables" - "pocket-trains" - "pokedex-3d" - "pokemmo" - "pokemon" - "pokemon-ash-grey" - "pokemon-bank" - "pokemon-battle-trozei" - "pokemon-bw" - "pokemon-bw2" - "pokemon-conquest" - "pokemon-dpp" - "pokemon-explorers" - "pokemon-fifth-gen" - "pokemon-first-gen" - "pokemon-fourth-gen" - "pokemon-frlg" - "pokemon-gates-to-infinity" - "pokemon-global-link" - "pokemon-hgss" - "pokemon-mystery-dungeon" - "pokemon-online" - "pokemon-oras" - "pokemon-ranger-gs" - "pokemon-reborn" - "pokemon-rse" - "pokemon-second-gen" - "pokemon-sixth-gen" - "pokemon-stadium" - "pokemon-tcg-online" - "pokemon-third-gen" - "pokemon-tower-defense" - "pokemon-typing-adventure" - "pokemon-vortex" - "pokemon-world-online" - "pokemon-xy" - "pokemon-zeta-omicron" - "poker-at-the-inventory" - "poker-night-2" - "pokerstars" - "pole-position" - "police-quest" - "pools-of-darkness" - "pop-forgotten-sands" - "pop-sands-of-time" - "pop-the-forgotten-sands" - "pop-the-two-thrones" - "pop-warrior-within" - "popcap" - "poptropica" - "port-royale" - "port-royale-3" - "portal" - "portal-2" - "portal-2-peer-review" - "portal-series" - "poseidon-moa" - "postal" - "postal-2" - "postal-3" - "powder" - "power-of-illusion" - "power-supply" - "powerstar-golf" - "primal-carnage" - "prime-world-defenders" - "prince-of-persia" - "prince-of-persia-08" - "prinny-2" - "prison-architect" - "pro-evolution-soccer" - "pro-evolution-soccer-2009" - "pro-evolution-soccer-2011" - "prof-layton-last-specter" - "prof-layton-miracle-mask" - "progress-quest" - "progress-wars" - "project-igi" - "project-reality" - "project-space-station" - "project-spark" - "project-zomboid" - "protoss" - "prototype" - "prototype-2" - "ps-vita" - "ps-vita-tv" - "ps1" - "ps2" - "ps3" - "ps4" - "psn" - "psone-classics" - "psp" - "pspgo" - "psychonauts" - "pt" - "punch-quest" - "punkbuster" - "purchase" - "pure-pool" - "pushcat" - "pushmo" - "puzzle-agent" - "puzzle-agent-2" - "puzzle-and-dragons" - "puzzle-craft" - "puzzle-quest" - "puzzle-quest-2" - "puzzle-swap" - "pvz-garden-warfare" - "pyramids" - "qasir-al-wasat" - "qbqbqb" - "qonqr" - "quake" - "quake-2" - "quake-3" - "quake-live" - "quake-wars" - "quantum-conundrum" - "quarrel" - "quarries-of-scred" - "qube" - "qube-adventures" - "qvadriga" - "qwop" - "race-the-sun" - "radiant-defense" - "radiant-historia" - "rage" - "rage-of-bahamut" - "ragnarok-odyssey" - "ragnarok-online" - "ragnarok-online-2" - "railroad-tycoon-2" - "railworks-2" - "rainbow-6-vegas-2" - "rainbow-moon" - "rainbow-six-3" - "ramble-planet" - "raptor-safari" - "raptr" - "ratchet-deadlocked" - "ravenmarch" - "rawbots" - "rayman-2-great-escape" - "rayman-fiesta-run" - "rayman-forever" - "rayman-jungle-run" - "rayman-legends" - "rayman-origins" - "rbi-baseball" - "rbi-baseball-14" - "re-volt" - "reactivate-majestical" - "real-racing-3" - "really-big-sky" - "realm-of-empires" - "realm-of-the-mad-god" - "realms-of-despair" - "realms-of-the-diggle-god" - "rebuild-the-universe" - "receiver" - "recettear" - "recording" - "red-alert" - "red-alert-2" - "red-alert-2-yuris-revenge" - "red-alert-3" - "red-dead-redemption" - "red-faction-armageddon" - "red-faction-guerrilla" - "red-orchestra" - "red-orchestra-2" - "redshirt" - "region-locked" - "reign-of-giants" - "reign-of-the-undead" - "reignmaker" - "remember-me" - "replica-island" - "reprisal" - "resident-evil-2" - "resident-evil-4" - "resident-evil-5" - "resident-evil-6" - "resident-evil-nemesis" - "resident-evil-orc" - "resident-evil-revelations" - "resident-evil-umbrella" - "resistance-2" - "resistance-fall-of-man" - "resogun" - "resonance" - "resonance-of-fate" - "restaurant-city" - "retro-city-rampage" - "retro-defense" - "retro-game-challenge" - "retry" - "return-castle-wolfenstein" - "reus" - "revenant" - "revenge-of-the-titans" - "reversi" - "revolution-60" - "rex-blade-battle-begins" - "rf-online" - "rhythm-game" - "rhythm-thief" - "richard-burns-rally" - "ricochet" - "riddick-butcher-bay" - "ridiculous-fishing" - "rift" - "rimworld" - "rise-of-immortals" - "rise-of-nations" - "rise-of-the-triad-2013" - "risen" - "risen-2" - "risk-of-rain" - "riven" - "rnc-3-up-your-arsenal" - "rnc-a-crack-in-time" - "rnc-all-4-one" - "rnc-into-the-nexus" - "rnc-qforce" - "road-rash" - "robo-defense" - "robocraft" - "robot-unicorn-attack" - "robot-unicorn-attack-2" - "robot-vacuum-sim-2013" - "rochard" - "rock-band" - "rock-band-2" - "rock-band-3" - "rock-of-ages" - "rocksmith" - "rocksmith-2014" - "rockstargames-social-club" - "rodina" - "rogue" - "rogue-legacy" - "roguelikes" - "roller-coaster-tycoon" - "roller-coaster-tycoon-2" - "roller-coaster-tycoon-3" - "roller-coaster-tycoon-4" - "rome-2-total-war" - "rome-total-war" - "rose-and-camellia" - "rotk-xi" - "roxio-pc-game-capture" - "royal-envoy-2" - "rpg-mo" - "rule-the-kingdom" - "run-2" - "run-sackboy-run" - "rune-classic" - "rune-factory" - "rune-factory-4" - "rune-factory-tod" - "runes-of-magic" - "runescape" - "runner2" - "running-with-rifles" - "ruse" - "rust" - "rusty-hearts" - "rustys-real-deal-baseball" - "rymdkapsel" - "ryse-son-of-rome" - "ryzom" - "sacred" - "sacred-2" - "sacred-citadel" - "saint-seiya-senki" - "saints-row-2" - "saints-row-4" - "saints-row-the-third" - "sakura-samurai" - "sam-and-max" - "samurai-siege" - "samurai-vs-zombies" - "samurai-warriors-4" - "san-francisco-rush-2049" - "sanctuary-rpg" - "sanctum" - "sanctum-2" - "sao-hollow-fragment" - "sarpbc" - "savant-ascent" - "save-the-date" - "sc2-build-order" - "school-idol-festival" - "scott-pilgrim" - "scramble-with-friends" - "screeps" - "scribblenauts" - "scribblenauts-remix" - "scribblenauts-unlimited" - "scribblenauts-unmasked" - "scrolls" - "scurvy-scallywags" - "sd-gundam-capsule-fighter" - "seabeard" - "secret-files-3" - "secret-of-magic-crystals" - "secret-of-mana" - "section-8" - "seduce-me" - "seed-2-vortex-of-war" - "seed-rise-of-darkness" - "sega-rally-2" - "seiken-densetsu-3" - "seiklus" - "sequence" - "serious-sam" - "serious-sam-3-bfe" - "serious-sam-random-enc" - "server-administration" - "settlers-of-catan" - "seven-minutes" - "shadow-fight-2" - "shadow-kings" - "shadow-of-mordor" - "shadow-of-the-colossus" - "shadow-warrior" - "shadow-warrior-2013" - "shadowgate" - "shadowplay" - "shadowrun" - "shadowrun-online" - "shadowrun-returns" - "shadows-of-the-damned" - "shadows-of-the-empire" - "shank" - "shank-2" - "shantae-riskys-revenge" - "shark-game" - "shatter" - "shattered-planet" - "shelter" - "shenmue" - "shenmue-2" - "sherlock-holmes" - "shining-force" - "shining-force-2" - "ship-simulator-extremes" - "shogun-2-total-war" - "shoot-many-robots" - "shortyz" - "shovel-knight" - "shroud-of-the-avatar" - "shut-up-and-jam-gaiden" - "sid-meiers-pirates" - "sid-meiers-railroads" - "sid-meiers-simgolf" - "sideway" - "siesta-fiesta" - "silent-hill" - "silent-hill-2" - "silent-hill-3" - "silent-hill-downpour" - "silent-hill-origins" - "silent-hill-series" - "silkroad-online" - "silver" - "silversword" - "sim-farm" - "simcity" - "simcity-2000" - "simcity-3000" - "simcity-4" - "simcity-deluxe" - "simcity-social" - "simpsons-tapped-out" - "sims-2" - "sims-3" - "sims-3-ambitions" - "sims-3-seasons" - "sims-3-supernatural" - "sims-4" - "sims-freeplay" - "sims-medieval" - "simtower" - "simulation" - "singstar" - "sins-of-a-solar-empire" - "sir-you-are-being-hunted" - "skate" - "skate-2" - "ski-safari" - "skies-of-arcadia-legends" - "skifree" - "skullgirls" - "skulls-of-the-shogun" - "skyfall-bioes" - "skyforce2014" - "skylanders" - "skylanders-cloud-patrol" - "skylanders-giants" - "skylanders-swap-force" - "skype" - "skyrim" - "skyrim-dawnguard" - "skyrim-dragonborn" - "skyrim-falskaar" - "skyrim-hearthfire" - "skyward-collapse" - "slam" - "slashem" - "slay" - "sleeping-dogs" - "slender-haunt" - "slender-the-arrival" - "slender-the-eight-pages" - "slenderman" - "slice-it" - "sliding-puzzle" - "sly-cooper-4" - "small-creek" - "smash-tv" - "smite" - "smt-persona" - "smt-strange-journey" - "smt4" - "smurfs-village" - "snapshot" - "snes" - "sniper-elite-3" - "sniper-elite-v2" - "sniper-ghost-warrior" - "snoopys-street-fair" - "snuggle-truck" - "soase-rebellion" - "solar-2" - "solatorobo-red-the-hunter" - "soldier-fortune-payback" - "solomons-boneyard" - "solstice-arena" - "sonic-2" - "sonic-3" - "sonic-3-and-knuckles" - "sonic-adventure-2-battle" - "sonic-all-stars-racing" - "sonic-all-stars-trans" - "sonic-and-knuckles" - "sonic-black-knight" - "sonic-cd" - "sonic-generations" - "sonic-jump-fever" - "sonic-the-hedgehog" - "sonic-the-hedgehog-4" - "sonic-unleashed" - "sorcery" - "sots-the-pit" - "sots-the-pit-gold" - "soul-calibur-4" - "soul-calibur-5" - "soul-hackers" - "soul-harvester" - "soul-reaver" - "soul-sacrifice" - "soulcraft" - "source-engine" - "sourcemod" - "space-empires-4" - "space-empires-5" - "space-engineers" - "space-invaders-infinity" - "space-marine" - "space-pirates-and-zombies" - "space-quest-1" - "space-quest-2" - "space-quest-4" - "space-rangers-hd" - "space-station-13" - "space-tube" - "spacebase-df-9" - "spacechem" - "spacecolony" - "spaceteam" - "spec-ops-the-line" - "speed-warp" - "speedrun" - "speedrunners" - "spell-up" - "spelling-jungle" - "spellsword" - "spelltower" - "spelunky" - "spelunky-hd" - "spelunky-html5" - "sphax-purebdcraft" - "spice-bandits" - "spice-road" - "spiderman-3" - "spiderman-unlimited" - "spiderman-web-of-shadows" - "spiral-knights" - "spirit-stones" - "spirits" - "splice" - "splinter-cell-blacklist" - "splinter-cell-conviction" - "splinter-cell-ct" - "splinter-cell-da" - "spore" - "spore-galactic-adventures" - "spotpass" - "spy-mouse" - "spyparty" - "sr4-saints-save-christmas" - "ssx-2012" - "stacking" - "stair-dismount" - "stalker-clear-sky" - "stalker-soc" - "star-citizen" - "star-command" - "star-conflict" - "star-control-2" - "star-hound" - "star-ocean-4" - "star-ocean-fd" - "star-realms" - "star-trader-rpg" - "star-trek-botf" - "star-trek-online" - "star-wars-assault-team" - "star-wars-battlefront" - "star-wars-commander" - "star-wars-dark-forces" - "star-wars-empire-at-war" - "star-wars-force-unleashed" - "star-wars-kotor" - "star-wars-kotor-2" - "star-wars-republic-heroes" - "star-wars-tie-fighter" - "starbase-orion" - "starbound" - "starbow" - "starcraft" - "starcraft-2" - "starcraft-series" - "stardrive" - "stardunk" - "starfleet-armada-2" - "starforge" - "starfox-64" - "stargate-resistance" - "stargate-sg1-unleashed" - "starhawk" - "starlancer" - "starmade" - "starpires" - "stars" - "starseed-pilgrim" - "startopia" - "state-of-decay" - "state-of-decay-breakdown" - "state-of-decay-lifeline" - "steam" - "steam-broadcasting" - "steam-cloud" - "steam-family-sharing" - "steam-holiday-auction" - "steam-os" - "steam-streaming" - "steam-trading-cards" - "steam-workshop" - "steamworld-dig" - "steel-storm-br" - "stendhal" - "stepmania" - "stereo-3d" - "stick-it-to-the-man" - "stick-rpg-2" - "still-life" - "strahds-posession" - "streaming" - "street-fighter-2" - "street-fighter-3" - "street-fighter-4" - "street-fighter-iv-volt" - "street-fighter-series" - "street-fighter-x-mega-man" - "street-fighter-x-tekken" - "street-hockey-95" - "streetpass" - "streetpass-battle" - "streetpass-mansion" - "streetpass-mii-plaza" - "strike-suit-zero" - "strikefleet-omega" - "strongbads-cool-game" - "stronghold-3" - "stronghold-kingdoms" - "stubbs-the-zombie" - "stv-elite-force" - "sub-command" - "subway-surfers" - "sugar-cube" - "sugar-rush-speedway" - "suikoden" - "suikoden-2" - "sunless-sea" - "sunset-overdrive" - "super-crate-box" - "super-hexagon" - "super-laser-racer" - "super-mamc" - "super-mario-3d-land" - "super-mario-3d-world" - "super-mario-63" - "super-mario-64" - "super-mario-64-ds" - "super-mario-bros" - "super-mario-bros-2" - "super-mario-bros-3" - "super-mario-galaxy" - "super-mario-galaxy-2" - "super-mario-kart" - "super-mario-rpg" - "super-mario-sunshine" - "super-mario-world" - "super-meat-boy" - "super-metroid" - "super-monday-night-combat" - "super-paper-mario" - "super-puzzle-fighter-2" - "super-sanctum-td" - "super-smash-bros" - "super-smash-bros-4" - "super-smash-bros-brawl" - "super-smash-bros-melee" - "super-smash-bros-series" - "super-smash-flash-2" - "super-smash-land" - "super-star-wars" - "super-stardust-hd" - "super-street-fighter-4" - "super-street-fighter-4-3d" - "superfrog" - "supreme-commander" - "supreme-commander-2" - "surgeon-simulator" - "surgeon-simulator-2013" - "survarium" - "survivalcraft" - "survivor-squad" - "sushi-spinnery" - "sw-rebellion" - "swing-copters" - "sword-and-poker-2" - "sword-and-sworcery" - "sword-coast-adventures" - "sword-of-islam" - "sword-of-the-stars" - "sword-of-the-stars-2" - "swordigo" - "swos" - "swtor" - "symphony" - "syndicate-2012" - "syndicate-wars" - "system-mods" - "system-protocol-one" - "system-requirements" - "system-shock" - "system-shock-2" - "tabletop-simulator" - "tactics-ogre-psp" - "tag-the-power-of-paint" - "tagpro" - "tales-from-the-minus-lab" - "tales-of-graces-f" - "tales-of-honor-sf" - "tales-of-symphonia-hd" - "tales-of-the-abyss" - "tales-of-the-world-rm" - "tales-of-vesperia" - "tales-of-xillia" - "tales-of-xillia-2" - "tallowmere" - "tankball-2" - "tanki-online" - "tap-tap-infinity" - "tap-tap-revenge-4" - "taskmaker" - "team-fortress" - "team-fortress-2" - "team-fortress-2-beta" - "team-fortress-arcade" - "teamspeak" - "technical-issues" - "tekken" - "tekken-dark-resurrection" - "tekken-tag-tournament-2" - "teleglitch" - "templar-assault-rpg" - "temple-run" - "temple-run-2" - "tera" - "terminology" - "terminus" - "terra-battle" - "terrafirmacraft" - "terran" - "terranigma" - "terraria" - "terraria-console" - "terraria-mobile" - "terrible-tiny-traps" - "teso-sorcerer" - "test-drive-unlimited-2" - "tetris" - "tetris-axis" - "tetris-battle" - "text-adventure" - "tf2-demoman" - "tf2-engineer" - "tf2-heavy" - "tf2-mann-vs-machine" - "tf2-medic" - "tf2-pyro" - "tf2-scout" - "tf2-sniper" - "tf2-soldier" - "tf2-spy" - "the-3rd-birthday" - "the-7th-guest" - "the-amazing-spiderman" - "the-banner-saga" - "the-basement-collection" - "the-castle-doctrine" - "the-cave" - "the-club" - "the-crew" - "the-croods" - "the-darkness" - "the-darkness-2" - "the-dreamhold" - "the-elder-scrolls" - "the-elder-scrolls-arena" - "the-elder-scrolls-online" - "the-evil-within" - "the-expendabros" - "the-fight-lights-out" - "the-forest" - "the-gold-factory" - "the-guided-fate-paradox" - "the-hunter" - "the-impossible-quiz" - "the-journey-down-chapter1" - "the-king-of-fighters" - "the-last-federation" - "the-last-of-us" - "the-last-of-us-remastered" - "the-last-remnant" - "the-last-rocket" - "the-last-stand-dead-zone" - "the-last-story" - "the-long-dark" - "the-lost-vikings" - "the-missing-link" - "the-monolith" - "the-movies" - "the-oil-blue" - "the-oregon-trail" - "the-pandora-directive" - "the-path-of-go" - "the-plan" - "the-president-is-missing" - "the-pyraplex" - "the-room" - "the-saboteur" - "the-secret-world" - "the-settlers" - "the-settlers-2" - "the-settlers-3" - "the-settlers-online" - "the-ship" - "the-simpsons-hit-and-run" - "the-sims" - "the-sims-3" - "the-sims-freeplay" - "the-sims-medieval" - "the-sims-series" - "the-stanley-parable" - "the-stanley-parable-2011" - "the-stick-of-truth" - "the-stone" - "the-swapper" - "the-talos-principle" - "the-third-world-war" - "the-tribez" - "the-typing-of-the-dead-2" - "the-unfinished-swan" - "the-void" - "the-walking-dead" - "the-watchmaker" - "the-whispered-world" - "the-witcher" - "the-witcher-2" - "the-wolf-among-us" - "the-wonderful-101" - "the-world-ends-with-you" - "theatrhythm-curtain-call" - "theatrhythm-final-fantasy" - "theme-hospital" - "theme-park-world" - "thief" - "thief-deadly-shadows" - "thief-gold" - "thief-the-dark-project" - "third-person-shooter" - "this-war-of-mine" - "thomas-was-alone" - "threes" - "ti-invaders" - "tiberian-sun" - "tiberium-alliances" - "tibia" - "ticket-to-ride" - "tidalis" - "tiger-woods-pga-tour-08" - "tiger-woods-pga-tour-12" - "tiger-woods-pga-tour-14" - "tilt-to-live" - "tilt-to-live-2" - "timber-and-stone" - "time-and-eternity" - "time-fcuk" - "tintin" - "tiny-and-big" - "tiny-bang-story" - "tiny-brains" - "tiny-death-star" - "tiny-dice-dungeon" - "tiny-heroes" - "tiny-monsters" - "tiny-tower" - "tiny-tower-vegas" - "tiny-wings" - "titan-attacks" - "titan-quest" - "titanfall" - "tmnt-4-turtles-in-time" - "to-the-moon" - "toki-tori" - "tokyo-jungle" - "tomb-raider" - "tomb-raider-2013" - "tomb-raider-anniversary" - "tomb-raider-guardian" - "tomba" - "tome-4" - "tomodachi-life" - "tonic-trouble" - "tony-hawk-pro-skater-2" - "tony-hawks-pg" - "tony-hawks-pro-skater" - "tony-hawks-pro-skater-4" - "tony-hawks-pro-skater-hd" - "top-eleven-football-mgr" - "top-farm" - "top-spin-3" - "torchlight" - "torchlight-2" - "torchlight-2-engineer" - "total-annihilation" - "total-carnage" - "touch" - "touch-my-katamari" - "touhou-7.5" - "touhou-eosd" - "tourist-trophy" - "tower-defense" - "tower-of-guns" - "tower-of-the-sorcerer" - "tower-wars" - "towerfall-ascension" - "towldr" - "towns" - "trace-vector" - "track-and-field" - "trackmania-2" - "trackmania-forever" - "trackmania-series" - "tradewars-2002" - "traffic-daze" - "train-fever" - "train-simulator-2013" - "train-simulator-2015" - "trainyard" - "trainz-2010" - "transistor" - "transport-giant-gold" - "trauma" - "travian" - "treasure-adventure-game" - "treasures-of-montezuma" - "tremulous" - "trials-evolution" - "trials-frontier" - "trials-fusion" - "tribes-ascend" - "trickster" - "trigger-fist" - "trine" - "trine-2" - "trine-2-goblin-menace" - "trinity-universe" - "triple-town" - "trivia-adventure" - "tron-2.0" - "tropico-3" - "tropico-4" - "tropico-5" - "tropico-series" - "trouble-in-terrorist-town" - "trove" - "tsukihime" - "ttotd-overkill" - "turbografx-16" - "turn-based-strategy" - "turok-2008" - "twd-survival-instinct" - "twisted-metal" - "twitch" - "twitch-plays-pokemon" - "two-worlds" - "two-worlds-2" - "type-rider" - "typing-maniac" - "typing-of-the-dead" - "tyrian" - "ubuntu" - "ufc-trainer" - "ufc-undisputed-2010" - "ufo-afterlight" - "ufo-alien-invasion" - "ufo-extraterrestrials" - "ultima-4" - "ultima-5" - "ultima-5-lazarus" - "ultima-6" - "ultima-7" - "ultima-9" - "ultima-online" - "ultimate-mvc3" - "ultimate-ninja-storm-2" - "ultimate-ninja-storm-3" - "ultimate-ninja-storm-rev" - "ultimate-team" - "ultra-street-fighter-4" - "uncharted" - "uncharted-2" - "uncharted-3" - "uncharted-golden-abyss" - "uncharted-series" - "under-the-garden" - "underrail" - "unepic" - "unholy-heights" - "uniracers" - "unity-of-command" - "unity-web-player" - "universe-at-war" - "uniwar" - "unmechanical" - "unnethack" - "unreal-tournament-2004" - "unreal-tournament-3" - "unreal-tournament-99" - "untagged" - "untrusted" - "unturned" - "uplay" - "uplink" - "urban-rivals" - "urban-terror" - "uru" - "utawarerumono" - "vagrant-story" - "valdis-story-abyssal-city" - "valet-hero" - "valkyria-chronicles" - "valkyrie-profile" - "valor" - "vampire-bloodlines" - "vector" - "vega-conflict" - "vega-strike" - "veggie-samurai" - "velocity-ultra" - "venetica" - "ventrilo" - "venture-towns" - "version-differences" - "vessel" - "vga-planets" - "victoria-2" - "viewtiful-joe" - "viking-battle-of-asgard" - "vim-adventures" - "vindictus" - "virtonomics" - "virtua-fighter-5" - "virtual-city-playground" - "virtual-console" - "virtual-families" - "virtual-families-2" - "virtual-pro" - "virtual-tennis-2009" - "virtualization" - "viscera-cleanup-detail-sw" - "viva-pinata" - "vmware-fusion" - "voice-chat" - "void-rogue" - "voxatron" - "vulture" - "vvvvvv" - "waiting-in-line-3d" - "wake" - "wake-up-club" - "wakfu" - "waking-mars" - "wall-e" - "wallace-and-gromit-1" - "war-inc-battlezone" - "war-metal" - "war-metal-tyrant" - "war-of-the-roses" - "war-thunder" - "warcraft" - "warcraft-2" - "warcraft-3" - "warcraft-3-frozen-throne" - "warcraft-series" - "warface" - "warframe" - "wargame-airland-battle" - "wargame-ee" - "wargame-red-dragon" - "warhammer-40k-carnage" - "warhammer-40k-dawn-of-war" - "warhammer-quest" - "wario-land" - "warlock-master-arcane" - "warmux" - "warning-forever" - "warriors-way" - "wars-of-the-roses" - "warsong" - "warsow" - "warz-infestation-stories" - "warzone2100" - "wasteland" - "wasteland-2" - "watch-dogs" - "watch-dogs-bad-blood" - "watch-dogs-live" - "wayward" - "wazhack" - "we-rule" - "wheres-my-water" - "wheres-my-water-2" - "white-knight-chronicles" - "white-knight-chronicles-2" - "white-tiles-4" - "whiteboard-tower-defense" - "widelands" - "wifi" - "wii" - "wii-fit-plus" - "wii-fit-u" - "wii-music" - "wii-sports" - "wii-u" - "wiimote" - "wiiware" - "wild-arms-4" - "wildstar" - "williams-pinball-classics" - "windows" - "windows-7" - "windows-8" - "windows-8.1" - "windows-95" - "windows-98" - "windows-mobile" - "windows-phone" - "windows-rt" - "windows-vista" - "windows-xp" - "wine" - "wing-commander" - "wings-of-prey" - "wings-of-vi" - "winnie-the-pooh" - "winuae" - "wipeout" - "wipeout-2048" - "wipeout-hd" - "wipeout-hd-fury" - "witcher-adventure-game" - "wizard101" - "wizardry-8" - "wizardry-forsaken-land" - "wizorb" - "wolfenstein-2009" - "wolfenstein-3d" - "wolfenstein-et" - "wolfenstein-the-new-order" - "wolfteam" - "word-derby" - "word-hero" - "wordament" - "wordfeud" - "words-with-friends" - "world-at-arms" - "world-cruise-story" - "world-golf-tour" - "world-in-conflict-sa" - "world-of-goo" - "world-of-tanks" - "world-of-tanks-blitz" - "world-of-warcraft" - "world-of-warplanes" - "world-of-xeen" - "worms" - "worms-2-armageddon" - "worms-armageddon" - "worms-crazy-golf" - "worms-reloaded" - "worms-revolution" - "worms-world-party" - "wrath-of-the-lamb" - "wrecked-revenge-revisited" - "wreckfest" - "wrestle-jump" - "wurm-online" - "wwe-12" - "wwe-13" - "wwe-2k14" - "wwe-2k15" - "x-arcade" - "x-beyond-the-frontier" - "x-com-apocalypse" - "x-com-terror-from-deep" - "x-men" - "x-rebirth" - "x-series" - "x3-albion-prelude" - "x3-reunion" - "x3-terran-conflict" - "x360ce" - "xbox" - "xbox-360" - "xbox-dashboard" - "xbox-fitness" - "xbox-live" - "xbox-live-arcade" - "xbox-one" - "xbox-smartglass" - "xbox-system-link" - "xcom-enemy-unknown" - "xcom-enemy-within" - "xcom-enforcer" - "xcom-long-war" - "xcom-series" - "xcom-tftd" - "xcom-the-bureau" - "xcom-ufo-defense" - "xenoblade-chronicles" - "xenonauts" - "xfire" - "xiii" - "xpadder" - "xtrap" - "xvm-mod" - "yakuza-3" - "yakuza-dead-souls" - "year-walk" - "yesterday" - "yogscast-complete-pack" - "yoshis-island" - "yoshis-island-ds" - "yoshis-new-island" - "you-dont-know-jack" - "you-found-grappling-hook" - "you-have-to-win-the-game" - "your-doodles-are-bugged" - "youre-the-boss" - "ys-origin" - "yugioh-gx-tbod" - "zapper-one-wicked-cricket" - "zelda-adventure-of-link" - "zelda-four-swords-ds" - "zelda-link-between-worlds" - "zelda-link-to-the-past" - "zelda-links-awakening" - "zelda-majoras-mask" - "zelda-ocarina-of-time" - "zelda-oracle-of-ages" - "zelda-oracle-of-seasons" - "zelda-series" - "zelda-skyward-sword" - "zelda-spirit-tracks" - "zelda-twilight-princess" - "zelda-wind-waker" - "zen-pinball-2" - "zen-pinball-hd" - "zerg" - "zero-k" - "zeus-master-of-olympus" - "ziggurat" - "ziro" - "zombie-gunship" - "zombie-panic-source" - "zombie-soccer" - "zombies-ate-my-neighbors" - "zombies-run" - "zombieville-usa-2" - "zombiu" - "zomg" - "zoo-tycoon" - "zoo-tycoon-2013" - "zookeeper-battle" - "zookeeper-dx" - "zork" - "zumas-revenge" - "zumba-blitz" - "zumba-fitness-rush") diff --git a/data/tags/gardening.el b/data/tags/gardening.el deleted file mode 100644 index f987040..0000000 --- a/data/tags/gardening.el +++ /dev/null @@ -1,397 +0,0 @@ -("aeration" - "african-violets" - "air-flow" - "air-layer" - "algae" - "aloe" - "amaryllis" - "annuals" - "ants" - "aphids" - "apples" - "apricots" - "aquaponic" - "asparagus" - "avocado" - "banana" - "barberry" - "basil" - "beans" - "beetroot" - "bell-peppers" - "berries" - "biennials" - "birds" - "blackberry" - "blight" - "blossom-end-rot" - "blueberries" - "bolting" - "bonfire" - "bonsai" - "border" - "boxwood" - "boysenberries" - "brassicas" - "broad-leaved-evergreens" - "broccoli" - "bromeliads" - "bugs" - "bulbs" - "butterflies" - "cabbage" - "cactus" - "canna" - "carbon-nitrogen-ratio" - "carnivorous-plants" - "carrots" - "cauliflower" - "chainsaw" - "chemicals" - "cherries" - "chili" - "cilantro" - "citrus" - "clay" - "clematis" - "climate" - "clover" - "coffee-grounds" - "cold-frame" - "cold-weather" - "companion-planting" - "compost" - "compost-tea" - "concrete" - "conifers" - "container-gardening" - "containers" - "control" - "corn" - "cover-crop" - "crabapples" - "crabgrass" - "creepers" - "crop-rotation" - "cucumbers" - "cucurbits" - "culling" - "cuttings" - "cycad" - "daffodils" - "dahlias" - "dandelions" - "dead-branch" - "deadheading" - "deer" - "desert" - "diagnosis" - "diesease" - "digging" - "diseases" - "disposal" - "dog" - "domestic-animals" - "dormant-spray" - "dracaena" - "drainage" - "drip-system" - "dryness" - "dying" - "edible" - "eggplant" - "electric" - "english-ivy" - "erosion-control" - "espalier" - "establishment" - "evergreens" - "fall-gardening" - "fava-beans" - "fence" - "ferns" - "fertilizer" - "fescue" - "ficus" - "figs" - "flowering" - "flowers" - "food-crops" - "fountain" - "frost" - "frugal" - "fruit-trees" - "fruits" - "fungacide" - "fungus" - "garden" - "gardenias" - "garlic" - "geraniums" - "germination" - "gloves" - "goji-berry" - "gooseberries" - "grafting" - "grape-hyacinth" - "grape-vine" - "grass" - "gravel" - "green-beans" - "green-manure" - "greenhouse" - "greywater" - "ground-cover" - "growing-medium" - "growth" - "guavas" - "habaneros" - "hanging-plant" - "hard-landscape" - "hardiness-zone" - "harvesting" - "heat" - "hedge" - "heirloom" - "herbicide" - "herbs" - "holiday-cactus" - "honey-locust" - "hoses" - "hosta" - "hot-weather" - "houseplants" - "hugelkultur" - "humidity" - "hummingbirds" - "hyacinth" - "hybrids" - "hydrangea" - "hydroponic" - "hypothetical" - "identification" - "indoors" - "insects" - "invasive" - "irises" - "irrigation" - "jade" - "jalapenos" - "japanese-maple" - "landscaping" - "late-sowing" - "lawn" - "lawn-mower" - "lawn-repair" - "layout-planning" - "leaf-vegetables" - "leaves" - "legumes" - "lemons" - "lettuce" - "leylandii" - "light" - "lilac" - "lily" - "low-light" - "lucky-bamboo" - "lupines" - "lychee" - "mandevilla" - "manure" - "maple" - "meadow" - "melons" - "millipedes" - "mint" - "mold" - "morning-glory" - "mosquito" - "moss" - "mowing" - "mulch" - "mushrooms" - "native-conditions" - "nectarines" - "nematodes" - "nepenthes" - "nitrogen" - "noise" - "nut-trees" - "nutrients" - "oak" - "olive" - "onion-sets" - "onions" - "optimal-conditions" - "orchids" - "organic" - "overseeding" - "overwintering" - "palm" - "parasites" - "parsley" - "patio" - "pavers" - "peaches" - "peanuts" - "pear" - "peas" - "peat" - "peonies" - "peppers" - "perennials" - "perlite" - "permaculture" - "pest-control" - "pest-damage" - "pesticide" - "pests" - "pet-control" - "pets" - "ph" - "pinching-out" - "pines" - "planning" - "plant-care" - "plant-hardiness" - "plant-health" - "plant-labels" - "plant-recommendations" - "plant-uses" - "planting" - "planting-times" - "plums" - "poison-ivy" - "poisons" - "pollination" - "pollution" - "pomegranate" - "pond" - "poppy" - "post-harvest" - "potatoes" - "pots" - "potting-soil" - "prevention" - "privacy-plants" - "propagation" - "protection" - "pruning" - "pumpkins" - "quality-check" - "rabbits" - "raccoons" - "radishes" - "rain" - "rain-barrel" - "raised-beds" - "raspberries" - "repair" - "repotting" - "resources" - "rhubarb" - "ripening" - "rock-gardening" - "rocks" - "rodents" - "root-pruning" - "root-vegetables" - "rooting-hormone" - "roots" - "rosemary" - "roses" - "rot" - "row-cover" - "runner-beans" - "rust" - "rye" - "safety" - "sap" - "sedum" - "seed-saving" - "seed-starting" - "seedlings" - "seeds" - "shade" - "shrubs" - "sinningia" - "slugs" - "small-engine" - "snails" - "snow" - "soft-fruit" - "soil" - "soil-amendment" - "soil-test" - "sowing" - "spices" - "spider-mites" - "spinach" - "spring-onions" - "sprinkler-system" - "sprouting" - "spruces" - "square-foot-gardening" - "squash" - "storage" - "strawberries" - "string-trimmer" - "stump-removal" - "succulents" - "suckers" - "sunflowers" - "sunlight" - "support" - "sustainability" - "sweet-pea" - "sweet-potato" - "tea" - "technique" - "temperature" - "terminology" - "thinning" - "three-sisters" - "tilling" - "tomatillos" - "tomatoes" - "tool-maintenance" - "tool-selection" - "tools" - "topiary" - "toxicity" - "transplanting" - "tree-care" - "tree-removal" - "trees" - "trellis" - "trimming" - "tulips" - "turf" - "untagged" - "urban-gardening" - "variety-selection" - "vegetables" - "venus-fly-trap" - "vermicomposting" - "vermiculite" - "vines" - "volunteer" - "walnut" - "water" - "watering" - "weather" - "weed-control" - "weeds" - "weeping-willow" - "wetland" - "wildflowers" - "wildlife" - "wilt" - "wind-damage" - "winter" - "winter-gardening" - "woodland" - "worms" - "yard" - "zucchini") diff --git a/data/tags/genealogy.el b/data/tags/genealogy.el deleted file mode 100644 index b6146a4..0000000 --- a/data/tags/genealogy.el +++ /dev/null @@ -1,293 +0,0 @@ -("15th-century" - "16th-century" - "17th-century" - "1800s" - "1840s" - "1890s" - "18th-century" - "1910s" - "1920s" - "1930s" - "1940s" - "1960s" - "1970s" - "19th-century" - "20th-century" - "accuracy" - "address" - "adoption" - "albania" - "ancestry.com" - "apprenticeship-records" - "archives" - "artifacts" - "asia" - "australia" - "austria" - "ayrshire" - "baptism" - "baptism-record" - "belarus" - "bessarabia" - "bible" - "birth-record" - "birthplace" - "books" - "brazil" - "breconshire" - "british-army" - "brothers-keeper" - "burial" - "california" - "canada" - "cause-of-death" - "cemeteries" - "census-records" - "chart-type" - "cheshire" - "chile" - "china" - "citation" - "clergy" - "collaboration" - "complex-families" - "conflicts" - "connecticut" - "copyright" - "cornwall" - "court-records" - "crusades" - "cuba" - "currency" - "data-derivation" - "data-storage" - "data-transfer" - "date" - "death-record" - "delaware" - "denmark" - "devon" - "digitization" - "directories" - "divorce" - "dna" - "documenting" - "documents" - "dorset" - "double-date" - "dunbartonshire" - "east-lothian" - "electronic-search" - "emigration" - "employment-records" - "england" - "ephemera" - "europe" - "evidence" - "family" - "family-history-library" - "family-legend" - "family-register" - "family-tree" - "family-tree-maker" - "familysearch.org" - "filing-system" - "finance" - "findmypast" - "findmypast.co.uk" - "finland" - "florida" - "france" - "fraternal-organization" - "gedcom" - "gender" - "gendex" - "genealogical-societies" - "gentry" - "germany" - "getting-started" - "gis" - "glamorgan" - "gloucestershire" - "gps" - "gramps" - "grave-marker" - "guyana" - "headstone" - "heraldry" - "historical-context" - "historical-gazetteer" - "holocaust" - "hungary" - "illegitimate" - "illinois" - "images" - "immigration" - "imprisonment" - "indexing" - "india" - "indiana" - "information" - "intended-marriage" - "iowa" - "ireland" - "italy" - "jewish" - "korea" - "lanarkshire" - "land" - "latvia" - "laws" - "legal-records" - "limits" - "locating-records" - "london" - "louisiana" - "lutheran" - "macfamilytree" - "maine" - "manifest" - "manorial-records" - "map" - "markdown" - "marking" - "marriage" - "marriage-record" - "massachusetts" - "michigan" - "middlesex" - "migration" - "military-records" - "mining" - "minnesota" - "missing-vital-records" - "morocco" - "name-change" - "name-suffix" - "naming" - "naming-convention" - "nara" - "native-american" - "naturalization" - "navy" - "networking" - "new-england" - "new-south-wales" - "new-york" - "new-york-city" - "new-york-state" - "new-zealand" - "newspaper" - "non-blood-relative" - "norfolk" - "north-carolina" - "northern-ireland" - "norway" - "numbering" - "occupation" - "ohio" - "oklahoma" - "online" - "organization" - "palaeography" - "panama" - "parish-register" - "passports" - "pedigree" - "pennsylvania" - "photo" - "photo-dating" - "photo-identification" - "place-names" - "poland" - "portraits" - "preservation" - "privacy" - "probate" - "product-support" - "proof" - "property" - "property-records" - "public-domain" - "public-information" - "publishing" - "quakers" - "quebec" - "queensland" - "recordkeeping" - "records" - "relationship-mapping" - "relatives" - "renaming-places" - "research" - "research-methods" - "research-travel" - "romania" - "russia" - "san-francisco" - "school-records" - "scotland" - "scotlands-people" - "search-strategies" - "servants" - "sharing" - "ship" - "silesia" - "slovakia" - "social-security" - "software" - "somerset" - "source-reliability" - "sources" - "south-africa" - "south-australia" - "south-dakota" - "spain" - "sport" - "staffordshire" - "standards" - "statistics" - "stillbirth" - "subscription" - "surnames" - "sussex" - "sweden" - "switzerland" - "tasmania" - "taxation-record" - "tennessee" - "terminology" - "texas" - "tools" - "trade-union" - "transcriptions" - "translation" - "transportation" - "trove" - "uk" - "ukraine" - "unicode" - "unidentified-photograph" - "united-kingdom" - "united-states" - "untagged" - "us-civil-war" - "us-marine-corps" - "usa" - "venezuela" - "vermont" - "victoria" - "vital-records" - "voter-lists" - "wales" - "warwickshire" - "washington-state" - "website" - "werelate.org" - "will" - "wisconsin" - "witness" - "world-war-1" - "world-war-2" - "wpa" - "wwii") diff --git a/data/tags/german.el b/data/tags/german.el deleted file mode 100644 index 885e9f1..0000000 --- a/data/tags/german.el +++ /dev/null @@ -1,231 +0,0 @@ -("abbreviations" - "accent" - "accusative" - "address" - "adjective-endings" - "adjectives" - "adverbs" - "analogy" - "anglicism" - "apostrophe" - "articles" - "audio" - "austrian" - "auxiliary-verbs" - "bavarian" - "beginners" - "big-list" - "book" - "brand-names" - "capitalization" - "character" - "children" - "clauses" - "colloquial" - "comma" - "community-wiki" - "comparison" - "compounds" - "conjugation" - "conjunctions" - "connotation" - "consonant-sounds" - "consumer-advice" - "contractions" - "culture" - "date" - "dative" - "declension" - "definite-articles" - "demostrative-pronouns" - "determiner" - "diacritics" - "dialects" - "dictionary" - "differences" - "diminutive" - "duden" - "english" - "english-to-german" - "eszett" - "etiquette" - "etymology" - "euphemism" - "evolution" - "expressions" - "food-and-drink" - "formality" - "fraktur" - "future" - "gender" - "genitive" - "german-to-english" - "gerund" - "graecism" - "grammar" - "grammatical-case" - "grammatical-number" - "grammaticality" - "grammaticalization" - "handwriting" - "history" - "hyphen" - "idiomaticity" - "idioms" - "imperative" - "indirect-speech" - "infinitive" - "inflection" - "informal" - "insults" - "interjections" - "interrogatives" - "irregular-verb" - "jargon" - "jokes" - "kurrent" - "languages" - "latin" - "latinism" - "learning" - "legal-terminology" - "letter" - "lieder" - "linking-elements" - "list" - "listening-comprehension" - "literature" - "loanwords" - "lyrics" - "mathematics" - "meaning" - "meaning-in-context" - "media" - "mnemonics" - "modal-particle" - "modal-verbs" - "money" - "morphology" - "negation" - "neologism" - "nomenclature" - "nominalization" - "nouns" - "nuance" - "numbers" - "obsolete-words" - "old-german" - "online-resources" - "oral-communication" - "origin" - "orthography" - "parallelism" - "participle" - "particles" - "passive" - "past" - "past-participle" - "perfect-tense" - "person-names" - "personal-pronouns" - "phonetics" - "phrase-history" - "phrase-request" - "phrases" - "pluperfect" - "podcasts" - "poetry" - "politeness" - "political-correctness" - "possessive" - "possessive-pronouns" - "practice" - "prefixes" - "prepositions" - "preterite" - "proficiency-tests" - "programs" - "pronouns" - "pronunciation" - "proper-noun" - "prosody" - "proverbs" - "punctuation" - "questions" - "quotes" - "recommendations" - "records" - "redundancy" - "reference" - "reflexives" - "reformed-orthography" - "regional" - "relative-clauses" - "resources" - "rhetoric" - "romantism" - "rule-of-thumb" - "sailor-jargon" - "salutation" - "scientific-language" - "sein-or-haben" - "semantic-change" - "semantics" - "sentence-structure" - "separable-verbs" - "silbentrennung" - "single-word-request" - "slang" - "sociolinguistics" - "software" - "space-character" - "speaking" - "spelling" - "spoken-language" - "standard-german" - "story-identification" - "stress" - "style" - "subjunctive" - "subordinate-clause" - "suffix" - "swabian" - "swiss-german" - "swiss-standard-german" - "synonyms" - "syntax" - "taboos" - "technical-terminology" - "teen-slang" - "telephone-conversation" - "tempus" - "tenses" - "terminology" - "time" - "tools" - "transitive-verbs" - "translation" - "typography" - "umlaut" - "untagged" - "usage" - "valediction" - "verb-agreement" - "verb-choice" - "verb-usage" - "verbreitung" - "verbs" - "vocabulary" - "vowel-length" - "vowels" - "werden" - "word-choice" - "word-classes" - "word-formation" - "word-meaning" - "word-order" - "word-usage" - "wordplay" - "words" - "writing" - "yiddish") diff --git a/data/tags/gis.el b/data/tags/gis.el deleted file mode 100644 index f2628aa..0000000 --- a/data/tags/gis.el +++ /dev/null @@ -1,1659 +0,0 @@ -(".net" - ".qml" - "2d" - "32bit" - "3d" - "3d-analyst" - "3d-map" - "3d-model" - "64bit" - "academic" - "access" - "accessibility" - "accuracy" - "actions" - "add-in" - "add-ons" - "addon" - "address" - "address-parsing" - "administration" - "administrative-boundaries" - "advanced-license-level" - "aerial" - "aerial-triangulation" - "affine-transformation" - "afghanistan" - "africa" - "agent-analyst" - "agent-based-modeling" - "aggregate-points" - "aggregation" - "air-quality" - "ajax" - "algorithm" - "alias" - "alignment" - "alivepdf" - "altitude" - "amazon-ec2" - "amazon-s3" - "amazon-web-services" - "anaconda" - "analysis" - "android" - "angles" - "angularjs" - "animatedmarker" - "animation" - "annotation" - "antarctica" - "antipodal" - "anudem" - "apache" - "api" - "append" - "apple" - "apportion" - "aptana" - "arabic" - "arc-hydro" - "arc2earth" - "arccatalog" - "arcfm" - "arcgis" - "arcgis-10.0" - "arcgis-10.1" - "arcgis-10.2" - "arcgis-10.3" - "arcgis-9.1" - "arcgis-9.2" - "arcgis-9.3" - "arcgis-9.3.1" - "arcgis-android" - "arcgis-api-wpf" - "arcgis-collector" - "arcgis-desktop" - "arcgis-diagrammer" - "arcgis-editor-osm" - "arcgis-engine" - "arcgis-explorer" - "arcgis-flex-api" - "arcgis-flex-viewer" - "arcgis-image-server" - "arcgis-ios" - "arcgis-javascript-api" - "arcgis-license-manager" - "arcgis-local-government" - "arcgis-market-place" - "arcgis-military-analyst" - "arcgis-mobile" - "arcgis-online" - "arcgis-online-basemaps" - "arcgis-platform" - "arcgis-portal" - "arcgis-pro" - "arcgis-publisher" - "arcgis-rest-api" - "arcgis-runtime" - "arcgis-runtime-sdk-ios" - "arcgis-runtime-sdk-java" - "arcgis-runtime-sdk-wpf" - "arcgis-server" - "arcgis-silverlight-api" - "arcgis-silverlight-viewer" - "arcgis-soap-api" - "arcgis-state-government" - "arcgis-web-adf" - "arcgis-web-appbuilder" - "arcgis-workflow-manager" - "arcgis.com" - "arcgisscripting" - "arcglobe" - "archiving" - "arcims" - "arcinfo-workstation" - "arcmap" - "arcobjects" - "arcobjects-sdk" - "arcobjects.net" - "arcobjectsjava" - "arcpad" - "arcpress" - "arcpy" - "arcpy-mapping" - "arcpy.na" - "arcreader" - "arcscan" - "arcscene" - "arcsde" - "arctoolbox" - "arcview" - "arcview-3" - "area" - "array" - "art" - "ascii" - "asp.net" - "assisted-gps" - "astar" - "aster" - "atlas" - "attachments" - "attribute-index" - "attribute-table" - "attributes" - "australia" - "austria" - "authentication" - "autocad" - "autocad-map" - "autocorrelation" - "autodesk" - "automation" - "azimuth" - "background-geoprocessing" - "band" - "barrier" - "base-station" - "baselayer" - "basemap" - "basic-license-level" - "bat" - "batch" - "bathymetry" - "bearing" - "belguim" - "benchmark" - "best-practices" - "big-data" - "bim" - "binary" - "bing-maps" - "bing-maps-api" - "biology" - "bit-depth" - "bookmarks" - "books" - "boost" - "bootstrap-framework" - "bootstrapping" - "borders" - "borehole" - "bounding-box" - "bounding-rectangle" - "boundless" - "breaklines" - "british-columbia" - "browser" - "buffer" - "bug" - "burma" - "business" - "business-analyst" - "business-intelligence" - "c" - "c#" - "c++" - "cache" - "cad" - "cadrg" - "calculator" - "canada" - "career" - "cartaro" - "cartocss" - "cartodb" - "cartodb.js" - "cartogram" - "cartography" - "cartopy" - "catalog-service" - "catalog-window" - "catchment-area" - "cellular-automata" - "census" - "centos" - "central-america" - "centroids" - "certification" - "cesium" - "cgal" - "change-detection" - "chart" - "children" - "china" - "choropleth" - "chrome" - "circle" - "circularstring" - "citrix" - "cityengine" - "citygml" - "civil3d" - "classextensions" - "classification" - "client" - "climate" - "clip" - "clipping" - "closest-facility" - "cloud-cover" - "cloud-gis" - "cloudless-images" - "cloudmade" - "cluster" - "clustering" - "cmms" - "cmv" - "code" - "coded-value-domain" - "coding-style" - "cogo" - "coincident" - "collaboration" - "collada" - "color" - "color-ramp" - "colormap" - "colortable" - "com" - "combo-box" - "command-line" - "commercial" - "commercial-data" - "community" - "comparison" - "compass" - "compatibility" - "compilation" - "compile" - "compliance" - "composer" - "composite" - "composite-key" - "compression" - "comtypes" - "concave-hull" - "conditional" - "config.yaml" - "configuration" - "conflation" - "confusion-matrix" - "connection" - "connectivity-analysis" - "consulting" - "context-menu" - "contour" - "convergence" - "conversion" - "convert" - "convex-hull" - "coordinate-system" - "coordinates" - "copan" - "copy" - "copyright" - "corona" - "correlation" - "corrupt" - "cors" - "cost-path" - "couchbase" - "couchdb" - "county" - "coverages" - "cql-filter" - "create" - "croatia" - "crop" - "cross-section" - "crowdsourcing" - "crs" - "cs2cs" - "cspro" - "css" - "csv" - "csw" - "csw-client" - "curl" - "cursor" - "curvature" - "custom-toolbox" - "customization" - "cygwin" - "d3" - "dark-object-subtraction" - "data" - "data-access-module" - "data-backup" - "data-capture" - "data-collection" - "data-driven-pages" - "data-interoperability" - "data-license" - "data-management" - "data-mining" - "data-model" - "data-quality" - "data-reviewer" - "data-storage" - "data-transfer" - "database" - "database-design" - "database-manager" - "database-model" - "database-replication" - "databinding" - "dataframe" - "dataset" - "datasets" - "datastructure" - "date" - "datum" - "db" - "db2" - "dbf" - "debian" - "debugging" - "decarta-android-api" - "decimal-points" - "declination" - "deegree" - "default" - "default-value" - "definition-query" - "definitions" - "delimiter" - "delphi" - "dem" - "demography" - "densify" - "density" - "deployment" - "deprecated-tag" - "depth" - "design" - "desktop" - "desktop-gis" - "development" - "dgn" - "diagram" - "dictionary" - "differences" - "digital-cartography" - "digital-image-processing" - "digitalglobe" - "digitizing" - "dijkstra" - "dimensions" - "direct-connect" - "direction" - "discretise" - "display" - "display-unit" - "dissolve" - "distance" - "distance-matrix" - "distribution" - "diva-gis" - "django" - "dms" - "documentation" - "dojo" - "domain" - "donut-polygons" - "dotspatial" - "download" - "drag-and-drop" - "driving" - "drone" - "dropbox" - "drupal" - "dted" - "dtm" - "dwg" - "dxf" - "dynamic" - "dynamic-layer" - "dynamic-segmentation" - "e00" - "ec2" - "eclipse" - "ecognition" - "ecrg" - "ecuador" - "ecw" - "editing" - "edn" - "education" - "element" - "elevation" - "elgis" - "ellipse" - "ellipsoid" - "embeddable-web-maps" - "emergency-services" - "emf" - "encoding" - "enterprise" - "envi" - "environmental-monitoring" - "epsg" - "er-mapper" - "erase" - "erdas" - "erdas-imagine" - "erosion" - "error" - "esa" - "esri" - "esri-ascii-raster" - "esri-community-analyst" - "esri-geodatabase" - "esri-geoportal-server" - "esri-geotrigger-service" - "esri-grid-format" - "esri-leaflet" - "esri-maps-office" - "esri-maps-sharepoint" - "esri-production-mapping" - "et-geowizards" - "ethiopia" - "etl" - "europe" - "events" - "evi" - "examples" - "excel" - "exifread" - "explode" - "export" - "ext-js" - "ext-js-4" - "extend" - "extensions" - "extents" - "extjs3" - "extrude" - "faims" - "fat32" - "feature-class" - "feature-dataset" - "feature-extraction" - "feature-layer" - "feature-service" - "features" - "featureserver" - "fedora" - "fgdb" - "fiddler" - "field-calculator" - "field-mapping" - "field-properties" - "fields" - "file-association" - "file-formats" - "file-geodatabase" - "file-geodatabase-api" - "file-size" - "files" - "filling" - "filter" - "find" - "finland" - "fiona" - "fips" - "firefox" - "fishnet" - "flash-builder" - "flex" - "flex-2.5" - "flexviewer" - "floating-point" - "flood" - "flow" - "flow-accumulation" - "flow-map" - "fly-through" - "fme" - "fme-cloud" - "fme-server" - "fmeobjects" - "font" - "footprint" - "forest-ecology" - "format" - "formatting" - "foss4g" - "four-color-theorem" - "foursquare-data" - "fragstats" - "framework" - "france" - "free" - "free-data" - "free-software" - "freelance" - "french" - "ftools" - "ftp" - "full-motion-video" - "fusion" - "fuzzy-logic" - "fwtools" - "gadm" - "garmin" - "gazetteer" - "gdal" - "gdal-contour" - "gdal-merge" - "gdal-translate" - "gdalbuildvrt" - "gdaldem" - "gdalinfo" - "gdalogr" - "gdalwarp" - "gdb" - "gedcom" - "general-knowledge" - "generalisation" - "generalization" - "generate-tiles" - "geo-platform" - "geoalchemy" - "geobrain" - "geocaching" - "geocms" - "geocoder" - "geocoding" - "geocortex" - "geoda" - "geodata" - "geodesic" - "geodesy" - "geodjango" - "geoenrichment" - "geoevent-processor" - "geoexplorer" - "geoext" - "geoext-2" - "geoeye" - "geofencing" - "geography" - "geogratis" - "geohash" - "geoid" - "geojson" - "geokettle" - "geolocate" - "geolocation" - "geology" - "geomajas" - "geomarketing" - "geomedia" - "geometric-network" - "geometry" - "geometry-service" - "geometrycollection" - "geomoose" - "geonames" - "geonetwork" - "geonode" - "geopackage" - "geopandas" - "geopdf" - "geophp" - "geoplanet" - "geoportal" - "geoprocessing" - "geoprocessing-framework" - "geoprocessing-package" - "geoprocessing-service" - "geoprocessor" - "geopy" - "georeference" - "georeferencer" - "georeferencing" - "georss" - "geos" - "geosciences" - "geoscript" - "geoserver" - "geoserver-css-module" - "geoserver-manager" - "geoserver-rest-api" - "geoservices-rest-api" - "geosoft" - "geostatistical-analyst" - "geotag" - "geotiff" - "geotools" - "geotrellis" - "geowebcache" - "germany" - "getcapabilities" - "getfeatureinfo" - "getlegendgraphic" - "getmap" - "ggmap" - "ggplot2" - "ghana" - "gimp" - "gis-principle" - "gis-professionals" - "giscience" - "gisgraphy" - "gisp" - "global" - "global-mapper" - "global-positioning" - "globalmapper" - "globe" - "gme" - "gml" - "gmt" - "gnss" - "google" - "google-docs" - "google-drive" - "google-earth" - "google-earth-enterprise" - "google-earth-pro" - "google-forms" - "google-fusion-tables" - "google-maps" - "google-maps-api" - "google-maps-engine" - "government" - "gpgpu" - "gpk" - "gps" - "gpsbabel" - "gpstools" - "gpx" - "graph" - "graphics" - "grass" - "grass.script" - "great-circle" - "great-ellipse" - "grib" - "grib2" - "grids" - "grids-graticules" - "groovy" - "ground-control" - "group" - "group-layer" - "gui" - "guyana" - "gvsig" - "gwr" - "h2gis" - "habitat-modeling" - "hadoop" - "hadoop-cloud" - "hardware" - "hdf" - "health" - "heatmap" - "hec-geohms" - "hec-ras" - "helicopter" - "here-maps" - "heroku" - "hexagon-binning" - "hgt" - "hibernate-spatial" - "hillshade" - "histogram" - "historical" - "history" - "hive" - "homework" - "hosting" - "html" - "html5" - "http-headers" - "http-post" - "hydrography" - "hydrology" - "hyperion" - "hyperlink" - "i18n" - "iceland" - "icon" - "id-editor" - "identify" - "identity" - "idl" - "idle" - "idrisi" - "idw" - "iis" - "illustrator" - "ilwis" - "image" - "image-analysis" - "image-mosaic" - "image-pyramids" - "image-segmentation" - "image-service" - "imagej" - "imagery" - "implementation" - "import" - "imposm" - "imu" - "in-memory" - "indexing" - "india" - "indoor" - "industry" - "informix" - "infowindow" - "infrastructure" - "inkscape" - "inpho-match-at" - "inspire" - "installation" - "installer" - "integration" - "interface" - "intergraph" - "internationalization" - "internet-explorer" - "interoperability" - "interpolation" - "intersection" - "introductory-level" - "invalid-data" - "ios" - "ipad" - "iphone" - "iran" - "iso-19109" - "iso-19115" - "israel" - "italy" - "iteration" - "iterator" - "jai" - "japan" - "java" - "javascript" - "jboss" - "jetty" - "joins" - "josm" - "journal-articles" - "jp2000" - "jpg" - "jquery" - "js" - "json" - "jts" - "jts-topology-suite" - "jtx" - "juno" - "jvectormap" - "jvm" - "kernel-density" - "key-value-store" - "kml" - "kmlsuperoverlay" - "kmz" - "kriging" - "labeling" - "lake" - "land-classification" - "land-cover" - "land-survey" - "land-use" - "landsat" - "landsat-5" - "landsat-7" - "landsat-8" - "landscape" - "landxml" - "language" - "large-datasets" - "las" - "las-files" - "laspy" - "lastools" - "lat-lon" - "latitude" - "layer-file" - "layer-package" - "layer-resource" - "layers" - "layouts" - "laz" - "leaflet" - "leaflet-api" - "leaflet-draw" - "learning" - "learning-resources" - "least-cost-path" - "legal" - "legal-description" - "legend" - "legend-designer" - "leica-geo-office" - "length" - "liblas" - "library" - "license" - "licensing" - "lidar" - "lidar-analyst" - "lidar-metrics" - "limitations" - "line" - "linear-referencing" - "linestring" - "linux" - "linux-mint" - "list" - "literature" - "lizmap" - "loading" - "locale" - "localhost" - "locator" - "lock" - "log" - "longitude" - "loop" - "m-gemma" - "mac" - "maintenance" - "malaysia" - "manifold" - "map" - "map-algebra" - "map-book" - "map-drawing" - "map-editor" - "map-index" - "map-maker" - "map-matching" - "map-package" - "map-point" - "map-service" - "map-unit" - "map-writer" - "mapbasic" - "mapbox" - "mapcache" - "mapcalc" - "mapcontrol" - "mapdocument" - "maperitive" - "mapfile" - "mapfish" - "mapguide" - "mapguide-maestro" - "mapinfo" - "maplex" - "maplogic" - "mapnik" - "mapping" - "mapping-concept" - "mapproxy" - "mapquest" - "maps" - "mapscript" - "mapserver" - "mapsforge" - "maptitude" - "mapublisher" - "mapwindow" - "mapxtreme" - "marine" - "maritime-map" - "marker" - "markers" - "mashup" - "mask" - "masking" - "mastermap" - "match-lines" - "mathematics" - "matlab" - "matlab-mapping-toolbox" - "matplotlib" - "matplotlib-basemap" - "maxent" - "mb-util" - "mbtiles" - "mcc-lidar" - "measurements" - "medical-geography" - "memory" - "memory-layer" - "mercator" - "merge" - "mergeshapes" - "metadata" - "metes-and-bounds" - "mexico" - "mgrs" - "microstation" - "middle-east" - "mif" - "migration" - "missing-data" - "mmqgis" - "mobac" - "mobile" - "mod-python" - "mod-tile" - "model" - "model-maker" - "modelbuilder" - "modelling" - "modestmaps" - "modis" - "mongodb" - "mosaic" - "mosaic-dataset" - "mosiac" - "mouse-cursor" - "mouse-position" - "mouse-wheel" - "mrsid" - "ms-access" - "ms-excel" - "ms4w" - "msd" - "mssql" - "mssqlspatial" - "msys" - "multi-band" - "multi-values" - "multimodal-network" - "multipart" - "multipatch" - "multipoint" - "multiprocessing" - "multithreading" - "mutlicriteria-analysis" - "mvvm" - "mxd" - "mysql" - "nac" - "nad83" - "naming-conventions" - "nasa" - "natural-disaster" - "natural-earth" - "navigation" - "navitel" - "ndvi" - "near-3d" - "nearest" - "nearest-neighbor" - "nearmap" - "ned" - "netcdf" - "netherlands" - "nettopologysuite" - "network" - "network-analyst" - "network-dataset" - "networkx" - "new-zealand" - "nhd" - "nigeria" - "nitf" - "nmea" - "noaa" - "nodata" - "node.js" - "nodejs" - "noise" - "nokia" - "nominatim" - "normalize" - "north-america" - "north-arrow" - "nosql" - "ntfs" - "numpy" - "nutiteq-maps-sdk" - "nviz" - "objectid" - "ocad" - "odata" - "odbc" - "odyssey" - "odyssey.js" - "offline" - "ogc" - "ogcserver" - "ogr" - "ogr2layers" - "ogr2ogr" - "oil-gas" - "online" - "opacity" - "opel" - "open-data" - "open-gis" - "open-source" - "open-trip-planner" - "opencarto" - "opendap" - "openev" - "opengeo-suite" - "opengl" - "openjump" - "openlayers" - "openlayers-2" - "openlayers-3" - "openscales" - "openstreetmap" - "openwind" - "opera" - "opticks" - "optimisation" - "oracle" - "oracle-map-builder" - "oracle-spatial" - "oracle10g" - "oracle11g" - "order" - "ordnance-survey" - "orfeo-toolbox" - "organizations" - "origin-destination" - "orthophoto" - "orthorectification" - "os-mastermap" - "os-opendata" - "os-openspace-api" - "osgeo" - "osgeo-live" - "osgeo4w" - "osm2pgrouting" - "osm2pgsql" - "osm2po" - "osm2world" - "osmosis" - "osrm" - "osx" - "outlier" - "overlapping-features" - "overlay" - "overpass" - "overpass-api" - "p.mapper" - "pakistan" - "pan" - "pandas" - "panorama" - "pansharpening" - "paper" - "parallel" - "parallel-lines" - "parallel-processing" - "parameters" - "parcel" - "parcel-fabric" - "parksfinder" - "pathfinder" - "pdf" - "performance" - "perl" - "personal-geodatabase" - "petrel-format" - "pgadmin3" - "pgplsql" - "pgrater" - "pgrouting" - "philippines" - "philosophy" - "phonegap" - "photo2shape" - "photogrammetry" - "photos" - "php" - "pictometry" - "pipe-network" - "places" - "planarize" - "planning" - "plotgooglemaps" - "plotter" - "plss" - "plugins" - "pmf" - "png" - "poi" - "point" - "point-cloud" - "point-in-polygon" - "pointgeometry" - "polygon" - "polygon-creation" - "polygonisation" - "polygonize" - "polyline" - "polyline-creation" - "polymaps" - "polynomial-transformation" - "population" - "popup" - "portable-gis" - "position" - "post-processing" - "postal-code" - "postgis" - "postgis-1.5" - "postgis-2.0" - "postgis-raster" - "postgresql" - "precipitation" - "precision" - "precondition" - "presentations" - "pricing" - "print" - "printcomposer" - "printing" - "privacy" - "processing" - "processing.org" - "profile" - "programming" - "proj4" - "proj4js" - "project" - "projection" - "projection-conversions" - "proximity" - "proxy" - "psychology" - "psycopg2" - "public-data" - "publishing" - "py2exe" - "pycharm" - "pycsw" - "pyodbc" - "pyproj" - "pyqgis" - "pyqt" - "pysal" - "pyscripter" - "pyshp" - "pyside" - "python" - "python-2" - "python-2.6" - "python-2.7" - "python-3" - "python-addin" - "python-script-tool" - "python-toolbox" - "pythonwin" - "pythonxy" - "pywps" - "qa-qc" - "qchainage" - "qgis" - "qgis-1.8" - "qgis-1.9" - "qgis-2.0" - "qgis-2.2" - "qgis-2.4" - "qgis-2.6" - "qgis-android" - "qgis-browser" - "qgis-cloud" - "qgis-modeler" - "qgis-openlayers-plugin" - "qgis-plugins" - "qgis-processing" - "qgis-python-api" - "qgis-server" - "qgis-web-client" - "qgis2leaf" - "qgs" - "qml" - "qr" - "qspatialite" - "qt" - "qt-designer" - "qt4" - "quadtree" - "query" - "query-layer" - "query-task" - "querystring" - "r" - "radar" - "rainfall" - "random" - "random-forest" - "raspberry" - "raspberry-pi" - "raspbian" - "raster" - "raster-calculator" - "raster-catalog" - "raster-conversion" - "raster-dataset" - "raster2pgsql" - "rasterio" - "rasterization" - "real-time" - "real-world-app" - "reclassify" - "reconcile" - "redistricting" - "regex" - "region" - "regionalization" - "regression" - "relates" - "relationship-class" - "relationships" - "remote-hosting" - "remote-sensing" - "rendering" - "repeat" - "replica" - "replication" - "reports" - "repository" - "representation" - "reproject" - "reprojection" - "reprojection-mathematics" - "request" - "resample" - "resampling" - "research" - "resolution" - "resources" - "rest" - "restricted-extent" - "retina" - "reverse-geocoding" - "rgb" - "rgdal" - "rhumb-line" - "rinex" - "rivers" - "road" - "route" - "routing" - "rpf" - "rtklib" - "rubbersheeting" - "ruby" - "rusle" - "russia" - "safari" - "saga" - "sample" - "sampling" - "sap" - "sas" - "satellite" - "saudi-arabia" - "sbas" - "scala" - "scale" - "scale-factor" - "scalebar" - "scan-angle" - "scatterplot" - "scenario-testing" - "schema-architecture" - "schematics" - "scipy.spatial" - "scratch-workspace" - "script" - "scripting" - "sdeexport" - "sdelayer" - "sderaster" - "sdf" - "sdi" - "sdk" - "sdo-geometry" - "seamless" - "search" - "search-window" - "security" - "select" - "select-by-attribute" - "select-by-location" - "sentinel-1" - "serial" - "serious-application-error" - "server" - "server-object-extension" - "service-pack" - "services" - "sextante" - "sextante-qgis-plugin" - "sfcgal" - "shaded-relief" - "shadow" - "shape" - "shape-area" - "shapefile" - "shapely" - "shared-hosting" - "sharepoint" - "sharpmap" - "shell" - "shooting-star" - "shortest-path" - "shp" - "shp2pgsql" - "silverlight" - "similar" - "similarity" - "simplification" - "simplify" - "simulation" - "singapore" - "sink" - "sip" - "skeleton" - "sketchup" - "sld" - "slippy" - "slope" - "smallworld" - "smoothing" - "snapping" - "soap" - "soe" - "software" - "software-recommendations" - "software-version" - "solar-radiation" - "sorting" - "sos" - "sosi" - "south-africa" - "south-america" - "sp" - "spanish" - "spanning-tree" - "spatial" - "spatial-adjustment" - "spatial-analysis" - "spatial-analyst" - "spatial-database" - "spatial-index" - "spatial-join" - "spatial-modeler" - "spatial-query" - "spatial-reference" - "spatial-statistics" - "spatial-view" - "spatialite" - "spatialite-gis" - "spatialite-gui" - "spatio-temporal-data" - "spatstat" - "specification" - "spherical-geometry" - "spline" - "split-algorithm" - "splitting" - "spot5" - "sql" - "sql-server" - "sql-spatial" - "sqlite" - "sqlserver.types" - "srid" - "srs" - "srtm" - "ssf" - "st-geometry" - "st-links" - "stack" - "standalone" - "standard-license-level" - "standards" - "state-plane" - "statistics" - "stereo-imagery" - "storage" - "story-map" - "stream-order" - "street-address" - "streets" - "streetview" - "stretch" - "string" - "style" - "style-manager" - "styling" - "subclass" - "subprocess" - "subsurface" - "subtype" - "supermap-gis" - "surfer" - "survey" - "svg" - "swipe" - "symap" - "symbol" - "symbology" - "syntax" - "tab" - "table" - "table-of-contents" - "tableau" - "tablet" - "tabulate" - "talend-spatial" - "tandem-x" - "targa" - "taudem" - "teaching" - "telecom" - "template" - "temporal" - "teradata" - "terminology" - "terrain" - "terrascan" - "tesselation" - "testing" - "text" - "thematic-map" - "thesis-topic" - "thiessen" - "thinkgeo" - "thredds" - "three.js" - "tiff" - "tiger" - "tile-package" - "tile-server" - "tilecache" - "tilemill" - "tilemill-2" - "tiles" - "tilestache" - "tiling" - "tiling-scheme" - "time" - "timemanager" - "timeslider" - "timestamp" - "tin" - "tips-and-tricks" - "title" - "tkinter" - "tms" - "token" - "tomcat" - "tool-validation" - "toolbar" - "toolbox" - "tools" - "topo" - "topo-maps" - "topography" - "topojson" - "topology" - "toponyms" - "torque" - "tortuosity" - "total-station" - "trace" - "tracking" - "tracking-server" - "tracklog" - "trade-areas" - "traffic" - "training" - "trajectory" - "transformation" - "transformer" - "transit" - "translation" - "transparency" - "transportation" - "travellingsalesman" - "triangulation-survey" - "trigger" - "trilateration" - "trimble" - "troubleshooting" - "trs" - "turkey" - "tutorial" - "twitter" - "typography" - "uav" - "ubuntu" - "ubunu" - "udig" - "uml" - "understanding" - "unicode" - "union" - "unique-id" - "unit-testing" - "united-kingdom" - "united-states" - "units" - "update" - "upgrade" - "url" - "usgs" - "ushahidi" - "usps" - "utfgrid" - "utility-network" - "utm" - "ux" - "validation" - "value-list" - "vb" - "vb.net" - "vba" - "vbs" - "vbscript" - "vector" - "vector-grid" - "vectorization" - "version-control" - "versioning" - "vertex" - "vertical-transformation" - "vertices" - "video" - "vietnam" - "viewer" - "viewshed" - "vincenty-formulae" - "virtual-machine" - "visibility" - "visual-studio" - "visualisation" - "visualization-techniques" - "void" - "volume" - "voronoi" - "voronoi-thiessen" - "vpf" - "vrt" - "walk" - "watershed" - "waterways" - "wcf" - "wcs" - "weather" - "web" - "web-adaptor" - "web-gis" - "web-mapping" - "web-mercator" - "web-service" - "wfs" - "wfs-t" - "wgs84" - "where-clause" - "whitebox-gat" - "widget" - "wikimapia" - "wildcard" - "windows" - "windows-7" - "windows-8" - "windows-8.1" - "windows-phone" - "windows-server-2008" - "windows-server-2012" - "windshaft" - "within" - "wkb" - "wkt" - "wms" - "wms-animator" - "wms-cascading" - "wms-time" - "wmsgetfeatureinfo" - "wmts" - "word-cloud" - "wordpress" - "workflow" - "working-directory" - "workspace" - "worldwind" - "wp7" - "wpf" - "wps" - "wpsclient" - "wxpython" - "xls" - "xml" - "xsl" - "xy" - "xyz" - "yahoo" - "z-index" - "z-value" - "zillow" - "zip-codes" - "zip4" - "zonal" - "zoom" - "zxy") diff --git a/data/tags/graphicdesign.el b/data/tags/graphicdesign.el deleted file mode 100644 index 3a0f560..0000000 --- a/data/tags/graphicdesign.el +++ /dev/null @@ -1,487 +0,0 @@ -("3d" - "3ds-max" - "abstract" - "accessibility" - "actions" - "actionscript" - "adobe" - "adobe-acrobat" - "adobe-after-effects" - "adobe-bridge" - "adobe-creative-suite" - "adobe-edge-animate" - "adobe-edge-reflow" - "adobe-fireworks" - "adobe-flash" - "adobe-freehand" - "adobe-illustrator" - "adobe-indesign" - "adobe-kuler" - "adobe-lightroom" - "adobe-livecycle" - "adobe-muse" - "adobe-photoshop" - "adobe-photoshop-elements" - "advertising" - "affinity-designer" - "alignment" - "anatomy-for-artists" - "anchor-point" - "android" - "animation" - "anime-studio" - "anti-aliasing" - "app" - "apparel" - "apple" - "applications" - "arabic" - "art" - "artboard" - "ascii" - "asset-management" - "autodesk-sketchbook-pro" - "automation" - "background" - "background-removal" - "balance" - "batch" - "batch-processing" - "behance" - "beizer-curve" - "best-practice" - "binding" - "bit" - "bitmap" - "black" - "blackletter" - "bleed" - "blender" - "blending" - "blending-objects" - "blog" - "blur" - "bold" - "book" - "borders" - "branding" - "browser" - "brush" - "brushes" - "business" - "button" - "buying" - "calibration" - "calligraphy" - "camera" - "canvas" - "cartography" - "catia" - "caveats" - "cc-2014" - "cell" - "character" - "character-design" - "character-styles" - "chart" - "chart-design" - "cinema4d" - "client-relations" - "cmyk" - "collaboration" - "color" - "color-conversion" - "color-indexing" - "color-match" - "color-profile" - "color-reproduction" - "color-spaces" - "color-theory" - "comics" - "communication" - "community" - "compensation" - "competitions" - "composition" - "compression" - "concept-art" - "conceptualization" - "content" - "contract" - "contrast" - "copy-protection" - "copyleft" - "copyright" - "corel-draw" - "corel-paint-shop-pro" - "createspace" - "creative-cloud" - "creative-commons" - "critique" - "crop" - "cross-platform" - "cross-reference" - "cross-section" - "cs2" - "cs3" - "cs4" - "cs5" - "cs6" - "css" - "cur" - "cutter" - "data-merge" - "data-visualisation" - "definition" - "depth" - "design-principles" - "design-process" - "designers" - "desktop" - "diagram" - "dicom" - "digital" - "dimensions" - "distort" - "document-setup" - "dpi" - "drawing" - "drawing-tablet" - "dreamweaver" - "drop-shadow" - "e-mail" - "ebook" - "education" - "effects" - "efficiency" - "embedded" - "embossing" - "empirical-research" - "eps" - "epub" - "export" - "extracting" - "eyedropper" - "favicon" - "file-format" - "file-size" - "fill" - "filter" - "fine-arts" - "flat-design" - "flatten" - "flexography" - "focus" - "folding" - "font-design" - "font-face" - "font-forge" - "font-identification" - "font-licensing" - "font-management" - "font-manipulation" - "font-pairing" - "font-recommendation" - "font-size" - "font-weight" - "fontlab-fontographer" - "fontlab-studio" - "fonts" - "formatting" - "forms" - "free" - "freelance" - "front-end-development" - "games" - "gamut" - "gif" - "gimp" - "glyphs" - "google" - "gpl" - "gradient" - "gradient-mesh" - "graphic" - "graphic-styles" - "graphics" - "grayscale" - "grep" - "grids" - "gui-design" - "halftone" - "hardware" - "hardware-recommendation" - "hex" - "highlights" - "hiring" - "history" - "how-to" - "hsb" - "html" - "hyphenation" - "ibooks-author" - "icon" - "identity" - "idraw" - "illustration" - "illustrator-effects" - "illustrator-scripting" - "image" - "image-editing" - "image-format" - "image-processing" - "image-quality" - "image-sprite" - "image-trace" - "imagemagick" - "images" - "indesign-scripting" - "industry-term" - "information-architecture" - "information-design" - "information-graphics" - "inkscape" - "inspiration" - "interaction" - "interface" - "interpolation" - "ios" - "ipad" - "iphone" - "irfanview" - "isometric" - "japanese" - "javascript" - "job" - "jpg" - "jsx" - "kerning" - "krita" - "laser" - "laser-cutting" - "latex" - "layer-composition" - "layer-style" - "layers" - "layout" - "legal" - "lettering" - "licensing" - "lighting-effects" - "line-art" - "line-height" - "linux" - "live-trace" - "logo" - "mac" - "maps" - "margin" - "marketing" - "marquee-tool" - "mask" - "master-page" - "material-design" - "mathematics" - "maya" - "measurement" - "metal" - "metallic" - "microsoft-expression" - "microsoft-office" - "microsoft-powerpoint" - "minimalistic" - "mobile" - "mobile-first" - "mockup" - "modeling" - "monitor" - "monochrome" - "monospace" - "ms-paint" - "multiple-sizes" - "newsletter" - "noise" - "numbering" - "opacity" - "open-source" - "opentype" - "optimization" - "organizations" - "osx" - "outdoors" - "overlay" - "overprint" - "packaging" - "page-layout" - "paint.net" - "painting" - "panorama" - "pantone" - "paper" - "paper-size" - "paragraph" - "paragraph-styles" - "path" - "pathfinder" - "patterns" - "pdf" - "pen-tool" - "perspective" - "photo-editing" - "photography" - "photoshop-effects" - "photoshop-scripting" - "pixel" - "pixel-art" - "pixel-grid" - "pixelation" - "pixelmator" - "placeholder" - "plagiarism" - "plugin" - "png" - "portfolio" - "portrait" - "posters" - "ppi" - "prepress" - "presentation" - "presentation-design" - "print" - "print-design" - "print-production" - "printing" - "pro-bono" - "procedural-art" - "product-design" - "proofing" - "publisher" - "publishing" - "quarkxpress" - "raster" - "raw-format" - "reading" - "reference-request" - "reflection" - "registration" - "representation" - "repurposing" - "resize" - "resolution" - "resource-recommendations" - "resources" - "responsive-design" - "restoration" - "resume" - "retina" - "rgb" - "right-to-left" - "royalty-free" - "rtl" - "running-header" - "sans-serif" - "save" - "scale" - "scaling" - "scanning" - "screen-printing" - "screenshot" - "scribus" - "script" - "section-marker" - "selections" - "self-improvement" - "serif" - "shadows" - "shapes" - "shortcuts" - "signage" - "simulation" - "sketch" - "sketch-3" - "sketching" - "sketchup" - "skew" - "skillset" - "slab-serif" - "slices" - "smartobject" - "snapping" - "software" - "software-recommendations" - "solidworks" - "spec-work" - "spot-color" - "sprite" - "stock-images" - "stroke" - "study" - "style" - "style-identification" - "subpixel-rendering" - "subtraction" - "svg" - "swatches" - "swf" - "symbolism" - "symbols" - "table-of-contents" - "tables" - "tablet" - "technique" - "template-design" - "terminology" - "text" - "text-wrap" - "texture" - "tiff" - "tiles" - "tools" - "trademark" - "traditional-media" - "training" - "transform" - "transparency" - "trends" - "tutorial" - "tv-series" - "typefaces" - "typekit" - "typesetting" - "typography" - "ui" - "underline" - "units" - "untagged" - "usability" - "user-experience" - "user-interface" - "vanishing-point" - "vector" - "video" - "vignette" - "vintage" - "vinyl" - "visual-artifacts" - "visualization" - "vue" - "wayfinding" - "web" - "web-applications" - "web-fonts" - "web-safe" - "web-standards" - "website-design" - "website-templates" - "white" - "white-space" - "wiki" - "windows" - "windows-8" - "wireframing" - "word-cloud" - "work" - "workflow" - "wpf" - "xml" - "zoom") diff --git a/data/tags/ham.el b/data/tags/ham.el deleted file mode 100644 index 31842b7..0000000 --- a/data/tags/ham.el +++ /dev/null @@ -1,197 +0,0 @@ -("20m-band" - "2m-band" - "70cm-band" - "airband" - "allstar" - "am" - "amplifier" - "antenna" - "antenna-construction" - "antenna-tuner" - "aprs" - "arrl" - "audio" - "australia" - "automation" - "balun" - "band-plan" - "bandwidth" - "baofeng" - "battery" - "beacon" - "beam" - "boat-anchor" - "calibration" - "callsign" - "canada" - "capacitance" - "circular-polarization" - "citizens-band" - "coaxial-cable" - "connectors" - "contest" - "counterpoise" - "cq-zones" - "crossband-repeat" - "cw" - "d-star" - "digital" - "digital-voice" - "dipole" - "direct-conversion" - "direction-finding" - "diy" - "down-convert" - "dummy-load" - "dx" - "echolink" - "education" - "efficiency" - "ehf" - "electronics" - "emergency" - "encoding" - "encryption" - "eqsl" - "equipment" - "equipment-design" - "equipment-operation" - "equipment-protection" - "equipment-troubleshooting" - "etiquette" - "europe" - "fcc" - "feed-line" - "ferrite" - "field-day" - "filter" - "fm" - "folded-dipole" - "fox-hunt" - "frequency" - "frs" - "ft-101" - "gqrx" - "grounding" - "health-effects" - "hf" - "hsmm" - "ht" - "impedance" - "india" - "inductor" - "installation" - "international-operating" - "internet" - "inverted-vee" - "ionosphere" - "itu-zones" - "jargon" - "jota" - "jt65" - "kenwood" - "legal" - "license" - "lightning" - "line-of-sight" - "linux" - "location" - "logging" - "long-path" - "loop-antenna" - "lotw" - "magnetic-loop" - "maintenance" - "map" - "mast" - "math" - "measurement" - "mesh-network" - "microphone" - "microwave" - "mimo" - "mixer" - "mobile" - "modes" - "modification" - "music" - "net" - "noise" - "nvis" - "optical" - "oscillator" - "outreach" - "packet" - "path-loss" - "phased-array" - "phone" - "physics" - "pl259-so239-connector" - "polarization" - "power" - "power-supply" - "procedure" - "programming" - "propagation" - "q-codes" - "qsl-card" - "radial" - "range" - "rcp-2" - "receiver" - "reliability" - "remote-control" - "repair" - "repeater" - "rfi" - "rssi" - "rtl-sdr" - "safety" - "satellites" - "second-operator" - "security" - "shf" - "short-antenna" - "signal-identification" - "simplex" - "skimmer" - "small-loop" - "snr" - "software" - "software-defined-radio" - "space-weather" - "split-frequency" - "squelch" - "ssb" - "sstv" - "sunspots" - "superheterodyne" - "tdma" - "testing" - "theory" - "tone-squelch" - "transceiver" - "transmission" - "transmission-line" - "transmitter" - "ts-520" - "ts570s" - "tuning" - "uhf" - "united-kingdom" - "united-states" - "up-convert" - "uv-5r" - "varicap" - "vertical-antenna" - "vfo" - "vhf" - "vlf" - "voltage" - "volunteer-examiners" - "vswr" - "weather" - "wifi" - "wire-antenna" - "yaesu" - "yagi") diff --git a/data/tags/hermeneutics.el b/data/tags/hermeneutics.el deleted file mode 100644 index 80835ff..0000000 --- a/data/tags/hermeneutics.el +++ /dev/null @@ -1,271 +0,0 @@ -("1-chronicles" - "1-corinthians" - "1-enoch" - "1-john" - "1-kings" - "1-peter" - "1-samuel" - "1-thessalonians" - "1-timothy" - "2-chronicles" - "2-corinthians" - "2-john" - "2-kings" - "2-maccabees" - "2-peter" - "2-samuel" - "2-thessalonians" - "2-timothy" - "3-john" - "abraham" - "acts" - "adam" - "adoption" - "aliens" - "allegory" - "ambiguity" - "amos" - "angels" - "animals" - "antediluvian" - "apocrypha" - "aramaic" - "aramaic-primacy" - "astronomy" - "attributes-of-god" - "audience" - "authenticity" - "authorial-intent" - "authority" - "authorship" - "babylon" - "balaam" - "baptism" - "barnabas" - "bethseba" - "bible-versions" - "biblical-theology" - "blessings" - "body-of-christ" - "cain" - "canonicity" - "catholicism" - "christology" - "chronology" - "church" - "colossians" - "context" - "contradiction" - "covenant" - "creation" - "cultural-analysis" - "curses" - "daniel" - "dating" - "david" - "dead-sea-scrolls" - "death" - "deborah" - "definition" - "deuteronomy" - "documentary-hypothesis" - "ecclesiastes" - "egypt" - "elijah" - "elisha" - "ephesians" - "epistle-of-barnabas" - "eschatology" - "esther" - "esv" - "etymology" - "eucharist" - "exodus" - "ezekiel" - "ezra" - "faith" - "fall" - "figure-of-speech" - "fish" - "five-scrolls" - "forgiveness" - "form-criticism" - "galatians" - "gender" - "genealogy" - "geneology" - "genesis" - "geography" - "gospel-message" - "gospel-of-barnabas" - "gospel-of-thomas" - "gospels" - "grammar" - "grammatical-historical" - "greek" - "habakkuk" - "haggai" - "hapax-legomenon" - "healing" - "heaven" - "hebrew" - "hebrew-bible" - "hebrews" - "hermeneutic" - "hermeneutical-approaches" - "historical-criticism" - "historical-evidence" - "historical-interpretation" - "history" - "holy-spirit" - "homosexuality" - "hosea" - "humanism" - "idiom" - "idolatry" - "inner-biblical-allusion" - "inspiration" - "isaiah" - "israel" - "jacob" - "james" - "jeremiah" - "jerusalem" - "jesus" - "jezebel" - "job" - "joel" - "john" - "john-the-baptist" - "jonah" - "joseph" - "josephus" - "joshua" - "judaism" - "judas" - "jude" - "judgement" - "judges" - "justification" - "kings" - "kjv" - "lamentations" - "language" - "latin-vulgate" - "law" - "layers-of-meaning" - "leviticus" - "linguistics" - "literary-criticism" - "literary-device" - "literary-genre" - "literary-structure" - "liturgy" - "lords-prayer" - "luke" - "malachi" - "manuscript" - "marcion" - "mark" - "marriage" - "mary" - "masoretic-text" - "mathematics" - "matthew" - "melchizedek" - "messiah" - "messianic" - "metaphor" - "micah" - "midrash" - "miracle" - "money" - "moses" - "mystery" - "names-of-god" - "narrative-analysis" - "nathan" - "nations" - "neo-orthodoxy" - "new-english-translation" - "new-testament" - "new-world-translation" - "niv" - "nlt" - "noah" - "nt-use-of-hebrew-bible" - "numbers" - "numerology" - "onomastics" - "parables" - "pastorals" - "patience" - "paul" - "pauline-epistles" - "perspective" - "peshitta" - "peter" - "philemon" - "philippians" - "poetry" - "prayer" - "prophecy" - "provenance" - "proverbs" - "psalms" - "pseudepigrapha" - "pun" - "punctuation" - "q-source" - "rabbinic-interpretation" - "redaction-criticism" - "referent-identification" - "resurrection" - "revelation" - "righteousness" - "romans" - "ruth" - "sabbath" - "sacrifice" - "salvation" - "samuel" - "sarcasm" - "satan" - "saul" - "science" - "second-coming" - "second-temple-judaism" - "sensus-plenior" - "septuagint" - "sermon-on-the-mount" - "sexuality" - "shalom" - "silence" - "sin" - "sirach" - "solomon" - "song-of-songs" - "soul" - "source-criticism" - "spirit" - "symbology" - "synoptic-problem" - "synoptics" - "tabernacle" - "teaching" - "temple" - "terminology" - "textual-criticism" - "thanksgiving" - "theodicy" - "theophany" - "time" - "titus" - "tobit" - "torah" - "translation-methodology" - "translation-philosophy" - "trinity" - "untagged" - "word-study" - "zechariah") diff --git a/data/tags/hinduism.el b/data/tags/hinduism.el deleted file mode 100644 index c1b7668..0000000 --- a/data/tags/hinduism.el +++ /dev/null @@ -1,341 +0,0 @@ -("adi-shankaracharya" - "adisesha" - "advaita" - "afterlife" - "agni" - "agnosticism" - "ahimsa" - "aitareya-upanishad" - "akasha" - "akshay-patra" - "akshaya-tritiya" - "alankara" - "alwar" - "amavasya" - "ancestry" - "angiras" - "animals" - "arjuna" - "art" - "ashram" - "ashwini-kumaras" - "astika" - "astrology" - "asuras" - "atharva-veda" - "atma" - "avatar" - "avatars" - "ayurveda" - "balarama" - "belief" - "bhagavad-gita" - "bhagavata-purana" - "bhavishya-purana" - "bhavishyottara-purana" - "bhishma" - "bhrigu" - "bhumi" - "black-magic" - "body" - "brahma" - "brahma-sutras" - "brahmachari" - "brahmacharya" - "brahman" - "brahmins" - "brihadaranyaka-upanishad" - "brihaspati" - "buddha" - "buddhism" - "calendar" - "carvaka" - "caste-system" - "chaitanya" - "chakras" - "chandogya-upanishad" - "chandra" - "charity" - "christianity" - "color" - "confession" - "conversion" - "cosmology" - "cows" - "creation" - "cremation" - "culture" - "customs" - "dana" - "darshan" - "dasharatha" - "dattatreya" - "death" - "demi-god" - "demon" - "destiny" - "devas" - "devi-bhagavata-purana" - "devotee" - "devotion" - "dharma" - "diet" - "direction" - "dream" - "dress" - "durga" - "dvaita" - "earth" - "eclipse" - "eclipses" - "education" - "evil" - "fasting" - "festivals" - "food" - "gajendramoksha" - "gandhari" - "ganesha" - "ganga" - "garuda" - "garuda-purana" - "gaudiya-vaishnavism" - "gayatri-mantra" - "gender" - "ghosts" - "gita" - "godavari" - "goddess" - "gods" - "grahan" - "gruhasthu" - "guru" - "guru-geetha" - "gurukul" - "hanuman" - "harivamsa" - "history" - "horoscopes" - "idols" - "incarnation" - "india" - "indra" - "indrajit" - "isha-upanishad" - "ishta-deva" - "islam" - "jainism" - "janmashtami" - "japamala" - "jiva" - "jyotirlinga" - "kaivalya" - "kalidasa" - "kaliyug" - "kamadeva" - "kamasutra" - "kamba-ramayana" - "kamsa" - "kapila" - "karma" - "karna" - "karni-mata" - "kartikeya" - "kauravas" - "knowledge" - "krishna" - "kumbh-mela" - "kundali" - "kurma" - "kurukshetra" - "lakshmana" - "lakshmi" - "lalitha" - "language" - "life" - "life-span" - "literature" - "lokas" - "magic" - "mahabharata" - "mangalik" - "mantras" - "manu" - "marriage" - "maru" - "material-desire" - "matsya" - "maya" - "meditation" - "mind" - "mohini" - "moksha" - "monks" - "monotheism" - "mudra" - "mukti" - "mythology" - "nadi" - "nakshatra" - "name" - "narada" - "narada-purana" - "naraka" - "narasimha" - "narayana" - "nature" - "navagraha" - "navrathri" - "non-vegetarian" - "norms" - "numerology" - "om" - "other-religions" - "padma-purana" - "panchabhoota" - "panchanga" - "pancharatra" - "pandavas" - "papam" - "parashurama" - "parvathi" - "parvati" - "peepal-tree" - "philosophy" - "pitradosh" - "plants" - "practice" - "practices" - "prakriti" - "prasad" - "prayer" - "puja" - "punyam" - "puranas" - "purascharana" - "purush" - "quotes" - "radha" - "rajo-guna" - "rakshasa" - "rama" - "ramanuja" - "ramanujacharya" - "ramayana" - "ravana" - "rebirth" - "reference" - "rig-veda" - "rishi" - "rites" - "rituals" - "river" - "rudraksha" - "rukmini" - "sacraments" - "sacrifice" - "sadhana" - "sadhus" - "sai" - "saint" - "salvation" - "sama-veda" - "samadhi" - "samskara" - "samudra-manthan" - "samvatsara" - "sankalpa" - "sanskrit" - "sanyasi" - "saraswati" - "sati-goddess" - "satva-guna" - "scipture" - "scripture" - "sects" - "self-realization" - "sex" - "shaivism" - "shakthi" - "shakuni" - "shani" - "shatapatha-brahmana" - "shiv-strotam" - "shiva" - "shiva-lingam" - "shiva-purana" - "shrinathji" - "siddhi" - "sin" - "sita" - "skanda-purana" - "smartism" - "smritis" - "soma" - "space" - "spiritual-level" - "sraddha" - "sri-rudram" - "sri-sukta" - "sri-vaishnava" - "sri-vaishnavism" - "sudama" - "sukracharya" - "superstitions" - "surya" - "swaminarayan" - "swayamvar" - "symbolism" - "symbols" - "taittirya-aranyaka" - "taittirya-upanishad" - "tamil" - "tamo-guna" - "tantra" - "teaching" - "temples" - "terminology" - "thenkalai" - "tilak" - "time" - "tithi" - "tradition" - "translation-request" - "uddhava-gita" - "untouchability" - "upanishads" - "vadakalai" - "vaikhanasa" - "vaishnavism" - "vali" - "vamadeva" - "vamana" - "varaha" - "varuna" - "vashishta" - "vayu-purana" - "vedanta" - "vedanta-desikan" - "vedas" - "vedavati" - "vedic-gods" - "venkateshwara" - "vibrations" - "vikramaditya" - "vishishtadvaita" - "vishnu" - "vishnu-purana" - "vishnu-sahasranama" - "vrata" - "vyasa" - "weapon" - "women" - "worship" - "yagna" - "yajna" - "yajur-veda" - "yama" - "yamaloka" - "yashoda" - "yoga" - "yuga") diff --git a/data/tags/history.el b/data/tags/history.el deleted file mode 100644 index ed89e4d..0000000 --- a/data/tags/history.el +++ /dev/null @@ -1,579 +0,0 @@ -("11th-century" - "12th-century" - "13th-century" - "14th-century" - "15th-century" - "1600s" - "16th-century" - "17th-century" - "18th-century" - "1920s" - "1930s" - "1940s" - "1960s" - "1970s" - "1980s" - "19th-century" - "1st-century" - "20th-century" - "21st-century" - "2nd-century" - "30-year-war" - "3rd-century" - "3rd-century-bc" - "4th-century" - "abbatoir" - "abolition" - "abolitionism" - "aboriginals" - "abraham-lincoln" - "accounting" - "accuracy" - "adaptability" - "africa" - "age-of-discovery" - "age-of-sail" - "agriculture" - "aircraft" - "alaska" - "alcohol" - "alexander-iii-greece" - "american-civil-war" - "american-revolution" - "americas" - "ancient-babylon" - "ancient-china" - "ancient-egypt" - "ancient-greece" - "ancient-history" - "ancient-iran" - "ancient-rome" - "animals" - "antarctica" - "anthems" - "anthropology" - "antisemitism" - "arab" - "arab-spring" - "arabia" - "archaeology" - "architecture" - "archives" - "arctic" - "argentina" - "armour" - "army" - "art" - "artillery" - "asia" - "assassination" - "assimilation" - "astronomy" - "ataturk" - "athens" - "atlantic-slave-trade" - "australia" - "austria" - "austria-hungary" - "automobiles" - "aviation" - "aztec" - "banking" - "barbary-wars" - "battles" - "belgium" - "berlin-wall" - "bible" - "biography" - "bohemia" - "bombing" - "book" - "border-dispute" - "brazil" - "britain" - "british-empire" - "bronze-age" - "buddhism" - "bulgaria" - "business" - "business-history" - "byzantine-empire" - "caesar" - "calendar" - "california" - "caliphate" - "calvinism" - "canada" - "capitalism" - "caribbean" - "carthage" - "cartography" - "catholic-church" - "cavalry" - "celts" - "central-asia" - "chemicals" - "chess" - "chile" - "china" - "chinese" - "christianity" - "christmas" - "christopher-columbus" - "chronology" - "church" - "churchill" - "cities" - "citizenship" - "civil-war" - "civilizations" - "classical-antiquity" - "classical-greece" - "climate" - "clothing" - "coins" - "cold-war" - "collapse" - "colonial-america" - "colonisation" - "colonization" - "colony" - "communication" - "communism" - "community" - "computers" - "confederacy" - "conflict" - "conquest" - "constitution" - "construction" - "consumer-goods" - "contemporary-history" - "crime" - "crowd-psychology" - "crusades" - "cuba" - "cultural-history" - "culture" - "currency" - "customs" - "czech-republic" - "czechoslovakia" - "date" - "dday" - "death" - "death-penalty" - "defense" - "democracy" - "demography" - "denmark" - "dictatorship" - "diplomacy" - "diplomatic-history" - "disabiliy" - "disasters" - "disease" - "drugs" - "dutch" - "dutch-empire" - "early-medieval" - "early-modern" - "ecology" - "economics" - "economy" - "education" - "egypt" - "election" - "emigration" - "employment" - "enclosure" - "engineering" - "england" - "english-civil-war" - "espionage" - "ethiopia" - "ethnicity" - "etiquette" - "etymology" - "europe" - "european" - "everyday-life" - "exploration" - "falklands-war" - "famine" - "fascism" - "fashion" - "festival" - "feudalism" - "finance" - "finland" - "flags" - "flight" - "flood" - "food" - "forgery" - "founding-fathers" - "france" - "franks" - "french-empire" - "french-revolution" - "fur-trade" - "game" - "gender" - "geneology" - "genocide" - "geography" - "german-unification" - "germany" - "gettysburg" - "given-name" - "gladiators" - "gold" - "government" - "great-depression" - "greco-persian-wars" - "greece" - "greek" - "greek-dark-ages" - "greek-mythology" - "groupthink" - "gun-politics" - "habsburg" - "han" - "han-dynasty" - "hebrew" - "helen-keller" - "hellenistic-greece" - "heraldry" - "hinduism" - "historian" - "historical-accuracy" - "historical-criticism" - "historical-research" - "historiography" - "history-of-ideas" - "history-of-social-science" - "hitler" - "holocaust" - "holy-roman-empire" - "homer" - "human-rights" - "human-sacrifice" - "hundred-years-war" - "hungary" - "ice" - "iceland" - "identification" - "immigration" - "imperial-germany" - "imperialism" - "inca" - "independence" - "india" - "indian" - "individuals" - "indonesia" - "indus-valley" - "industrial-revolution" - "infanticide" - "infantry" - "inheritance" - "inquisition" - "international-relations" - "internet" - "invasion" - "inventions" - "iran" - "iraq" - "ireland" - "iron-age" - "islam" - "isolationism" - "israel" - "italian" - "italy" - "japan" - "jefferson" - "jerusalem" - "jesus" - "jews" - "john-f-kennedy" - "josephus" - "journalism" - "julius-caesar" - "jurchens" - "kazakhstan" - "kgb" - "kingdom" - "korea" - "korean-war" - "labour-history" - "language" - "latin" - "latin-language" - "law" - "lenin" - "libya" - "literature" - "london" - "longbow" - "loot" - "luxembourg" - "macedon" - "malaysia" - "malta" - "manchus" - "mao-zedong" - "maps" - "marco-polo" - "marriage" - "mathematics" - "maya" - "media" - "medicine" - "medieval-china" - "medieval-japan" - "mediterranean" - "meiji-restoration" - "mercantilism" - "mercernaries" - "mesoamerica" - "mesolithic" - "mesopotamia" - "metallurgy" - "methodology" - "methods" - "mexico" - "microstate" - "middle-ages" - "middle-east" - "migration" - "military" - "modernisation" - "moldova" - "monarchy" - "money" - "mongol-empire" - "mongolia" - "morals" - "movies" - "mughals" - "music" - "mycenae" - "names" - "napoleon" - "napoleonic-wars" - "narrative" - "nation-states" - "nationalism" - "native-americans" - "nato" - "nautical" - "naval" - "navigation" - "navy" - "nazi-germany" - "nazis" - "nazism" - "needham" - "neolithic" - "netherlands" - "new-world" - "new-york" - "nobility" - "norman" - "norse-mythology" - "north-africa" - "north-america" - "north-korea" - "norway" - "nuclear" - "nuclear-weapons" - "nutrition" - "old-west" - "olympics" - "ottoman-empire" - "pacific-islanders" - "pakistan" - "paleolithic" - "palestine" - "paris" - "peace" - "peasants" - "persia" - "person" - "persona" - "peru" - "philosophy" - "philosophy-of-war" - "phoenicia" - "photography" - "physics" - "piracy" - "place-names" - "plague" - "poland" - "police" - "political-economy" - "political-geography" - "political-history" - "political-party" - "politics" - "pope" - "popular-culture" - "population" - "portugal" - "post-communist-era" - "post-modernism" - "post-war" - "precolumbian-contact" - "prehistory" - "president" - "prisoners-of-war" - "prohibition" - "proof" - "propaganda" - "prosopography" - "protestant-church" - "protests" - "proto-indo-europeans" - "prussia" - "punic-wars" - "pyramids" - "qing" - "quotes" - "race" - "racism" - "railroads" - "records" - "reformation" - "religion" - "religious-history" - "renaissance" - "republic" - "republic-of-ireland" - "research" - "resource" - "revisionism" - "revolution" - "richard-i" - "rocket" - "roman-empire" - "roman-kingdom" - "roman-republic" - "romania" - "royal-succession" - "royalty" - "rulers" - "russia" - "russian-revolution" - "saddam" - "saladin" - "samurai" - "science" - "scotland" - "script" - "sengoku" - "serbia" - "settlement" - "sex" - "sexuality" - "siege" - "silver" - "silver-hallmark" - "slavery" - "social-class" - "social-history" - "socialism" - "society" - "sociology" - "sources" - "south-africa" - "south-america" - "south-asia" - "south-east-asia" - "soviet" - "soviet-union" - "space" - "spaceflight" - "spain" - "spanish-civil-war" - "spanish-empire" - "sparta" - "sports" - "sri-lanka" - "stalin" - "stalingrad" - "statistics" - "steppe-nomads" - "strategy" - "submarine" - "suffrage" - "sumer" - "surname" - "sweden" - "switzerland" - "sword" - "syria" - "tactics" - "taliban" - "tanks" - "taxes" - "technology" - "television" - "terminology" - "terrorism" - "thailand" - "the-balkans" - "theoretical-history" - "tibet" - "time-keeping" - "timeline" - "titanic" - "titles" - "toponymy" - "torture" - "trade" - "tradition" - "transportation" - "travel" - "treaties" - "tudor-period" - "turkey" - "ukraine" - "uniform" - "united-kingdom" - "united-nations" - "united-states" - "untagged" - "us-congress" - "ussr" - "valcano" - "venice" - "vexillology" - "victorian" - "vietnam" - "vietnam-war" - "vikings" - "voting" - "war" - "war-crime" - "war-elephants" - "war-of-1812" - "war-of-the-roses" - "war-on-terror" - "warfare" - "warsaw-pact" - "weapons" - "weimar-republic" - "witch-hunt" - "world" - "world-systems-theory" - "world-war-2" - "ww1" - "ww2" - "wwi" - "yoga" - "yugoslavia" - "zionism" - "zoroastrianism") diff --git a/data/tags/homebrew.el b/data/tags/homebrew.el deleted file mode 100644 index f7a2efc..0000000 --- a/data/tags/homebrew.el +++ /dev/null @@ -1,395 +0,0 @@ -("2-row" - "abv" - "acetaldehyde" - "acidic" - "acidity" - "additives" - "adjunct" - "adjuncts" - "aeration" - "aftertaste" - "aging" - "airlock" - "airtight" - "alcohol" - "alcohol-content" - "ale" - "all-grain" - "alpha-acids" - "alternatives" - "americanipa" - "apartment" - "aroma" - "attenuation" - "autolysis" - "bacon" - "bacteria" - "banana" - "barley" - "barleywine" - "barrel" - "barrels" - "base-malt" - "basement" - "batch-size" - "batch-sparge" - "beer" - "beer-styles" - "beer-tools" - "beersmith" - "beginner" - "belgian" - "belgian-white" - "berliner-weisse" - "best-practices" - "better-bottle" - "biab" - "bittering" - "bitterness" - "bjcp" - "blow-off" - "blow-off-tube" - "body" - "boil" - "boil-equipment" - "boil-kettle" - "boilover" - "books" - "bottle" - "bottle-bomb" - "bottle-conditioning" - "bottles" - "bottling" - "bourbon" - "bread" - "brettanomyces" - "brewery" - "brewing" - "brewpot" - "brewpub" - "brown" - "brown-ale" - "bubble" - "bucket" - "bucket-heater" - "bulk" - "burner" - "buying" - "calculations" - "california-common" - "campden" - "capping" - "caps" - "carbon-dioxide" - "carbonation" - "carboy" - "cellaring" - "chemistry" - "chili" - "chiller" - "chilling" - "chocolate" - "cider" - "clarification" - "clarity" - "cleaning" - "clone-recipe" - "cloudy" - "club" - "co2" - "coffee" - "cold" - "cold-crash" - "color" - "commercial" - "competition" - "conditioning" - "conical-fermenter" - "consistency" - "contamination" - "conversion" - "cooling" - "coopers" - "copper" - "cork" - "corn" - "corny-keg" - "cost" - "crash-cool" - "crush" - "crystal" - "cultivation" - "decoction" - "degassing" - "diacetyl-rest" - "disinfecting" - "distillation" - "diy" - "dme" - "dms" - "doppelbock" - "dry-hop" - "dry-hopping" - "dry-yeast" - "efficiency" - "electric" - "environment" - "equipment" - "experiments" - "extract" - "extract-brewing" - "extract-plus-grains" - "fermentation" - "fermentation-temperature" - "fermenter" - "fermwrap" - "filtering" - "final-gravity" - "fining" - "finings" - "first-time" - "first-time-brewer" - "flavor" - "flavoring" - "foam" - "food" - "food-safety" - "force-carbonation" - "frozen" - "fruit" - "fruit-extract" - "full-boil" - "gas" - "ginger" - "ginger-beer" - "glass" - "gluten-free" - "grain" - "grains" - "gravity-reading" - "grinding" - "grow" - "growing-hops" - "growlers" - "gypsum" - "hangover" - "harvest" - "haze" - "head" - "head-retention" - "headspace" - "health" - "hefeweizen" - "help" - "heterofermentative" - "high-gravity" - "holiday" - "honey" - "honey-type" - "hop-utilization" - "hopback" - "hops" - "hot-side-aeration" - "hydrometer" - "ibu" - "imperial" - "indoors" - "induction-heating" - "infection" - "ingredients" - "insulation" - "ipa" - "irish-moss" - "isinglass" - "judging" - "k-meta" - "keg" - "kegerator" - "kegging" - "kegs" - "kettle" - "kits" - "kombucha" - "krausen" - "labels" - "lacto" - "lactobacillus" - "lactose" - "lager" - "lagering" - "lambics" - "large-batch" - "late-addition" - "lauter" - "learning" - "legal" - "lemonade" - "light" - "liquor" - "lme" - "log" - "magazine" - "malt" - "mash" - "mash-ph" - "mash-thickness" - "mash-tun" - "mash-volume" - "mashing" - "maturation" - "mead" - "measurements" - "media" - "mill" - "mistakes" - "mold" - "nibs" - "no-chill" - "nutrition" - "nuts" - "oak" - "oats" - "off-flavor" - "open-fermentation" - "original-gravity" - "over-carbonation" - "oxiclean" - "oxidation" - "oxygenation" - "packaging" - "pairing" - "pale" - "partial-boil" - "partial-mash" - "partigyle" - "pectic-enzyme" - "permanent" - "ph" - "pilsner" - "pitch" - "pitching" - "pitching-rate" - "plastic" - "porter" - "potassium-meta-bisulfite" - "potassium-sorbate" - "pre-fermentation" - "pressure" - "primary" - "primary-fermentation" - "priming" - "priming-sugar" - "printing" - "problems" - "procedure" - "process" - "projects" - "propane-burner" - "protien-rest" - "pump" - "pumpkin" - "racking" - "recapping" - "recipe" - "recipe-formulation" - "recipe-scaling" - "record-keeping" - "red-ale" - "red-wine" - "refractometer" - "refrigeration" - "refrigerator" - "reinheitsgebot" - "repitch" - "residual" - "reuse" - "reusing-yeast" - "rhizome" - "rice-hulls" - "rims" - "root-beer" - "rye" - "safety" - "saison" - "sake" - "saki" - "sanitation" - "sanitizer" - "sanke-keg" - "science" - "secondary" - "secondary-fermentation" - "sediment" - "serving" - "shaking" - "shelf-life" - "shipping" - "shopping" - "siphon" - "skunk" - "slants" - "smack-pack" - "small-batch" - "small-space" - "smash" - "smoke" - "soda" - "software" - "sour" - "sparge" - "specialty-grains" - "specialty-malt" - "specific-gravity" - "spent-grain" - "spiced" - "spices" - "spirits" - "spoilage" - "stainless" - "starsan" - "starter" - "steeping" - "sterilization" - "stir-plate" - "storage" - "stout" - "stuck-fermentation" - "substitution" - "sugar" - "swamp-cooler" - "sweetness" - "tart" - "taste" - "tea" - "techniques" - "temperature" - "temperature-control" - "temperature-probe" - "timing" - "tincture" - "transport" - "troubleshooting" - "trub" - "tubing" - "untagged" - "viability" - "vinegar" - "vodka" - "water" - "water-heater" - "weiss" - "wheat" - "wheat-beer" - "whiskey" - "wild-yeast" - "wine" - "wood" - "wort" - "wort-chiller" - "wyeast" - "yeast" - "yeast-cultures" - "yeast-nutrient" - "yeast-starters" - "yeast-washing" - "youngs") diff --git a/data/tags/hsm.el b/data/tags/hsm.el deleted file mode 100644 index 67b28cd..0000000 --- a/data/tags/hsm.el +++ /dev/null @@ -1,142 +0,0 @@ -("abstract-algebra" - "academia" - "academic-awards" - "acoustics" - "aerodynamics" - "africa" - "ancient-china" - "ancient-egypt" - "ancient-greece" - "ancient-india" - "applied-mathematics" - "archaeoastronomy" - "architectural-engineering" - "artificial-intelligence" - "astronomy" - "atmosphere" - "atomic-theory" - "bias" - "biographical-details" - "biology" - "biostratigraphy" - "calculus" - "calendar" - "cancer" - "celestial-mechanics" - "cell-biology" - "chemistry" - "chess" - "classical-mechanics" - "climatology" - "comet" - "complex-analysis" - "computation" - "computer-science" - "conjectures" - "contests" - "cybernetics" - "death" - "debunking" - "dentistry" - "depiction-of-scientists" - "differential-geometry" - "discoveries" - "earth" - "earth-sciences" - "eclipse" - "economics" - "education" - "electricity" - "elementary-algebra" - "energy" - "etymology" - "euclidean-geometry" - "evidence" - "evolution" - "examples" - "experimental-physics" - "field-theory" - "fields-medal" - "formal-logic" - "functional-analysis" - "galois" - "galois-theory" - "gottingen" - "gravity" - "group-theory" - "heresy" - "india" - "intellectual-property" - "islamic-science" - "japan" - "kepler" - "kuhn" - "light" - "linear-algebra" - "linguistics" - "machine-learning" - "magnetism" - "material-science" - "mathematical-logic" - "mathematical-physics" - "mathematicians" - "mathematics" - "measurement" - "medicine" - "medieval" - "microscopy" - "middle-ages" - "moon" - "naming-conventions" - "nazi-germany" - "neuroscience" - "nobel-prize" - "nomenclature" - "notations" - "nuclear-power" - "number-theory" - "obsolete-theory" - "optics" - "ozone-layer" - "paleontology" - "particle-physics" - "philosophy-of-science" - "physics" - "physiology" - "plate-tectonics" - "polymath" - "polymer" - "psychology" - "publishing" - "quantum-mechanics" - "radiation" - "real-analysis" - "rediscovery" - "reference-request" - "relativity-theory" - "science-fiction" - "scientific-method" - "set-theory" - "social-context" - "solid-state-physics" - "statistical-mechanics" - "statistics" - "steam-engines" - "stratigraphy" - "string-theory" - "sun" - "taxonomy" - "teaching" - "telescope" - "terminology" - "theoretical-physics" - "theory-of-everything" - "thermodynamics" - "time" - "topology" - "units" - "urban-legend" - "volcanology" - "waste" - "world-war-2" - "zero") diff --git a/data/tags/islam.el b/data/tags/islam.el deleted file mode 100644 index 5709d33..0000000 --- a/data/tags/islam.el +++ /dev/null @@ -1,555 +0,0 @@ -("adab" - "adam-and-eve" - "adhan" - "adultery" - "advice-request" - "age" - "ahl-ul-bayt" - "ahlul-hadeeth" - "ahlul-kitab" - "ahlul-rai" - "ahmadiyya" - "aisha" - "ajarh-wa-tadeel" - "akhirah" - "alcohol" - "ali" - "allah" - "animals" - "apostasy" - "appearance" - "aqeedah" - "aqeeqah" - "arab" - "arabic" - "arabic-translation" - "art" - "ashura" - "asma-ul-husna" - "assets" - "atheism" - "atheists" - "attendance" - "attractive" - "authenticity" - "authority" - "ayah" - "azadari" - "bani-israel" - "banking" - "barzakh" - "battle-of-jamal" - "battles" - "bay-al-dayn" - "beard" - "belief" - "benefits" - "betray" - "bible" - "bidah" - "bohra" - "books" - "boys-girls" - "breaking-fast" - "brotherhood" - "burial" - "burn" - "business" - "calamity" - "caliph" - "chance" - "changing-religion" - "charity" - "cheating" - "child-adoption" - "children" - "choose-mate" - "christian-catholic" - "christianity" - "circumcision" - "clarification" - "clothing" - "color" - "combining-prayers" - "commendable-act" - "comparative-islam" - "concentrate" - "contribution" - "conversion" - "convert" - "covenant" - "creation" - "creatures" - "culture" - "dajjal" - "darood" - "dates" - "dawah" - "day-of-judgement" - "death" - "debt" - "deed" - "defector" - "definitions" - "democracy" - "destiny" - "devil" - "dhabihah" - "dhikr" - "difference" - "digital-files" - "disasters" - "divorce" - "dogs" - "doomsday" - "drawing" - "dream" - "dua" - "duties" - "dye" - "earth" - "edit" - "education" - "eid" - "eid-ul-adha" - "electronic-device" - "enemy" - "english" - "eschatology" - "ethics" - "evil-eye" - "evolution" - "eyebrow" - "fajr" - "family" - "faqih" - "fard" - "fatima-zahra" - "fatwa" - "finance" - "fiqh" - "fitrah" - "five-pillars" - "food" - "football" - "forbidden" - "forgiveness" - "free-will" - "freedom-of-belief" - "friends" - "future" - "gambling" - "game" - "ghiba" - "ghusl" - "girl" - "government" - "grave" - "greetings" - "hadd" - "hadith" - "hadith-interpretation" - "hair" - "haj" - "hajj" - "halal" - "halal-consumer" - "halal-haram" - "hanafi" - "haram" - "haram-halal" - "health" - "hell" - "hijab" - "history" - "hit" - "hojjat" - "holidays" - "homosexual" - "homosexuality" - "honorifics" - "houri" - "hudud" - "human-rights" - "husband" - "husband-wife" - "husbands-child" - "hussain" - "hussein" - "ibadah" - "ibadat" - "ibadi" - "iddah" - "iftar" - "ihram" - "ijma" - "ijtihad" - "ilm-al-ghaib" - "ilm-mustalah-al-hadith" - "imaan" - "image" - "imam-al-jamaah" - "imam-khatib" - "imam-mahdi" - "imam-sadiq" - "imamah" - "infallability" - "infallible" - "inheritance" - "insurance" - "investment" - "irfan" - "islam-for-beginners" - "islamic-basis" - "islamic-countries" - "islamic-events" - "islamic-government" - "islamic-philosophy" - "islamic-ruling" - "islamic-scholar" - "istikharah" - "istinja" - "istiska" - "jamaat" - "jannah" - "jihad" - "jin" - "jinn" - "jizya" - "judaism" - "judgements" - "jumuah" - "kaabah" - "karrar" - "khatam-annabiyyin" - "khawarij" - "khilafah" - "khitan" - "khutbah" - "kissing" - "kissing-children" - "kuffar" - "kufr" - "lanat" - "language" - "last-sermon" - "lawful" - "laylat-al-qadr" - "learning" - "life" - "loan" - "logo" - "looking" - "love" - "madhab" - "madhhab" - "mahdi" - "mahram" - "make-up" - "makrooh" - "makruh" - "malaikah" - "maliki" - "mankind" - "masjid" - "masjid-al-haram" - "meaning" - "meat" - "medical" - "mehr" - "men" - "men-women" - "menses" - "messengers" - "miracles" - "miraculous-healing" - "miraj" - "mistake" - "moaneqah" - "modesty" - "money" - "morality" - "mortgage" - "mosafeha" - "mourning" - "movies" - "muftirat" - "mumin" - "munafiq" - "mushaf" - "music" - "muslim" - "muslim-practices" - "mustache" - "mythology" - "nafl" - "nahjul-balagha" - "names" - "naming" - "narration" - "narrator" - "naskh" - "nature" - "nazar" - "necessity" - "needy" - "newborn" - "nikah" - "nikah-al-mutah" - "nisab" - "niyah" - "niyat" - "non-islamic-state" - "non-mahram" - "non-muslim" - "non-muslim-countries" - "oaths" - "obligation" - "old-women" - "order-of-revelation" - "ornaments" - "orphan" - "other-religions" - "othman" - "oxygen-shots" - "parables" - "parent" - "people" - "permissible" - "pets" - "photos" - "phrase" - "piracy" - "pirate" - "politics" - "polygamy" - "pork" - "practical-islam" - "prayer-time" - "prayer-timings" - "precaution-timetable" - "predestination" - "previous-scriptures" - "profession" - "property" - "prophecy" - "prophet-adam" - "prophet-character" - "prophet-dawud" - "prophet-ibrahim" - "prophet-isa" - "prophet-life" - "prophet-light" - "prophet-muhammad" - "prophet-sulayman" - "prophet-yaqub" - "prophet-yusuf" - "prophets" - "prostration" - "punishment" - "qadr" - "qiblah" - "qiraat" - "quran" - "quran-ayat" - "quran-memorization" - "quran-only" - "quran-recitation" - "quran-translation" - "quran-verse" - "quranic-events" - "rafay" - "ramadan" - "rashidi-caliphs" - "rasul" - "reading-quran" - "reciting" - "reference-request" - "relationships" - "religion" - "removing" - "rent" - "respect" - "resurrection" - "revelation" - "reward" - "riba" - "ritual" - "rulers" - "sacrifice" - "sadaqah" - "sadqa-fitr" - "sahaba" - "sahih-bukhari" - "sahih-muslim" - "sajda" - "sajdah" - "sajdeh-sahv" - "sal" - "salafi" - "salary" - "salat" - "salat-al-qasr" - "salat-qada" - "salawat" - "sawm" - "sayyid" - "scholars" - "science" - "scientific-proof" - "scripture" - "seafood" - "sects" - "secular" - "seeing-talking" - "seerah" - "self-purification" - "sex" - "shafaah" - "shafii" - "shahadah" - "shaitan" - "shaking-hands" - "sharia" - "shaving" - "shayatin" - "shia-imam" - "shia-ismaili" - "shia-sunni" - "shiism" - "shirk" - "shorts" - "shrine" - "sick" - "sihah-sittah" - "sihr" - "sin" - "sin-or-not" - "singing" - "slavery" - "slogan" - "smoking" - "soldier" - "soul" - "source-identification" - "spend" - "sports" - "straight-path" - "successor" - "sufism" - "suicide" - "sunan-abi-dawud" - "sunan-an-nasai" - "sunnah" - "sunnah-hadith" - "sunni" - "surah" - "surat-ad-dhariyat" - "surat-al-ahzab" - "surat-al-alaq" - "surat-al-anam" - "surat-al-anbiya" - "surat-al-araf" - "surat-al-asr" - "surat-al-baqarah" - "surat-al-fath" - "surat-al-fatihah" - "surat-al-ghafir" - "surat-al-hadid" - "surat-al-hajj" - "surat-al-hashr" - "surat-al-isra" - "surat-al-kafirun" - "surat-al-kahf" - "surat-al-kawthar" - "surat-al-maarij" - "surat-al-maidah" - "surat-al-mujadilah" - "surat-al-qamar" - "surat-al-qasas" - "surat-al-qiyamah" - "surat-al-waqiah" - "surat-ali-imran" - "surat-an-naml" - "surat-an-nas" - "surat-an-nisa" - "surat-an-noor" - "surat-ar-rahman" - "surat-as-shuraa" - "surat-at-tahreem" - "surat-at-tawbah" - "surat-at-tin" - "surat-az-zumar" - "surat-fussilat" - "surat-maryam" - "surat-nuh" - "surat-qaf" - "surat-saad" - "surat-ta-ha" - "surat-yasin" - "surat-yusuf" - "swearing" - "symbolism" - "tafseer" - "tahajjud" - "taharah" - "tajweed" - "talaq" - "tamiz" - "taqiyya" - "taqlid" - "taraweeh" - "tashahud" - "tawassul" - "tawba" - "tawheed" - "tawiz" - "technology" - "terminology" - "the-last-prophet" - "theft" - "theology" - "time" - "tirmidhi" - "title" - "tombs" - "torah" - "trading" - "tradition" - "translation" - "travelling" - "trust" - "tv" - "udhiyyah" - "uloom-al-hadith" - "umrah" - "undotted-sermon" - "unity" - "universe" - "untagged" - "usool-ul-fiqh" - "validity" - "verification" - "verses" - "violence" - "wahhabism" - "wajib" - "walimah" - "war" - "watching" - "wearing" - "wedding" - "wife" - "without-veil" - "witness" - "wives-of-the-prophet" - "women" - "worship" - "wudu" - "yajooj-and-majooj" - "yaseen-meaning" - "yawm-al-qiyamah" - "yazid" - "zakat" - "zamzam" - "zina") diff --git a/data/tags/italian.el b/data/tags/italian.el deleted file mode 100644 index 5dd73ac..0000000 --- a/data/tags/italian.el +++ /dev/null @@ -1,73 +0,0 @@ -("abbreviations" - "accents" - "adjectives" - "adverbs" - "agreement" - "apocope" - "articles" - "auxiliary-verb" - "borrowing" - "capitalization" - "comparison" - "compounds" - "conditional-mood" - "conjunctions" - "difference" - "english-comparison" - "etymology" - "exclamations" - "expression" - "foreign-words" - "formal" - "gender" - "gestures" - "grammar" - "grammatical-number" - "history" - "homograph" - "hypernym" - "idioms" - "infinitive" - "interchangeable" - "interjections" - "latin" - "letters" - "list" - "meaning" - "name" - "negation" - "nouns" - "numbers" - "orthography" - "past-participle" - "past-tense" - "phrase-choice" - "phrase-request" - "plural" - "prepositions" - "present-participle" - "pronouns" - "pronunciation" - "proper-nouns" - "proverbs" - "punctuation" - "regional" - "resources" - "sentences" - "single-words" - "sound" - "spelling" - "subjunctive-mood" - "suffix" - "synonym" - "tenses" - "translation" - "typography" - "usage" - "verbs" - "vocabulary" - "word-choice" - "word-meaning" - "word-order" - "word-usage" - "writing") diff --git a/data/tags/ja.stackoverflow.el b/data/tags/ja.stackoverflow.el deleted file mode 100644 index 6ae1e97..0000000 --- a/data/tags/ja.stackoverflow.el +++ /dev/null @@ -1,324 +0,0 @@ -(".netframework" - "activerecord" - "algorithm" - "android" - "android-animation" - "android-listfragment" - "android-studio" - "android-volley" - "angularjs" - "annotations" - "apache" - "api" - "apk-expansion-files" - "apple" - "applicationinsights" - "appstore-approval" - "apt" - "arrayaccess" - "arrayiterator" - "artificial-intelligence" - "asp.net" - "authoring" - "autolayout" - "autovalue" - "aws" - "aws-s3" - "azure" - "bash" - "benchmark" - "binary" - "bitbucket" - "bitmap" - "bluetooth" - "bluez" - "bootstrap" - "browserify" - "bsh" - "build" - "bundler" - "c" - "c#" - "c++" - "c++11" - "cakephp" - "callback" - "capistrano" - "casperjs" - "centos" - "chef" - "chef-solo" - "chrome" - "clojure" - "cocoapods" - "cocos2d-x" - "coffeescript" - "commit" - "common-lisp" - "compiler" - "composer" - "cordova" - "css" - "cssフィルタ" - "csv" - "debian" - "decode" - "delegate" - "dht" - "diff" - "docker" - "easter-eggs" - "eclipse" - "edinet" - "elisp" - "elixir" - "emacs" - "erlang" - "f#" - "facebook" - "facebook-graph-api" - "faye" - "filezilla" - "finder" - "firefox" - "flask" - "flask-mobility" - "font" - "fortran" - "fql" - "framework" - "frisby.js" - "gameobject" - "gc" - "gem" - "ghost" - "git" - "git-svn" - "github" - "gmail" - "gmaps.js" - "gnu-apl" - "go" - "google-app-engine" - "google-chrome" - "google-chrome-apps" - "google-chrome-devtools" - "google-maps" - "google-play" - "google-play-service" - "gradle" - "grape" - "grep" - "gstreamer" - "guava" - "gulp" - "hadoop" - "haskell" - "hotspot" - "html" - "html-agility-pack" - "html5" - "ibeacon" - "imagemagick" - "imageset" - "intellij-idea" - "internet-explorer" - "internet-explorer-10" - "internet-explorer-11" - "ios" - "ios-simulator" - "ios6" - "iphone" - "iron-router" - "iterm" - "java" - "java6" - "java8" - "javadoc" - "javascript" - "jenkins" - "jquery" - "jsfiddle" - "jshint" - "jslint" - "json" - "jvm" - "kde" - "laravel" - "latex" - "linux" - "lisp" - "listbox" - "lldb" - "lwf" - "mac" - "markdown" - "material-design" - "maven" - "memory" - "meteor" - "mfc" - "microbenchmark" - "middleman" - "milkcocoa" - "misra" - "mmdrawercontroller" - "mocha" - "mock" - "monitoring" - "mp3" - "ms-access" - "mvc" - "mysql" - "network" - "nginx" - "node-webkit" - "node.js" - "nohup" - "notification" - "npm" - "oauth" - "objective-c" - "ocaml" - "open" - "opencv" - "opengl-es" - "openoffice.org" - "oracle" - "oracle-cdc" - "os-x" - "pandoc" - "parallax" - "parallel-extractor" - "parse.com" - "pdf" - "perl" - "photoshop" - "php" - "physx" - "pipe" - "playframework" - "postfix" - "postgresql" - "postscript" - "processing" - "processing.js" - "prolog" - "promise" - "pry" - "push-notification" - "putty" - "pygments" - "python" - "qt5" - "quartz" - "r" - "raspberry-pi" - "razor" - "rbenv" - "reactiveprogramming" - "redis" - "regex" - "rest" - "restructuredtext" - "rexml" - "rhino" - "riak" - "rspec" - "ruby" - "rubyonrails" - "rust" - "rvm" - "rxandroid" - "sails.js" - "samba" - "sass" - "scala" - "scheme" - "scrollview" - "security" - "sed" - "sendmail" - "settimeout" - "sh" - "shared-element-transition" - "sharepoint" - "sinatra" - "sinon" - "socket" - "softkey" - "sort" - "source-code" - "spa" - "spark" - "sphinx" - "spookyjs" - "sql" - "sqlalchemy" - "sqlite" - "sqlsever" - "ssh" - "stackedit" - "stdin" - "storyboard" - "sublimetext" - "svg" - "svn" - "swift" - "symfony2" - "syntax-highlighting" - "syslog" - "tableview" - "testing" - "tig" - "tmlib.js" - "transpiler" - "tungsten-replicator" - "ugui" - "uinavigationcontroller" - "uitableview" - "unicode" - "unicorn" - "unity3d" - "vagrant" - "vbs" - "vhdl" - "video" - "vim" - "virtualbox" - "visualstudio" - "vmware-fusion" - "web-audio" - "weblogic" - "webpack" - "websocket" - "websom" - "webview" - "wicket" - "windows" - "windows-store-apps" - "word2vec" - "xamarin" - "xamarin.forms" - "xbrl" - "xcode" - "xcode-bots" - "xcode6" - "xib" - "xml" - "xpath" - "youtube-data-api" - "yum" - "zsh" - "zurb-foundation" - "テキストファイル" - "デプロイ" - "データベース移行" - "ドメイン駆動設計" - "ヌルポインタ" - "ポインタ" - "ライセンス" - "文字化け" - "日本語" - "正規表現" - "自然言語処理") diff --git a/data/tags/japanese.el b/data/tags/japanese.el deleted file mode 100644 index 01fdfa5..0000000 --- a/data/tags/japanese.el +++ /dev/null @@ -1,236 +0,0 @@ -("abbreviations" - "adjectives" - "adverbs" - "ainu" - "alphabetical-order" - "ambiguity" - "analysis" - "animals" - "anime" - "archaic" - "aspect" - "ateji" - "auxiliaries" - "bikago" - "business-japanese" - "calligraphy" - "causative" - "child-speech" - "chinese" - "classical-japanese" - "clause-pattern" - "collocations" - "colloquial" - "colours" - "comparative-constructions" - "comparative-linguistics" - "composition" - "compound-verbs" - "compounds" - "comprehension" - "computing" - "conditionals" - "conjugations" - "conjunctions" - "contractions" - "coordination" - "copula" - "counter-words" - "culture" - "definitions" - "deictic" - "demonstratives" - "demonyms" - "derivational-morphology" - "dialects" - "dictionary" - "diminutive" - "direction" - "ellipsis" - "email" - "english-to-japanese" - "etymology" - "expression" - "false-etymology" - "feminine-speech" - "first-person-pronoun" - "folklore" - "food" - "formal-noun" - "formality" - "formation" - "furigana" - "future" - "gaiji" - "gemination" - "gender" - "genkoyoshi" - "giving-and-receiving" - "godan-verbs" - "grammar" - "greetings" - "handwriting" - "head-internal-relatives" - "hentaigana" - "hiragana" - "history" - "homework" - "homonyms" - "homophonic-kanji" - "honorifics" - "i-adjectives" - "ichidan-verbs" - "idioms" - "imperatives" - "information-structure" - "input-method" - "interjections" - "internet-slang" - "interrogatives" - "intonation" - "intransitive" - "invitation" - "irregularities-exceptions" - "japanese-numbers" - "jargon" - "jlpt" - "joyo-kanji" - "kana" - "kana-usage" - "kanji" - "kanji-choice" - "kansai-ben" - "katakana" - "keigo" - "kosoado" - "kyūjitai-and-shinjitai" - "language-change" - "language-reform" - "learning" - "linguistics" - "listening" - "loanwords" - "long-vowels" - "manga" - "manyogana" - "mathematics" - "meaning" - "metaphor" - "mnemonics" - "modality" - "morae" - "morphology" - "music" - "na-adjectives" - "name" - "negative-forms" - "ni-and-de" - "nominalisation" - "nouns" - "nuances" - "numbers" - "obsolete-kana" - "offensive-words" - "okinawan" - "okurigana" - "onomatopoeia" - "orthography" - "parsing" - "part-of-speech" - "particle-de" - "particle-e" - "particle-ga" - "particle-ka" - "particle-kara" - "particle-mo" - "particle-na" - "particle-ni" - "particle-no" - "particle-to" - "particle-tte" - "particle-wa" - "particle-wo" - "particle-yori" - "particles" - "passive" - "past" - "perspective" - "phonetics" - "phonology" - "phonotactics" - "phrase" - "phrase-requests" - "pitch-accent" - "plurals" - "poetry" - "polarity-items" - "politeness" - "potential-form" - "practical" - "pragmatics" - "programming" - "pronouns" - "pronunciation" - "publishing" - "punctuation" - "puns" - "questions" - "quotes" - "radicals" - "readings" - "reduplication" - "register" - "relative-clause" - "rendaku" - "renyōkei" - "resources" - "respect" - "rhetoric" - "romaji" - "second-person-pronoun" - "sentence-final-particles" - "set-phrases" - "single-word-requests" - "slang" - "song-lyric" - "sound-symbolism" - "spelling" - "spoken-language" - "stroke-count" - "stroke-order" - "stroke-type" - "subject" - "subsidiary-verbs" - "suffixes" - "symbols" - "synonyms" - "syntax" - "tag-question" - "tai-form" - "taxis" - "te-form" - "tense" - "terminology" - "time" - "topic" - "transcription" - "transitive" - "translation" - "typesetting" - "usage" - "verbs" - "vocabulary" - "volitional" - "vowels" - "wa-and-ga" - "wasei-eigo" - "website" - "word-choice" - "word-order" - "word-usage" - "words" - "writing" - "writing-identification" - "written-conventions" - "yoji-jukugo" - "zero-particle") diff --git a/data/tags/joomla.el b/data/tags/joomla.el deleted file mode 100644 index 29810d1..0000000 --- a/data/tags/joomla.el +++ /dev/null @@ -1,234 +0,0 @@ -(".htaccess-configuration" - "access" - "account" - "account-password" - "acl" - "active" - "administration" - "administrator" - "ajax" - "akeebabackup" - "alias" - "angularjs" - "apache" - "article-manager" - "articles" - "authentication" - "autoload" - "backups" - "batch" - "bootstrap" - "browser" - "browser-detection" - "bug-testing" - "bugs" - "cache" - "cck" - "chronoforms" - "client" - "cms" - "cms-testing" - "com-ajax" - "com-banners" - "com-content" - "com-plugins" - "commercial" - "component" - "compression" - "configuration" - "content" - "content-filtering" - "cookies" - "cors" - "css" - "curl" - "custom-action" - "custom-module" - "database" - "date" - "debug" - "default" - "development" - "directory" - "download" - "e-commerce" - "editing" - "editor" - "email-template" - "emails" - "error-handling" - "error-reporting" - "extension-request" - "extensions" - "external-script" - "facebook" - "features" - "fields" - "file-permissions" - "file-upload" - "fix-my-code" - "fof" - "fonts" - "form" - "form-fields-types" - "format" - "front-end" - "gantry" - "git" - "github" - "global-configuration" - "google-analytics" - "google-maps" - "gpl" - "header" - "id" - "iis" - "images" - "installation" - "integer" - "itemid" - "javascript" - "jce" - "jdatabase" - "jdate" - "jdocument" - "jed" - "jerror" - "jevents" - "jfactory" - "jform" - "jhtml" - "jinput" - "jlayout" - "jmail" - "jmodel" - "jmodulehelper" - "jomsocial" - "joomdle" - "joomla-1.5" - "joomla-1.7" - "joomla-2.5" - "joomla-3.2" - "joomla-3.3.x" - "joomla-3.4" - "joomla-3.x" - "joomla-api" - "joomla-framework-1.x" - "joomla-user-groups" - "jquery" - "jrequest" - "jroute" - "jsession" - "k2" - "k2store" - "kunena" - "language" - "layout" - "linux" - "localhost" - "login" - "mainframe" - "maintenance" - "markdown" - "media-manager" - "memory" - "menu" - "menu-item" - "menu-parameters" - "metadata" - "microdata" - "migration" - "mobile-web-design" - "mod-languages" - "modal" - "model" - "module" - "module-display" - "module-manager" - "module-params" - "module-position" - "module-statement" - "module-style" - "moodle" - "mootools" - "multilingual" - "multiple-instances" - "mvc" - "mysql" - "navigation" - "nginx" - "offline-page" - "one-click-updates" - "overrides" - "packaging" - "pagination" - "parent" - "performance" - "permissions" - "phocagallery" - "php" - "phpmailer" - "phpmyadmin" - "plugin" - "positions" - "postgresql" - "profile" - "recommended-practices" - "redirect" - "redmigrator" - "registration" - "responsive-web-design" - "retina" - "rsform" - "rss" - "search" - "seblod" - "security" - "sef" - "seo" - "server" - "server-response-time" - "session" - "sh404sef" - "smartsearch" - "smtp" - "software-architecture" - "sql" - "statistics" - "styling" - "subcategories" - "subscriptions" - "super-user" - "t3-framework" - "tags" - "template-framework" - "template-manager" - "template-override" - "templates" - "tinymce" - "translation" - "trigger" - "troubleshooting" - "twitter-bootstrap-2" - "twitter-bootstrap-3" - "untagged" - "update" - "upgrade" - "url" - "user" - "user-groups" - "validations" - "variable" - "versions" - "view" - "virtualhost" - "virtuemart" - "wampserver" - "weblinks" - "widgetkit" - "wordpress" - "workflow" - "xampp" - "xmap" - "xml" - "zoo-cck") diff --git a/data/tags/judaism.el b/data/tags/judaism.el deleted file mode 100644 index acc661a..0000000 --- a/data/tags/judaism.el +++ /dev/null @@ -1,887 +0,0 @@ -("15th-of-av" - "abraham" - "abraham-isaac-kook" - "acharonim" - "achrei-mos" - "acronyms" - "adam" - "adar" - "adult-learning" - "afterlife" - "agada-stories-legends" - "age" - "agriculture" - "aguna" - "ahavat-hashem" - "ahavat-yisrael" - "aishes-chayil" - "al-hanissim" - "alacrity-for-mitzvot" - "alef-beit" - "aleinu-leshabeiach" - "aleph-bet-letters" - "aliya-laaretz" - "allegory-mashal" - "am-yisrael-jewish-nation" - "amalek" - "amen" - "amoroim" - "androgynous" - "animals" - "anthropomorphism" - "anti-semitism" - "apocrypha" - "appliances" - "arabic" - "aramaic" - "arayot" - "archaeology" - "architecture-design" - "arizal" - "ark-aron-kodesh" - "army-military-war" - "arriving-late" - "art" - "artificial-intelligence" - "artscroll" - "aruch-hashulchan" - "aseres-hadibros" - "aseres-yemei-teshuva" - "asher-yatzar" - "ashkenazi" - "astronomy" - "authorship" - "avodah-zarah" - "avot-drav-natan" - "avot-patriarch-fathers" - "ayin-hara-evil-eye" - "baal-teshuva" - "baby-infant" - "babylonian-exile" - "bal-tashchit-waste" - "bal-tosif-no-adding" - "baltimore" - "bamidbar-numbers-book-of" - "bamidbar-parsha" - "bar-bas-bat-mitzvah" - "bar-kochba" - "bartenura" - "bathroom" - "bava-batra" - "bava-kamma" - "bava-metzia" - "beard" - "beauty" - "bechor-firstborn" - "bechukosai" - "bedikas-chametz" - "behaalotcha-parsha" - "behar" - "bein-adam-lachavero" - "bein-adam-lamakom" - "beis-hamikdash" - "beis-hillel" - "beis-shammai" - "beit-din-court" - "bentching" - "beshalach" - "bet-midrash" - "bigdei-kehunah" - "bikkurim-first-fruits" - "bilam" - "binding-of-isaac" - "biography" - "bircas-krias-shema" - "birchas-kohanim" - "birchos-hatorah" - "birds" - "bishul-akum" - "bitul-batel-null" - "black-hats" - "blessing" - "blood" - "bo" - "boneh-soter" - "book-banning" - "book-of-chronicles" - "book-of-ruth" - "books-generally" - "borer-separating" - "borrer" - "borrowing" - "bowing-kneeling" - "bread" - "breslov" - "brisk" - "brit-milah" - "bugs" - "business" - "calculation" - "calendar" - "candle-lighting" - "cannibalism" - "capital-punishment" - "cemetery-grave" - "chabad" - "chagim-holidays" - "chalav-yisrael-jewishmilk" - "challah-shabbat-bread" - "chametz-leaven" - "chanuka" - "chasidut-hasidism" - "chassidic-rebbe" - "chatzitzah" - "chatzos" - "chazaka" - "chazal" - "chazon-ish" - "chazzan-prayer-leader" - "chelev" - "cherem" - "chesed-kindness" - "chiddush" - "children-parenting" - "chilul-kidush-hashem" - "chinuch-education" - "chol-hamoed" - "chol-weekday" - "choleh-sick" - "choshen-mishpat-civil-law" - "chovel-umazik" - "christianity" - "chukas" - "chulin-tractate" - "churban-destruction" - "chutz-laaretz" - "cities" - "city-of-refuge" - "cleaning" - "clothing" - "code-cipher-cryptogram" - "college-university-school" - "color" - "commentaries" - "commerce" - "communities" - "conditional-stipulation" - "conservative-judaism" - "cooking-bishul" - "creation" - "criminal-procedure" - "current-events" - "curse" - "daas-torah" - "daf-yomi" - "dairy" - "dance" - "danger" - "daniel-book-of" - "daytime" - "deaf" - "death" - "demography" - "deorayta" - "derabanan" - "derech-eretz-manners" - "deuteronomy" - "devorim" - "dictionary" - "dina-dmalchusa-dina" - "disposal" - "divorce" - "dor-hamidbar" - "dream" - "drush" - "eating" - "edim-witnesses" - "eggs" - "egypt" - "ekev" - "electricity" - "elisha" - "eliyahu-hanavi" - "elul" - "embarrassment" - "emes-truth-honesty" - "employment" - "engagement-shidduch" - "english" - "environment" - "eretz-yisrael" - "erev-shabbat" - "eruv-chatzerot" - "eruv-tavshilin" - "eruv-techumin" - "estates-inheritance" - "esther--the-woman" - "ethiopian-beta-israel" - "etymology" - "eve-chava" - "evening-night" - "evil-inclination" - "evil-resha" - "ezekiel--the-book" - "ezra-nechemya" - "face" - "faith-bitachon-emunah" - "family-members" - "fast-days" - "fire-burning" - "fish" - "food" - "fool" - "forgiving-mechilah" - "four-cups-wine" - "four-parshiot" - "four-sons" - "free-will-bechira" - "friendship" - "fruits" - "funeral-burial-levaya" - "gabbai" - "gambling" - "games-toys" - "gan-eden" - "gebrochts" - "gedolim" - "gehinnom" - "gematria-numerology" - "genealogy" - "genizah-storage" - "gentiles" - "geography" - "geonim" - "gerut-conversion" - "gezel-stealing" - "gifts" - "glass" - "gold" - "golden-calf-egel" - "golus-exile" - "grama" - "grammar-dikduk" - "grapes-wine" - "gravestone-inscription" - "haazinu" - "hacham-ovadia-yosef" - "hachana-prep-for-weekday" - "hachnasat-orchim-guests" - "haftarah" - "hagbah" - "haggai" - "hagomel" - "hair" - "hair-covering" - "hakaras-hatov" - "halacha" - "halacha-theory" - "hallel" - "haman" - "hamotzi-beracha" - "hanaah-benefit" - "handedness" - "handicap-disabled-impair" - "hands-fingers" - "har-sinai" - "hashgacha-pratit" - "hashkafah-philosophy" - "hasidic-story" - "hats" - "havdalah" - "head" - "health-safety-shmira" - "hearing" - "heaven" - "hebrew" - "hechsher-certification" - "hefsek-interruption" - "hekdesh" - "heresy" - "heterodox" - "high-holidays" - "hillel" - "historical-figures" - "history" - "holocaust-shoah" - "holy-objects" - "home-house" - "honey" - "honors" - "hosea-hoshea" - "hoshana-rabbah" - "hotzaa-carrying-reshuyot" - "how-to" - "hukot-hagoyim" - "humble" - "humor" - "ikarim" - "imahot-matriarch-mothers" - "injury" - "inspection" - "intellectual-property" - "intent-accident-purposely" - "intermarriage" - "internet" - "intoxication" - "inuy-affliction" - "invalid-pasul" - "isaiah-yeshaya-the-book" - "islam" - "israel-defense-forces" - "issur-vheter" - "jewelry" - "jewish-books" - "jewish-date-series" - "job-iyov-book-of" - "joke" - "joshua--book-of" - "judah" - "kabbalat-hatorah" - "kabbalat-shabbat" - "kaddish" - "kaparah-atonement" - "kaparot" - "karet" - "kashering-kosherization" - "kashrut-kosher" - "kavana-concentration" - "kavana-intent" - "kavod" - "kedusha-holiness" - "kedusha-prayer" - "keilim" - "keilim-purity" - "kerovim-close-relatives" - "ketubah" - "ketuvim" - "ki-tavo" - "ki-teitzei" - "kibbud-av-veim-honoring" - "kiddush" - "kiddush-cup" - "kiddush-hachodesh" - "kiddush-levanah" - "kiddushin-eirusin" - "kilayim-forbidden-mixture" - "king-david" - "king-solomon" - "kippa-yarmulka" - "kiruv-outreach" - "kissing" - "kitniyos-semigrain-legume" - "kittel" - "kneading-lash" - "kodesh-kodoshim" - "kohelet" - "kohen-godol" - "kohen-priest" - "kol-isha" - "kol-mikadesh" - "korban" - "korbanos-ketores-prayers" - "kotel-western-wall" - "lag-ba-omer" - "laining" - "lamentations-eicha" - "language" - "lashon-hara-slander" - "latid-lavo-future" - "legal-documents" - "leil-shabbat" - "leket-shichecha-peah" - "lending-interest-ribbis" - "leniencies" - "levites-leviyim" - "lifnei-iver" - "lighting" - "liquor-beer" - "literature" - "lo-yilbash" - "lomdus" - "loshon-hara" - "lost-and-found" - "loud-quiet" - "love" - "lulav-etrog-arba-minim" - "maakeh" - "maariv" - "maaser-tithes" - "mabul" - "machlokes" - "machzor-vitry" - "maftir" - "maharal" - "mail" - "makeh-befatish" - "makom-kavuah" - "malach-angel" - "malchut-royalty" - "mamzer" - "marit-ayin" - "marriage" - "marror-bitter-herbs" - "martyr" - "maseches-eruvin" - "maseches-gitin" - "maseches-kesubos" - "maseches-kiddushin" - "maseches-makos" - "maseches-menachos" - "maseches-pesachim" - "maseches-rosh-hashana" - "maseches-sanhedrin" - "maseches-shabbos" - "maseches-tamid" - "masechet-berachot" - "masechet-moed-katan" - "masechet-shevuot" - "masechet-sukkah" - "masechet-taanis" - "masechet-yevamot" - "masechet-yoma" - "masecheth-avodah-zarah" - "masei" - "mathematics" - "matrilineal-descent" - "mattos" - "matzah" - "meal-seudah" - "meat" - "meat-and-milk" - "mechitza-partition" - "medicine" - "megillah" - "megillat-esther" - "melacha-creative-work" - "melacha-erasing" - "melachim-kings-book-of" - "melchizedek" - "memory" - "men-male" - "menora-chanukia" - "menorah--in-temple" - "meraglim-spies" - "mesorah-tradition" - "messiah" - "messianism" - "mezonot-beracha" - "mezuzah" - "mi-yodeya-series" - "micah" - "middos-character-traits" - "midrash" - "miketz" - "mikvah-ritual-bath" - "mincha-afternoon-prayer" - "mincha-meal-offering" - "minhag" - "minor-katan-child" - "minyan" - "mir" - "miracle" - "miriam" - "mishkan-tabernacle" - "mishlei" - "mishloach-manot" - "mishna" - "mishnah-berurah" - "mishpatim" - "misnaged" - "mistakes" - "mitzvah" - "moav-moab" - "modern-times" - "molad" - "mon-manna" - "money" - "months" - "moon" - "morning-day" - "moshe-feinstein" - "moshe-rabbeinu" - "motzei-shabbos" - "motzi-yedei-chovato" - "mourning-aveilus" - "muktzeh" - "murder" - "musaf" - "mushrooms" - "music" - "mussar-ethics" - "mysticism-kabbalah" - "myths" - "nail-cutting" - "names" - "natural-phenomenon" - "navi-prophets" - "nedarim-shevuot" - "nefesh-hachaim" - "negia" - "nekama-netira" - "netilat-yadayim-washing" - "nevua-prophecy" - "niddah" - "nidui-ostracism" - "nine-days" - "nissan" - "noach-noah-the-man" - "noachide-laws" - "noahidism" - "non-jewish-holidays" - "non-kosher-species" - "non-rabbinic-judaism" - "northern-kingdom" - "nozir" - "number" - "nusach-ari" - "nusach-ashkenaz" - "nusach-edot-hammizrach" - "nusach-sefard" - "nuschaot" - "oaths" - "oil" - "olam-haba-world-to-come" - "oneg-shabbat" - "opening-the-ark" - "oral-torah" - "organizations" - "orla-revai" - "orthodox" - "outer-space" - "parah-adumah" - "parashas-emor" - "parashas-kedoshim" - "parashas-shemos" - "parashas-shoftim" - "parashas-yisro" - "parashat-balak" - "parashat-bereishit" - "parashat-chaye-sara" - "parashat-ki-tisa" - "parashat-lech-lecha" - "parashat-metzora" - "parashat-nitzavim" - "parashat-noach" - "parashat-reeh" - "parashat-shelach" - "parashat-shemini" - "parashat-tazria" - "parashat-teruma" - "parashat-toldot" - "parashat-vayeishev" - "parashat-vayikra" - "parashat-vezot-habracha" - "pardes" - "parnassah-livelihood" - "parsha-torah-portion" - "parshanut-theory" - "parshanut-torah-comment" - "parshat-acharei-mot" - "parshat-korach" - "parshat-nasso" - "parshat-zachor" - "parties-celebrations" - "parts-of-the-body" - "passover" - "passover-seder-hagada" - "pat-yisrael" - "payot-sideburns" - "pekudei" - "pentateuch-chumash" - "performance-entertainment" - "personal-hygiene" - "pesukei-dezimra" - "petur-exemption" - "phone" - "pictures" - "pidyon-haben" - "pidyon-shvuyim-prisoners" - "pikuachnefesh-danger-life" - "pinchas" - "pirke-avot-ethicsof" - "plagues-makkos" - "police-authorities" - "politics-government" - "polygamy" - "popular-culture" - "posek-psak-decisor-ruling" - "poultry" - "practical-kabbalah" - "prayer-book" - "pregnancy-birth" - "princes-of-tribes" - "priorities" - "product-recommendation" - "pronunciation" - "proof-of-torah" - "prophecies" - "protective-casing" - "provenance" - "psych-mentalhealth" - "public-policy" - "publications" - "purim" - "purim-torah-in-jest" - "quotations" - "rabbeinu-asher" - "rabbeinu-tam" - "rabbeinu-yonah" - "rabbi-akiva-ben-yosef" - "rabbi-yehudah-hechasid" - "rabbis" - "rachel-imenu" - "rambam" - "ramban" - "ramchal" - "rashi" - "rationalism" - "real-estate" - "rebbe-talmid-muvhak" - "rebuke-tochacha" - "recording" - "reform-judaism" - "religious-articles" - "rental" - "repentance-teshuvah" - "responsa" - "restaurant" - "resurrection-of-the-dead" - "reward-punishment" - "riddle" - "rif-rabbi-isaac-alfasi" - "rishonim" - "rodef" - "rosh-chodesh-new-month" - "rosh-hashanah-new-year" - "ruach-rah" - "saadya-gaon" - "sadducees" - "safek" - "safrus" - "salt" - "samson-raphael-hirsch" - "samuel-shmuel-book-of" - "satmar" - "schach" - "science" - "secular-culture" - "see-sight-vision-blind" - "sefer-torah" - "sefirat-ha-omer" - "segulah" - "selichot" - "selling-mechirat-chametz" - "semicha" - "separating-challah" - "sephardi-mizrachi-eastern" - "sexuality" - "shaatnez" - "shabbat" - "shabbat-songs" - "shabbetai-tzvi" - "shacharis-morning-prayer" - "shalom-peace" - "shaul" - "shaving" - "shavuos" - "shehecheyanu" - "sheidim-demons" - "sheker-false" - "shema" - "shemona-esrei" - "shemos-sacred-names" - "shemot-exodus" - "sheva-brachos" - "shevatim-12-tribes" - "shidduchim-dating" - "shiluach-haken" - "shimshon-samson" - "shinuy-deviation" - "shir-hashirim" - "shiurim-measurements" - "shlichus-agency" - "shmini-atzeres" - "shmita" - "shmuel--the-man" - "shnayim-mikra" - "shofar" - "shoftim--book-of" - "shomrim-bailees" - "shoteh-mental-incompetent" - "shovavim-tat" - "showering-bathing" - "shulchan-aruch" - "simchah-joy-happiness" - "simchat-torah" - "sin" - "site-policy" - "sitting-shiva" - "siyum" - "size" - "slaughter-shochet-shecht" - "slave-serve-eved-avadim" - "sleep" - "smell" - "snow" - "social-convention" - "social-media" - "sodom-ammorah" - "soloveitchik" - "song-poetry" - "sorcery-magic-kishuf" - "sotah-secluded-woman" - "soul" - "sources-mekorot" - "speech-talking" - "speeches-addresses" - "spelling-variants" - "sport-athletics" - "stackexchange" - "stam-yenam" - "standing-sitting" - "star-of-david" - "statistics" - "story-identification" - "stringency-chumrah" - "suicide" - "sukkah" - "sukkot" - "summer" - "superstition" - "swimming" - "symbols-symbology" - "synagogue" - "taamei-mitzvot-reasons" - "taanis-bechoros" - "tachanun" - "tallit-gadol" - "tallit-katan" - "talmud-bavli" - "talmud-gemara" - "talmud-yerushalmi" - "tamei-tahor-ritual-purity" - "tanach" - "tannaim" - "tanya" - "targum-onkelos" - "targum-translation" - "tashlich" - "tashlumin" - "taste" - "tattoo" - "taxes" - "techeles" - "technology" - "techum" - "teeth" - "tefilat-haderech" - "tefilin" - "tefilla" - "tefillah-betzibbur" - "tefillat-haderech" - "tehilim-psalms" - "teruma" - "tetzaveh" - "tevilas-keilim-dipping" - "text" - "theology" - "three-weeks" - "tikkun-chatzot" - "time" - "time-zone" - "tinok-she-nishba" - "tisha-bav" - "tishrei" - "tobacco-cig-smoking" - "torah-reading" - "torah-service" - "torah-study" - "torah-writing" - "torts-damages" - "tosafot" - "tosefta" - "tosfot" - "tractate-beitza" - "tractate-brachot" - "tractate-megillah" - "tractate-nazir" - "tractate-nedarim" - "tractate-peah" - "tractate-shekalim" - "tractate-sotah" - "transactions" - "transliteration" - "travel" - "trees" - "trop-cantillation" - "trust-neemanut" - "tu-bishvat" - "tur" - "twins" - "tying-knots-kosheir" - "tzaar-baalei-chayyim" - "tzaddikim" - "tzaraas-negaim" - "tzav" - "tzedakah-charity" - "tzibur-community" - "tzitzis" - "tznius-modesty" - "upsherin" - "va-eira" - "vaeschanan" - "vayakhel" - "vayechi" - "vayeitzei" - "vayelech" - "vayera" - "vayigash" - "vayishlach" - "vegetables" - "vehicles-transportation" - "viduy-confession" - "vilna-gaon" - "violence" - "voting" - "vowels-nekudot" - "water" - "weather" - "wedding" - "women" - "words" - "writing-printing" - "yahrtzeit" - "yashan-chadash" - "yayin-nesech" - "yekke" - "yemenite-temani" - "yerushalayim-jerusalem" - "yeshiva-school" - "yetziat-mitzrayim" - "yibbum-chalitza-levirate" - "yichud-seclusion" - "yiddish" - "yirat-shamaim" - "yirmiyahu--book-of" - "yisro--the-man" - "yizkor" - "yom-haatzmaut" - "yom-kippur" - "yom-kippur-katan" - "yom-shabbaton" - "yom-tov" - "yom-yerushalayim" - "yonah-jonah-book-of" - "yoreh-deah" - "yosef" - "yotzrot" - "yovel" - "zealotry" - "zecharia-book-of" - "zemanim" - "zephaniah" - "zeroa-lechayayim-keiva" - "zimun" - "zionism" - "zivug-sheini" - "zohar") diff --git a/data/tags/linguistics.el b/data/tags/linguistics.el deleted file mode 100644 index 1b67a90..0000000 --- a/data/tags/linguistics.el +++ /dev/null @@ -1,478 +0,0 @@ -("aave" - "accent" - "acoustic-analysis" - "acronyms" - "addressee" - "adjectives" - "adjuncts" - "adpositions" - "adverbs" - "affixes" - "affricates" - "african-languages" - "agglutination" - "agglutinative-languages" - "agreement" - "aktionsart" - "albanian" - "allophones" - "alphabets" - "altaic-hypothesis" - "ambiguity" - "american-english" - "american-languages" - "analysis" - "analytic-languages" - "ancient" - "animacy" - "ankara" - "annotation" - "antonymy" - "aorist" - "applied-linguistics" - "arabic" - "armenian" - "articles" - "articulation" - "asl" - "aspect" - "aspiration" - "assimilation" - "atr" - "australian-languages" - "auxiliary-verbs" - "backus-naur-form" - "basin" - "bilabial" - "bilingualism" - "binding-theory" - "body-language" - "borrowing" - "bosnian-croatian-serbian" - "branching" - "cantonese" - "cases" - "celtic" - "chinese" - "chomsky" - "classifiers" - "clauses" - "clitics" - "coarticulation" - "code-switching" - "cognates" - "cognitive-linguistics" - "collocations" - "colour-terms" - "comparative-linguistics" - "compl-distribution" - "complement-clauses" - "compounds" - "computational-linguistics" - "computer-science" - "concordances" - "conjugation" - "conjunctions" - "consonant-clusters" - "consonants" - "constituents" - "constructed-language" - "context" - "coordination" - "copula" - "corpora" - "countability" - "creoles" - "critical-period" - "cross-linguistic" - "czech" - "danish" - "dark-l" - "dead-languages" - "declension" - "definiteness" - "deixis" - "dependency-grammar" - "derivation" - "descriptive-linguistics" - "determiners" - "devanagari" - "diachronic" - "diacritics" - "dialect-mapping" - "dialects" - "dictionary" - "diglossia" - "diphthongs" - "discourse" - "discourse-analysis" - "discourse-marker" - "dravidian" - "dutch" - "egyptian" - "ejectives" - "ellipsis" - "embedding" - "endangered-languages" - "english" - "ergativity" - "errors" - "esperanto" - "estonian" - "ethnomusicology" - "etymology" - "evidentiality" - "evolution" - "evolutionary-linguistics" - "examples" - "field-linguistics" - "filler" - "finnish" - "flaps" - "forensic-linguistics" - "formants" - "framework" - "french" - "frequency" - "fricatives" - "frisian" - "frontness-backness" - "future" - "gemination" - "gender" - "generative-grammar" - "genitive" - "georgian" - "german" - "germanic-languages" - "gerund" - "glides" - "glottal-stop" - "grammar" - "grammar-formalism" - "grammatical-number" - "grammatical-object" - "grammatical-subject" - "grammatical-voice" - "grammaticalisation" - "grammaticality" - "graphemics" - "greek" - "grimms-law" - "han-characters" - "hebrew" - "hindustani" - "historical-linguistics" - "history" - "homonymy" - "homophony" - "hungarian" - "idiolect" - "idiomaticity" - "ill-formed-input" - "imperative" - "imperfect" - "imperfective" - "inalienable-possession" - "indefinite-article" - "indian-languages" - "indo-aryan" - "indo-european" - "indonesian" - "infinitive" - "inflection" - "interjections" - "interlinear-gloss" - "interrogatives" - "intonation" - "ipa" - "irish" - "irregularity" - "isolating-languages" - "italian" - "japanese" - "jargon" - "khmer" - "king" - "kinship-terms" - "korean" - "kyrgyz" - "labiodental" - "language-acquisition" - "language-change" - "language-competence" - "language-contact" - "language-families" - "language-identification" - "language-isolates" - "language-revival" - "languages" - "languages-of-china" - "lao" - "laryngeals" - "laterals" - "latex" - "latin" - "lemmas" - "lexemes" - "lexical-semantics" - "lexicography" - "lexicon" - "lingua-francas" - "linguistic-determinism" - "linguistic-typology" - "linguistic-universals" - "list-of-languages" - "literacy" - "logic" - "lojban" - "machine-translation" - "malay" - "malayo-polynesian" - "malaysia" - "mandarin" - "markedness" - "marking" - "mathematical-language" - "mediopassive" - "meronomy" - "metaphor" - "methodology" - "metonymy" - "minimal-pairs" - "minimalism" - "mongolian" - "mood" - "morphemes" - "morphological-analysis" - "morphological-typology" - "morphology" - "morphosyntax" - "movement" - "multilingualism" - "mutual-intelligibility" - "mwes" - "n-grams" - "named-entity-recognition" - "names" - "narrative" - "nasals" - "native-language" - "natural-gender" - "natural-languages" - "negation" - "neologism" - "neurolinguistics" - "nlp" - "nltk" - "nominals" - "nominative" - "norwegian" - "notation" - "noun-classes" - "noun-phrases" - "nouns" - "numbers" - "numerals" - "old-norse" - "online-resources" - "onomastics" - "optimality-theory" - "origin-of-language" - "orthography" - "overview" - "palatalization" - "parameters" - "paraphrase" - "parsing" - "participles" - "particles" - "parts-of-speech" - "passive" - "paucal" - "perception" - "perfect" - "performance-errors" - "persian" - "person" - "pertainyms" - "philosophy-of-language" - "phonemes" - "phones" - "phonetic-symbols" - "phonetics" - "phonics" - "phonology" - "phonotactics" - "phrasal-verbs" - "phrase-structure" - "phrases" - "phrygian" - "pidgins" - "pitch-accent" - "plosives" - "pluperfect" - "plurality" - "pluricentric-languages" - "poetry" - "polish" - "polypersonalism" - "polysemy" - "polysynthesis" - "portuguese" - "pos-tagging" - "possession" - "praat" - "pragmatics" - "predicates" - "predicatives" - "prepositions" - "prescriptivism" - "present" - "prestige" - "preverbs" - "principles-and-parameters" - "pro-drop" - "production" - "progressive" - "pronoun" - "pronunciation" - "proper-nouns" - "prosody" - "proto-germanic" - "proto-indo-european" - "proto-slavic" - "proto-world" - "prowords" - "psycholinguistics" - "punctuation" - "quantitative-linguistics" - "questions" - "readability" - "reconstruction" - "recursion" - "reduplication" - "reference-request" - "references" - "regular-verbs" - "relative-clauses" - "research" - "resources" - "rhoticity" - "rhyming" - "rhythm" - "romance-languages" - "romanian" - "roots" - "russian" - "sampa" - "sandhi" - "sanskrit" - "sapir-whorf-hypothesis" - "scope" - "script-directions" - "second-lang-acquisition" - "semantics" - "semiotics" - "semitic-languages" - "semivowels" - "sentences" - "sentiment-analysis" - "set-phrases" - "sign-languages" - "sino-tibetan" - "slang" - "slavic-languages" - "slovenian" - "sociolinguistics" - "sociophonetics" - "soft-question" - "software" - "sound-change" - "sov" - "spanish" - "spe" - "speaker-recognition" - "speech-recognition" - "speech-synthesis" - "spoken-language" - "sprachbund" - "standard-varieties" - "statistical-mt" - "stems" - "stops" - "stress" - "stylometry" - "substrate" - "suppletion" - "svo" - "swadesh-list" - "swedish" - "syllable-timing" - "syllables" - "symbol" - "synonymy" - "syntax" - "syntax-trees" - "synthetic-languages" - "tamil" - "tense" - "terminology" - "text-segmentation" - "thai" - "thematic-roles" - "theoretical-linguistics" - "theta-role" - "tibetan" - "tonal-languages" - "tone" - "tone-sandhi" - "tools" - "toponomastics" - "transcription" - "transformations" - "transitivity" - "translation" - "transliteration" - "trills" - "triphthongs" - "truth-value" - "turkic-languages" - "turkish" - "typological-cycle" - "unicode" - "universal-grammar" - "untagged" - "uralic" - "v2" - "valency" - "variation" - "varieties" - "velar" - "verb-phrase" - "verbs" - "vietnamese" - "vocabulary" - "vocatives" - "voice-biometrics" - "voicing" - "vowel-harmony" - "vowel-height" - "vowel-length" - "vowels" - "voynich-manuscript" - "vso" - "washo" - "welsh" - "wonderwort" - "word-boundaries" - "word-classes" - "word-formation" - "word-order" - "word-sense-disambiguation" - "wordnet" - "words" - "writing" - "writing-systems" - "written-language" - "x-bar-theory") diff --git a/data/tags/magento.el b/data/tags/magento.el deleted file mode 100644 index 2e2582e..0000000 --- a/data/tags/magento.el +++ /dev/null @@ -1,797 +0,0 @@ -(".htaccess" - "0.1.0-alpha100" - "1.7.0.2" - "1.9" - "2.0.0.0-dev55" - "301-redirect" - "3rd-party-modules" - "404" - "404-page" - "500" - "777-permission" - "ab-experiment" - "access" - "acl" - "action" - "add" - "additional-information" - "address" - "addtocart" - "admin" - "admin-account" - "admin-controller" - "admin-grid" - "admin-panel" - "adminform" - "adminhtml" - "administration" - "adminmenu" - "adminnotification" - "admn" - "advanced-search" - "affiliate" - "aftersave" - "aheadworks-ajaxcartpro" - "ajax" - "alert" - "amazon" - "amazon-web-services" - "apache" - "apache2" - "apc" - "api" - "app" - "application" - "architecture" - "array" - "asocciated-products" - "associate-products" - "associates" - "attachment" - "attribute-list" - "attribute-options" - "attribute-set" - "attributes" - "authorize.net" - "automation" - "avs-fastsimpleimport" - "aws" - "b2b" - "backend" - "backorder" - "backup" - "balance" - "base-url" - "beforesave" - "belvg" - "best-practice" - "billing" - "billing-address" - "billing-agreements" - "blank-page" - "block" - "block-cache" - "blocks" - "breadcrumbs" - "browser-close" - "bug" - "bug-report" - "bug-tracking" - "bundle" - "bundle-product" - "bundled-product" - "cache" - "cache-improvement" - "caching" - "calendar" - "canonical" - "captcha" - "cart" - "cart-rule" - "cash-on-delivery" - "casperjs" - "catalog" - "catalog-optimize" - "catalog-price-rules" - "catalog-rules" - "cataloginventory" - "catalogsearch" - "category" - "category-attribute" - "category-products" - "category-tree" - "catelogsearch" - "cdn" - "ce" - "ce-1.4.0.1" - "ce-1.4.1.1" - "ce-1.4.2.0" - "ce-1.5" - "ce-1.5.0.1" - "ce-1.5.1.0" - "ce-1.6" - "ce-1.6.1.0" - "ce-1.6.2.0" - "ce-1.7.0.1" - "ce-1.7.0.2" - "ce-1.8" - "ce-1.8.0.0" - "ce-1.8.1.0" - "ce-1.9.0.0" - "ce-1.9.0.1" - "ce-1.9.1.0" - "centos" - "certification" - "character-encoding" - "checkbox" - "checkout" - "chef" - "chrome-browser" - "class" - "cli" - "cloud" - "cm-redissession" - "cms" - "cms-block" - "code" - "code-analysis" - "code-reuse" - "coding" - "collection" - "collection-filtering" - "color-swatches" - "column" - "compare" - "comparison" - "compilation" - "compiler" - "composer" - "conditional-loading" - "configurable-product" - "configuration" - "confirmation" - "conflict" - "contact-us" - "controller-predispatch" - "controllers" - "conversion" - "convert" - "cookie" - "copyright" - "core" - "core-config-data" - "core-file-storage" - "core-hacks" - "core-session" - "coupon" - "coupon-codes" - "couponmagento-1.7.0.1" - "create" - "create-invoice" - "create-order" - "create-product" - "creditmemo" - "cron" - "cross-sells" - "css" - "csv" - "currency" - "currency-rates" - "custom" - "custom-admin-url" - "custom-attributes" - "custom-block" - "custom-collection" - "custom-menu" - "custom-module" - "custom-options" - "custom-prices" - "custom-product-type" - "custom-table" - "customer" - "customer-account" - "customer-address" - "customer-attribute" - "customer-grid" - "customer-group" - "customer-segmentation" - "customer-session" - "cvs" - "dashboard" - "data" - "data-script" - "database" - "dataflow" - "date" - "datepicker" - "deadlock" - "debug" - "debugging" - "decode" - "default" - "default-values" - "delete" - "delivery" - "delivery-date" - "denial-of-service" - "dependency" - "dependency-injection" - "deploy" - "design" - "design-packages" - "development" - "devops" - "dhl" - "differences" - "different" - "discount" - "distinct" - "doubt" - "download" - "downloadable" - "downloader" - "dropdown-attribute" - "dropshipping" - "dynamic-price" - "eav" - "ebay" - "ecomdev-phpunit" - "edit" - "edit-order" - "ee-1.10" - "ee-1.11" - "ee-1.12" - "ee-1.12.0.2" - "ee-1.13" - "ee-1.13.0.1" - "ee-1.13.0.2" - "ee-1.13.1.0" - "ee-1.14" - "ee-1.14.0.1" - "elevate" - "email" - "email-reminders" - "email-templates" - "email-translation" - "empty-page" - "encryption-key" - "enterprise-1.10" - "enterprise-1.11" - "enterprise-1.13" - "enterprise-1.14" - "enterprise-rma" - "entities" - "environment-emulation" - "error" - "error-log" - "estimate" - "event-observer" - "exception" - "expenses" - "export" - "extend" - "extension-release" - "extensions" - "external" - "facebook" - "factory" - "fatal-error" - "featured-product" - "fedex" - "field" - "fieldsets" - "file-upload" - "filter" - "filtered-nav" - "firefox" - "firegento" - "fires" - "first" - "fishpig" - "flat" - "flat-catalog" - "folder" - "fooman-extension" - "footer" - "fopen" - "form-key" - "form-validation" - "format" - "forms" - "formtabs" - "free-gift" - "free-shipping" - "frontend" - "frontend-model" - "frontend-type" - "ftp" - "full-page-cache" - "fulltext" - "gallery" - "gd2" - "germany" - "get" - "getblock" - "getmodel" - "gettext" - "geturl" - "gift-card" - "gift-registry" - "git" - "global-variable" - "google-analytics" - "google-api" - "google-checkout" - "google-map" - "googlestrustedstore" - "grand-total" - "grid" - "grid-layout" - "grid-serlization" - "group" - "group-price" - "grouped-products" - "gzip" - "hack" - "head" - "header" - "helper" - "hhvm" - "hide-attribute" - "holepunching" - "home" - "hosting" - "htaccess" - "html" - "https" - "id" - "if" - "iframe" - "image" - "image-preview" - "image-upload" - "import" - "importexport" - "increment-id" - "index" - "indexer" - "indexing" - "inheritance" - "inline" - "inline-translations" - "install" - "install-script" - "installation" - "integrate" - "interception" - "interesting" - "internationalization" - "inventory" - "invoice" - "invoice-id" - "ioncube" - "iphone" - "ipn" - "javascript" - "jobs" - "join" - "join-table" - "jquery" - "js-css" - "json" - "key" - "language" - "layer" - "layered-navigation" - "layout" - "layout-update" - "layout.xml" - "learn-magento" - "less" - "lesti" - "licensing" - "like" - "line-break" - "link" - "list-view" - "loadbalancing" - "loader" - "local" - "local.xml" - "locale" - "localhost" - "localisation" - "localization" - "locations" - "log" - "log-size" - "logging" - "login" - "login-error" - "logout" - "lost" - "m2e" - "mage-final" - "mage-googleshopping" - "mage-shell" - "magento-1" - "magento-1.11" - "magento-1.14" - "magento-1.3" - "magento-1.4" - "magento-1.5" - "magento-1.5.1" - "magento-1.6" - "magento-1.7" - "magento-1.7.0.1" - "magento-1.8" - "magento-1.9" - "magento-any-version" - "magento-ce" - "magento-collection" - "magento-community" - "magento-concept" - "magento-connect" - "magento-core" - "magento-enterprise" - "magento-extension" - "magento-go" - "magento-inc" - "magento-process" - "magento1.9.1.0" - "magento2" - "magento2-alpha" - "magento2-alpha105" - "magento2-alpha91" - "magento2-alpha93" - "magento2-alpha96" - "magento2-alpha98" - "magento2-dev-beta" - "magento2-dev85" - "magento2-pre-alpha" - "magerun" - "magesetup" - "magic" - "magic-getter" - "magmi" - "magneto-1.7" - "mail" - "mailchimp" - "mailgun" - "maintenance" - "management" - "map" - "massaction" - "maxvalue" - "md5" - "media" - "memcached" - "memory" - "memory-leak" - "memory-management" - "menu" - "messages" - "meta" - "meta-tags" - "methods" - "migration" - "mini-cart" - "mobile" - "model" - "modman" - "module" - "mongo" - "mtaf" - "multi-vendor" - "multicurrency" - "multidomain" - "multiple" - "multiple-file-upload" - "multiple-tables" - "multiselect-attribute" - "multishipping" - "multistore" - "mvc" - "mysql" - "mysql-config" - "mysql-indexes" - "name" - "naming" - "navigation" - "new" - "newsletter" - "nginx" - "nodes" - "not-found" - "notify-me" - "nvp-gateway-error" - "oauth" - "object" - "object-manager" - "onepage-checkout" - "onestepcheckout" - "open-graph" - "optimization" - "option" - "order-duplication" - "order-grid" - "order-messages" - "order-object" - "order-splitting" - "order-state" - "order-status" - "orders" - "out-of-stock" - "overrides" - "package" - "page-content" - "page-title" - "pager" - "pagination" - "parallax" - "parameter" - "parent-child-theme" - "partial-payments" - "password" - "password-recovery" - "patches" - "paylater" - "payment" - "payment-gateway" - "payment-methods" - "paypal" - "paypal-api" - "paypal-express" - "paypal-paments-advanced" - "paypal-payflow-pro" - "paypal-payments-pro" - "paypal-pro" - "paypal-standard" - "pci" - "pdf" - "performance" - "permissions" - "persistent" - "php" - "php-5.2.x.x" - "php-5.4" - "phpstorm" - "phpunit" - "phtml" - "pincodes" - "placeholder" - "play" - "pos" - "position" - "post-data" - "price" - "price-box" - "price-rules" - "pricing" - "print" - "product" - "product-association" - "product-attribute" - "product-collection" - "product-details-page" - "product-edit" - "product-images" - "product-list" - "product-page" - "product-relations" - "product-type" - "product-urls" - "product-view" - "productid" - "products" - "products-management" - "products-view" - "profiler" - "programmatically" - "programming" - "promotions" - "prototype-js" - "qty-increment" - "quantity" - "query" - "questions" - "quote" - "random" - "ratings" - "readyshipper" - "recurring" - "redirect" - "redis" - "referencess" - "refund" - "regex" - "regions" - "register" - "registry" - "regitstry" - "reindex" - "relevance" - "render" - "renderer" - "reorder" - "reports" - "reset-filter" - "resource-model" - "rest" - "restrict-shipping" - "review" - "rich-snippets" - "rma" - "robots.txt" - "role" - "rounding" - "router" - "routing" - "rss" - "rules" - "rwd" - "rwd-theme" - "sagepay" - "sales" - "sales-order" - "sample" - "sample-data" - "sass" - "save" - "schedule" - "scope" - "scope-switcher" - "script" - "scss" - "search" - "secure" - "security" - "select" - "selection" - "send-mail" - "seo" - "server" - "server-setup" - "session" - "sessions" - "setup" - "setup-script" - "shell" - "shipment" - "shipping" - "shipping-address" - "shipping-methods" - "shipping-tax" - "shippment-tracking" - "shopping" - "shopping-cart" - "shopping-cart-price-rules" - "sidebar" - "signed-integer" - "simple-product" - "simplexml" - "singleton" - "sitemaps" - "skin" - "sku" - "smtp" - "soap" - "social" - "social-buttons" - "solr" - "sorting" - "source-model" - "special-price" - "special-products" - "sphinx" - "sql" - "ssl" - "staging" - "state" - "static-block" - "status" - "stock" - "stock-status" - "store-credit" - "store-id" - "store-url" - "store-view" - "stores" - "structured-data" - "stucture" - "submenu" - "superattribute" - "swatches" - "switcher" - "synonyms" - "system.xml" - "table" - "table-rates" - "tabs" - "taf" - "tags" - "target-rules" - "tax" - "tax-class" - "tears-in-the-rain" - "template" - "testing" - "thefind" - "theme" - "theme-fallback" - "third-party-module" - "thumbnail" - "tierprice" - "timezone" - "tinymce" - "toolbar" - "toplinks" - "topmenu" - "totals" - "transaction" - "transactional" - "transactional-mail" - "travis-ci" - "troubleshooting" - "turpentine" - "ui" - "undefined-variable" - "uninstall" - "unique-reference" - "unit-tests" - "untagged" - "up-sells" - "update-handle" - "upgrade" - "upgrade-script" - "upload" - "ups" - "upselling" - "url" - "url-key" - "url-rewrite" - "user" - "user-roles" - "usps" - "utf-8" - "validation" - "varchar" - "varien" - "varien-file-uploader" - "varien-io-file" - "varnish" - "vat" - "vb.net" - "vendor" - "version" - "versioning" - "video" - "virtual" - "virtual-products" - "virtualtype" - "virus" - "visitor" - "visitor-log" - "voiding" - "vpn" - "wamp" - "warning" - "web-services" - "websites" - "widget" - "widget-instance" - "widgets" - "windows" - "wishlist" - "wordpress" - "workflow" - "wsdl" - "wysiwyg" - "xamp" - "xampp" - "xcommerce" - "xdebug" - "xml" - "xmlrpc" - "zend-framework" - "zoom") diff --git a/data/tags/martialarts.el b/data/tags/martialarts.el deleted file mode 100644 index 620492c..0000000 --- a/data/tags/martialarts.el +++ /dev/null @@ -1,150 +0,0 @@ -("aikido" - "anatomy" - "application" - "attack" - "attacking" - "awareness" - "bagua" - "balance" - "belt" - "blocking" - "bo-staff" - "bokken" - "books" - "bowing" - "boxing" - "brazilian-jiu-jitsu" - "breaking-boards" - "breathing" - "capoeira" - "certification" - "children" - "chokes" - "closed-guard" - "competition" - "cross-training" - "defense" - "dogi" - "dojo" - "drills" - "elbows" - "endurance" - "equipment" - "escapes" - "escrima" - "etiquette" - "exercise" - "fencing" - "firearms" - "fist" - "flexibility" - "footwork" - "forms" - "gi" - "goshku" - "grappling" - "hapkido" - "health" - "history" - "iaido" - "iaijutsu" - "identification" - "injury" - "intensive" - "internal" - "itf" - "japanese" - "jeet-kune-do" - "jiujitsu" - "judo" - "jujutsu" - "kalaripayattu" - "kali" - "karate" - "kata" - "katana" - "kempo" - "kendo" - "kenjutsu" - "kick" - "kickboxing" - "kicking" - "knees" - "knife-fighting" - "krav-maga" - "kung-fu" - "legal" - "medical-advice" - "meditation" - "mentality" - "mixed-martial-arts" - "mma" - "mobility" - "muay-thai" - "multiple-attackers" - "ninjutsu" - "no-gi" - "okinawa" - "olympics" - "parkour" - "philosophy" - "positions" - "power" - "practice" - "prevention" - "protection" - "punching" - "push-hands" - "qi" - "rapier" - "real-life" - "recommendation" - "relaxation" - "safety" - "school-management" - "schools" - "self-defense" - "self-training" - "seminar" - "shaolin" - "shield" - "shoes" - "short-stick" - "shotokan" - "shu-ha-ri" - "social" - "soreness" - "southern-shaolin" - "sparring" - "speed" - "spinning-kicks" - "sport" - "stance" - "strength" - "stretching" - "striking" - "style" - "sword" - "systema" - "tae-kwon-do" - "tai-chi" - "tameshigiri" - "teaching" - "technique" - "terminology" - "testing" - "theory" - "training" - "tricking" - "tricks" - "ukemi" - "uniform" - "united-states" - "untagged" - "weapons" - "weight" - "weight-lifting" - "wing-chun" - "wrapping" - "wrestling" - "wrists") diff --git a/data/tags/math.el b/data/tags/math.el deleted file mode 100644 index fcc1f61..0000000 --- a/data/tags/math.el +++ /dev/null @@ -1,1102 +0,0 @@ -("2-categories" - "2-groups" - "3d" - "abelian-categories" - "abelian-groups" - "abelian-varieties" - "absolute-convergence" - "absolute-value" - "abstract-algebra" - "ackermann-function" - "actuarial-science" - "additive-categories" - "additive-combinatorics" - "adeles" - "adjoint" - "advice" - "affine-geometry" - "affine-schemes" - "algebra-precalculus" - "algebraic-closure" - "algebraic-combinatorics" - "algebraic-curves" - "algebraic-geometry" - "algebraic-graph-theory" - "algebraic-groups" - "algebraic-identities" - "algebraic-k-theory" - "algebraic-logic" - "algebraic-number-theory" - "algebraic-stacks" - "algebraic-systems" - "algebraic-topology" - "algebras" - "algorithmic-game-theory" - "algorithmic-randomness" - "algorithms" - "almost-complex" - "almost-everywhere" - "alternative-proof" - "amenability" - "analysis" - "analytic-combinatorics" - "analytic-geometry" - "analytic-number-theory" - "analytic-spread" - "analyticity" - "antipodal" - "applications" - "approximate-integration" - "approximation" - "approximation-theory" - "area" - "arithmetic" - "arithmetic-combinatorics" - "arithmetic-dynamics" - "arithmetic-functions" - "arithmetic-geometry" - "art" - "article-writing" - "artificial-intelligence" - "associativity" - "asymptotics" - "automata" - "automated-theorem-proving" - "automorphic-forms" - "average" - "axiom-of-choice" - "axiomatic-geometry" - "axioms" - "baire-category" - "balls-in-bins" - "banach-algebras" - "banach-spaces" - "bayes-theorem" - "bayesian" - "bernoulli-numbers" - "bessel-functions" - "beta-function" - "bezier-curve" - "bifurcation" - "big-list" - "big-numbers" - "big-picture" - "bilinear-form" - "billiards" - "binary" - "binary-operations" - "binomial-coefficients" - "binomial-theorem" - "biology" - "bipartite-graph" - "birational-geometry" - "block-matrices" - "blowup" - "bochner-spaces" - "book-recommendation" - "boolean-algebra" - "boundary-value-problem" - "bounded-variation" - "braid-groups" - "branch-cuts" - "branch-points" - "branching-rules" - "brauer-group" - "brownian-motion" - "c-star-algebras" - "calculator" - "calculus" - "calculus-of-variations" - "calendar-computations" - "card-games" - "cardinals" - "career-development" - "carmichael-function" - "carnot-groups" - "cartography" - "catalan-numbers" - "category-theory" - "cauchy-principal-value" - "cauchy-product" - "cauchy-sequences" - "cayley-graphs" - "ceiling-function" - "cellular-automata" - "central-limit-theorem" - "centroid" - "cesaro-summable" - "chaos-theory" - "chaotic-systems" - "characteristic-classes" - "characteristic-functions" - "characters" - "chebyshev-function" - "chebyshev-polynomials" - "chemistry" - "chinese-remainder-theorem" - "circle" - "class-field-theory" - "classical-analysis" - "classical-groups" - "classical-mechanics" - "classifying-spaces" - "clifford-algebras" - "closed-form" - "closed-graph" - "clustering" - "coalgebras" - "cobordism" - "coding-theory" - "cohen-macaulay" - "coherent-sheaves" - "cohomological-operations" - "collatz" - "collision-detection" - "coloring" - "combinations" - "combinatorial-designs" - "combinatorial-game-theory" - "combinatorial-geometry" - "combinatorial-proofs" - "combinatorial-species" - "combinatorics" - "combinatorics-on-words" - "combinatory-logic" - "commutative-algebra" - "compact-manifolds" - "compact-operators" - "compactness" - "complete-square" - "complex-analysis" - "complex-dynamics" - "complex-geometry" - "complex-integration" - "complex-manifolds" - "complex-multiplication" - "complex-numbers" - "computability" - "computational-algebra" - "computational-complexity" - "computational-geometry" - "computational-mathematics" - "computer-algebra-systems" - "computer-arithmetic" - "computer-assisted-proofs" - "computer-science" - "concentration-of-measure" - "conditional-expectation" - "conditional-probability" - "conformal-geometry" - "congruences" - "conic-sections" - "conjectures" - "connectedness" - "connections" - "constants" - "constraint-programming" - "constraints" - "constructive-mathematics" - "contact-topology" - "contest-math" - "context-free-grammar" - "continued-fractions" - "continuity" - "continuous-homomorphisms" - "contour-integration" - "contradiction" - "control-theory" - "convention" - "convergence" - "convergence-acceleration" - "convex-analysis" - "convex-optimization" - "convex-order" - "convolution" - "coordinate-systems" - "correlation" - "coupon-collector" - "covariance" - "covering-spaces" - "coxeter-groups" - "cross-product" - "cryptarithm" - "cryptography" - "cubic-equations" - "cubic-reciprocity" - "curvature" - "curves" - "cw-complexes" - "cyclic-groups" - "cyclotomic-polynomial" - "d-modules" - "data-analysis" - "data-mining" - "decimal-expansion" - "decision-theory" - "deconvolution" - "dedekind-domain" - "definite-integrals" - "definition" - "deformation-theory" - "delay-differential-eqns" - "derivatives" - "derived-functors" - "descent" - "descriptive-complexity" - "descriptive-set-theory" - "descriptive-statistics" - "determinant" - "diagonalization" - "dice" - "differential" - "differential-algebra" - "differential-equations" - "differential-field" - "differential-forms" - "differential-geometry" - "differential-operators" - "differential-topology" - "dihedral-groups" - "dimension-theory" - "dimensional-analysis" - "diophantine-approximation" - "diophantine-equations" - "dirac-delta" - "direct-product" - "direct-sum" - "dirichlet-series" - "discrete-calculus" - "discrete-geometry" - "discrete-mathematics" - "discrete-optimization" - "distribution-tails" - "distribution-theory" - "divergent-series" - "divisibility" - "divisible-groups" - "division-algebras" - "divisor-counting-function" - "divisor-sum" - "dual-cone" - "duality-theorems" - "dynamic-programming" - "dynamical-systems" - "dynkin-diagrams" - "economics" - "education" - "egyptian-fractions" - "eigenfunctions" - "eigenvalues-eigenvectors" - "elementary-functions" - "elementary-number-theory" - "elementary-set-theory" - "elliptic-curves" - "elliptic-equations" - "elliptic-functions" - "elliptic-integrals" - "elliptic-operators" - "entropy" - "epsilon-delta" - "equidistribution" - "equivalence-relations" - "equivariant-maps" - "ergodic-theory" - "error-function" - "error-propagation" - "estimation" - "estimation-theory" - "etale-cohomology" - "euclidean-geometry" - "euler-lagrange-equation" - "euler-maclaurin" - "euler-product" - "eulerian-path" - "eulers-constant" - "exact-sequence" - "examples-counterexamples" - "exceptional-isomorphisms" - "expectation" - "experimental-mathematics" - "exponential-function" - "exponential-sum" - "exponentiation" - "extension-field" - "exterior-algebra" - "extrapolation" - "extremal-combinatorics" - "extremal-graph-theory" - "factorial" - "factoring" - "fair-division" - "fake-proofs" - "faq" - "farey-sequences" - "fermi-dirac-integral" - "fiber-bundles" - "fibonacci-numbers" - "fibration" - "field-theory" - "filters" - "finance" - "finite-automata" - "finite-differences" - "finite-element-method" - "finite-fields" - "finite-groups" - "finite-rings" - "finite-semigroups" - "finitely-generated" - "finitism" - "first-order-logic" - "fixed-point-theorems" - "floating-point" - "floor-function" - "fluid-dynamics" - "foliations" - "forcing" - "formal-completions" - "formal-grammar" - "formal-groups" - "formal-languages" - "formal-power-series" - "formal-proofs" - "formal-systems" - "foundations" - "fourier-analysis" - "fourier-restriction" - "fourier-series" - "fractals" - "fractional-calculus" - "fractional-part" - "fractions" - "free-groups" - "frenet-frame" - "fresnel-integrals" - "frobenius-groups" - "function-composition" - "function-fields" - "functional-analysis" - "functional-calculus" - "functional-equations" - "functional-inequalities" - "functions" - "fundamental-groups" - "fundamental-solution" - "fusion-systems" - "fuzzy-logic" - "fuzzy-set" - "galois-cohomology" - "galois-connections" - "galois-representations" - "galois-rings" - "galois-theory" - "gambling" - "game-theory" - "gamma-distribution" - "gamma-function" - "gap" - "gateaux-derivative" - "gauge-theory" - "gauss-sums" - "gaussian-elimination" - "gaussian-integral" - "general-relativity" - "general-topology" - "generating-functions" - "geodesic" - "geodesy" - "geometric-algebras" - "geometric-construction" - "geometric-group-theory" - "geometric-interpretation" - "geometric-invariant" - "geometric-measure-theory" - "geometric-probability" - "geometric-series" - "geometric-topology" - "geometry" - "germs" - "gersgorin-sets" - "gibbs-measure" - "global-analysis" - "gmat-exam" - "goldbachs-conjecture" - "golden-ratio" - "gorenstein" - "graded-modules" - "graded-rings" - "gradient-flows" - "graph-invariants" - "graph-isomorphism" - "graph-symmetries" - "graph-theory" - "graphing-functions" - "grassmannian" - "gre-exam" - "grobner-generators" - "groebner-basis" - "gromov-hyperbolic-spaces" - "grothendieck-topologies" - "group-actions" - "group-cohomology" - "group-extensions" - "group-homology" - "group-isomorphism" - "group-presentation" - "group-rings" - "group-schemes" - "group-theory" - "grouplike-elements" - "groupoids" - "groups-of-lie-type" - "hadamard-product" - "hamilton-jacobi-equation" - "hamiltonian-path" - "hardware" - "hardy-spaces" - "harmonic-analysis" - "harmonic-functions" - "harmonic-numbers" - "hash-function" - "heat-equation" - "hecke-characters" - "hensels-lemma" - "higher-category-theory" - "higher-order-logic" - "hilbert-spaces" - "hodge-theory" - "holder-spaces" - "holomorphic-bundles" - "holonomy" - "homogeneous-equation" - "homogeneous-spaces" - "homological-algebra" - "homology-cohomology" - "homology-sphere" - "homomorphism" - "homotopy-theory" - "homotopy-type-theory" - "hopf-algebras" - "hopf-fibration" - "hopfian-groups" - "hyperbolic-equations" - "hyperbolic-functions" - "hyperbolic-geometry" - "hyperbolic-groups" - "hypercomplex-numbers" - "hypergeometric-function" - "hyperoperation" - "hypothesis-testing" - "ideals" - "idempotents" - "image-processing" - "implicit-differentiation" - "implicit-function-theorem" - "improper-integrals" - "inclusion-exclusion" - "incompleteness" - "indefinite-integrals" - "indeterminate-forms" - "induction" - "inequality" - "infinitary-combinatorics" - "infinite-graphs" - "infinite-groups" - "infinite-matrices" - "infinite-product" - "infinitesimals" - "infinity" - "information-geometry" - "information-theory" - "injective-module" - "inner-product-space" - "integer-lattices" - "integer-programming" - "integer-rings" - "integers" - "integrable-systems" - "integral-dependence" - "integral-domain" - "integral-equations" - "integral-geometry" - "integral-inequality" - "integral-operators" - "integral-transforms" - "integration" - "interpolation" - "interpolation-theory" - "intersection" - "intersection-theory" - "intuition" - "intuitionism" - "invariance" - "invariant-theory" - "inverse" - "inverse-problems" - "inverse-semigroups" - "inversive-geometry" - "involutions" - "irrational-numbers" - "irreducible-polynomials" - "java-applet" - "jet-bundles" - "jordan-normal-form" - "k-theory" - "kaehler-manifolds" - "kalman-filter" - "karush-kuhn-tucker" - "kinematics" - "kkt" - "knight-tours" - "knot-invariants" - "knot-theory" - "kolmogorov-complexity" - "kripke-models" - "krull-dimension" - "kummer-theory" - "l-functions" - "l-series" - "lagrange-inversion" - "lagrange-multiplier" - "lambda-calculus" - "lambert-w" - "laplace-expansion" - "laplace-transform" - "laplacian" - "large-cardinals" - "large-deviation-theory" - "latin-square" - "lattice-orders" - "lattices-in-lie-groups" - "laurent-series" - "law-of-large-numbers" - "learning" - "least-common-multiple" - "least-squares" - "lebesgue-integral" - "lebesgue-measure" - "legendre-polynomial" - "levy-processes" - "lft" - "lie-algebra-cohomology" - "lie-algebras" - "lie-derivative" - "lie-groups" - "limits" - "limits-without-lhospital" - "limsup-and-liminf" - "line-integrals" - "linear-algebra" - "linear-approximation" - "linear-control" - "linear-groups" - "linear-programming" - "linear-transformations" - "lipschitz-functions" - "local-cohomology" - "local-field" - "localization" - "locally-compact-groups" - "locally-convex-spaces" - "locus" - "logarithms" - "logic" - "loop-spaces" - "low-dimensional-topology" - "lp-spaces" - "machine-learning" - "magic-square" - "magma" - "magma-cas" - "manifolds" - "manifolds-with-boundary" - "maple" - "markov-chains" - "markov-process" - "martingales" - "math-history" - "math-software" - "mathematica" - "mathematical-astronomy" - "mathematical-french" - "mathematical-modeling" - "mathematical-physics" - "mathematicians" - "matlab" - "matrices" - "matrix-calculus" - "matrix-decomposition" - "matrix-equations" - "matrix-rank" - "matroids" - "maxima-software" - "maximal-ideals" - "maximal-subgroup" - "maximum-principle" - "mean-square-error" - "means" - "measure-theory" - "measurement-theory" - "median" - "mental-arithmetic" - "meta-math" - "metalogic" - "metric-geometry" - "metric-spaces" - "microlocal-analysis" - "minimal-polynomials" - "minimal-surfaces" - "mixing" - "mnemonic" - "modal-logic" - "model-categories" - "model-theory" - "modular-arithmetic" - "modular-forms" - "modules" - "moduli-space" - "moebius-inversion" - "moment-generating-funcion" - "monads" - "monoid" - "monoidal-categories" - "monomial-ideals" - "monte-carlo" - "monty-hall" - "morphism" - "morse-theory" - "motivation" - "multigrid" - "multilinear-algebra" - "multinomial-coefficients" - "multiplicative-function" - "multisets" - "multivariable-calculus" - "music-theory" - "naive-bayes" - "nash-equilibrium" - "natural-deduction" - "natural-numbers" - "necklace-and-bracelets" - "nested-radicals" - "nets" - "network" - "network-flow" - "nilpotence" - "noetherian" - "noise" - "nonclassical-logic" - "noncommutative-algebra" - "noncommutative-geometry" - "noneuclidean-geometry" - "nonlinear-optimization" - "nonlinear-system" - "nonstandard-analysis" - "nonstandard-models" - "norm" - "normal-distribution" - "normal-families" - "normal-subgroups" - "normed-spaces" - "notation" - "np-complete" - "number-systems" - "number-theory" - "numerical-linear-algebra" - "numerical-methods" - "numerical-optimization" - "obstruction-theory" - "octave" - "octonions" - "oeis" - "online-resources" - "open-problem" - "operads" - "operations-research" - "operator-algebras" - "operator-spaces" - "operator-theory" - "optimal-control" - "optimal-transport" - "optimization" - "oracles" - "orbifolds" - "order-statistics" - "order-theory" - "order-topology" - "ordered-fields" - "ordered-groups" - "ordinals" - "origami" - "orlicz-sobolev" - "orlicz-spaces" - "orthogonal-polynomials" - "orthogonality" - "orthonormal" - "osculating-circle" - "p-adic-number-theory" - "p-groups" - "packing-problem" - "pade-approximation" - "paradoxes" - "parameter-estimation" - "parametric" - "parity" - "parsing" - "partial-derivative" - "partial-fractions" - "partitions" - "pattern-recognition" - "pde" - "peano-axioms" - "pell-type-equations" - "percentages" - "percentile" - "percolation" - "perfect-numbers" - "periodic-functions" - "permanent" - "permutation-groups" - "permutations" - "perturbation-theory" - "pfaffian" - "philosophy" - "physics" - "pi" - "picard-scheme" - "pigeonhole-principle" - "planar-graph" - "plane-curves" - "platonic-solids" - "pochhammer-symbol" - "poisson-distribution" - "poisson-geometry" - "poissons-equation" - "poker" - "polar-coordinates" - "polish-notation" - "polya-urn-model" - "polygamma" - "polygons" - "polyhedra" - "polylogarithm" - "polynomials" - "polytopes" - "popular-math" - "positive-characteristic" - "potential-theory" - "power-series" - "power-towers" - "predicate-logic" - "primality-test" - "prime-factorization" - "prime-gaps" - "prime-ideals" - "prime-numbers" - "prime-twins" - "primitive-divisors" - "primitive-roots" - "primorial" - "principal-bundles" - "principal-ideal-domains" - "pro-p-groups" - "probabilistic-method" - "probability" - "probability-distributions" - "probability-limit-theorem" - "probability-theory" - "problem-solving" - "product-space" - "products" - "profinite-groups" - "project-euler" - "projective-geometry" - "projective-module" - "projective-schemes" - "projective-space" - "pronunciation" - "proof-explanation" - "proof-strategy" - "proof-theory" - "proof-verification" - "proof-without-words" - "proof-writing" - "propositional-calculus" - "provability" - "pseudo-differential-opera" - "pseudoinverse" - "pseudoprimes" - "publishing" - "puzzle" - "pythagorean-triples" - "q-analogs" - "q-series" - "quadratic-equation" - "quadratic-forms" - "quadratic-integer-rings" - "quadratic-programming" - "quadratic-reciprocity" - "quadratic-residues" - "quadratics" - "quadrics" - "quadrilateral" - "quantifier-elimination" - "quantifiers" - "quantile" - "quantum-calculus" - "quantum-computation" - "quantum-field-theory" - "quantum-groups" - "quantum-mechanics" - "quasicoherent-sheaves" - "quasiconformal-maps" - "quaternions" - "queueing-theory" - "quiver" - "quotient-spaces" - "radicals" - "ramanujan-summation" - "ramanujans-master-theorem" - "ramification" - "ramsey-theory" - "random" - "random-functions" - "random-graphs" - "random-matrices" - "random-variables" - "random-walk" - "ratio" - "rational-functions" - "rational-homotopy-theory" - "rational-numbers" - "real-algebraic-geometry" - "real-analysis" - "real-numbers" - "recreational-mathematics" - "rectangles" - "recurrence-relations" - "recursion" - "recursive-algorithms" - "reduced-residue-system" - "reductive-groups" - "reference-request" - "reference-works" - "reflection" - "regression" - "regression-analysis" - "regular-expressions" - "regular-language" - "regularity-theory-of-pdes" - "regularization" - "relation-algebra" - "relations" - "relevant-logic" - "representation-theory" - "research" - "residue-calculus" - "reverse-math" - "ricci-flow" - "riemann-hypothesis" - "riemann-sphere" - "riemann-sum" - "riemann-surfaces" - "riemann-zeta" - "riemannian-geometry" - "rigid-transformation" - "ring-theory" - "ringed-spaces" - "risk-assessment" - "rngs" - "robust-statistics" - "root-systems" - "roots" - "roots-of-unity" - "rotations" - "rubiks-cube" - "sage" - "sampling" - "satisfiability" - "schauder-basis" - "schemes" - "schwartz-space" - "scoring-algorithm" - "sde" - "searching" - "sedenions" - "self-learning" - "semi-riemannian-geometry" - "semialgebras" - "semiclassical-analysis" - "semidefinite-programming" - "semidirect-product" - "semigroup-of-operators" - "semigroups" - "separation-axioms" - "sequences-and-series" - "set-theory" - "set-valued-analysis" - "several-complex-variables" - "shape" - "sheaf-cohomology" - "sheaf-theory" - "sieve-theory" - "signal-processing" - "simple-groups" - "simplex" - "simplicial-complex" - "simplicial-stuff" - "simpsons-rule" - "simulation" - "simulink" - "singular-integrals" - "singular-measures" - "singularity-theory" - "skorohod-space" - "smooth-manifolds" - "sobolev-spaces" - "social-choice-theory" - "soft-question" - "solid-angle" - "solid-geometry" - "solution-verification" - "solvable-groups" - "sorting" - "span" - "special-functions" - "spectral-graph-theory" - "spectral-sequences" - "spectral-theory" - "spheres" - "spherical-coordinates" - "spherical-geometry" - "spherical-harmonics" - "spherical-trigonometry" - "spinor" - "spline" - "splitting-field" - "spoj" - "square-numbers" - "stability-in-odes" - "stable-homotopy-theory" - "standard-deviation" - "stationary-processes" - "statistical-inference" - "statistical-mechanics" - "statistics" - "stereographic-projections" - "stiefel-manifolds" - "stieltjes-constants" - "stirling-numbers" - "stochastic-analysis" - "stochastic-approximation" - "stochastic-calculus" - "stochastic-integrals" - "stochastic-processes" - "stopping-times" - "string-theory" - "subgradient" - "subgroup-growth" - "subriemannian-geometry" - "summation" - "sums-of-squares" - "sumset" - "superalgebra" - "supremum-and-infimum" - "surface-integrals" - "surfaces" - "surgery-theory" - "svd" - "sylow-theory" - "symbolic-computation" - "symmetric-functions" - "symmetric-groups" - "symmetric-polynomials" - "symmetry" - "symplectic-geometry" - "symplectic-linear-algebra" - "system-identification" - "systems-of-equations" - "systems-theory" - "taylor-expansion" - "teaching" - "teichmuller-theory" - "tensor-products" - "tensor-rank" - "tensors" - "terminology" - "tessellations" - "tetration" - "theorem-provers" - "theta-functions" - "tiling" - "time-series" - "tomography" - "topological-graph-theory" - "topological-groups" - "topological-k-theory" - "topological-rings" - "topological-vector-spaces" - "topos-theory" - "toric-geometry" - "torsion-groups" - "totient-function" - "trace" - "trace-map" - "transcendence-theory" - "transcendental-equations" - "transcendental-numbers" - "transfer-theory" - "transfinite-recursion" - "transformation" - "transformational-geometry" - "translation-request" - "trees" - "triangle" - "triangulated-categories" - "triangulation" - "trigonometric-series" - "trigonometry" - "tropical-geometry" - "turing-machines" - "two-phase-simplex" - "type-theory" - "ultrafinitism" - "undergraduate-research" - "unification" - "uniform-continuity" - "uniform-convergence" - "uniform-distribution" - "uniform-integrability" - "uniform-spaces" - "unique-factorization-dom" - "unit-of-measure" - "universal-algebra" - "universal-property" - "utility" - "valuation-theory" - "vector-analysis" - "vector-bundles" - "vector-fields" - "vector-lattices" - "vector-space-isomorphism" - "vector-spaces" - "vectors" - "verma-modules" - "viscosity-solutions" - "visualization" - "volume" - "von-neumann-algebras" - "voting-theory" - "wave-equation" - "wavelets" - "weak-convergence" - "weak-derivatives" - "wiener-measure" - "winding-number" - "witt-vectors" - "wolfram-alpha" - "word-problem" - "wreath-product" - "young-tableaux" - "z-transform" - "zeta-functions") diff --git a/data/tags/matheducators.el b/data/tags/matheducators.el deleted file mode 100644 index 520dbf3..0000000 --- a/data/tags/matheducators.el +++ /dev/null @@ -1,176 +0,0 @@ -("abstract-algebra" - "advising" - "africa" - "aids" - "algebra" - "analytic-geometry" - "anxiety" - "applications" - "applied-mathematics" - "arithmetic-operations" - "arts" - "assessment" - "axioms-foundations" - "biology" - "board-use" - "books" - "calculations" - "calculators" - "calculus" - "calculus-reform" - "careers" - "category-theory" - "certification" - "class-participation" - "classroom-interaction" - "classroom-management" - "common-core" - "community-colleges" - "complex-numbers" - "computation" - "computer-science" - "concept-motivation" - "constrained-optimization" - "constructions" - "conventions" - "cooperative-learning" - "course-design" - "creativity" - "critical-thinking" - "cultural-differences" - "culture" - "curriculum" - "definitions" - "differential-equations" - "division" - "dyscalculia" - "education-research" - "eigenvalues" - "employment" - "engineering-mathematics" - "examples" - "exams" - "exercises" - "exponential" - "extracurricular" - "fractals" - "fractions" - "functional-analysis" - "functions" - "games" - "gender" - "general-pedagogy" - "geometry" - "gifted-students" - "grading" - "graduate-education" - "history" - "homeschooling" - "homework" - "integration" - "interactive-teaching" - "intuition" - "inverse" - "language-use" - "large-lecture" - "lecture-notes" - "liberal-arts" - "limits" - "linear-algebra" - "logarithm" - "logic" - "manipulatives" - "math-circle" - "math-contests" - "math-education-policies" - "math-pedagogy" - "math-puzzle" - "mathematical-analysis" - "mathematical-discourse" - "mathematical-pedagogy" - "mathematics-in-daily-life" - "meta" - "mixed-ability" - "multiplication-table" - "negative-numbers" - "new-math" - "notation" - "number-theory" - "online-instruction" - "optimization" - "oral-exams" - "organization" - "pedagogy" - "pemdas" - "philosophy-of-maths" - "physical-sciences" - "physics" - "pisa" - "politics" - "powers" - "precalculus" - "prerequisites" - "preschool-education" - "presentation" - "primary-education" - "prime-numbers" - "private-lessons" - "probability" - "problem-design" - "project-euler" - "proofs" - "proportional-reasoning" - "psychology" - "publishing" - "real-numbers" - "recreational-learning" - "reference-books" - "reference-request" - "religious-institution" - "remedial-courses" - "review" - "scheduling" - "secondary-education" - "self-learning" - "seminar" - "sequences" - "series" - "set-theory" - "shapes" - "software" - "solving-polynomials" - "special-needs-education" - "specific-software" - "statistics" - "struggling-students" - "student-motivation" - "student-question" - "students-mistakes" - "subtraction" - "summer" - "teacher-development" - "teacher-evaluations" - "teacher-motivation" - "teacher-preparation" - "teacher-training" - "teachers" - "technology-in-education" - "term-papers" - "terminology" - "test-design" - "testing" - "textbooks" - "time-management" - "topology" - "toys" - "transferrable-skills" - "trigonometry" - "tutoring" - "undergraduate-education" - "undergraduate-research" - "usa" - "vector-calculus" - "visual-proof" - "women" - "word-problems" - "writing") diff --git a/data/tags/mathematica.el b/data/tags/mathematica.el deleted file mode 100644 index 30df3c1..0000000 --- a/data/tags/mathematica.el +++ /dev/null @@ -1,560 +0,0 @@ -(".netlink" - "3d-printing" - "accumulation" - "accuracy" - "aesthetics" - "algebra" - "algebraic-manipulation" - "algorithm" - "alignment" - "animation" - "antialiasing" - "application" - "applicationserver" - "approximation" - "arbitrary-precision" - "arduino" - "argument-patterns" - "arithmetic" - "array" - "assignment" - "associations" - "assumptions" - "astronomy" - "asynchronous-processing" - "attributes" - "autocomplete" - "automation" - "averages" - "avi" - "backslide" - "backward-compatibility" - "big-list" - "big-numbers" - "binary" - "bit-depth" - "boolean-computation" - "boxes" - "broken-code" - "bugs" - "built-in-symbols" - "button" - "c++" - "c-codegenerator" - "caching" - "calculus-and-analysis" - "ccompilerdriver" - "cdf-format" - "cdfplayer" - "cell" - "cell-grouping" - "cell-margins" - "cells" - "cellular-automata" - "character-encoding" - "charts" - "chemistry" - "citation-management" - "classify" - "clear" - "clipboard" - "cluster-analysis" - "code-generation" - "code-golf" - "code-organization" - "code-request" - "code-review" - "coding-style" - "color" - "combinatorica" - "combinatorics" - "command-line" - "comment" - "commercial-package" - "compatibility" - "compile" - "complex" - "complex-analysis" - "components" - "compression" - "computational-geometry" - "concatenation" - "conditional" - "conditioned" - "configuration" - "constraint" - "contexts" - "control-systems" - "controls" - "conversion" - "convolution" - "coordinate-transformation" - "copulas" - "copy-as" - "core-language" - "counting" - "crash" - "csv" - "cudalink" - "cudavolumetricrender" - "curated-data" - "custom-notation" - "customization" - "dashing" - "data" - "data-acquisition" - "data-error" - "data-format" - "data-mining" - "data-structures" - "data-types" - "databaselink" - "databases" - "dataset" - "date-and-time" - "debugging" - "deployment" - "design-patterns" - "development" - "devices" - "dialog-window" - "dictionary" - "difference-equations" - "differential-equations" - "differentials" - "diophantine-equations" - "display" - "distance" - "distributions" - "docked-cell" - "document-creation" - "documentation" - "dot" - "downvalues" - "drawing" - "dsolve" - "dynamic" - "eclipse" - "editing" - "education" - "efficiency" - "ellipse" - "ellipsoid" - "elliptic-curve" - "email" - "engineering" - "enterprise-cdf" - "entity" - "epilog" - "eps-format" - "equation-solving" - "equationtrekker" - "error" - "error-messages" - "error-tracking" - "error-trapping" - "evaluation" - "eventhandler" - "example" - "excel" - "excellink" - "experimental-mathematics" - "export" - "exportstring" - "expression-construction" - "expression-manipulation" - "expression-test" - "external-calls" - "facebook" - "factorization" - "fem" - "file-transfer" - "files-and-directories" - "filling" - "filtering" - "finance" - "findroot" - "finite-fields" - "fits" - "fitting" - "fixed" - "flatten" - "fluid-dynamics" - "fontdialog" - "fonts" - "format" - "formatting" - "fortran" - "fourier-analysis" - "fractals" - "free-form-input" - "front-end" - "function-construction" - "functional" - "functional-style" - "functions" - "fundamentals" - "game" - "garbage-collection" - "gathering" - "gauges" - "generalutilities" - "generative-art" - "geodesy" - "geography" - "geometric-computation" - "geometric-transform" - "geometry" - "gpu" - "graph-layout" - "graphics" - "graphics3d" - "graphs-and-networks" - "grid-layouts" - "grid-lines" - "groebner-bases" - "group-by" - "group-theory" - "gui-construction" - "gui-elements" - "guidelines" - "handwriting" - "hardware" - "hdf5" - "histograms" - "history" - "hold" - "home-edition" - "homework" - "html" - "hyperlink" - "hyphenation" - "hypothesis-testing" - "idiomatic-usage" - "image" - "image-filtering" - "image-processing" - "image3d" - "imagedata" - "implementation-details" - "implicit-differentiation" - "import" - "inactive" - "index" - "inequalities" - "infinite-loop" - "inheritance" - "initialization" - "inner" - "input-alias" - "input-devices" - "input-forms" - "inputfield" - "insert" - "installation" - "integer-sequence" - "integral-equation" - "integral-transforms" - "interactive" - "interface" - "internal-context" - "internet" - "interoperability" - "interpolation" - "interpreter" - "interruption" - "intersection" - "intervals" - "introspection" - "inverse" - "iterators" - "java" - "json" - "kernel" - "kernel-startup" - "keyboard" - "labeling" - "labels" - "latex" - "lattices" - "leastsquares" - "legending" - "levelscheme" - "librarylink" - "license" - "licensing" - "lightweight-grid" - "linear-algebra" - "linearprogramming" - "linked-workbooks" - "linux" - "list-manipulation" - "listplot" - "localization" - "locator" - "logarithmic-scale" - "logic" - "machine-learning" - "machine-precision" - "manipulate" - "map" - "maple" - "maps" - "markov-chains" - "mathematica-online" - "mathematical-optimization" - "mathlink" - "matlab" - "matlink" - "matrix" - "maximum" - "memoization" - "memory" - "menu" - "mesh" - "messages" - "meta-programming" - "metadata" - "missing" - "mkl" - "modeling" - "modular-arithmetic" - "monitoring" - "motion-capture" - "mouseposition" - "multiple-integral" - "munit" - "mysql" - "named-characters" - "navigation" - "net" - "networking" - "neural-networks" - "nonlinear" - "notation-package" - "notebook-security" - "notebookopen" - "notebooks" - "number-bases" - "number-representation" - "number-theory" - "numerical-integration" - "numerical-value" - "numerics" - "object-oriented" - "ocr" - "oop" - "open-source" - "opencllink" - "operators" - "optional-arguments" - "options" - "order" - "osx" - "output" - "output-formatting" - "overlay" - "packages" - "packed-arrays" - "packing" - "padding" - "pagelayout" - "palettes" - "panels" - "parallel" - "parametric-equations" - "parsing" - "part" - "partitions" - "pattern-matching" - "pde" - "pdf" - "pdf-format" - "perception" - "performance-tuning" - "periodic-function" - "permutation" - "persistence" - "physicalconstants-package" - "physics" - "piecewise" - "placeholder" - "player" - "plotting" - "png" - "polarplot" - "polyhedra" - "polynomials" - "precedence" - "precision" - "predictive-interface" - "presentations" - "prime-numbers" - "printing" - "privacy" - "probability" - "probability-and-stats" - "probitmodelfit" - "procedural-programming" - "programming" - "project-euler" - "projection" - "proof" - "pure-function" - "pure-functional" - "puzzle" - "python" - "quantifier-elimination" - "quaternions" - "query" - "random" - "raspberry-pi" - "rasterize" - "real-time" - "recreational-mathematics" - "recursion" - "refactoring" - "reference-request" - "regionplot" - "regions" - "regular-expressions" - "remote-access" - "rendering" - "replacement" - "resource-management" - "result-accumulation" - "return-value" - "revolution" - "rlink" - "rotate" - "rotation" - "rule" - "sample" - "save" - "scaling" - "scheduling" - "scoping" - "script" - "searching" - "security" - "segmentation" - "selection-placeholder" - "sendmessage" - "sequence" - "series-expansion" - "serviceexecute" - "set" - "sets" - "shorcuts" - "shortcuts" - "show" - "signal-processing" - "simplex" - "simplifying-expressions" - "simulation" - "singularity" - "size" - "slider" - "slideshows" - "slideview" - "social-media" - "sorting" - "sound" - "spacing" - "sparse-arrays" - "special-functions" - "speech" - "speed" - "splines" - "spreadsheets" - "sql" - "stability" - "statistics" - "stiffness" - "stochastic-calculus" - "storage" - "streams" - "string-manipulation" - "style" - "stylesheet" - "subset" - "subvalues" - "summation" - "surface" - "svg" - "symbolic" - "symbols" - "syntax" - "syntax-highlighting" - "system" - "system-limitations" - "system-modeler" - "system-performance" - "system-variables" - "table" - "templates" - "temporaldata" - "tensor" - "term-rewriting" - "tetgenlink" - "text" - "text-recognition" - "textures" - "themes" - "threading" - "ticks" - "tiff-format" - "time" - "time-series" - "timing" - "toolbar" - "tooltip" - "topackedarray" - "topology" - "traditional-form" - "transcendental-equations" - "transparency" - "traversal" - "trees" - "trigonometry" - "ubuntu" - "undocumented" - "unicode" - "unification" - "units" - "unix" - "unset" - "untagged" - "upvalues" - "usage-messages" - "user-interface" - "variable" - "variable-definitions" - "variational-calculus" - "vector" - "vector-calculus" - "version-10" - "version-10.0.1" - "version-5" - "version-6" - "version-7" - "version-8" - "version-9" - "version-9.0.0" - "version-9.0.1.0" - "vibration" - "video" - "visualization" - "wavelet-analysis" - "web-access" - "webmathematica" - "webservices" - "windows" - "wolfram-alpha-queries" - "wolfram-desktop" - "wolfram-programming-cloud" - "workbench" - "workbooks" - "wrinting" - "writing" - "xml") diff --git a/data/tags/mathoverflow.net.el b/data/tags/mathoverflow.net.el deleted file mode 100644 index b393ddf..0000000 --- a/data/tags/mathoverflow.net.el +++ /dev/null @@ -1,1281 +0,0 @@ -("2-categories" - "2-knots" - "20-questions" - "3-manifolds" - "4-manifolds" - "a-infinity-algebras" - "abc-conjecture" - "abelian-categories" - "abelian-groups" - "abelian-schemes" - "abelian-varieties" - "absolute-galois-group" - "abstract-algebra" - "abstract-nonsense" - "abstract-polytopes" - "ac.commutative-algebra" - "accessible-categories" - "acyclic-orientations" - "adams-operations" - "additive-combinatorics" - "ade-classifications" - "adeles" - "adjacency-matrices" - "adjoint-functors" - "admissible-representation" - "advice" - "affine-geometry" - "affine-grassmannian" - "ag.algebraic-geometry" - "albert-algebras" - "alexandrov-geometry" - "algebraic-combinatorics" - "algebraic-complexity" - "algebraic-curves" - "algebraic-cycles" - "algebraic-dynamics" - "algebraic-equations" - "algebraic-graph-theory" - "algebraic-groups" - "algebraic-k-theory" - "algebraic-number-theory" - "algebraic-spaces" - "algebraic-stacks" - "algebraic-surfaces" - "algebraic-theory" - "algorithmic-randomness" - "algorithms" - "almost-periodic-function" - "alternative-proof" - "amenability" - "ample-bundles" - "anabelian-geometry" - "analytic-continuation" - "analytic-functions" - "analytic-geometry" - "analytic-number-theory" - "anosov-systems" - "ap.analysis-of-pdes" - "applications" - "applied-mathematics" - "approximation-algorithms" - "approximation-theory" - "arakelov-theory" - "arithmetic-dynamics" - "arithmetic-functions" - "arithmetic-geometry" - "arithmetic-groups" - "arithmetic-progression" - "arithmetic-scheme" - "arithmetic-topology" - "aronszajn-tree" - "artin-ring" - "artin-wedderburn" - "arxiv" - "ask-johnson" - "ask-noam" - "associated-graded" - "associative-algebras" - "asymptotics" - "at.algebraic-topology" - "automata-theory" - "automorphic-forms" - "automorphism-groups" - "automorphisms" - "axiom-of-choice" - "axioms" - "banach-algebras" - "banach-manifold" - "banach-spaces" - "bayesian" - "belyi" - "berkovich-geometry" - "bernoulli-numbers" - "bernoulli-trial" - "bessel-functions" - "bessel-potential" - "betting" - "bibliography" - "big-list" - "big-picture" - "bijective-combinatorics" - "billiards" - "bimodules" - "binary-quadratic-forms" - "binary-tree" - "binomial-coefficients" - "binomial-distribution" - "bioinformatics" - "biomathematics" - "bipartite-graphs" - "birational-geometry" - "birch-swinnerton-dyer" - "bitcoins" - "blow-ups" - "books" - "boolean-algebras" - "boolean-rings" - "borel-sets" - "bounded-arithmetic" - "bourbaki" - "braid-groups" - "braided-tensor-categories" - "branched-covers" - "brauer-groups" - "brown-representability" - "brownian-motion" - "bruhat-order" - "buildings" - "c-star-algebras" - "ca.analysis-and-odes" - "calabi-yau" - "calculus-of-functors" - "calculus-of-variations" - "canonical-bases" - "canonical-labellling" - "cardinal-arithmetic" - "career" - "cartesian-closed" - "catalan-numbers" - "categorical-logic" - "categorification" - "category-o" - "cauchy-schwarz-inequality" - "cech-cohomology" - "cellular-automata" - "central-simple-algebras" - "centralisers" - "cerf-theory" - "chain-complexes" - "chaos" - "character-theory" - "character-varieties" - "characteristic-2" - "characteristic-classes" - "characteristic-p" - "characters" - "cherednik-algebra" - "chern-classes" - "chern-simons-theory" - "chess" - "choquet-theory" - "chow-groups" - "chromatic-homotopy" - "chromatic-polynomial" - "circle-method" - "circle-packing" - "circulant-matrices" - "citations" - "class-field-theory" - "classical-geometry" - "classical-groups" - "classical-invariant-theor" - "classical-mechanics" - "classification" - "classifying-spaces" - "clifford-algebras" - "closed-form-expressions" - "cluster-algebras" - "co.combinatorics" - "coalgebras" - "coarse-geometry" - "coarse-moduli-spaces" - "cobordism" - "coding-theory" - "cofibrations" - "cohen-macaulay-rings" - "coherence" - "coherent-cohomology" - "coherent-sheaves" - "cohomological-dimension" - "cohomology" - "cohomology-operations" - "colimits" - "collatz-conjecture" - "combinatorial-designs" - "combinatorial-game-theory" - "combinatorial-geometry" - "combinatorial-group-theor" - "combinatorial-hopf-algebr" - "combinatorial-identities" - "combinatorial-number-theo" - "combinatorial-optimizatio" - "combinatorial-topology" - "combinatorics-on-words" - "combinatory-algebra" - "communication-complexity" - "commutative-rings" - "commuting-variety" - "comodules" - "compactifications" - "compactness" - "complete-intersection" - "complete-positivity" - "completion" - "complex-analysis" - "complex-dynamics" - "complex-geometry" - "complex-manifolds" - "complex-multiplication" - "compressed-sensing" - "computability-theory" - "computable-analysis" - "computation" - "computational-complexity" - "computational-geometry" - "computational-group-theo" - "computational-linguistics" - "computational-number-theo" - "computational-topology" - "computer-algebra" - "computer-science" - "cones" - "conferences" - "configuration-spaces" - "conformal-field-theory" - "conformal-geometry" - "congruences" - "conic-sections" - "conjectures" - "conjugacy-classes" - "connections" - "constructibility" - "constructible-sheaves" - "constructive-mathematics" - "contact-geometry" - "continued-fractions" - "continuity" - "continuum-hypothesis" - "contraction-mapping" - "convention" - "convergence" - "convex-analysis" - "convex-geometry" - "convex-optimization" - "convex-polytopes" - "convexity" - "convolution" - "coq" - "cotangent-bundles" - "cotangent-complex" - "counterexamples" - "covering" - "covering-spaces" - "coxeter-groups" - "critical-point-theory" - "crossed-modules" - "crossed-products" - "cryptography" - "crystalline-cohomology" - "crystals" - "ct.category-theory" - "cumulants" - "cup-product" - "curvature" - "curves" - "curves-and-surfaces" - "cv.complex-variables" - "cw-complexes" - "cycles" - "cyclic-homology" - "cyclic-stuff" - "cyclotomic-fields" - "cyclotomic-integer" - "d-modules" - "data-analysis" - "database-theory" - "debauch-of-indices" - "decidability" - "decision-trees" - "decomposition-theorem" - "dedekind-domains" - "definability" - "definitions" - "deformation-theory" - "degree-sequence" - "deligne-lusztig-theory" - "derham-cohomology" - "derived-algebraic-geometr" - "derived-category" - "derived-functors" - "descent" - "descriptive-set-theory" - "design-theory" - "determinacy" - "determinantal-ideals" - "determinants" - "dg-algebras" - "dg-categories" - "dg.differential-geometry" - "diagram-chase" - "dieudonne" - "difference-equations" - "differential-algebra" - "differential-calculus" - "differential-cohomology" - "differential-equations" - "differential-forms" - "differential-galois-theor" - "differential-graded-lie-a" - "differential-operators" - "differential-topology" - "differentials" - "digits" - "dimension-theory" - "diophantine-approximation" - "diophantine-equations" - "diophantine-geometry" - "directed-graph" - "dirichlet-forms" - "dirichlet-series" - "discharging" - "discrepancy-theory" - "discrete-geometry" - "discrete-mathematics" - "discrete-morse-theory" - "discrete-series" - "discriminant" - "divergent-series" - "divided-powers" - "division-algebras" - "division-rings" - "divisors" - "divisors-multiples" - "ds.dynamical-systems" - "dual-pairs" - "duality" - "economics" - "effective-results" - "eigenvalues" - "eigenvector" - "einstein-theory" - "eisenstein-series" - "elementary-proofs" - "elimination-theory" - "elliptic-cohomology" - "elliptic-curves" - "elliptic-functions" - "elliptic-integrals" - "elliptic-pde" - "elliptic-surfaces" - "embeddings" - "engineering-mathematics" - "enriched-category-theory" - "entropy" - "enumeration" - "enumerative-combinatorics" - "enumerative-geometry" - "equitable-partition" - "equivariant" - "equivariant-cohomology" - "equivariant-homotopy" - "erdos" - "ergodic-theory" - "estimation-theory" - "etale-cohomology" - "etale-covers" - "etcs" - "etymology" - "euclidean-domain" - "euclidean-geometry" - "euclidean-lattices" - "euler-characteristics" - "euler-product" - "even-morphisms" - "exact-categories" - "examples" - "exceptional-groups" - "existence-theorems" - "expander-graphs" - "experimental-mathematics" - "exponential-functor" - "exponential-polynomials" - "exponential-sums" - "exposition" - "extended-tqft" - "extension" - "exterior-algebra" - "extremal-combinatorics" - "extremal-graph-theory" - "extremal-set-theory" - "f-1" - "f4" - "fa.functional-analysis" - "factorization" - "factorization-system" - "fair-division" - "fano-varieties" - "fans" - "feynman-integral" - "fibered-categories" - "fibered-products" - "fibration" - "fibre-bundles" - "fibre-products" - "fields" - "filtered-algebras" - "filters" - "filtrations" - "fine-structure" - "finite-differences" - "finite-fields" - "finite-geometry" - "finite-groups" - "finite-sets" - "finite-type-invariants" - "fitting-ideals" - "fixed-point-theorems" - "flag-varieties" - "flags" - "flatness" - "flips-flops" - "floer-homology" - "flows" - "fluid-dynamics" - "foliations" - "forcing" - "formal-groups" - "formal-languages" - "formal-proof" - "formal-schemes" - "formalisation" - "formality" - "foundations" - "fourier-analysis" - "fourier-transform" - "fractals" - "fractional-calculus" - "fractional-iteration" - "fractions" - "frechet-manifold" - "free-groups" - "free-lie-algebras" - "free-probability" - "frobenius-algebras" - "frobenius-schur-indicator" - "fuchsian-groups" - "fukaya-category" - "function-fields" - "function-spaces" - "functional-equations" - "functoriality" - "fundamental-group" - "fundamental-lemma" - "fusion-categories" - "fuzziness" - "gaga" - "galois-cohomology" - "galois-connection" - "galois-descent" - "galois-groups" - "galois-representations" - "galois-theory" - "game-theory" - "gamma-function" - "gauge-theory" - "gaussian" - "gaussian-elimination" - "gch" - "gelfand-duality" - "general-relativity" - "generalized-functions" - "generalized-smooth-spaces" - "generating-functions" - "generic-points" - "genus" - "geodesics" - "geometric-analysis" - "geometric-constructions" - "geometric-group-theory" - "geometric-intuition" - "geometric-invariant-theor" - "geometric-langlands" - "geometric-measure-theory" - "geometric-probability" - "geometric-quantization" - "geometric-rep-theory" - "geometric-structures" - "geometry" - "geometry-of-numbers" - "gerbes" - "gerstenhaber-algebra" - "global-fields" - "global-optimization" - "gm.general-mathematics" - "gn.general-topology" - "goldbach-type-problems" - "goodstein-sequences" - "gr.group-theory" - "graded-banach-algebras" - "grants" - "graph-colorings" - "graph-cut" - "graph-distance" - "graph-domination" - "graph-drawing" - "graph-minors" - "graph-polynomials" - "graph-reconstruction" - "graph-theory" - "grassmannians" - "gray-codes" - "green-function" - "groebner-bases" - "gromov-witten-theory" - "grothendieck-construction" - "grothendieck-riemann-roch" - "grothendieck-rings" - "grothendieck-topology" - "group-actions" - "group-algebras" - "group-cohomology" - "group-homology" - "group-rings" - "group-schemes" - "groupoids" - "growth-rate" - "gt.geometric-topology" - "haar-measure" - "hadamard-product" - "hahn-banach-theorem" - "half-integer-weight" - "hall-algebras" - "hamiltonian-graph" - "hamiltonian-mechanics" - "hamiltonian-paths" - "handle-decomposition" - "hankel-matrices" - "harmonic-analysis" - "harmonic-functions" - "hausdorff-dimension" - "hausdorff-spaces" - "heat-equation" - "hecke-algebras" - "hecke-operators" - "heegaard-floer-homology" - "heights" - "heisenberg-groups" - "hermitian" - "heuristics" - "hida-theory" - "higher-algebra" - "higher-category-theory" - "higher-genus-curves" - "hilbert-function" - "hilbert-manifolds" - "hilbert-schemes" - "hilbert-spaces" - "hilbert-symbol" - "ho.history-overview" - "hochschild-cohomology" - "hochschild-homology" - "hodge-structures" - "hodge-theory" - "holomorphic-symplectic" - "holonomy" - "homogeneous-spaces" - "homological-algebra" - "homological-dimension" - "homology" - "homotopy-groups-of-sphere" - "homotopy-limits" - "homotopy-theory" - "homotopy-type-theory" - "hopf-algebras" - "hopf-fibration" - "hurwitz-theory" - "hyperbolic-dynamics" - "hyperbolic-geometry" - "hyperbolic-pde" - "hypercube" - "hyperelliptic-curves" - "hypergeometric-functions" - "hypergraph" - "hyperplane-arrangements" - "hypersurfaces" - "icm-2010" - "icm-2014" - "image-processing" - "implicit-function-theorem" - "incidence-geometry" - "incompressible-surfaces" - "ind-schemes" - "independence-results" - "index-spaghetti" - "index-theory" - "induced-representations" - "induction" - "inequalities" - "infinite-combinatorics" - "infinite-dim-manifolds" - "infinite-sequences" - "infinite-time-computabili" - "infinitesimals" - "infinity-categories" - "infinity-topos-theory" - "injective-modules" - "inner-model-theory" - "inner-models" - "inner-product" - "integer-programming" - "integer-sequences" - "integrable-systems" - "integral-geometry" - "integral-kernel" - "integral-operators" - "integral-quadratic-forms" - "integral-transforms" - "integration" - "internal-categories" - "internal-groupoids" - "internalization" - "interpolation" - "interpolation-spaces" - "intersection-cohomology" - "intersection-theory" - "intuition" - "intuitionism" - "invariant-theory" - "inverse" - "inverse-problems" - "invertible-sheaves" - "involutions" - "irrational-numbers" - "ising-model" - "isometric-immersion" - "isometries" - "isomorphism-testing" - "isoperimetric-problems" - "isoperimetry" - "isotropic-submanifolds" - "it.information-theory" - "iterated-integral" - "iwasawa-theory" - "j-invariant" - "jacobian-conjecture" - "jacobians" - "jets" - "jordan-algebras" - "journals" - "k-homology" - "k3-surfaces" - "kac-moody-algebras" - "kahler-differentials" - "kahler-manifolds" - "kazhdan-lusztig" - "kernels" - "khovanov-homology" - "kk-theory" - "klr-algebras" - "knot-theory" - "kobayashi-hyperbolicity" - "kodaira-dimension" - "koszul-algebras" - "koszul-duality" - "krull-dimension" - "kt.k-theory-homology" - "kummer-theory" - "l-functions" - "lacunary-series" - "lagrangian-submanifolds" - "lambda-calculus" - "lambda-rings" - "langlands-conjectures" - "laplace-equation" - "laplace-transform" - "laplacian" - "large-cardinals" - "latex" - "latin-square" - "lattice-theory" - "lattices" - "laurent-polynomials" - "learning-theory" - "lebesgue-measure" - "leibniz-algebras" - "lfsr.linear-feedback" - "lie-algebra-cohomology" - "lie-algebras" - "lie-algebroids" - "lie-groupoids" - "lie-groups" - "lie-superalgebras" - "lie-theory" - "limit-theorems" - "limitcycle" - "limits" - "line-bundles" - "linear-algebra" - "linear-groups" - "linear-logic" - "linear-orders" - "linear-pde" - "linear-programming" - "linear-regression" - "linguistics" - "linkage" - "lisse-sheaves" - "lo.logic" - "local-cohomology" - "local-fields" - "local-rings" - "local-systems" - "locales" - "localization" - "locally-convex-spaces" - "locally-ringed-spaces" - "log-geometry" - "loop-groups" - "loop-spaces" - "lower-bounds" - "lyndon-words" - "m-matrix" - "maass-forms" - "magma" - "magmas" - "manifolds" - "manuscript" - "mapping-class-groups" - "mapping-space" - "markov-chains" - "martingales" - "matching-theory" - "math-communication" - "math-education-history" - "math-philosophy" - "mathematical-constants" - "mathematical-development" - "mathematical-economics" - "mathematical-finance" - "mathematical-modeling" - "mathematical-software" - "mathematical-writing" - "mathematics-education" - "mathjobs" - "mathscinet" - "matrices" - "matrix-analysis" - "matrix-equations" - "matrix-inverse" - "matrix-theory" - "matroid-theory" - "maurer-cartan-equation" - "measurable-functions" - "measure-concentration" - "measure-theory" - "medicine" - "metamathematics" - "metric-embeddings" - "metric-spaces" - "mg.metric-geometry" - "micro-local-analysis" - "milnor-invariant" - "minimal-model-program" - "mirror-symmetry" - "missing-lemma" - "mixed-characteristic" - "mixing" - "mobius-inversion" - "modal-logic" - "model-categories" - "model-theory" - "models-of-pa" - "modular-forms" - "modular-group" - "modular-rep-theory" - "modular-tensor-categories" - "modules" - "moduli-spaces" - "moment-map" - "monads" - "monodromy" - "monoidal-categories" - "monoids" - "monomial-ideals" - "monster" - "morita-equivalence" - "morita-theory" - "morse-theory" - "moser-iteration" - "motivation" - "motives" - "motivic-cohomology" - "motivic-homotopy" - "mp.mathematical-physics" - "msc" - "multilinear-algebra" - "multiplicative-number-the" - "multiset" - "multiverse-of-sets" - "music-theory" - "na.numerical-analysis" - "names" - "nash-equilibrium" - "nauty" - "necklaces" - "negative-curvature" - "neron-models" - "nets" - "new-foundations" - "nilpotent-cone" - "nilpotent-groups" - "nilpotent-matrices" - "nilpotent-orbits" - "nim" - "nisnevich-topology" - "nks" - "noethertheorem" - "non-archimedean-fields" - "non-associative-algebras" - "non-positive-curvature" - "nonabelian-cohomology" - "noncommutative-algebra" - "noncommutative-geometry" - "noncommutative-rings" - "noncommutative-topology" - "nonlinear-eigenvalue" - "nonlinear-optimization" - "nonlinear-programming" - "nonnegative-matrices" - "nonnoetherian" - "nonstandard-analysis" - "normal-subgroups" - "normalization" - "norms" - "notation" - "np" - "nt.number-theory" - "nuclear-spaces" - "number-fields" - "numerical-linear-algebra" - "o-minimal" - "oa.operator-algebras" - "obstruction-theory" - "oc.optimization-control" - "octonions" - "oeis" - "online-resources" - "open-problem" - "open-problems-list" - "operads" - "operator-ideals" - "operator-norms" - "operator-spaces" - "operator-theory" - "optimal-transportation" - "orbifolds" - "orbit-method" - "order-theory" - "ordered-fields" - "ordinal-analysis" - "ordinal-computability" - "ordinal-numbers" - "orientation" - "oriented-matroids" - "origami-folding" - "orthogonal-groups" - "orthogonal-matrices" - "orthogonal-polynomials" - "outer-automorphisms" - "p-adic" - "p-adic-analysis" - "p-adic-groups" - "p-adic-hodge-theory" - "p-adic-numbers" - "p-groups" - "packing" - "parabolic-pde" - "paracompactness" - "paradox" - "parameterized-homotopy" - "parity" - "partial-hyperbolicity" - "partial-information-games" - "partition-of-unity" - "partitions" - "path-connected" - "pattern-avoidance" - "pattern-matching" - "pbw-theorems" - "pcf-theory" - "peano-arithmetic" - "peer-review" - "percolation" - "perfect-matchings" - "perfect-numbers" - "periodic-functions" - "permanent" - "permutation-groups" - "permutations" - "perturbation" - "perturbation-theory" - "perverse-sheaves" - "physics" - "picard-group" - "pl-manifolds" - "planar-algebras" - "plane-geometry" - "plethory" - "plethysm" - "point-set-topology" - "poisson-geometry" - "poker" - "polar-body" - "polygons" - "polyhedra" - "polylogarithms" - "polymath3" - "polymath5" - "polynomial-functor" - "polynomials" - "polytopes" - "pontrjagin-duality" - "popularization" - "posets" - "positive-characteristic" - "positivity" - "potential-theory" - "power-series" - "powerful-numbers" - "pr.probability" - "preduals" - "presentable-categories" - "presentations-of-groups" - "prime-constellations" - "prime-ideals" - "prime-number-theorem" - "prime-numbers" - "primitive-elements" - "primitive-ideal" - "primitive-roots" - "principal-bundles" - "probabilistic-number-theo" - "probability-distributions" - "problem-solving" - "products" - "profinite-groups" - "profunctors" - "projective-geometry" - "projective-module" - "projective-morphisms" - "projective-resolution" - "proof-assistant" - "proof-complexity" - "proof-theory" - "proofs" - "property-t" - "prufer-domain" - "pseudo-differential-opera" - "pseudogroups" - "publishing" - "puiseux-series" - "pullback" - "pushforward" - "puzzle" - "q-analogs" - "q-identities" - "qa.quantum-algebra" - "quadratic-forms" - "quadratic-programming" - "quadratic-reciprocity" - "quadratic-residues" - "quadrature" - "quadrics" - "quandles" - "quantization" - "quantum-cohomology" - "quantum-computation" - "quantum-field-theory" - "quantum-groups" - "quantum-mechanics" - "quantum-topology" - "quasi-coherent-modules" - "quasiconformal" - "quasimodular-forms" - "quaternionic-geometry" - "quaternions" - "queueing-theory" - "quiver-varieties" - "quivers" - "r-matrix" - "ra.rings-and-algebras" - "ramification" - "ramsey-theory" - "random-functions" - "random-graphs" - "random-matrices" - "random-permutations" - "random-walk" - "rational-curves" - "rational-functions" - "rational-homotopy-theory" - "rational-points" - "reading-list" - "real-algebra" - "real-algebraic-geometry" - "real-analysis" - "real-analytic-structures" - "realizability" - "recreational-mathematics" - "recurrences" - "reduction-graphs" - "reductive-groups" - "reference-request" - "reflection-groups" - "regular-rings" - "regularity" - "regularization" - "relation-algebra" - "renormalization" - "representable-functors" - "representation" - "reshetikhin-turaev" - "resolution" - "resolution-of-singulariti" - "restricted-lie-algebras" - "resultants" - "reverse-math" - "ribbon-hopf-algebras" - "ricci-flow" - "riemann-hypothesis" - "riemann-surfaces" - "riemann-zeta-function" - "riemannian-geometry" - "rigged-hilbert-spaces" - "rigid-analytic-geometry" - "rigidity" - "ring-spectra" - "ringed-spaces" - "robinson-schensted" - "root-systems" - "roots-of-unity" - "rt.representation-theory" - "sage" - "sampling" - "sandpile" - "sat" - "scattering" - "schemes" - "schrodinger-operators" - "schubert-calculus" - "schubert-cells" - "schubert-varieties" - "schur-complement" - "schur-functions" - "schur-functors" - "schur-multipliers" - "schwartz-distributions" - "seifert-fiber-spaces" - "selberg-class" - "semi-riemannian-geometry" - "semicontinuity" - "semidefinite-programming" - "semigroups" - "semirings" - "separable-algebras" - "separation-axioms" - "sequences-and-series" - "serre-duality" - "set-systems" - "set-theory" - "several-complex-variables" - "sg.symplectic-geometry" - "shape-theory" - "sheaf-cohomology" - "sheaf-theory" - "sheaves" - "shimura-varieties" - "short-exact-sequences" - "short-list" - "sidon-sets" - "siegel-modular-forms" - "sieve-theory" - "signal-analysis" - "similarity" - "simple-homotopy-theory" - "simplicial-categories" - "simplicial-complexes" - "simplicial-presheaves" - "simplicial-stuff" - "simplicial-volume" - "simulation" - "singularity-theory" - "sites" - "six-operations" - "skein-relation" - "sketches" - "slick-proof" - "slodowy-slice" - "smooth-manifolds" - "smooth-structures" - "smoothing-theory" - "smoothness" - "sobolev-spaces" - "social-choice" - "society" - "sociology-of-math" - "sofic-groups" - "soft-question" - "software" - "solvable-groups" - "sp.spectral-theory" - "space-filling-curves" - "spanning-tree" - "sparse-matrices" - "special-functions" - "special-relativity" - "species" - "spectral" - "spectral-gap" - "spectral-graph-theory" - "spectral-sequences" - "spectral-triples" - "sphere-packing" - "spherical-geometry" - "spherical-varieties" - "spin-geometry" - "springer-fibres" - "square-free" - "st.statistics" - "stability" - "stable-category" - "stable-homotopy" - "stable-homotopy-category" - "stacks" - "statistical-physics" - "steenrod-algebra" - "stein-manifolds" - "steiner-triple-system" - "stick-knots" - "stirling-numbers" - "stochastic-calculus" - "stochastic-diff-equations" - "stochastic-processes" - "stone-cech" - "stratifications" - "string-diagrams" - "string-theory" - "string-topology" - "strongly-regular-graph" - "sturm-liouville-theory" - "sub-riemannian-geometry" - "subfactors" - "subgraph" - "submersions" - "sudoku" - "sums-of-squares" - "sumsets" - "super-algebra" - "super-linear-algebra" - "supercuspidal-repr" - "supermanifolds" - "supersymmetry" - "supramenability" - "surfaces" - "surgery-theory" - "surreal-analysis" - "surreal-numbers" - "symbolic-computation" - "symbolic-dynamics" - "symmetric-algebras" - "symmetric-functions" - "symmetric-group" - "symmetric-monoidal-catego" - "symmetric-polynomials" - "symmetric-power" - "symmetric-spaces" - "symmetry" - "symplectic-group" - "symplectic-topology" - "systolic-geometry" - "syzygies" - "t-structure" - "tag-removed" - "tangent-distributions" - "tangles" - "tannakian-category" - "tate-shafarevich-groups" - "taylor-series" - "teaching" - "teichmuller-theory" - "tensor" - "tensor-powers" - "tensor-products" - "terminology" - "textbook-recommendation" - "thermodynamic-formalism" - "thesis" - "theta-function" - "theta-series" - "tiling" - "tilting" - "toeplitz-operators" - "topological-algebras" - "topological-graph-theory" - "topological-groups" - "topological-manifolds" - "topological-vector-spaces" - "topos-theory" - "toric-varieties" - "torsion" - "torsion-theory" - "torus" - "torus-action" - "tqft" - "trace-formula" - "traces" - "transcend.-number-theory" - "transcendence" - "transfinite-induction" - "transformation-groups" - "translation" - "transversality" - "trees" - "triangles" - "triangulated-categories" - "triangulations" - "trigonometric-polynomials" - "trigonometric-sums" - "trinomial" - "tropical-arithmetic" - "tropical-geometry" - "tutte-polynomial" - "type-theory" - "ufds" - "ultrafilters" - "ultrafinitism" - "ultrapowers" - "unbounded-operators" - "uniform-spaces" - "unit-fractions" - "unitary-representations" - "universal-algebra" - "universal-property" - "valuation-theory" - "valuative-criteria" - "vanishing" - "vanishing-cycles" - "vector-bundles" - "vector-spaces" - "vertex-algebras" - "virasoro-algebra" - "virtual-knots" - "visualization" - "von-neumann-algebras" - "voting-theory" - "w-algebras" - "wave-equation" - "wavelets" - "wcatss" - "wd-representations" - "weierstrass-preparation" - "weights" - "weil-conjectures" - "weyl-algebra" - "weyl-group" - "whitehead-problem" - "witt-vectors" - "word-problem" - "yoneda-lemma" - "young-tableaux" - "zeta-functions") diff --git a/data/tags/mechanics.el b/data/tags/mechanics.el deleted file mode 100644 index a4e3e66..0000000 --- a/data/tags/mechanics.el +++ /dev/null @@ -1,591 +0,0 @@ -("1975" - "2006" - "318i" - "325i" - "350z" - "440" - "4l60e" - "4l80e" - "4wd" - "626" - "850" - "9-5" - "a4" - "abs" - "ac" - "acceleration" - "accent" - "accord" - "acura" - "adhesive" - "aftermarket-upgrade" - "air-filter" - "air-intake" - "airbag" - "alarm" - "alignment" - "allegro" - "alternator" - "altima" - "alto" - "api" - "arcadia" - "astro" - "audi" - "audio" - "austin" - "automatic-transmission" - "automotive-design" - "avalon" - "avenger" - "avensis" - "aveo" - "awd" - "axle" - "b-body" - "b2300" - "backfire" - "bajaj" - "barina" - "battery" - "battery-isolator" - "bearing" - "beetle" - "belt" - "belt-tensioner" - "blazer" - "block-heater" - "bluetooth" - "bmw" - "body" - "body-filler" - "body-work" - "bonneville" - "brake-fluid" - "brake-light" - "brake-rotor" - "brakes" - "braking" - "bravada" - "break-in" - "bronco" - "buick" - "buying" - "by-pass" - "c-class" - "c250" - "c4" - "cabin-filter" - "camaro" - "camera" - "camry" - "camshaft" - "can-bus" - "capacity" - "caprice" - "car" - "caravan" - "carburetor" - "carina" - "catalytic-converter" - "cavalier" - "cd2" - "cdw27" - "cel" - "charger" - "charging" - "chassis" - "cherokee" - "chevrolet" - "chrysler" - "citroen" - "civic" - "cleaning" - "climate-control" - "clio" - "clutch" - "clutch-cylinder" - "cng" - "cobalt" - "coil" - "cold-start" - "colt" - "compression" - "computer" - "contour" - "conversion" - "coolant" - "cooling" - "cooling-system" - "corolla" - "corrosion" - "corsa" - "cosmetic" - "cranks-wont-run" - "crdi" - "crown-victoria" - "cruise-control" - "crv" - "cv-boot" - "cv-joint" - "cx7" - "d186" - "daewoo" - "daihatsu" - "damage" - "dealer" - "death-wobble" - "delta" - "dent" - "dexron-ii" - "diesel" - "differential" - "discovery" - "diy" - "dn101" - "dodge" - "door" - "dot3" - "dot4" - "drivetrain" - "driving" - "dtc" - "dual-mass-flywheel" - "duke" - "durango" - "e85" - "ebd" - "eclipse" - "eco-mode" - "econovan" - "ecotec" - "ecu" - "egr" - "elantra" - "electrical" - "electronics" - "emissions" - "enfield-bullet" - "enfield-classic" - "engine" - "enjoy" - "envoy" - "epsilon" - "equinox" - "es300" - "escape" - "escort" - "ethanol" - "evap" - "exhaust" - "expedition" - "explorer" - "express-van" - "exterior" - "f-150" - "f-250" - "f-350" - "f-700" - "fan" - "ferrari" - "fiat" - "fiesta" - "fit" - "fob" - "focus" - "ford" - "ford-panther-platform" - "forester" - "forte" - "frame" - "freestar" - "freezing" - "fuel-additives" - "fuel-cap" - "fuel-consumption" - "fuel-filter" - "fuel-injection" - "fuel-leak" - "fuel-line" - "fuel-system" - "fuel-tank" - "fuse" - "fuse-panel" - "fusion" - "g35" - "g6-holden-commodore" - "gasket" - "gasoline" - "gauges" - "gear-oil" - "gears" - "generator" - "geo" - "gixxer" - "glowplugs" - "gm" - "gmc" - "golf" - "grade" - "grand-am" - "grand-cherokee" - "grand-marquis" - "grand-prix" - "grease" - "guage" - "handbrake" - "harley-davidson" - "head-gasket" - "headlight" - "heat" - "heater" - "heater-blower" - "hesitation" - "hhr" - "hid" - "highlander" - "honda" - "hood" - "hot-start" - "hvac" - "hybrid" - "hyundai" - "idle" - "ignition" - "ignition-key" - "immobilizer" - "impala" - "impreza" - "indicators" - "inifinity" - "injection" - "inspection" - "installation" - "instrument" - "integrale" - "interior" - "jack" - "jaguar" - "jeep" - "jetta" - "john-deere" - "jump-start" - "kawasaki" - "key" - "keyless-entry" - "kia" - "kluger" - "ktm" - "l200" - "lacrosse" - "lamborghini" - "lancer" - "lancia-delta" - "lancia-kappa" - "land-rover" - "lantis-323" - "laredo" - "leak" - "legacy" - "lesabre" - "lexus" - "license-plates" - "lift-kit" - "light" - "lights" - "lincoln" - "locks" - "lpg" - "ls1" - "lsd" - "lt1" - "lubrication" - "lug-nut" - "lumina-ss" - "maf" - "magnum" - "maintenance" - "malibu" - "manual" - "mark-viii" - "maruti" - "matiz" - "matrix" - "maxima" - "mazda" - "mazda-3" - "mazda-6" - "megane" - "mercedes-benz" - "mercury" - "metro" - "micra" - "mil" - "milan" - "mini-cooper" - "misfire" - "mitsubishi" - "mk5" - "ml320" - "monte-carlo" - "monterey" - "motor-mounts" - "motorcycle" - "motors" - "muffler" - "mustang" - "mystique" - "n-body" - "navigation" - "neon" - "nissan" - "noise" - "nut" - "o2-sensor" - "obd-i" - "obd-ii" - "octane" - "odometer" - "oil" - "oil-change" - "oil-filter" - "oil-leak" - "oil-pan" - "old-cars" - "oldsmobile" - "opel" - "outback" - "overheating" - "p0013" - "p0031" - "p0037" - "p0108" - "p0122" - "p0128" - "p0130" - "p0133" - "p0136" - "p0171" - "p0304" - "p0340" - "p0350" - "p0401" - "p0403" - "p0420" - "p0430" - "p0446" - "p0447" - "p0457" - "p0507" - "p0743" - "p0755" - "p1135" - "p1155" - "p1166" - "p1167" - "p1233" - "p1490" - "p1747" - "p2181" - "p2195" - "paint" - "paint-scratches" - "pairing" - "parking" - "parking-brake" - "part-identification" - "parts" - "passat" - "passlock" - "pathfinder" - "patriot" - "pcm" - "pcv-system" - "pcv-valve" - "performance" - "peugeot" - "pick-up" - "pilot" - "plasti-dip" - "plymouth" - "pontiac" - "porsche" - "power" - "power-outlet" - "power-steering" - "power-windows" - "premio-260" - "pressure" - "primera" - "program" - "protege5" - "pt-cruiser" - "pulley" - "pulsar" - "q45" - "r1100rt" - "r134a" - "radiator" - "radio" - "ram" - "ram-van" - "ranger" - "rattle" - "rear-differential" - "rear-main-seal" - "rearview-mirror" - "recycle" - "registration" - "relay" - "remote-start" - "renault" - "rendezvous" - "repair" - "replace" - "restoration" - "retrofit" - "rims" - "rio" - "rio-5" - "rondo" - "rough-idle" - "rover" - "royal" - "rpm" - "rust" - "rv" - "rwd" - "rx300" - "rx330" - "s-type" - "s2000" - "s60" - "saab" - "safety" - "santa-fe" - "sante-fe" - "saturn" - "sbc" - "scheduled-maintenance" - "scion" - "scooter" - "screw" - "seat" - "seat-belt" - "seat-ibiza" - "seat-leon" - "security" - "sedona" - "sensor" - "service" - "servicing" - "shaking" - "shifting" - "shine-mc" - "shock-absorber" - "short" - "sienna" - "sierra-denali" - "silverado" - "skoda" - "skylark" - "sl1" - "sl200" - "small-engine" - "smartkey" - "smell" - "software" - "solenoid" - "sonata" - "soul" - "spare-tire" - "sparkplugs" - "speakers" - "spec" - "speedometer" - "sportage" - "springs" - "sprinter" - "srt-4" - "stability" - "stall" - "starter" - "starting" - "steering" - "steering-wheel" - "stereo" - "strange-sounds" - "stratus" - "struts" - "stuck-bolt" - "subaru" - "suburban" - "surging" - "suspension" - "suzuki" - "sv-650" - "tail-lights" - "taurus" - "tdci" - "tdi" - "telstar" - "testing" - "thermostat" - "throttle" - "throttle-position-sensor" - "throw-out-bearing" - "thunderbird-1968" - "timing" - "timing-belt" - "tires" - "tools" - "top-dead-center" - "torque" - "towing" - "toyota" - "tpms" - "trailblazer" - "trailer" - "transmission" - "troubleshooting" - "truck" - "tsx" - "tuning" - "turbocharger" - "turn-signal" - "two-stroke" - "un105" - "undercoating" - "untagged" - "used" - "valve-timing" - "vauxhall" - "vents" - "vibration" - "vios" - "viper" - "volvo" - "vtec" - "vw" - "warmup" - "warning-light" - "warranty" - "water-leak" - "water-pump" - "wear" - "wheel-speed-sensor" - "wheels" - "windshield" - "windshield-washer" - "windshield-wipers" - "windstar" - "wingroad" - "winter" - "wiring" - "wrangler" - "wrx" - "xc90" - "xterra" - "yamaha" - "yaris" - "zetec") diff --git a/data/tags/meta.academia.el b/data/tags/meta.academia.el deleted file mode 100644 index 778508e..0000000 --- a/data/tags/meta.academia.el +++ /dev/null @@ -1,93 +0,0 @@ -("accepted-answer" - "allowed-questions" - "answers" - "area51" - "asking-questions" - "badges" - "best-practices" - "bounty" - "bug" - "burninate-request" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "conflict-of-interest" - "data-dump" - "data-explorer" - "deleted-comments" - "deleted-questions" - "deleting" - "design" - "disclosure" - "discussion" - "down-votes" - "editing" - "election" - "ethics" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "localized-questions" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic-ness" - "openid" - "policy" - "profile-page" - "publishing" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective-question" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "undergraduate" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.android.el b/data/tags/meta.android.el deleted file mode 100644 index ab72554..0000000 --- a/data/tags/meta.android.el +++ /dev/null @@ -1,117 +0,0 @@ -("10k-tools" - "accepted-answer" - "allowed-topics" - "android-app" - "android-browser" - "android-versions" - "answering-questions" - "answers" - "app-recommendation" - "apps" - "asking-questions" - "badges" - "best-practices" - "beta" - "bounty" - "bug" - "canonical-questions" - "captcha" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "deleting-posts" - "design" - "discussion" - "down-votes" - "duplicates" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "feed" - "flag-weight" - "flagging" - "flags" - "formatting" - "hyperlinks" - "interesting-tags" - "layout" - "linking" - "login" - "markdown" - "market" - "meta" - "meta-tags" - "migration" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "openid" - "privileges" - "profile-page" - "protected-questions" - "qr-codes" - "quality-filter" - "question-appropriateness" - "questions" - "recent-activity" - "recommendation" - "related-questions" - "repository" - "reputation" - "retag-request" - "retagging" - "review" - "rss" - "scope" - "search" - "serial-voting" - "shopping" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "synonym-request" - "tag-cleanup" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "top-bar" - "traffic" - "twitter" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "warez" - "wiki" - "winterbash") diff --git a/data/tags/meta.anime.el b/data/tags/meta.anime.el deleted file mode 100644 index f2fe711..0000000 --- a/data/tags/meta.anime.el +++ /dev/null @@ -1,96 +0,0 @@ -("about" - "acceptable-questions" - "accepted-answer" - "allowed-topics" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "chat-sessions" - "cleanup" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-events" - "community-wiki" - "copyright" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "editor" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-proposal" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "guidelines" - "help-center" - "hyperlinks" - "identification-questions" - "interesting-tags" - "list-questions" - "login" - "low-quality" - "lumping-and-splitting" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "references" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "spoilers" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-excerpts" - "tag-synonyms" - "tag-wiki" - "tags" - "title-wording" - "unanswered-questions" - "unicorns" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "winterbash-2014" - "zombies") diff --git a/data/tags/meta.apple.el b/data/tags/meta.apple.el deleted file mode 100644 index ff1e3a1..0000000 --- a/data/tags/meta.apple.el +++ /dev/null @@ -1,104 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "best-practices" - "beta" - "beta-essentials" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-user" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "editing" - "editor" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "fun" - "graphics" - "guideline" - "hyperlinks" - "images" - "inbox" - "ios" - "ios8" - "ipad" - "iphone" - "itunes-connect" - "lion" - "locking" - "login" - "meta" - "migration" - "mobile" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "openid" - "osx" - "performance" - "podcast" - "podcast-episode" - "poo-storm" - "prerelease" - "privileges" - "profile-page" - "questions" - "recent-activity" - "reputation" - "review-page" - "rss" - "search" - "site-ads" - "site-name" - "site-promotion" - "site-scope" - "software-recommendation" - "spam" - "specific-question" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "subjective-questions" - "suggested-edits" - "support" - "swift" - "tags" - "troubleshooting" - "twitter" - "unanswered-questions" - "user-accounts" - "user-interface" - "users" - "voting" - "wiki" - "wwdc" - "yosemite") diff --git a/data/tags/meta.arduino.el b/data/tags/meta.arduino.el deleted file mode 100644 index 9a944c6..0000000 --- a/data/tags/meta.arduino.el +++ /dev/null @@ -1,83 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "censorship" - "chat" - "circuit-diagram" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-moderators" - "community-wiki" - "content-quality" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "events" - "exact-duplicates" - "faq" - "favicon" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "private-beta" - "profile-page" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-design" - "site-evaluation" - "site-promotion" - "site-scope" - "site-tour" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "users-page" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.askubuntu.el b/data/tags/meta.askubuntu.el deleted file mode 100644 index 7e9e903..0000000 --- a/data/tags/meta.askubuntu.el +++ /dev/null @@ -1,191 +0,0 @@ -("10k-tools" - "abuse" - "accept-rate" - "acceptable-use" - "accepted-answer" - "add-on" - "advertising" - "android" - "answer-format" - "answer-quality" - "answered-questions" - "answering" - "answers" - "answers-as-comments" - "api" - "applet" - "apturl" - "asking-questions" - "audits" - "auto-delete" - "badges" - "best-practice" - "bounty" - "browser" - "bug" - "bug-reports" - "burnination-request" - "canonical-answer" - "canonical-questions" - "captcha" - "chat" - "cleanup" - "close-dialog" - "close-reasons" - "close-review-queue" - "closed-questions" - "code-formatting" - "comments" - "community" - "community-ads" - "community-bulletin" - "community-user" - "community-wiki" - "conferences" - "copyright" - "css" - "data-dump" - "data-explorer" - "delete" - "deleted-answers" - "deleted-questions" - "derivatives" - "design" - "discussion" - "down-votes" - "downvoting" - "duplicate-accounts" - "duplicates" - "edit-summary" - "editing" - "election" - "elevator-pitch" - "email" - "end-of-life" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-proposed" - "faq-suggestion" - "favorites" - "feature-request" - "featured" - "features" - "feeds" - "firefox" - "flagging" - "flags" - "flair" - "font" - "formatting" - "fun" - "google+" - "gravatar" - "hats" - "help" - "help-center" - "hyperlinks" - "icon" - "image" - "incorrectly-closed" - "interesting-tags" - "keyboard-shortcuts" - "languages" - "launchpad" - "legal" - "link" - "loco" - "login" - "low-quality-posts" - "markdown" - "merge" - "merge-request" - "meta" - "migration" - "mint" - "mod-meeting" - "moderation" - "moderators" - "new-users" - "notifications" - "offtopic-questions" - "old-questions" - "openid" - "plagiarism" - "post-ban" - "privileges" - "profile-page" - "promote" - "question-quality" - "question-titles" - "questions" - "rate-limiting" - "recent-activity" - "reopen-request" - "reputation" - "retag-request" - "retagging" - "review" - "review-beta" - "review-queue" - "revision-history" - "revisions" - "rss" - "scope" - "scroll" - "search" - "searching" - "server" - "site-attributes" - "site-faq" - "site-promotion" - "spam" - "spam-handling" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "suggested-edits" - "suggested-tags" - "support" - "syntax-highlighting" - "tag-blacklist-request" - "tag-merge" - "tag-renaming" - "tag-synonyms" - "tag-wiki" - "tagging" - "tagline" - "tags" - "terms-of-service" - "text-formattng" - "tools" - "top-7" - "top-bar" - "traffic" - "tutorials" - "ubuntu-community" - "uds" - "uds-n" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-communication" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "webapps" - "where-to-file-bug-report" - "windows" - "winter-bash") diff --git a/data/tags/meta.astronomy.el b/data/tags/meta.astronomy.el deleted file mode 100644 index cdde441..0000000 --- a/data/tags/meta.astronomy.el +++ /dev/null @@ -1,75 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "expertise" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "physics.se" - "profile-page" - "questions" - "recent-activity" - "reputation" - "resources" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.aviation.el b/data/tags/meta.aviation.el deleted file mode 100644 index 6bba298..0000000 --- a/data/tags/meta.aviation.el +++ /dev/null @@ -1,83 +0,0 @@ -("accepted-answer" - "acronyms" - "answers" - "area51-proposal" - "asking-questions" - "badges" - "blacklist-request" - "blog" - "books" - "bot" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "layout" - "login" - "low-quality" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "typesetting" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.beer.el b/data/tags/meta.beer.el deleted file mode 100644 index 71e44fa..0000000 --- a/data/tags/meta.beer.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "food-pairings" - "formatting" - "homebrew" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "pairing" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retag-request" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "specificity" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "terminology" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.bicycles.el b/data/tags/meta.bicycles.el deleted file mode 100644 index acaf61a..0000000 --- a/data/tags/meta.bicycles.el +++ /dev/null @@ -1,93 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bike-to-work-day" - "bike-to-work-month" - "blog" - "bounty" - "bug" - "chat" - "cleanup" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "contest" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discrimination" - "discussion" - "down-votes" - "editing" - "election" - "essential-meta-questions" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "launch" - "liability" - "links" - "login" - "markdown" - "meetup" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-off-topic" - "openid" - "peer-review" - "policy" - "privileges" - "product-rec" - "profile-page" - "publicity" - "quality" - "questions" - "recent-activity" - "regional" - "reputation" - "retagging" - "rss" - "search" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "too-localized" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.biology.el b/data/tags/meta.biology.el deleted file mode 100644 index e26b4ab..0000000 --- a/data/tags/meta.biology.el +++ /dev/null @@ -1,89 +0,0 @@ -("accepted-answer" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "collaboration" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "deletion" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "event" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "graduation" - "help-center" - "hyperlinks" - "interesting-tags" - "ios-app" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "philosophy" - "points" - "policy" - "profile-page" - "promotion" - "proposed-faq" - "quality" - "questions" - "recent-activity" - "recommendations" - "references" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "social-media" - "species-identification" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wikis" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "url" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.bitcoin.el b/data/tags/meta.bitcoin.el deleted file mode 100644 index f8ebe10..0000000 --- a/data/tags/meta.bitcoin.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "answering" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "conference" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "on-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "ripple" - "rss" - "scope" - "search" - "site-evaluation" - "spam" - "speakers-bureau" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.blender.el b/data/tags/meta.blender.el deleted file mode 100644 index c635d22..0000000 --- a/data/tags/meta.blender.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "contest" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "platform" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scheduled-chat" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "syntax" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.boardgames.el b/data/tags/meta.boardgames.el deleted file mode 100644 index 82b82da..0000000 --- a/data/tags/meta.boardgames.el +++ /dev/null @@ -1,81 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "chess" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "elevator-pitch" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "flooding" - "formatting" - "good-question" - "hyperlinks" - "interesting-tags" - "invalid-answers" - "login" - "magic-the-gathering" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "mtg-autocard" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "promotion" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-attributes" - "site-evaluation" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "support" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "votes" - "voting") diff --git a/data/tags/meta.bricks.el b/data/tags/meta.bricks.el deleted file mode 100644 index 16142d8..0000000 --- a/data/tags/meta.bricks.el +++ /dev/null @@ -1,78 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "competition" - "convention-report" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "fll" - "formatting" - "growth" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retag-request" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "speakers-bureau" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "trademark" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.buddhism.el b/data/tags/meta.buddhism.el deleted file mode 100644 index d00e64e..0000000 --- a/data/tags/meta.buddhism.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-system" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "spelling" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "traditions" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.chemistry.el b/data/tags/meta.chemistry.el deleted file mode 100644 index 4586c07..0000000 --- a/data/tags/meta.chemistry.el +++ /dev/null @@ -1,79 +0,0 @@ -("7-questions" - "accepted-answer" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "chat-event" - "chemical-formulas" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "homework" - "hyperlinks" - "interesting-tags" - "ios-app" - "login" - "markdown" - "mathjax" - "meta" - "mhchem" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tags" - "titles" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.chess.el b/data/tags/meta.chess.el deleted file mode 100644 index de63eb4..0000000 --- a/data/tags/meta.chess.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "behavior" - "beta" - "blitz" - "bounty" - "bug" - "chat" - "chessbase" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "live" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "pgn-viewer" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "site-scope" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.chinese.el b/data/tags/meta.chinese.el deleted file mode 100644 index 9cbe6a7..0000000 --- a/data/tags/meta.chinese.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "chat" - "chat-events" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "languages" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "offensive-language" - "openid" - "pinyin" - "policy" - "profile-page" - "questions" - "recent-activity" - "reputation" - "resources" - "retagging" - "rss" - "search" - "site-evaluation" - "site-faq" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "translation" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.christianity.el b/data/tags/meta.christianity.el deleted file mode 100644 index 24294c9..0000000 --- a/data/tags/meta.christianity.el +++ /dev/null @@ -1,126 +0,0 @@ -("accepted-answer" - "allowed-answers" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "banning" - "best-practice" - "bible" - "bible-quotes" - "blog" - "bounty" - "bug" - "captcha" - "catholicism" - "chat" - "citations" - "cleanup" - "close-reasons" - "closed-questions" - "code-of-conduct" - "comments" - "community-ads" - "community-wiki" - "completed" - "copyright" - "correction" - "data-dump" - "data-explorer" - "deleted-answer" - "deleted-comments" - "deleted-questions" - "denominations" - "design" - "discussion" - "doctrine" - "down-votes" - "downvoting" - "editing" - "election" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-discussion" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "flamewar" - "formatting" - "fun" - "help-center" - "hyperlinks" - "interesting-tags" - "irony" - "latin" - "list-questions" - "login" - "logo" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "not-constructive" - "notifications" - "objectivity" - "off-topic" - "on-topic-definition" - "openid" - "pastoral-advice-questions" - "political-correctness" - "pov" - "privileges" - "profile-page" - "proposal" - "quality-evaluation" - "questions" - "quoting" - "rant" - "recent-activity" - "reference" - "reopen-request" - "reputation" - "retagging" - "review-queue" - "rss" - "science" - "scope" - "search" - "sensitive-topics" - "sex" - "site-definition" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective-questions" - "support" - "tag-synonyms" - "tag-wiki" - "tags" - "terminology" - "titles" - "too-broad" - "trolls" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.codegolf.el b/data/tags/meta.codegolf.el deleted file mode 100644 index 8632e4d..0000000 --- a/data/tags/meta.codegolf.el +++ /dev/null @@ -1,121 +0,0 @@ -("about-page" - "abuse" - "accepted-answer" - "answers" - "asking-questions" - "atomic-code-golf" - "audio" - "badges" - "beta-status" - "blog" - "bounty" - "brainfuck" - "bug" - "challenge-quality" - "characters" - "chat" - "clarification" - "close-reasons" - "closed-questions" - "code-bowling" - "code-challenge" - "code-golf" - "code-trolling" - "comments" - "community-ads" - "community-wiki" - "contest-type" - "data-dump" - "data-explorer" - "defaults" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favicon" - "favorites" - "feature-request" - "featured" - "flagging" - "flags" - "formatting" - "golfscript" - "handicap" - "hyperlinks" - "interesting-tags" - "latex" - "legal-issues" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "neutrality" - "new-genre" - "new-users" - "notifications" - "openid" - "php" - "policy" - "popularity-contest" - "profile-page" - "protected-questions" - "puzzle-push" - "questions" - "recent-activity" - "reopening" - "reputation" - "retagging" - "reviewing" - "rss" - "rules" - "sandbox" - "scope" - "scoring" - "search" - "site-health" - "sock-puppets" - "specific-comment" - "specific-question" - "specification" - "spoilers" - "stack-snippets" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "synonym-request" - "syntax-highlighting" - "tag-badges" - "tag-synonyms" - "tagging" - "tags" - "testing" - "titles" - "unanswered-questions" - "underhanded" - "ungolfing" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "vote-to-delete" - "votes" - "voting" - "weekly-challenges" - "whitespace" - "winning-criteria") diff --git a/data/tags/meta.codereview.el b/data/tags/meta.codereview.el deleted file mode 100644 index 1d21ceb..0000000 --- a/data/tags/meta.codereview.el +++ /dev/null @@ -1,128 +0,0 @@ -("accepted-answer" - "answer-invalidation" - "answers" - "appended-improvements" - "asking-questions" - "badge-request" - "badges" - "ban" - "best-of" - "beta-progress" - "blacklist-request" - "blog" - "bounty" - "broken-code" - "bug" - "burninate-request" - "character-limit" - "chat" - "chatbot" - "close-dialog" - "close-reasons" - "closed-questions" - "code-length" - "comment-style" - "comments" - "community-ads" - "community-bulletin" - "community-challenge" - "community-wiki" - "comparative-review" - "contest" - "convention" - "convert-to-comment" - "cross-posting" - "data-dump" - "data-explorer" - "deleted-questions" - "deleted-users" - "discussion" - "down-votes" - "duplicates" - "editing" - "editor" - "etiquette" - "exact-duplicates" - "example-code" - "faq" - "favorites" - "feature-request" - "featured" - "first-post" - "flagging" - "formatting" - "fun" - "google" - "help-center" - "homework" - "hyperlinks" - "interesting-tags" - "iterative-review" - "latex" - "licensing" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "nitpick" - "notifications" - "off-topic" - "on-topic" - "openid" - "pictures" - "post-notice" - "profile-page" - "publicity" - "questions" - "recent-activity" - "reputation" - "resource-tags" - "retag-request" - "review" - "rss" - "scope" - "search" - "self-answer" - "site-policy" - "spam" - "specific-answer" - "specific-question" - "stack-snippets" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "synonym-request" - "syntax-highlighting" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "third-party" - "title" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "user-retention" - "users" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "weekend-challenge" - "winterbash" - "wording") diff --git a/data/tags/meta.cogsci.el b/data/tags/meta.cogsci.el deleted file mode 100644 index 61819ac..0000000 --- a/data/tags/meta.cogsci.el +++ /dev/null @@ -1,92 +0,0 @@ -("accepted-answer" - "advertising" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "convention" - "data-dump" - "data-explorer" - "deleted-answer" - "deleted-questions" - "design" - "discussion" - "display-name" - "down-votes" - "editing" - "equations" - "essential-beta-questions" - "etiquette" - "exact-duplicates" - "faq" - "faq-contents" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderator" - "name" - "new-users" - "notifications" - "on-topic" - "openid" - "privileges" - "profile-page" - "questions" - "recent-activity" - "references" - "reputation" - "research" - "resource" - "retagging" - "rss" - "scope" - "search" - "self-help-questions" - "site-evaluation" - "site-graduation" - "site-milestones" - "site-promotion" - "site-statistics" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "suspension" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "voting-fraud" - "welcome-message") diff --git a/data/tags/meta.cooking.el b/data/tags/meta.cooking.el deleted file mode 100644 index d102278..0000000 --- a/data/tags/meta.cooking.el +++ /dev/null @@ -1,100 +0,0 @@ -("accepted-answer" - "alcohol" - "allowed-topics" - "amazon" - "answers" - "asking-questions" - "badges" - "beta" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing" - "comments" - "community-ads" - "community-wiki" - "conferences" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "food-safety" - "formatting" - "glossary" - "health-and-safety" - "hyperlinks" - "interesting-tags" - "language" - "leftovers" - "links" - "login" - "logo" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "profile-page" - "promotion" - "publicity" - "questions" - "recent-activity" - "recipe" - "recipes" - "reputation" - "retag-request" - "retagging" - "review" - "rss" - "rules" - "scope" - "search" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjectivity" - "suggestion" - "support" - "swag" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "top-bar" - "unanswered-questions" - "units" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "weekly-contest") diff --git a/data/tags/meta.craftcms.el b/data/tags/meta.craftcms.el deleted file mode 100644 index a87a289..0000000 --- a/data/tags/meta.craftcms.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favicon" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "logo" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retag-request" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "syntax" - "syntax-highlighting" - "tag-synonyms" - "tagging" - "tags" - "twig" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.crypto.el b/data/tags/meta.crypto.el deleted file mode 100644 index 7e9f5ab..0000000 --- a/data/tags/meta.crypto.el +++ /dev/null @@ -1,82 +0,0 @@ -("accepted-answer" - "advertising" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "beta" - "books" - "bounty" - "bug" - "chat" - "chat-meeting" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "custom-close-reasons" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-section" - "homework" - "https" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-blacklist-request" - "tag-synonyms" - "tagging" - "tags" - "tour" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.cs.el b/data/tags/meta.cs.el deleted file mode 100644 index d540a00..0000000 --- a/data/tags/meta.cs.el +++ /dev/null @@ -1,100 +0,0 @@ -("accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "check-my-proof" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "cstheory" - "custom-close-reasons" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "editor" - "etiquette" - "exact-duplicates" - "faq" - "favicon" - "favorites" - "feature-request" - "featured" - "features" - "flagging" - "formatting" - "homework" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "moderator-tools" - "new-users" - "notifications" - "openid" - "policy" - "private-beta" - "profile-page" - "programming" - "protected-questions" - "question-quality" - "questions" - "rate-limiting" - "recent-activity" - "related-questions" - "reopen-closed" - "reputation" - "retagging" - "rss" - "scope" - "search" - "self-answer" - "self-reference" - "serial-voting" - "site-evaluation" - "site-faq" - "site-promotion" - "spam" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-pruning" - "tag-synonyms" - "tags" - "traffic" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-count" - "vote-to-close" - "votes" - "voting" - "winterbash-2014") diff --git a/data/tags/meta.cs50.el b/data/tags/meta.cs50.el deleted file mode 100644 index 9265c27..0000000 --- a/data/tags/meta.cs50.el +++ /dev/null @@ -1,71 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "burninate-request" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retag-request" - "retagging" - "rss" - "search" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.cstheory.el b/data/tags/meta.cstheory.el deleted file mode 100644 index acdd37c..0000000 --- a/data/tags/meta.cstheory.el +++ /dev/null @@ -1,96 +0,0 @@ -("7-essential" - "accepted-answer" - "answers" - "appearance" - "asking-questions" - "badges" - "big-picture" - "blog" - "bounty" - "bug" - "chat" - "citations" - "close-reasons" - "closed-questions" - "closing" - "comments" - "community" - "community-ads" - "community-wiki" - "cross-posting" - "data-dump" - "data-explorer" - "delete" - "deleted-questions" - "design" - "discussion" - "domain" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "homework" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "math" - "meta" - "migration" - "moderation" - "moderators" - "names" - "new-users" - "notifications" - "openid" - "original-proofs" - "other-se-sites" - "policy" - "profile-page" - "questions" - "recent-activity" - "reopening" - "reputation" - "retag-request" - "retagging" - "rss" - "scope" - "search" - "site-general" - "site-promotion" - "site-settings" - "specific-question" - "specific-user-account" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "town-hall-meeting" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-ids" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.datascience.el b/data/tags/meta.datascience.el deleted file mode 100644 index cd5b00e..0000000 --- a/data/tags/meta.datascience.el +++ /dev/null @@ -1,72 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "pro-tem-moderators" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.dba.el b/data/tags/meta.dba.el deleted file mode 100644 index 164795b..0000000 --- a/data/tags/meta.dba.el +++ /dev/null @@ -1,84 +0,0 @@ -("accepted-answer" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "beta" - "blogoverflow" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "css" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "oracle" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retag-request" - "review" - "review-lists" - "rss" - "scope" - "search" - "site-definition" - "site-promotion" - "specific-question" - "sql-server" - "stackexchange" - "stackexchange.com" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "syntax-highlighting" - "tag-synonyms" - "tagging" - "theme" - "title" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.diy.el b/data/tags/meta.diy.el deleted file mode 100644 index 9a696cd..0000000 --- a/data/tags/meta.diy.el +++ /dev/null @@ -1,86 +0,0 @@ -("accepted-answer" - "advertising" - "answers" - "asking-questions" - "audience" - "badges" - "blacklist" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "communication" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "images" - "interesting-tags" - "legal" - "localization" - "login" - "logo" - "maintenance" - "markdown" - "meta" - "migration" - "moderation" - "moderator-elections" - "moderator-tools" - "new-users" - "notifications" - "openid" - "post-notices" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-promotion" - "site-scope" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wikis" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.drupal.el b/data/tags/meta.drupal.el deleted file mode 100644 index 7f59658..0000000 --- a/data/tags/meta.drupal.el +++ /dev/null @@ -1,109 +0,0 @@ -("10k-tools" - "abuse" - "accepted-answer" - "answers" - "appropriate-answers" - "appropriate-questions" - "appropriate-tags" - "april-fools" - "asking-questions" - "automatic-flagging" - "badges" - "beta" - "blocks" - "bounties" - "bounty" - "bug" - "burninate-request" - "canonical" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-user" - "community-wiki" - "conferences" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "embed" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "flags" - "formatting" - "hats" - "highlighting-code" - "images" - "interesting-tags" - "links" - "login" - "markdown" - "meta" - "migration" - "migration-path-request" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "posts" - "privileges" - "profile-page" - "promotion" - "question-lists" - "questions" - "recent-activity" - "reputation" - "retag-request" - "review-audits" - "review-page" - "revision-history" - "rss" - "search" - "spam" - "specific-question" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "synonym-request" - "tag-blacklist-request" - "tag-synonyms" - "tag-wikis" - "tags" - "top-bar" - "twitter-bot" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "video" - "vote-to-close" - "voting" - "voting-to-close" - "voting-to-reopen" - "winter-bash" - "youtube") diff --git a/data/tags/meta.dsp.el b/data/tags/meta.dsp.el deleted file mode 100644 index 1ce91ad..0000000 --- a/data/tags/meta.dsp.el +++ /dev/null @@ -1,72 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "quantization" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.earthscience.el b/data/tags/meta.earthscience.el deleted file mode 100644 index 6849f3d..0000000 --- a/data/tags/meta.earthscience.el +++ /dev/null @@ -1,90 +0,0 @@ -("7-essential-questions" - "abbreviations" - "about-page" - "accepted-answer" - "advocacy" - "answers" - "asking-questions" - "badges" - "blacklist-request" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "committment" - "community-ads" - "community-wiki" - "copyright" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "google" - "hyperlinks" - "information" - "interesting-tags" - "login" - "markdown" - "mathjax" - "meta" - "mhchem" - "migration" - "moderation" - "moderators" - "new-users" - "notation" - "notifications" - "openid" - "policy" - "private-beta" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subscript" - "superscript" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "terminology" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.ebooks.el b/data/tags/meta.ebooks.el deleted file mode 100644 index 698c53e..0000000 --- a/data/tags/meta.ebooks.el +++ /dev/null @@ -1,78 +0,0 @@ -("accepted-answer" - "advertising" - "answers" - "asking-questions" - "badges" - "bot" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "legality" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "morality" - "new-users" - "notifications" - "off-topic" - "on-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.economics.el b/data/tags/meta.economics.el deleted file mode 100644 index 8a383fc..0000000 --- a/data/tags/meta.economics.el +++ /dev/null @@ -1,88 +0,0 @@ -("7-essential-questions" - "acceptable-questions" - "accepted-answer" - "advertising" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "congratulation" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "documentation" - "down-votes" - "economics" - "editing" - "etiquette" - "exact-duplicates" - "expert-level" - "expert-level-questions" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "homework" - "hyperlinks" - "ideologies" - "interesting-tags" - "list" - "literature" - "login" - "markdown" - "merge-tags" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "private-beta" - "profile-page" - "question-edit" - "questions" - "re-open" - "recent-activity" - "reputation" - "resources" - "retagging" - "rss" - "scientific-rigor" - "search" - "site-promotion" - "site-scope" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "topicality" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.edx-cs169-1x.el b/data/tags/meta.edx-cs169-1x.el deleted file mode 100644 index 231a518..0000000 --- a/data/tags/meta.edx-cs169-1x.el +++ /dev/null @@ -1,104 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "av102" - "badges" - "bdd" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closure" - "comments" - "community-ads" - "community-user" - "community-wiki" - "culture" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "display-name" - "down-votes" - "duplicate" - "editing" - "edx-bug" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "france" - "french" - "french-speaking" - "github" - "housekeeping" - "hyperlinks" - "interesting-tags" - "kindle" - "linking" - "live-cd" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "pair-programming" - "pivotal" - "pivotaltracker" - "policy" - "pong" - "profile-page" - "progress-graph" - "questions" - "quiz1" - "recent-activity" - "reputation" - "retagging" - "rss" - "ruby" - "rvm" - "search" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "syntax-highlighting" - "ta" - "tag-synonyms" - "tagging" - "tags" - "tdd" - "test" - "testing" - "textbook" - "torrent" - "tracker" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "verified-certificate" - "vm" - "vote-to-close" - "votes" - "voting" - "workload") diff --git a/data/tags/meta.el b/data/tags/meta.el deleted file mode 100644 index 648577b..0000000 --- a/data/tags/meta.el +++ /dev/null @@ -1,1279 +0,0 @@ -("10k-tools" - "15-characters" - "403-forbidden" - "404-not-found" - "408-timeout" - "500-server-error" - "abandonment" - "about-page" - "abuse" - "academic" - "accept-rate" - "accepted-answer" - "access" - "accessibility" - "account-recovery" - "account-suspension" - "accountability" - "achievements-dialog" - "action-buttons" - "active" - "active-bounties" - "activity" - "activity-badges" - "activity-dropdown" - "activity-summary" - "addiction" - "addon" - "administration" - "advanced-search" - "advertising" - "advice" - "affiliate" - "age" - "aged-away" - "ajax" - "alerts" - "algorithm" - "alias" - "all-sites" - "alleged-abuse" - "alt-text" - "amazon" - "ambiguous-tags" - "analytical-badge" - "analytics" - "anchor" - "android" - "android-app" - "android-app-feed" - "android-app-widgets" - "annotations" - "announcements" - "anonymous" - "anonymous-visitors" - "answer-count" - "answer-length" - "answer-limit" - "answer-order" - "answer-quality" - "answered-questions" - "answers" - "answers-as-comments" - "answers-onstartups" - "anti-recidivism-system" - "anti-spam" - "api" - "appeal" - "apple" - "appreciation" - "apptivate.ms" - "april-fools" - "architecture" - "archive" - "area51" - "argumentative" - "arqade" - "article" - "asking-days-badges" - "asking-questions" - "askubuntu" - "association" - "astroturfing" - "atom" - "attachment" - "attribution" - "atwood-gorithm" - "audio" - "authentication" - "auto-acceptance" - "auto-delete" - "auto-linking" - "auto-login" - "autocomplete" - "automatic-comments" - "automatic-edits" - "automatic-flags" - "automatic-votes" - "automation" - "awards" - "back-button" - "backtick" - "backup" - "bacon" - "badge-description" - "badge-progress" - "badge-request" - "badges" - "ban" - "bandwidth" - "behavior" - "belongs-on" - "best-practices" - "beta-badge" - "beta-phase" - "beta-sites" - "bias" - "binding-vote" - "blackberry" - "blacklist" - "blacklist-request" - "block-user" - "blocked" - "blockquote" - "blog" - "blog-overflow" - "blogger" - "blogging" - "bonus-reputation" - "bookmark" - "books" - "bounty" - "bounty-badges" - "bounty-dialog" - "bounty-remarks" - "broken-link" - "broken-windows" - "browser-cache" - "browser-enhancement" - "browsers" - "browsing" - "bug" - "bug-reports" - "bugs-reqs-tabs" - "bullets" - "bump" - "bunnies" - "burninate-request" - "business" - "business-cards" - "business-model" - "buttons" - "cache" - "caching" - "calendar" - "cancel" - "candidate-statistics" - "canonical" - "canonical-questions" - "capitalization" - "captcha" - "career-development" - "careers" - "careers-city-pages" - "careers-germany" - "cdn" - "celebrity" - "censor" - "change-vote" - "changes" - "character-escaping" - "character-length" - "character-limit" - "chart" - "chat" - "chat-ads" - "chat-event" - "chat-faq" - "chat-flags" - "chat-pins" - "chat-search" - "chat-stars" - "chat-transcript" - "chatbot" - "china" - "citation" - "clarification" - "clbuttic" - "clean-up" - "client" - "clippycorn" - "clone" - "close-dialog" - "close-list" - "close-reasons" - "closed-proposals" - "closed-questions" - "closed-sites" - "cloudflare" - "cms" - "cocoa" - "code" - "code-block" - "code-comments" - "code-examples" - "code-formatting" - "code-golf" - "codereview-se" - "collaboration" - "colons" - "combined-flair" - "comment-badges" - "comment-deletion" - "comment-edits" - "comment-flags" - "comment-links" - "comment-replies" - "comment-voting" - "comments" - "comments-as-answers" - "commitment" - "commitment-fulfillment" - "commitment-phase" - "commonmark" - "communication" - "communities-list" - "community" - "community-ads" - "community-bulletin" - "community-data" - "community-faq" - "community-managers" - "community-promotion-ads" - "community-standards" - "community-user" - "community-wiki" - "company" - "company-page" - "competing-answers" - "computer-science-se" - "concurrency" - "conferences" - "confirmation" - "confused-users" - "connectivity" - "consecutive-days" - "contact" - "content" - "content-reuse" - "contest" - "contractor" - "contribution" - "conventions" - "conversation" - "convert" - "convert-to-answer" - "convert-to-comment" - "convert-to-edit" - "cookies" - "copycat-sites" - "copyright" - "copyright-infringement" - "cost" - "crashlytics" - "creative-commons" - "criteria" - "cross-network-summary" - "cross-pollination" - "cross-posting" - "cross-site-tags" - "crowdsourcing" - "culture" - "custom-close-reasons" - "cv" - "daily-reputation-badges" - "daily-reputation-limit" - "data-analysis" - "data-dump" - "data-explorer" - "database" - "database-design" - "date-format" - "dates" - "declined-flags" - "definition-phase" - "delete" - "deleted-accounts" - "deleted-answers" - "deleted-comments" - "deleted-posts" - "deleted-questions" - "deleted-recent-posts" - "deleted-users" - "deleted-votes" - "deletion" - "demographics" - "deployment" - "deprecation" - "description" - "design" - "desktop-notifications" - "devdays" - "devdays-2009" - "devdays-2011" - "devdays-austin" - "devdays-dc" - "devdays-london" - "developers" - "development" - "dialog-box" - "diff" - "difficulty" - "diggbar" - "disciplined-badge" - "discussion" - "display" - "disputed-flags" - "disputed-review-audits" - "diversity" - "dns" - "doctype" - "documentation" - "domain-names" - "donation" - "dotnetopenauth" - "down-votes" - "downloads" - "downtime" - "downvoted-questions" - "draft" - "drag-and-drop" - "dupehammer" - "duplicate-answers" - "duplicate-comments" - "duplicate-proposal" - "duplicate-suggestions" - "duplicate-user" - "ease-of-use" - "easter-eggs" - "easy-questions" - "ec2" - "economics" - "edit-badges" - "edit-ban" - "edit-rights" - "edit-summary" - "editing-help" - "editor" - "edits" - "education" - "efficiency" - "elasticsearch" - "election" - "election-page" - "electorate-badge" - "electronics" - "email" - "email-notification" - "email-verification" - "emoji" - "emphasis" - "employees" - "employer" - "employer-cv-view" - "employers" - "empty" - "encoding" - "engine" - "english" - "enhancement" - "enlightened-badge" - "ergonomics" - "error-message" - "escape" - "ethics" - "etiquette" - "events" - "exact-duplicates" - "exact-phrase" - "example-questions" - "excel" - "experience" - "experimental" - "experts" - "experts-exchange" - "expiration" - "expired-bounty" - "explanation" - "exploit" - "export" - "external-project" - "external-sources" - "facebook" - "facebook.stackoverflow" - "fakes" - "faq" - "faq-proposed" - "faq-tab" - "faq-update-request" - "faqs" - "fastest-gun" - "favicon" - "favorite-tags" - "favorites" - "favorites-notifications" - "favorites-tab" - "feature-list" - "feature-request" - "feature-request-process" - "featured" - "featured-question" - "featured-site" - "featured-tab" - "featured-tag" - "feed" - "feedback" - "filter" - "filtering" - "firefox" - "firewall" - "fixed-width" - "flag-ban" - "flag-dialog" - "flag-history" - "flag-queue" - "flag-reasons" - "flag-weight" - "flagging-badges" - "flags" - "flair" - "flexibility" - "focus" - "followers" - "following-proposal" - "font-size" - "fonts" - "footer" - "form-submit" - "forum" - "forums" - "founder-badge" - "framing" - "frequented-tags" - "friends" - "frontpage" - "frozen-rooms" - "fui" - "full-site" - "fun" - "gallery" - "gamers" - "games" - "gamification" - "gaming-the-system" - "general-reference" - "generalist-badge" - "geography" - "github" - "global-inbox" - "globaltag-megablender" - "glossary" - "gold" - "google" - "google-chrome" - "google-openid" - "google-plus" - "google-profile" - "google-wave" - "grace-period" - "graduating-sites" - "grammar" - "graphs" - "gravatar" - "greasemonkey" - "greatest-hits" - "groups" - "growth" - "guidelines" - "guru-badge" - "hacked" - "haiku" - "harassment" - "hardware" - "hash" - "hat-request" - "header" - "heartbeat" - "heartbleed" - "hebrew" - "hellban" - "help" - "help-center" - "help-center-proposed" - "help-text" - "helpful-flags" - "hidden-features" - "high-rep-users" - "highest-voted-question" - "highlighting" - "historical-lock" - "homepage" - "homework" - "horizontal-scroll-bar" - "hosting" - "hot-answers" - "hot-questions" - "how-to" - "how-to-answer" - "howtogeek" - "html-entities" - "http" - "humor" - "hyperlinks" - "hyphenated-site" - "hyphenization" - "icon" - "icons" - "identicon" - "ignore" - "ignored-tags" - "ignored-users" - "image-manipulation" - "images" - "imgur" - "implementation" - "impostor" - "improve" - "inappropriate-content" - "incentive" - "indentation" - "indexing" - "indication" - "information" - "information-display" - "informed-badge" - "inline-code" - "inline-editor" - "inline-tag-editor" - "instant-self-answer" - "integration" - "intellectual-property" - "interesting-page" - "internationalization" - "internet-explorer" - "internet-explorer-10" - "internet-explorer-11" - "internet-explorer-6" - "internet-explorer-7" - "internet-explorer-8" - "internet-explorer-9" - "internships" - "interview-questions" - "invalid-flags" - "invitation" - "invites" - "ios" - "ios-app" - "ios-app-feed" - "ip-address" - "ip-ban" - "ipad" - "iphone" - "ipv6" - "irc" - "japanese-stackoverflow" - "javascript" - "jeff-atwood" - "job-interview" - "job-offers" - "jobs" - "joel-spolsky" - "joel-test" - "jquery" - "jsfiddle" - "json" - "junk" - "kbd" - "kde" - "keyboard" - "keyboard-glyphs" - "keyboard-shortcuts" - "kick-mute" - "kindle" - "knowledge" - "language" - "language-agnostic" - "language-hints" - "languages" - "last-activity" - "late-answers" - "latest-activity" - "latex" - "league-of-justice" - "learning" - "legal" - "license" - "licensing" - "limits" - "linebreak" - "link-and-run" - "link-only-answers" - "link-rot" - "link-validator" - "linked-accounts" - "linked-questions" - "linkedin" - "linux" - "list" - "list-questions" - "live-phase" - "live-refresh" - "lmgtfy" - "localization" - "location" - "locked" - "locked-answers" - "locked-questions" - "locked-votes" - "login" - "logo" - "logout" - "lost-reputation" - "low-quality-posts" - "lucene" - "mac" - "magic-links" - "maintenance" - "malicious-code" - "markdown" - "markdown-preview" - "markdown-rendering" - "marketing" - "math-se" - "mathjax" - "mathoverflow" - "meetups" - "meh-vote" - "memes" - "menu-bar" - "merchandise" - "merge-accounts" - "merge-questions" - "merge-utility" - "merged-questions" - "merging" - "message-templates" - "messages" - "meta" - "meta-faq" - "meta-questions" - "meta-reputation" - "meta-serverfault" - "meta-tags" - "metadata" - "metrics" - "microformats" - "microsoft" - "midnight" - "migrated-questions" - "migration" - "migration-notice" - "migration-path-request" - "migration-rejection" - "mini-site" - "mobile-app" - "mobile-safari" - "mobile-web" - "moderation" - "moderation-history" - "moderation-theory" - "moderator-abilities" - "moderator-agreement" - "moderator-faq" - "moderator-messages" - "moderator-primaries" - "moderator-queue" - "moderator-responsibility" - "moderator-tags" - "moderator-tools" - "moderators" - "money-making" - "monthly-question-limit" - "motivation" - "move" - "mozilla-weave" - "mso-mse-split" - "multiple" - "multiple-accounts" - "multiple-answers" - "my-tags" - "myopenid" - "narcissism" - "navel-gazing" - "navigation" - "necromancer-badge" - "negative-badges" - "negative-rep" - "network-profile" - "network-wide-suspension" - "networking" - "new-answers" - "new-questions" - "new-tags-page" - "new-users" - "newest-questions" - "newline" - "news" - "newsletter" - "nice-answer" - "niche-area" - "ninja" - "no-answers" - "nofollow" - "noindex" - "noise-reduction" - "nominations" - "non-answers" - "non-english-speakers" - "noscript" - "not-a-real-question" - "not-an-answer" - "not-constructive" - "not-programming-related" - "notification-bar" - "notifications" - "numbers" - "oauth" - "obsolete-information" - "oddities" - "off-topic" - "offensive" - "offline" - "old-posts" - "old-questions" - "on-hold" - "onebox" - "open-source" - "open-source-advertising" - "openid" - "opera" - "opera-mini" - "optimization" - "options" - "organization" - "original-author" - "original-poster" - "orphaned-wiki" - "osx" - "other-bounties" - "outage" - "outsourcing" - "overlap" - "owner" - "ownership" - "oy" - "page" - "page-load" - "page-rendering" - "pagination" - "participation" - "password" - "paste" - "patents-se" - "payment" - "pdf" - "peer-pressure-badge" - "penalty" - "per-site-meta" - "performance" - "performance-page" - "performance-tuning" - "perl" - "perlmonks" - "permalink" - "personal-statistics" - "personalization" - "philosophy" - "ping" - "piracy" - "pity-voting" - "plagiarism" - "platform" - "plurals" - "podcast" - "policy" - "politics" - "poll" - "ponies" - "popular-question" - "popularity" - "populist-badge" - "popups" - "portable-edition" - "portuguese-stackoverflow" - "post-ban" - "post-dissociation" - "post-feedback" - "post-id" - "post-issues" - "post-menu" - "post-notice" - "posting" - "posts" - "pre" - "predictor" - "preferences" - "presentations" - "pricing" - "printing" - "privacy" - "private-beta" - "private-messaging" - "private-site" - "privileges" - "privileges-page" - "pro-forma-comments" - "pro-tem-moderators" - "problem-solving" - "problem-user" - "process" - "productivity" - "profanity" - "profile-copying" - "profile-edit" - "profile-page" - "profile-picture" - "profile-sync" - "programmers-se" - "programming" - "programming-languages" - "programming-related" - "project" - "promotions" - "proposal-feedback" - "protected-questions" - "proxy" - "psychology" - "public-cv" - "publicity" - "publicity-badges" - "quality" - "quality-filter" - "quality-score" - "question-activity" - "question-count" - "question-lists" - "question-order" - "question-quality" - "question-restrictions" - "question-routing" - "question-summary" - "questions" - "questions-page" - "questions-tabs" - "quora" - "quote" - "quotes" - "random" - "rankings" - "rant" - "rate-limiting" - "rating" - "ratio" - "read-only" - "real-name" - "realtime-questions" - "recalculation" - "recent" - "recent-activity" - "recent-tags" - "recently-closed" - "recently-deleted" - "recently-imported" - "recovery" - "recruiting" - "recruitment" - "reddit" - "redirection" - "reference" - "referrals" - "regex" - "registration" - "regression" - "rejected-edits" - "rejected-questions" - "rejection-reasons" - "related-accounts" - "related-questions" - "related-tags" - "relevance" - "relocation" - "reminder" - "rendering" - "reopen-closed" - "reopened-questions" - "rep-ability" - "rep-requirement" - "rep-transfer" - "replies" - "reply" - "reporting" - "repository" - "reposts" - "reputation" - "reputation-audit" - "reputation-display" - "reputation-graph" - "reputation-history" - "reputation-leagues" - "reputation-page" - "reputation-recalc" - "reputation-summary" - "required-tags" - "research" - "responses" - "retag-request" - "retina" - "retracted-close-votes" - "revenue" - "reversal-badge" - "review" - "review-abuse" - "review-audits" - "review-badges" - "review-history" - "review-stats" - "review-suspension" - "revisions-list" - "revival-badge" - "revoked-badges" - "rewrite" - "roadmap" - "robo-review" - "robotics" - "robots" - "rollback-wars" - "rollbacks" - "rss" - "rtfm" - "rtl" - "rules" - "s.tk" - "s.tk-request" - "safari" - "sandbox" - "sarcasm" - "scalability" - "schema" - "scope" - "score" - "screen-scraping" - "screenshot" - "scripts" - "scrolling" - "se-quality-project" - "search" - "search-engine" - "search-indexing" - "search-subscription" - "searchable" - "secret-hats" - "security" - "security-hole" - "self-answer" - "self-close" - "self-delete" - "self-governance" - "self-promotion" - "self-upvoting" - "semantics" - "seo" - "serial-edits" - "serial-voting" - "server" - "serverfault" - "services" - "session" - "share-this" - "sharing" - "shellshock" - "shop" - "short-links" - "si-prefix" - "sidebar" - "sign-up" - "signatures" - "similar-questions" - "similarity" - "sister-site" - "site-activity" - "site-age" - "site-crossover" - "site-evaluation" - "site-faq" - "site-maintenance" - "site-merging" - "site-name" - "site-phases" - "site-promotion" - "site-proposal" - "site-recommendation" - "site-stats" - "site-usage" - "sitemap" - "slug" - "so-addon" - "so-engine" - "so-history" - "so-name" - "social-manipulation" - "social-networking" - "sock-puppets" - "software" - "software-recs-se" - "sopa" - "sorting" - "soundcloud" - "source-code" - "spam" - "spam-prevention" - "special-characters" - "specialist" - "specific-answer" - "specific-edit" - "specific-proposal" - "specific-question" - "specific-site" - "speed" - "spelling" - "spoilers" - "sponsored-tags" - "sponsorship" - "spoonfeeding" - "sportsmanship-badge" - "sprites" - "sql" - "ssl" - "stack-snippets" - "stackapps" - "stackexchange" - "stackexchange-1.0" - "stackexchange-2.0" - "stackexchange-button" - "stackexchange-filter" - "stackexchange-hq" - "stackexchange-openid" - "stackexchange-team" - "stackexchange-tour" - "stackexchange.com" - "stackoverflow" - "stackql" - "stackstatus" - "standards" - "stars" - "statistics" - "stats" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "stickers" - "sticky" - "strategy" - "stubs" - "students" - "subdomains" - "subjective" - "subjective-answers" - "subjective-warning" - "subscription" - "suggested-edits" - "suggested-tags" - "summary" - "summer-of-love" - "super-ping" - "superuser" - "support" - "survey" - "survey-gopher" - "svn-revision" - "swag" - "symbols" - "synchronization" - "synonym-request" - "syntax" - "syntax-highlighting" - "system-message" - "t-shirt" - "tab-key" - "table" - "tables" - "tabs" - "tabs-to-spaces" - "tactical-downvoting" - "tactical-upvoting" - "tag-abuse" - "tag-autocomplete" - "tag-badges" - "tag-blacklist" - "tag-bubble" - "tag-creation" - "tag-deletion" - "tag-dropdown" - "tag-filters" - "tag-hierarchy" - "tag-highlighting" - "tag-links" - "tag-page" - "tag-pruning" - "tag-score" - "tag-search" - "tag-synonyms" - "tag-wiki" - "tag-wiki-excerpt" - "tags" - "tags-burnination" - "tags-page" - "taxonomist-badge" - "taxonomy" - "teachers-lounge" - "team" - "technology" - "telerik" - "terminology" - "terms-of-service" - "terry-goodkind" - "testing" - "text" - "thanks" - "third-party" - "thresholds" - "throttling" - "time" - "time-limit" - "timeline" - "timer" - "timestamps" - "timezone" - "tips" - "tips-and-tricks" - "title" - "too-broad" - "too-localized" - "too-long" - "too-minor" - "toolbar" - "tools" - "tooltips" - "top-answers" - "top-bar" - "top-questions" - "top-users" - "tor" - "total-reputation" - "touch-screen" - "town-hall-chat" - "tracking" - "trademark" - "traffic" - "transcription" - "transfer" - "translations" - "trends" - "triage" - "trivial" - "trolling" - "troubleshooting" - "truncated" - "truncation" - "trusted-user" - "tumbleweed-badge" - "tutorials" - "twitter" - "unaccepted-answer" - "unanswered-questions" - "uncommit" - "undelete" - "undelete-request" - "underscore" - "undo" - "unicode" - "unicoins" - "unicornify" - "unicorns" - "unix-ubuntu" - "unregistered-users" - "unsubscribe" - "untagged-questions" - "up-votes" - "updating-questions" - "uploader" - "url-encoding" - "usability" - "usage" - "useless-answers" - "user-accounts" - "user-card" - "user-count" - "user-experience" - "user-information" - "user-interface" - "user-list" - "user-rank" - "user-search" - "usernames" - "users" - "users-page" - "userscript" - "uservoice" - "vague" - "validation" - "vampire" - "vandalism" - "vanity-url" - "venting" - "venture-capital" - "version-tags" - "vibration" - "videos" - "view-source" - "views" - "virus" - "visibility" - "visited-days" - "visual-studio" - "voiceover" - "vote-count" - "vote-to-close" - "vote-to-delete" - "vote-to-reopen" - "vote-to-undelete" - "votes-tab" - "voting" - "voting-anomaly-detection" - "voting-badges" - "voting-limits" - "waffles" - "warning" - "watching" - "web" - "web-hosting" - "web-sockets" - "webkit" - "websites" - "whitespace" - "widgets" - "wiki" - "wikipedia" - "wildcards" - "windows-7" - "windows-8" - "windows-gadget" - "windows-phone" - "winterbash" - "winterbash-2012" - "winterbash-2013" - "winterbash-2014" - "winterbash-2015" - "woot" - "wording" - "wordpress-se" - "work-around" - "workflow" - "wrong-answers" - "xml" - "xmpp" - "xss" - "yahoo" - "yahoo-pipes" - "yearling-badge" - "youtube" - "youtube-channel" - "yslow" - "zero-score-badges" - "zip-code" - "zoom") diff --git a/data/tags/meta.electronics.el b/data/tags/meta.electronics.el deleted file mode 100644 index 576f375..0000000 --- a/data/tags/meta.electronics.el +++ /dev/null @@ -1,108 +0,0 @@ -("accepted-answer" - "answers" - "arduino" - "area51" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "captcha" - "chat" - "circuitlab" - "close-reasons" - "closed-questions" - "closing" - "comments" - "community-ads" - "community-decision" - "community-wiki" - "controling-users" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "electronics" - "electropus" - "email" - "etiquette" - "exact-duplicates" - "explanation" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "guidelines" - "hyperlinks" - "idea" - "interesting-tags" - "latex" - "legal" - "login" - "markdown" - "markdown-preview" - "mathjax" - "merged-question" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "on-topic" - "openid" - "privileges" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retagging" - "reviewing" - "rss" - "schematic" - "scope" - "search" - "shopping" - "signature" - "spamming" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "support" - "symbols" - "syntax-highlighting" - "tag-blacklist-request" - "tag-cleanup" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "tex" - "unanswered-questions" - "untagged" - "up-votes" - "uploading-images" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "website") diff --git a/data/tags/meta.ell.el b/data/tags/meta.ell.el deleted file mode 100644 index b8e68f5..0000000 --- a/data/tags/meta.ell.el +++ /dev/null @@ -1,85 +0,0 @@ -("7-questions" - "accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "blog" - "bounty" - "bug" - "canonical-posts" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "general-reference" - "hyperlinks" - "interesting-tags" - "locked-questions" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "online-resources" - "openid" - "profile-page" - "questions" - "recent-activity" - "reopen" - "reputation" - "retagging" - "review" - "rss" - "scope" - "search" - "site-evaluation" - "site-faq" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "views" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.emacs.el b/data/tags/meta.emacs.el deleted file mode 100644 index bde7360..0000000 --- a/data/tags/meta.emacs.el +++ /dev/null @@ -1,92 +0,0 @@ -("about-page" - "accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "badges" - "beta" - "beta-phase" - "bounty" - "bug" - "canonical-questions" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "conventions" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "editor" - "etiquette" - "event" - "exact-duplicates" - "faq" - "favicon" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help" - "hyperlinks" - "instant-self-answer" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "packages" - "profile-page" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "scope" - "search" - "self-answer" - "sidebar" - "site-crossover" - "site-promotion" - "specific-edit" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "syntax-highlighting" - "tag-synonyms" - "tagging" - "tags" - "title" - "top-bar" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.english.el b/data/tags/meta.english.el deleted file mode 100644 index 8339992..0000000 --- a/data/tags/meta.english.el +++ /dev/null @@ -1,160 +0,0 @@ -("10k-tools" - "abbreviations" - "accepted-answer" - "advertising" - "answer-howto" - "answering-advice" - "answers" - "appropriate-answers" - "appropriate-questions" - "asking-questions" - "attribution" - "audience" - "badges" - "banned" - "beta-essentials" - "blog" - "bounty" - "bug" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-building" - "community-wiki" - "conferences" - "copy-paste" - "copyrights" - "courtesy" - "css" - "data-dump" - "data-explorer" - "deleted-posts" - "deleted-questions" - "deleting-posts" - "design" - "discussion" - "down-votes" - "duplicates" - "editing" - "editor" - "election" - "ell" - "etiquette" - "etymology" - "exact-duplicates" - "examples" - "experts" - "faq" - "favorites" - "feature-request" - "featured" - "feedback" - "fix" - "flag-history" - "flag-reviews" - "flagging" - "flags" - "formatting" - "general-reference" - "hyperlinks" - "images" - "interesting-tags" - "ipa" - "kinship-terms" - "list-question" - "locked-post" - "login" - "low-quality-posts" - "markdown" - "merged-questions" - "meta" - "migration" - "mobile" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "offensive" - "offensive-language" - "on-topic-off-topic" - "online-resources" - "openid" - "plagiarism" - "profile-page" - "pronunciation" - "proposed-edits" - "protected-questions" - "question-closure" - "question-restrictions" - "questions" - "quotations" - "recent-activity" - "reference" - "reputation" - "request" - "research-effort" - "resources" - "retag-request" - "retagging" - "review" - "revisions" - "rss" - "scope" - "scraping" - "search" - "search-optimization" - "self-governance" - "single-word-requests" - "site" - "site-faq" - "site-promotion" - "social-norms" - "sock-puppetry" - "spam" - "specific-question" - "spelling" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "subjective-topics" - "suggested-edits" - "support" - "suspension" - "swag" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "timestamps" - "titles" - "tools" - "translation" - "trolling" - "twitter" - "typographical-errors" - "unanswered-questions" - "unicorns" - "up-votes" - "use-mention" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winterbash" - "winterbash-2013" - "winterbash-2014") diff --git a/data/tags/meta.expatriates.el b/data/tags/meta.expatriates.el deleted file mode 100644 index ee0bbf7..0000000 --- a/data/tags/meta.expatriates.el +++ /dev/null @@ -1,81 +0,0 @@ -("accepted-answer" - "advertisement" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "country-specific" - "cross-posting" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "languages" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "promotions" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "shopping-questions" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.expressionengine.el b/data/tags/meta.expressionengine.el deleted file mode 100644 index eaa29de..0000000 --- a/data/tags/meta.expressionengine.el +++ /dev/null @@ -1,71 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "interface" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "self-promotion" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.fitness.el b/data/tags/meta.fitness.el deleted file mode 100644 index e47acb0..0000000 --- a/data/tags/meta.fitness.el +++ /dev/null @@ -1,83 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "images" - "interesting-tags" - "login" - "markdown" - "meta" - "meta-tags" - "migration" - "moderation" - "new-users" - "notifications" - "nutrition" - "off-topic" - "openid" - "private-beta" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-improvement" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective-questions" - "support" - "tag-cleanup" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.freelancing.el b/data/tags/meta.freelancing.el deleted file mode 100644 index 3a396c5..0000000 --- a/data/tags/meta.freelancing.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-faq" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-guidelines" - "site-promotion" - "site-topic" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winterbash") diff --git a/data/tags/meta.french.el b/data/tags/meta.french.el deleted file mode 100644 index 97df6ae..0000000 --- a/data/tags/meta.french.el +++ /dev/null @@ -1,96 +0,0 @@ -("about-page" - "accepted-answer" - "answer-quality" - "answers" - "area51" - "asking-questions" - "badges" - "beta-phase" - "bounty" - "bug" - "characters" - "chat" - "chrome" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "deletion" - "descriptivism" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "input-methods" - "interesting-tags" - "internationalization" - "language" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "podcast" - "prescriptivism" - "profile-page" - "question-quality" - "questions" - "quotation-marks" - "recent-activity" - "reputation" - "resources" - "retagging" - "review" - "rss" - "scope" - "search" - "site-evaluation" - "site-faq" - "site-graduation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "suggested-edits" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "translation" - "typography" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "views" - "vote-to-close" - "votes" - "voting" - "winterbash-2013") diff --git a/data/tags/meta.gamedev.el b/data/tags/meta.gamedev.el deleted file mode 100644 index d8c00d1..0000000 --- a/data/tags/meta.gamedev.el +++ /dev/null @@ -1,96 +0,0 @@ -("accepted-answer" - "accepted-answers" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-highlights" - "community-wiki" - "conferences" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "event" - "exact-duplicates" - "faq" - "faq-for-site" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "gamejam" - "gamejam-2013-fall" - "gamejam-2014-fall" - "gamejam-2014-winter" - "hyperlinks" - "interesting-tags" - "legal" - "login" - "logo" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "newbies" - "notifications" - "off-topic" - "openid" - "policy" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-attributes" - "site-definition" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "swag" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "topical" - "tour" - "unaccepted-answers" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-refactor-2013" - "winter-refactor-2014") diff --git a/data/tags/meta.gaming.el b/data/tags/meta.gaming.el deleted file mode 100644 index 083bd4d..0000000 --- a/data/tags/meta.gaming.el +++ /dev/null @@ -1,178 +0,0 @@ -("10k-tools" - "abuse" - "accepted-answer" - "accessibility" - "ads" - "adult" - "advertisements" - "allowed-answers" - "allowed-questions" - "ambiguous-tags" - "answer-swarm" - "answering" - "answers" - "app" - "arqade-migration" - "asking" - "badges" - "beta-phase" - "blacklist" - "blog" - "bounty" - "branding" - "bug" - "burnination" - "charity" - "chat" - "cheats" - "closing" - "comments" - "community" - "community-ads" - "community-bulletin" - "community-event" - "community-wiki" - "conferences" - "consoles" - "contests" - "css" - "customization" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "diablo-3" - "discussion" - "domain-name" - "duplicates" - "dwarf-fortress" - "editing" - "election" - "etiquette" - "exact-duplicates" - "experiment" - "faq" - "faq-proposed" - "favorite-tags" - "favorites" - "feature-request" - "featured" - "flagging" - "flags" - "flair" - "fun" - "game-on" - "game-recommendations" - "graduate-to-site" - "hardware" - "help-centre" - "hyperlinks" - "identify-this-game" - "ignored-tags" - "images" - "information-rot" - "interesting-tags" - "layout" - "legal" - "lists" - "login" - "logo" - "map-editor" - "markdown" - "me3missions" - "meetup" - "merge-request" - "meta" - "migration" - "minecraft" - "misleading-titles" - "mobile-site" - "moderation" - "moderators" - "mothership" - "new-user" - "new-users" - "notifications" - "numbers" - "obsolete-questions" - "off-topic-content" - "openid" - "outdated-content" - "poll" - "privileges" - "profile" - "promotional-grant" - "protection" - "quality-evaluation" - "question-of-the-week" - "questions" - "rant" - "recent-activity" - "reopen" - "reputation" - "retag-request" - "reviewing" - "rollback" - "rss" - "santa-claus" - "sc2-tournament" - "scope" - "search" - "seeding" - "self-answer" - "shopping-rec" - "sidebar" - "site-attributes" - "site-faq" - "site-policies" - "site-promotion" - "spam" - "specific-question" - "spoilers" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-murdered" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "steam" - "subjective" - "suggested-edits" - "support" - "swag" - "tag-badges" - "tag-merging" - "tag-rename" - "tag-synonyms" - "tag-wiki" - "tags" - "terminology" - "theme" - "title-tag" - "titles" - "top-7" - "top-bar" - "topic" - "traffic" - "twitter" - "unanswered-questions" - "undownvote" - "unicoins" - "up-votes" - "upcoming-games" - "user-accounts" - "user-interface" - "user-profile" - "users" - "votes" - "voting" - "winterbash" - "winterbash-2014" - "youtube-embed") diff --git a/data/tags/meta.gardening.el b/data/tags/meta.gardening.el deleted file mode 100644 index f9d8bf4..0000000 --- a/data/tags/meta.gardening.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answering-questions" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "images" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "regional" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "spelling" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggestions" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.genealogy.el b/data/tags/meta.genealogy.el deleted file mode 100644 index a9e317d..0000000 --- a/data/tags/meta.genealogy.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "area51" - "asking-questions" - "badges" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "decision" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "evidence" - "exact-duplicates" - "faq" - "faq-page" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-pages" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "privacy" - "pro-tem-moderators" - "profile-page" - "publicity" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "weekly-genealogy-chat") diff --git a/data/tags/meta.german.el b/data/tags/meta.german.el deleted file mode 100644 index a4ebbfa..0000000 --- a/data/tags/meta.german.el +++ /dev/null @@ -1,87 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "cleanup" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-moderation" - "community-wiki" - "conventions" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "dialect" - "discussion" - "down-votes" - "downvoting" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "language" - "literature" - "login" - "low-quality-posts" - "markdown" - "meta" - "migration" - "mobile" - "moderation" - "new-users" - "not-an-answer" - "notifications" - "off-topic" - "on-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "specific-question" - "spelling" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "terminology" - "typos" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.gis.el b/data/tags/meta.gis.el deleted file mode 100644 index af9664f..0000000 --- a/data/tags/meta.gis.el +++ /dev/null @@ -1,107 +0,0 @@ -("accepted-answer" - "advertising" - "announcements" - "answered-questions" - "answers" - "arcgis" - "asking-questions" - "badges" - "blacklist-request" - "blog" - "bounty" - "bug" - "burninate" - "burninate-request" - "canonical" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "conference" - "consensus-building" - "data" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "disambiguation" - "discussion" - "doi" - "down-votes" - "duplicates" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-suggestion" - "favorites" - "feature-request" - "featured" - "firefox" - "flagging" - "formatting" - "gis" - "gisp" - "google" - "hyperlinks" - "images" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "profile-page" - "qgis" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "scope" - "search" - "sketchup" - "software" - "source" - "specific-question" - "stack-snippets" - "stackexchange" - "stackoverflow" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "swag" - "syntax-highlighting" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "tour" - "transformation" - "unanswered-questions" - "untagged" - "up-votes" - "user-accounts" - "user-interface" - "users" - "versions" - "visits" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.graphicdesign.el b/data/tags/meta.graphicdesign.el deleted file mode 100644 index 22c5292..0000000 --- a/data/tags/meta.graphicdesign.el +++ /dev/null @@ -1,91 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "avatars" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-improvement" - "community-wiki" - "critique" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "duplicate-question" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-discussion" - "favorites" - "feature-request" - "featured" - "flagging" - "font-identification" - "formatting" - "guidelines" - "hyperlinks" - "images" - "interesting-tags" - "language" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderationissue" - "moderators" - "new-users" - "notifications" - "on-topic-definition" - "openid" - "praise" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "screenshots" - "search" - "site-evaluation" - "site-promotion" - "site-redesign" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "title" - "tools" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "web-design.se" - "winter-bash") diff --git a/data/tags/meta.ham.el b/data/tags/meta.ham.el deleted file mode 100644 index bd76e12..0000000 --- a/data/tags/meta.ham.el +++ /dev/null @@ -1,83 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "growth" - "hats" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "on-hold" - "openid" - "policy" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "sandbox" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "testing" - "top-bar" - "topic-of-the-week" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.hermeneutics.el b/data/tags/meta.hermeneutics.el deleted file mode 100644 index 7d1d5d7..0000000 --- a/data/tags/meta.hermeneutics.el +++ /dev/null @@ -1,87 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "deletion" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "howto" - "humor" - "hyperlinks" - "interesting-tags" - "language" - "login" - "loss-of-rep-pts" - "markdown" - "membership" - "meta" - "migration" - "moderation" - "new-users" - "not-an-answer" - "notifications" - "on-topic-definition" - "openid" - "post-notices" - "profile-page" - "promotion" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "request" - "retagging" - "rss" - "scope" - "search" - "semantics" - "site-evaluation" - "site-philosophy" - "site-promotion" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "terminology" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "user-removed" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.hinduism.el b/data/tags/meta.hinduism.el deleted file mode 100644 index bc736c5..0000000 --- a/data/tags/meta.hinduism.el +++ /dev/null @@ -1,86 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "cleanup" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-bulletin" - "community-wiki" - "copyright" - "data-dump" - "data-explorer" - "deleted-questions" - "deletion" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "languages" - "login" - "low-quality-answers" - "markdown" - "meta" - "migration" - "moderators" - "new-users" - "notifications" - "openid" - "participation" - "post-quality" - "privileges" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "serial-voting" - "site-evaluation" - "site-promotion" - "sources-and-citations" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-deletion" - "tag-synonyms" - "tags" - "title" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "visitors" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.history.el b/data/tags/meta.history.el deleted file mode 100644 index f009513..0000000 --- a/data/tags/meta.history.el +++ /dev/null @@ -1,84 +0,0 @@ -("accepted-answer" - "american-english" - "answers" - "anthropology" - "asking-questions" - "badges" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "pledges" - "profile-page" - "questions" - "ragequit" - "recent-activity" - "references" - "reopen-closed" - "reputation" - "research" - "retagging" - "review" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "source" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-merge" - "tag-synonyms" - "tagging" - "tags" - "uk-english" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.homebrew.el b/data/tags/meta.homebrew.el deleted file mode 100644 index 5c13278..0000000 --- a/data/tags/meta.homebrew.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "brewadvice" - "brewadvice.com" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "picture" - "policy" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "recipe" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-logistics" - "spam" - "specific-question" - "stackexchange" - "stackexchange2.0" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "topics" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "wiki") diff --git a/data/tags/meta.hsm.el b/data/tags/meta.hsm.el deleted file mode 100644 index 23449fa..0000000 --- a/data/tags/meta.hsm.el +++ /dev/null @@ -1,74 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "proposal" - "questions" - "recent-activity" - "references" - "reputation" - "retagging" - "review" - "rss" - "search" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "top-bar" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.islam.el b/data/tags/meta.islam.el deleted file mode 100644 index 34f566b..0000000 --- a/data/tags/meta.islam.el +++ /dev/null @@ -1,120 +0,0 @@ -("accepted-answer" - "answers" - "arabic" - "asking-questions" - "badges" - "belief" - "beta" - "bounty" - "bug" - "capital-letter" - "capital-t-truth" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-blog" - "community-wiki" - "copy-paste" - "data-dump" - "data-explorer" - "delete-reason" - "deleted-answer" - "deleted-questions" - "deletion" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-content" - "fatwa" - "favorites" - "feature-request" - "featured" - "flagging" - "fonts" - "formatting" - "hyperlinks" - "images" - "interesting-tags" - "islam" - "locked-post" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "on-hold" - "on-topic" - "on-topic-definition" - "openid" - "personal-question" - "philosophy" - "plagiarism" - "politics" - "primarily-opinion-based" - "privileges" - "profile-page" - "quality" - "quality-control" - "quality-evaluation" - "questions" - "quote" - "quran" - "recent-activity" - "reopen" - "reputation" - "retag-request" - "retagging" - "review" - "rss" - "scholars" - "scope" - "search" - "sect" - "sectarianism" - "serial-voting" - "shia-sunni" - "single-post" - "site-evaluation" - "site-policy" - "site-promotion" - "sources" - "specific-post" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "sunnah" - "support" - "tafseer" - "tag" - "tag-mistakes" - "tag-synonyms" - "tagging" - "tajweed" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "vote-twice" - "votes" - "voting") diff --git a/data/tags/meta.italian.el b/data/tags/meta.italian.el deleted file mode 100644 index 1a90206..0000000 --- a/data/tags/meta.italian.el +++ /dev/null @@ -1,70 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "posts" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.ja.stackoverflow.el b/data/tags/meta.ja.stackoverflow.el deleted file mode 100644 index 9061fea..0000000 --- a/data/tags/meta.ja.stackoverflow.el +++ /dev/null @@ -1,63 +0,0 @@ -("delete-me" - "faq" - "markdown" - "stack-snippets" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "test" - "えくせる" - "お礼" - "アカウントマージ" - "オフトピック" - "キーボードショートカット" - "クローズ理由" - "コミュニティ広告" - "コメント" - "サイト公開" - "サポート" - "シンタックスハイライト" - "タイトル" - "タグ" - "タグwiki" - "タグ修正" - "チャット" - "ツアー" - "デザイン" - "ハイパーリンク" - "バグ" - "プライベートベータ" - "ヘルプ" - "モデレーター" - "モデレーターツール" - "モバイル" - "ユーザーアカウント" - "リスト質問" - "レイアウト" - "使い勝手" - "使い手" - "回答の仕方" - "専門用語" - "広告" - "投票の仕方" - "日時" - "日本語" - "検索" - "機能の要求" - "注目" - "編集" - "翻訳" - "花まるアンサー" - "英語" - "英語版so" - "表示" - "討議" - "質問" - "質問の仕方" - "通知" - "重複アカウント") diff --git a/data/tags/meta.japanese.el b/data/tags/meta.japanese.el deleted file mode 100644 index 985fe85..0000000 --- a/data/tags/meta.japanese.el +++ /dev/null @@ -1,88 +0,0 @@ -("accepted-answer" - "allowed-questions" - "ambiguous-tags" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "example-sentences" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "furigana" - "hats" - "hyperlinks" - "interesting-tags" - "kanji" - "learning" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "profile-page" - "quality-evaluation" - "question-merging" - "questions" - "recent-activity" - "reputation" - "resources" - "retagging" - "romaji" - "rss" - "scope" - "search" - "site-evaluation" - "site-health" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tags" - "target-audience" - "unanswered-questions" - "unicode" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "wording" - "writing") diff --git a/data/tags/meta.joomla.el b/data/tags/meta.joomla.el deleted file mode 100644 index d20621c..0000000 --- a/data/tags/meta.joomla.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "christmas" - "close-reasons" - "closed-questions" - "coding-standards" - "comments" - "community-ads" - "community-wiki" - "comparison" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "guidelines" - "hacked" - "hyperlinks" - "interesting-tags" - "joomla" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notice" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "stats" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.judaism.el b/data/tags/meta.judaism.el deleted file mode 100644 index 599309c..0000000 --- a/data/tags/meta.judaism.el +++ /dev/null @@ -1,144 +0,0 @@ -("7-essential-metas" - "about-page" - "accepted-answer" - "advertising" - "android-app" - "answer-quality" - "answers" - "area51" - "asking-questions" - "avatar" - "badges" - "blog" - "bounty" - "bug" - "censorship" - "chanuka-project" - "chat" - "citing-sources" - "cleanup-badge" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-bulletin-board" - "community-user" - "community-wiki" - "copyright-and-license" - "cross-posting" - "daf-yomi" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "deleted-users" - "design" - "discussion" - "display" - "documentation" - "down-votes" - "editing" - "election" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-content" - "favorite-tag" - "favorites" - "feature-request" - "featured" - "flagging" - "font" - "formatting" - "front-page" - "glossary" - "haggadah-project" - "halacha" - "hebrew" - "help-center" - "hyperlinks" - "ingathering-contest" - "ios-app" - "language" - "launch" - "locked-question" - "login" - "markdown" - "merge-tag-request" - "meta" - "meta-purim-torah-in-jest" - "migration" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "openid" - "podcast" - "policy" - "pre-migration" - "privileges" - "profile-page" - "pronunciation" - "purim-project" - "purim-torah-policy" - "quality-evaluation" - "question-quality" - "question-titles" - "questions" - "quotations" - "re-open" - "recent-activity" - "reputation" - "retagging" - "review-queues" - "rollbacks" - "rss" - "scope" - "search" - "self-answer" - "site-name" - "site-promotion" - "site-statistics" - "sorting" - "spam" - "specific-question" - "specific-tag" - "specific-user" - "stackexchange" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "sukkot-project" - "support" - "tag-blacklist" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "text" - "timestamps" - "transliteration" - "twitter" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "user-page" - "user-scripts" - "username" - "users" - "views" - "vote-to-close" - "votes" - "voting" - "weekly-topic-challenge" - "winter-bash") diff --git a/data/tags/meta.linguistics.el b/data/tags/meta.linguistics.el deleted file mode 100644 index 73a79c6..0000000 --- a/data/tags/meta.linguistics.el +++ /dev/null @@ -1,88 +0,0 @@ -("accepted-answer" - "advertising" - "answers" - "area51" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "challenge-week" - "chat" - "chat-events" - "close-reasons" - "closed-questions" - "closing" - "comments" - "community-ads" - "community-wiki" - "computational-linguistics" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "language-families" - "list-questions" - "login" - "markdown" - "marketing" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic-questions" - "on-topic" - "openid" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retagging" - "reviewing" - "rss" - "scope" - "search" - "single-language" - "site-evaluation" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki-excerpts" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.magento.el b/data/tags/meta.magento.el deleted file mode 100644 index 31db92a..0000000 --- a/data/tags/meta.magento.el +++ /dev/null @@ -1,88 +0,0 @@ -("404" - "accepted-answer" - "advertising" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "code-from-hell" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "error" - "etiquette" - "event" - "exact-duplicates" - "extensions" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help" - "hyperlinks" - "inquiry" - "interesting-tags" - "login" - "magento2" - "magestackday" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "openions" - "opinion" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggestion" - "support" - "tag-synonyms" - "tagging" - "tags" - "trolling" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vandalism" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.martialarts.el b/data/tags/meta.martialarts.el deleted file mode 100644 index 048da3f..0000000 --- a/data/tags/meta.martialarts.el +++ /dev/null @@ -1,74 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing-questions" - "comments" - "community-ads" - "community-wiki" - "contests" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "privileges" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.math.el b/data/tags/meta.math.el deleted file mode 100644 index f54d41e..0000000 --- a/data/tags/meta.math.el +++ /dev/null @@ -1,207 +0,0 @@ -("10k-tools" - "accept-rate" - "accepted-answer" - "account-suspension" - "advertising" - "advice" - "allowed-questions" - "android-app" - "answers" - "area51" - "asking-questions" - "auto-delete" - "badges" - "banners" - "behaviour" - "best-practices" - "big-list" - "blacklist" - "blog" - "bounty" - "bug" - "bumping" - "captcha" - "celebration" - "character-limit" - "chat" - "citation" - "close-reasons" - "closed-questions" - "closing" - "comment" - "comment-replies" - "comments" - "community" - "community-ads" - "community-bulletin" - "community-user" - "community-wiki" - "complaint" - "computer-science" - "contests" - "convention" - "copyright" - "cross-posting" - "css" - "daily-reputation-limit" - "data-dump" - "data-explorer" - "deleted-accounts" - "deleted-answers" - "deleted-questions" - "deletion" - "design" - "discussion" - "down-votes" - "dupehammer" - "duplicates" - "edit-history" - "editing" - "editor" - "election" - "equation" - "etiquette" - "exact-duplicates" - "exams" - "export" - "external" - "faq" - "faq-proposed" - "fastest-gun" - "favorites" - "feature-request" - "featured" - "firefox" - "flagging" - "font" - "formatting" - "frontpage" - "google-chrome" - "gravatar" - "help-center" - "help-suggestion" - "hint" - "homework" - "hot-questions-list" - "https" - "hyperlinks" - "ignored-tags" - "images" - "inbox" - "interesting-tags" - "internationalization" - "internet-explorer" - "ios-app" - "ipad" - "languages" - "layout" - "linked-questions" - "live-refresh" - "locked-questions" - "login" - "low-quality-posts" - "markdown" - "markdown-preview" - "mathjax" - "mathoverflow" - "merge-accounts" - "merging" - "messages" - "meta" - "meta-reputation" - "migration" - "mobile-web" - "moderation" - "moderators" - "multiple-accounts" - "naming" - "navigation" - "new-users" - "newsletter" - "notifications" - "offensive" - "on-hold-questions" - "on-site-contests" - "openid" - "policy" - "poll" - "post-ban" - "privacy" - "privileges" - "problem-solving" - "profile-page" - "project" - "proposal" - "protection" - "publicity" - "quality-filter" - "questions" - "rant" - "rate-limiting" - "re-open" - "recent-activity" - "reference" - "referring-urls" - "related-questions" - "reputation" - "retagging" - "review" - "review-audit" - "rss" - "sandbox" - "scraper-sites" - "se-sites" - "se2.0" - "search" - "seeded-questions" - "serial-voting" - "so" - "soft-question" - "solution-verification" - "sorting" - "spam" - "specific-answer" - "specific-flag" - "specific-question" - "specific-user" - "spelling" - "spoilers" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-blacklist" - "tag-management" - "tag-wikis" - "tagging" - "tags" - "terminology" - "time-limit" - "timeline" - "timestamps" - "titles" - "top-7" - "top-bar" - "typesetting" - "unanswered-questions" - "undeletion" - "unicode" - "unicoin" - "up-votes" - "url" - "user-accounts" - "user-interface" - "user-names" - "user-profile" - "users" - "vandalism" - "voting" - "winter-bash") diff --git a/data/tags/meta.matheducators.el b/data/tags/meta.matheducators.el deleted file mode 100644 index bd5f9e4..0000000 --- a/data/tags/meta.matheducators.el +++ /dev/null @@ -1,89 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "commitment" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "list" - "login" - "markdown" - "mathjax" - "meta" - "meta-statistics" - "migration" - "moderation" - "moderators" - "new-users" - "newbies" - "notifications" - "openid" - "profile-page" - "protected-questions" - "public-beta" - "purpose" - "question-parameters" - "question-standards" - "questions" - "recent-activity" - "reference" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "teachers" - "tex" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vision" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.mathematica.el b/data/tags/meta.mathematica.el deleted file mode 100644 index 88535e9..0000000 --- a/data/tags/meta.mathematica.el +++ /dev/null @@ -1,92 +0,0 @@ -("7-questions" - "accepted-answer" - "allowed-questions" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "cdf" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "code-formatting" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "duplicates" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "organization" - "packages" - "policy" - "poll" - "profile-page" - "projects" - "questions" - "recent-activity" - "reopen" - "reputation" - "retagging" - "review" - "rss" - "search" - "site-promotion" - "site-tools" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "syntax-highlighting" - "tag-synonyms" - "tag-wiki" - "tagging" - "tex" - "titles" - "traffic" - "unanswered" - "unanswered-questions" - "up-votes" - "user-accounts" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.mathoverflow.net.el b/data/tags/meta.mathoverflow.net.el deleted file mode 100644 index 1114a6a..0000000 --- a/data/tags/meta.mathoverflow.net.el +++ /dev/null @@ -1,105 +0,0 @@ -("10k-tools" - "accepted-answer" - "allowed-questions" - "answers" - "area51" - "asking-questions" - "association-bonus" - "badges" - "big-list" - "blog" - "bounty" - "bug" - "chat" - "citations" - "close-reasons" - "closed-questions" - "comment-notification" - "comments" - "communication" - "community-ads" - "community-user" - "community-wiki" - "copyright" - "cross-posting" - "data-dump" - "data-explorer" - "deleted-questions" - "deletions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "https" - "hyperlinks" - "images" - "interesting-tags" - "login" - "markdown" - "math-stackexchange" - "mathjax" - "meta" - "migration" - "minor-edits" - "moderation" - "moderators" - "new-users" - "newsletter" - "notifications" - "openid" - "policy" - "privileges" - "profile-page" - "questions" - "re-open" - "recent-activity" - "reputation" - "retagging" - "review-system" - "rss" - "sandbox" - "scope" - "search" - "searching" - "serial-voting" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "tea" - "titles" - "trackbacks" - "unanswered-questions" - "undelete-request" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vandalism" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.mechanics.el b/data/tags/meta.mechanics.el deleted file mode 100644 index 915e09e..0000000 --- a/data/tags/meta.mechanics.el +++ /dev/null @@ -1,74 +0,0 @@ -("accepted-answer" - "answers" - "area-51" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-definition" - "site-evaluation" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.moderators.el b/data/tags/meta.moderators.el deleted file mode 100644 index 39523c6..0000000 --- a/data/tags/meta.moderators.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "mod-tools" - "moderation" - "moderator-tags" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reddit" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-promotion" - "software" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "swearing" - "tag-synonyms" - "tagging" - "tagging-guidelines" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.money.el b/data/tags/meta.money.el deleted file mode 100644 index 2c44acc..0000000 --- a/data/tags/meta.money.el +++ /dev/null @@ -1,85 +0,0 @@ -("accepted-answer" - "allowed-topics" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing-questions" - "comments" - "community-ads" - "community-wiki" - "country-tags" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "economics" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "launch" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "review-queue" - "rss" - "search" - "site-evaluation" - "site-information" - "site-migration" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "stats" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggestion" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.movies.el b/data/tags/meta.movies.el deleted file mode 100644 index d024315..0000000 --- a/data/tags/meta.movies.el +++ /dev/null @@ -1,97 +0,0 @@ -("7-essential" - "accepted-answer" - "allowed-topics" - "analysis" - "answer-quality" - "answers" - "asking-questions" - "badges" - "blacklist" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-event" - "community-wiki" - "copyright" - "daily-reputation-limit" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "foreign" - "formatting" - "graduation" - "hyperlinks" - "identify" - "imdb" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "music-identification" - "new-users" - "notifications" - "off-topic" - "on-topic" - "openid" - "policy" - "profile-page" - "promotion" - "quality-evaluation" - "question-quality" - "questions" - "recent-activity" - "reference" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "spoilers" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "topic-of-the-week" - "tv" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.music.el b/data/tags/meta.music.el deleted file mode 100644 index bca77fc..0000000 --- a/data/tags/meta.music.el +++ /dev/null @@ -1,98 +0,0 @@ -("academia" - "accepted-answer" - "accidentals" - "answers" - "area51" - "asking-questions" - "attracting-visitors" - "badges" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "content-import" - "data-dump" - "data-explorer" - "decision" - "deleted-questions" - "design" - "discussion" - "domain-name" - "down-votes" - "duplicates" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "graduation" - "guitars" - "help-center" - "hyperlinks" - "interesting-tags" - "jquery" - "jtab" - "lilypond" - "login" - "markdown" - "meta" - "meta-stackexchange" - "migration" - "moderation" - "moderators" - "music-notation" - "new-users" - "notifications" - "old-questions" - "openid" - "practice" - "privileges" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "recommendations" - "reputation" - "resource-lists" - "retagging" - "rss" - "scope" - "search" - "site-attributes" - "site-evaluation" - "site-promotion" - "software" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "support" - "tag-synonyms" - "tags" - "top-7" - "topics" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.networkengineering.el b/data/tags/meta.networkengineering.el deleted file mode 100644 index 512f4cf..0000000 --- a/data/tags/meta.networkengineering.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta-phase" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "good-questions" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "se-guidance" - "search" - "site-content" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.opendata.el b/data/tags/meta.opendata.el deleted file mode 100644 index c3144d7..0000000 --- a/data/tags/meta.opendata.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "burninate-request" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "data-request" - "dataviz" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hackathon" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "search" - "site-evaluation" - "site-promotion" - "site-scope" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tags" - "top-bar" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.outdoors.el b/data/tags/meta.outdoors.el deleted file mode 100644 index 112b7b3..0000000 --- a/data/tags/meta.outdoors.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "building-user-base" - "burinate-request" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderator" - "new-users" - "notifications" - "openid" - "participation" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "seven-questions" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-merge-request" - "tag-synonyms" - "tagging" - "tags" - "topics" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.parenting.el b/data/tags/meta.parenting.el deleted file mode 100644 index 297ff79..0000000 --- a/data/tags/meta.parenting.el +++ /dev/null @@ -1,89 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "content" - "contest" - "copyright" - "data-dump" - "data-explorer" - "delete" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "essential" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "internet-explorer" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "policy" - "profile-page" - "protected" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "research" - "retagging" - "review" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "taking-ownership" - "terminology" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "visitors" - "vote-to-close" - "votes" - "voting" - "wording") diff --git a/data/tags/meta.patents.el b/data/tags/meta.patents.el deleted file mode 100644 index 06bde0b..0000000 --- a/data/tags/meta.patents.el +++ /dev/null @@ -1,81 +0,0 @@ -("about-page" - "accepted-answer" - "advertising" - "answers" - "ask-patents" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "prior-art" - "prior-art-request" - "privileges" - "profile-page" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-design" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tag-wiki-excerpt" - "tagging" - "tags" - "tools" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.pets.el b/data/tags/meta.pets.el deleted file mode 100644 index a03b3e7..0000000 --- a/data/tags/meta.pets.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "copyright" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "lists" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "plagiarism" - "professional" - "profile-page" - "quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "reviewing" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.philosophy.el b/data/tags/meta.philosophy.el deleted file mode 100644 index 31a4943..0000000 --- a/data/tags/meta.philosophy.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "allowed-topics" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "contests" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "latex" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "question-challenge" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.photo.el b/data/tags/meta.photo.el deleted file mode 100644 index 58a2794..0000000 --- a/data/tags/meta.photo.el +++ /dev/null @@ -1,121 +0,0 @@ -("accepted-answer" - "affiliate" - "allow" - "answers" - "ars-technica" - "asking-questions" - "badges" - "beta" - "blog" - "bounty" - "bug" - "business-cards" - "captcha" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "conferences" - "contest" - "copyright" - "creative-commons" - "critiques" - "crowdhacker" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "duplicates" - "editing" - "election" - "equipment-recommendations" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-suggestion" - "favorites" - "feature-request" - "featured" - "featured-photo" - "flag-weight" - "flagging" - "formatting" - "fun" - "gear-grant-program" - "hall-of-fame" - "help-center" - "holy-war" - "hyperlinks" - "images" - "interesting-tags" - "license" - "links" - "login" - "markdown" - "mergers" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "photographer" - "photographs" - "photoshop" - "post-review" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "reviews" - "revision-list" - "rss" - "rules" - "search" - "site-attributes" - "site-promotion" - "specific-question" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "support" - "swag" - "tag-naming" - "tag-synonyms" - "tag-wikis" - "tagging" - "tags" - "terminology" - "text" - "themes" - "top-7" - "unanswered-questions" - "untagged" - "up-votes" - "user-accounts" - "user-interface" - "users" - "video" - "vocabulary" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.physics.el b/data/tags/meta.physics.el deleted file mode 100644 index 6c34d9c..0000000 --- a/data/tags/meta.physics.el +++ /dev/null @@ -1,112 +0,0 @@ -("10k-tools" - "accepted-answer" - "answers" - "badges" - "best-practices" - "big-list" - "books" - "bounty" - "bug" - "bumping" - "burninate-request" - "chat" - "citation" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-user" - "community-wiki" - "content-level" - "data-dump" - "data-explorer" - "deleted-comments" - "deleted-questions" - "design" - "discussion" - "disputed-content" - "down-votes" - "duplicates" - "editing" - "election" - "entanglement" - "ethics" - "etiquette" - "exact-duplicates" - "experiment" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "fonts" - "formatting" - "homework" - "hyperlinks" - "inbox" - "interesting-tags" - "language" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "policy" - "profile-page" - "publishing" - "quantum" - "questions" - "recent-activity" - "reopen" - "reputation" - "request" - "resource-recommentation" - "retagging" - "retention" - "review" - "review-tools" - "rss" - "scope" - "search" - "site-enhancement" - "site-faq" - "site-promotion" - "site-salvage" - "site-statistics" - "soft-question" - "spam" - "speakers-bureau" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "suggested-edits" - "support" - "suspensions" - "tag-synonyms" - "tags" - "tex" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "user-profile" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.pm.el b/data/tags/meta.pm.el deleted file mode 100644 index f585383..0000000 --- a/data/tags/meta.pm.el +++ /dev/null @@ -1,85 +0,0 @@ -("accepted-answer" - "announcement" - "answers" - "area51" - "asking-questions" - "badges" - "beta" - "blogging" - "bounty" - "bug" - "canonical" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "contests" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "how-to-answer" - "hyperlinks" - "interesting-tags" - "login" - "low-quality-posts" - "markdown" - "merging-questions" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "promotion" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "search" - "site-evaluation" - "site-survival" - "site-topic" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-blacklist" - "tag-synonyms" - "tagging" - "tags" - "tools" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.poker.el b/data/tags/meta.poker.el deleted file mode 100644 index ce036c1..0000000 --- a/data/tags/meta.poker.el +++ /dev/null @@ -1,70 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hand-hisory" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.politics.el b/data/tags/meta.politics.el deleted file mode 100644 index 8ecc41a..0000000 --- a/data/tags/meta.politics.el +++ /dev/null @@ -1,81 +0,0 @@ -("7-questions" - "accepted-answer" - "answers" - "badges" - "beta" - "bias" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "controversy" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-comments" - "deleted-questions" - "design" - "discussion" - "down-votes" - "economics" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "general-reference" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "neutrality" - "new-users" - "notifications" - "openid" - "opinionated" - "profile-page" - "questions" - "recent-activity" - "references" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "voting" - "winterbash") diff --git a/data/tags/meta.productivity.el b/data/tags/meta.productivity.el deleted file mode 100644 index 3404a95..0000000 --- a/data/tags/meta.productivity.el +++ /dev/null @@ -1,77 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "audience" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "content-quality" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "merge" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "recommendations" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-attributes" - "site-evaluation" - "site-promotion" - "software" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.programmers.el b/data/tags/meta.programmers.el deleted file mode 100644 index 9d4c639..0000000 --- a/data/tags/meta.programmers.el +++ /dev/null @@ -1,167 +0,0 @@ -("accept-rate" - "accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "author" - "bad-questions" - "badges" - "beta" - "blog" - "bounty" - "bounty-awards" - "bug" - "career" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "closing-questions" - "code" - "comments" - "community" - "community-ads" - "community-wiki" - "computer-science" - "conferences" - "contest" - "copyright" - "cross-posting" - "css" - "curated-answers" - "data-dump" - "data-explorer" - "declined-flags" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "down-votes" - "duplicate-questions" - "editing" - "election" - "etiquette" - "faq" - "faq-contents" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "filtering" - "flagging" - "formatting" - "frustration" - "fun" - "guidelines" - "hats" - "help-center" - "homework-dump" - "hot-questions" - "html" - "hyperlinks" - "images" - "improvement" - "information-display" - "interesting-tags" - "language" - "legal" - "list-questions" - "lmgtfy" - "locked-question" - "locking" - "login" - "low-quality-posts" - "markdown" - "merge-accounts" - "merge-questions" - "merging" - "meta" - "meta-faq" - "meta-tags" - "migration" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "off-topic" - "on-topic-definition" - "openid" - "opinion-based" - "participation" - "polling" - "popular-questions" - "posse" - "post-ban" - "privileges" - "profile-page" - "programmers" - "promotion" - "protected-questions" - "quality" - "quality-filter" - "question" - "question-title" - "questions" - "rant" - "rate-limiting" - "recent-activity" - "recommendations" - "removal" - "reputation" - "resource-questions" - "retag-request" - "retagging" - "review" - "review-audits" - "rss" - "scope" - "search" - "sidebar" - "site-attributes" - "site-definition" - "site-promotion" - "site-rec" - "software-engineering" - "spam" - "specific-answer" - "specific-question" - "stackexchange" - "stackoverflow" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "stci" - "subjective" - "suggested-edits" - "support" - "suspensions" - "syntax-highlighting" - "tag-blacklist" - "tag-merge" - "tag-synonyms" - "tag-wikis" - "tags" - "top-7" - "twitter" - "unanswered-questions" - "unregistered-users" - "untagged" - "up-votes" - "user-accounts" - "user-interface" - "user-profile" - "users" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "websites" - "winter-bash" - "workplace-se") diff --git a/data/tags/meta.pt.stackoverflow.el b/data/tags/meta.pt.stackoverflow.el deleted file mode 100644 index a869aca..0000000 --- a/data/tags/meta.pt.stackoverflow.el +++ /dev/null @@ -1,178 +0,0 @@ -("acentuação" - "amplo-demais" - "análise" - "android-app" - "apenas-link" - "api" - "area51" - "atividades-recentes" - "autoria" - "bate-papo" - "beta" - "big-7" - "boletim-da-comunidade" - "botões" - "bracket" - "bug" - "busca" - "busca-de-emprego" - "código" - "cópias-exatas" - "caixa-de-entrada" - "camisetas" - "careers" - "central-de-ajuda" - "chat" - "citação" - "coerência" - "coesão" - "comentários" - "community-ads" - "como-perguntar" - "compartilhar" - "comportamento" - "computação" - "comunidade" - "contadores" - "contas-usuário" - "conteúdo" - "convenção" - "crítica" - "cross-posting" - "data-explorer" - "debate" - "design" - "destaque" - "diferenças-regionais" - "discussion" - "divulgação" - "documentação" - "down-votes" - "dump-dados" - "edição" - "edições-sugeridas" - "estatísicas" - "exclusão" - "faq" - "favoritos" - "fechamento" - "ferramenta" - "ferramentas-de-moderador" - "flags" - "fontes" - "fora-topico" - "formalidade" - "formatação" - "gramática" - "gratificação" - "histórico-de-revisões" - "homônimos" - "hyperlinks" - "idioma" - "imagem" - "iniciante" - "interface-usuário" - "interface-usuario" - "internacionalização" - "internationalization" - "ipad" - "janela-captcha" - "layout" - "lista-negra" - "listas" - "localização" - "login" - "logout" - "longevidade" - "magic-links" - "markdown" - "medalhas" - "meetup" - "meta" - "meta-tags" - "migração" - "mobile" - "moderação" - "não-construtivo" - "newsletter" - "no-tópico" - "notação-matemática" - "notificações" - "novo-recurso" - "novos-usuários" - "openid" - "operação" - "padronização" - "participação" - "perfil" - "pergunta-específica" - "pergunta-subjetiva" - "perguntas" - "perguntas-apagadas" - "perguntas-duplicadas" - "perguntas-fechadas" - "perguntas-sem-resposta" - "postagem" - "preview" - "primeiras-publicações" - "privilégios" - "promoção" - "proposta-para-faq" - "qualidade" - "questões" - "question-specific" - "razões-fechamento" - "re-tag" - "recompensa" - "reputação" - "responder-a-si-mesmo" - "resposta-aceita" - "resposta-específica" - "respostas" - "respostas-erradas" - "reversão" - "rota" - "rss" - "sandbox" - "serial-downvotes" - "serial-voting" - "sinalização" - "site-evaluation" - "slugs" - "stack-snippets" - "stackexchange" - "status-aceito" - "status-bydesign" - "status-futuro" - "status-nãorepro" - "status-pronto" - "status-recusado" - "status-repro" - "status-revisão" - "status-social" - "superuser" - "suporte" - "suspensão" - "syntax-highlighting" - "título" - "tag" - "tag-específica" - "tagging" - "tags" - "tags-interessantes" - "tags-obrigatórias" - "tags-sinónimas" - "tags-sinônimas" - "timezone" - "tipografia" - "tradução" - "up-votes" - "usabilidade" - "usuarios" - "votação" - "votando" - "voto-contra" - "votos" - "wiki-comunitário" - "wikis-de-tags" - "winterbash-2014") diff --git a/data/tags/meta.puzzling.el b/data/tags/meta.puzzling.el deleted file mode 100644 index 8f46107..0000000 --- a/data/tags/meta.puzzling.el +++ /dev/null @@ -1,104 +0,0 @@ -("accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "badges" - "blacklist" - "bounty" - "bug" - "burninate-request" - "challenges" - "chat" - "chess" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "contests" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "encoded-message" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "good-practice" - "help" - "help-center" - "hotness" - "hyperlinks" - "interesting-tags" - "legal" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "plagiarism" - "policy" - "private-beta" - "privileges" - "professional-puzzling" - "profile-page" - "protected-questions" - "question-quality" - "question-series" - "questions" - "recent-activity" - "reopen-request" - "reputation" - "retagging" - "reviewing" - "riddles" - "rss" - "scope" - "scripts" - "search" - "self-answer" - "site-evaluation" - "site-events" - "site-promotion" - "specific-question" - "spoilers" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "tips" - "title" - "top-bar" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.quant.el b/data/tags/meta.quant.el deleted file mode 100644 index e01cbdc..0000000 --- a/data/tags/meta.quant.el +++ /dev/null @@ -1,75 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "books" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "criticism" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "latex" - "login" - "markdown" - "mathjax" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "weekly-topic-challenge") diff --git a/data/tags/meta.raspberrypi.el b/data/tags/meta.raspberrypi.el deleted file mode 100644 index 3d351f5..0000000 --- a/data/tags/meta.raspberrypi.el +++ /dev/null @@ -1,79 +0,0 @@ -("7-questions" - "accepted-answer" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "content" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "foundation" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "on-off-topic" - "openid" - "profile-page" - "promotion" - "promotional-events" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-policy" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.reverseengineering.el b/data/tags/meta.reverseengineering.el deleted file mode 100644 index 7d3375d..0000000 --- a/data/tags/meta.reverseengineering.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "events" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-faq" - "site-promotion" - "software" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.robotics.el b/data/tags/meta.robotics.el deleted file mode 100644 index 1780228..0000000 --- a/data/tags/meta.robotics.el +++ /dev/null @@ -1,74 +0,0 @@ -("7-questions" - "accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.rpg.el b/data/tags/meta.rpg.el deleted file mode 100644 index a21c209..0000000 --- a/data/tags/meta.rpg.el +++ /dev/null @@ -1,114 +0,0 @@ -("5e" - "accepted-answer" - "advertising" - "answers" - "appropriateness" - "badges" - "beta" - "blacklist-request" - "bounty" - "bug" - "burninate-request" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "closing-questions" - "comments" - "community-ads" - "community-blog" - "community-wiki" - "contest" - "convention" - "css" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "duplicates" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposal" - "favorites" - "feature-request" - "featured" - "feed" - "flagging" - "formatting" - "game-recommendation" - "game-systems" - "hats" - "homebrew" - "hyperlinks" - "just-for-fun" - "larp" - "login" - "markdown" - "meta" - "migration" - "mobile" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "pathfinder" - "playtesting" - "policy" - "post-notice" - "privileges" - "process" - "profile-page" - "promotion" - "quality" - "questions" - "recent-activity" - "reputation" - "research" - "review" - "rss" - "rules-as-written" - "search" - "self-answered" - "site-design" - "site-promotion" - "site-status" - "spam" - "specific-question" - "spoilers" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective-questions" - "support" - "tag-wiki" - "tags" - "terminology" - "tools" - "top-7" - "unanswered-questions" - "unicoin" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "winterbash" - "winterbash-2014" - "world-of-darkness") diff --git a/data/tags/meta.russian.el b/data/tags/meta.russian.el deleted file mode 100644 index 2824436..0000000 --- a/data/tags/meta.russian.el +++ /dev/null @@ -1,78 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "guidelines" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "proposal" - "questions" - "recent-activity" - "reputation" - "resources" - "retag-request" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "unicode" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "working-language") diff --git a/data/tags/meta.salesforce.el b/data/tags/meta.salesforce.el deleted file mode 100644 index 4b68d83..0000000 --- a/data/tags/meta.salesforce.el +++ /dev/null @@ -1,87 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "blacklist-request" - "bounty" - "bug" - "burninate-request" - "certification" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "downvoting" - "dreamforce" - "editing" - "election" - "etiquette" - "exact-duplicates" - "exacttarget" - "faq" - "favorites" - "feature-request" - "featured" - "flag" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "job-openings" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-merge" - "tag-synonyms" - "tagging" - "tags" - "tour" - "ui" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.scicomp.el b/data/tags/meta.scicomp.el deleted file mode 100644 index 86da8a5..0000000 --- a/data/tags/meta.scicomp.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "big-list" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "essential-meta-questions" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "site-evaluation" - "site-promotion" - "site-scope" - "software" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "topicality" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.scifi.el b/data/tags/meta.scifi.el deleted file mode 100644 index 4c5e53e..0000000 --- a/data/tags/meta.scifi.el +++ /dev/null @@ -1,164 +0,0 @@ -("accepted-answer" - "adult-content" - "advertising" - "anime" - "answer-quality" - "answerama" - "answers" - "asking-questions" - "badges" - "beta" - "blog" - "bounty" - "bug" - "bulk-edits" - "canon" - "chat" - "chat-event" - "citations" - "clean-up" - "close-reasons" - "closed-questions" - "closing" - "comics" - "comments" - "community" - "community-ads" - "community-wiki" - "consistency" - "contest" - "copyright" - "css" - "data-dump" - "data-explorer" - "database" - "delete" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "disney-star-wars" - "down-votes" - "duplicate-answers" - "edit" - "editing" - "election" - "etiquette" - "evidence-question" - "exact-duplicates" - "fantasy" - "faq" - "favorites" - "feature-request" - "featured" - "feed" - "flagging" - "formatting" - "futurama" - "general-reference" - "genre-classification" - "group-watching" - "hats" - "help" - "hot-network-questions" - "hyperlinks" - "identify" - "images" - "in-character" - "inbox" - "incorrect-answers" - "interesting-tags" - "language" - "legal" - "linked-questions" - "list-questions" - "login" - "markdown" - "memes" - "meta" - "migration" - "mobile" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "newsletter" - "not-an-answer" - "not-useful" - "notability-of-sources" - "notifications" - "obsolete-posts" - "off-topic" - "on-topic" - "openid" - "opinion" - "plagiarism" - "policy" - "popular-topics" - "post-notice" - "profanity" - "profile-page" - "promotional-grant" - "question-quality" - "questions" - "quotation" - "recent-activity" - "relevancy" - "repeated-questions" - "reputation" - "retagging" - "review" - "review-queue" - "role-playing" - "rss" - "scope" - "search" - "self-answer" - "site-faq" - "site-promotion" - "site-rec" - "site-statistics" - "sorting" - "specific-question" - "spoilers" - "stackexchange" - "stackexchange-team" - "stackoverflow" - "star-trek" - "star-wars" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "suggested-edit" - "suggested-order" - "support" - "tag-blacklist-request" - "tag-cleanup" - "tag-synonyms" - "tag-wiki" - "tags" - "terminology" - "tfgitw" - "time-sensitive-questions" - "title" - "top-bar" - "topic-of-the-fortnight" - "trolling" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "usernames" - "users" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "wrong-answers") diff --git a/data/tags/meta.security.el b/data/tags/meta.security.el deleted file mode 100644 index fb1cb67..0000000 --- a/data/tags/meta.security.el +++ /dev/null @@ -1,104 +0,0 @@ -("acceptable-answer" - "acceptable-question" - "accepted-answer" - "answer-quality" - "answers" - "asking-questions" - "badges" - "black-hat" - "blog" - "bounty" - "bug" - "canonical-questions" - "captcha" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "competition" - "conference" - "cryptography" - "css" - "ctf" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "fun" - "hats" - "help-center" - "hyperlinks" - "interesting-tags" - "ipad" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "pii" - "privacy" - "privileges" - "profile-page" - "qotw" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "scope" - "search" - "site-faq" - "site-name" - "site-promotion" - "specific-question" - "ssl" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "swag" - "tag-pruning" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "tour" - "twitter" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "wiki" - "winterbash") diff --git a/data/tags/meta.serverfault.el b/data/tags/meta.serverfault.el deleted file mode 100644 index 0e6dd08..0000000 --- a/data/tags/meta.serverfault.el +++ /dev/null @@ -1,151 +0,0 @@ -("10k" - "accepted-answer" - "account" - "add-comment" - "advertising" - "allowed-topics" - "answer" - "answering-questions" - "answers" - "asking-questions" - "badges" - "bears" - "belongs-on" - "blacklist" - "blog" - "bounty" - "bug" - "burninate-request" - "canonical" - "captcha" - "career-development" - "careers" - "chat" - "cleanup" - "close" - "close-reasons" - "closed-questions" - "code-block" - "color" - "comments" - "communities" - "community" - "community-ads" - "community-wiki" - "conferences" - "culture" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "disputed-review-audits" - "doomed" - "down-votes" - "downvoting" - "duplicates" - "editing" - "election" - "election-2011" - "election-2012" - "election-2013" - "election-2014" - "email" - "ethics" - "etiquette" - "exact-duplicates" - "faq" - "faq-updates" - "favorites" - "feature-request" - "featured" - "flag" - "flagging" - "formatting" - "frontpage" - "fun" - "global-inbox" - "gravatar" - "help-center" - "https" - "hyperlinks" - "interesting-tags" - "linked-accounts" - "linux" - "login" - "low-quality" - "many-bears" - "markdown" - "merge" - "meta" - "michael-hampton" - "migrated" - "migration" - "moderation" - "moderators" - "moving-questions" - "networking" - "new-users" - "notifications" - "obvious-questions" - "off-topic" - "old-questions" - "on-topic" - "openid" - "pedantry" - "poll" - "profile-page" - "purchasing" - "question-title" - "questions" - "random" - "recent-activity" - "recommendations" - "reputation" - "retag-request" - "review" - "review-audits" - "reviewing" - "rss" - "search" - "security" - "server" - "serverfault" - "sf" - "sffaq" - "site-usage" - "spam" - "spammer" - "specific-question" - "stackexchange" - "stackoverflow" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "suggested-edits" - "super-user" - "support" - "syntax-highlighting" - "tag-warnings" - "tagging" - "tags" - "troubleshooting" - "unanswered-questions" - "unicoins" - "up-votes" - "usability" - "user-interface" - "users" - "version-numbers" - "vote-to-close" - "votes" - "voting" - "windows") diff --git a/data/tags/meta.sharepoint.el b/data/tags/meta.sharepoint.el deleted file mode 100644 index 5974e15..0000000 --- a/data/tags/meta.sharepoint.el +++ /dev/null @@ -1,96 +0,0 @@ -("7-essential-questions" - "accepted-answer" - "allowed-questions" - "answers" - "archive" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "business-cards" - "certification" - "chat" - "cleanup" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "conferences" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "forum" - "hats" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "mcp" - "meta" - "migration" - "moderation" - "moderators" - "multiple-answers" - "name" - "new-users" - "notifications" - "office-365" - "openid" - "overreaction" - "participation" - "privacy" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "review-page" - "rss" - "search" - "site-policies" - "site-promotion" - "source-code" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "version-tags" - "vote-to-close" - "votes" - "voting" - "winter-bash" - "yammer") diff --git a/data/tags/meta.skeptics.el b/data/tags/meta.skeptics.el deleted file mode 100644 index 8d99b2d..0000000 --- a/data/tags/meta.skeptics.el +++ /dev/null @@ -1,113 +0,0 @@ -("about-faq" - "accepted-answer" - "adopt-a-question" - "advertising" - "anecdotal-evidence" - "answering" - "answering-questions" - "answers" - "asking-questions" - "bad-user-behavior" - "badges" - "bias" - "blacklisting" - "bounty" - "bug" - "chat" - "citations" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "conference" - "data-dump" - "data-explorer" - "deleted-questions" - "deletion" - "design" - "discussion" - "down-votes" - "echo-chamber" - "editing" - "election" - "etiquette" - "evidence" - "evolution" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "flags" - "formatting" - "hyperlinks" - "images" - "interesting-tags" - "language" - "legal-issues" - "login" - "markdown" - "marketing" - "meta" - "migration" - "moderation" - "moderators" - "name" - "neutrality" - "new-users" - "notability" - "notifications" - "off-topic" - "openid" - "politics" - "post-notice" - "privileges" - "profile-page" - "proposed-faq" - "quality" - "questions" - "racism" - "recent-activity" - "references" - "reputation" - "research" - "retagging" - "rss" - "scope" - "search" - "site-faq" - "site-promotion" - "skepticism" - "sources" - "specific-question" - "stackexchange" - "standards" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-blacklisting" - "tag-synonyms" - "tagging" - "tags" - "tam" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vague" - "vote-to-close" - "votes" - "voting" - "winterbash" - "youtube") diff --git a/data/tags/meta.softwarerecs.el b/data/tags/meta.softwarerecs.el deleted file mode 100644 index 53f1c91..0000000 --- a/data/tags/meta.softwarerecs.el +++ /dev/null @@ -1,111 +0,0 @@ -("about-page" - "accepted-answer" - "active-questions" - "advertising" - "affiliate-programs" - "alternatives" - "answer-quality" - "answers" - "area51" - "asking-questions" - "badges" - "best" - "beta-phase" - "blacklist-request" - "bounty" - "browser-tabs" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "ethics" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "games" - "gratis" - "hardware" - "help-center" - "html" - "hyperlinks" - "interesting-tags" - "keyboard" - "login" - "low-quality-posts" - "malware" - "markdown" - "meta" - "migration" - "moderation" - "moderator-tools" - "new-users" - "notifications" - "openid" - "private-beta" - "privileges" - "profile-page" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "review" - "rss" - "scope" - "screenshots" - "search" - "self-answer" - "self-promotion" - "share-link" - "site-evaluation" - "site-name" - "site-promotion" - "spam" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "stats" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-merge" - "tag-synonyms" - "tag-wiki" - "tag-wiki-excerpt" - "tags" - "terminology" - "title" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "websites" - "winterbash2014") diff --git a/data/tags/meta.sound.el b/data/tags/meta.sound.el deleted file mode 100644 index 35cfdce..0000000 --- a/data/tags/meta.sound.el +++ /dev/null @@ -1,78 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "avp-sound-merge" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "codecs" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "policy" - "privileges" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "revival" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-removal-request" - "tag-request" - "tag-synonym-request" - "tag-synonyms" - "tagging" - "tags" - "topic-scope" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.space.el b/data/tags/meta.space.el deleted file mode 100644 index e0214e6..0000000 --- a/data/tags/meta.space.el +++ /dev/null @@ -1,88 +0,0 @@ -("accepted-answer" - "accidents" - "announcement" - "answers" - "asking-questions" - "attribution" - "badges" - "beginners" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "content-reuse" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "education" - "etiquette" - "evaluation" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderator" - "new-users" - "notifications" - "openid" - "profile-page" - "public-beta" - "quality" - "questions" - "recent-activity" - "reputation" - "resources" - "retagging" - "rss" - "scheduled-event" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "spelling" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "terminology" - "theme" - "topic-of-week" - "traffic" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "video" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.spanish.el b/data/tags/meta.spanish.el deleted file mode 100644 index e6d85f1..0000000 --- a/data/tags/meta.spanish.el +++ /dev/null @@ -1,80 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "espana" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "get-together" - "hyperlinks" - "interesting-tags" - "legal-issues" - "login" - "markdown" - "meta" - "mexico" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "on-topic-definition" - "openid" - "profile-page" - "questions" - "recent-activity" - "regionalisms" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjectivity" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.sports.el b/data/tags/meta.sports.el deleted file mode 100644 index 7cb4fb4..0000000 --- a/data/tags/meta.sports.el +++ /dev/null @@ -1,75 +0,0 @@ -("accepted-answer" - "answers" - "area51" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "copyright" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.sqa.el b/data/tags/meta.sqa.el deleted file mode 100644 index bbf9d7d..0000000 --- a/data/tags/meta.sqa.el +++ /dev/null @@ -1,73 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "kill-it-with-fire" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "selenium" - "site-evaluation" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective-questions" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.stackoverflow.el b/data/tags/meta.stackoverflow.el deleted file mode 100644 index f30e404..0000000 --- a/data/tags/meta.stackoverflow.el +++ /dev/null @@ -1,389 +0,0 @@ -("10k-tools" - "abandoned-questions" - "accepted-answer" - "accessibility" - "account-suspension" - "accounts" - "achievements" - "activity-tab" - "advertising" - "advice" - "age" - "android-app" - "anonymous-user" - "answer-quality" - "answers" - "api" - "archive" - "area51" - "asking-questions" - "association-bonus" - "attribution" - "authentication" - "auto-delete" - "autocomplete" - "automatic-comments" - "bad-questions" - "badge-request" - "badges" - "banning" - "batch-edits" - "behavior" - "blacklist-request" - "blog" - "bookmark" - "bounty" - "broken-link" - "browser-support" - "bug" - "bug-reports" - "bump" - "burninate-request" - "burninate-system" - "caching" - "canonical" - "captcha" - "careers" - "chat" - "chat-stars" - "china" - "clean-up" - "close-reasons" - "closed-questions" - "code" - "code-formatting" - "codereview-se" - "comment-edits" - "comment-flags" - "comment-replies" - "comment-votes" - "comments" - "commercial-questions" - "common-questions" - "community-ads" - "community-bulletin" - "community-managers" - "community-user" - "community-wiki" - "compartmentalization" - "computer-science-se" - "consecutive-days" - "content-blacklist" - "convention-badge" - "convert-to-comment" - "copycat-sites" - "copyright" - "coursera" - "creative-commons" - "cross-language" - "cross-posting" - "custom-close-reasons" - "daily-reputation-limit" - "data-dump" - "data-explorer" - "debugging-questions" - "declined-flags" - "deleted-accounts" - "deleted-answers" - "deleted-comments" - "deleted-questions" - "deleted-users" - "deprecation" - "design" - "dev.so" - "difficulty" - "discussion" - "display" - "display-names" - "disputed-flags" - "disputed-review-audits" - "documentation" - "down-votes" - "downvote-reason" - "draft" - "dupehammer" - "duplicate-accounts" - "duplicate-answers" - "duplicate-questions" - "edit-ban" - "edit-summary" - "editing-help" - "editor" - "edits" - "education" - "elitism" - "email" - "english" - "error-message" - "ethics" - "etiquette" - "external-links" - "facebook" - "fairness" - "faq" - "faq-proposed" - "fastest-gun" - "favicon" - "favorite-tags" - "favorites" - "feature-request" - "featured" - "feed" - "filtering" - "firefox" - "flag-badges" - "flag-dialog" - "flag-history" - "flag-suspension" - "flags" - "flair" - "floating-point" - "footer" - "forums" - "front-page" - "gamification" - "gender" - "global-inbox" - "google" - "google-chrome" - "grace-period" - "graph" - "gravatar" - "harassment" - "hellban" - "help-center" - "help-vampire" - "historical-lock" - "homepage" - "homework" - "hot-answers" - "hot-questions" - "human-verification" - "hyperlinks" - "idiom" - "ignored-tags" - "images" - "instant-self-answer" - "interesting-page" - "internet-explorer" - "ios-app" - "jquery" - "jsfiddle" - "keyboard-shortcuts" - "languages" - "last-activity" - "last-seen" - "late-answers" - "legal" - "license" - "link-only-answers" - "linked-questions" - "list-questions" - "live-refresh" - "lmgtfy" - "locked-posts" - "locked-votes" - "login" - "logo" - "logout" - "low-quality-posts" - "markdown" - "markdown-rendering" - "mathjax" - "mcve" - "me-too-answers" - "mentoring" - "merge-accounts" - "merged-questions" - "meta" - "meta-tags" - "meteor" - "migrated-questions" - "migration" - "missing-question" - "mobile" - "mobile-web" - "moderation" - "moderator-abilities" - "moderator-election" - "moderators" - "mso-mse-split" - "multi-stage-questions" - "multiple-answers" - "new-users" - "newsletter" - "nofollow" - "not-an-answer" - "not-constructive" - "notifications" - "offensive" - "old-answers" - "old-questions" - "on-hold" - "onebox" - "open-source-advertising" - "openid" - "openstv" - "opera" - "opinion-based" - "outdated-information" - "outsourcing" - "pagedown" - "pagination" - "penalty-ban" - "personal-data" - "plagiarism" - "plurals" - "poll" - "popularity" - "popup" - "portuguese-stackoverflow" - "post-ban" - "privacy" - "private-messaging" - "privileges" - "product-support" - "profile-page" - "profile-picture" - "protected-questions" - "quality-filter" - "quality-improvement" - "question-lists" - "question-quality" - "questions" - "rate-limiting" - "read-only-mode" - "recent-names" - "recommendation-questions" - "recommended-tab" - "registration" - "rejected-edits" - "related-questions" - "reopen-closed" - "reputation" - "reputation-audit" - "reputation-history" - "reputation-leagues" - "research" - "retag-request" - "retina" - "retracted-close-votes" - "review" - "review-abuse" - "review-audits" - "review-ban" - "review-suspension" - "revision-history" - "rollback-wars" - "rollbacks" - "rss" - "rules" - "s.tk" - "sample-questions" - "sandbox" - "scope" - "scss" - "se-quality-project" - "search" - "security" - "self-answer" - "self-promotion" - "seo" - "serial-voting" - "share" - "sharing" - "short-links" - "sidebar" - "signatures" - "similar-questions" - "site-crossover" - "site-recommendation" - "site-switcher" - "sock-puppets" - "software-recs-se" - "sorting" - "spam" - "specific-answer" - "specific-edit" - "specific-question" - "split-stack-overflow" - "split-vote-count" - "spoilers" - "sponsored-tags" - "ssl" - "stack-exchange" - "stack-snippets" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective-questions" - "suggested-edits" - "suggested-tags" - "superuser" - "support" - "survey" - "synonym-request" - "syntax-highlighting" - "system-message" - "tactical-downvoting" - "tag-badges" - "tag-blacklist" - "tag-creation" - "tag-disambiguation" - "tag-dropdown" - "tag-excerpt" - "tag-priority" - "tag-score" - "tag-search" - "tag-synonyms" - "tag-tips" - "tag-wiki" - "tags" - "technical" - "terminology" - "time" - "timeline" - "timestamps" - "timezone" - "title" - "too-broad" - "tooltips" - "top-bar" - "top-users" - "triage" - "typographical-error" - "unaccepted-answer" - "unanswered-questions" - "unclear" - "undeleted-questions" - "unicorns" - "up-votes" - "uploader" - "usability" - "user-card" - "user-experience" - "user-interface" - "users" - "versioning" - "views" - "vote-count" - "vote-to-close" - "vote-to-delete" - "vote-to-reopen" - "vote-to-undelete" - "voting" - "voting-fraud" - "w3schools" - "web-sockets" - "winterbash" - "winterbash-2014" - "work-for-stackexchange" - "wrong-answers" - "xy-problem" - "yearling-badge") diff --git a/data/tags/meta.startups.el b/data/tags/meta.startups.el deleted file mode 100644 index 98db3d4..0000000 --- a/data/tags/meta.startups.el +++ /dev/null @@ -1,76 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "publicity" - "questions" - "recent-activity" - "relevance" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "taxes" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.stats.el b/data/tags/meta.stats.el deleted file mode 100644 index 32f853f..0000000 --- a/data/tags/meta.stats.el +++ /dev/null @@ -1,112 +0,0 @@ -("accepted-answer" - "answers" - "badges" - "beta" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing-questions" - "comment" - "community" - "community-ads" - "community-wiki" - "computing" - "conference" - "cross-posting" - "data" - "data-dump" - "data-explorer" - "data-mining" - "data-visualization" - "datascience-stackexchange" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "domain-name" - "down-votes" - "editing" - "election" - "essential-questions" - "etiquette" - "exact-duplicates" - "faq" - "favorite-tags" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "fundamentals" - "homework" - "hyperlinks" - "inverse-modeling" - "journal-club" - "login" - "logo" - "markdown" - "math-display" - "mathjax" - "merge-accounts" - "merged-questions" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "on-topic" - "openid" - "papers" - "participation" - "pedagogy" - "policy" - "polystats-project" - "printing" - "probability" - "profile-page" - "psychophysics" - "question-of-the-week" - "questions" - "r" - "recent-activity" - "reopen-closed" - "reputation" - "review" - "rss" - "scope" - "search" - "self-answer" - "self-delete" - "site-name" - "site-promotion" - "software" - "stackexchange" - "stackoverflow" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "support" - "tag-excerpt" - "tag-synonyms" - "tag-wiki" - "tags" - "tex" - "title" - "unanswered-questions" - "undo" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes") diff --git a/data/tags/meta.superuser.el b/data/tags/meta.superuser.el deleted file mode 100644 index 456c0ad..0000000 --- a/data/tags/meta.superuser.el +++ /dev/null @@ -1,207 +0,0 @@ -("10k" - "abuse" - "accepted-answer" - "advertising" - "allowed-topics" - "android" - "android-app" - "answering-questions" - "answers" - "apple" - "applications" - "asking-questions" - "association" - "authentication" - "bad-questions" - "badges" - "beta" - "blacklist" - "bounty" - "bounty-hunt" - "broken-links" - "bug" - "canonical-answer" - "captcha" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "color" - "comments" - "community" - "community-ads" - "community-faq" - "community-user" - "community-wiki" - "compatibility" - "convert-to-comment" - "css" - "custom-close-reasons" - "data-dump" - "data-explorer" - "delete" - "deleted-answer" - "deleted-questions" - "design" - "discussion" - "disputed-flags" - "down-votes" - "drafts" - "editing" - "editor" - "election" - "email" - "etiquette" - "exact-duplicates" - "facebook" - "faq" - "faq-proposed" - "faq-update-request" - "favorites" - "feature-request" - "featured" - "firefox" - "flag" - "flag-weight" - "flagging" - "formatting" - "gaming" - "globalinbox" - "gmail" - "google" - "gravatar" - "greasemonkey" - "help-pages" - "html" - "hyperlinks" - "images" - "imgur" - "interesting-tags" - "interface" - "javascript" - "legality" - "list" - "locked" - "login" - "logo" - "logout" - "low-quality" - "mac" - "markdown" - "merged-questions" - "messaging" - "meta" - "meta-tags" - "migrated-marker" - "migration" - "mobile" - "moderation" - "moderator-elections" - "moderator-nomination" - "moderators" - "moving-questions" - "networking" - "new-users" - "newsletter" - "not-an-answer" - "notifications" - "off-topic" - "on-hold" - "on-topic" - "openid" - "osx" - "peer-review" - "policy" - "post-ban" - "post-notice" - "preview" - "privileges" - "profile-page" - "profile-popup" - "protected-posts" - "quality-filters" - "question-of-the-week" - "question-quality" - "questions" - "ranting" - "recent-activity" - "reject" - "related-problems" - "reopen-request" - "rep-recalc" - "replies" - "reputation" - "reputation-cap" - "reputation-leagues" - "retag-request" - "retagging" - "review" - "review-audits" - "revisions" - "rss" - "scope" - "search" - "self-answer" - "share" - "site-definition" - "site-promotion" - "site-rec" - "social-anomaly" - "software" - "software-rec" - "sorting" - "spam" - "specific-question" - "ssl" - "stackexchange" - "stackoverflow" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "subscription" - "suggested-edits" - "super-contest" - "superuser-blog" - "support" - "syntax-highlight" - "t-shirt" - "tablets" - "tag-cleanup-request" - "tag-cleanup-weekends" - "tag-synonym-request" - "tag-synonyms" - "tag-wiki" - "tag-wiki-suggestion" - "tagging" - "tags" - "terminology" - "too-localized" - "top-bar" - "top-questions" - "twitter" - "unanswered-questions" - "unicode" - "up-votes" - "usability" - "user-accounts" - "user-interface" - "user-profiles" - "username" - "users" - "validation" - "video-games" - "views" - "vote-to-close" - "votes" - "voting" - "websites" - "windows-8" - "windows-8-challenge" - "winter-bash") diff --git a/data/tags/meta.sustainability.el b/data/tags/meta.sustainability.el deleted file mode 100644 index 1375c04..0000000 --- a/data/tags/meta.sustainability.el +++ /dev/null @@ -1,78 +0,0 @@ -("7-questions" - "accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "bounty" - "bug" - "challenge" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-graduation" - "site-promotion" - "site-scope" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winterbash") diff --git a/data/tags/meta.tex.el b/data/tags/meta.tex.el deleted file mode 100644 index 2946270..0000000 --- a/data/tags/meta.tex.el +++ /dev/null @@ -1,143 +0,0 @@ -("10k-tools" - "accepting" - "acronyms" - "answers" - "asking-questions" - "avatar" - "badges" - "beer" - "best-practice" - "beta" - "big-list" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "code" - "code-example" - "comments" - "community" - "community-ads" - "community-user" - "community-wiki" - "conferences" - "contests" - "contributing" - "copyright" - "curiosity-killed-the-cat" - "data-dump" - "data-explorer" - "deleted-posts" - "deleted-questions" - "deleting" - "design" - "discussion" - "down-votes" - "dupehammer" - "duplicates" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "files" - "filesize" - "flagging" - "fonts" - "formatting" - "fun" - "guidelines" - "hyperlinks" - "images" - "imgur" - "inbox" - "interesting-tags" - "javascript" - "latex3" - "licensing" - "lists" - "login" - "logo" - "lualatex" - "markdown" - "markup" - "meta" - "migration" - "mobile" - "moderation" - "mwe" - "new-features" - "new-users" - "notifications" - "openid" - "package-authors" - "packages" - "please-do-this-for-me" - "policy" - "privileges" - "privileges-page" - "publicity" - "questions" - "recent-activity" - "recommendation" - "reputation" - "request-for-information" - "retagging" - "review-page" - "rss" - "sandbox" - "scope" - "scripts" - "search" - "self-answer" - "self-promotion" - "serial-voting" - "sidebar" - "site-promotion" - "site-recommendation" - "social-networking" - "spam" - "speakers-bureau" - "specific-question" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "stylised-latex" - "suggested-edits" - "support" - "syntax-highlighting" - "tag-synonyms" - "tagging" - "tags" - "tagwiki" - "tex-sx-package" - "too-localized" - "tour" - "tug" - "typography" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "user-profile-page" - "user-script" - "users" - "views" - "vote-to-close" - "vote-to-reopen" - "votes" - "voting" - "winterbash-2013") diff --git a/data/tags/meta.tor.el b/data/tags/meta.tor.el deleted file mode 100644 index bdbff31..0000000 --- a/data/tags/meta.tor.el +++ /dev/null @@ -1,75 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "delete-comments" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "https" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "newsletter" - "notifications" - "openid" - "profile-page" - "question-quality" - "questions" - "recent-activity" - "reputation" - "retagging" - "reviewing" - "rss" - "search" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.travel.el b/data/tags/meta.travel.el deleted file mode 100644 index dd66a55..0000000 --- a/data/tags/meta.travel.el +++ /dev/null @@ -1,102 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "beta" - "blog" - "bounty" - "bug" - "chat" - "children" - "close-reasons" - "closed-questions" - "closing-reason" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "documentation" - "down-votes" - "editing" - "election" - "etiquette" - "events" - "exact-duplicates" - "expat-questions" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "fun" - "goals" - "good-questions" - "graduation" - "guidelines" - "hyperlinks" - "images" - "immigration-questions" - "interesting-tags" - "list-questions" - "login" - "markdown" - "meetups" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "place-names-and-spelling" - "policy" - "privileges" - "profile-page" - "proposals" - "question-quality" - "questions" - "recent-activity" - "reputation" - "reversed-synonyms" - "rss" - "scope" - "search" - "self-answer" - "shopping" - "singular-tags" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tag-wiki-excerpts" - "tag-wikis" - "tagging" - "tags" - "tools" - "townhall" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "wikivoyage" - "wrong-answers") diff --git a/data/tags/meta.tridion.el b/data/tags/meta.tridion.el deleted file mode 100644 index e6d82a4..0000000 --- a/data/tags/meta.tridion.el +++ /dev/null @@ -1,74 +0,0 @@ -("2011" - "accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "competition" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "search" - "si4t" - "site-evaluation" - "site-promotion" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "webinar") diff --git a/data/tags/meta.unix.el b/data/tags/meta.unix.el deleted file mode 100644 index 8bfe88b..0000000 --- a/data/tags/meta.unix.el +++ /dev/null @@ -1,125 +0,0 @@ -("accepted-answer" - "advertisement" - "answer-quality" - "answers" - "asking-questions" - "badges" - "beta-phase" - "blacklist-request" - "blog" - "bounty" - "bug" - "canonical-questions" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-ads-meta" - "community-wiki" - "contest" - "cross-posting" - "css" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "domain" - "down-votes" - "dupehammer" - "duplicate" - "editing" - "election" - "etiquette" - "exact-duplicates" - "expiration" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "flags" - "fonts" - "formatting" - "front-page" - "fun" - "general-reference" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "merging" - "meta" - "migration" - "mobile-web" - "moderation" - "moderators" - "new-users" - "newsletter" - "notifications" - "obsolete-information" - "off-topic" - "on-topic" - "openid" - "profile-page" - "programming" - "promotion" - "proposed-faq" - "quality-filter" - "question-quality" - "questions" - "recent-activity" - "reopen-closed" - "reputation" - "resources" - "retag-request" - "retagging" - "review" - "rollbacks" - "rss" - "scope" - "search" - "self-answer" - "shopping-recommendations" - "site-name" - "sorting" - "spam" - "specific-question" - "ssl" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "superuser" - "support" - "syntax-highlighting" - "tag-synonyms" - "tag-tips" - "tag-wiki" - "tagging" - "tags" - "title" - "top-7" - "top-bar" - "ubuntu" - "unanswered-questions" - "up-votes" - "usability" - "user-accounts" - "user-interface" - "usernames" - "users" - "vote-to-close" - "votes" - "voting" - "winterbash-2014") diff --git a/data/tags/meta.ux.el b/data/tags/meta.ux.el deleted file mode 100644 index 1add8d3..0000000 --- a/data/tags/meta.ux.el +++ /dev/null @@ -1,114 +0,0 @@ -("accepted-answer" - "accessibility" - "answers" - "asking-questions" - "badges" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community" - "community-ads" - "community-wiki" - "conference" - "css" - "culture" - "data-dump" - "data-explorer" - "definition" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "election" - "etiquette" - "events" - "exact-duplicates" - "faq" - "faq-contents" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hats" - "help" - "hyperlinks" - "ia" - "icons" - "images" - "interesting-tags" - "language" - "linked-questions" - "links" - "login" - "logo" - "markdown" - "merge" - "meta" - "migrate" - "migration" - "mobile" - "mobile-web" - "mockups" - "moderation" - "moderators" - "navigation" - "new-users" - "notices" - "notifications" - "off-topic" - "on-topic" - "openid" - "profile-page" - "promotion" - "protected-questions" - "quality" - "question" - "questions" - "recent-activity" - "references-and-sources" - "reputation" - "retagging" - "rss" - "scope" - "search" - "sharing" - "site-growth" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "survey" - "tag-blacklist-request" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "twitter" - "unanswered-questions" - "untagged" - "up-votes" - "usability" - "user-accounts" - "user-interface" - "users" - "ux" - "uxexchange" - "video" - "vote-to-close" - "votes" - "voting" - "wireframe") diff --git a/data/tags/meta.video.el b/data/tags/meta.video.el deleted file mode 100644 index 45d7087..0000000 --- a/data/tags/meta.video.el +++ /dev/null @@ -1,75 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-attributes" - "site-evaluation" - "soundcloud" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-request" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.webapps.el b/data/tags/meta.webapps.el deleted file mode 100644 index 86b5703..0000000 --- a/data/tags/meta.webapps.el +++ /dev/null @@ -1,112 +0,0 @@ -("404-image" - "accepted-answer" - "account-association" - "answers" - "app-recommendation" - "asking-questions" - "auto-deletion" - "badges" - "beta" - "blacklist" - "blog" - "bounty" - "bug" - "canonical-question" - "chat" - "clean-up" - "close-reasons" - "closed-questions" - "color" - "comments" - "community-ads" - "community-wiki" - "contest" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "domain-name" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "faq-proposed" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "information" - "interesting-tags" - "links" - "login" - "markdown" - "merging" - "meta" - "meta-tags" - "migration" - "moderation" - "moderators" - "new-users" - "non-users" - "notifications" - "openid" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retag-request" - "retagging" - "review" - "rss" - "scope" - "search" - "seed-questions" - "self-answer" - "site-attributes" - "site-recommendation" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "suggestion" - "support" - "swag" - "synonym-request" - "tag-request" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "tour" - "tumblr" - "ui" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "user-profiles" - "users" - "users-page" - "vote-to-close" - "votes" - "voting" - "web-apps" - "wordpress" - "wordpress.com") diff --git a/data/tags/meta.webmasters.el b/data/tags/meta.webmasters.el deleted file mode 100644 index 0a408f2..0000000 --- a/data/tags/meta.webmasters.el +++ /dev/null @@ -1,89 +0,0 @@ -("accepted-answer" - "activity" - "answers" - "asking-questions" - "badges" - "belongs-on-stackoverflow" - "beta-progress" - "blog" - "bounty" - "bug" - "catch-all" - "chat" - "cleanup" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "css" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "disclosure" - "discussion" - "domain-name" - "down-votes" - "editing" - "election" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "legal" - "login" - "looking-for-a-script" - "markdown" - "meta" - "meta-pro-webmasters" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reopen-queue" - "reputation" - "retagging" - "revisions" - "rss" - "search" - "seo" - "spam" - "specific-question" - "stack-overflow" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suitable-question" - "support" - "tag-synonyms" - "tags" - "unanswered-questions" - "up-votes" - "usability" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.windowsphone.el b/data/tags/meta.windowsphone.el deleted file mode 100644 index 9fb45f6..0000000 --- a/data/tags/meta.windowsphone.el +++ /dev/null @@ -1,74 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "bounty" - "brand" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "hyperlinks" - "interesting-tags" - "login" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "openid" - "profile-page" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-evaluation" - "site-promotion" - "spam" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-synonyms" - "tagging" - "tags" - "top-7" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.wordpress.el b/data/tags/meta.wordpress.el deleted file mode 100644 index d48cd88..0000000 --- a/data/tags/meta.wordpress.el +++ /dev/null @@ -1,99 +0,0 @@ -("7-essential-questions" - "accepted-answer" - "answers" - "asking-questions" - "badges" - "best-practice" - "blog" - "bounty" - "bug" - "chat" - "cleanup" - "close-reasons" - "closed-questions" - "code" - "comments" - "community-ads" - "community-wiki" - "conferences" - "contest" - "cw" - "data-dump" - "data-explorer" - "deleted-answers" - "deleted-questions" - "design" - "discussion" - "domain-name" - "down-votes" - "editing" - "election" - "email" - "ethics" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "guide" - "humor" - "hyperlinks" - "interesting-tags" - "license" - "login" - "markdown" - "meta" - "migration" - "mobile" - "moderation" - "moderators" - "new-users" - "notifications" - "off-topic" - "openid" - "plugins" - "profile-page" - "promotion" - "questions" - "recent-activity" - "reputation" - "retagging" - "rss" - "scope" - "search" - "spam" - "speakers-bureau" - "specific-question" - "spoilers" - "sponsorship" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "style" - "suggested-edits" - "suggestion" - "support" - "syntax-highlighting" - "tag-synonyms" - "tags" - "unanswered-questions" - "untagged" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "woothemes" - "wordpress.org") diff --git a/data/tags/meta.workplace.el b/data/tags/meta.workplace.el deleted file mode 100644 index e8b9011..0000000 --- a/data/tags/meta.workplace.el +++ /dev/null @@ -1,111 +0,0 @@ -("accepted-answer" - "aggressive-edits" - "announcement" - "answers" - "asking-questions" - "back-it-up" - "badges" - "best-practice" - "beta" - "blog" - "bounty" - "broken-windows-review" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing" - "comments" - "community-ads" - "community-user" - "community-wiki" - "css" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "downvoting" - "editing" - "election" - "elections" - "etiquette" - "event" - "exact-duplicates" - "faq" - "faq-content" - "faq-proposed" - "favorites" - "feature-question" - "feature-request" - "featured" - "flagging" - "formatting" - "graduation" - "hats" - "help-center" - "hot-questions" - "hyperlinks" - "interesting-tags" - "legal-questions" - "login" - "low-quality-questions" - "markdown" - "meta" - "migration" - "mobile" - "moderation" - "moderator-tools" - "moderators" - "new-users" - "notifications" - "objective-questions" - "offtopic" - "on-topic-definition" - "openid" - "opinion-based" - "profile-page" - "quality" - "quality-evaluation" - "questions" - "recent-activity" - "rejected-edits" - "reopen-request" - "reputation" - "retagging" - "rss" - "scope" - "search" - "site-definition" - "site-evaluation" - "site-policy" - "site-promotion" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "suggested-edits" - "support" - "tag-blacklist-request" - "tag-synonyms" - "tagging" - "tags" - "unanswered-questions" - "unregistered-accounts" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vot" - "vote-to-close" - "votes" - "voting") diff --git a/data/tags/meta.worldbuilding.el b/data/tags/meta.worldbuilding.el deleted file mode 100644 index 4a9323b..0000000 --- a/data/tags/meta.worldbuilding.el +++ /dev/null @@ -1,88 +0,0 @@ -("accepted-answer" - "answers" - "area51" - "asking-questions" - "badges" - "beta" - "blog" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "closing-questions" - "comments" - "community-ads" - "community-wiki" - "cross-site" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "feed" - "flagging" - "formatting" - "help-center" - "hyperlinks" - "interesting-tags" - "login" - "low-quality" - "markdown" - "meta" - "migration" - "moderation" - "moderators" - "new-users" - "notifications" - "on-topic" - "openid" - "poke" - "policy" - "profile-page" - "questions" - "recent-activity" - "referral" - "reputation" - "retagging" - "rss" - "sandbox" - "science" - "search" - "site-promotion" - "specific-question" - "specific-tag" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "support" - "tag-blacklist" - "tag-synonyms" - "tag-wiki" - "tagging" - "tags" - "too-broad" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "winter-bash") diff --git a/data/tags/meta.writers.el b/data/tags/meta.writers.el deleted file mode 100644 index 9af7a76..0000000 --- a/data/tags/meta.writers.el +++ /dev/null @@ -1,94 +0,0 @@ -("accepted-answer" - "answers" - "asking-questions" - "badges" - "big-7" - "bounty" - "bug" - "chat" - "close-reasons" - "closed-questions" - "comments" - "community-ads" - "community-wiki" - "contest" - "critique" - "data-dump" - "data-explorer" - "deleted-questions" - "design" - "discussion" - "down-votes" - "editing" - "etiquette" - "exact-duplicates" - "faq" - "favorites" - "feature-request" - "featured" - "flagging" - "formatting" - "genre" - "help-center" - "hyperlinks" - "interesting-tags" - "list-question" - "login" - "markdown" - "meta" - "migration" - "moderation" - "nanowrimo" - "new-users" - "notifications" - "off-topic" - "on-topic-definition" - "openid" - "priviliges" - "profile-page" - "publicity" - "quality-evaluation" - "questions" - "recent-activity" - "reputation" - "retagging" - "reviews" - "rss" - "search" - "site-definition" - "site-evaluation" - "site-promotion" - "specific-answer" - "specific-question" - "stackexchange" - "statistics" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "status-reproduced" - "status-review" - "subjective" - "suggested-edits" - "support" - "tag-synonyms" - "tagging" - "tags" - "target-audience" - "technical" - "too-broad" - "topic-challenge-proposal" - "unanswered-questions" - "up-votes" - "user-accounts" - "user-experience" - "user-interface" - "users" - "vote-to-close" - "votes" - "voting" - "weekly-topic-challenge" - "writers-se-ebook" - "writing-exercise") diff --git a/data/tags/moderators.el b/data/tags/moderators.el deleted file mode 100644 index af1459b..0000000 --- a/data/tags/moderators.el +++ /dev/null @@ -1,99 +0,0 @@ -("abuse" - "accessability" - "adult-content" - "age-limit" - "anonymity" - "avatar" - "backlash" - "ban-evasion" - "bans" - "bias" - "blog" - "bullying" - "categorization" - "chat-rooms" - "children" - "communication" - "community-standards" - "conflict-resolution" - "content-curation" - "copyright" - "deletion" - "demographics" - "disciplinary-actions" - "disruptive-users" - "edit-war" - "editing" - "end-of-life" - "engaged-users" - "established-users" - "famous-user" - "feedback" - "filtering-content" - "finance" - "fingerprinting" - "forum-software" - "fraud" - "game" - "gamification" - "guest-content" - "hellban" - "help-vampire" - "history" - "ignore-list" - "inactive-users" - "irc" - "karma" - "language-barrier" - "law" - "mailing-lists" - "meetings" - "migration" - "missing-administrators" - "mistakes" - "moderator-access" - "moderator-elections" - "moderator-profiles" - "moderator-relationship" - "moderator-responsibility" - "moderator-selection" - "moderator-teams" - "money" - "motivation" - "new-users" - "offensive-content" - "participation" - "physical-communities" - "powers" - "privacy" - "problem-users" - "promotion" - "ranking" - "real-life" - "reddit" - "reputation" - "roles" - "rules-and-policies" - "security" - "self-moderation" - "site-administration" - "site-culture" - "site-growth" - "site-health" - "small-communities" - "spam" - "stack-exchange" - "start-up" - "term-duration" - "time-management" - "tools" - "training" - "transparency" - "trolls" - "user-behavior" - "user-identity" - "user-retention" - "voting" - "web-forums" - "wiki" - "wikisource") diff --git a/data/tags/money.el b/data/tags/money.el deleted file mode 100644 index e4c1abd..0000000 --- a/data/tags/money.el +++ /dev/null @@ -1,734 +0,0 @@ -("1099" - "401k" - "403b" - "457b" - "529-plan" - "account-transfer" - "accounting" - "accounts" - "accrual" - "ach" - "adjustable-rate-mortgage" - "adjusted-gross-income" - "adr" - "after-hours-trading" - "airline" - "alerts" - "alternative-minimum-tax" - "alternatives" - "amended-tax-return" - "american-express" - "amortization" - "annual-activity" - "annual-report" - "annuity" - "application-process" - "applications" - "appraisal" - "apr" - "apy" - "arbitrage" - "asset-allocation" - "asset-class" - "asset-protection" - "assets" - "atm" - "auction" - "audit" - "australia" - "austria" - "auto-loan" - "automation" - "backtesting" - "balance" - "balance-sheet" - "balance-transfer" - "bangladesh" - "bank-account" - "bank-of-america" - "banking" - "bankruptcy" - "behavioral-finance" - "benefits" - "beta" - "bidding" - "billing" - "bills" - "bitcoin" - "board-of-directors" - "boardroom" - "bond-funds" - "bonds" - "bonus" - "book-value" - "bookkeeping" - "books" - "borrowing" - "brazil" - "broker" - "brokerage" - "bubble" - "budget" - "budgeting" - "bullion" - "business" - "cad-canadian-dollar" - "calculation" - "california" - "call-auction" - "call-options" - "calls" - "canada" - "canada-family-tax-cut" - "canada-revenue-agency" - "capital-cost-allowance" - "capital-gain" - "capital-gains-tax" - "capital-loss" - "car" - "car-insurance" - "career" - "case-shiller-index" - "cash" - "cash-advance" - "cash-flow" - "cash-settlement" - "cashier-check" - "certificate-of-deposit" - "cfd" - "chargeback" - "charges" - "charitable-contributions" - "charity" - "chart" - "check" - "checking-account" - "cheques" - "child-care" - "children" - "china" - "chip-card" - "citi" - "citizenship" - "clark-howard" - "co-sign" - "cobra" - "coins" - "collectibles" - "collections" - "college" - "commission" - "commodities" - "common-law-marriage" - "comparison" - "compensation" - "compound-interest" - "consol" - "consulting" - "consumer-protection" - "contractor" - "contracts" - "contribution" - "corporate-acquisition" - "corporate-earnings" - "corporation" - "cost-basis" - "cost-cutting" - "counterfeiting" - "coupons" - "coverdell-esa" - "covered-call-writing" - "cpi" - "credit" - "credit-card" - "credit-check" - "credit-history" - "credit-limit" - "credit-rating-agency" - "credit-report" - "credit-score" - "credit-unions" - "croatia" - "crowdfunding" - "currency" - "current-events" - "customer-service" - "dave-ramsey" - "day-trading" - "death" - "debit-card" - "debt" - "debt-collection" - "debt-collectors" - "debt-discharge" - "debt-reduction" - "debt-restructuring" - "debt-to-income-ratio" - "decision" - "deduction" - "default" - "definition" - "deflation" - "dependents" - "deposit-insurance" - "deposits" - "depreciation" - "derivatives" - "dilution" - "discount" - "discount-broker" - "discounting" - "dispute" - "diversification" - "dividend-reinvestment" - "dividends" - "divorce" - "document-retention" - "documents" - "dollar-cost-averaging" - "donation" - "double-auction" - "double-entry" - "down-payment" - "duration" - "ebay" - "eco-friendly" - "ecommerce" - "economics" - "education" - "education-savings" - "egypt" - "electricity" - "electronic-payment" - "eligible-expenses" - "emergency-fund" - "emerging-markets" - "employee-share-plan" - "employee-stock-options" - "employer" - "employer-match" - "employment" - "employment-law" - "endorsement" - "envelope-system" - "environment" - "espp" - "establishing-credit" - "estate-planning" - "estate-settlement" - "estimated-taxes" - "estonia" - "etf" - "ethiopia" - "etn" - "eur-euro" - "europe" - "european-union" - "ex-dividend-date" - "excess-contribution" - "expense-policy" - "expense-ratio" - "expense-tracking" - "expenses" - "experian" - "expiration" - "extended-warranty" - "f1-student-visa" - "fafsa" - "family" - "fbar" - "fca" - "fdic" - "federal-reserve" - "fees" - "fico-score" - "fidelity" - "financial-advisor" - "financial-literacy" - "financial-statements" - "financing" - "finland" - "first-time-home-buyer" - "fixed-income" - "flexible-spending-account" - "florida" - "forecasting" - "foreclosure" - "foreign-exchange" - "form-1040x" - "form-1099" - "form-1099-misc" - "form-8606" - "form-w-2" - "form-w-4" - "france" - "fraud" - "free" - "frequent-flier-miles" - "friends" - "frugal" - "fscs" - "fund-manager" - "funeral" - "futures" - "gbp-british-pound" - "general-partnership" - "germany" - "gic" - "gift-card" - "gift-certificate" - "gift-tax" - "gifts" - "gnucash" - "gold" - "google" - "google-finance" - "government" - "government-assistance" - "government-bonds" - "greece" - "groceries" - "growth" - "gst" - "gst-credit" - "guarantor" - "h-1b-visa" - "hard-assets" - "hdhp" - "health-insurance" - "health-spending-account" - "healthcare" - "hedge" - "hedge-funds" - "hedging" - "heloc" - "high-yield" - "historical-analysis" - "historical-data" - "history" - "hobby-income" - "holidays" - "home" - "home-equity" - "home-insurance" - "home-loan" - "home-office" - "home-ownership" - "home-renovation" - "homework" - "hong-kong" - "household" - "housing" - "how-to" - "hsa" - "hst" - "hungary" - "hyperinflation" - "identity-theft" - "illinois" - "income" - "income-statement" - "income-tax" - "income-tax-refund" - "income-taxes" - "incorporating" - "index-fund" - "india" - "indices" - "inflation" - "inheritance" - "inr-indian-rupee" - "installment-sale" - "insurance" - "intellectual-property" - "interest" - "interest-rate" - "international" - "international-trading" - "international-transfer" - "investing" - "investment-property" - "investment-strategies" - "investments" - "iphone" - "ipo" - "ira" - "ireland" - "irs" - "isa" - "israel" - "italy" - "itin" - "japan" - "jewelry" - "job-change" - "job-offer" - "joint-account" - "jointly-held-property" - "junk-bonds" - "kentucky" - "kmymoney" - "ladder" - "landlord" - "latvia" - "law" - "lawsuit-settlement" - "learning" - "lease" - "leasing" - "lebanon" - "legal" - "legal-tender" - "legislation" - "lending" - "lending-club" - "leverage" - "leveraged-etf" - "liabilities" - "liability" - "life-insurance" - "lifecycle-fund" - "lifestyle" - "limit-order" - "limited-liability-company" - "limited-partnership" - "limits" - "line-of-credit" - "liquidity" - "loan-consolidation" - "loans" - "losses" - "lottery" - "loyalty-programs" - "lump-sum" - "mac-osx" - "macroeconomics" - "mailing" - "maintenance" - "malaysia" - "manulife-one" - "margin" - "market-capitalization" - "market-data" - "market-decline" - "market-indexes" - "market-order" - "markets" - "marriage" - "maryland" - "massachusetts" - "mastercard" - "maternity-leave" - "maturity" - "memberships" - "mer" - "metric" - "mexico" - "michigan" - "micr" - "microlending" - "micropayment" - "microsoft-excel" - "microsoft-money" - "minimum-payment" - "minor" - "mint.com" - "mistakes" - "mobile-phone-plans" - "monetary-policy" - "monetary-union" - "money-market" - "money-order" - "money-supply" - "money-transfer" - "morningstar-star-rating" - "mortgage" - "mortgage-brokers" - "mortgage-qualification" - "mortgage-rate" - "moving" - "mpf" - "mumbai" - "municipal-bonds" - "mutual-funds" - "myra" - "nasdaq" - "national-insurance" - "negotiation" - "nepal" - "net-worth" - "netherlands" - "new-jersey" - "new-york" - "new-zealand" - "news" - "non-profit" - "non-resident" - "norway" - "nova-scotia" - "nse-india" - "ofx" - "ohio" - "online" - "online-applications" - "online-banking" - "online-brokerage" - "online-data-source" - "online-payment" - "online-shopping" - "online-tools" - "online-trading" - "ontario" - "open-source" - "option-exercise" - "option-strategies" - "options" - "options-assignment" - "options-clearing" - "overdraft" - "paper-money" - "partnership" - "passive-income" - "password" - "paycheck" - "payment" - "paypal" - "payroll-taxes" - "peer-to-peer-lending" - "penalty" - "pennsylvania" - "penny-stocks" - "pension" - "pension-plan" - "permanent-resident" - "personal-check" - "personal-loan" - "philippines" - "phishing" - "pink-sheets" - "pmi" - "points" - "politics" - "portfolio" - "postal-order" - "pre-authorized-payment" - "precious-metals" - "preferred-stocks" - "premium-bonds" - "premiums" - "price" - "price-earnings-ratio" - "price-theory" - "primary-residence" - "principal" - "privacy" - "private-lending" - "problem" - "profitability" - "promotion" - "property-taxes" - "psychology" - "puerto-rico" - "purchase" - "put-options" - "puts" - "quebec" - "questrade" - "quickbooks" - "quickbooks-online" - "quicken" - "quotes" - "raise" - "rate-of-return" - "rates" - "ratio" - "real-estate" - "real-time-quotes" - "rebalancing" - "rebate" - "receipt" - "receivership" - "recharacterization" - "recommendation" - "reconciling" - "record-keeping" - "reference-material" - "refinance" - "refund" - "regulation" - "reimbursement" - "reit" - "relocation" - "rent" - "rental-property" - "renter" - "repayment" - "research" - "resp" - "restricted-stock" - "retirement" - "retirement-plan" - "reverse-mortgages" - "reward-program" - "risk" - "risk-management" - "rmd" - "rollover" - "rollover-direct" - "roth-401k" - "roth-conversion" - "roth-ira" - "rrsp" - "rub-ruble" - "russia" - "s-corporation" - "sabbatical" - "safe-deposit-box" - "salary" - "salary-increase" - "sales-tax" - "sales-taxes" - "savings" - "savings-account" - "savings-bonds" - "scams" - "schedule-c" - "schedule-k-1" - "school" - "schwab" - "second-mortgage" - "secured-credit-card" - "security" - "self-directed" - "self-directed-ira" - "self-employment" - "selling" - "services" - "settling-and-clearing" - "share-certificate" - "shares" - "sharia" - "sharing" - "shipping" - "shopping" - "short-sale-property" - "short-term" - "shorting-securities" - "signature" - "silver" - "simple-ira" - "singapore" - "small-business" - "small-cap-stocks" - "smart-order-routing" - "smsf" - "social-security" - "software" - "sole-proprietorship" - "solicitation" - "solo-401k" - "south-east-asia" - "south-korea" - "sovereign-default" - "spain" - "speculation" - "spending" - "spin-off" - "spreads" - "spring-cleaning" - "standard-and-poors-500" - "start-up" - "starting-out-investing" - "state-income-tax" - "statistics" - "stock-analysis" - "stock-dividend" - "stock-exchanges" - "stock-markets" - "stock-split" - "stock-valuation" - "stocks" - "student-loan" - "subsidy" - "superannuation" - "sweden" - "switzerland" - "target-date-fund" - "tax-credit" - "tax-deduction" - "tax-exemption" - "tax-forms" - "tax-free-savings" - "tax-professionals" - "taxable-account" - "taxes" - "taxes-owing" - "technical-analysis" - "term-life" - "termination" - "terminology" - "texas" - "tfsa" - "theory" - "tips" - "title-insurance" - "toronto-stock-exchange" - "tracking" - "trading" - "trading-volume" - "transaction" - "transfer" - "travel" - "treasury" - "trusts" - "tuition" - "turbotax" - "turkey" - "turnover" - "uccb" - "ugma" - "ukraine" - "underwater-mortgage" - "unemployment" - "united-kingdom" - "united-states" - "universal-life" - "university" - "untagged" - "usaa" - "usd-us-dollar" - "used-goods" - "utilities" - "utility" - "utma" - "value-averaging" - "value-investing" - "vanguard" - "variable-annuity" - "vat" - "vesting" - "video-games" - "virginia" - "virtual-credit-card" - "visa" - "vix" - "volatility" - "w2" - "wage-garnishing" - "warehouse-clubs" - "warrants" - "wash-sale" - "water" - "wealth-preservation" - "websites" - "wedding" - "whole-life" - "will" - "wire-transfer" - "withdrawal" - "withholding" - "working-abroad" - "working-at-home" - "world" - "yahoo-finance" - "yield") diff --git a/data/tags/movies.el b/data/tags/movies.el deleted file mode 100644 index 9a2ae81..0000000 --- a/data/tags/movies.el +++ /dev/null @@ -1,1769 +0,0 @@ -("10000-bc" - "12-angry-men" - "12-monkeys" - "12-years-a-slave" - "2-broke-girls" - "2-guns" - "2000s" - "2001-a-space-odyssey" - "20th-century-fox" - "21-jump-street" - "22-jump-street" - "24" - "28-days-later" - "3-days-to-kill" - "3-idiots" - "30-rock" - "300" - "300-rise-of-an-empire" - "3000-miles-to-graceland" - "30s" - "310-to-yuma" - "3d" - "400-blows" - "47-ronin" - "50-first-dates" - "500-days-of-summer" - "50s" - "60s" - "666-park-avenue" - "70s" - "8-mile" - "8-simple-rules" - "80s" - "9.99" - "90s" - "a-bronx-tale" - "a-christmas-carol" - "a-christmas-story" - "a-clockwork-orange" - "a-few-good-men" - "a-fistful-of-dollars" - "a-good-day-to-die-hard" - "a-late-quartet" - "a-midsummer-nights-dream" - "a-million-ways-to-die" - "a-most-wanted-man" - "a-nightmare-on-elm-street" - "a-scanner-darkly" - "a-separation" - "a-tale-of-two-sisters" - "a-team" - "a-view-to-a-kill" - "a-wednesday" - "abin-sur" - "accent" - "ace-ventura-pet-detective" - "acting-career" - "action" - "actor-safety" - "adaptation" - "adaptation-differences" - "addams-family" - "adult-movies" - "adventure-time" - "adventures-of-gummi-bears" - "adventures-of-tintin" - "advertising" - "african-queen" - "after-earth" - "after-the-rain" - "age-restriction" - "aguirre-wrath-of-god" - "air-force-one" - "airplane" - "ajith-kumar" - "akira" - "akira-kurosawa" - "aladdin" - "alan-parker" - "alan-smithee" - "alf" - "alfred-hitchcock" - "alice-in-wonderland-2010" - "alien" - "alien-3" - "alien-resurrection" - "aliens" - "allegory" - "alphaville" - "alright-on-the-night" - "alternate-version" - "alvin-and-the-chipmunks" - "amadeus" - "amazing-race" - "amazing-world-of-gumball" - "american-beauty" - "american-history-x" - "american-horror-story" - "american-hustle" - "american-idol" - "american-pie" - "american-psycho" - "american-reunion" - "american-werewolf-london" - "americas-got-talent" - "an-american-crime" - "analysis" - "anchorman-2" - "angel-heart" - "anger-management" - "animal-kingdom" - "animation" - "anime" - "anna-karenina" - "annie-hall" - "antibodies" - "antichrist" - "apocalypse-now" - "apocalypto" - "archer" - "argo" - "arlington-road" - "army" - "arrested-development" - "arrow" - "artificial-intelligence" - "as-far-as-my-feet-carry" - "asian-movie" - "assault-on-precinct-13" - "astronaut-farmer" - "at-midnight" - "attack-of-the-clones" - "august-rush" - "aurora" - "austin-powers" - "australia-2008" - "avatar" - "avatar-the-last-airbender" - "avengers" - "avengers-age-of-ultron" - "avp" - "avp-r" - "awards" - "away-we-go" - "baadshah" - "back-to-the-future" - "bad-taste" - "baghban" - "band-of-brothers" - "banshee-chapter" - "basic-instinct" - "batman" - "batman-animated-series" - "batman-begins" - "batman-forever" - "batman-vs-superman" - "battle-royale" - "battleship" - "battlestar-galactica" - "beautiful-creatures" - "beauty-and-the-beast" - "beethoven" - "beetlejuice" - "before-i-go-to-sleep" - "before-midnight" - "before-sunrise" - "behind-the-candelabra" - "being-human" - "being-john-malkovich" - "being-there" - "ben-10" - "ben-10-omniverse" - "bend-it-like-beckham" - "benjamin-button" - "beowulf" - "better-off-ted" - "beverly-hills-cop" - "bewitched-tv" - "bicycle-thieves" - "big-brother" - "big-lebowski" - "big-trouble-little-china" - "bill-and-ted" - "billy-madison" - "biopic" - "birdman" - "birds-of-america" - "black-and-white" - "black-gold" - "black-orpheus" - "black-sails" - "black-swan" - "blackadder" - "blacklist" - "blade" - "blade-ii" - "blade-runner" - "blitz" - "blood-diamond" - "bloodsport" - "blotto" - "blu-ray" - "blue-ruin" - "blue-valentine" - "blues-brothers" - "boardwalk-empire" - "bobby-deerfield" - "bollywood" - "bones" - "bonnie-and-clyde" - "book-adaptation" - "book-of-shadows" - "boondock-saints" - "borgman" - "boston-legal" - "bottle-rocket" - "bourne-identity" - "bourne-legacy" - "bourne-supremacy" - "box-office" - "boy-in-striped-pyjamas" - "boyhood" - "brave" - "braveheart" - "brazil" - "breaking-bad" - "breaking-dawn-2" - "breaking-in" - "breaking-the-waves" - "brick" - "bridesmaids" - "brisco-county-jr" - "brokeback-mountain" - "broken-city" - "bron-broen" - "brotherhood-of-the-wolf" - "brothers-bloom" - "bruce-campbell" - "bruce-lee" - "bucky-larson" - "buffy-vampire-slayer-tv" - "burn-notice" - "butterfly-effect" - "cabin-in-the-woods" - "cable-guy" - "cache" - "caddyshack" - "caillou" - "calvary" - "cameo" - "camera" - "camp-x-ray" - "cancellation" - "capote" - "caprica" - "captain-america" - "captain-america-2" - "captain-phillips" - "carrie-2013" - "cars" - "cars-2" - "casablanca" - "cashback" - "casino" - "casino-royale" - "casshern-sins" - "cast-away" - "casting" - "castle" - "casualties-of-war" - "catch-22" - "catch-me-if-you-can" - "cbfc" - "celluloid" - "censorship" - "certification" - "character" - "charlie-brown" - "charlie-kaufman" - "cheers" - "children-of-men" - "children-of-the-corn" - "chinatown" - "chip-n-dale" - "chitty-chitty-bang-bang" - "christiane-f" - "christmas" - "christopher-nolan" - "chronicle" - "chronicles-of-riddick" - "chronology" - "chrysalis" - "chuck" - "cinema-history" - "cinematography" - "cisco-pike" - "citizen-kane" - "city-of-god" - "clash-of-the-titans-1981" - "clash-of-the-titans-2010" - "clerks-ii" - "clint-eastwood" - "close-encounters" - "closer" - "cloud-atlas" - "cloverfield" - "cocoon" - "coen-brothers" - "coherence" - "cold-case" - "collateral" - "columbo" - "comedy" - "comedy-central" - "comic-adaptation" - "coming-to-america" - "commander-hamilton" - "community" - "comparison" - "compliance" - "conan-the-barbarian" - "conspiracy-theory" - "constantine" - "contact" - "continuity" - "continuum" - "cops" - "copyright" - "corey-haim" - "cormac-mccarthy" - "cornetto-trilogy" - "cosby-show" - "costume" - "countdown" - "coupling" - "cowboy-bebop" - "cowboys-and-aliens" - "crazy-stupid-love" - "credits" - "crew" - "crime" - "criminal-intent" - "criminal-minds" - "crimson-tide" - "crminal-intent" - "crocodile-dundee" - "crossovers" - "crystal-fairy" - "csi-las-vegas" - "csi-miami" - "csi-ny" - "cube" - "cube-2-hypercube" - "cube-zero" - "curb-your-enthusiasm" - "curse-of-the-black-pearl" - "cursed" - "cut" - "d3-the-mighty-ducks" - "dallas" - "dallas-buyers-club" - "dances-with-wolves" - "dantes-peak" - "daredevil" - "dark-knight" - "dark-knight-rises" - "dark-shadows" - "dark-skies" - "darth-vader" - "das-boot" - "david-fincher" - "david-lynch" - "dawn-of-the-dead" - "dawsons-creek" - "day-of-the-dead" - "dc-animated-universe" - "dc-comics" - "ddlj" - "dead-alive" - "dead-man-down" - "dead-poets-society" - "deadwood" - "death-note" - "death-on-the-nile" - "death-race-2" - "deathly-hallows" - "deathly-hallows-2" - "deep-blue-sea" - "deer-hunter" - "definitely-maybe" - "demolition-man" - "dempsey-and-makepeace" - "denzel-washington" - "despicable-me" - "devil" - "devils-knot" - "dexter" - "dialogue" - "die-another-day" - "die-hard" - "die-hard-2" - "die-hard-with-a-vengeance" - "die-nibelungen" - "digital" - "dinner-for-schmucks" - "directors" - "directors-cut" - "dirty-dancing" - "disconnect" - "discreet-charm" - "disney" - "distribution" - "district-9" - "disturbia" - "divergent" - "django-unchained" - "do-no-harm" - "doctor-who" - "documentary" - "dodgeball" - "dog-soldiers" - "dogma" - "dollars-trilogy" - "dollhouse" - "domino-one" - "don-jon" - "donnie-brasco" - "donnie-darko" - "dont-be-afraid-of-dark" - "double-indemnity" - "downton-abbey" - "dr-no" - "dr.-strangelove" - "drag-me-to-hell" - "dragon-ball-gt" - "dragon-ball-z" - "dragon-gate" - "drama" - "dream-a-little-dream" - "dream-house" - "dreams" - "dredd" - "dresden-files" - "dressed-to-kill" - "drive" - "ducktales" - "dune" - "dungeons-and-dragons-tv" - "dvd" - "e.t" - "eastbound-and-down" - "easter-eggs" - "edge-of-tomorrow" - "editing" - "edward-scissorhands" - "effects" - "eight-below" - "el-dorado" - "election" - "elementary" - "elephant" - "elf" - "elysium" - "emma-watson" - "empire-of-the-sun" - "enders-game" - "ending" - "enemy" - "enemy-of-the-state" - "entourage" - "equilibrium" - "eraserhead" - "escape-from-alcatraz" - "escape-from-la" - "escape-from-new-york" - "et-the-extra-terrestrial" - "eternal-sunshine" - "europa-report" - "event-horizon" - "everybody-loves-raymond" - "everyone-says-i-love-you" - "evil-dead" - "evolution" - "exam" - "existenz" - "exit-through-gift-shop" - "exorcism-of-emily-rose" - "extreme-weight-loss" - "fairly-legal" - "fairy-tail" - "falling-down" - "family-guy" - "family-man" - "fantastic-four" - "fantastic-mr-fox" - "fantasy" - "fantomas" - "faq" - "fargo" - "fargo-tv" - "farscape" - "fast-and-furious-4" - "fast-and-furious-6" - "fast-and-furious-7" - "fast-five" - "fast-times-ridgemont-high" - "fatal-attraction" - "felidae" - "fellowship-of-the-ring" - "ferris-buellers-day-off" - "field-of-dreams" - "fifth-element" - "fight" - "fight-club" - "film-industry" - "film-location" - "film-techniques" - "filmography" - "final-destination" - "final-destination-3" - "final-destination-5" - "find-me-guilty" - "finding-nemo" - "fire-in-the-sky" - "fireflies-in-the-garden" - "firefly" - "firestorm" - "first-appearance" - "flash-forward" - "flight" - "foley" - "following" - "for-a-few-dollars-more" - "for-greater-glory" - "for-your-eyes-only" - "forbidden-planet" - "force-majeure" - "foreign-film" - "forrest-gump" - "fourth-wall" - "foxcatcher" - "fracture" - "frances-ha" - "frankie-and-johnny" - "franklyn" - "frasier" - "french" - "frenzy" - "fresh-prince-of-bel-air" - "friday" - "friday-night-lights" - "friday-the-13th" - "friday-the-13th-5" - "fried-green-tomatoes" - "friends" - "fright-night" - "fringe" - "fritz-the-cat" - "frosty-the-snowman" - "frozen" - "frozen-day" - "full-house" - "full-metal-jacket" - "funny-games" - "fury" - "futurama" - "futureworld" - "g-i-joe" - "game-of-thrones" - "gamers-dorkness-rising" - "gangs-of-new-york" - "garden-state" - "gattaca" - "gautham-menon" - "genre" - "george-a-romero" - "george-lucas" - "german-movie" - "ghost" - "ghostbusters" - "ghostbusters-2" - "gilbert-grape" - "gilligans-island" - "girl-next-door" - "girl-with-dragon-tattoo" - "girls-club" - "gladiator" - "glengarry-glen-ross" - "godzilla" - "godzilla-2014" - "golden-gate" - "goldeneye" - "gone-girl" - "good-morning-vietnam" - "good-night-and-good-luck" - "good-will-hunting" - "goodfellas" - "gordon-ramsay" - "gotham" - "gothika" - "grand-budapest-hotel" - "gravity" - "grease" - "greatest-game-ever-played" - "green-lantern" - "greys-anatomy" - "griff-the-invisible" - "groundhog-day" - "grown-ups" - "guardians-of-the-galaxy" - "guillermo-del-toro" - "guys-and-dolls-1955" - "hachi-a-dogs-tale" - "hackers" - "hairspray" - "half-baked" - "half-blood-prince" - "half-light" - "halloween" - "halt-and-catch-fire" - "hammer-house-of-horror" - "hancock" - "hanna" - "hanna-barbara" - "hannibal" - "hannibal-tv" - "hansel-and-gretel" - "happy-days" - "harold-and-maude" - "harry-potter" - "harvey" - "hawaii-five-0" - "haywire" - "he-man" - "headhunters" - "heist" - "helix" - "hell-no" - "hell-on-wheels" - "hellboy" - "hellboy-ii-golden-army" - "hello-darling" - "hellraiser" - "her" - "hercules" - "hero" - "heroes" - "hesher" - "hey-ram" - "hidalgo" - "high-lane" - "high-noon" - "highlander" - "historical-accuracy" - "hitchhikers-guide-galaxy" - "hitman" - "hobbit-trilogy" - "hollyoaks" - "hollywood" - "homefront" - "homeland" - "hook" - "hop" - "horns" - "horror" - "hot-fuzz" - "hotel-hell" - "house" - "house-of-1000-corpses" - "house-of-cards" - "house-of-cards-uk" - "house-of-games" - "house-of-lies" - "houseguest" - "how-i-met-your-mother" - "how-old-are-you" - "how-to-rob-a-bank" - "how-to-train-your-dragon" - "howls-moving-castle" - "hugo" - "human-centipede-2" - "hummingbird" - "hunted" - "huntik" - "hurt-locker" - "hustle" - "i-am-legend" - "i-am-number-four" - "i-dream-of-jeannie" - "i-know-who-killed-me" - "i-robot" - "ice-age-4" - "identify-this-actor" - "identify-this-episode" - "identify-this-movie" - "identify-this-tv-show" - "identify-this-web-series" - "identity" - "idiocracy" - "if-i-stay" - "imaginarium-dr-parnassus" - "imdb" - "immortals" - "impractical-jokers" - "in-bruges" - "in-the-loop" - "in-the-mood-for-love" - "in-time" - "inbred" - "inception" - "incredible-hulk" - "incredible-hulk-tv" - "incredibles" - "independence-day" - "indiana-jones" - "inglourious-basterds" - "inside-llewyn-davis" - "inside-man" - "insidious" - "insidious-chapter-2" - "insomnia" - "inspector-morse" - "international" - "interstellar" - "interview" - "into-the-wild" - "intolerance" - "intruders" - "invitation-to-gunfighter" - "ip-man" - "iranian" - "iron-man" - "iron-man-2" - "iron-man-3" - "iron-sky" - "irreversible" - "its-a-wonderful-life" - "its-always-sunny" - "jack-cuckoo-clock-heart" - "jack-reacher" - "jack-ryan-shadow-recruit" - "jackass" - "jackie-brown" - "jackie-chan" - "jag" - "jagged-edge" - "james-bond" - "jane-eyre" - "japanese-movie" - "jaws" - "jekyll" - "jericho" - "jetsons" - "jewel-thief" - "jj-abrams" - "jl-the-flashpoint-paradox" - "jobs" - "jodi-breakers" - "john-carter" - "john-dies-at-the-end" - "john-doe" - "john-from-cincinnati" - "john-wick" - "johnny-bravo" - "jonah-hex" - "jonathan-creek" - "joss-whedon" - "joy-ride" - "judging-amy" - "jump-city-seattle" - "jumper" - "jurassic-park" - "justice-league" - "justice-league-unlimited" - "justified" - "k-pax" - "kaagaz-ke-phool" - "kahaani" - "kanchana" - "karate-kid" - "karate-kid-2010" - "kevin-smith" - "kick-ass" - "kick-ass-2" - "kill-bill" - "kill-list" - "killing-lincoln" - "killing-them-softly" - "king-kong" - "king-kong-1933" - "king-kong-2005" - "king-of-comedy" - "king-of-devils-island" - "kingdom-of-crystal-skull" - "kingdom-of-heaven" - "kingpin" - "kings" - "kiss-me-deadly" - "kiss-of-the-dragon" - "kitchen-nightmares" - "kollywood" - "kung-fu-hustle" - "kung-fu-panda" - "la-confidential" - "la-jetee" - "la-pianista" - "labor-day" - "last-action-hero" - "last-crusade" - "last-emperor" - "last-man-standing" - "last-of-the-mohicans" - "laurel-and-hardy" - "law-abiding-citizen" - "law-and-order" - "law-and-order-svu" - "layer-cake" - "le-divorce" - "league-of-shadows" - "legend-of-korra" - "leon-the-professional" - "leonardo-dicaprio" - "les-diaboliques" - "les-miserables" - "leslie-nielsen" - "let-the-right-one-in" - "lethal-weapon" - "lets-make-a-deal" - "leviathan" - "liberty-valance" - "licence-to-kill" - "lie-to-me" - "life-after-beth" - "life-is-beautiful" - "life-of-pi" - "lighting" - "limitless" - "lincoln" - "lincoln-vampire-hunter" - "liquid-television" - "little-nicky" - "live-and-let-die" - "live-free-or-die-hard" - "lockout" - "lone-survivor" - "looking-for-richard" - "looney-tunes" - "looper" - "lorax" - "lord-of-the-elves" - "lord-of-the-rings" - "lord-of-the-rings-1978" - "lore" - "lorenzos-oil" - "lost" - "lost-girl" - "lost-in-translation" - "louis-leterrier" - "love-actually" - "lovecraft" - "lucy" - "lunchbox" - "luther" - "macgyver" - "machine-gun-preacher" - "mad-max" - "mad-max-2" - "mad-men" - "madagascar" - "madagascar-2" - "magnolia" - "make-up" - "maleficent" - "man-of-steel" - "man-of-tai-chi" - "man-on-a-ledge" - "man-on-the-moon" - "man-with-the-golden-gun" - "manhattan" - "maniac-2012" - "mankatha" - "marco-polo" - "margin-call" - "marie-antoinette" - "marketing" - "married-with-children" - "martial-arts" - "martin-scorsese" - "marvel" - "marvel-cinematic-universe" - "marvels-agents-of-shield" - "mash" - "master-and-commander" - "masterchef" - "masters-of-sex" - "match-point" - "maze-runner" - "mccarnick" - "medical" - "megamind" - "melancholia" - "memento" - "memories-of-murders" - "men-in-black" - "men-in-black-2" - "men-in-black-3" - "mentalist" - "merchandise" - "metalocalypse" - "metropolis" - "miami-vice" - "miami-vice-2006" - "micmacs" - "middle-earth" - "midnight-express" - "midnight-in-paris" - "mighty-boosh" - "mighty-orbots" - "millennium-trilogy" - "millers-crossing" - "millionaire" - "mind-your-language" - "minority-report" - "miracle-on-34th-street" - "mirrors" - "misfits" - "miss-marple" - "mission-impossible" - "mission-impossible-3" - "mission-impossible-4" - "mission-to-mars" - "miyazaki" - "modern-family" - "modern-times" - "moebius" - "moneyball" - "monk" - "monsters-inc" - "monsters-university" - "monsters-vs-aliens" - "monte-walsh" - "monty-python" - "moon" - "moonlighting" - "moonraker" - "moonrise-kingdom" - "moonshiner" - "mork-and-mindy" - "mortal-kombat-legacy" - "most-appearances" - "mousehunt" - "movie-43" - "movie-edition" - "movie-franchise" - "movie-posters" - "movie-rating" - "mr-and-mrs-smith" - "mr-bean" - "mr-brooks" - "mr-hublot" - "mr-nobody" - "mrs-columbo" - "mrs-miracle" - "mst3k" - "mtv" - "much-ado-about-nothing" - "mulholland-drive" - "muppets" - "music-video" - "musical" - "my-darling-clementine" - "my-fair-lady" - "my-name-is-earl" - "mystery" - "mystic-river" - "mythbusters" - "mythology" - "naked-gun-2" - "naked-island" - "namastey-london" - "napoleon-dynamite" - "naruto" - "national-treasure-2" - "ncis" - "ncis-los-angeles" - "ncis-new-orleans" - "nebraska" - "need-for-speed" - "netflix" - "never-back-down" - "new-girl" - "new-world" - "nielsen-ratings" - "night-at-the-museum" - "night-watch" - "nightcrawler" - "nightmare-christmas" - "ninja-assassin" - "ninja-turtles" - "no-country-for-old-men" - "no-one-lives" - "no-smoking" - "noir" - "non-stop" - "nosferatu" - "not-the-nine-o-clock-news" - "now-you-see-me" - "numb3rs" - "nurse-jackie" - "nymphomaniac" - "oblivion" - "occurrence-at-owl-creek" - "oceans-eleven" - "oceans-thirteen" - "oceans-twelve" - "octopussy" - "oculus" - "odd-thomas" - "office-space" - "oldboy" - "olympus-has-fallen" - "on-golden-pond" - "once-upon-a-time" - "once-upon-a-time-in-west" - "once-upon-time-in-america" - "one-piece" - "only-god-forgives" - "only-lovers-left-alive" - "orange-is-the-new-black" - "origin" - "origin-spirits-of-past" - "orphan" - "orphan-black" - "oscar" - "oshibka-rezidenta" - "oss-117" - "out-of-the-blue" - "out-of-the-furnace" - "oz-the-great-and-powerful" - "p-s-i-love-you" - "pac-man" - "pacific-rim" - "pain-and-gain" - "panic-room" - "pans-labyrinth" - "parallax" - "paranormal-activity" - "paranormal-activity-3" - "parker" - "parks-and-recreation" - "passion" - "payback" - "penny-dreadful" - "perception" - "percy-jackson" - "perfect-sense" - "perfume" - "perks-of-being-wallflower" - "person-of-interest" - "pet-sematary" - "peter-pan" - "phantoms" - "philip-k-dick" - "philosophers-stone" - "pi" - "pilot" - "pink-flamingos" - "pirates-of-the-caribbean" - "pirhana-3dd" - "pitch-perfect" - "pixar" - "place-beyond-the-pines" - "planet-earth" - "planet-of-the-apes" - "planet-of-the-apes-2001" - "playing-for-keeps" - "pleasantville" - "plot-device" - "plot-explanation" - "point-blank" - "poirot" - "pokemon" - "pokemon-the-first-movie" - "polar-express" - "police-academy" - "polisse" - "poltergeist" - "poltergeist-3" - "pompeii" - "pontypool" - "power-rangers" - "predator" - "predestination" - "prequels" - "preview" - "pride-and-prejudice" - "primer" - "prince-of-persia" - "prison-break" - "prisoner-of-azkaban" - "prisoners" - "producer" - "product-placement" - "production" - "production-mistakes" - "profanity" - "prometheus" - "props" - "psych" - "psych-9" - "psycho" - "psychological-thriller" - "pulp-fiction" - "punjabi-films" - "pursuit-of-happyness" - "pushing-daisies" - "pyar-ka-panchnama" - "quatermass" - "quatermass-and-the-pit" - "quentin-tarantino" - "quick-change" - "quote" - "raavanan" - "rab-ne-bana-di-jodi" - "raging-bull" - "raiders-of-the-lost-ark" - "rainman" - "rake" - "rambo" - "real-steel" - "realism" - "reality" - "rear-window" - "reboot" - "reception" - "red-2" - "red-2010" - "red-dwarf" - "red-lights" - "redtails" - "reference" - "regular-show" - "remake" - "rent" - "repo-the-genetic-opera" - "rescue-me" - "reservoir-dogs" - "resident-evil" - "resident-evil-afterlife" - "resident-evil-apocalypse" - "resurrection" - "return-of-the-jedi" - "revenge" - "revenge-tv" - "revolver" - "richard-kelly" - "richard-linklater" - "riddick" - "ridley-scott" - "ringu" - "ripper-street" - "rise-planet-of-the-apes" - "robert-langdon" - "robocop-2014" - "robot-and-frank" - "rock-of-ages" - "rocky" - "rocky-3" - "rocky-horror-picture-show" - "rocky-iv" - "rogue-trader" - "roman-holiday" - "roman-polanski" - "romantic-comedy" - "rome" - "romeo-juliet-1996" - "ronin" - "rope" - "rosemarys-baby" - "rowan-atkinson" - "rubber" - "rudolph-rednosed-reindeer" - "rugrats" - "rules-of-engagement" - "rules-of-engagement-2000" - "running-scared" - "rushmore" - "russian" - "sabotage" - "safe-house" - "safety-not-guaranteed" - "sahib-biwi-aur-ghulam" - "salmon-fishing-in-yemen" - "salt" - "sam-raimi" - "sarah-connor-chronicles" - "saturday-night-live" - "savages" - "saving-private-ryan" - "saw" - "saw-3" - "saw-3d" - "saw-4" - "scandal" - "scarecrow" - "scarecrow-and-mrs.-king" - "scarface" - "scary-movie-2" - "scent-of-a-woman" - "scheduling" - "schindlers-list" - "science-fiction" - "scooby-doo" - "score" - "scorpion" - "scott-pilgrim" - "scream" - "screenplay" - "screenwriter" - "scrubs" - "sctv" - "se7en" - "sea-of-love" - "secret-things" - "seinfeld" - "sequels" - "serenity" - "sergio-leone" - "sesame-street" - "seth-macfarlane" - "setup" - "seven-per-cent-solution" - "seven-psychopaths" - "seventh-son" - "sex" - "sex-and-the-city-tv" - "sexy-beast" - "shakespeare" - "shallow-grave" - "shame" - "shameless" - "shark" - "sharknado" - "shattered" - "shaun-of-the-dead" - "shawshank-redemption" - "sherlock" - "sherlock-holmes" - "sherlock-holmes-1" - "sherlock-holmes-2" - "sholay" - "short-films" - "shutter-island" - "silence-of-the-lambs" - "silent-hill" - "silent-movie" - "silver-linings-playbook" - "sin-city" - "sin-city-dame-to-kill-for" - "sitcoms" - "six-million-dollar-man" - "sixth-sense" - "skyfall" - "slasher" - "sleep-tight" - "sleepers" - "sleepy-hollow" - "sleepy-hollow-tv" - "sliders" - "slumdog-millionaire" - "smallville" - "smokey-and-the-bandit" - "snake-eyes" - "snatch" - "sneakers" - "snow-white-n-the-huntsman" - "snowpiercer" - "so-i-married-axe-murderer" - "so-what-now" - "solomon-kane" - "some-like-it-hot" - "sons-of-anarchy" - "sorcerers-apprentice" - "sound-effects" - "soundtrack" - "source-code" - "south-park" - "southcliffe" - "space-cowboys" - "spaceballs" - "spanish" - "spartacus-franchise" - "spartacus-vengeance" - "specific-scene" - "speed-racer" - "spider-man" - "spider-man-2" - "spider-man-trilogy" - "spike-jonze" - "spin-off" - "spongebob-squarepants" - "sponsorship" - "spooks" - "spring-breakers" - "spy-game" - "spy-movie" - "spy-who-came-in-from-cold" - "st-elsewhere" - "stan-lee" - "standing-up" - "stanley-kubrick" - "star-trek" - "star-trek-2009" - "star-trek-first-contact" - "star-trek-into-darkness" - "star-trek-tng" - "star-trek-tos" - "star-trek-vi" - "star-trek-voy" - "star-trek-wrath-of-khan" - "star-wars" - "star-wars-iv" - "starblazers" - "stargate" - "starship-troopers" - "static" - "stay" - "step-up" - "stephen-king" - "stereo" - "steven-spielberg" - "stir-of-echoes" - "stoker" - "storm-hawks" - "studio-system" - "stunts" - "subliminal-messages" - "sucker-punch" - "sunshine" - "sunshine-2007" - "super-8" - "super-mario-bros" - "superbad" - "superman" - "supernatural" - "survive-style-5+" - "suspicion" - "suture" - "swordfish" - "sybil" - "sympathy-for-mr-vengeance" - "syndication" - "synecdoche-new-york" - "syriana" - "tai-chi-master" - "taken" - "taken-2" - "taking-lives" - "talaash" - "tales-from-the-darkside" - "tangled" - "tatort" - "technology" - "ted" - "teen-wolf-tv" - "teletubbies" - "television" - "terminator-2" - "terminator-salvation" - "terminology" - "terriers" - "tetsuo" - "texas-chainsaw-3d" - "that-70s-show" - "the-13th-warrior" - "the-40-year-old-virgin" - "the-abyss" - "the-adjustment-bureau" - "the-amazing-spider-man" - "the-amazing-spider-man-2" - "the-americans" - "the-animatrix" - "the-artist" - "the-artist-and-the-model" - "the-babadook" - "the-best-offer" - "the-big-bang-theory" - "the-big-fat-quiz" - "the-big-year" - "the-black-hole" - "the-blacklist" - "the-bletchley-circle" - "the-book-of-eli" - "the-boondocks" - "the-box" - "the-brady-bunch" - "the-bride-wore-black" - "the-bridge" - "the-burrowers" - "the-call" - "the-caller" - "the-carrie-diaries" - "the-chamber-of-secrets" - "the-childs-eye" - "the-closer" - "the-colony" - "the-congress" - "the-conjuring" - "the-conversation" - "the-counselor" - "the-count-of-monte-cristo" - "the-croods" - "the-dark-half" - "the-dark-knight-returns-2" - "the-dark-valley" - "the-day-of-the-jackal" - "the-dead-sea" - "the-defector" - "the-den" - "the-departed" - "the-devils-advocate" - "the-devils-double" - "the-dictator" - "the-district" - "the-divide" - "the-door" - "the-double" - "the-draughtsmans-contract" - "the-dreamer-of-oz" - "the-dreamers" - "the-duellists" - "the-empire-strikes-back" - "the-encounter" - "the-end" - "the-equalizer" - "the-escape-artist" - "the-exorcist" - "the-expendables" - "the-expendables-2" - "the-expendables-3" - "the-fairly-oddparents" - "the-fall" - "the-family" - "the-fifth-element" - "the-fifth-estate" - "the-flash" - "the-following" - "the-fosters" - "the-game" - "the-giver" - "the-glass-key" - "the-godfather" - "the-godfather-2" - "the-godfather-3" - "the-good-the-bad-the-ugly" - "the-good-wife" - "the-goonies" - "the-graduate" - "the-great-british-bakeoff" - "the-great-escape" - "the-great-gatsby" - "the-great-silence" - "the-green-mile" - "the-grey" - "the-grudge" - "the-guest" - "the-hangover" - "the-hangover-2" - "the-hitchhikers-guide" - "the-hitman" - "the-hobbit" - "the-hobbit-2" - "the-hobbit-3" - "the-hot-spot" - "the-house-bunny" - "the-hulk" - "the-hunger-games" - "the-hunger-games-2" - "the-hunger-games-3" - "the-hunt" - "the-hunt-for-red-october" - "the-ides-of-march" - "the-illusionist" - "the-imitation-game" - "the-innkeepers" - "the-insider" - "the-internship" - "the-interview" - "the-invisible-man" - "the-it-crowd" - "the-italian-job" - "the-italian-job-1969" - "the-jackal" - "the-jerk" - "the-judge" - "the-keep" - "the-killing" - "the-king-of-kong" - "the-kings-of-summer" - "the-lady-vanishes" - "the-lake-house" - "the-larry-sanders-show" - "the-last-airbender" - "the-last-emperor" - "the-last-starfighter" - "the-lego-movie" - "the-lion-king" - "the-longest-yard" - "the-longest-yard-2005" - "the-machinist" - "the-magnificent-seven" - "the-man-from-earth" - "the-man-in-the-iron-mask" - "the-marathon-family" - "the-mary-tyler-moore-show" - "the-mask" - "the-master" - "the-matrix" - "the-matrix-reloaded" - "the-matrix-revolutions" - "the-meaning-of-life" - "the-mentalist" - "the-middle" - "the-missing" - "the-mist" - "the-mummy" - "the-mummy-3" - "the-naked-gun" - "the-nest" - "the-nines" - "the-ninth-gate" - "the-notebook" - "the-number-23" - "the-office" - "the-official-story" - "the-order-of-the-phoenix" - "the-other-woman" - "the-others" - "the-pact" - "the-patriot" - "the-perfect-storm" - "the-phantom-of-liberty" - "the-philadelphia-story" - "the-pianist" - "the-pink-panther" - "the-pirates-of-dark-water" - "the-prestige" - "the-prisoner" - "the-proposition" - "the-punisher" - "the-quiet-earth" - "the-rape-of-the-vampire" - "the-reader" - "the-return-of-the-king" - "the-right-stuff" - "the-ring" - "the-road" - "the-rock" - "the-room" - "the-running-man" - "the-sacrifice" - "the-sandman" - "the-santa-clause" - "the-school-of-rock" - "the-scribbler" - "the-second-coming" - "the-secret-circle" - "the-shadow" - "the-shield" - "the-shining" - "the-shipping-news" - "the-shooting" - "the-simpsons" - "the-smurfs" - "the-social-network" - "the-sopranos" - "the-sound-of-music" - "the-sting" - "the-strain" - "the-sweeney" - "the-talented-mr-ripley" - "the-terminator" - "the-thing" - "the-thing-2011" - "the-third-man" - "the-thomas-crown-affair" - "the-tick" - "the-time-travellers-wife" - "the-tingler" - "the-tomorrow-people" - "the-truman-show" - "the-tudors" - "the-twilight-zone" - "the-two-towers" - "the-unit" - "the-untouchables" - "the-usual-suspects" - "the-vampire-diaries" - "the-vanishing" - "the-virgin-spring" - "the-walking-dead" - "the-wall" - "the-war-of-the-roses" - "the-war-zone" - "the-warriors" - "the-warriors-way" - "the-way-back" - "the-west-wing" - "the-white-balloon" - "the-wicker-man-2006" - "the-wild-hunt" - "the-wire" - "the-wolf-of-wall-street" - "the-wolverine" - "the-woman-in-black" - "the-world-is-not-enough" - "the-worlds-end" - "the-zero-theorem" - "thelma-and-louise" - "there-will-be-blood" - "thirteen-days" - "thirteen-ghosts" - "thor" - "thor-2011" - "thor-the-dark-world" - "thriller" - "thriller-tv" - "through-a-glass-darkly" - "thunderball" - "thundercats" - "tim-burton" - "time-travel" - "tinker-tailor-soldier-spy" - "titanic" - "titianic" - "title" - "title-sequence" - "tmnt-2003" - "tmnt-2014" - "tokyo-drift" - "tom-and-jerry" - "tombstone" - "toopy-and-binoo" - "top-gear" - "top-of-the-lake" - "top-secret" - "total-recall" - "total-recall-2012" - "tower-heist" - "toy-story" - "toy-story-2" - "toy-story-3" - "tracks" - "trading-places" - "trailers" - "train-your-dragon-2" - "trainspotting" - "trance" - "transformers" - "transformers-2" - "transformers-3" - "transformers-4" - "translation" - "treasure-island" - "tree-of-life" - "tremors-ii-aftershocks" - "triangle" - "triplets-of-belleville" - "tripping-the-rift-movie" - "trolljegeren" - "tron-legacy" - "trope" - "true-blood" - "true-detective" - "true-grit" - "true-romance" - "truffaut" - "tucker-and-dale-vs-evil" - "tv-adaptation" - "tv-shows" - "twilight-saga" - "twin-peaks" - "twins" - "two-and-a-half-men" - "unbreakable" - "under-siege" - "under-siege-2" - "under-the-dome" - "underworld" - "underworld-awakening" - "unforgiven" - "unknown" - "untagged" - "unthinkable" - "up" - "upside-down" - "utopia" - "v" - "v-2009" - "v-for-vendetta" - "v-the-serial" - "vacancy" - "valhalla-rising" - "valley-obscured-by-clouds" - "vampires" - "vanishing-on-7th-street" - "veronica-mars" - "veronica-mars-movie" - "versions" - "vertigo" - "video-game-adaptation" - "vikings" - "violence" - "volcano" - "walkabout" - "walker-texas-ranger" - "wall-e" - "war-games" - "war-horse" - "war-of-the-worlds" - "warm-bodies" - "warrior" - "watchmen" - "way-of-the-dragon" - "we-are-what-we-are" - "wedding-crashers" - "welcome-to-mooseport" - "wes-anderson" - "western" - "what-dreams-may-come" - "whats-your-raashee" - "wheel-of-fortune" - "when-harry-met-sally" - "where-eagles-dare" - "where-the-wild-things-are" - "white-collar" - "white-house-down" - "who-framed-roger-rabbit" - "whos-the-boss" - "wilfred" - "will-smith" - "willow" - "wizard-of-oz" - "world-war-z" - "wrath-of-the-titans" - "wreck-it-ralph" - "wrecked" - "wwe" - "x-files" - "x-men" - "x-men-days-of-future-past" - "x-men-first-class" - "x-men-origins-wolverine" - "x-men-the-last-stand" - "yellowbrickroad" - "yes-man" - "yes-prime-minister" - "yojimbo" - "you-only-live-twice" - "young-adult" - "your-job-in-germany" - "zach-braff" - "zero-dark-thirty" - "zodiac" - "zombie-invasion" - "zombieland" - "zombies" - "zorba-the-greek" - "zorro") diff --git a/data/tags/music.el b/data/tags/music.el deleted file mode 100644 index f1394ff..0000000 --- a/data/tags/music.el +++ /dev/null @@ -1,396 +0,0 @@ -("12-string-guitar" - "5-string-bass-guitar" - "abc-notation" - "ableton-live" - "absolute-pitch" - "accent" - "accidentals" - "accompaniment" - "accompanying" - "accordion" - "acoustic-effects" - "acoustic-guitar" - "acoustics" - "action" - "african" - "alexander-technique" - "algorithmic-composition" - "alternative-tunings" - "alto-recorder" - "amplification" - "amplifiers" - "analysis" - "archeterie" - "arranging" - "articulation" - "atonal" - "audiation" - "audition" - "aural-skills" - "autotune" - "avant-garde" - "band" - "banjo" - "baroque" - "bartok" - "bass" - "bass-clarinet" - "bass-drum" - "bass-guitar" - "bass-trombone" - "bass-voice" - "bassoon" - "baton" - "beatbox" - "beats" - "bebop" - "beethoven" - "beginner" - "blues" - "bodybuilding" - "bongos" - "boogie-woogie" - "books" - "bow" - "brass" - "brass-band" - "breathing" - "bridge" - "buzz" - "cadence" - "cadenza" - "cajon" - "capos" - "cello" - "celtic" - "children" - "choir" - "chopin" - "chord-inversions" - "chord-progressions" - "chord-theory" - "chords" - "chromatic" - "chuck" - "clarinet" - "classical-guitar" - "classical-music" - "classical-period" - "clefs" - "composers" - "composition" - "compound-time-signatures" - "computer" - "concertina" - "conditioning" - "conducting" - "conservatory" - "construction" - "copyrights" - "counterpoint" - "crash-cymbal" - "crotales" - "cubase" - "cut-time" - "daw" - "diaphragm" - "diatonic-harmony" - "didgeridoo" - "digital-piano" - "dissonance" - "distortion" - "dj" - "double-bass" - "double-escapement" - "drum-hardware" - "drum-kits" - "drums" - "dynamics" - "ear-training" - "echo" - "editions" - "education" - "effects" - "effects-pedal" - "electric-bass-guitar" - "electric-guitar" - "electronic-music" - "electronics" - "embouchure" - "engraving" - "equipment" - "erhu" - "ethnomusicology" - "exercises" - "expressiveness" - "falsetto" - "feedback" - "finale" - "fingerboard" - "fingering" - "fingerstyle-bass" - "fingerstyle-guitar" - "flamenco" - "flanger" - "flugelhorn" - "flute" - "folk" - "four-mallets" - "french-horn" - "frequency" - "fretboard" - "fretless-bass-guitar" - "fugue" - "fusion" - "genre" - "glissando" - "grading" - "guitar" - "guitar-effects" - "guitar-neck" - "guitar-pro" - "guitar-tapping" - "hammer-dulcimer" - "hand-independance" - "harmonica" - "harmonics" - "harmony" - "harp" - "harpsichord" - "headphones" - "health" - "hearing" - "history" - "improvisation" - "indian-classical" - "instruction" - "instrument-care" - "instrument-cleaning" - "instrument-maintenance" - "instrument-range" - "instrumentation" - "instruments" - "interpretation" - "intervals" - "intonation" - "j-s-bach" - "jamming" - "jazz" - "just-intonation" - "key" - "key-signatures" - "keyboard" - "keyboard-pedals" - "latin-jazz" - "lead-guitar" - "lead-sheets" - "learning" - "legato" - "lessons" - "lilypond" - "live" - "live-sound" - "logic-pro" - "lutherie" - "lyrics" - "mac" - "maintenance" - "mandolin" - "march" - "mastering" - "medieval" - "melody" - "memorization" - "metal" - "meter" - "metronomes" - "microphones" - "midi" - "midi-controller-keyboard" - "mikrokosmos" - "minimalism" - "mixer" - "mixing" - "modal" - "modes" - "modulation" - "mouthpieces" - "movements" - "mozart" - "multi-instrumentalism" - "muscles" - "musescore" - "music-cognition" - "musical-forms" - "musical-saw" - "musical-theater" - "musicology" - "musicxml" - "mute" - "nailcare" - "noise" - "notation" - "note-bending" - "numbered-notation" - "oboe" - "ocarina" - "octave" - "opera" - "orchestra" - "orchestral-strings" - "orchestration" - "organ" - "ornaments" - "oud" - "overtones" - "pa" - "palm-muting" - "part-writing" - "pc" - "pedals" - "percussion" - "performing" - "phase" - "physical-limitations" - "physics" - "physiology" - "piano" - "pick-ups" - "picking" - "picks" - "pipe-organ" - "plucking" - "polyrhythm" - "pop-music" - "posture" - "practice" - "pre-amp" - "production" - "professional-associations" - "punk" - "quarter-tones" - "ragtime" - "rap" - "reading" - "reason" - "recorder" - "recording" - "reeds" - "rehearsal" - "relative-pitch" - "renaissance-music" - "repair" - "repertoire" - "resonance" - "reverb" - "rhapsody" - "rhythm" - "ride-cymbal" - "risset" - "rock" - "rock-n-roll" - "roman-numerals" - "romantic-period" - "routing" - "rsi" - "safety" - "saliva" - "samba" - "samples" - "saxophone" - "scales" - "self-learning" - "semi-acoustic-guitar" - "serial" - "set-theory" - "setup" - "sevenths" - "sheet-music" - "sibelius" - "sight-reading" - "simple-time-signatures" - "sitar" - "skill-level" - "slide-guitar" - "snare-drum" - "software" - "solfege" - "solos" - "songwriting" - "soprano-recorder" - "sound" - "sousaphone" - "speakers" - "staccato" - "stage-fright" - "stage-setup" - "stick-control" - "storage" - "stratocaster" - "string-gauge" - "string-instruments" - "strings" - "strumming" - "studio" - "styles" - "sustain" - "swing" - "syncopation" - "synthesis" - "synthesizer" - "tablature" - "teaching" - "technique" - "temperament" - "temperature" - "tempo" - "tenor" - "terminology" - "tetrachords" - "the-real-book" - "theory" - "theremin" - "timbre" - "time-signatures" - "timpani" - "tonal" - "tone" - "tone-row" - "tonguing" - "tonnetz" - "traktor" - "transcription" - "transducer" - "transportation" - "transpose" - "transposition" - "travel" - "tremolo" - "tremolo-system" - "trills" - "trombone" - "trumpet" - "tuba" - "tuning" - "turntables" - "ukulele" - "unison" - "vacuum-tube" - "valves" - "vibrato" - "viola" - "viola-da-gamba" - "violin" - "virtual-instrument" - "vocal-cords" - "vocal-range" - "voice" - "voice-leading" - "voicing" - "vst" - "walking-bass" - "warm-up" - "wind-band" - "wiring" - "woodwinds" - "xylophone") diff --git a/data/tags/networkengineering.el b/data/tags/networkengineering.el deleted file mode 100644 index 3a1e128..0000000 --- a/data/tags/networkengineering.el +++ /dev/null @@ -1,346 +0,0 @@ -("10gbase" - "2960" - "3-com" - "4500" - "4500-x" - "aaa" - "access-control" - "access-point" - "accounting" - "acl" - "ad-hoc-wireless" - "address-conflict" - "adsl" - "air-ap1252ag" - "aironet" - "alcatel-lucent-7750" - "appsecure" - "architecture" - "arin" - "arp" - "asa" - "asa-8.3" - "asics" - "asymmetric-routing" - "atm" - "authentication" - "authorization" - "automation" - "autonegotiation" - "backups" - "bandwidth" - "ber" - "best-practices" - "bfd" - "bgp" - "bgp-ipv6" - "bridge" - "broadcast" - "brocade" - "byod" - "cable" - "cabling" - "capwap" - "carrier" - "cdn" - "cdp" - "cef" - "checkpoint" - "checksum" - "cisco" - "cisco-3750" - "cisco-6500" - "cisco-7200" - "cisco-7600" - "cisco-7900-ip-phones" - "cisco-anyconnect" - "cisco-asa" - "cisco-asr" - "cisco-c5500" - "cisco-catalyst" - "cisco-commands" - "cisco-ios" - "cisco-ios-12" - "cisco-ios-15" - "cisco-ios-xr" - "cisco-ise" - "cisco-isr" - "cisco-nexus-1000v" - "cisco-nexus-2000" - "cisco-nexus-5k" - "cisco-nexus-7k" - "cisco-nx-os" - "cisco-small-business" - "cisco-voip" - "cisco-wireless" - "cli" - "commands" - "congestion" - "cos" - "cpu" - "cradlepoint" - "dci" - "dell" - "design" - "dhcp" - "dhcpv6" - "disaster-recovery" - "dnat" - "dns" - "docsis" - "documentation" - "dot1q" - "dot1x" - "dscp" - "dual-homed" - "duplex" - "eap" - "ecmp" - "edgecore" - "education" - "eem" - "eigrp" - "enterasys" - "environmental-monitoring" - "errors" - "etherchannel" - "ethernet" - "evc" - "f5" - "failover" - "fcoe" - "fex" - "fhrp" - "fiber" - "firewal" - "firewall" - "force10" - "fortigate" - "fortinet" - "foundry" - "frame-relay" - "frr" - "ftth" - "glbp" - "gns3" - "google" - "gre" - "h-qos" - "half-duplex" - "hardware" - "hp" - "hp-procurve" - "hsrp" - "http" - "http-proxy" - "icmp" - "icmpv6" - "idf" - "idp" - "ieee-802.3ad" - "ieee-802.3x" - "igmp" - "ike" - "interface" - "internet" - "intrusion-prevention" - "ios" - "ip" - "ip-forwarding-table" - "ip-link-local" - "iperf" - "ipsec" - "ipv4" - "ipv6" - "ipv6-transition" - "iscsi" - "isis" - "isp" - "juniper" - "juniper-ex" - "juniper-mx" - "juniper-srx" - "junos" - "knowledgebase" - "l2tp" - "l2vpn" - "lab" - "lacp" - "lan" - "latency" - "layer2" - "layer3" - "ldp" - "linux" - "lldp" - "load-balancer" - "logging" - "loop" - "loopback" - "mac" - "mac-address" - "management" - "media-conversion" - "memory" - "mesh-group" - "metro-ethernet" - "mikrotik" - "mininet" - "mirror" - "mobile" - "monitoring" - "mpls" - "mpls-te" - "mpls-tp" - "mpls-vpn" - "mst" - "mtr" - "mtu" - "multicast" - "mx" - "nat" - "netflow" - "netgear-prosafe" - "network-core" - "network-discovery" - "nexus" - "nic" - "nms" - "ntp" - "oob" - "openflow" - "optical" - "optics" - "osi" - "ospf" - "oversubscription" - "packet-analysis" - "packet-loss" - "packet-path" - "packet-tracer" - "palo-alto" - "passive-optical-network" - "patch-panel" - "pbr" - "pcap" - "peering" - "performance" - "pfsense" - "pfsense-2" - "php" - "pim" - "ping" - "pix" - "point-to-point" - "policing" - "port-security" - "power-over-ethernet" - "powerconnect" - "ppp" - "pppoe" - "prefix" - "private-vlan" - "protocol-theory" - "proxy" - "pvlan" - "qinq" - "qos" - "quagga" - "rack-layout" - "radius" - "rancid" - "redistribution" - "redundancy" - "rep" - "reverse-proxy" - "rip" - "riverbed" - "rogue" - "route-filter" - "route-server" - "route-summarization" - "router" - "routing" - "routing-registry" - "rsvp" - "safety" - "san" - "sarbanes-oxley" - "screenos" - "sctp" - "sdh" - "secondary" - "security" - "service-provider" - "sflow" - "sfp" - "sip" - "snat" - "snmp" - "sonicwall" - "span" - "spanning-tree" - "speed" - "split-tunneling" - "srx" - "ssh" - "ssl" - "sslvpn" - "stacking" - "standardisation" - "stp" - "streaming" - "subnet" - "switch" - "switches" - "switching" - "switching-modes" - "syslog" - "tacacs" - "tap" - "tcl" - "tcp" - "tcpdump" - "tdmoe" - "team" - "telephony" - "terminology" - "testing" - "tftp" - "throughput" - "traceroute" - "transceiver" - "transport-protocol" - "trill" - "troubleshooting" - "trunk" - "tunnel" - "twinax" - "udld" - "udp" - "untagged" - "uplinks" - "vc-id" - "video" - "vlan" - "vmware" - "voice" - "voip" - "vpc" - "vpls" - "vpn" - "vrf" - "vrf-lite" - "vrrp" - "vss" - "vtp" - "vxlan" - "waas" - "wake-on-lan" - "wan" - "wan-optimizer" - "wifi" - "wireless" - "wireshark" - "wlc" - "xmr") diff --git a/data/tags/opendata.el b/data/tags/opendata.el deleted file mode 100644 index ab5412f..0000000 --- a/data/tags/opendata.el +++ /dev/null @@ -1,196 +0,0 @@ -(".net" - "accidents" - "address" - "aid" - "analysis" - "api" - "application-development" - "audio" - "australia" - "authenticity" - "bank" - "barcode" - "best-practice" - "bibliometrics" - "big-data" - "biology" - "bittorrent" - "brazil" - "c#" - "calendar" - "canada" - "caveats" - "cc-by" - "cc0" - "census" - "chicago" - "city" - "ckan" - "companies" - "contribute" - "conversion" - "corpora" - "corporations" - "county" - "cpi" - "creative-commons" - "crime" - "crowdsourcing" - "csv" - "customer-data" - "data-aggregation" - "data-catalog" - "data-catalogues" - "data-dictionary" - "data-management" - "data-request" - "data.gov" - "database" - "definition" - "disease" - "distribution" - "district" - "documentation" - "drugs" - "economics" - "education" - "elections" - "energy" - "english" - "environment" - "epidemic" - "ethics" - "europe" - "extracting" - "factbook" - "fbo.gov" - "fcc" - "federal" - "file-format" - "finance" - "fitness" - "flashcards" - "foia" - "france" - "freebase" - "french" - "game" - "genealogy" - "geocoding" - "geonames" - "geospatial" - "germany" - "gis" - "github" - "government" - "graphs" - "healthcare" - "healthcare-finder" - "history" - "home-value" - "html" - "iati" - "ict4d" - "images" - "income" - "india" - "industry" - "irs" - "isbn" - "japan" - "japanese" - "json" - "json-ld" - "kml" - "language" - "law" - "laws" - "legislation" - "licensing" - "linked-data" - "local" - "machine-learning" - "maps" - "mauritius" - "media" - "medical" - "metadata" - "mosaic-effect" - "movie" - "municipal" - "music" - "n3" - "names" - "network" - "ngo" - "nlp" - "noaa" - "nonprofit" - "normalization" - "nutrition" - "oauth" - "open-definition" - "openfda" - "openrefine" - "parsing" - "patient" - "pdf" - "pets" - "postal-code" - "prices" - "pricing" - "procurement" - "products" - "programming" - "public-domain" - "public-transport" - "r" - "rdf" - "real-estate" - "real-time" - "recipes" - "regulations.gov" - "releasing-data" - "reliability" - "rulemaking" - "schema.org" - "search-engine" - "security" - "sentiment-analysis" - "social" - "social-media" - "social-process" - "socrata" - "software" - "sparql" - "spending" - "spl" - "sports" - "standards" - "state" - "streets" - "survey" - "taxes" - "tool-request" - "traffic" - "translation" - "transportation" - "trends" - "triplestore" - "trust" - "turtle" - "uk" - "unstructured-data" - "usa" - "users" - "uses-of-open-data" - "visualisation" - "war" - "weather" - "web-crawling" - "wikidata" - "wikimedia-commons" - "wikipedia" - "wikivoyage" - "wiktionary" - "world") diff --git a/data/tags/outdoors.el b/data/tags/outdoors.el deleted file mode 100644 index 56c7d8a..0000000 --- a/data/tags/outdoors.el +++ /dev/null @@ -1,350 +0,0 @@ -("abseiling" - "africa" - "alpine" - "alpine-tour" - "alps" - "altitude" - "anchors" - "animals" - "appalachian-trail" - "approaching-a-mountain" - "arctic" - "austria" - "avalanche" - "backcountry" - "backpack" - "backpacking" - "barefoot" - "base-camp-garbage" - "beach" - "bear-bag" - "bears" - "beginner" - "belay" - "big-wall-climbing" - "biking" - "birds" - "bite" - "bivouac" - "blisters" - "boats" - "bones" - "books" - "boots" - "boots-b2" - "bouldering" - "bow-hunting" - "breathing" - "bugs" - "california" - "calories" - "camping" - "canada" - "canadians" - "canoe" - "canteen" - "canyoneering" - "canyoning" - "car-camping" - "carabiners" - "casting" - "caucasus" - "caving" - "children" - "cleaning" - "cleaning-fish" - "climate" - "climbing" - "climbing-grade" - "climbing-holds" - "clothing" - "cold" - "cold-weather" - "communication" - "compasses" - "conditions" - "conservation" - "contour-maps" - "cooking" - "cougars" - "crampons" - "creek-crossing" - "crevasses" - "crevasses-crossing" - "cross-country-skiing" - "crossbow" - "czech" - "deep-sea-diving" - "deer" - "descending-rings" - "deserts" - "dexamethasone-dex" - "disease" - "distance" - "diy" - "dogs" - "down" - "drinking" - "drinking-water" - "dslr" - "dyneema" - "edible" - "eight-thousanders" - "electronic-gear" - "emergencies" - "emergency" - "emergency-contact" - "environmental-factors" - "equipment" - "equipment-care" - "etiquette" - "europe" - "everest-base-camp" - "exercises" - "feet" - "fire" - "first-aid" - "fish" - "fishing" - "fitness" - "flashlight" - "flora" - "fly-fishing" - "folklore" - "food" - "footprints" - "footwear" - "footwork" - "foraging" - "forests" - "french" - "frisbee" - "frostbite" - "fuel" - "garbage-disposal" - "gas-stove" - "gear" - "geocaching" - "geology" - "georgia" - "germany" - "glacier" - "gore-tex" - "gps" - "greece" - "grilling" - "groups" - "guns" - "hammock" - "hardening" - "hats" - "health" - "helmet" - "high-altitude" - "hiking" - "himalaya" - "horses" - "hot-weather" - "human-factors" - "hunting" - "hunting-game" - "huts" - "hygiene" - "hypothermia" - "ice" - "ice-axe" - "ice-climbing" - "improvised-equipment" - "injury" - "insect-repellent" - "insects" - "insulation" - "kayak" - "kayak-fibreglass" - "kayak-plastic" - "kernmantle-rope" - "kilimanjaro" - "knives" - "knives-sharpening" - "knots" - "lakes" - "leave-no-trace" - "leeches" - "legality" - "letterboxing" - "lighting" - "lightning" - "liquid-fuel-stoves" - "logistics" - "long-trail" - "lost" - "maintenance" - "make-shift-gear" - "map-reading" - "maps" - "medical-emergencies" - "minimalist-shoes" - "mojave-desert" - "mold" - "monongahela-river" - "moose" - "mosquitoes" - "mount-everest" - "mountain-huts" - "mountaineering" - "mountaineering-literature" - "mountaineering-quotes" - "mountains" - "moutain-identifying" - "moutaineering" - "multi-pitch" - "muscle-cramp" - "myog" - "national-park" - "nature" - "naturism" - "navigation" - "nepal-tourism" - "new-england" - "new-zealand" - "night" - "north-america" - "northern-hemisphere" - "nutrition" - "off-road-driving" - "ohio-river" - "orienteering" - "pacific-crest-trail" - "packs" - "paddling" - "paradoxical-undressing" - "permits" - "personal-locator-beacons" - "pitching" - "plants" - "portaledge" - "potomac-river" - "preparation" - "prevention" - "proper-fit" - "protection" - "prusik" - "purchase" - "rails" - "rain" - "rain-gear" - "rappelling" - "recycling" - "repairs" - "rescue" - "resources" - "risk" - "river-navigation" - "rivers" - "rock-climbing" - "rope" - "rope-management" - "ruck-sacks" - "running" - "russia" - "safety" - "safety-standards" - "sailing" - "salt-water" - "satellite-phones" - "scotland" - "scotland-munro" - "scrambling" - "scuba-diving" - "sea" - "search-and-rescue" - "security" - "self-arrest" - "self-rescue" - "setting-up-an-anchor" - "shelter" - "shoelaces" - "shoes" - "shooting" - "signage" - "ski-repair" - "skiing" - "sleeping" - "sleeping-bag" - "sleeping-pad" - "slovenia" - "snakes" - "snorkeling" - "snow" - "snowboarding" - "snowdonia" - "snowshoeing" - "snowshoes" - "solo-trekking" - "spain" - "sport-climbing" - "spring" - "storage" - "stoves" - "sun" - "sunglasses" - "sunrise" - "surfing" - "survival" - "sweden" - "swimming" - "tarp-tent" - "temperature" - "tents" - "terminology" - "thru-hike" - "ticks" - "time" - "toilet-etiquette" - "tools" - "top-rope" - "trad-climbing" - "trails" - "training" - "travel" - "travelling" - "tree-climbing" - "trees" - "trekking" - "trekking-equipment" - "trekking-in-uk-england" - "trekking-poles" - "tropic" - "tyvek" - "uk" - "ultralight" - "united-states" - "untagged" - "urbex" - "us-new-england" - "viaferrata" - "vibram-five-fingers" - "walking" - "warm-up-routines" - "washing" - "waste" - "water" - "water-purification" - "water-sports" - "waterfalls" - "waterproofing" - "weather" - "whitewater-rafting" - "wild-camping" - "wilderness" - "wildlife" - "windsurfing" - "winter" - "winter-camping" - "winter-climbing" - "winter-walking" - "wolves" - "women" - "wood" - "yosemite-decimal-system" - "youghiogheny-river") diff --git a/data/tags/parenting.el b/data/tags/parenting.el deleted file mode 100644 index 7ee7d37..0000000 --- a/data/tags/parenting.el +++ /dev/null @@ -1,293 +0,0 @@ -("abuse" - "activities" - "add" - "addiction" - "adhd" - "adoption" - "adult-child" - "age" - "age-appropriate" - "aggression" - "airplane" - "alcohol" - "allergies" - "animal-interaction" - "anxiety" - "arguments" - "asthma" - "athletics" - "attachment" - "attention" - "autism" - "baby" - "baby-led-weaning" - "babyfood" - "babysit" - "babysitter" - "bathing" - "bed-wetting" - "bedroom" - "bedtime" - "behavior" - "bilingual" - "birth" - "birthday" - "bonding" - "books" - "bottle-feeding" - "breastfeeding" - "breastmilk" - "breathing" - "brushing-teeth" - "bullying" - "car-seat" - "cellphone" - "childcare" - "chores" - "christmas" - "cleaning" - "cloth-diaper" - "clothes" - "clothing" - "co-parenting" - "cognitive-development" - "colic" - "communication" - "communicationlan" - "competitiveness" - "computer" - "conflict" - "consistency" - "cooking" - "coping" - "cosleeping" - "crawling" - "crib" - "crying" - "custody" - "daily-routine" - "dating" - "daycare" - "death" - "development" - "diabetes" - "diaper" - "diaper-rash" - "diet" - "discipline" - "discussion" - "disorder" - "divorce" - "doctor" - "dogs" - "drinking" - "driving" - "drugs" - "ear" - "eating" - "education" - "electrocution" - "elimination-communication" - "emotion" - "emotional" - "emotional-well-being" - "encopresis" - "entertainment" - "enuresis" - "etiquette" - "evidence" - "extended-family" - "extraversion" - "eyes" - "family-activities" - "family-planning" - "fears" - "feeding" - "fighting" - "fine-motor-skills" - "firearms" - "first-time" - "focus" - "food" - "formula" - "foster-parenting" - "freedom" - "friends" - "gadgets" - "games" - "gas" - "gender" - "gifted" - "gifts" - "girls" - "glasses" - "grandparents" - "gross-motor-development" - "growth" - "habits" - "hair" - "halloween" - "handedness" - "handwriting" - "harry-potter" - "health" - "hearing" - "history" - "hitting" - "holidays" - "homeschooling" - "homework" - "homosexuality" - "hygiene" - "hyperactiveness" - "immunizations" - "independence" - "infant" - "injury" - "insects" - "insurance" - "internet" - "ipad" - "jealousy" - "junkfood" - "language" - "language-development" - "learning" - "legal" - "lice" - "life-skills" - "limits" - "listening" - "living-space" - "lying" - "manners" - "math" - "maturity" - "media" - "medicine" - "mental-health" - "middle-childhood" - "milestones" - "milk" - "misbehavior" - "money" - "morals" - "motivation" - "motor-development" - "mouthing" - "movies" - "moving" - "music" - "names" - "natural-consquences" - "newborn" - "nicu" - "night-time" - "nightwaking" - "noise" - "nursing" - "nutrition" - "outdoor" - "pacifier" - "parents" - "party" - "peer-pressure" - "periods" - "personality" - "pets" - "phobias" - "play" - "play-time" - "pointing" - "politics" - "potty" - "potty-training" - "praise" - "pre-schooler" - "pre-teen" - "pregnancy" - "premature" - "presents" - "primary-schooler" - "problem-solving-skills" - "programming" - "psychology" - "quality-of-life" - "reading" - "reflux" - "regional" - "relationships" - "religion" - "research" - "resource" - "restaurant" - "reward" - "role-models" - "rules" - "safety" - "santa" - "school" - "school-selection" - "self-esteem" - "sensory" - "separation" - "sex" - "sharing" - "shopping" - "siblings" - "sickness" - "sign-language" - "single-parent" - "sleep" - "sleep-deprivation" - "sleep-training" - "social" - "social-development" - "social-media" - "socialization" - "solids" - "spanking" - "special-education" - "special-needs" - "speech" - "sports" - "standing" - "star-chart" - "stay-at-home" - "step-parents" - "stroller" - "sunlight" - "supervision" - "swaddling" - "swimming" - "talking" - "tandem-nursing" - "tantrums" - "teacher" - "teaching" - "teen" - "teeth" - "teething" - "television" - "temper" - "temperatures" - "thumb-sucking" - "time-out" - "toddler" - "toilet" - "toilet-training" - "toys" - "transition" - "transport" - "travel" - "twins" - "untagged" - "video-games" - "violence" - "vomiting" - "waldorf" - "walking" - "water" - "weaning" - "weight" - "working-parents") diff --git a/data/tags/patents.el b/data/tags/patents.el deleted file mode 100644 index 036b3a6..0000000 --- a/data/tags/patents.el +++ /dev/null @@ -1,1188 +0,0 @@ -("101" - "102b" - "112b" - "20120284783" - "3d-printing" - "abstract" - "accenture" - "activity" - "adaptive-gc" - "adipose" - "advice" - "airstatorrotor" - "algorithms" - "amazon" - "amazon.com" - "america-invents-act" - "american-express" - "amusement-devices-games" - "android" - "animation" - "answer-to-complaint" - "apparatus" - "apparel" - "appeal" - "appellate-court" - "apple" - "application" - "approving" - "arts" - "assignee" - "assignment-history" - "att" - "attorney" - "audio" - "authentication" - "background" - "bad-faith" - "barcode" - "baths-closets-sinks" - "batteries" - "best-practices" - "bicycles" - "bitcoin" - "blocking-patent" - "bluetooth" - "board" - "bofa" - "build-systems" - "business" - "business-methods" - "c-i-p" - "calendar" - "call-center" - "canada" - "cannabis" - "capitalone" - "cards-pictures-signs" - "cassette" - "cd" - "challenge" - "change" - "cheap" - "chemistry" - "chemistry-microbiology" - "china" - "cip" - "citrix" - "claim-amendment" - "claim-chart" - "claims" - "cloud-storage" - "cn101361713b" - "cn103666378" - "cn103698034" - "cn1470762" - "cn202723661" - "cn202852656" - "cn202986618" - "codebase" - "communications-antennas" - "communications-electrical" - "computer" - "computer-data-transfer" - "computer-graphics" - "computers-support" - "conflict-of-interest" - "consumer-food" - "continuation" - "continuation-in-part" - "coordination" - "copyright" - "cost" - "court" - "creative-commons" - "creative-labs" - "crm" - "customers" - "d668263" - "dangerous" - "data-processing-database" - "data-processing-financial" - "data-processing-interface" - "data-processing-language" - "data-processing-measuring" - "data-processing-software" - "data-processing-vehicles" - "databases" - "date" - "date-of-invention" - "de10353118" - "deadbolt" - "defensive-publications" - "definitions" - "description" - "design" - "design-games" - "design-medical" - "design-patent" - "develop" - "development" - "diagnostic" - "diagrams" - "disclosure" - "discretionary" - "dispensing" - "display" - "docket" - "doctrine-of-equivalents" - "documents" - "drafting" - "drawing" - "drug-ingredients" - "dtmf" - "e-reader" - "ebay" - "education-demonstration" - "electricity-charging" - "electronics" - "email" - "email-lists" - "employer" - "enablement" - "encrypted-mail" - "encryption" - "ep0873072b1" - "ep1148681" - "ep1582406a1" - "ep1646287b1" - "ep1668450b1" - "ep1745909a2" - "ep2155766a1" - "ep2173572b1" - "ep2174251b1" - "ep2298800a1" - "ep2376067" - "ep2382885" - "ep2404200" - "ep2460126a1" - "ep2548802a2" - "ep2771744a1" - "epo" - "ericsson" - "error-detection" - "escort-service" - "espacenet" - "ethics" - "eu" - "european" - "examination" - "examiner" - "existing" - "expiration" - "expired" - "expired-patent" - "extraction" - "eyeglasses" - "facebook" - "false-marking" - "fees" - "fiber" - "file-history" - "file-storage" - "filing" - "findmanufacturer" - "first" - "first-sale-doctrine" - "fluid-dynamics" - "food-production" - "foreign" - "formula" - "forums" - "frand" - "freedom-to-operate" - "frivolous" - "fuzzy-logic" - "games-projectile" - "garden" - "gas-separation-processes" - "general" - "generation" - "genetic" - "geo-target" - "geographical" - "germany" - "gift" - "goodtechnologies" - "google" - "government-rights" - "grace-period" - "grant" - "grantapplication" - "guidelines" - "haar" - "hardware-patents" - "head-mounted-display" - "health" - "healthcare" - "heatmap" - "heavy-water" - "help" - "historical-data" - "history" - "home-automation" - "hsr" - "htc" - "huyundai" - "ibm" - "ibotta" - "idea" - "identifying" - "illegal" - "illumina" - "image-processing" - "improvement" - "incorrect" - "independent-inventor" - "india" - "indigenous" - "inequitable-conduct" - "infringement" - "inquiry" - "inrix" - "intellectual-property" - "intellectual-ventures" - "international" - "internet" - "internet-radio" - "interpartes" - "invalid" - "invalidate" - "invalidation" - "invention" - "invention-promotion" - "inventor" - "inventor-declaration" - "inventorship" - "ios" - "ipc" - "ipea" - "itunes" - "jeff" - "jurisdiction" - "keyless-entry" - "keyword" - "kindcode" - "kipo" - "knowledge" - "laboratory" - "lapsed-patent" - "laptop" - "law" - "lawyers" - "ldt" - "leapmotion" - "lear" - "legal" - "library" - "licensing" - "lisp" - "litigation" - "lodsys" - "logitech" - "machine-learning" - "magnet" - "mailing" - "maintenance" - "mantt" - "manufacturing" - "maps" - "marijuana" - "market" - "marketing" - "medicine" - "mesh-networking" - "method" - "methodology" - "micro-entity" - "microsoft" - "misuse" - "mit" - "mobile" - "mobile-phone" - "modification" - "molded" - "moral" - "motor" - "multipal" - "multiple" - "nda" - "network" - "news" - "nhn" - "nih" - "nintendo" - "nokia" - "non-obviousness" - "non-publication" - "nortel" - "novelty" - "npe" - "nsa" - "number" - "objection" - "obstruction" - "obvious" - "obviousness" - "of" - "on-sale" - "online-advertising" - "online-dating" - "online-forum" - "online-shopping" - "opensource" - "opinion" - "optical-systems" - "oracle" - "outbrain" - "ownership" - "package-making" - "packaging" - "pair" - "panasonic" - "passwords" - "patent-agent" - "patent-applications" - "patent-figures" - "patent-infringement" - "patent-infringment" - "patent-jurisprudence" - "patent-lifetime" - "patent-memo" - "patent-misuse" - "patent-pending" - "patent-sale" - "patent-search" - "patent-services" - "patentability" - "patentable" - "patentapplicationnumber" - "patentnumber" - "pci-dss" - "pct" - "pctus2014019956" - "personal" - "physics" - "plant-patent" - "plus" - "politics" - "positively" - "post-grant" - "post-grant-review" - "power-supply" - "practicality" - "pre" - "pre-aia" - "pre-grant" - "precedent" - "prior-art" - "prior-art-request" - "priority" - "private-use" - "procceures" - "process" - "program-design" - "program-flow" - "programming" - "programming-tools" - "prolixity" - "prosecution" - "protect" - "protection" - "protein" - "protocol" - "provisional" - "provisional-application" - "pspr" - "public" - "public-domain" - "qr-code" - "qualcomm" - "quality" - "raid" - "rand" - "raytheon" - "recapture" - "receptacles-packages" - "reciprocality" - "recite" - "recourse" - "redundancy" - "reexamination" - "referencingpatent" - "reform" - "refrigeration" - "reissue" - "rejected" - "renren" - "reopen-prosecution" - "rescission" - "research" - "resources" - "restricted-claims" - "rockstar" - "royalty" - "sale" - "salesforce" - "samsung" - "sanctions" - "sap" - "science-fiction" - "scope" - "search" - "secret" - "secure-messaging" - "security" - "seeks" - "semantic-web" - "server" - "shield-act" - "ships" - "single" - "skierka" - "sms" - "social-networking" - "software" - "software-as-a-service" - "sony" - "soy" - "speaker-calibration" - "specific-patent" - "specification" - "speech-recognition" - "sponsor" - "sports" - "spreadsheets" - "standards" - "state-of-the-art" - "statistics" - "status" - "storage" - "stratasys" - "strategy" - "streaming" - "subcombination" - "supreme-court" - "surgery" - "surveys" - "system" - "table" - "tandberg" - "tech" - "telecommunications" - "term" - "terminology" - "text" - "text-analysis" - "thc" - "theranos" - "thermal-measuring" - "thermodynamics" - "third-party-submission" - "three-dimension" - "tomtom" - "trade" - "trade-dress" - "trademark" - "transcoding" - "translation" - "translations" - "turnto" - "twitter" - "uber" - "uk" - "untagged" - "urey" - "us" - "us-class" - "us1174605" - "us1267052" - "us1467558" - "us1826708" - "us194726" - "us20010032084" - "us20010032522" - "us20020144536" - "us20020187719" - "us20030014239" - "us20030019364" - "us20040116529" - "us20040158483" - "us20040172327" - "us20040177002" - "us20040186743" - "us20040201595" - "us20040213428" - "us20040249303" - "us20050015326" - "us20050211962" - "us20050243651" - "us20060073976" - "us20060081742" - "us20060098849a1" - "us20060112899" - "us20060286044" - "us20070040653" - "us20070087828" - "us20070091093" - "us20070172216" - "us20070233477" - "us20070288889" - "us20070294983" - "us20080129694" - "us20080140650" - "us20080197790" - "us20080250656" - "us20080270152" - "us20080300993" - "us20080316176" - "us20090013028" - "us20090055029" - "us20090055833" - "us20090188322" - "us20090205878" - "us20090292295" - "us20090327301a1" - "us20100009006" - "us20100030834" - "us20100073978" - "us20100091396" - "us20100092623" - "us20100166076a1" - "us20100175570" - "us20100190188" - "us20100200008" - "us20100225313" - "us20100238293" - "us20100251120" - "us20100309621" - "us20100316986" - "us20100318895" - "us20100325182" - "us20100327479" - "us20100332310" - "us20110037768" - "us20110054890" - "us20110056000" - "us20110078554" - "us20110086189" - "us20110097693" - "us20110107630" - "us20110145932" - "us20110161333" - "us20110190581" - "us20110201238" - "us20110202766" - "us20110237152" - "us20110242130" - "us20110246973" - "us20110286205" - "us20110313804" - "us20110313833" - "us20110314371" - "us20120016857" - "us20120030046" - "us20120036028" - "us20120036080" - "us20120052930" - "us20120073952" - "us20120084131" - "us20120089616" - "us20120110437" - "us20120120094" - "us20120124571" - "us20120137209" - "us20120139656" - "us20120146993" - "us20120148075" - "us20120158519a1" - "us20120166477" - "us20120173688" - "us20120185456" - "us20120197752" - "us20120203457" - "us20120203725" - "us20120206565" - "us20120207901" - "us20120221436" - "us20120221930" - "us20120222191" - "us20120222429" - "us20120223477" - "us20120223650" - "us20120225162" - "us20120226189" - "us20120226390" - "us20120226392" - "us20120226507" - "us20120226640" - "us20120226658" - "us20120226962" - "us20120227028" - "us20120228338" - "us20120228385" - "us20120231838" - "us20120232971" - "us20120233020" - "us20120239483a1" - "us20120240097" - "us20120240101" - "us20120246008" - "us20120246195" - "us20120249774" - "us20120251378" - "us20120251502" - "us20120251688" - "us20120253817" - "us20120253902" - "us20120254255" - "us20120254261" - "us20120258190" - "us20120258773" - "us20120259578" - "us20120262358" - "us20120271477" - "us20120276518" - "us20120278132" - "us20120281086" - "us20120284143a1" - "us20120284270" - "us20120284613a1" - "us20120287044" - "us20120290372" - "us20120290389" - "us20120317511" - "us20120321216" - "us20120323663" - "us20120323691" - "us20120323879" - "us20120325160" - "us20120326927" - "us20120330722" - "us20120330778a1" - "us20130014217" - "us20130014219" - "us20130015958" - "us20130019855" - "us20130025039" - "us20130031118" - "us20130031458" - "us20130031935" - "us20130036107" - "us20130041420" - "us20130046636" - "us20130046760a1" - "us20130047644" - "us20130051572" - "us20130052896" - "us20130054498" - "us20130055357" - "us20130055499a1" - "us20130059018" - "us20130063492" - "us20130066839" - "us20130070099" - "us20130070918" - "us20130072575" - "us20130078073" - "us20130080485" - "us20130085861" - "us20130086561" - "us20130091117a1" - "us20130093892" - "us20130095303" - "us20130100291" - "us20130107668" - "us20130110502" - "us20130110678" - "us20130110731" - "us20130110748" - "us20130110822" - "us20130111395" - "us20130117185" - "us20130117693" - "us20130124518" - "us20130128027" - "us20130130212" - "us20130132065" - "us20130132191" - "us20130132198" - "us20130132211" - "us20130132240" - "us20130132523" - "us20130132895" - "us20130138479" - "us20130138487" - "us20130138656" - "us20130138778" - "us20130144890" - "us20130144957a1" - "us20130144978" - "us20130145288" - "us20130151143a1" - "us20130151332" - "us20130151342" - "us20130152014" - "us20130152017a1" - "us20130159003" - "us20130159094a1" - "us20130159220" - "us20130159222" - "us20130159426" - "us20130159434" - "us20130159435" - "us20130159436" - "us20130159586" - "us20130166275" - "us20130166369" - "us20130166371" - "us20130166455" - "us20130166517" - "us20130173159a1" - "us20130173389" - "us20130173402" - "us20130173955" - "us20130179263" - "us20130179265" - "us20130186888" - "us20130189631" - "us20130197896a1" - "us20130198174" - "us20130198717" - "us20130203144" - "us20130204413" - "us20130204709a1" - "us20130204737" - "us20130205007" - "us20130211953" - "us20130212067" - "us20130216740" - "us20130217364" - "us20130220295" - "us20130226915a1" - "us20130227076a1" - "us20130242109" - "us20130246165" - "us20130256198" - "us20130262294" - "us20130272374" - "us20130275486" - "us20130275486a1" - "us20130293680" - "us20130304599" - "us20130304913" - "us20130314244" - "us20130318182" - "us20130339363" - "us20130339891" - "us20140012609a1" - "us20140019693" - "us20140019842" - "us20140027014" - "us20140038206" - "us20140038722" - "us20140046914" - "us20140047043" - "us20140047767" - "us20140052778" - "us20140059238a1" - "us20140062849" - "us20140076126" - "us20140085334" - "us20140088942" - "us20140095189" - "us20140112139" - "us20140134731" - "us20140187200" - "us20140191565" - "us20140196008" - "us20140196015" - "us20140196131" - "us20140222502" - "us20140270216" - "us20140296324" - "us20140349751" - "us223898" - "us2394492" - "us2508868" - "us2527955" - "us2560198" - "us2690379" - "us2694522" - "us2739652" - "us3039165" - "us3081553" - "us3202426" - "us3266443" - "us3424111" - "us3447950" - "us3601948a" - "us3605913" - "us3611966" - "us3658550" - "us3683530" - "us3695017" - "us3779372" - "us3803871" - "us3827221" - "us4103235" - "us4132029" - "us4151431" - "us4197590" - "us4396600" - "us4475856" - "us4578291" - "us4620479" - "us4636489" - "us4820036" - "us4952496" - "us5003186" - "us5024628" - "us5089255" - "us5090167" - "us5129654" - "us51860" - "us5224756" - "us5240307" - "us5271104" - "us5344396" - "us5350471" - "us5351078" - "us5356330" - "us5412730" - "us5417445" - "us5481539" - "us549160" - "us5495566" - "us5506866" - "us5533051" - "us5576880" - "us5584962" - "us5597520" - "us5618582" - "us563836" - "us5676977" - "us5693489" - "us5714045" - "us5714464" - "us5715314" - "us5715629" - "us5720421" - "us5822272" - "us5842617" - "us5870405" - "us5926925" - "us5930362" - "us5934963a" - "us5937402" - "us5938197" - "us5946647" - "us5960411" - "us5971475" - "us5983201" - "us5983499" - "us6025327" - "us6025810" - "us6034101" - "us6038295" - "us6052372" - "us6072466" - "us6092612" - "us6098065" - "us6098180" - "us6108955" - "us6125996" - "us6137498" - "us6148942" - "us6153034" - "us6163785" - "us61705026" - "us6173146" - "us6188756" - "us6192123" - "us6199048" - "us6240024" - "us6266535" - "us6289362" - "us6292685" - "us6293874" - "us6323569b1" - "us6330592" - "us6352164" - "us6368227" - "us6370535" - "us6396482" - "us6407079" - "us6415316" - "us6431498" - "us6463131" - "us6471127" - "us6488034" - "us6502698" - "us6504873" - "us6510441" - "us6513002" - "us6529908" - "us6530065" - "us6535909" - "us6544042" - "us6550709" - "us6563040" - "us6578010" - "us6610337" - "us6628314" - "us6630507" - "us6677326" - "us6711293" - "us6735249" - "us6745568" - "us6754400" - "us6757714" - "us6757802" - "us6771290" - "us6796360" - "us6831556" - "us6839541" - "us6851147" - "us6867776" - "us6880835" - "us6904428" - "us6907471" - "us6912559" - "us6926341" - "us6933362" - "us6944690" - "us6960316" - "us6981007" - "us6990458" - "us7000183" - "us7010755" - "us7016824" - "us7028023" - "us7032911" - "us7052212" - "us7055282" - "us708841" - "us7089266" - "us7098896" - "us7103906" - "us7149251" - "us7159254" - "us7167910" - "us7181690" - "us7206756" - "us7212688" - "us7222078" - "us7227511" - "us7249263" - "us7249570" - "us7268290" - "us7269587" - "us7298271" - "us7306926" - "us7311526" - "us7353199" - "us7363309" - "us7375656" - "us7376606" - "us7396654" - "us7404278" - "us7437290" - "us7440914" - "us7445677" - "us7448400" - "us7462770" - "us7479949" - "us7493558" - "us7503696" - "us7508391" - "us7512602" - "us7514593" - "us7539685" - "us7577595" - "us7596522" - "us7608000" - "us7620565" - "us7635594" - "us7687886" - "us7714742" - "us7771509" - "us7774976" - "us7775666" - "us7795768" - "us7809805" - "us7844363" - "us7844915" - "us7853881" - "us7864163" - "us7870504" - "us7873522" - "us7877678" - "us7887419" - "us7888125" - "us7889927" - "us7904356" - "us7930197" - "us7936887" - "us7938262" - "us7945544" - "us7945856" - "us7983979" - "us8011122" - "us8030549" - "us8032418" - "us8037700" - "us8068066" - "us8069073" - "us8082501" - "us8086604" - "us8088480" - "us8108092" - "us8112504" - "us8114195" - "us8115765" - "us8118911" - "us8131735" - "us8144070" - "us8166269" - "us8167224" - "us8214361" - "us8216392" - "us8240362" - "us8243435" - "us8249994" - "us8255828" - "us8261231" - "us8261972" - "us8271057" - "us8272136" - "us8276057" - "us8276545" - "us8283794" - "us8289130" - "us8327659" - "us8361511" - "us8364183" - "us8370511" - "us8380541" - "us8380623" - "us8387329" - "us8401009" - "us8402281" - "us8416692" - "us8423452" - "us8438081" - "us8449413" - "us8458236" - "us8468442" - "us8494923" - "us8498900" - "us8498959" - "us8502060" - "us8510762" - "us8511846" - "us8516467" - "us8528072" - "us8532632" - "us8542206" - "us8559894" - "us8576051" - "us8577392" - "us8598823" - "us8605152" - "us8615473" - "us8618969" - "us8625805" - "us8676045" - "us8682957" - "us8686880" - "us8695098" - "us8764443" - "us8768252" - "us8832436" - "usa" - "usd471730" - "usd504889" - "usd556283" - "usd564613" - "usd579373" - "usd637920" - "usd650445" - "usd651568" - "usd652759" - "usd653349" - "usd661296" - "usd663234" - "usd670191" - "usd670286" - "usd670713" - "usd674720" - "usd675368" - "usd678656" - "usd679716" - "usd686037" - "usd697343" - "usd94036" - "user-interface" - "uspp9753p" - "uspto" - "uspublication" - "utility" - "utility-model" - "validity" - "value" - "vehicle" - "verification" - "video" - "video-games" - "virtual-reality" - "wavelet" - "web-browser" - "webm" - "websites" - "wide-span" - "wipo" - "wireless" - "wireless-audio" - "wo-2014122535" - "wo1979000528a1" - "wo1996038643a1" - "wo2000006442a1" - "wo2001053721" - "wo2004066851" - "wo2004085005" - "wo2006024850a2" - "wo2008016230a1" - "wo2008021980a3" - "wo2008070594a3" - "wo2008113609" - "wo2010052608a1" - "wo2011156052" - "wo2011162927a3" - "wo2012101423a2" - "wo2012120312a1" - "wo2012135174" - "wo2012140207a2" - "wo2012149090" - "wo2012150267" - "wo2012160452a1" - "wo2013026156" - "wo2013040557a2" - "wo2013110942a1" - "wo2013112217" - "wo2013155313a2" - "wo2014004748a1" - "wo2014014991" - "wo2014036568a1" - "wo2014100371a1" - "wo2014116726a1" - "wo2014149626a1" - "word-limit" - "workflow" - "writing" - "written-description" - "xbrl" - "yahoo" - "yammer" - "zaarly" - "zoosk") diff --git a/data/tags/pets.el b/data/tags/pets.el deleted file mode 100644 index a501dea..0000000 --- a/data/tags/pets.el +++ /dev/null @@ -1,224 +0,0 @@ -("acclimation" - "adoption" - "age" - "aggression" - "agility" - "algae" - "allergies" - "amphibians" - "anatomy" - "animal-handling" - "anxiety" - "aquarium" - "aquatic-plants" - "arachnids" - "attire" - "bathing" - "bearded-dragon" - "bedding" - "behavior" - "betta" - "biology" - "birds" - "biting" - "boarding" - "bonding" - "breeding" - "breeds" - "brineshrimp" - "budgerigar" - "burmese" - "cage" - "care" - "cats" - "cattle" - "cecotropes" - "certificate" - "chewing" - "chickens" - "children" - "chinchillas" - "cichlid" - "cleaning" - "clicker-training" - "clown-plecos" - "cockatiels" - "cocker-spaniel" - "communication" - "community-aquarium" - "compatibility" - "competitions" - "conformation-shows" - "containment" - "crate" - "crayfish" - "crickets" - "crossbreed" - "dachshunds" - "danio" - "death" - "decorations" - "dental-care" - "desexing" - "diet" - "digging" - "disabled" - "disaster" - "diseases" - "docking" - "dogs" - "domestication" - "dominance" - "donkeys" - "drinking" - "eating" - "eggs" - "enclosure" - "equipment" - "euthanasia" - "exercise" - "exotic-pets" - "farm-animals" - "farriers" - "fear" - "feces" - "feeding" - "feral" - "ferrets" - "filters" - "first-aid" - "fish" - "fleas" - "fostering" - "freshwater" - "frogs" - "fundraising" - "fur" - "furniture" - "geckos" - "gender-differentiation" - "genetics" - "gerbil" - "goats" - "gourami" - "grooming" - "growing" - "growling" - "guinea-fowls" - "guinea-pigs" - "habitat" - "hamsters" - "health" - "hearing" - "hedgehogs" - "herbivore" - "herding" - "hermit-crabs" - "history" - "horses" - "house-moving" - "humane-society" - "hunting" - "hygiene" - "identification" - "infections" - "injury" - "insects" - "instinct" - "introducing-pets" - "invertebrates" - "koi" - "leash-training" - "legal" - "leopard-geckos" - "lifespan" - "lighting" - "live-food" - "lizards" - "llamas" - "maine-coon" - "maintenance" - "marking" - "medicines" - "mental-stimulation" - "mice" - "molting" - "multi-pet-families" - "outdoor" - "parasites" - "parrots" - "pest-control" - "pet-selection" - "physiology" - "pig" - "plants" - "platy" - "play" - "pleco" - "poison" - "pond" - "proofing" - "psychology" - "purebred" - "purring" - "rabbits" - "rat" - "recall" - "reef-tank" - "reptiles" - "rescue-organizations" - "rodents" - "safety" - "salamanders" - "saltwater" - "scratching" - "sea-monkeys" - "senior-pet" - "shedding" - "sheep" - "shelter" - "showmanship" - "skin-condition" - "skinny-pigs" - "sleep" - "snails" - "snakes" - "snoring" - "socializing" - "sound" - "sports" - "stress" - "sturgeons" - "substrate" - "surgery" - "swimming" - "tarantulas" - "teething" - "terminology" - "terrariums" - "territory" - "tetra" - "ticks" - "toilet-training" - "tortoises" - "toys" - "training" - "trancing" - "travel" - "treats" - "ttouch" - "turtles" - "ultrasonic" - "united-states" - "upper-respiratory-disease" - "vaccination" - "veterinarian" - "vision" - "vocalizations" - "water-changes" - "water-parameters" - "weather" - "weight" - "welsh-collie" - "whippet" - "winter") diff --git a/data/tags/philosophy.el b/data/tags/philosophy.el deleted file mode 100644 index c73fba4..0000000 --- a/data/tags/philosophy.el +++ /dev/null @@ -1,324 +0,0 @@ -("abortion" - "aesthetics" - "agnosticism" - "altruism" - "analogy" - "analytic-philosophy" - "analytic-synthetic-divide" - "analyticity" - "ancient-philosophy" - "animal-welfare" - "animals" - "anthropology" - "applications" - "applied-philosophy" - "aquinas" - "argumentation" - "aristotle" - "arithmetic" - "artifact" - "artificial-intelligence" - "atheism" - "atomism" - "attitude" - "authority" - "awareness" - "ayn-rand" - "badiou" - "beauty" - "belief" - "bergson" - "berkeley" - "bertrand-russell" - "bioethics" - "bostrom" - "bourdieu" - "buddhism" - "burke" - "camus" - "carneades" - "cassirer" - "categorical-imperative" - "causation" - "chinese-philosophy" - "christianity" - "cicero" - "cognitive-sciences" - "compatibilism" - "complexity" - "computation" - "computer-ethics" - "concept" - "consciousness" - "consent" - "consequentialism" - "contemporary-philosophy" - "context" - "continental-philosophy" - "cosmology" - "creationism" - "critical-theory" - "critique-of-pure-reason" - "david-chalmers" - "david-lewis" - "dawkins" - "death" - "death-penalty" - "debate" - "deconstruction" - "deduction" - "definitions" - "deleuze" - "deleuze-and-guattari" - "democracy" - "derrida" - "descartes" - "desire" - "determinism" - "dewey" - "dialectic" - "difference" - "difference-and-repetition" - "dreams" - "dualism" - "duty" - "eastern-philosophy" - "economics" - "ecophilosophy" - "education" - "elegance" - "eliminative-materialism" - "emergence" - "emotions" - "empirical-apperception" - "empiricism" - "enlightenment" - "environmental-philosophy" - "epicurus" - "epistemology" - "essence" - "ethics" - "evolution" - "existence" - "existentialism" - "experimental-philosophy" - "faith" - "fallacies" - "falsifiability" - "feyerabend" - "formal-theory" - "formalisation" - "foucault" - "foundationalism" - "free-will" - "freud" - "functionalism" - "fundamental-entities" - "futurism" - "gender" - "genealogy-of-morals" - "german-philosophy" - "goedel" - "good-and-evil" - "governmentality" - "gramsci" - "happiness" - "hegel" - "heidegger" - "hermeneutics" - "hinduism" - "history-of-philosophy" - "hobbes" - "hofstadter" - "homework" - "human-condition" - "human-rights" - "humanism" - "hume" - "idea" - "idealism" - "identity" - "illness" - "individualism" - "induction" - "infinite" - "infinity" - "intentionality" - "interpretation" - "islamic-philosophy" - "john-searle" - "justice" - "kant" - "kierkegaard" - "knowledge" - "knowledge-representation" - "korsgaard" - "kripke" - "lacan" - "language" - "laruelle" - "latour" - "legal" - "leibniz" - "libertarianism" - "life" - "linguistics" - "locke" - "logic" - "logical-positivism" - "machiavelli" - "manuscript" - "marx" - "marxism" - "materialism" - "meaning" - "meaning-of-life" - "medieval-logic" - "meme" - "metaethics" - "metaphilosophy" - "metaphysics" - "methodology" - "mind-body" - "miracles" - "modal-logic" - "modality" - "modernity" - "modes-of-persuasion" - "mysticism" - "myths" - "naturalism" - "neurophilosophy" - "nietzsche" - "nihilism" - "non-being" - "noumenon" - "nozick" - "objectivism" - "objectivity" - "occams-razor" - "omnipotence" - "ontological-argument" - "ontology" - "pain-and-pleasure" - "panopticon" - "paraconsistency" - "paradox" - "pascal" - "peirce" - "perception" - "phenomenology" - "philosophy-of-biology" - "philosophy-of-culture" - "philosophy-of-economics" - "philosophy-of-language" - "philosophy-of-law" - "philosophy-of-logic" - "philosophy-of-mathematics" - "philosophy-of-mind" - "philosophy-of-physics" - "philosophy-of-religion" - "philosophy-of-science" - "philosophy-of-technology" - "philosophy-of-war" - "physicalism" - "physics" - "plato" - "political-ethics" - "political-philosophy" - "politics" - "popper" - "popular-science" - "population-ethics" - "positivism" - "possible-worlds" - "post-humanism" - "postmodernism" - "practical-ethics" - "pragmatism" - "presocratics" - "probability" - "problem-of-evil" - "professional-ethics" - "proof" - "properties" - "property-rights" - "psychoanalysis" - "psychology" - "qualia" - "quantification" - "quantum-interpretations" - "quantum-physics" - "question-of-the-week" - "quine" - "rationalism" - "rationality" - "rawls" - "reader-response" - "reading" - "realism" - "reality" - "reductionism" - "reference-request" - "relations" - "relativism" - "rhetoric" - "rights" - "rorty" - "rule-ethics" - "sartre" - "scepticism" - "schelling" - "schopenhauer" - "scientific-method" - "scientific-realism" - "self" - "self-cognition" - "semantics" - "sentience" - "sexuality" - "simone-weil" - "singer" - "situationists" - "skepticism" - "social-contract" - "social-critique" - "social-epistemology" - "social-ethics" - "society" - "sociology" - "socrates" - "solipsism" - "souls" - "spinoza" - "square-of-opposition" - "state" - "stoicism" - "strauss" - "stress" - "structuralism" - "subjectivity" - "syllogism" - "taoism" - "teleology" - "terminology" - "the-prince" - "the-republic" - "theodicy" - "theology" - "time" - "transhumans" - "translation" - "truth" - "types" - "universe" - "untagged" - "utilitarianism" - "validity" - "violence" - "virtue-ethics" - "whitehead" - "wittgenstein" - "zeno-of-elea" - "zizek" - "zombies") diff --git a/data/tags/photo.el b/data/tags/photo.el deleted file mode 100644 index a7111a6..0000000 --- a/data/tags/photo.el +++ /dev/null @@ -1,1041 +0,0 @@ -("110" - "35mm" - "360-panorama" - "3d" - "3rd-party" - "40d" - "500px" - "50mm" - "580exii" - "60d" - "aberration" - "accessories" - "accounting" - "action" - "adapter" - "adobe" - "adobe-bridge" - "adobe-camera-raw" - "adobe-rgb" - "adr" - "advice" - "aerial-photography" - "af-s" - "airplanes" - "airshows" - "algorithms" - "alt-process" - "amateur" - "ambient-light" - "anamorphic" - "android" - "android-app" - "animals" - "ansel-adams" - "anti-aliasing" - "aperture" - "aperture-blades" - "aperture-priority" - "apodization" - "apple" - "apple-aperture" - "apple-app" - "apple-preview" - "apps" - "aps" - "aps-c" - "architecture" - "archival" - "archive" - "argus" - "art" - "artifacts" - "artificial-lighting" - "artistic" - "artwork" - "aspect-ratio" - "astrophotography" - "attribution" - "aurora-borealis" - "auto-alignment" - "auto-exposure-lock" - "auto-iso" - "autofocus" - "automation" - "autumn" - "baby-photos" - "back-focus" - "back-illuminated" - "backdrops" - "background" - "backlight" - "backup" - "bait-and-switch-scam" - "ball-head" - "banding" - "batch" - "battery" - "battery-drain" - "battery-grip" - "bayer" - "beginner" - "bellow" - "bibble" - "bicycling" - "biermann-weber" - "birds" - "bit-depth" - "black-and-white" - "blog" - "blur" - "boat-cruise" - "body" - "bokeh" - "books" - "borders" - "bounce-flash" - "bracketing" - "brenizer-method" - "bridge-camera" - "brightness" - "brushes" - "bryan-peterson" - "build-quality" - "bulb-mode" - "bulb-ramping" - "burst-mode" - "business" - "cables" - "calculations" - "camera-bag" - "camera-basics" - "camera-care" - "camera-cases" - "camera-controls" - "camera-design" - "camera-recommendation" - "camera-settings" - "camera-shake" - "camera-straps" - "camera-systems" - "camera-types" - "cameraphones" - "canada" - "candlelight" - "canon" - "canon-1000d" - "canon-1100d" - "canon-1d-mark-ii" - "canon-1d-mark-iii" - "canon-1d-mark-iv" - "canon-1d-x" - "canon-1ds" - "canon-1ds-mark-ii" - "canon-1v" - "canon-300d" - "canon-30d" - "canon-350d" - "canon-400d" - "canon-40d" - "canon-450d" - "canon-500d" - "canon-50d" - "canon-550d" - "canon-5d" - "canon-5d-mark-ii" - "canon-5d-mark-iii" - "canon-600d" - "canon-60d" - "canon-650d" - "canon-6d" - "canon-700d" - "canon-70d" - "canon-7d" - "canon-dpp" - "canon-ef" - "canon-g1-x" - "canon-g11" - "canon-ixus" - "canon-m" - "canon-mp-e-65mm" - "canon-s90" - "canon-sx30" - "canonet" - "canvas" - "canvas-prints" - "capture-one" - "card-reader" - "care" - "careers" - "cars" - "cartier-bresson" - "cast" - "cfcard" - "charger" - "chdk" - "cheap" - "chemicals" - "children" - "chroma-key" - "chromatic-aberration" - "cinema" - "circle-of-confusion" - "cityscape" - "cleaning" - "close-up-filter" - "cloth" - "clouds" - "cls" - "clubs" - "cmos-image-sensor" - "cmyk" - "cold" - "collage" - "color" - "color-black" - "color-blindness" - "color-blue" - "color-correction" - "color-depth" - "color-filters" - "color-fringing" - "color-gamut" - "color-green" - "color-management" - "color-red" - "color-spaces" - "color-theory" - "color-violet" - "color-white" - "colorimeter" - "colorization" - "commander-mode" - "commercial-photography" - "compact" - "compact-cameras" - "compactflash" - "comparison" - "compatibility" - "competitions" - "compositing" - "composition" - "composition-basics" - "computational-photography" - "computer-hardware" - "computerless" - "concert" - "condensation" - "contax" - "continuous-autofocus" - "continuous-drive" - "continuous-lighting" - "contracts" - "contrast" - "contrast-detection" - "coolpix" - "copyright" - "corel" - "course" - "cover" - "creative-commons" - "creative-process" - "crop-factor" - "cropped-sensor" - "cropping" - "cross-processing" - "curation" - "curves" - "cyanotype" - "d-lighting" - "dandelion-chip" - "danger" - "darkness" - "darkroom" - "darktable" - "data-corruption" - "date" - "dead-pixel" - "deconvolution" - "defect" - "delete" - "dell" - "demosaicing" - "depth-of-field" - "depth-of-focus" - "developing" - "device" - "diffraction" - "diffusers" - "digital" - "digital-iso" - "digital-lens-optimizer" - "digital-photography" - "digital-preservation" - "digital-vs-film" - "digital-zoom" - "digitizing" - "diopter" - "disability" - "display" - "display-calibration" - "disposable-cameras" - "distance-markers" - "distortion" - "diy" - "dng" - "document-reproduction" - "dpi" - "dry-box" - "dry-cabinet" - "dslr" - "duplicates" - "dust" - "dvd" - "dx" - "dxo-optics" - "dynamic-range" - "ebay" - "eclipse" - "education" - "effect" - "effective-aperture" - "electronic-shutter" - "electronic-viewfinder" - "electronics" - "elinchrom" - "emotion" - "environmental-dangers" - "eos-utility" - "epson" - "equipment-damage" - "equipment-management" - "equipment-protection" - "equipment-recommendation" - "equipment-storage" - "error" - "ethics" - "ettr" - "europe" - "event" - "event-photography" - "evf" - "exiftool" - "exposure" - "exposure-compensation" - "exposure-correction" - "exposure-fusion" - "extension-tubes" - "extreme-sports" - "eye-damage" - "eye-fi" - "eyes" - "f-stop" - "face-detection" - "facebook" - "fair-use" - "fashion" - "fast-lenses" - "features" - "fft" - "field-of-view" - "file" - "file-format" - "file-management" - "file-recovery" - "file-sharing" - "file-size" - "file-transfer" - "filenames" - "fill-flash" - "film" - "film-cameras" - "film-grain" - "film-scanner" - "filter-diameter" - "filter-stacking" - "filters" - "fine-art" - "fire" - "fireworks" - "firmware" - "firmware-hacks" - "fisheye" - "fixer" - "flash" - "flash-bracket" - "flashmatic" - "flickr" - "fluorescent" - "focal-length" - "focus" - "focus-adjust" - "focus-assist" - "focus-breathing" - "focus-confirmation" - "focus-distance" - "focus-motor" - "focus-point-indicators" - "focus-point-selection" - "focus-stacking" - "focusing-screen" - "fog" - "food-photography" - "forensics" - "four-thirds" - "foveon" - "framerate" - "framing" - "freelensing" - "freestyle-photo-supply" - "front-focus" - "fujifilm" - "fujifilm-x100" - "fujifilm-xe1" - "fujifilm-xpro1" - "full-frame" - "fun" - "fungus" - "galleries" - "gamma" - "gels" - "generic-brand" - "geotagging" - "ghosting" - "giclee" - "gifts" - "gimp" - "glare" - "glass" - "glass-plate" - "golden-hour" - "gopro" - "gorillapod" - "gps" - "graduated-filters" - "gray-card" - "gray-market" - "greg-gorman" - "grid" - "group-photos" - "guide-number" - "hair" - "halos" - "hand-held" - "handling" - "hardware" - "hasselblad" - "haze" - "hd-video" - "hdr" - "headshot" - "heat" - "hid-lights" - "hidpi" - "high-altitude" - "high-iso" - "high-key" - "high-speed" - "high-speed-sync" - "highlights" - "histogram" - "history" - "hitech" - "hobbyist" - "hot-pixels" - "hotshoe" - "hotshoe-flash" - "hoya" - "huey" - "hugin" - "human-vision-system" - "humidity" - "hyperfocal-distance" - "ideas" - "image-alignment" - "image-analysis" - "image-circle" - "image-compression" - "image-manipulation" - "image-plane" - "image-processing" - "image-quality" - "image-review" - "image-stabilization" - "image-stacking" - "image-stitching" - "imagemagick" - "import" - "in-camera-processing" - "indoor" - "infinity-focus" - "infrared" - "infrared-conversion" - "ink-jet" - "inspiration" - "instagram" - "instant-camera" - "insurance" - "interior" - "internal-focus" - "international" - "international-differences" - "internet" - "interpolation" - "intervalometer" - "ipad" - "iphone" - "iphoto" - "iso" - "iso-noise" - "jewelry" - "jpeg" - "judging" - "k-mount" - "keeping-quiet" - "ken-rockwell" - "kenko" - "keyboard-shortcuts" - "keywords" - "kirlian-photography" - "kit-lens" - "kodak" - "konica" - "landscape" - "laptop" - "large-format" - "laser" - "layers" - "lcd" - "learning" - "led-lighting" - "lee" - "legal" - "leica" - "lens" - "lens-adapter" - "lens-cap" - "lens-coatings" - "lens-construction" - "lens-correction" - "lens-design" - "lens-flare" - "lens-hood" - "lens-mount" - "lens-recommendation" - "lensbaby" - "lenscoat" - "lenticular-printing" - "levels" - "license" - "licensing" - "light" - "light-box" - "light-field" - "light-painting" - "light-pollution" - "lighting" - "lighting-basics" - "lighting-modifiers" - "lightning" - "lightroom" - "lightroom-2" - "lightroom-3" - "lightroom-4" - "lightroom-5" - "lightroom-catalog" - "lights" - "limited-space" - "linux" - "live-view" - "lo-fi" - "locations" - "lomo" - "long-exposure" - "low-budget" - "low-key" - "low-light" - "lumen" - "m-mount" - "m42" - "macbook" - "macintosh" - "macro" - "macro-converter" - "macro-flash" - "macro-lenses" - "magazine" - "magic-lantern" - "magnification" - "maintenance" - "mamiya" - "manfrotto" - "manual-flash" - "manual-focus" - "manual-mode" - "manufacture" - "marexar" - "market-segments" - "marketing" - "masks" - "measuring" - "medium-format" - "megapixels" - "memory-card" - "memory-card-size" - "metadata" - "metal" - "metering" - "metz" - "micro-four-thirds" - "micro-stock" - "microfiche" - "microscopy" - "microsd" - "microsoft-ice" - "milky-way" - "minimum-focus-distance" - "minolta" - "mirror" - "mirror-lens" - "mirror-lockup" - "mirrorless" - "model-releases" - "models" - "moire" - "monitors" - "monochrome" - "monopod" - "montage" - "mood" - "moon" - "motion" - "motion-blur" - "motivation" - "mountain" - "movie" - "mraw" - "mtf" - "multi-focal" - "multiple-exposure" - "natural-lighting" - "nature" - "nd-filter" - "negative" - "negative-film" - "negative-scanner" - "network" - "neutral-density" - "neutral-density-filter" - "night" - "nightclubs" - "nik-software" - "nikon" - "nikon-1" - "nikon-capture-nx" - "nikon-d300" - "nikon-d3000" - "nikon-d300s" - "nikon-d3100" - "nikon-d3200" - "nikon-d3300" - "nikon-d4" - "nikon-d40" - "nikon-d50" - "nikon-d5000" - "nikon-d5100" - "nikon-d5300" - "nikon-d600" - "nikon-d70" - "nikon-d700" - "nikon-d7000" - "nikon-d7100" - "nikon-d80" - "nikon-d800" - "nikon-d90" - "nikon-v1" - "nimh" - "noise" - "noise-reduction" - "noise-removal" - "nokia" - "normal" - "novoflex" - "nude-photography" - "off-camera-flash" - "old-cameras" - "old-flashes" - "old-lenses" - "old-prints" - "olympics2012" - "olympus" - "olympus-om1" - "olympus-omd" - "on-location" - "online-shopping" - "open-source" - "optical-coating" - "optical-quality" - "optical-viewfinder" - "optics" - "os-x" - "outdoor" - "overexposure" - "oversample" - "painting" - "panasonic" - "panasonic-lumix" - "panning" - "panorama" - "paper" - "patents" - "pentaprism" - "pentax" - "pentax-k1000" - "people" - "perception" - "performance" - "permission" - "perspective" - "pets" - "phase-detection" - "phase-one" - "philosophy" - "photo-booth" - "photo-critique" - "photo-editing" - "photo-galleries" - "photo-management" - "photo-mechanic" - "photo-shoot" - "photo-viewer" - "photobooks" - "photographer" - "photographers-rights" - "photography-basics" - "photojournalism" - "photolabs" - "photoshop" - "photoshop-cc" - "photoshop-cs5" - "photoshop-elements" - "photosites" - "physics" - "picasa" - "picture-samples" - "pinhole" - "pinhole-cameras" - "pixel-density" - "pixel-hk" - "pixels" - "plugin" - "png" - "pocket-wizard" - "point-and-shoot" - "polarizer" - "polaroid" - "popup-flash" - "portable" - "portfolio" - "portrait" - "posing" - "post-processing" - "power" - "power-supply" - "powershot" - "ppi" - "praktica" - "prefocus" - "presentation" - "presets" - "preview" - "pricing" - "prime" - "print-preservation" - "printed-album" - "printer" - "printing" - "prints" - "privacy" - "processing" - "product-photography" - "professional" - "program-mode" - "programming" - "project" - "projector" - "promotion" - "property-release" - "public-domain" - "publishing" - "quick-release" - "rain" - "rangefinder" - "raw" - "raw-plus-jpeg" - "raw-vs-jpeg" - "rawtherapee" - "raynox" - "real-estate" - "rear-lcd" - "reciprocity" - "red-eye" - "reflection" - "reflectors" - "remote" - "renting" - "repair" - "repair-parts" - "reproduction" - "rescaling" - "resolution" - "restoration" - "retina" - "retouching" - "reverse-engineering" - "reverse-geocoding" - "reverse-mount" - "reversed-lens" - "reviews" - "rgb" - "ricoh" - "ring-flash" - "risk" - "roadtrip" - "rokinon" - "rolling-shutter" - "rotation" - "ruggedized-equipment" - "rule-of-thirds" - "rust" - "safari" - "safety" - "sales" - "samsung" - "samyang" - "sand" - "saturation" - "sb-600" - "sb-700" - "scale" - "scanner" - "scanning" - "scanning-service" - "scene-modes" - "school" - "science" - "screw-mount" - "sdcard" - "sdhc" - "sdxc" - "search" - "seascape" - "second-curtain" - "security" - "selective-color" - "selective-focus" - "self-developing-film" - "self-portrait" - "selling" - "semantics" - "sensor" - "sensor-size" - "sequences" - "serial-number" - "service-recommendation" - "shadows" - "shaped-bokeh" - "sharing" - "sharpening" - "sharpness" - "sheet-film" - "shooting-mode" - "shooting-technique" - "shot-to-shot-time" - "shutter" - "shutter-actuations" - "shutter-lag" - "shutter-priority" - "shutter-release" - "shutter-speed" - "sidecar" - "sigma" - "skin-tones" - "sky" - "skylight" - "sld" - "slides" - "slideshow" - "slr" - "slt" - "smart-collections" - "smartphone" - "smoke" - "snow" - "soft-focus" - "soft-proofing" - "softbox" - "softness" - "software" - "software-recommendation" - "soligor" - "sony" - "sony-alpha" - "sony-nex" - "sound" - "special-effects" - "specification" - "speedlite" - "splash" - "split-tone" - "sports" - "spot-metering" - "spots" - "spyder3" - "sraw" - "srgb" - "stage-lighting" - "starbursts" - "stars" - "statistics" - "stereoscopy" - "still-life" - "stock-photography" - "stop-motion" - "storage" - "storytelling" - "straight-photography" - "street-photography" - "strobes" - "strobist" - "stroboscopic-flash" - "stuck-pixel" - "studio" - "studio-lighting" - "studio-setup" - "style" - "subject-distance" - "subject-isolation" - "subject-movement" - "subject-positioning" - "sun" - "sunlight" - "sunrise" - "sunset" - "superheadz" - "superresolution" - "superzoom" - "support-equipment" - "sync-speed" - "tablet" - "tagging" - "tamron" - "teaching" - "technique" - "technology-generations" - "teleconverter" - "telephoto" - "terminology" - "testing" - "tests" - "tethered" - "tethering" - "texture" - "theater" - "theory" - "third-party" - "thom-hogan" - "thumbnail-preview" - "thumbnails" - "tiff" - "tilt-shift" - "time" - "timelapse" - "tint" - "tips" - "tokina" - "tonal-distribution" - "tonal-range" - "tone" - "tone-curves" - "tone-mapping" - "toy-cameras" - "transport" - "travel" - "trend" - "trick-photography" - "triggers" - "triggertrap" - "tripod" - "tripod-collar" - "tripod-heads" - "tripod-socket" - "troubleshooting" - "ttl" - "tutorial" - "ufraw" - "ultra-wide" - "umbrella" - "underexposure" - "underwater" - "united-kingdom" - "united-states" - "unsharp-mask" - "upgrade" - "urban" - "usb" - "used-equipment" - "utility" - "uv" - "variable-nd" - "vector" - "vibrance" - "video" - "viewfinder" - "viewfinder-indicators" - "viewpoint" - "vignetting" - "vintage" - "visualization" - "vivitar" - "voigtlander" - "volcanoes" - "warmth" - "water" - "watermark" - "wavelength" - "wearable-camera" - "weather" - "weather-sealing" - "web" - "webcam" - "wedding" - "weight" - "white-balance" - "wide-angle" - "wide-angle-converter" - "wide-aperture" - "wide-gamut" - "wifi" - "wifi-sd" - "wildlife" - "wind" - "windows" - "windows-7" - "windows-phone" - "wireless" - "wireless-flash" - "wireless-triggers" - "workflow" - "workshops" - "write-speed" - "xmp" - "yashica" - "ycbcr" - "yongnuo" - "zeiss" - "zenit" - "zone-plate" - "zone-system" - "zoom" - "zoom-creep" - "zoom-lock") diff --git a/data/tags/physics.el b/data/tags/physics.el deleted file mode 100644 index 1750994..0000000 --- a/data/tags/physics.el +++ /dev/null @@ -1,834 +0,0 @@ -("absolute-units" - "absorption" - "acceleration" - "accelerator-physics" - "acoustics" - "action" - "adhesion" - "adiabatic" - "ads-cft" - "aerodynamics" - "aether" - "affine-lie-algebra" - "air" - "aircraft" - "algebraic-geometry" - "algorithm" - "amplituhedron" - "analyticity" - "anderson-localization" - "angular-momentum" - "angular-velocity" - "anharmonic-oscillators" - "anomalies" - "antennas" - "anthropic-principle" - "anti-de-sitter-spacetime" - "anticommutator" - "antimatter" - "antimatter-storage" - "anyons" - "applied-physics" - "approximations" - "arrow-of-time" - "asteroids" - "astrometrics" - "astronomy" - "astrophotography" - "astrophysics" - "asymptotics" - "atmosphere" - "atmospheric-science" - "atomic-excitation" - "atomic-physics" - "atoms" - "axial-gauge" - "ballistics" - "baryogenesis" - "baryons" - "batteries" - "bells-inequality" - "bernoulli-equation" - "berry-pancharatnam-phase" - "beyond-the-standard-model" - "big-bang" - "big-list" - "binary" - "binding-energy" - "binoculars" - "biology" - "biophysics" - "black-hole-firewall" - "black-holes" - "blackbody" - "bloch-oscillation" - "bohr-atom" - "born-rule" - "bose-einstein-condensate" - "bosonization" - "bosons" - "boundary-conditions" - "boundary-terms" - "brachistochrone-problem" - "braggs-law" - "branes" - "breit-wigner-distribution" - "brown-dwarfs" - "brownian-motion" - "brst" - "bubble" - "building-physics" - "buoyancy" - "calabi-yau" - "calculus" - "camera" - "canonical-conjugation" - "capacitance" - "capillary-action" - "carnot-cycle" - "carrier-particles" - "casimir-effect" - "categorical-physics" - "category-theory" - "causality" - "cavity-qed" - "celestial-mechanics" - "cellular-automaton" - "central-charge" - "centrifugal-force" - "centripetal-force" - "chaos-theory" - "charge" - "charge-conjugation" - "chemical-compounds" - "chemical-potential" - "chemostat" - "cherenkov-radiation" - "chern-simons-theory" - "chirality" - "classical-electrodynamics" - "classical-field-theory" - "classical-mechanics" - "classical-physics" - "clifford-algebra" - "climate-control" - "climate-science" - "clock" - "cmb" - "cocellular-automaton" - "coherence" - "cold-atoms" - "cold-fusion" - "collision" - "color-charge" - "combustion" - "comets" - "commutator" - "compactification" - "complex-numbers" - "complex-systems" - "computation" - "computational-physics" - "computer" - "condensation" - "condensed-matter" - "conductors" - "confinement" - "conformal-field-theory" - "conservation-laws" - "constrained-dynamics" - "continuum-mechanics" - "convection" - "conventions" - "cooling" - "coordinate-systems" - "coriolis-effect" - "coriolis-force" - "correlation-function" - "cosmic-censorship" - "cosmic-rays" - "cosmic-string" - "cosmological-constant" - "cosmological-inflation" - "cosmology" - "couette-flow" - "coulombs-law" - "coupled-oscillators" - "covariance" - "cp-violation" - "cpt-symmetry" - "cpt-violation" - "critical-phenomena" - "cryogenics" - "crystals" - "current" - "curvature" - "dark-energy" - "dark-matter" - "data" - "data-analysis" - "de-sitter-spacetime" - "debye-length" - "decoherence" - "definition" - "deformation-quantization" - "degrees-of-freedom" - "density" - "density-functional-theory" - "density-of-states" - "density-operator" - "design" - "determinism" - "diamond" - "dielectric" - "diffeomorphism-invariance" - "differential-equations" - "differential-geometry" - "differentiation" - "diffraction" - "diffusion" - "dimensional-analysis" - "dimensional-reg" - "dimensions" - "dipole" - "dipole-moment" - "dirac-equation" - "dirac-matrices" - "dirac-monopole" - "dirac-string" - "discrete" - "disorder" - "dispersion" - "displacement" - "dissipation" - "distance" - "distributions" - "doppler-effect" - "double-slit-experiment" - "drag" - "duality" - "duration" - "earth" - "earthquake" - "eclipse" - "econo-physics" - "education" - "effective-action" - "effective-field-theory" - "efficient-energy-use" - "eigenvalue" - "elasticity" - "electric-circuits" - "electric-fields" - "electrical-engineering" - "electricity" - "electrochemistry" - "electrodynamics" - "electromagnetic-field" - "electromagnetic-radiation" - "electromagnetism" - "electronic-band-theory" - "electronics" - "electrons" - "electrostatics" - "electroweak" - "elementary-particles" - "elements" - "emergent-properties" - "energy" - "energy-conservation" - "energy-storage" - "entanglement" - "entanglement-entropy" - "enthalpy" - "entropy" - "epistemology" - "epr-experiment" - "equation-of-state" - "equations-of-motion" - "equilibrium" - "equivalence-principle" - "error-analysis" - "escape-velocity" - "estimation" - "evaporation" - "event-horizon" - "everyday-life" - "exchange-interaction" - "exoplanets" - "experimental-evidence" - "experimental-physics" - "experimental-technique" - "experimental-technology" - "explosions" - "eye" - "fan" - "faq" - "faster-than-light" - "fermi-liquids" - "fermions" - "fermis-golden-rule" - "feynman-diagram" - "fiber-optics" - "field-theory" - "fine-tuning" - "flow" - "fluctuation-dissipation" - "fluid-dynamics" - "fock-space" - "food" - "forces" - "foundations" - "fourier-transform" - "fractals" - "fracture" - "frame-dragging" - "free-body-diagram" - "free-fall" - "freezing" - "frequency" - "friction" - "frw-universe" - "functional-derivatives" - "functional-determinants" - "fusion" - "galaxies" - "galaxy-rotation-curve" - "galilean-relativity" - "gamma-rays" - "gauge" - "gauge-invariance" - "gauge-symmetry" - "gauge-theory" - "gauss-bonnet" - "gauss-law" - "general-physics" - "general-relativity" - "geodesics" - "geomagnetism" - "geometric-optics" - "geometric-topology" - "geometry" - "geophysics" - "ghosts" - "gluons" - "gps" - "grand-unification" - "graph-theory" - "graphene" - "grassmann-numbers" - "gravitational-collapse" - "gravitational-lensing" - "gravitational-redshift" - "gravitational-waves" - "gravity" - "greens-functions" - "ground-state" - "group-representations" - "group-theory" - "gyroscopes" - "hadron-dynamics" - "hadronization" - "hamiltonian" - "hamiltonian-formalism" - "harmonic-oscillator" - "harmonics" - "hawking-radiation" - "heat" - "heat-engine" - "heavy-ion" - "helicity" - "heterotic-string" - "higgs" - "higgs-boson" - "higgs-field" - "higgs-mechanism" - "high-energy-physics" - "higher-spin" - "hilbert-space" - "history" - "hologram" - "holographic-principle" - "home-experiment" - "homework" - "homework-and-exercises" - "hopf-algebra" - "humidity" - "hydrogen" - "hydrostatics" - "ice" - "ideal-gas" - "identical-particles" - "image-processing" - "imaging" - "impedance-spectroscopy" - "inductance" - "induction" - "inert-gases" - "inertia" - "inertial-frames" - "inflaton" - "information" - "infrared-radiation" - "instantons" - "instrument" - "insulators" - "integrable-systems" - "integrals-of-motion" - "integration" - "interactions" - "interference" - "interferometry" - "internal-energy" - "interstellar-matter" - "interstellar-travel" - "invariants" - "ion-capture" - "ion-traps" - "ionization-energy" - "ions" - "irreversible" - "isentropic" - "ising-model" - "isospin-symmetry" - "isotope" - "isotropy" - "jerk" - "jupiter" - "kaluza-klein" - "kerr-metric" - "kerr-newman-metric" - "kinematics" - "kinetic-theory" - "kinetics" - "klein-gordon-equation" - "laboratory-safety" - "lagrangian-formalism" - "lamb-shift" - "lamb-waves" - "large-hadron-collider" - "large-n" - "laser" - "laser-interaction" - "lattice-model" - "laws-of-physics" - "length" - "length-contraction" - "lenses" - "leptogenesis" - "leptons" - "levitation" - "lie-algebra" - "lienard-wiechert" - "lift" - "light" - "light-emitting-diodes" - "light-pollution" - "lightning" - "linear-algebra" - "linear-systems" - "linearized-theory" - "liquid-crystal" - "locality" - "loop-quantum-gravity" - "lorentz-symmetry" - "luminosity" - "machos" - "machs-principle" - "magnetic-fields" - "magnetic-moment" - "magnetic-monopoles" - "magnetohydrodynamics" - "magnetostatics" - "magnets" - "majorana-fermions" - "many-body" - "mass" - "mass-energy" - "mass-spectrometry" - "material" - "material-science" - "mathematical-physics" - "mathematics" - "matrix-elements" - "matrix-model" - "matter" - "maxwell-equations" - "maxwell-relations" - "mean-free-path" - "measurement" - "measurement-problem" - "medical-physics" - "mesons" - "metallicity" - "metals" - "meteorites" - "meteoroids" - "meteorology" - "meteors" - "metric-space" - "metric-tensor" - "metrology" - "microscopy" - "microwaves" - "milky-way" - "minkowski-space" - "mnemonic" - "models" - "moduli" - "molecular-dynamics" - "molecules" - "moment" - "moment-of-inertia" - "momentum" - "moon" - "motion" - "mssm" - "multipole-expansion" - "multiverse" - "nanoscience" - "nasa" - "nature" - "navier-stokes" - "nebulae" - "network" - "neutrinos" - "neutron-stars" - "neutrons" - "newtonian-gravity" - "newtonian-mechanics" - "noethers-theorem" - "noise" - "nomenclature" - "non-commutative-geometry" - "non-commutative-theory" - "non-equilibrium" - "non-gaussianity" - "non-linear-dynamics" - "non-linear-optics" - "non-linear-schroedinger" - "non-linear-systems" - "non-locality" - "non-perturbative" - "normal-modes" - "normalization" - "notation" - "nuclear-engineering" - "nuclear-physics" - "nuclear-structure" - "nucleation" - "nuclei" - "numerical-method" - "numerics" - "observable-universe" - "observables" - "observational-astronomy" - "observers" - "oceanography" - "operators" - "optical-materials" - "optics" - "optimization" - "orbital-motion" - "orbitals" - "order-of-magnitude" - "orthogonality" - "oscillators" - "osmosis" - "page-scrambling" - "pair-production" - "parallax" - "parity" - "particle-accelerators" - "particle-detectors" - "particle-physics" - "particles" - "partition-function" - "path-integral" - "pauli-exclusion-principle" - "perception" - "percolation" - "perpetual-motion" - "perturbation-theory" - "phase-diagram" - "phase-space" - "phase-transition" - "phase-velocity" - "phonons" - "photoelectric-effect" - "photometry" - "photon-emission" - "photons" - "photovoltaics" - "physical-chemistry" - "physical-constants" - "physics-careers" - "piezoelectric" - "pions" - "plane-wave" - "planetology" - "planets" - "plasma-physics" - "plasmon" - "poincare-recurrence" - "poincare-symmetry" - "point-particle" - "poisson-brackets" - "polarization" - "popular-science" - "porous-media" - "positronium" - "potential" - "potential-energy" - "potential-flow" - "power" - "poynting-vector" - "precession" - "pressure" - "probability" - "projectile" - "propagator" - "propulsion" - "proton" - "proton-decay" - "pulsars" - "qft-in-curved-spacetime" - "quantization" - "quantum-chemistry" - "quantum-chromodynamics" - "quantum-computer" - "quantum-electrodynamics" - "quantum-field-theory" - "quantum-gravity" - "quantum-hall-effect" - "quantum-information" - "quantum-interpretations" - "quantum-mechanics" - "quantum-optics" - "quantum-statistics" - "quantum-theory" - "quark-gluon-plasma" - "quarks" - "quasiparticles" - "rabi-model" - "radar" - "radiation" - "radio" - "radio-frequency" - "radioactivity" - "radiometry" - "raman-spectroscopy" - "randomness" - "reference-frames" - "reflection" - "refraction" - "regularization" - "reissner-nordstrom-metric" - "relative-motion" - "relativistic-jets" - "relativity" - "renewable-energy" - "renormalization" - "representation-theory" - "research-level" - "resistance" - "resonance" - "resource-recommendations" - "reversibility" - "rigid-body-dynamics" - "rigid-solid" - "rocket-science" - "rotation" - "rotational-dynamics" - "rotational-kinematics" - "runge-lenz-vector" - "s-matrix-theory" - "satellites" - "scale-invariance" - "scales" - "scaling" - "scattering" - "scattering-cross-section" - "schroedinger-equation" - "schroedingers-cat" - "second-quantization" - "seiberg-witten-theory" - "semiclassical" - "semiclassical-gravity" - "semiconductor-physics" - "sensor" - "shadow" - "shape-dynamics" - "shockwave" - "short-circuits" - "si-units" - "sigma-models" - "signal-processing" - "simulation" - "sine-gordon" - "singularities" - "soft-matter" - "soft-question" - "software" - "solar-sails" - "solar-system" - "solar-system-exploration" - "solar-wind" - "solenoid" - "solid-mechanics" - "solid-state-physics" - "solitons" - "solstice" - "space" - "space-expansion" - "space-mission" - "space-travel" - "spacetime" - "special-functions" - "special-relativity" - "specific-reference" - "spectroscopy" - "speed" - "speed-of-light" - "spherical-harmonics" - "spin" - "spin-chains" - "spin-glass" - "spin-model" - "spin-statistics" - "spinors" - "sports" - "spring" - "stability" - "standard-model" - "stars" - "states-of-matter" - "statics" - "statistical-mechanics" - "statistics" - "steady-state" - "stellar-evolution" - "stellar-physics" - "stellar-population" - "stellar-wind" - "stochastic-models" - "stochastic-processes" - "stress-energy-tensor" - "stress-strain" - "string" - "string-field-theory" - "string-theory" - "string-theory-landscape" - "strong-correlated" - "strong-force" - "structural-beam" - "structure-formation" - "subatomic" - "sun" - "superalgebra" - "superconductivity" - "superconformality" - "superfluidity" - "supergravity" - "supernova" - "superposition" - "superspace-formalism" - "supersymmetry" - "surface-tension" - "suvat-equations" - "symmetry" - "symmetry-breaking" - "synchrotron-radiation" - "tachyon" - "technology" - "teleportation" - "telescopes" - "temperature" - "tensor-calculus" - "tensors" - "terminology" - "tevatron" - "textbook-erratum" - "theory-of-everything" - "thermal-conductivity" - "thermal-field-theory" - "thermal-radiation" - "thermodynamics" - "thermoelectricity" - "thought-experiment" - "three-body-problem" - "tidal-effect" - "tight-binding" - "time" - "time-dilation" - "time-evolution" - "time-reversal" - "time-travel" - "topological-entropy" - "topological-field-theory" - "topological-insulators" - "topological-order" - "topological-phase" - "topology" - "torque" - "tqft" - "trace" - "transit" - "tsunami" - "tunneling" - "turbulence" - "twin-paradox" - "twistor" - "type-i-string" - "type-ii-string" - "uncertainty-principle" - "unified-theories" - "unit-conversion" - "unitarity" - "units" - "universe" - "unruh-effect" - "unruh-radiation" - "vacuum" - "variational-calculus" - "variational-principle" - "vector-fields" - "vectors" - "velocity" - "vibration" - "virial-theorem" - "virtual-particles" - "virtual-photons" - "viscosity" - "visible-light" - "vision" - "visualization" - "voltage" - "volume" - "vortex" - "ward-identity" - "warp-drives" - "water" - "wave-particle-duality" - "wavefunction" - "wavefunction-collapse" - "waveguide" - "wavelength" - "waves" - "weak-force" - "weak-interaction" - "weather" - "weight" - "white-holes" - "wick-rotation" - "wick-theorem" - "wightman-fields" - "wigner-transform" - "wilson-loop" - "wimps" - "work" - "wormholes" - "x-ray-crystallography" - "x-rays" - "yang-mills" - "zener-diodes") diff --git a/data/tags/pm.el b/data/tags/pm.el deleted file mode 100644 index 416e8c5..0000000 --- a/data/tags/pm.el +++ /dev/null @@ -1,217 +0,0 @@ -("6-sigma" - "agile" - "analysis" - "artifacts" - "authority" - "backlog" - "books" - "budget" - "bugs" - "burndown-chart" - "business-analyst" - "business-case" - "business-improvement" - "capm" - "career" - "certification" - "change-management" - "clients" - "cmmi" - "code-of-conduct" - "communication" - "communication-management" - "conflicts" - "constraints" - "contracts" - "coordination" - "cost-management" - "critical-chain" - "critical-path" - "cross-functional" - "culture" - "customer" - "customer-satisfaction" - "customer-service" - "deadline" - "defect-fixing" - "definition" - "definition-of-done" - "deliverables" - "dependencies" - "design" - "development-process" - "discipline" - "distributed-team" - "documentation" - "dsdm" - "education" - "elaboration" - "email" - "engineering-practices" - "enterprise" - "epics" - "estimating" - "ethics" - "evaluation" - "evm" - "external-project-members" - "extreme-programming" - "failure" - "feedback" - "fibonacci-sequence" - "fixed-price" - "gamification" - "gantt" - "goals" - "human-resources" - "infrastructure" - "initiation" - "innovation" - "integration-management" - "internships" - "interview" - "jira" - "job-allocation" - "kanban" - "knowledge-management" - "kpi" - "lead-time" - "leadership" - "lean" - "learning" - "maintenance" - "management" - "matrixed-resources" - "measurement" - "meetings" - "methodology" - "metrics" - "milestones" - "motivation" - "ms-project" - "ms-project-2010" - "multi-projects" - "multi-team" - "negotiation" - "open-source" - "organizational-structure" - "outsourcing" - "pay" - "pdu" - "percentages" - "performance" - "personal-skills" - "planning" - "planning-poker" - "pm-software" - "pmbok" - "pmi" - "pmi-framework" - "pmo" - "pmp" - "politics" - "portfolio-management" - "post-mortem" - "pricing" - "prince2" - "prioritization" - "process" - "process-controls" - "process-engineering" - "process-improvement" - "process-scaling" - "procurement" - "product" - "product-management" - "product-manager" - "product-owner" - "program-management" - "progress-monitor" - "progress-report" - "project-charter" - "project-leader" - "project-management-style" - "project-proposal" - "project-server" - "project-sponsor" - "project-team" - "qualifications" - "quality" - "quality-management" - "redmine" - "relationships" - "release-plan" - "remote-teams" - "reporting" - "requirements" - "resource-planning" - "resources" - "responsibility" - "retrospective" - "return-on-investment" - "reviews" - "reward" - "risk" - "risk-management" - "roadmaps" - "roles" - "roll-out" - "rup" - "safe" - "sales" - "schedule" - "schedule-risk" - "scheduling" - "scope" - "scope-management" - "scrum" - "scrum-of-scrums" - "scrummaster" - "sdlc" - "self-management" - "skills" - "small-projects" - "software" - "software-development" - "specification" - "sprint" - "sprint-backlog" - "stakeholders" - "stories" - "story-points" - "strategy" - "subcontractor" - "suppliers" - "task-management" - "tasks" - "tdd" - "team" - "team-building" - "team-capacity" - "team-management" - "team-size" - "technical-leader" - "templates" - "terminology" - "testing" - "tfs" - "theory" - "time-management" - "timekeeping" - "timeline" - "tools" - "trac" - "tracking" - "training" - "transition" - "untagged" - "user-experience-design" - "user-stories" - "vision" - "visualization" - "waterfall" - "work-breakdown-structure" - "work-environment" - "work-in-progress" - "workload" - "xp") diff --git a/data/tags/poker.el b/data/tags/poker.el deleted file mode 100644 index 1d9fb8b..0000000 --- a/data/tags/poker.el +++ /dev/null @@ -1,103 +0,0 @@ -("1-2nl" - "5-card-draw" - "all-in" - "asl" - "balancing" - "bankroll" - "bankroll-management" - "betting-position" - "betting-strategy" - "blinds" - "books" - "bubble" - "button" - "card-rooms" - "cash-game" - "casino" - "dead-mans-hand" - "dealer" - "dealing" - "drawing" - "equity" - "etiquette" - "ev" - "final-table" - "fold-equity" - "game-mechanics" - "gaming-theory" - "gto" - "hand" - "hand-history" - "heads-up" - "holdem-manager" - "home-game" - "hud" - "icm" - "implied-odds" - "kill" - "learning" - "let-there-be-range" - "live" - "movie" - "mtt" - "muck" - "nl100" - "nl200" - "nl400" - "nl600" - "nlhe" - "no-limit" - "nuts" - "odds" - "omaha" - "omaha-hi-lo" - "online" - "open-face-chinese" - "pineapple" - "pocket-pair" - "poker-history" - "poker-rooms" - "poker-strategy" - "poker-theory" - "poker-tools" - "pokerstove" - "pokertracker" - "post-oak-bluff" - "pot-limit" - "pot-odds" - "pre-flop" - "prize-pool" - "probability" - "psychology" - "raise" - "rake" - "range" - "resources" - "roi" - "rules" - "rush-poker" - "sd" - "session-accounting" - "shoot-the-moon" - "short-stack" - "showdown" - "side-pots" - "sit-and-go" - "skill" - "soft-question" - "software" - "standard-deviation" - "starting-hand" - "statistics" - "straddle" - "strategy" - "table-image" - "tax" - "tells" - "terminology" - "texas-hold-em" - "tournament" - "trash-talk" - "untagged" - "wild-card" - "wsop") diff --git a/data/tags/politics.el b/data/tags/politics.el deleted file mode 100644 index 9c624ad..0000000 --- a/data/tags/politics.el +++ /dev/null @@ -1,287 +0,0 @@ -("abortion" - "administrative-division" - "advertising" - "africa" - "age-of-majority" - "alternative-systems" - "amendment" - "anarchism" - "arab-spring" - "armed-conflict" - "asia" - "asylum" - "australia" - "ballot" - "barack-obama" - "basic-income" - "bill-of-rights" - "borders" - "britain" - "budget" - "campaign-finance" - "campaigning" - "canada" - "capitalism" - "central-bank" - "checks-and-balances" - "china" - "citizenship" - "civil-rights" - "civil-war" - "cold-war" - "commonwealth" - "communism" - "compulsory-voting" - "congress" - "conservatism" - "constitution" - "constitutional-monarchy" - "copyright" - "corporations" - "corruption" - "cosmopolitanism" - "crimea" - "cuba" - "currency" - "data-sources" - "debt" - "debt-ceiling" - "definitions" - "demarchy" - "democracy" - "detention" - "devolution" - "direct-action" - "direct-democracy" - "discrimination" - "donations" - "drugs" - "ebola" - "ecology" - "economic-policy" - "economics" - "economy" - "editorial-policy" - "education" - "egalitarianism" - "egypt" - "election" - "election-requirements" - "electoral" - "electoral-college" - "electorate" - "electronic-voting" - "employment" - "environment" - "euro" - "europe" - "european-union" - "executive-branch" - "factor-analysis" - "faithless-elector" - "fascism" - "fec" - "federal-reserve" - "federalism" - "feminism" - "filibuster" - "financial-crisis" - "financing" - "finland" - "fluoridation" - "forecasting" - "foreign-policy" - "form-of-government" - "founding-fathers" - "france" - "gas" - "gaza" - "gender" - "geopolitics" - "germany" - "gerrymandering" - "government" - "grassroots" - "guns" - "head-of-state" - "healthcare" - "historiography" - "history" - "homosexuality" - "human-rights" - "hunting" - "identity-politics" - "ideology" - "igo" - "illegal-immigration" - "immigration" - "income" - "income-inequality" - "independence" - "india" - "indicators" - "inequality" - "infrastructure" - "international" - "international-law" - "international-relations" - "internet" - "iran" - "iraq" - "ireland" - "islamic-state" - "israel" - "italy" - "japan" - "judicial-branch" - "judiciary" - "justice" - "labor" - "land" - "languages" - "law" - "legislation" - "legislative-process" - "lgbt" - "liberalism" - "libertarianism" - "lobbying" - "lobbyist" - "local-government" - "loss-of-supply" - "marriage" - "marxism" - "measurement" - "media" - "meritocracy" - "mexico" - "middle-east" - "military" - "military-law" - "monarchy" - "money" - "money-supply" - "nationalism" - "nazism" - "nepal" - "netherlands" - "new-zealand" - "non-aggression" - "north-korea" - "nuclear-energy" - "nuclear-weapons" - "ochlocracy" - "oecd" - "one-person-one-vote" - "pacifism" - "pakistan" - "palestine" - "pardon" - "parliament" - "parliamentary" - "parties" - "partisan-affiliation" - "petition" - "philosophy" - "planning" - "police" - "policies" - "policy" - "political-career" - "political-spectrum" - "political-system" - "political-theory" - "political-transitions" - "polling" - "popularity" - "poverty" - "power" - "presidency-term" - "president" - "presidential" - "privacy" - "privatization" - "procedure" - "proliferation" - "property" - "propoganda" - "protests" - "railroad" - "range-voting" - "redistricting" - "referendum" - "regulation" - "religion" - "republic" - "republican-party" - "rule-of-law" - "rules-of-war" - "russian-federation" - "rwanda" - "same-sex-marriage" - "saudi-arabia" - "science" - "scotland" - "secession" - "senate" - "senate-rules" - "separation-of-powers" - "sexual-assault" - "sharia" - "shutdown" - "slavery" - "social-politics" - "social-security" - "social-welfare" - "socialism" - "society" - "sortition" - "south-korea" - "sovereignty" - "soviet" - "specific-elections" - "spending" - "state-legislatures" - "statehood" - "statistics" - "subsidies" - "supreme-court" - "sustainable-development" - "sweden" - "switzerland" - "syria" - "syria-civil-war" - "tax" - "taxation" - "taxes" - "terminology" - "territory" - "terrorism" - "theoretical" - "theory" - "third-party" - "tony-abbott" - "trade" - "transparency" - "treaty" - "turkey" - "uk" - "ukraine" - "un" - "united-nations" - "united-states" - "untagged" - "us-congress" - "us-state-laws" - "venezuela" - "veto" - "vladmir-putin" - "voting" - "voting-districts" - "voting-preferences" - "voting-systems" - "war" - "weapons" - "welfare" - "whistleblowers" - "wikipedia") diff --git a/data/tags/productivity.el b/data/tags/productivity.el deleted file mode 100644 index eaf7af6..0000000 --- a/data/tags/productivity.el +++ /dev/null @@ -1,180 +0,0 @@ -("android" - "anki" - "attention" - "behavior" - "book" - "bookmark" - "brain" - "brain-training" - "brainstorming" - "break" - "caffeine" - "calendar" - "coffee" - "collaboration" - "communication" - "competition" - "computers" - "concentration" - "consistency" - "contexts" - "counseling" - "creativity" - "deadlines" - "decisionmaking" - "decluttering" - "detail" - "discipline" - "distraction" - "document-management" - "effectiveness" - "efficiency" - "electronic-devices" - "email" - "emotions" - "ergonomics" - "etiquette" - "evernote" - "exam" - "exercise" - "files" - "filtering" - "first-things-first" - "flow" - "focus" - "food" - "freemind" - "gamification" - "gaming" - "gmail" - "goals" - "google-keep" - "group-productivity" - "gtd" - "habit" - "happiness" - "health" - "home" - "hours" - "inbox" - "inbox-zero" - "information-management" - "information-overload" - "intelligence" - "interruptions" - "introvert" - "ipad" - "journal" - "keyboard-layout" - "knowledge-management" - "labels" - "language-learning" - "learning" - "life" - "list" - "listen" - "lucid-dreaming" - "mac" - "mail" - "management" - "meditation" - "meetings" - "memory" - "mental-fatigue" - "method" - "methodology" - "metrics" - "mind-mapping" - "mnemonics" - "mnemosyne" - "money" - "monitors" - "mood" - "morning" - "motivation" - "multitasking" - "new-job" - "next-action" - "note-taking" - "notes" - "nutrition" - "office-setup" - "onenote" - "optimization" - "organization" - "outliners" - "outlook" - "overload" - "overwhelmed" - "paper" - "passion" - "penmanship" - "performance" - "persistance" - "personal-kanban" - "personality" - "physical-condition" - "planner" - "planning" - "podcast" - "pomodoro-technique" - "positive-psychology" - "printing" - "prioritization" - "priority" - "procrastination" - "productivity" - "professional-life" - "projects" - "psychology" - "quantified-self" - "quick-learning" - "reading" - "redundancy" - "relationships" - "relaxation" - "reminders" - "research" - "routine" - "rtm" - "scan" - "scheduling" - "self-learning" - "self-management" - "sharing" - "shorthand" - "skill" - "sleep" - "sleep-transition" - "social-interaction" - "soft-skills" - "software" - "spaced-repetition" - "speed" - "standard" - "stress" - "study" - "syncing" - "tagging" - "talking" - "task-break-down" - "task-dependencies" - "tasks" - "teaching" - "team" - "techniques" - "tickler-file" - "time-management" - "time-tracking" - "todo" - "tools" - "tracking" - "typing" - "untagged" - "windows" - "work" - "workflow" - "workspace" - "writing" - "writing-implements" - "ztd") diff --git a/data/tags/programmers.el b/data/tags/programmers.el deleted file mode 100644 index 5f8e184..0000000 --- a/data/tags/programmers.el +++ /dev/null @@ -1,1761 +0,0 @@ -(".net" - "32-bit" - "3d" - "3rd-party" - "64-bit" - "abap" - "abstract-class" - "abstraction" - "acceptance-testing" - "access" - "access-control" - "access-modifiers" - "accessibility" - "actionscript" - "active-directory" - "activerecord" - "activity" - "actor-model" - "ada" - "adapter" - "adfsv2" - "admob" - "ado.net" - "adobe" - "advancements" - "advantages" - "advertisement" - "advocacy" - "aesthetics" - "aggregate" - "agile" - "agpl" - "ajax" - "akka" - "algebraic-data-type" - "algorithm-analysis" - "algorithms" - "allocation" - "alternative" - "amazon-ec2" - "ambiguity" - "amd" - "analogy" - "analysis" - "analytics" - "android" - "android-development" - "android-market" - "angularjs" - "animation" - "annotations" - "annoyances" - "annual-review" - "ansi" - "ant" - "anti-patterns" - "antivirus" - "anxiety" - "aot" - "apache" - "apache-kafka" - "apache-license" - "apache2" - "api" - "api-design" - "app" - "apple" - "application-design" - "applications" - "appraisal" - "apprentice-developer" - "approval" - "appstore" - "aptana" - "architect" - "architectural-patterns" - "architecture" - "arithmetic" - "arm" - "array" - "articles" - "artificial-intelligence" - "ascii" - "asm" - "asn.1" - "asp-classic" - "asp.net" - "asp.net-mvc" - "asp.net-mvc-3" - "asp.net-mvc-4" - "asp.net-mvc-web-api" - "aspect-oriented" - "assembler" - "assembly" - "assertions" - "assessment" - "asset-management" - "async" - "asynchronous-programming" - "atom" - "attitude" - "attributes" - "attribution" - "audit" - "authentication" - "authorisation" - "authorization" - "auto-completion" - "automatic-programming" - "automatic-update" - "automation" - "aws" - "awt" - "azure" - "backlog" - "backups" - "backward-compatibility" - "bad-code" - "bad-programmer" - "bamboo" - "barcode" - "bash" - "basic" - "basic-skills" - "bbcode" - "bcl" - "bdd" - "behavior" - "benchmarking" - "benefits" - "beta" - "big-data" - "big-o" - "big-theta" - "billing" - "binary" - "binary-tree" - "binding" - "bit" - "bitbucket" - "bitwise-operators" - "biztalk" - "blackberry" - "blob" - "blogs" - "books" - "boolean" - "boost" - "bootstrap" - "boxing" - "bpm" - "brainfuck" - "brainstorming" - "branching" - "branding" - "brookslaw" - "brownfield" - "browser" - "browser-compatibility" - "bsd" - "bsd-license" - "budget" - "buffers" - "bug" - "bug-report" - "build-system" - "builds" - "bundling" - "burndown" - "burnout" - "business" - "business-analysis" - "business-card" - "business-intelligence" - "business-logic" - "business-process" - "business-rules" - "buy-vs-build" - "buzzwords" - "byte" - "bytecode" - "c" - "c#" - "c++" - "c++11" - "c11" - "c99" - "cache" - "caching" - "cakephp" - "calculator" - "calculus" - "calling-conventions" - "camelcase" - "canvas" - "captcha" - "career-development" - "career-transition" - "case-insensitivity" - "case-studies" - "case-tools" - "cassandra" - "catch-phrases" - "category-theory" - "cdn" - "certificate" - "certification" - "ceylon" - "cgi" - "challenge" - "change" - "changes" - "character-encoding" - "charity" - "chart" - "chat" - "cheat-sheet" - "checkin" - "chess" - "children" - "chrome" - "circular-dependency" - "clang" - "class" - "class-design" - "class-diagram" - "clean-code" - "cleaning" - "clearcase" - "cli" - "clickonce" - "client" - "client-relations" - "client-server" - "client-side" - "clojure" - "closed-source" - "closures" - "cloud" - "cloud-computing" - "clr" - "cluster" - "cmake" - "cmmi" - "cms" - "co-workers" - "cobol" - "cocoa" - "cocomo" - "code-analysis" - "code-complete" - "code-contracts" - "code-formatting" - "code-generation" - "code-kata" - "code-layout" - "code-metrics" - "code-organization" - "code-ownership" - "code-quality" - "code-reuse" - "code-reviews" - "code-sample" - "code-security" - "code-smell" - "code-snippets" - "code-style" - "codefirst" - "codeigniter" - "codeplex" - "coding" - "coding-standards" - "coding-style" - "coffeescript" - "coffescript" - "cohesion" - "coldfusion" - "collaboration" - "colleagues" - "collections" - "college" - "color" - "com" - "combinatorics" - "comet" - "command-line" - "command-message" - "commandline-build-tool" - "comments" - "commercial" - "common-lisp" - "common-lisp-object-system" - "communication" - "community" - "company" - "comparison" - "compatibility" - "compensation" - "competence" - "competition" - "compilation" - "compiler" - "compilers" - "compiling" - "complexity" - "component" - "composition" - "compression" - "computation-expressions" - "computer" - "computer-architecture" - "computer-science" - "computer-vision" - "concentration" - "concepts" - "concurrency" - "conditions" - "conferences" - "configuration" - "configuration-management" - "considered-harmful" - "const" - "construction" - "constructors" - "constructs" - "content-management" - "contests" - "continuation" - "continuous-delivery" - "continuous-integration" - "contract" - "contract-law" - "contribution" - "control-structures" - "conventions" - "cookies" - "copy-paste-programming" - "copy-protection" - "copybook" - "copyright" - "corporate" - "corporate-culture" - "corporate-procedures" - "cost-estimation" - "couchdb" - "count" - "coupling" - "courses" - "cowboy-coding" - "cpu" - "cqrs" - "crawlers" - "creative-commons" - "creativity" - "credit-cards" - "credits" - "criticism" - "crm" - "cron" - "cross-browser" - "cross-language" - "cross-platform" - "crud" - "cryptography" - "crystal-reports" - "csda" - "csdp" - "css" - "css3" - "csv" - "cucumber" - "culture" - "currency" - "currying" - "custom-control" - "customer-relations" - "cvcs" - "cvs" - "cyclomatic-complexity" - "d" - "dao" - "dart" - "data" - "data-flow-diagram" - "data-integrity" - "data-mining" - "data-modeling" - "data-quality" - "data-quality-management" - "data-replication" - "data-structures" - "data-types" - "data-warehouse" - "database" - "database-design" - "database-development" - "dataflow" - "date-format" - "date-patterns" - "db2" - "dba" - "dbms" - "deadlines" - "debugging" - "decisions" - "declarations" - "declarative" - "declarative-programming" - "decompile" - "decorator" - "default-values" - "defect" - "defensive-programming" - "definition" - "degree" - "delegates" - "delegation" - "delimited-files" - "delimiter" - "delivery" - "delphi" - "demonstration" - "dependencies" - "dependency-analysis" - "dependency-injection" - "dependency-management" - "deployment" - "deprecation" - "design" - "design-by-contract" - "design-decisions" - "design-patterns" - "design-principles" - "designer" - "desktop" - "desktop-application" - "desktop-development" - "developer" - "developer-events" - "developer-tools" - "developing-skills" - "development" - "development-approach" - "development-cycle" - "development-environment" - "development-methodologies" - "development-process" - "diagramming" - "diagrams" - "dictionary" - "diff" - "difference" - "dijkstra" - "directory-structure" - "directx" - "disability" - "discrimination" - "dispatch" - "distributed-computing" - "distributed-development" - "distributed-system" - "distribution" - "division-of-labor" - "django" - "dll" - "docker" - "doctrine" - "document" - "document-databases" - "document-management" - "documentation" - "documentation-generation" - "dogfooding" - "dojo" - "dom" - "domain-driven-design" - "domain-model" - "domain-name-system" - "domain-objects" - "domain-specific-languages" - "doubles" - "downtime" - "drag-and-drop" - "drivers" - "drupal" - "dry" - "dsl" - "dto" - "duck-typing" - "dv" - "dvcs" - "dynamic" - "dynamic-data" - "dynamic-inheritance" - "dynamic-languages" - "dynamic-linking" - "dynamic-programming" - "dynamic-typing" - "e-commerce" - "eai" - "easter-eggs" - "ebook" - "eclipse" - "ecmascript" - "economics" - "ecosystem" - "editor" - "editor-navigation" - "education" - "efficiency" - "effort" - "either" - "elance" - "elasticsearch" - "emacs" - "email" - "embedded" - "embedded-systems" - "ember.js" - "employee-relations" - "employers" - "employment" - "encapsulation" - "encryption" - "end-user-programming" - "end-users" - "endianness" - "engineering" - "enterprise-architecture" - "enterprise-development" - "entertainment" - "entity" - "entity-framework" - "entrepreneurship" - "entry-point" - "enum" - "environment" - "ergonomics" - "erlang" - "erp" - "error-detection" - "error-handling" - "error-messages" - "errors" - "es6" - "escaping" - "estimation" - "ethics" - "etiquette" - "etl" - "etymology" - "eula" - "evaluation" - "event" - "event-programming" - "event-sourcing" - "eventual-consistency" - "evidence-based" - "exam" - "examples" - "excel" - "exception-handling" - "exceptions" - "exit-strategy" - "experience" - "explanation" - "explicit" - "export" - "expressive-power" - "extensibility" - "extension-method" - "extjs" - "extreme-programming" - "f#" - "facebook" - "facebook-application" - "factor" - "factory" - "factory-method" - "failure" - "favorite" - "feasibility" - "feature-creep" - "feature-requests" - "features" - "feedback" - "felix" - "fifo" - "file-extension" - "file-formats" - "file-handling" - "file-storage" - "file-structure" - "file-systems" - "files" - "filtering" - "final" - "finally" - "financial" - "finite-state-machine" - "firefox" - "firefoxos" - "firmware" - "fizzbuzz" - "flash" - "flask" - "flex" - "float" - "floating-point" - "flow" - "flowchart" - "focus" - "fonts" - "forking" - "formal-methods" - "formatting" - "forms" - "forth" - "fortran" - "forum" - "forward-compatibility" - "foss" - "fossil-scm" - "fpa" - "fragmentation" - "frameworks" - "free-software" - "free-time" - "freelancing" - "freeware" - "friends" - "front-end" - "ftp" - "function-point" - "functional-programming" - "functional-testing" - "functions" - "future" - "future-development" - "future-proof" - "game-development" - "games" - "gantt-chart" - "garbage-collection" - "gcc" - "gender" - "general-development" - "general-purpose" - "generalization" - "generic-programming" - "generics" - "genetic-algorithms" - "geometry" - "geospatial" - "gerrit" - "gettext" - "git" - "gitflow" - "github" - "gitlab" - "globals" - "gnu" - "go" - "google" - "google-app-engine" - "google-closure" - "google-guice" - "google-spreadsheets" - "goto" - "government" - "gpl" - "gpu" - "grad-school" - "gradle" - "grails" - "grammar" - "graph" - "graph-databases" - "graph-traversal" - "graphical-code" - "graphics" - "greenfield" - "greenspunning" - "grid-computing" - "groovy" - "growth" - "gtk" - "gui" - "gui-design" - "guidance" - "gwt" - "hackathon" - "hacker-culture" - "hacking" - "hacks" - "hadoop" - "half-life" - "handheld" - "hardware" - "hashing" - "haskell" - "hateoas" - "headers" - "health" - "healthcare" - "heap" - "heatmap" - "help-documentation" - "heroku" - "heuristics" - "hibernate" - "hidden-features" - "hierarchy" - "high-level" - "high-performance" - "higher-order-functions" - "hiring" - "history" - "hl7" - "hmac" - "hobby-programming" - "home" - "hooks" - "horror-stories" - "hosting" - "html" - "html5" - "http" - "http-request" - "http-response" - "https" - "hudson" - "huffman-encoding" - "human-factors" - "hungarian" - "ibm" - "ide" - "ideal-company" - "ideas" - "identity" - "identity-map" - "ideology" - "idioms" - "if-statement" - "iis" - "iis7" - "im" - "image" - "image-manipulation" - "image-processing" - "imagemagick" - "immutability" - "imperative-languages" - "imperative-programming" - "implementations" - "implicit-parallelism" - "import" - "importance" - "incentives" - "include" - "income" - "indentation" - "independent" - "independent-contractor" - "indexeddb" - "indexing" - "industry" - "industry-standard" - "inefficiency" - "information" - "information-overload" - "information-presentation" - "information-theory" - "inheritance" - "initialization" - "inline" - "innovation" - "inspiration" - "install" - "installer" - "instance" - "insurance" - "integration" - "integration-testing" - "integration-tests" - "intel" - "intellectual-property" - "intellij" - "intellisense" - "interfaces" - "international" - "internationalization" - "internet" - "internet-explorer" - "internship" - "interoperability" - "interpreters" - "interruptions" - "intersection" - "interview" - "intro-to-programming" - "introduction" - "invariants" - "inversion-of-control" - "io" - "ioc" - "ioc-containers" - "ios" - "ip" - "ipad" - "iphone" - "ipv6" - "ironpython" - "ironruby" - "iso" - "issue-tracking" - "issues" - "isv" - "it-policy" - "iterative-development" - "iterator" - "itunesconnect" - "ivy" - "jargon" - "java" - "java-ee" - "java8" - "javadocs" - "javafx" - "javascript" - "jboss" - "jdbc" - "jee" - "jenkins" - "jira" - "jit" - "job-advancement" - "job-definition" - "job-hunting" - "job-market" - "job-performance" - "job-satisfaction" - "job-searching" - "job-title" - "jobs" - "joda-time" - "joel-test" - "joomla" - "journal" - "jpa" - "jquery" - "jre" - "jruby" - "jsf" - "json" - "jsp" - "junior-programmer" - "junit" - "jvm" - "kanban" - "kernel" - "keyboard" - "keyboard-layout" - "keyboard-shortcuts" - "keys" - "keywords" - "kinect" - "knowledge" - "knowledge-base" - "knowledge-management" - "knowledge-transfer" - "knuth" - "labels" - "lambda" - "lambda-calculus" - "lamp" - "language-agnostic" - "language-choice" - "language-design" - "language-discussion" - "language-features" - "language-specifications" - "language-theory" - "languages" - "laptop" - "laravel" - "large-scale-project" - "latency" - "law" - "layers" - "lazy-initialization" - "leadership" - "lean" - "learning" - "learning-curve" - "legacy" - "legacy-code" - "legal" - "lexer" - "lgpl" - "libraries" - "licensing" - "life-cycle" - "lifestyle" - "linked-list" - "linking" - "linq" - "linux" - "linux-development" - "linux-kernel" - "lisp" - "lisp-machine" - "list" - "literate-programming" - "livescript" - "llvm" - "load-testing" - "loc" - "local-storage" - "localization" - "location-specific" - "locks" - "logging" - "logic" - "logic-programming" - "login" - "loops" - "low-level" - "lua" - "luajit" - "lucene" - "mac" - "machine-code" - "machine-learning" - "macros" - "mainframe" - "maintainability" - "maintenance" - "make" - "malicious-code" - "malloc" - "managed-code" - "management" - "managers" - "manual-testing" - "manuals" - "map" - "mariadb" - "market" - "market-share" - "marketing" - "markup" - "math" - "matlab" - "matrices" - "maven" - "mdd" - "measurement" - "media" - "meetings" - "mef" - "membership-provider" - "memcached" - "memory" - "memory-usage" - "mentor" - "mercurial" - "merging" - "message-passing" - "message-queue" - "messaging" - "meta-programming" - "metadata" - "method-chaining" - "method-overloading" - "methodology" - "methods" - "metrics" - "metro" - "mfc" - "micro-isvs" - "micro-management" - "microservices" - "microsoft" - "microsoft-access" - "microsoft-certifications" - "microsoft-office" - "middleware" - "migration" - "mind-mapping" - "minify" - "minimal-requirements" - "mistakes" - "mit-license" - "mixins" - "ml" - "mobile" - "mobile-app" - "mobile-payment" - "mobile-platforms" - "mocking" - "mockito" - "mockups" - "model" - "modeling" - "modelling" - "modern" - "modern-ui" - "modularization" - "modules" - "monad" - "mongo" - "mongodb" - "monitor" - "monkey-patch" - "mono" - "monodroid" - "mootools" - "morale" - "motivation" - "mouse" - "mpl" - "mq" - "ms-pl" - "msbuild" - "msdn" - "multi-core" - "multi-platform" - "multilingual" - "multiple-inheritance" - "multiple-monitors" - "multiprocessing" - "multitasking" - "multitenancy" - "multithreading" - "mutable" - "mvc" - "mvp" - "mvvm" - "mysql" - "myth" - "n-tier" - "namespace" - "naming" - "naming-standards" - "negotiation" - "netbeans" - "networking" - "networks" - "neural-networks" - "new-job" - "new-technology" - "nhibernate" - "ninject" - "nlp" - "node.js" - "noise" - "non-disclosure-agreement" - "non-english" - "non-profit" - "non-programmers" - "non-technical" - "non-technical-manager" - "normalization" - "nosql" - "notation" - "notepad++" - "notes" - "notify" - "np-complete" - "nuget" - "null" - "numbers" - "numeric-precision" - "numerical-equations" - "nunit" - "oauth" - "oauth2" - "obfuscation" - "object" - "object-oriented" - "object-oriented-design" - "object-pascal" - "objective-c" - "observer-pattern" - "ocaml" - "octal" - "offer" - "office" - "offline" - "offshore" - "old-software" - "online-identity" - "ontology" - "ooad" - "ooda" - "open-close" - "open-office" - "open-source" - "opencl" - "opengl" - "openid" - "operating-systems" - "operator-precedence" - "operators" - "optimization" - "option" - "oracle" - "orchestration" - "order" - "organization" - "orm" - "osgi" - "osx" - "out-parameters" - "outsourcing" - "overload" - "p2p" - "paas" - "package-managers" - "packages" - "pagination" - "pair-programming" - "paradigms" - "parallel-programming" - "parallelism" - "parameters" - "parser-combinator" - "parsing" - "part-time" - "pascal" - "passwords" - "patents" - "patterns-and-practices" - "paying" - "payment" - "pci" - "pdf" - "pen-and-paper" - "people-management" - "peopleware" - "perceptron" - "perforce" - "performance" - "performance-tools" - "perl" - "permissions" - "persistence" - "personal" - "personal-projects" - "personal-software-process" - "personal-traits" - "personality" - "personality-conflicts" - "phantomjs" - "phd" - "philosophy" - "photo-gallery" - "php" - "phpstorm" - "phpunit" - "physics" - "piracy" - "pitfalls" - "planning" - "platform-dependencies" - "platforms" - "playframework" - "plugin-architecture" - "plugins" - "poco" - "podcasts" - "pointers" - "politics" - "polling" - "polyfill" - "polyglot" - "polymorphism" - "popularity" - "portability" - "portfolio" - "porting" - "posix" - "postfix" - "postgres" - "powershell" - "practical-application" - "pragmatism" - "prediction" - "preferences" - "prefix" - "preparation" - "presentation" - "presentation-model" - "pricing" - "prince2" - "principles" - "privacy" - "problem-solving" - "problems" - "procedural" - "process" - "process-improvement" - "producer-consumer" - "product" - "product-backlog" - "product-design" - "product-development" - "product-features" - "product-management" - "product-names" - "product-owner" - "production" - "productivity" - "profession" - "professional-development" - "professional-society" - "professionalism" - "profiling" - "program" - "programming-languages" - "programming-logic" - "programming-practices" - "project" - "project-hosting" - "project-management" - "project-planning" - "project-structure" - "projects-and-solutions" - "prolog" - "promotion" - "pronunciation" - "properties" - "proprietary" - "pros-and-cons" - "protobuf" - "protocol" - "prototyping" - "pseudocode" - "public-speaking" - "publications" - "pubsub" - "pull-requests" - "pure-function" - "pure-oop" - "purescript" - "push" - "puzzles" - "pyqt4" - "python" - "python-3.x" - "python-gui" - "qa" - "qt" - "qualifications" - "quality" - "quality-attributes" - "query" - "question-answering" - "queue" - "queueing" - "quitting" - "quotations" - "r" - "racket" - "rad" - "raii" - "rake" - "random" - "rational-unified-process" - "rationale" - "ravendb" - "razor" - "rdbms" - "rdms" - "reactive" - "readability" - "reading" - "reading-code" - "real-time" - "real-world" - "rebol" - "recognition" - "recruiting" - "recursion" - "redirect" - "redis" - "redmine" - "refactor" - "refactoring" - "reference" - "reference-manual" - "referral" - "reflection" - "reflector" - "register" - "regular-expressions" - "reinventing-the-wheel" - "relational-database" - "relationships" - "release" - "release-management" - "remote" - "remote-desktop" - "rendering" - "report-generation" - "reporting" - "repository" - "reputation" - "requirements" - "requirements-management" - "research" - "resharper" - "resources" - "responsive-design" - "rest" - "resume" - "retirement" - "retrospective" - "return-type" - "revenue" - "reverse-engineering" - "review" - "revisions" - "rewrite" - "ria" - "riak" - "risk" - "risk-assesment" - "robotics" - "role" - "roles" - "routing" - "rpc" - "rsi" - "rspec" - "rss" - "ruby" - "ruby-on-rails" - "rule-of-three" - "rules-and-constraints" - "rules-engine" - "runtime" - "rust" - "sales" - "salesforce" - "saml" - "sample" - "sap" - "scala" - "scalability" - "scaling" - "scheduling" - "schema" - "scheme" - "school" - "science" - "scjp" - "scm" - "scope" - "scope-creep" - "screen" - "scripting" - "scrum" - "scrum-master" - "sdk" - "sdlc" - "search" - "search-engine" - "secure-coding" - "security" - "selenium" - "self-employment" - "self-improvement" - "self-teaching" - "semantic-versioning" - "semantic-web" - "semantics" - "senior-developer" - "seo" - "separation-of-concerns" - "sequence" - "sequence-diagram" - "serialization" - "server" - "server-client" - "server-security" - "server-side" - "service" - "service-bus" - "services" - "session" - "settings" - "sgml" - "sharding" - "sharepoint" - "shell" - "shortcuts" - "sicp" - "side-effect" - "side-projects" - "signals" - "silverlight" - "simplicity" - "simulation" - "sinatra" - "single-responsibility" - "singleton" - "sip" - "site-blocking" - "skills" - "sleep" - "smalltalk" - "smart-pointer" - "sms" - "snippets" - "soa" - "soap" - "social" - "social-engineering" - "social-networks" - "social-skills" - "sockets" - "soft-skills" - "software" - "software-as-a-service" - "software-craftsmanship" - "software-developer" - "software-distribution" - "software-education" - "software-evaluation" - "software-law" - "software-obsolescence" - "software-patches" - "software-patent" - "software-patterns" - "software-performance" - "software-schedules" - "software-updates" - "solid" - "solo-development" - "solr" - "sorting" - "source-check" - "source-code" - "sp1" - "space-technology" - "specflow" - "specialization" - "specifications" - "speed" - "spelling" - "spoken-languages" - "spreadsheet" - "spring" - "spring-mvc" - "sprint" - "sql" - "sql-azure" - "sql-domain" - "sql-injection" - "sql-server" - "sql-server-ce" - "sqlite" - "srs" - "ssa" - "ssd" - "sshfs" - "ssis" - "ssl" - "sso" - "ssrs" - "stable" - "stack" - "stack-oriented" - "stackoverflow" - "stacktrace" - "standard-library" - "standardization" - "standards" - "startup" - "state" - "static" - "static-access" - "static-analysis" - "static-keyword" - "static-linking" - "static-methods" - "static-typing" - "statistics" - "stay-updated" - "stereotypes" - "stl" - "stm" - "storage" - "stored-procedures" - "stories" - "strategy" - "stress" - "stress-testing" - "string-matching" - "strings" - "structural-programming" - "structural-typing" - "structured-programming" - "struts" - "stub" - "student" - "students" - "study" - "sublime-text" - "subtypes" - "suffix-trees" - "support" - "surrogate-keys" - "survey" - "svg" - "svn" - "swift-language" - "swing" - "switch-statement" - "symbian" - "symfony" - "synchronization" - "syntatic-sugar" - "syntax" - "syntax-highlight" - "system" - "system-architecture" - "system-reliability" - "systems" - "systems-analysis" - "systems-programming" - "tablets" - "tagging" - "tail-call" - "taocp" - "task" - "task-organization" - "tcp" - "tdd" - "teaching" - "team" - "team-building" - "team-foundation-server" - "team-leader" - "team-spirit" - "teamwork" - "technical-debt" - "technical-manuals" - "technical-support" - "technical-writing" - "technique" - "technologies" - "technology" - "technology-choice" - "telecommuting" - "template-method" - "templates" - "terminology" - "terms-of-service" - "test-automation" - "test-coverage" - "test-management" - "testers" - "testing" - "tests" - "text-editor" - "text-encoding" - "text-processing" - "theory" - "third-party-libraries" - "thought-process" - "thread" - "threading" - "thrift" - "time" - "time-estimation" - "time-management" - "time-stamp" - "time-tracking" - "tips" - "tips-and-tricks" - "tomcat" - "toolkit" - "tools" - "top-companies" - "topics" - "tortoise-svn" - "touch-typing" - "touchscreens" - "trac" - "tracking" - "trademark" - "training" - "training-courses" - "trait" - "transaction" - "transition" - "translate" - "trees" - "trends" - "trigger" - "trust" - "tsql" - "turing-completeness" - "tutorial" - "tutoring" - "twitter" - "type-casting" - "type-checking" - "type-conversion" - "type-safety" - "type-systems" - "type-testing" - "type-theory" - "typeclass" - "types" - "typescript" - "typos" - "ubuntu" - "ui" - "uml" - "uncle-bob" - "undefined-behaviour" - "unicode" - "unions" - "unit-of-work" - "unit-test-data" - "unit-testing" - "university" - "unix" - "unlearning" - "untagged" - "update" - "upgrade" - "upload" - "uri" - "url" - "usability" - "usage" - "usage-statistics" - "usb" - "use-case" - "user-control" - "user-experience" - "user-group" - "user-interaction" - "user-interface" - "user-statistics" - "user-story" - "users" - "utf-8" - "utilities" - "uuid" - "ux" - "vaadin" - "validation" - "value" - "value-object" - "variables" - "vb.net" - "vba" - "vbscript" - "verb" - "verification" - "version-control" - "versioning" - "vert.x" - "vi" - "video" - "video-lectures" - "view" - "vim" - "virtual-machine" - "virtual-machine-languages" - "virtualization" - "virus" - "visio" - "visitor-pattern" - "visual" - "visual-basic" - "visual-basic-6" - "visual-c++" - "visual-foxpro" - "visual-studio" - "visual-studio-2008" - "visual-studio-2010" - "visual-studio-2012" - "visualization" - "vulnerabilities" - "w3c" - "warning-signs" - "warnings" - "warranty" - "waterfall" - "wcf" - "weak-typing" - "web" - "web-2.0" - "web-api" - "web-applications" - "web-browser" - "web-crawler" - "web-design" - "web-development" - "web-framework" - "web-hosting" - "web-scraping" - "web-servers" - "web-services" - "web-tools" - "webforms" - "website-performance" - "websites" - "websockets" - "whiteboard" - "whitespace" - "wide-column-databases" - "wiki" - "wikipedia" - "windows" - "windows-7" - "windows-8" - "windows-phone-7" - "windows-phone-8" - "windows-registry" - "windows-runtime" - "winforms" - "winrt" - "wizard" - "word" - "wording" - "wordpress" - "work-environment" - "work-life" - "work-time" - "workaround" - "workflow-foundation" - "workflows" - "working-conditions" - "workload-estimation" - "wpf" - "writing" - "wysiwyg" - "x64" - "x86" - "xaml" - "xauth" - "xcode" - "xhtml" - "xml" - "xmlhttprequest" - "xna" - "xpath" - "xslt" - "xunit" - "yaml" - "yii" - "zend-framework" - "zone") diff --git a/data/tags/pt.stackoverflow.el b/data/tags/pt.stackoverflow.el deleted file mode 100644 index fba1403..0000000 --- a/data/tags/pt.stackoverflow.el +++ /dev/null @@ -1,1774 +0,0 @@ -("área-de-transferência" - "árvore" - "árvores-de-expressão" - "áudio" - "índice-único" - "índices" - ".m3u8" - ".net" - ".net-core" - ".net-native" - "2d" - "32-bits" - "3d" - "64-bits" - "abap" - "abntex2" - "abstração" - "abstract-syntax-tree" - "accordion" - "aceleração-3d" - "acentuação" - "acessibilidade" - "acl" - "actionbar" - "actionlistener" - "actions" - "actionscript-3" - "active-directory" - "active-record" - "activex" - "activity" - "ad" - "adapter" - "addclass" - "administração-postgresql" - "ado.net" - "adobe-air" - "adobe-edge" - "adobe-edge-web-fonts" - "adobe-flex" - "adodb" - "advanced-custom-fields" - "advogado-de-linguagem" - "advpl" - "aerogear" - "aes" - "afnetworking" - "agendamento" - "ajax" - "ajaxtoolkit" - "alarmmanager" - "alfresco" - "algoritmo" - "algoritmo-fonético" - "align" - "alinhamento" - "alocação" - "amd" - "análise-de-dados" - "análise-estática" - "análise-numérica" - "anaconda" - "analysis-services" - "ancora" - "android" - "android-activity" - "android-assets" - "android-billing" - "android-browser" - "android-button" - "android-eclipse" - "android-fragment" - "android-layout" - "android-loader" - "android-manifest" - "android-menudrawer" - "android-studio" - "angular-kendo" - "angular-providers" - "angularjs" - "angularjs-directives" - "angularjs-scope" - "animação" - "animate.css" - "annotations" - "ant" - "antivirus" - "antlr" - "apache" - "apache-solr" - "apc" - "apex" - "api" - "apk" - "aplicação-desktop" - "aplicação-web" - "apns" - "app" - "apple" - "apple-push-notification" - "apply" - "aprendizagem-de-máquina" - "arduino" - "aritmética" - "arm" - "arquitetura-computadores" - "arquitetura-de-software" - "arquivo" - "arquivo-header" - "arquivo-zip" - "array" - "array-associativo" - "array-filter" - "array-multidimensional" - "arrendondamento" - "arroba" - "arvore-binária" - "ascii" - "asmx" - "asp" - "asp-clássico" - "asp.net" - "asp.net-identity" - "asp.net-membership" - "asp.net-mvc" - "asp.net-mvc-4" - "asp.net-mvc-5" - "asp.net-mvc-6.1" - "asp.net-profile" - "asp.net-vnext" - "asr" - "assembly" - "assinatura-digital" - "assincronismo" - "assp" - "async" - "atocimidade" - "atom" - "attribute" - "atualização" - "autômato" - "autenticação" - "autenticação-http" - "auth" - "authorization" - "auto-incremento" - "autocompletar" - "automatização" - "autotest" - "avd" - "awk" - "aws" - "awt" - "azure" - "azure-tables" - "back-end" - "backbone.js" - "background" - "background-color" - "background-services" - "backup" - "banco-de-dados" - "barplot" - "base-de-dados" - "base64" - "bash" - "bass" - "batch" - "bbcode" - "bcrypt" - "bdd" - "biblioteca" - "bibtex" - "big-data" - "bit" - "bitbucket" - "bitmap" - "bitnami" - "bittorrent" - "bitwise" - "blob" - "blog" - "blogger" - "bluetooth" - "boilerplate" - "boleto" - "boot" - "bootstrap" - "bootstrap-3" - "bootstrap-affix" - "bootstrap-glyphicons" - "bootstrap-popover" - "bootstrapvalidator" - "boto" - "bower" - "box-model" - "boxes" - "branch" - "brasil" - "broadcastreceiver" - "buffer" - "buffer-overflow" - "bundle" - "busca" - "busca-binária" - "business-intelligence" - "bxslider" - "byte" - "bytecode" - "c" - "c#" - "cálculo" - "câmera" - "código-aberto" - "código-de-barras" - "código-de-erro" - "c++" - "c++-cli" - "c++11" - "c++builder-2009" - "c3.js" - "cache" - "cairngorm" - "cakephp" - "cakephp-2" - "calendário-gregoriano" - "calendar" - "callback" - "camadas" - "caminho-relativo" - "camlquery" - "canvas" - "capistrano" - "capitalização" - "captcha" - "captura-de-tela" - "característica-linguagem" - "carrossel" - "casos-de-uso" - "cassandra" - "cast" - "cdi" - "cdn" - "centos" - "centralizar" - "cep" - "certificado" - "chaining" - "char" - "character-encoding" - "chart.js" - "chat" - "chave-composta" - "chave-estrangeira" - "chave-primária" - "checkbox" - "child" - "children" - "chosen" - "chrome" - "ciclo-infinito" - "ckeditor" - "classes" - "classes-abstratas" - "classificação" - "click" - "clickonce" - "client-side" - "cliente-servidor" - "clipper" - "clone" - "closures" - "cloud" - "cloudwatch" - "clr" - "cmd" - "cms" - "cobol" - "code-climate" - "code-first" - "codeigniter" - "codename-one" - "coding-style" - "coffeescript" - "collation" - "collection" - "colunas" - "combinações" - "combobox" - "comentários" - "commit" - "commonjs" - "comparação" - "compilação" - "compilação-jit" - "complexidade-de-algoritmo" - "composer" - "composer.json" - "compressão" - "compressão-de-imagem" - "computação-quântica" - "concatenação-de-string" - "concorrência" - "condição" - "conexão" - "configuração" - "connection" - "connectionstring" - "console" - "constantes" - "constants" - "constraint" - "construtor" - "contador" - "context-menu" - "contexto" - "controle-de-fluxo" - "controle-de-versão" - "controle-remoto" - "controles" - "controller" - "convenções" - "convenções-de-nome" - "conversão" - "conversão-de-tipo" - "cookies" - "coordenadas" - "core-data" - "cores" - "correios" - "cors" - "covariancia" - "cpanel" - "cpuid" - "cracker" - "criptografia" - "criteria" - "cron" - "crop" - "cross-browser" - "cross-domain" - "cross-platform" - "crud" - "crux-framework" - "cry-engine" - "crystal-reports" - "csrf" - "css" - "css-before" - "css-border" - "css-border-radius" - "css-centering" - "css-display" - "css-float" - "css-font-face" - "css-hover" - "css-seletores" - "css-transform" - "css-transições" - "css-visibility" - "css2" - "css3" - "csv" - "ctypes" - "cucumber" - "cucumberjs" - "culture" - "curl" - "cursor" - "customelements" - "cvblobslib" - "cycle2" - "d3.js" - "dal" - "dart" - "data" - "data-pattern" - "data-uri" - "data.frame" - "data.table" - "database-first" - "datagridview" - "datasnap" - "datatable" - "date" - "datepicker" - "datetime" - "db2" - "dbase" - "dbgrid" - "dbunit" - "ddd" - "ddos" - "debug" - "debugger" - "declaração-de-variável" - "decoradores" - "decorator" - "delete" - "delphi" - "delphi-2007" - "delphi-6" - "delphi-7" - "delphi-xe3" - "delphi-xe4" - "delphi-xe5" - "delphi-xe6" - "demoiselle" - "dependências" - "deploy" - "deprecated" - "depuração" - "depurador" - "depurar" - "descompilação" - "describe" - "desempenho" - "desenvolvimento-ágil" - "deserialização" - "design" - "design-de-linguagem" - "design-pattern" - "detecção-de-colisão" - "dev-c++" - "devexpress" - "devise" - "dfsort" - "diagrama" - "dialog" - "dicionário" - "dictionary" - "diff" - "digitalocean" - "directx" - "diretório" - "diretório-padrão" - "display" - "dispose" - "dispositivos-móveis" - "div" - "divisão" - "django" - "django-rest-framework" - "dll" - "dns" - "doctrine" - "doctrine-2" - "documentação" - "documentfragment" - "dom" - "domínio" - "download" - "dpkg" - "dplyr" - "drag-n-drop" - "drawable" - "drawing" - "dreamweaver" - "driver" - "dropdown" - "dropzonejs" - "drupal" - "duck-typing" - "dump" - "duplicados" - "durandal" - "dynamic" - "e-dne" - "easeljs" - "ec2" - "echo" - "eclipse" - "ecm" - "ecmascript-5" - "ecmascript-6" - "edição-de-imagens" - "editor-de-texto" - "edittext" - "efeito" - "ejb" - "elastic-beanstalk" - "elasticsearch" - "eloquent" - "else" - "em" - "email" - "emberjs" - "empty" - "emulador" - "encapsulamento" - "encode" - "encriptação" - "engenharia-de-software" - "engine" - "entity-framework" - "entity-framework-6" - "entity-framework-6.1" - "enumerable" - "enums" - "envio-de-email" - "equações" - "equals" - "erb" - "erlang" - "erp" - "error" - "erros" - "escalabilidade" - "escopo-de-variáveis" - "estatísticas" - "estilo-de-codificação" - "estratégia" - "estrutura-de-código" - "estrutura-de-dados" - "estrutura-de-diretório" - "estrutura-de-repetição" - "estruturas-de-controle" - "eval" - "eventos" - "eventos-do-mouse" - "exceção" - "excel" - "excel-tabela" - "excelbuilderjs" - "expansion-files" - "exportação" - "expressões" - "expressjs" - "extensão" - "extension-method" - "extjs" - "extjs-4" - "f#" - "fórmulas" - "fabric" - "facebook" - "facebook-graph-api" - "facebook-javascript-sdk" - "factors" - "fade" - "fadein" - "fancybox" - "fancytree" - "fast-reports" - "fastcgi" - "fatal-error" - "favicon" - "federation-authentication" - "ffmpeg" - "fibonnaci" - "ficheiro" - "fila-thread" - "file-get-contents" - "file-put-contents" - "file-upload" - "filesystem" - "filezilla" - "filter" - "filtro" - "finanças" - "firebase" - "firebird" - "firebug" - "firedac" - "firefox" - "firewall" - "fixtures" - "flash" - "float" - "flood" - "flot" - "fluent" - "fluent-nhibernate" - "flux" - "font" - "font-size" - "fopen" - "foreach" - "formatação" - "formatação-condicional" - "formdata" - "forms" - "formulário" - "formulário-submeter" - "formview" - "fortran" - "foudation" - "foundation" - "fpdf" - "fql" - "frames" - "frameset" - "framework" - "freetds" - "frontend" - "ftp" - "fullcalendar" - "fullscreen" - "função" - "função-anônima" - "função-mysql" - "funções" - "fuso" - "galeria" - "gallery" - "gammu" - "garbage-collector" - "gateway" - "gcc" - "gem" - "genéricos" - "generators" - "genexus" - "geocode" - "geometria" - "gerência-de-projeto" - "geração-de-pdf" - "geração-procedural" - "gerenciamento-de-memória" - "gerenciamento-de-projetos" - "get" - "get-terms" - "getters" - "getters-setters" - "ggplot2" - "git" - "git-branch" - "git-commit" - "github" - "glassfish" - "globlalization" - "gmail" - "google" - "google-analytics" - "google-api" - "google-app-engine" - "google-calendar" - "google-charts" - "google-chrome" - "google-chrome-extensão" - "google-cloud-storage" - "google-drive" - "google-maps" - "google-maps-android-api-2" - "google-play" - "google-sites" - "gorm" - "goto" - "gpl" - "gps" - "gráfico" - "gráfico-condicional" - "gráfico-de-dispersão" - "gráfico-de-pizza" - "gradle" - "grafo" - "grails" - "gramática" - "graphviz" - "gravatar" - "greensock-gsap" - "grid" - "gridview" - "groovy" - "group-by" - "grunt" - "gson" - "gtk" - "gui" - "guid" - "gulpjs" - "gwt" - "gzip" - "habtm" - "hadoop" - "handlebars.js" - "harbour" - "hash" - "hashcode" - "hashmap" - "hashset" - "haskell" - "having" - "haxeflixel" - "hdfs" - "header" - "heap" - "height" - "helper" - "herança" - "heredoc" - "heroku" - "hexadecimal" - "hhvm" - "hibernate" - "hibernate-envers" - "highcharts" - "histórico" - "histórico-git" - "histograma" - "hmvc" - "hooks" - "hospedagem" - "hover" - "hql" - "hsqldb" - "htaccess" - "html" - "html-agility-pack" - "html-meta" - "html-option" - "html-select" - "html-table" - "html5" - "html5-audio" - "html5-data" - "html5-history" - "htmlentities" - "htpasswd" - "http" - "http-headers" - "http-métodos" - "http-post" - "http-request" - "http-status" - "httpapplication" - "httpd" - "httpmodule" - "httr" - "i10n" - "i18n" - "icalendar" - "icloud" - "ide" - "idle-ide" - "if" - "iframe" - "iis" - "iis-7" - "iis-express" - "imagecopyresampled" - "imagem" - "imagemagick" - "imagens" - "imagick" - "imap" - "implementa" - "importação" - "impressão" - "impressora" - "imutabilidade" - "include" - "indentação" - "independente-de-linguagem" - "index" - "indexof" - "indy-10" - "infomaker" - "informix" - "infotype" - "initializer-list" - "injeção-de-dependência" - "inline-block" - "inno-setup" - "innodb" - "input" - "input-date" - "input-output" - "insensibilidade-de-caixa" - "inserir" - "insert" - "instagram" - "instalação" - "instalador" - "installcreator" - "installshield" - "instanciar-objeto" - "int" - "integração" - "integração-contínua" - "inteiros" - "intel" - "inteligência-artificial" - "intellij-idea" - "intellisense" - "intent" - "interface" - "interface-de-usuário" - "interface-fluente" - "internacionalização" - "internet-explorer" - "internet-explorer-7" - "internet-explorer-8" - "internet-explorer-9" - "interpolação-de-string" - "interrupção" - "ios" - "ip" - "iphone" - "ipod" - "ipv4" - "ipv6" - "ipython" - "ipython-notebook" - "irb" - "ireport" - "iso-8859-1" - "iterador" - "itextsharp" - "itunes" - "izpack" - "jaas" - "jackson" - "jade" - "jailbreak" - "jar" - "jasmine" - "jasper-reports" - "java" - "java-8" - "java-bean" - "java-ee" - "java-ee-6" - "java-ee-7" - "java-me" - "javadoc" - "javafx" - "javamail" - "javascript" - "javascript-eventos" - "jax-rs" - "jax-ws" - "jaxb" - "jboss" - "jcrop" - "jdbc" - "jdk" - "jee" - "jekyll" - "jelastic" - "jenkins" - "jersey" - "jframe" - "jinja2" - "jndi" - "jni" - "job" - "jodatime" - "jogos" - "join" - "joomla" - "jpa" - "jpa-2.0" - "jplayer" - "jpql" - "jqgrid" - "jqplot" - "jqtree" - "jquery" - "jquery-1.6" - "jquery-animate" - "jquery-blockui" - "jquery-data" - "jquery-datatables" - "jquery-masked-input" - "jquery-mobile" - "jquery-plugins" - "jquery-select2" - "jquery-toggleclass" - "jquery-ui" - "jquery-ui-multiselect" - "jquery-validate" - "jquery.validate" - "jsf" - "jsf-2.2" - "json" - "jsonp" - "jsonreflect" - "jsoup" - "jsp" - "jstree" - "jtable" - "jtextfield" - "jtree" - "junit" - "jvm" - "kendo-ui" - "kinect" - "knockoutjs" - "kohana" - "lógica" - "löve" - "l10n" - "laços" - "label" - "lado-do-servidor" - "lambda" - "lambda-expressions" - "lampstack" - "lapply" - "laravel" - "laravel-auth" - "laravel-blade" - "laravel-eloquent" - "laravel-rotas" - "laravel4" - "latex" - "lattice" - "layout" - "layout-responsivo" - "lazarus" - "lazy-loading" - "less" - "lexer" - "lib" - "licença" - "liferay" - "likes" - "linguagem-interpretada" - "linguagens-formais" - "linha-de-comando" - "link" - "linq" - "linq-to-entities" - "linq-to-sql" - "linux" - "lisp" - "lista" - "lista-encadeada" - "listener" - "listview" - "lm" - "loader" - "localização" - "localização-geográfica" - "localstorage" - "lock" - "log" - "log-de-eventos-windows" - "log4j" - "logcat" - "logging" - "login" - "logo" - "loja-virtual" - "look-and-feel" - "loop" - "lr" - "lua" - "lua-table" - "lubridate" - "lucene" - "máquina-de-estados" - "máquina-virtual" - "método" - "mínimos-quadrados" - "módulo" - "magento" - "magrittr" - "mail" - "mailer" - "makefile" - "mamp" - "manipulador-de-evento" - "mapkit" - "mapply" - "maps" - "margens" - "masked-input-plugin" - "matemática" - "math" - "matlab" - "matplotlib" - "matriz" - "maven" - "mcrypt" - "md5" - "mdi" - "mdx" - "medição" - "media-queries" - "mediawiki" - "mef" - "meldmerge" - "memória" - "memcached" - "memoization" - "memory-limit" - "mensagem-de-erro" - "menu" - "mercadolivre" - "metaclasses" - "metaprogramação" - "meteorjs" - "metodologia" - "metodologia-ágil" - "microcontrolador-8051" - "microsoft-help-viewer" - "microsoft-word" - "migrations" - "mimosa" - "mingw" - "miniprofiler" - "minitest" - "mint" - "mobile" - "mobile-safari" - "mock" - "mockito" - "mod-rewrite" - "model-validation" - "modelagem" - "modelagem-de-dados" - "modelo-relacional" - "module" - "mongo" - "mongodb" - "mongodb-csharp" - "mongoose" - "mono" - "moodle" - "mootools" - "mpeg" - "ms-access" - "ms-dos" - "msdn" - "msi" - "multi-tenancy" - "multiple" - "multiple-file-upload" - "multithreading" - "mvc" - "mvvm" - "myisam" - "mysql" - "mysql-cast" - "mysql-connector" - "mysql-convert" - "mysql-find-in-set" - "mysql-order-by" - "mysql-select" - "mysql-table" - "mysql-update" - "mysql-view" - "mysql-workbench" - "mysqldump" - "mysqli" - "números" - "números-aleatórios" - "números-binários" - "nagios" - "namespace" - "nan" - "navegação" - "navegador" - "netbeans" - "netware" - "newsletter" - "next" - "nfe" - "nginx" - "nhibernate" - "node-webkit" - "node.js" - "nodejs" - "nomenclatura" - "normalização" - "nosql" - "notepad++" - "notice" - "notificação" - "np-completo" - "nspredicate" - "nsrange" - "ntp" - "nuget" - "null" - "nullable" - "nullpointerexception" - "numérico" - "numpy" - "nunit" - "nuvem" - "nuvem-de-tags" - "oauth" - "oauth2" - "object" - "objective-c" - "objectlistview" - "objeto-com" - "objetos" - "observer-pattern" - "ocr" - "odbc" - "office" - "office-2013" - "offline" - "ofuscação" - "ogg" - "olap" - "oledb" - "onclick" - "opacity" - "opencart" - "opencv" - "openfire" - "opengl" - "opengles" - "openldap" - "openmp" - "openshift" - "openssl" - "operador-like" - "operadores" - "oracle" - "oracle10g" - "oracle11c" - "ordenação" - "order" - "organização-de-projeto" - "orientação-a-aspectos" - "orientação-a-objetos" - "orientação-a-serviços" - "orm" - "ormlite" - "osx" - "otimização" - "override" - "owin" - "página-de-erro" - "packages" - "padrões" - "pagamento" - "pagamento-online" - "page" - "pagedlist" - "pagemethods" - "paginação" - "pagseguro" - "palavras-reservadas" - "pandas" - "panel" - "parâmetros" - "paradigmas" - "paralelismo" - "parallax" - "parse" - "parser" - "pascal" - "path" - "path-separator" - "paypal" - "paypal-api" - "pdf" - "pdo" - "pdoexception" - "pentaho" - "pentaho-kettle" - "perl" - "permissões" - "pgm" - "pgrep" - "phantomjs" - "phonegap" - "photoshop" - "php" - "php-5" - "php-autoload" - "php-domdocument" - "php-fig" - "php-fpm" - "php.ini" - "phpexcel" - "phpmailer" - "phpmyadmin" - "phpmyadmin-erro-2002" - "phpstorm" - "phtml" - "physx" - "pic" - "pilha" - "pinterest" - "pinvoke" - "pip" - "pivot" - "pjax" - "pl-sql" - "placeholder" - "plano-de-execucao" - "play-framework" - "plesk" - "plot" - "plugin" - "plyr" - "poco" - "pojo" - "polígono" - "polimorfismo" - "polyfill" - "polymer" - "ponteiro" - "ponto-flutuante" - "pop3" - "popover" - "popup" - "porcentagem" - "porta-serial" - "portabilidade" - "portugol" - "português" - "português-do-brasil" - "posição-do-cursor" - "posicionamento" - "post" - "postfix" - "postgresql" - "powerpoint" - "powershell" - "preventdefault" - "primefaces" - "primefaces-3.5" - "princípios-de-programação" - "print-r" - "printf" - "private" - "procedure" - "processamento-de-imagens" - "processing" - "processo" - "processo-unificado" - "profiling" - "programação-funcional" - "programação-imperativa" - "progress-bar" - "proguard-android" - "projeto-de-compiladores" - "projeto-de-software" - "prolog" - "prompt" - "propriedade" - "protótipo" - "proteção" - "protected" - "provedores-de-dados" - "provisioning-profile" - "proxy" - "psd" - "pseudocódigo" - "pthreads" - "public" - "push-notification" - "pycharm" - "pydev" - "pygame" - "python" - "python-2.7" - "python-3.x" - "qftp" - "qml" - "qrcode" - "qt" - "qtgui" - "qtranslate" - "qualidade" - "quantmod" - "query" - "querydsl" - "querystring" - "quicksort" - "r" - "rackspace" - "random" - "ranking" - "raspberry-pi" - "razor" - "rcurl" - "react.js" - "read.table" - "recuperação-de-erros" - "recursão" - "rede-neural" - "redes" - "redicionamento" - "redirecionamento" - "redirecionamento-de-url" - "redis" - "redmine" - "redundância" - "refatoração" - "referência" - "referência-circular" - "reflection" - "regex" - "regexp" - "registro" - "regressão" - "relacionamento" - "relatório" - "relatorio" - "release" - "replace" - "replicação" - "report" - "report-builder" - "reporting-services" - "reportviewer" - "repository" - "representação-numérica" - "request" - "require" - "requirejs" - "resharper" - "resize" - "resolução-de-tela" - "resources" - "rest" - "restful" - "restrição-único" - "resultset" - "retorno" - "return" - "reusabilidade" - "revisão-código" - "rgb" - "rgl" - "rich-faces" - "richtextbox" - "rldc" - "rmi" - "rnorm" - "rodape" - "rolamento" - "rollback" - "rotas" - "route" - "rsa" - "rscript" - "rspec" - "rss" - "rstudio" - "rtf" - "rtrim" - "rtti" - "ruby" - "ruby-on-rails" - "runloop" - "saas" - "safari" - "safe" - "sanitize" - "sap" - "sapply" - "sas" - "sass" - "sbt" - "scaffolding" - "scala" - "scanf" - "scanner" - "scheduler" - "scipy" - "screen" - "script" - "scripting" - "scrum" - "sdk" - "sdl" - "segurança" - "select" - "select2" - "selecteditem" - "selenium" - "seletores" - "self" - "semântica" - "sendgrid" - "sendmail" - "senhas" - "sensenet" - "sensibilidade-de-caixa" - "seo" - "sequelize-js" - "serial" - "serialização" - "server-side" - "serviço" - "services" - "servidor" - "servidor-de-aplicação" - "servlet" - "ses" - "session" - "set" - "setters" - "setup" - "sfml" - "sha-256" - "sha1" - "sha2" - "sha3" - "sharepoint" - "shell" - "shell-script" - "shim" - "shortcode" - "sidebar" - "sidekiq" - "sigep" - "signalr" - "silverlight" - "simplexml" - "simplexml-load-string" - "sinatra" - "sincronização" - "single-page-application" - "singleton" - "sintaxe" - "sistema-de-arquivos" - "sistema-operacional" - "sitemap" - "skype" - "slide" - "slider" - "slim-php" - "slug" - "sms" - "sms-gateway" - "smtp" - "soa" - "soap" - "socket" - "socket.io" - "solid" - "sonar" - "sorm" - "sort" - "sortable" - "soundex" - "spam" - "sparkleshare" - "sparql" - "sphinx" - "spliterator" - "spring" - "spring-data" - "spring-mvc" - "spring-security" - "spritesheet" - "spss" - "sql" - "sql-express" - "sql-injection" - "sql-select" - "sql-server" - "sql-server-2005" - "sql-server-2008" - "sql-server-2012" - "sql-server-2014" - "sql-server-ce" - "sql-view" - "sqldeveloper" - "sqlite" - "sqlite3" - "sqlserver-localdb" - "sse" - "ssh" - "ssis" - "ssl" - "sslstream" - "stack" - "stack-trace" - "stackexchange" - "standalone" - "stdclass" - "stl" - "stored-procedures" - "storyboard" - "stream" - "stream-de-arquivos" - "streaming" - "string" - "stringbuffer" - "stringbuilder" - "strtotime" - "struct" - "struts2" - "stub" - "subdomínio" - "subdominio" - "sublime" - "sublime-text" - "sublime-text-2" - "sublimerepl" - "submenu" - "summary" - "svg" - "svn" - "sweet-alert" - "swift" - "swift-playground" - "swiftmailer" - "swing" - "switch" - "symbolic-link" - "symfony" - "symfony-2" - "syntactic-sugar" - "syntax" - "syntax-error" - "system-tray" - "tabela" - "tabela-banco-de-dados" - "tabela-latex" - "tabela-zebrada" - "table" - "tags" - "tags-input" - "tapply" - "tarefa" - "taxonomia" - "tclientdataset" - "tdd" - "team-foundation-server" - "teclado" - "telerik" - "temas" - "teminologia" - "template" - "template-engine" - "tempo-de-resposta" - "teoria-da-computação" - "terminal" - "terminologia" - "tesseract" - "testes" - "testes-de-unidade" - "testes-funcionais" - "testes-unitários" - "textarea" - "textbox" - "textcontent" - "this" - "thread" - "thread-safety" - "throw" - "tika" - "tiles" - "time" - "time-square" - "timeout" - "timer" - "timestamp" - "timezone" - "tinymce" - "tinymce-4" - "tipagem" - "tipo-anulável" - "tipo-de-conteúdo" - "tipo-de-dados" - "tkinter" - "toggle" - "tomcat" - "tor" - "touch" - "traceback" - "traceur" - "tracker" - "trait" - "transações" - "transaction" - "transcrição-de-áudio" - "transition" - "travis-ci" - "triângulo" - "trigger" - "try-catch" - "try-finally" - "tsql" - "tumblr" - "tupla" - "turing" - "twig" - "twisted" - "twitter" - "twitter-api" - "twitter-bootstrap" - "typehead" - "typescript" - "uaicriteria" - "ubuntu" - "uidatepicker" - "uisearchbar" - "uisegmentedcontrol" - "uitableview" - "uitableviewcell" - "uitextfield" - "uiview" - "uml" - "unbind" - "undefined" - "underscore.js" - "unicode" - "unicorn" - "unidade-monetária" - "uninfe" - "unitofwork" - "unity-3d" - "unix" - "unlink" - "unobtrusive" - "unreal-engine" - "unset" - "upload" - "uri" - "url" - "url-amigável" - "url-canonical" - "url-reescrever" - "usabilidade" - "usage" - "use-strict" - "userscripts" - "utf-8" - "utl-smtp" - "uuid" - "ux" - "vídeo" - "vaadin" - "vagrant" - "validação" - "validationengine" - "valor-monetário" - "value" - "var" - "var-dump" - "varbinary" - "varchar" - "variáveis" - "variáveis-de-instância" - "variáveis-globais" - "variáveis-locais" - "variância" - "vazamento" - "vb" - "vb.net" - "vb6" - "vba" - "vbs" - "vector" - "verilog" - "versionamento" - "vertical-align" - "vetor" - "vetores" - "view" - "vim" - "virtualbox" - "virtualhost" - "visão-computacional" - "visual-basic-6" - "visual-studio" - "visual-studio-2010" - "visual-studio-2012" - "visual-studio-2013" - "visualg" - "visualização-de-dados" - "vmware" - "volatile" - "volley" - "vps" - "vraptor" - "vtex" - "wai-aria" - "wamp" - "warden" - "warnings" - "wcf" - "web" - "web-api" - "web-api-2" - "web-crawler" - "web-service" - "web-starter-kit" - "web-worker" - "web2py" - "webbrowser" - "webclient" - "webconfig" - "webdesign" - "webforms" - "webgl" - "webix" - "weblogic" - "webmethods" - "webpart" - "webrequest" - "webrtc" - "webserver" - "websocket" - "websql" - "webview" - "weka" - "wget" - "whatsapp" - "while" - "whm" - "widget" - "wildcard" - "wildfly" - "win32" - "winapi" - "window-builder" - "windows" - "windows-7" - "windows-8" - "windows-azure" - "windows-ce" - "windows-mobile" - "windows-mobile-5" - "windows-phone" - "windows-phone-7.1" - "windows-phone-8-1" - "windows-service" - "windows-xp" - "winforms" - "winrt" - "wmi" - "woocommerce" - "wordcloud" - "wordpress" - "wordpress-theme" - "workflow" - "wpf" - "wsdl" - "www" - "wxwidgets" - "wysiwyg" - "x-tags" - "x64" - "x86" - "xamarin" - "xamarin.android" - "xamarin.ios" - "xaml" - "xampp" - "xcode" - "xhtml" - "xhtml2pdf" - "xib" - "xls" - "xml" - "xml-namespaces" - "xml-schema" - "xmldocument" - "xmlhttprequest" - "xmpp" - "xna" - "xoops" - "xpath" - "xsd" - "xslt" - "xss" - "yeoman" - "yield" - "yii" - "youtube" - "youtube-api" - "z-index" - "zend" - "zendserver" - "zentest" - "zeos" - "zip" - "zurb-foundation") diff --git a/data/tags/puzzling.el b/data/tags/puzzling.el deleted file mode 100644 index c8c852b..0000000 --- a/data/tags/puzzling.el +++ /dev/null @@ -1,118 +0,0 @@ -("15-puzzle" - "2048" - "24" - "abalone" - "algorithm" - "anagram" - "antichamber" - "arithmetic" - "board-games" - "brainfuck" - "brainteaser" - "burr-puzzle" - "calculation-puzzle" - "cards" - "checkerboard" - "chess" - "chess-tour" - "christmas" - "cipher" - "combinatorics" - "competitive-game" - "computer-science" - "counting" - "crossword-clues" - "crosswords" - "cryptarithm" - "cryptic-crosswords" - "cryptic-crosswordsletter" - "cryptograms" - "cryptography" - "cutting-problem" - "detective" - "dice" - "difficulty" - "dissection" - "einsteins-puzzle" - "encoded-message" - "english" - "enigmatic-puzzles" - "explanation" - "family" - "game-theory" - "geared-puzzles" - "geometry" - "graph-theory" - "historical" - "history" - "image" - "jigsaw-puzzle" - "josephus-problem" - "language" - "lateral-thinking" - "latin-square" - "liars" - "linguistics" - "literature" - "locks" - "logic" - "logic-grid" - "logic-puzzle" - "magic" - "magic-square" - "martin-gardner" - "math" - "mazes" - "mechanical-puzzles" - "minesweeper" - "minimum-solve" - "monty-hall" - "mpire" - "music" - "mystery" - "naming" - "octo-star" - "open-ended" - "optimization" - "pandigital-puzzle" - "paper-solving" - "paradox" - "password" - "pattern" - "pencil-and-paper-games" - "physics" - "probability" - "puzzle-creation" - "puzzle-identification" - "puzzle-theory" - "rebus" - "rhyme" - "riddle" - "rivercrossing" - "rubiks-cube" - "rush-hour" - "scale" - "science" - "seasonal" - "set" - "situation" - "slitherlink" - "solvability" - "speedsolving" - "steganography" - "strategy" - "sudoku" - "symbols" - "terminology" - "tic-tac-toe" - "tips" - "topology" - "twisty-puzzles" - "verbal-arithmetic" - "video-game" - "visual" - "word" - "word-ladder" - "word-problem" - "word-search" - "wordplay") diff --git a/data/tags/quant.el b/data/tags/quant.el deleted file mode 100644 index c034699..0000000 --- a/data/tags/quant.el +++ /dev/null @@ -1,495 +0,0 @@ -("accounting" - "accrued-interest" - "adjusted" - "adjustments" - "affine-processes" - "algorithm" - "algorithmic-trading" - "allocation" - "american" - "american-options" - "analysis" - "annualized" - "anomalies" - "api" - "application" - "arbitrage" - "arima" - "arma" - "artificial-intelligence" - "asian-option" - "ask" - "asset" - "asset-allocation" - "asset-pricing" - "asset-returns" - "auction" - "auto-correlation" - "automated-trading" - "backtesting" - "banking-regulations" - "banks" - "barrier" - "basel" - "basket" - "bayes-theory" - "bdt" - "behavioral-finance" - "benchmark" - "bermudan" - "best-practices" - "beta" - "bid" - "big-list" - "binary" - "binary-options" - "binomial" - "binomial-tree" - "bitcoin" - "black" - "black-litterman" - "black-scholes" - "black-scholes-merton" - "black-scholes-pde" - "black76" - "bloomberg" - "bond" - "bond-futures" - "bond-yields" - "books" - "bootstrap" - "bootstrapping" - "broker" - "brownian-motion" - "budgeting" - "c" - "calculation" - "calibration" - "call" - "capital-structure" - "capm" - "career" - "cash-or-nothing" - "cdo" - "cds" - "cep" - "charts" - "china" - "cholesky" - "cik" - "classifier" - "cluster" - "cme" - "cmo" - "cms" - "codes" - "coherent-risk-measure" - "cointegration" - "column-oriented" - "commodities" - "composite" - "continuous-time" - "convention" - "convertible-bond" - "convexity" - "copula" - "corporate-actions" - "correlation" - "correlation-matrix" - "cost-of-debt" - "counterparty-risk" - "covariance" - "covariance-estimation" - "covariance-matrix" - "credit" - "credit-ratings" - "credit-risk" - "credit-scoring" - "csv" - "currency" - "curve-fitting" - "cva" - "cvar" - "data" - "data-mining" - "database" - "date" - "daycounting" - "dcf" - "debt" - "default" - "default-probability" - "default-risk" - "delta" - "delta-hedging" - "delta-neutral" - "density" - "dependence" - "derivation" - "derivatives" - "development" - "differential-equations" - "digital-signal-processing" - "dimensions" - "discount-factor-curve" - "discounting" - "discrete-dividends" - "distribution" - "diversification" - "dividends" - "double-auction" - "drawdown" - "duration" - "dynamic" - "earnings" - "econometrics" - "economics" - "edgar" - "education" - "eigenportfolio" - "eigenvalue" - "eigenvector" - "electronic-trading" - "embedded-options" - "emh" - "entropy-pooling" - "epps-effect" - "equities" - "equity-curve" - "error" - "estimation" - "etf" - "eurex" - "eurodollars" - "european" - "excel" - "exchange" - "exotics" - "expected-return" - "expiration" - "extrapolation" - "factor-loading" - "factor-models" - "feed" - "fees" - "finance" - "financial" - "financial-engineering" - "finite-difference-method" - "fix" - "fixed" - "fixed-income" - "floating-rate" - "forecast" - "forecasting" - "forward" - "forward-rate" - "fpga" - "fractals" - "friction" - "ftp" - "ftse" - "fundamentals" - "funds" - "futures" - "fx" - "game" - "game-theory" - "gamma" - "garch" - "general" - "girsanov" - "google" - "gpgpu" - "graphs" - "greeks" - "hardware" - "heath-jarrow-morton" - "hedge" - "hedge-fund" - "hedging" - "heston" - "hidden-markov-model" - "high-frequency" - "high-frequency-estimators" - "historical" - "historical-data" - "history" - "homework" - "hullwhite" - "hurst-exponent" - "implementation-shortfall" - "implied" - "implied-volatility" - "income" - "index" - "indicator" - "inflation" - "information" - "insurance" - "interactive-brokers" - "interbank-rates" - "interest" - "interest-rate-swap" - "interest-rates" - "interpolation" - "intraday" - "intuition" - "investing" - "investment" - "irs" - "islamic-banking" - "islamic-finance" - "itos-lemma" - "jargon" - "joint-probability" - "jump" - "kalman" - "kelly-criterion" - "kernel" - "kurtosis" - "lags" - "latency" - "lattice" - "learning" - "leverage" - "libor" - "library" - "limit-order-book" - "liquidity" - "liquidity-risk" - "lmm" - "local-volatility" - "log-returns" - "lognormal" - "longshort" - "machine" - "machine-learning" - "macro" - "macro-economics" - "malliavin-calculus" - "manager-analysis" - "margin" - "market" - "market-capitalization" - "market-data" - "market-design" - "market-impact" - "market-making" - "market-microstructure" - "market-model" - "market-regimes" - "market-risk" - "markov" - "markov-switching" - "markowitz" - "martingale" - "mathematics" - "matlab" - "maximum-drawdown" - "mbs" - "mean" - "mean-reversion" - "mean-variance" - "meixner" - "merton-model" - "methodology" - "methods" - "minimum-variance" - "modeling" - "modelling" - "models" - "modern-portfolio-theory" - "momentum" - "money-management" - "monte-carlo" - "monthly" - "moody" - "moving-average" - "multicurve" - "multivariate" - "multivariate-t" - "mutual-fund" - "nasdaq" - "negative" - "neural-networks" - "news" - "no-arbitrage-theory" - "nonlinear" - "normal-distribution" - "normalization" - "notation" - "numerairechange" - "numerical-methods" - "nyse" - "ois-discounting" - "open-interest" - "optimal-hedge-ratio" - "optimization" - "option-pricing" - "option-strategies" - "optionmetrics" - "options" - "order" - "order-execution" - "order-handling" - "orderbook" - "outliers" - "pairs-trading" - "paneldata" - "parameter" - "parameter-estimation" - "payoff" - "pca" - "performance" - "performance-evaluation" - "performanceanalytics" - "portfolio" - "portfolio-management" - "portfolio-optimization" - "portfolio-selection" - "position-sizing" - "prediction" - "preference-share" - "present-value" - "price" - "pricing" - "pricing-formulae" - "principal-components" - "probability" - "products" - "programming" - "proof" - "put" - "put-call-parity" - "python" - "quadratic-programming" - "quant-funds" - "quant-trading-strategies" - "quantitative" - "quantization" - "quantlib" - "quantmod" - "quants" - "quickfix" - "quote" - "r" - "random-matrix-theory" - "random-variables" - "random-walk" - "rate-distortion" - "rates" - "ratio" - "real-estate" - "real-options" - "rebalancing" - "recovery" - "reference-request" - "regression" - "reject-inference" - "relationship" - "replication" - "research" - "resource" - "return" - "returns" - "reuters" - "risk" - "risk-free" - "risk-management" - "risk-models" - "risk-neutral" - "risk-neutral-measure" - "risk-premium" - "robust-optimization" - "roll-adjustment" - "sde" - "sec" - "sensitivities" - "sharpe" - "sharpe-ratio" - "short-rate" - "short-selling" - "sierrachart" - "simulations" - "skew" - "skewness" - "slippage" - "soft-question" - "software" - "solvency-ii" - "speculation" - "split" - "spot-rate" - "spread" - "spread-options" - "spx" - "srri" - "standard-deviation" - "stationarity" - "statistical-finance" - "statistical-significance" - "statistics" - "stochastic" - "stochastic-calculus" - "stochastic-discount" - "stochastic-processes" - "stochastic-volatility" - "stopping" - "strategy" - "stress" - "stress-testing" - "structured-credit" - "structured-finance" - "student-t" - "svm" - "swaps" - "swaption" - "synthetic" - "tactical-asset-allocation" - "technicals" - "term-structure" - "terminology" - "testing" - "theory" - "theta" - "tick" - "tick-data" - "time" - "time-scale" - "time-series" - "total" - "tracking-error" - "trade" - "trading" - "trading-patterns" - "trading-systems" - "transaction-costs" - "transition-matrix" - "trends" - "untagged" - "utility-theory" - "valuation" - "value-at-risk" - "var" - "variance" - "variance-gamma" - "vasicek" - "vba" - "vega" - "visualization" - "vix" - "volatility" - "volatility-smile" - "volatiliy-smile" - "volume" - "vwap" - "wacc" - "wavelet" - "wiener" - "wienerprocess" - "yahoo" - "yahoofinance" - "yield" - "yield-curve" - "yield-futures") diff --git a/data/tags/raspberrypi.el b/data/tags/raspberrypi.el deleted file mode 100644 index 14d4899..0000000 --- a/data/tags/raspberrypi.el +++ /dev/null @@ -1,347 +0,0 @@ -("1-wire" - "1080p" - "alsa" - "alternative-power" - "analog-to-digital" - "android" - "apache-httpd" - "apt-get" - "aptitude" - "archlinux" - "arduino" - "arm" - "assembler" - "assembly" - "audio" - "audio-playback" - "backup" - "bare-metal" - "bash" - "battery" - "benchmarking" - "binary-file" - "bit-bang" - "bluetooth" - "boot" - "boot-issues" - "bootloader" - "box" - "breadboard" - "btrfs" - "bugs" - "c" - "c++" - "cable" - "cache" - "camera" - "camera-board" - "case" - "chrome-os" - "chromecast" - "chromium" - "clang" - "cli" - "close" - "cluster" - "cmdline.txt" - "commercial-use" - "communication" - "compatibility" - "composite-video" - "computer-vision" - "config.txt" - "connection" - "connectors" - "cooling" - "cpu" - "cron" - "cross-compilation" - "cups" - "curl" - "danger" - "data-transfer" - "database" - "davfs2" - "debian" - "debug" - "deluge" - "design" - "dhcp" - "dht22" - "display" - "dns" - "dnsmasq" - "dpkg" - "driver" - "ds18b20" - "dsi" - "durability" - "dvd" - "education" - "electronics" - "emulation" - "eth" - "ethernet" - "ethernet-port" - "failure" - "faq" - "ffmpeg" - "file" - "file-server" - "file-sharing" - "filesystem" - "firmware" - "flash" - "framebuffer" - "freebsd" - "frequency" - "fsck" - "fstab" - "fuses" - "gamepad" - "gcc" - "gdm" - "gertboard" - "ghostscript" - "git" - "gnuradio" - "gpio" - "gps" - "gpu" - "gsm" - "gui" - "hang" - "hard-drive" - "hard-float" - "hardware" - "haskell" - "hdd" - "hdmi" - "headless" - "home-automation" - "htpc" - "hub" - "i2c" - "ide" - "image" - "in-memory" - "init.d" - "input-device" - "internet" - "interrupts" - "iptables" - "irc" - "java" - "java-webstart" - "jessie" - "joystick" - "jvm" - "kernel" - "keyboard" - "laptop" - "led" - "lighttpd" - "linker-script" - "linux" - "llvm" - "locale" - "logfiles" - "lvds" - "lxde" - "lxsession" - "lxterminal" - "mail-server" - "makefile" - "matlab" - "maynard" - "measuring" - "media" - "media-server" - "memory" - "memory-split" - "midi" - "midori" - "minecraft" - "mmal" - "model-a" - "models" - "mods" - "modules" - "mongodb" - "monitoring" - "mono" - "motion" - "mount" - "mouse" - "mpeg-2" - "mysql" - "netatalk" - "network" - "networking" - "nfc" - "nfs" - "node.js" - "noobs" - "nrf24l01" - "ntp" - "objdumb" - "object-file" - "objective-c" - "occidentalis" - "omxplayer" - "open-source" - "opencv" - "openelec" - "opengles" - "openhab" - "operating-systems" - "osx" - "otg" - "output" - "overclocking" - "p2p" - "packages" - "partition" - "password" - "pci" - "performance" - "peripherals" - "perl" - "permissions" - "php" - "pi-store" - "pi4j" - "piface" - "pip" - "pitft" - "power" - "power-management" - "power-supply" - "ppp" - "printing" - "processor-speed" - "pulseaudio" - "purchasing" - "putty" - "pwm" - "python" - "python-cups" - "qemu" - "qt" - "qtonpi" - "radio" - "raspbian" - "raspbmc" - "raspi-config" - "razberry" - "rdp" - "readwrite" - "real-time" - "realtek" - "relay" - "remote" - "reset" - "retropie" - "revision" - "rfid" - "riscos" - "root" - "rpi.gpio" - "rrdtool" - "rtc" - "rtsp" - "ruby" - "safety" - "samba" - "screen" - "screen-saver" - "script" - "sd-card" - "sdl" - "security" - "selenium" - "selenium-webdriver" - "sendemail" - "sensor" - "serial" - "serial-console" - "server" - "services" - "servo" - "settings" - "setup" - "shairport" - "share" - "shared-libraries" - "signal" - "smbus" - "sockets" - "software-compilation" - "software-development" - "software-installation" - "software-recommendation" - "sqlite" - "ssh" - "static-ip" - "storage" - "streaming" - "streaming-video" - "subtitles" - "sudo" - "suggestions" - "swap-space" - "switches" - "system-clock" - "systemd" - "taskbar" - "teaching" - "temperature" - "tftp" - "timekeeping" - "touchscreen" - "tutorial" - "u-boot" - "uart" - "ubuntu" - "untagged" - "update" - "upgrade" - "upstart" - "usb" - "usb-hub" - "usb-power" - "usb3" - "use-by-children" - "user" - "v4l2" - "version-control" - "video" - "vlc" - "vnc" - "vpn" - "watchdog" - "wayland" - "web" - "web-browsers" - "web-interface" - "web-server" - "webcam" - "webdriver" - "weston" - "wheezy" - "wicd-curses" - "wifi" - "wifi-direct" - "windows" - "wireless" - "wireless-adapter" - "wiring" - "wpa" - "xbee" - "xbian" - "xbmc" - "xbmc-subtitles" - "xenomai" - "xmbc" - "xorg" - "zwave") diff --git a/data/tags/reverseengineering.el b/data/tags/reverseengineering.el deleted file mode 100644 index 0b2febb..0000000 --- a/data/tags/reverseengineering.el +++ /dev/null @@ -1,240 +0,0 @@ -(".net" - "actionscript" - "address" - "amd64" - "analyze" - "android" - "anti-debugging" - "api" - "apk" - "arguments" - "arm" - "array" - "assembler" - "assembly" - "ast" - "atmel" - "automation" - "bin-diffing" - "binary" - "binary-analysis" - "binary-format" - "bindiff" - "buffer-overflow" - "byte-code" - "c" - "c#" - "c++" - "call" - "calling" - "calling-conventions" - "callstack" - "canary" - "career-advice" - "cms" - "code-modeling" - "com" - "communication" - "compilers" - "copy-protection" - "crackme" - "cryptanalysis" - "cryptography" - "dalvik" - "debuggers" - "debugging" - "debugging-symbols" - "decompilation" - "decompile" - "decompiler" - "decompress" - "decryption" - "deobfuscation" - "development" - "dfu" - "digital-archeology" - "digital-forensics" - "disassemble" - "disassemblers" - "disassembly" - "dll" - "dll-injection" - "dos" - "dos-com" - "dos-exe" - "driver" - "dumping" - "dynamic-analysis" - "dynamic-linking" - "dynamorio" - "elf" - "embedded" - "emulation" - "encodings" - "encryption" - "error-message" - "ethics" - "exception" - "exe" - "executable" - "exploit" - "file-format" - "firmware" - "flirt-signatures" - "float" - "fpga" - "function-hooking" - "functions" - "fuzzing" - "gas" - "gcc" - "gdb" - "gnu-radio" - "got" - "hardware" - "hash-functions" - "hex" - "hexadecimal" - "hexrays" - "history" - "hll-mapping" - "hopper" - "https-protocol" - "iat" - "ida" - "idapro-plugins" - "idapro-sdk" - "idapython" - "immunity-debugger" - "injection" - "instrumentation" - "integrated-circuit" - "interoperability" - "ios" - "jar" - "java" - "javascript" - "json" - "jtag" - "kernel-mode" - "law" - "libraries" - "linux" - "lldb" - "llvm" - "local-variables" - "lua" - "mach-o" - "machine-code" - "magic-number" - "malware" - "man-in-the-middle" - "memory" - "metasploit" - "mips" - "modulus" - "mssql" - "multi-process" - "nasm" - "ne" - "nec-78k0r" - "networking" - "nullsub" - "nvidia" - "obfuscation" - "objdump" - "object-code" - "oep" - "offset" - "ollydbg" - "operating-systems" - "osx" - "packers" - "packet" - "patch-reversing" - "patching" - "pcb" - "pdb" - "pe" - "pe-resources" - "php" - "physical-attacks" - "pic" - "plt" - "pointer" - "powerpc" - "pro" - "process" - "processhacker" - "protection" - "protocol" - "proxy" - "ptrace" - "pushad" - "python" - "qemu" - "qt" - "radare2" - "radio-interception" - "reassembly" - "reil" - "relro" - "renesas-h8" - "rights-managment" - "rom" - "safari" - "sandbox" - "sbus" - "section" - "security" - "segmentation" - "seh" - "serial-communication" - "shellcode" - "smartcards" - "sniffing" - "softice" - "software-security" - "solaris" - "sparc" - "spi" - "stack" - "stack-variables" - "static-analysis" - "strings" - "struct" - "structure" - "swf" - "symbols" - "thread" - "tools" - "trojan" - "type" - "ubicon32" - "unpacking" - "untagged" - "upx" - "usability" - "usb" - "virtual-functions" - "virtual-machines" - "virtualallocex" - "virtualizers" - "virus" - "visual-basic" - "visualization" - "vtables" - "vulnerability-analysis" - "webcomp" - "websites" - "whitebox-crypto" - "winapi" - "windbg" - "windows" - "windows-8" - "windowsphone" - "wine" - "wireshark" - "x64" - "x86" - "xor") diff --git a/data/tags/robotics.el b/data/tags/robotics.el deleted file mode 100644 index 20c9138..0000000 --- a/data/tags/robotics.el +++ /dev/null @@ -1,203 +0,0 @@ -("3d-printing" - "accelerometer" - "ackerman-steering" - "acoustic-rangefinder" - "activerobot" - "actuator" - "air-muscle" - "algorithm" - "aluminium" - "arduino" - "ardupilot" - "arm" - "artificial-intelligence" - "atmega" - "attitude" - "automatic" - "auv" - "avr" - "balance" - "batteries" - "battery" - "beagle-bone" - "bec" - "beginner" - "books" - "brushless-motor" - "budget" - "c" - "c++" - "calibration" - "cameras" - "can" - "chassis" - "children" - "circuit" - "cnc" - "communication" - "compass" - "complementary-filter" - "computer-vision" - "control" - "cooling" - "coverage" - "current" - "cut" - "data-association" - "deduced-reckoning" - "design" - "differential-drive" - "digital-audio" - "distributed-systems" - "driver" - "dynamic-programming" - "dynamics" - "ekf" - "electronics" - "embedded-systems" - "encoding" - "engrave" - "errors" - "esc" - "failure" - "force" - "force-sensor" - "forward-kinematics" - "frame" - "gait" - "gazebo" - "gmapping" - "gps" - "gyroscope" - "h-bridge" - "hall-sensor" - "heat-management" - "hexapod" - "hri" - "humanoid" - "i2c" - "imu" - "industrial-robot" - "input" - "interrupts" - "inverse-kinematics" - "irobot-create" - "jacobian" - "joint" - "journal" - "kalman-filter" - "kinect" - "kinematics" - "kit" - "laser" - "legged" - "lidar" - "likelihood" - "line-following" - "linear-bearing" - "linux" - "localization" - "logic-control" - "machine-learning" - "magazine" - "magnetometer" - "manipulator" - "manufacturing" - "map" - "mapping" - "mechanism" - "microcontroller" - "micromouse" - "mindstorms" - "mobile-robot" - "motion" - "motion-planning" - "motion-primitives" - "motor" - "movement" - "multi-agent" - "multi-rotor" - "navigation" - "noise" - "not-exactly-c" - "nxt" - "occupancygrid" - "odometry" - "openni" - "operating-systems" - "particle-filter" - "pid" - "planning" - "platform" - "pose" - "power" - "probability" - "programming-languages" - "protection" - "pwm" - "python" - "quadcopter" - "quadrature-encoder" - "quadrotor" - "radio-control" - "rangefinder" - "ransac" - "raspberry-pi" - "rcservo" - "real-time" - "reference-request" - "reinforcement-learning" - "reliability" - "reprap" - "research" - "robotc" - "robotic-arm" - "rock" - "roomba" - "ros" - "routing" - "rrt" - "rs232" - "safety" - "sensor-error" - "sensor-fusion" - "sensors" - "serial" - "servomotor" - "servos" - "simulation" - "simulator" - "slam" - "soccer" - "software" - "sonar" - "speech-processing" - "stability" - "stepper-driver" - "stepper-motor" - "stereo-vision" - "swarm" - "syskit" - "theory" - "tools" - "torque" - "tracks" - "troubleshooting" - "tuning" - "two-wheeled" - "uav" - "ugv" - "ultrasonic-sensors" - "uncanny-valley" - "underwater" - "untagged" - "usb" - "valve" - "visual-servoing" - "visualization" - "walk" - "wheel" - "wheeled-robot" - "wifi" - "wireless" - "wiring") diff --git a/data/tags/rpg.el b/data/tags/rpg.el deleted file mode 100644 index 1c26609..0000000 --- a/data/tags/rpg.el +++ /dev/null @@ -1,680 +0,0 @@ -("13th-age" - "3d-space" - "50-fathoms" - "7th-sea" - "a-game-of-thrones" - "ability-scores" - "accessibility" - "aces-n-eights" - "achtung-cthulhu" - "acting" - "action-point" - "actions" - "adnd" - "adnd-2e" - "advantage" - "adventure" - "adventure-path" - "adventure-writing" - "adventurer-conqueror-king" - "after-the-bomb" - "age-of-rebellion" - "agents-of-change" - "alchemist" - "alchemy" - "alignment" - "all-flesh-must-be-eaten" - "all-for-one" - "alternate-class-feature" - "amber-diceless" - "anima-beyond-fantasy" - "animal" - "antipaladin" - "anydice" - "apocalypse-world" - "approaches" - "archetype" - "ardent" - "armor" - "armor-class" - "ars-magica" - "ars-magica-5" - "art" - "artificer" - "aspects" - "assassin" - "atomic-robo" - "attack" - "attack-powers" - "attack-roll" - "attributes" - "aura" - "authoring" - "avenger" - "awesome-adventures" - "background" - "balance" - "barbarian" - "bard" - "basic-role-playing" - "battle-map" - "battlemind" - "battlestar-galactica" - "battletech" - "beer-and-pretzels" - "beginner-box" - "besm" - "black-crusade" - "blade-of-the-iron-throne" - "blood-mage" - "books" - "buck-rogers" - "bunnies-and-burrows" - "burning-wheel" - "cadillacs-and-dinosaurs" - "call-of-cthulhu" - "call-of-cthulhu-d20" - "campaign" - "campaign-development" - "campaign-settings" - "cerulean-seas" - "changeling-the-dreaming" - "changeling-the-lost" - "chaosium" - "character" - "character-advancement" - "character-builder" - "character-creation" - "character-death" - "character-development" - "character-levels" - "character-sheets" - "charge" - "chases" - "chivalry-and-sorcery" - "chronicle-sheets" - "city-of-brass" - "class" - "class-feature" - "class-level" - "cleric" - "clockwork-and-chivalry" - "collector-value" - "combat" - "combat-advantage" - "combat-maneuver" - "concealment" - "conditions" - "conflicts" - "conjuration" - "continuum" - "convention" - "conversion" - "copyright" - "coriolis" - "cortex" - "cortex-plus" - "cosmology" - "cover" - "crafting" - "creature-size" - "critical-hit" - "crossgender" - "cthulhu" - "cthulhu-dark" - "curses" - "cyberpunk-2020" - "cypher-system" - "d20-modern" - "d20-system" - "d6-system" - "daily-powers" - "damage" - "damage-reduction" - "damage-resistance" - "damage-types" - "dangerous-journeys" - "dark-heresy" - "dark-sun" - "darksword-adventures" - "daze" - "dead-winter-rpg" - "deadlands-classic" - "deadlands-d20" - "deadlands-reloaded" - "deathwatch" - "defender" - "defense" - "delta-green" - "demo" - "demon-the-descent" - "design" - "desolation" - "diaspora" - "dice" - "diceless" - "dictionary-of-mu" - "difficulty" - "difficulty-class" - "disguise" - "divine" - "dnd-3.5e" - "dnd-3e" - "dnd-4e" - "dnd-5e" - "dnd-adventurers-league" - "dnd-becmi" - "dnd-bx" - "dnd-encounters" - "dnd-insider" - "dnd-miniatures" - "do-potft" - "doctor-who-aitas" - "dogs-in-the-vineyard" - "dragon-age-rpg" - "dragonlance" - "dragons" - "dread" - "dresden-files" - "drones" - "druid" - "dungeon" - "dungeon-crawl-classics" - "dungeon-design" - "dungeon-world" - "dungeons-and-dragons" - "dwarf" - "e6" - "earthdawn" - "earthdawn-1e" - "earthdawn-3e" - "eberron" - "eclipse-phase" - "economy" - "edge-of-the-empire" - "eladrin" - "elf" - "en-garde" - "encounter-design" - "encounter-powers" - "encounter-tables" - "encounters" - "encumbrance" - "epic-tier" - "equipment" - "errata" - "everway" - "evil-campaign" - "exalted" - "experience-points" - "fading-suns" - "faerun" - "fallout-pnp-rpg" - "familiars" - "fantasy" - "fantasy-flight-games" - "fantasycraft" - "fasa" - "fate" - "fate-2.0" - "fate-accelerated" - "fate-core" - "fate-points" - "fear-itself" - "feat-qualifications" - "feats" - "feywild" - "fiasco" - "fighter" - "fighting-style" - "final-fantasy-rpg" - "firearms" - "flight" - "forced-movement" - "forgotten-realms" - "fourthcore" - "free-action" - "freeform" - "freemarket" - "fudge" - "game-aids" - "game-design" - "game-recommendation" - "games-industry" - "gaming-style" - "gamma-world" - "geist-the-sin-eaters" - "gender" - "generator" - "genius-the-transgression" - "gestalt" - "glorantha" - "gm" - "gm-burnout" - "gm-less" - "gm-preparation" - "gm-techniques" - "gmpc" - "golarion" - "gotterdammerung" - "grab" - "grapple" - "greyhawk" - "group-dynamics" - "gumshoe" - "gunslinger" - "gurps" - "gurps-4e" - "hackmaster-5e" - "half-elf" - "halfling" - "harp" - "healing" - "heavygear" - "hellknight" - "hero-system" - "heroquest" - "hexcrawl" - "historical-settings" - "history-of-gaming" - "hit-points" - "hollow-earth-expedition" - "holy-symbol" - "homebrew" - "horror" - "house-rules" - "human-occupied-landfill" - "hungarian" - "hunter-the-reckoning" - "hunter-the-vigil" - "hx" - "hybrid-rpg" - "immediate-actions" - "immediate-interrupt" - "immediate-reaction" - "immobilized" - "implements" - "improvised-weaponry" - "in-a-wicked-age" - "in-game-continuity" - "in-nomine" - "indie-rpg" - "initiative" - "intellectual-property" - "interface-zero" - "interrupt" - "investigation" - "invisibility" - "invokes" - "iron-kingdoms" - "jade-regent" - "japanese-language" - "just-for-fun" - "kerberos-club-fate" - "keywords" - "kids" - "kindred-of-the-east" - "kingdom-building" - "kingmaker" - "knowledge-check" - "kult" - "l5r" - "l5r-2e" - "l5r-4e" - "labyrinth-lord" - "lady-blackbird" - "languages" - "larp" - "larp-mes-camarilla" - "lasers-and-feelings" - "laundry" - "leader" - "legend" - "legends-of-anglerre" - "leverage" - "library" - "licensed-property" - "life-paths" - "line-of-effect" - "line-of-sight" - "little-fears" - "logistics" - "lore" - "lorefinder" - "lotfp" - "lovecraftian" - "m-and-m2e" - "m-and-m3e" - "mage-the-ascension" - "mage-the-awakening" - "magic" - "magic-items" - "magus" - "maid" - "map-making" - "maps" - "mark" - "martial" - "marvel-heroic" - "mass-combat" - "masterplan" - "mazes-and-minotaurs" - "mecha" - "mechwarrior-4e" - "megadungeon" - "mekton" - "merp" - "metagaming" - "microlite20" - "microscope" - "middle-earth" - "minds-eye-theatre" - "mini-six" - "miniatures" - "minion" - "mistborn" - "mobile" - "modern" - "monk" - "monsterhearts" - "monsters" - "morale" - "mount" - "mounted-combat" - "mouse-guard" - "move-action" - "movement" - "multi-classing" - "multiattack" - "multiple-systems" - "music" - "mutant-chronicles" - "mutant-city-blues" - "mutants-and-masterminds" - "my-life-with-master" - "mythic-rpg" - "narration" - "narrative-techniques" - "natural-weapon" - "necromancy" - "nentir-vale" - "new-gm" - "new-players" - "new-world-of-darkness" - "nights-black-agents" - "nobilis" - "non-combat" - "npc" - "numenera" - "nwod-god-machine" - "nwod-virtue-vice" - "obsidian-portal" - "odnd" - "ogl" - "old-world-of-darkness" - "one-on-one" - "one-roll-engine" - "one-shot" - "online-resources" - "online-roleplaying" - "only-war" - "open-game-license" - "opportunity-actions" - "opportunity-attack" - "optimization" - "optional-rules" - "oracle" - "organization" - "organized-play" - "osr" - "osric" - "over-the-edge" - "pacing" - "paladin" - "palladium-system" - "papercraft" - "paragon-path" - "paragon-tier" - "paranoia" - "party" - "pathfinder" - "pathfinder-society" - "pcgen" - "phasing" - "pixie" - "planes" - "planescape" - "play-by-chat" - "play-by-post" - "player-communication" - "players" - "plot" - "plot-hooks" - "podcast" - "poison" - "pokemon-tabletop-adv" - "polaris" - "polymorph" - "post-apocalyptic" - "potions" - "powergaming" - "powers" - "prestige-class" - "pricing" - "primal" - "problem-gm" - "problem-players" - "product-identification" - "proficiency" - "promethean-the-created" - "prone" - "props" - "psionics" - "psychology" - "public-relations" - "published-adventures" - "publishing" - "puzzle" - "pvp" - "races" - "racial-traits" - "railroading" - "random" - "ranged-attack" - "ranger" - "ravenloft" - "readied-action" - "realm-management" - "reign" - "relationship-mechanic" - "religions-and-deities" - "remote" - "rests" - "retro-clones" - "rifts" - "risus" - "rituals" - "rogue" - "rogue-trader" - "rokugan" - "rolemaster" - "roleplaying" - "roll-for-shoes" - "roll20" - "round-robin" - "rpg-theory" - "rules-as-written" - "runepriest" - "runequest" - "sandbox" - "savage-worlds" - "savage-worlds-fantasy" - "savage-worlds-showdown" - "saving-throw" - "scaling" - "science-fiction" - "scion" - "scroll" - "second-darkness" - "second-wind" - "semi-diceless" - "serenity" - "session" - "session-summaries" - "shadowrun" - "shadowrun-sr3" - "shadowrun-sr4" - "shadowrun-sr5" - "shaman" - "shield" - "shift" - "shock" - "simulation" - "skill-challenge" - "skill-points" - "skills" - "sneak-attack" - "social" - "social-combat" - "social-contract" - "social-stats" - "solar-system" - "solo" - "song-of-ice-and-fire-rpg" - "sorcerer" - "sorcerer-rpg" - "sound-effects" - "spell-components" - "spelljammer" - "spells" - "spirit-of-the-century" - "spirits" - "spoiler" - "spycraft" - "sr4-matrix" - "sr5-matrix" - "star-trek" - "star-wars" - "star-wars-d20" - "star-wars-d6" - "star-wars-saga-edition" - "statistics" - "status-effects" - "stealth" - "steampunk" - "storium" - "story" - "strands-of-fate" - "strange-fate" - "strategy" - "stress" - "striker" - "strongholds" - "summoner" - "summoning" - "sunken-empires" - "surprise" - "sustained-powers" - "swarm" - "sword-noir" - "swordmage" - "swords-and-wizardry" - "system-agnostic" - "system-for-setting" - "system-introduction" - "tactics" - "teamwork" - "technomancer" - "tekumel" - "teleportation" - "tensers-floating-disk" - "terminology" - "terrain" - "tftfv" - "the-dark-eye" - "the-esoterrorists" - "the-one-ring" - "the-quiet-year" - "the-riddle-of-steel" - "the-shotgun-diaries" - "the-strange" - "theme" - "thief" - "three-sixteen" - "thresholds" - "tiles" - "time" - "time-and-temp" - "time-travel" - "tokens" - "tolkien" - "tome-of-battle" - "tool-recommendation" - "tools" - "torchbearer" - "torg" - "touch-attacks" - "toward-one" - "trail-of-cthulhu" - "training" - "traps" - "travel" - "traveller" - "treasure" - "tremulus" - "triggered-actions" - "trivia" - "tsoy" - "tsr" - "tunnels-and-trolls" - "ubiquity" - "unarmed-combat" - "unconscious" - "undead" - "unisystem" - "universalis" - "unknown-armies" - "untagged" - "utility-powers" - "vampire-the-dark-ages" - "vampire-the-masquerade" - "vampire-the-requiem" - "vampire-the-requiem-2e" - "variant-class" - "vehicles" - "villain" - "vortex-system" - "vulnerability" - "wall" - "warcraft-rpg" - "warden" - "warforged" - "warlock" - "warlord" - "warp" - "wealth" - "weapon-care" - "weapons" - "werewolf-the-apocalypse" - "werewolf-the-forsaken" - "wfrp-1e" - "wfrp-2e" - "wfrp-3e" - "wh40k" - "whitehack" - "wild-magic" - "wild-shape" - "wild-talents" - "wilden" - "witch" - "with-great-power" - "wizard" - "wizards-of-the-coast" - "wolsung" - "world-building" - "world-of-darkness" - "wraith-the-oblivion" - "wrath-of-the-righteous" - "xcrawl" - "zombies" - "zone") diff --git a/data/tags/russian.el b/data/tags/russian.el deleted file mode 100644 index b286550..0000000 --- a/data/tags/russian.el +++ /dev/null @@ -1,120 +0,0 @@ -("animateness" - "belorussian" - "composite-nouns" - "conjunctions" - "connotation" - "dative" - "dialects" - "dictionary" - "english" - "formality" - "idioms" - "imperative" - "interjection" - "it" - "metathesis" - "other-languages" - "participle" - "phrase" - "pronouns" - "punctuation" - "quote" - "resources" - "russian-usage" - "saying" - "semantics" - "slang" - "slavic" - "software" - "speech" - "stress" - "suffixes" - "swearing" - "syntax" - "tense" - "terminology" - "toponyms" - "transliteration" - "typography" - "ukrainian" - "untagged" - "usage" - "vocabulary" - "word-order" - "алфавит" - "будущее-время" - "буквы" - "вид" - "выбор-слова" - "выражения" - "глагол" - "глаголы" - "глаголы-движения" - "грамматика" - "дореформенная-орфография" - "заимствования" - "звукоподражания" - "значения" - "интонация" - "информатика" - "история-языка" - "лексикон" - "лингвистика" - "литература" - "мат" - "математика" - "медицина" - "местоимения" - "многозначность" - "множественное-число" - "морфология" - "музыка" - "наречия" - "обучение" - "одним-словом" - "окончания" - "омографы" - "ономастика" - "орфография" - "отрицание" - "падежи" - "перевод" - "правописание" - "предлоги" - "приветствия" - "прилагательные" - "приставки" - "программирование" - "произношение" - "психолингвистика" - "пунктуация" - "разговор" - "род" - "родительный-падеж" - "синонимы" - "синтаксис" - "склонение" - "слова-паразиты" - "словарь" - "словообразование" - "словоприменение" - "словотворчество" - "словоупотребление" - "согласные" - "социолингвистика" - "стилистика" - "субстантивация" - "существительные" - "терминология" - "традиции" - "ударение" - "физика" - "финансы" - "фонетика" - "фонология" - "фоносемантика" - "фразеологизм" - "числительные" - "этикет" - "этимология" - "этнонимы") diff --git a/data/tags/salesforce.el b/data/tags/salesforce.el deleted file mode 100644 index 83b41a2..0000000 --- a/data/tags/salesforce.el +++ /dev/null @@ -1,974 +0,0 @@ -(".net" - "2" - "access-modifier" - "account" - "account-management" - "account-teams" - "accounthistory" - "acquired" - "action" - "actionfunction" - "actionstatus" - "actionsupport" - "activedirectory" - "activities" - "adderror" - "address" - "administration" - "advanced" - "aggregate" - "ajax" - "ajax-toolkit" - "amazon" - "amazone-rest-api-version" - "ampscript" - "analytic-snapshots" - "analytics" - "analytics-api" - "analytics-cloud" - "android" - "angular" - "angularjs" - "ant" - "apex" - "apex-email-service" - "apex-managed-sharing" - "apex-param" - "apex-sharing" - "apex-webservice" - "apex.com" - "apexactionfunction" - "apexinputfield" - "apexinputfile" - "apexpage" - "apexrest" - "api" - "api-25" - "api-26" - "api-27" - "api-28" - "api-29" - "app" - "app-development" - "app-install" - "appcelerator" - "appcenter" - "appcentre" - "appexchange" - "approval" - "approval-process" - "approval-step" - "approve-action" - "architecture" - "array" - "articles" - "asset" - "assignment-rules" - "asyncapexjob" - "asyncapi" - "asynchronous" - "attachment" - "aura" - "aura-ng" - "auth" - "auth-provider" - "authentication" - "authorization" - "auto-number" - "automation" - "aws" - "backup" - "base64" - "basics" - "batch" - "before-trigger" - "bestpractice" - "beta-managed-package" - "birst" - "blackberry" - "blacktab" - "blob" - "blob.topdf" - "blocked" - "boolean" - "bootstrap" - "briefcase" - "browser" - "bug" - "bulk" - "bulk-api" - "bulk-delete" - "bulkification" - "burp" - "business-logic" - "businesshours" - "button" - "button-overrides" - "c#" - "cache" - "caching" - "calendar" - "callout" - "campaign" - "campaign-member" - "canvas" - "cascadedelete" - "case" - "case-object" - "case-teams" - "casefeed" - "casemilestone" - "categories" - "certificates" - "certification" - "change-password" - "change-set" - "character-encoding" - "charts" - "chatter" - "chatter-answers" - "chatter-conversation" - "chatter-feed" - "chatter-feed-tracking" - "chatter-file" - "chatter-groups" - "chatter-mobile" - "chatter-questions" - "chattermessage" - "checkmarx" - "checkpoint" - "chrome" - "ci" - "class" - "clickjacking" - "clicktools" - "client-id" - "clone" - "closedate" - "cloud" - "code" - "code-coverage" - "code-scan" - "collection" - "color-picker" - "commandbutton" - "commandline" - "commandlink" - "comminity" - "community" - "compact-layout" - "component" - "composite-app" - "concurrency" - "conditional" - "configuration" - "conga" - "connect-api" - "connect-for-outlook" - "connect-in-apex" - "connected-apps" - "console" - "contact" - "contactbuilder" - "content" - "content-delivery" - "content-search" - "contentdocument" - "contenttype" - "contentversion" - "context" - "continuous-integration" - "contracts" - "controller" - "controller-extension" - "conversion" - "convert" - "cookies" - "cordova" - "cors" - "count" - "country-and-state" - "cpu" - "cpulimit" - "create-records" - "criteria" - "criteria-based-sharing" - "critical-update" - "crmfusion" - "cron" - "cross-domain" - "cross-filter" - "crud" - "crypto" - "csrf" - "css" - "css3" - "csv" - "cti" - "curl" - "currency" - "currencytype" - "current-user" - "custom" - "custom-actions" - "custom-button" - "custom-console-components" - "custom-controller" - "custom-domain" - "custom-field" - "custom-fiscal-year" - "custom-index" - "custom-link" - "custom-object" - "custom-profile" - "custom-report-type" - "custom-url" - "custom-view" - "customer-community" - "customer-portal" - "customization" - "customlabel" - "customsetting" - "d3" - "dashboard" - "data" - "data-category" - "data-export" - "data-loader" - "data-migration" - "data-model" - "data-repeater" - "data-skew" - "data-storage" - "data-synchronization" - "data-types" - "data.com" - "database" - "database.com" - "dataextensions" - "datatable" - "date" - "datetime" - "dbamp" - "debug" - "debugging" - "decimal" - "decrypt" - "default-value" - "defaults" - "delegate" - "delegated-authentication" - "delete" - "delete-field-beta" - "dependent-picklist" - "deploy" - "deployment" - "deprecation" - "describefieldresult" - "describesobject" - "deserialize" - "design" - "design-patterns" - "destructivechanges.xml" - "detail" - "detail-page" - "dev401" - "dev501" - "developer" - "developer-console" - "developer-edition" - "developer-productivity" - "developername" - "diagram" - "dml" - "dmlexception" - "doctype" - "document" - "documentation" - "docusign" - "double" - "dreamforce" - "dupeblocker" - "duplicate" - "duplicate-check" - "dynamic" - "dynamic-binding" - "dynamic-dml" - "dynamic-soql" - "dynamic-sosl" - "dynamic-style" - "dynamic-vf-component" - "dynamic-visualforce" - "eclipse" - "editions" - "editor" - "email" - "email-alert" - "email-relay" - "email-template" - "email-to-case" - "email-validation" - "email2case" - "email2contact" - "email2lead" - "emailmessage" - "emailtosalesforce" - "embedded" - "empty" - "encoding" - "encodingutil" - "encryption" - "enterprise" - "entitlements" - "entitysubscription" - "environment-hub" - "error" - "error-messages" - "errormessages" - "escape" - "etl" - "event" - "excel" - "exception" - "execute-anonymous" - "executioncontext" - "extension" - "external-app" - "external-data-source" - "external-objects" - "externalid" - "facebook" - "fact-map" - "fail" - "failing-tests" - "fax" - "feature-activation" - "federated-authentication" - "feed-based-layout" - "feedback" - "feedcomment" - "feeditem" - "feedlayout" - "field-dependencies" - "field-history" - "field-level-security" - "field-mapping" - "field-update" - "fields" - "fieldsets" - "file-processing" - "file-storage" - "filters" - "flexipages" - "flow" - "fls" - "flying-saucer" - "folder" - "follow" - "font" - "for-update" - "force-cli" - "force.com" - "force.com-embedded" - "force.com-explorer" - "force.com-ide" - "force.com-sites" - "forcetk" - "forecast" - "foreign-key" - "forgot-your-password" - "form" - "formatting" - "formula" - "formula-field" - "ftp" - "fubar" - "fuel" - "fuel-sdk" - "future" - "generics" - "geolocation" - "getcontent" - "ghost" - "git" - "github" - "global-actions" - "global-methods" - "global-search" - "global-variables" - "google" - "google-apps" - "google-drive" - "google-map" - "governorlimits" - "grant-login" - "grant-login-access" - "graph" - "group-by" - "group-by-rollup" - "group-edition" - "guest-user" - "hashcode" - "hashmap" - "header-bar" - "heap" - "help" - "helptext" - "heroku" - "hierarchy" - "high-volume-portal" - "history-tracking" - "holidays" - "home-page-component" - "html" - "html2canvas" - "html5" - "http" - "httpcalloutmock" - "httprequest" - "httpresponse" - "hubexchange" - "hvcp" - "hvpu" - "hybrid" - "hybrid-remote" - "i18n" - "id" - "id-comparison" - "ide" - "ideas" - "identity" - "ie10" - "ie8" - "iframe" - "image-formula" - "images" - "import" - "import-wizard" - "inappbrowser" - "inboundservices" - "include" - "indexing" - "informatica" - "inheritance" - "inline" - "inline-visualforce" - "inlineeditsupport" - "inner" - "inputcheckboxes" - "inputfield" - "inputsecret" - "inputtext" - "insert" - "install" - "insufficient-privileges" - "integration" - "interface" - "internal-server-error" - "internet-explorer" - "invalid" - "ionoic" - "ios" - "ip-whitelisting" - "ipad" - "isv" - "iterable" - "iteration" - "janrain" - "java" - "javascript" - "javascript-remoting" - "jenkins" - "job" - "jobs" - "joined-reports" - "joins" - "journeybuilder" - "jquery" - "jquerymobile" - "json" - "junction-object" - "junctionobj" - "key" - "knowledge" - "label" - "landing-page" - "language" - "largedatavolumes" - "latitude" - "layout" - "lazy-loading" - "ldv" - "lead-auto-response" - "lead-conversion" - "leads" - "learning" - "libraries" - "librarymember" - "licenses" - "lightning-apps" - "lightning-components" - "lightning-connect" - "limits" - "list" - "list-button" - "list-metadata" - "list-view" - "liveagent" - "lma" - "lmo" - "locale" - "localization" - "locking" - "logging" - "login" - "login-errors" - "logo" - "long-text-area" - "longitude" - "lookup" - "lookup-filter" - "loop" - "mac-os-x" - "mail-merge" - "managed" - "managed-extension" - "managed-package" - "management" - "map" - "mapquest" - "marketing-cloud" - "massemailmessage" - "master-detail" - "math" - "matrix" - "mavensmate" - "merge" - "merge-field" - "metadata" - "metadata-api" - "method" - "microsites" - "migration" - "migration-tool" - "mini-page-layout" - "mobile" - "mobileconnect" - "mobilepush" - "mobilepush-android" - "mobilepush-ios" - "mobilesdk" - "mock" - "mousehover" - "ms-exchange" - "multi-currency" - "multi-select" - "mustache.js" - "mydomain" - "namespace" - "navigation" - "nested" - "new" - "new-account" - "nforce" - "node-salesforce" - "node.js" - "nonprofit-starter-pack" - "notes" - "notification" - "npsp" - "null-pointer" - "number" - "oauth" - "oauth2" - "object" - "oem" - "office-connect" - "offline" - "onchange" - "oneone.app" - "oob" - "open-id-connect" - "open-source" - "opencti" - "operators" - "opp-lineitemschedule" - "opportunity" - "opportunity-for-portal" - "opportunity-history" - "opportunity-lineitem" - "opportunity-split" - "opportunity-teams" - "opportunitycontactrole" - "opportunitypartner" - "optimisation" - "oracle" - "order" - "order-of-execution" - "orderitem" - "org" - "org-wide-defaults" - "outer-join" - "outlook" - "outputfield" - "outputlink" - "outputpanel" - "outputtext" - "overflow" - "owd" - "ownership" - "package" - "package-install" - "package.xml" - "page" - "page-layout" - "page-messages" - "page-template" - "pageblock" - "pageblocksection" - "pageblocktable" - "pagelayoutassignment" - "pagemessages" - "pagereference" - "pagination" - "panelgrid" - "parameters" - "pardot" - "parser" - "partner" - "partner-communities" - "partner-portal" - "partner-wsdl" - "passwords" - "patch" - "paypal" - "pdf" - "performance" - "permission-sets" - "permissions" - "person-accounts" - "phonegap" - "php" - "picklist" - "pilot" - "platform-bug" - "playbooks" - "polymorphic" - "polymorphism" - "popup" - "portal" - "post" - "postinstall" - "postman" - "pre-chat" - "pre-release" - "prefill" - "pricebook" - "pricing" - "printable" - "printpdf" - "privileges" - "process-builder" - "production" - "professional-edition" - "profile" - "profile-based-rollout" - "project" - "provisioning" - "public-group" - "public-solutions" - "publisher" - "publisher-action" - "purchasing" - "push-major" - "push-upgrade" - "pushtopic" - "python" - "query" - "query-editor" - "queue" - "queueable-interface" - "quickbooks" - "quickbooks-api" - "quota" - "quote" - "quotelineitem" - "radian6" - "radio-button" - "read-only" - "record" - "record-access-level" - "record-type" - "recursion" - "recycle-bin" - "redirect" - "reference" - "reflected-xss" - "reflection" - "refresh" - "refresh-token" - "registration" - "regular-expressions" - "related-list" - "relationships" - "release" - "remote-access" - "remote-action" - "remote-objects" - "remote-site" - "remote-site-settings" - "rendered" - "reparent" - "repeat" - "replaceall" - "reporting" - "reports-api" - "required" - "required-field" - "rerender" - "rest" - "rest-api" - "rest-service" - "returl" - "richtextarea" - "role-hierarchy" - "roles" - "roll-up-summary" - "rollback" - "rolluphelper" - "rounding" - "routing" - "ruby" - "ruby-on-rails" - "rules-engine" - "s-control" - "s2s" - "s3" - "saleforce" - "sales-cloud" - "sales-process" - "salesforce-communities" - "salesforce-crm" - "salesforce-for-outlook" - "salesforce-id" - "salesforce-orders" - "salesforce-sdk-android" - "salesforce-sdk-hybrid" - "salesforce-sencha" - "salesforce-support" - "salesforce-to-salesforce" - "salesforce1-app" - "salesforce1-platform" - "salesforce2salesforce" - "salesforcemobilesdk-ios" - "salesforcesdk" - "salesforcetouchplatform" - "saml" - "sampledata" - "sandbox" - "sandbox-refresh" - "saoql" - "save-and-new" - "savepoint" - "schedule" - "schedulebatch" - "scheduled" - "scheduled-apex" - "scheduled-job" - "schema" - "schema-builder" - "scim" - "scrolling" - "sdk" - "sdlc" - "search" - "search-layout" - "secur" - "security" - "security-review" - "security-scanner" - "security-token" - "selectivity" - "selectlist" - "selectoption" - "selectradio" - "selenium" - "send-email" - "sequential" - "serialization" - "serialize" - "service" - "service-cloud-console" - "servicecloud" - "session" - "set" - "setup" - "sf1" - "sfdc" - "sfdc-styleguide" - "sfdcmobilesdk-android" - "sfrestrequest" - "shared-activities" - "sharerecord" - "sharing" - "sharing-sets" - "sidebar" - "single-sign-on" - "singleemailmessage" - "site.com" - "siteforce" - "sites" - "size" - "skuid" - "skuid-filter" - "skuid-model" - "smartquery" - "smartstore" - "soap" - "soap-api" - "sobject" - "sobjectfield" - "sobjecttype" - "social-contacts" - "social-content" - "socialpersona" - "socialpost" - "solutions" - "soql" - "soql-injection" - "soql-limit-exception" - "sosl" - "sourcecontrol" - "spring14" - "spring15" - "ssjs" - "ssl" - "standard-objects" - "standardcontroller" - "standardsetcontroller" - "stateful" - "static-resources" - "stored-xss" - "streaming-api" - "string" - "string-methods" - "styleclass" - "stylesheets" - "sublime" - "subtab-apps" - "subversion" - "summer-13" - "summer14" - "support" - "survey" - "sync" - "syntax-highlighting" - "system" - "system-fields" - "systemmodstamp" - "tab" - "table" - "tabpanel" - "tag" - "talend" - "task-recurrence" - "tasks" - "territory" - "territory-management" - "test-data-isolation" - "time" - "time-based-token-keys" - "time-dependent-workflow" - "timeout" - "timepicker" - "timezone" - "tooling-api" - "tools" - "topics" - "touch" - "training" - "transaction" - "translation" - "translation-workbench" - "trial" - "trialforce" - "trigger" - "triggerbusiness-logic" - "triggercontext" - "trust" - "try-catch" - "twilio" - "typecast" - "ui" - "undelete" - "uninstall" - "unique-field" - "unit-test" - "unmanaged-package" - "untagged" - "update" - "upload" - "upsert" - "url" - "urlfor" - "urlhacking" - "urlrewriter" - "use-case" - "user" - "user-activation" - "user-admin" - "user-interface" - "user-management" - "user-record" - "user-registration" - "user.id" - "userlicense" - "userrecordaccess" - "validation" - "validation-rule" - "veeva" - "version-control" - "versioning" - "vffiddle" - "video" - "view" - "viewstate" - "visaualforce" - "visuaforce" - "visual-flows" - "visual-workflow" - "visualforce" - "visualforce-area" - "visualforce-charting" - "visualforce-component" - "visualforce-tab" - "visualforce-template" - "vote" - "wdf" - "web" - "web-tab" - "web2case" - "web2lead" - "webserverflow" - "webservicemock" - "webservices" - "website-integration" - "whitelisting" - "windows7" - "windows8" - "winter14" - "winter15" - "workbench" - "workflow" - "workflowoutboundmessage" - "wrapper" - "wrapper-class" - "wsc" - "wsdl" - "wsdl2apex" - "wtf" - "xcode" - "xml" - "xss" - "zip" - "zone") diff --git a/data/tags/scicomp.el b/data/tags/scicomp.el deleted file mode 100644 index b109942..0000000 --- a/data/tags/scicomp.el +++ /dev/null @@ -1,307 +0,0 @@ -("3d" - "accuracy" - "adaptive-mesh-refinement" - "admm" - "advection" - "advection-diffusion" - "advice" - "algorithms" - "approximation-algorithms" - "architecture" - "arpack" - "assembly" - "automatic-differentiation" - "b-spline" - "backward-stability" - "banded-matrix" - "basis-set" - "benchmarking" - "biology" - "biophysics" - "blas" - "block-decomposition" - "boundary-conditions" - "c" - "c++" - "cdr-equation" - "cfd" - "cfl" - "closest-point" - "cloud-computing" - "cluster-computing" - "collocation" - "combinatorics" - "compiling" - "complex" - "complex-analysis" - "complexity" - "computational-biology" - "computational-chemistry" - "computational-geometry" - "computational-mechanics" - "computational-physics" - "computer-arithmetic" - "computer-vision" - "comsol" - "condition-number" - "conditioning" - "conjugate-gradient" - "conservation" - "constrained" - "constrained-optimization" - "constraints" - "convergence" - "convex-hull" - "convex-optimization" - "coupling" - "crank-nicolson" - "cuda" - "curve-fitting" - "cvx" - "data-analysis" - "data-handling" - "data-management" - "data-sets" - "data-storage" - "data-structures" - "data-visualization" - "debugging" - "delaunay-triangulation" - "dense-matrix" - "density-functional-theory" - "derivative-free" - "diffusion" - "dimensional-analysis" - "discontinuous-galerkin" - "discretization" - "documentation" - "domain-decomposition" - "education" - "efficiency" - "eigen" - "eigensystem" - "eigenvalues" - "electromagnetics" - "electromagnetism" - "elemental" - "elements" - "elliptic-pde" - "epidemiology" - "error-estimation" - "exascale" - "explicit-methods" - "extrapolation" - "factorization" - "fem" - "fenics" - "fftw" - "finite" - "finite-difference" - "finite-element" - "finite-volume" - "floating-point" - "fluent" - "fluid" - "fluid-dynamics" - "fmi" - "fortran" - "fourier-analysis" - "fourier-transform" - "genomics" - "geometry" - "gmres" - "gmsh" - "gnuplot" - "gpu" - "graph-theory" - "greens-function" - "grid" - "harmonic" - "hartree-fock" - "helmholtz-equation" - "heuristics" - "high-dimensional" - "homework" - "hough" - "hpc" - "humor" - "hyperbolic-pde" - "image-processing" - "implicit-methods" - "incompressible" - "information-theory" - "input" - "installing" - "integral-equations" - "intel-mkl" - "interpolation" - "interval-arithmetic" - "inverse" - "inverse-problem" - "io" - "iterative-method" - "jacobian" - "journals" - "julia" - "kernel-density-estimator" - "krylov-method" - "laminar-flow" - "languages" - "lapack" - "least-squares" - "libraries" - "library" - "linear" - "linear-algebra" - "linear-programming" - "linear-solver" - "linear-system" - "local-coordinates" - "lu" - "machine-learning" - "maple" - "mapping-strategy" - "master-equation" - "mathematica" - "matlab" - "matrices" - "matrix" - "matrix-equations" - "matrix-free" - "maxwell" - "me57" - "memory-management" - "mesh" - "mesh-generation" - "mesh-traversal" - "meshless-methods" - "method-of-lines" - "microfluidics" - "mixed-integer-programming" - "mkl" - "model" - "modeling" - "molecular-dynamics" - "molecular-mechanics" - "monte-carlo" - "mpi" - "multicore" - "multigrid" - "multiphysics" - "multiscale" - "mutual-information" - "navier-stokes" - "nearest-neighbors" - "neuroscience" - "newton" - "newton-method" - "nonconvex" - "nonlinear-algebra" - "nonlinear-equations" - "nonlinear-programming" - "nullspace" - "numerical" - "numerical-analysis" - "numerical-modelling" - "numerics" - "numpy" - "octave" - "ode" - "ols" - "oop" - "open-source" - "opencl" - "openfoam" - "openmodelica" - "operator-splitting" - "optimal-control" - "optimization" - "oscillations" - "parabolic-pde" - "parallel-computing" - "paraview" - "partitioning" - "pattern-recognition" - "pbs" - "pdb" - "pde" - "performance" - "petsc" - "plotting" - "poisson" - "polynomials" - "posteriori" - "precision" - "preconditioning" - "probability" - "profiling" - "programming-paradigms" - "projection" - "publications" - "python" - "quadratic-programming" - "quadrature" - "quantum-mechanics" - "r" - "random" - "random-number-generation" - "random-sampling" - "rank" - "reference-request" - "regression" - "reproducibility" - "roots" - "runge-kutta" - "sage" - "scalapack" - "scaling" - "scipy" - "self-similarity" - "semidefinite-programming" - "signal-processing" - "simulation" - "singular-perturbation" - "smoothing" - "software" - "solver" - "sorting" - "sparse" - "spatial-data" - "special-functions" - "spectral-method" - "sph" - "spherical-harmonics" - "stability" - "stationary" - "statistics" - "stft" - "stiffness" - "stochastic" - "structural-biology" - "support-vector-machines" - "svd" - "symbolic-computation" - "symmetry" - "tensor" - "tensor-decomposition" - "terminology" - "testing" - "time-harmonic" - "time-integration" - "trilinos" - "umfpack" - "unstructured-mesh" - "untagged" - "update" - "vector" - "vectorization" - "viennacl" - "visualization" - "voronoi-diagrams" - "vortex" - "vtk" - "wave-propagation" - "waveform-relaxation" - "wavelet" - "weka" - "well-posedness") diff --git a/data/tags/scifi.el b/data/tags/scifi.el deleted file mode 100644 index 54ff511..0000000 --- a/data/tags/scifi.el +++ /dev/null @@ -1,1637 +0,0 @@ -("1001-nights" - "1632-ring-of-fire" - "1984" - "2000ad" - "2001" - "2010" - "2012" - "2312" - "70s" - "80s" - "90s" - "a-canticle-for-leibowitz" - "a-deepness-in-the-sky" - "a-fire-upon-the-deep" - "a-memory-of-light" - "a-new-hope" - "a-song-of-ice-and-fire" - "a-storm-of-swords" - "a-wrinkle-in-time" - "accent" - "acheron" - "actor-identification" - "actors" - "adam-warlock" - "adamantium" - "adaptation-comparison" - "adaptations" - "adventure-time" - "afro-samurai" - "after-earth" - "age" - "age-of-extinction" - "age-of-ultron" - "agents-of-shield" - "ai-2001" - "ai-war" - "aladdin" - "alan-moore" - "alastair-reynolds" - "albus-dumbledore" - "alcatraz" - "alfred" - "alice" - "alice-in-wonderland" - "alien-1979" - "alien-3-1992" - "alien-abduction" - "alien-franchise" - "alien-invasion" - "alien-resurrection-1997" - "alien-vs.-predator" - "aliens" - "aliens-1986" - "all-new-x-men" - "all-you-need-is-kill" - "allegory" - "almost-human" - "alphas" - "alter-ego" - "alternate-history" - "alternate-realities" - "alternate-world" - "amadeus-cho" - "amber" - "american-gods" - "amory-wars" - "amy-pond" - "an-unexpected-journey" - "anathem" - "ancestry" - "ancient-races" - "andorian" - "andre-norton" - "androids" - "andromeda" - "andy-weir" - "angband" - "angel" - "animal-farm" - "animals" - "animaniacs" - "animatrix" - "anime" - "animorphs" - "anita-blake" - "anne-bishop" - "anne-mccaffrey" - "anne-rice" - "another-earth" - "apocalypse" - "apotheosis" - "apparition" - "appearance" - "aquaman" - "aquanox" - "ar-tonelico" - "archimedean-dynasty" - "architecture" - "area51-series" - "ark-of-the-covenant" - "arkenstone" - "armor-book" - "armstrong-and-archer" - "armus" - "army-of-darkness" - "arrow" - "art" - "artemis-fowl" - "arthur-c-clarke" - "arthurian" - "artificial-intelligence" - "artistic-representation" - "ascension" - "asgardians" - "assassins-creed" - "assiti-shards" - "astrid-lindgren" - "astrobiology" - "astronauts" - "astronomic-catastrophe" - "astronomy" - "atlantis" - "attack-of-the-clones" - "audio-book" - "author-identification" - "authors" - "availability" - "avatar" - "avatar-the-last-airbender" - "avengers" - "avengers-initiative" - "avengers-vs-x-men" - "awards" - "azkaban" - "azog" - "b-movies" - "babelfish" - "babylon-5" - "back-to-the-future" - "backstory" - "bad-wolf" - "barbara-erskine" - "barbara-gordon" - "barsoom" - "based-on" - "basilisk" - "batgirl" - "batman" - "batman-begins" - "batman-beyond" - "batman-inc" - "batman-returns" - "battle-of-five-armies" - "battlefield-earth" - "battleship" - "battlestar-galactica-1978" - "battlestar-galactica-2004" - "battletech" - "beagalltach" - "beast-boy" - "beast-wars" - "beauty-and-the-beast" - "bechdel-test" - "behind-the-scenes" - "being-human" - "being-human-us" - "ben-10" - "bender" - "bene-gesserit" - "beorn" - "beowulf" - "berserker" - "bewitched" - "beyond-two-souls" - "big-hero-6" - "big-trouble-little-china" - "bill-and-ted" - "bill-the-galactic-hero" - "biology" - "bionicle" - "bioshock" - "blackest-night" - "blade" - "blade-runner" - "blakes-7" - "bleach" - "boba-fett" - "body-parts" - "boe" - "book-of-eli" - "book-of-swords" - "book-synopsis" - "book-vs-movie" - "books" - "books-of-magic" - "boom-studios" - "borg" - "borges" - "bounty-hunters" - "brain" - "brainiac" - "bram-stoker" - "brandon-sanderson" - "bravest-warriors" - "bree" - "brian-herbert" - "bridge-to-terabithia" - "brisco-county-jr" - "broadcast" - "bromeliad-trilogy" - "buck-rogers" - "buckaroo-banzai" - "buffy" - "bumblebee" - "burning-island" - "butterfly-effect" - "c-3po" - "c-canon" - "c-j-cherryh" - "cadillacs-and-dinosaurs" - "cahills-vs-vespers" - "cameo" - "canon" - "caprica" - "captain-america" - "captain-america-tws" - "captain-future" - "captain-jack" - "captain-kirk" - "captain-planet" - "captain-scarlet" - "carl-sagan" - "cartoon" - "castlevania" - "catching-fire" - "cats-cradle" - "centaurs" - "chacha-chaudhary" - "chalion" - "chameleon-circuit" - "character-development" - "character-identification" - "character-motivation" - "characters" - "charles-stross" - "charlie-and-the-chocolate" - "chernobog" - "chew" - "chewbacca" - "children" - "childrens-novel" - "china-mieville" - "choose-your-own-adventure" - "chrestomanci" - "christian" - "christopher-paolini" - "chronicle" - "chronological-order" - "chronology" - "chuck" - "cinderella" - "circle-universe" - "cities-of-the-red-night" - "city" - "classic-sci-fi" - "climate" - "cloaking" - "clockwork-orange" - "clones" - "clothing" - "cloud-atlas" - "cloudy-with-meatballs" - "co-dominium-series" - "codex" - "codex-alera" - "cold-war" - "comics" - "comixology" - "commonwealth-saga" - "communication" - "comparison" - "composition" - "computers" - "conan" - "connie-willis" - "consider-phlebas" - "constantine" - "contagion" - "continuity" - "continuum" - "conventions" - "copyright" - "coraline" - "costume" - "count" - "cover-art" - "cowboy-bebop" - "cranial-ridges" - "crime" - "crossovers" - "crusher" - "cryptonomicon" - "cs-lewis" - "cthulhu-mythos" - "currency" - "cybermen" - "cyberpunk" - "cyborg" - "cyclops" - "cylon" - "dada" - "dalek" - "dan-simmons" - "daniel-keys-moran" - "daniel-suarez" - "dante-aligheri" - "daredevil" - "dark-angel" - "dark-arts" - "dark-city" - "dark-horse-comics" - "dark-hunter" - "dark-knight" - "dark-knight-film" - "dark-knight-rises" - "dark-magic" - "dark-metropolis" - "dark-of-the-moon" - "dark-star" - "dark-tower" - "darth-sidious" - "darth-vader" - "david-brin" - "david-eddings" - "david-gerrold" - "david-weber" - "day-of-the-doctor" - "dc-comics" - "dc-movies" - "dcau" - "dead-like-me" - "deadpool" - "deadzone" - "dean-koontz" - "death" - "death-eaters" - "death-note" - "death-star" - "deathly-hallows" - "deep-impact" - "deep-ones" - "deep-rising" - "defence" - "defenders" - "defiance" - "deflector" - "deja-vu" - "deleted-scenes" - "dementors" - "demolition-man" - "demons" - "demons-souls" - "der-ring-des-nibelungen" - "desolation-of-smaug" - "despicable-me" - "deus-ex" - "device" - "diablo" - "diamond-age" - "diamond-comics" - "dianawynnejones" - "dinobots" - "dinosaurs" - "dirk-gently" - "discworld" - "disney" - "district-9" - "divergent" - "djinni" - "dobby" - "doctor-strange" - "doctor-who" - "doctor-who-movie" - "dogma" - "dollhouse" - "dolores-umbridge" - "dominion" - "dominion-war" - "donkey-kong" - "doom" - "doom-3" - "doomsday" - "doomsday-book" - "dopplegangers" - "dora-the-explorer" - "douglas-adams" - "dracula" - "dracula-untold" - "dragaera" - "dragon-age" - "dragonball" - "dragonball-gt" - "dragonball-z" - "dragonlance" - "dragons" - "drax-the-destroyer" - "dreams" - "dredd" - "droids" - "duke-nukem" - "dune" - "dungeons-and-dragons" - "dwarves" - "dyson-sphere" - "dystopia" - "e-e-smith" - "earth-2" - "earth-final-conflict" - "earthsea" - "economics" - "edain" - "edgar-rice-burroughs" - "edge-chronicles" - "edge-of-tomorrow" - "education" - "el-shaddai" - "elantris" - "elder-wand" - "elizabeth-moon" - "elves" - "elysium" - "emberverse" - "empire" - "empire-from-the-ashes" - "encyclopedia" - "enders-game" - "endor" - "enemy-mine" - "energy" - "engineering" - "entertainment-industry" - "ents" - "environment" - "episode-identification" - "equestria-girls" - "equilibrium" - "erfworld" - "eric-flint" - "eru" - "escape-from-new-york" - "et-the-extra-terrestrial" - "ethics" - "etrian-odyssey-series" - "etymology" - "eugenics" - "eureka" - "evangelion" - "event-horizon" - "evil-dead-2" - "evolution" - "ewoks" - "ex-heroes" - "exotic-matter" - "expanded-universe" - "expanse" - "extended-universe" - "extraordinary-gentlemen" - "extrasensory-perception" - "eye-of-the-world" - "fables-comics" - "fairest" - "fairy" - "fairy-tales" - "falcon" - "fall-of-five" - "falling-skies" - "fallout" - "family-guy" - "fanfic" - "fans" - "fantastic-four" - "fantastic-voyage" - "fantasy-genre" - "fantomex" - "farscape" - "federation" - "felix-gilman" - "fellowship-of-the-ring" - "female-characters" - "feminism" - "ferengi" - "fictional-fight-style" - "fifth-element" - "final-fantasy" - "final-fight" - "firefly" - "first-contact" - "flash-forward" - "flash-gordon" - "flashpoint-paradox" - "flight-of-the-navigator" - "flux-capacitor" - "flying-brooms" - "fma-brotherhood" - "folklore" - "food" - "forbidden-planet" - "foreshadowing" - "forever" - "forgotten-realms" - "forsaken" - "foundation" - "fractal-prince" - "frank-herbert" - "frankensteins-monster" - "freefall-webcomic" - "freespace-2" - "fringe" - "fritz-leiber" - "frodo" - "frozen" - "ftl-comms" - "ftl-drive" - "fullmetal-alchemist" - "futurama" - "galadriel" - "gallifrey" - "gambling" - "game-of-thrones" - "games" - "gandalf" - "gargoyles-1994" - "gattaca" - "gears-of-war" - "gene-roddenberry" - "gene-wolfe" - "genealogy" - "general-grievous" - "generation-ship" - "genetic-engineering" - "genetics" - "genre" - "genre-trope" - "george-lucas" - "george-orwell" - "george-r-r-martin" - "gerry-anderson" - "ghost" - "ghost-in-the-shell" - "ghostbusters" - "gi-joe" - "giger" - "gilgamesh" - "girl-genius" - "gnome" - "goauld" - "goblins-comic" - "godslayer" - "godzilla" - "godzilla-2014" - "golden-compass" - "golem" - "gollum" - "good-against-evil" - "good-omens" - "gotham" - "gothic" - "gotrek-felix" - "government" - "gravity" - "gravity-falls" - "gravity-movie" - "greek-myth" - "green-arrow" - "green-lantern" - "green-lantern-tas" - "green-rider" - "greg-bear" - "greg-keyes" - "gregory-maguire" - "gremlins" - "grimm" - "gringotts" - "groot" - "guardians-of-the-galaxy" - "guild-wars-nightfall" - "guilded-age" - "gundam-wing" - "gunnerkrigg-court" - "h+" - "h-p-lovecraft" - "h-rider-haggard" - "hagrid" - "haldeman" - "half-life" - "halo" - "han-shot-first" - "han-solo" - "hard-sci-fi" - "harlan-ellison" - "harry-potter" - "harry-turtledove" - "haunted-house" - "haven" - "hawkeye" - "he-man" - "health" - "heaven" - "heechee-saga" - "helix" - "hellblazer" - "hellboy" - "hellraiser" - "hellsing-anime" - "hemlock-grove" - "her" - "hercules" - "heroes" - "high-evolutionary" - "highlander" - "highlander-franchise" - "highlander2" - "his-dark-materials" - "history" - "history-of" - "hitchhikers-guide" - "hive-mind" - "hobbits" - "hogwarts" - "holiday-special" - "holocron" - "holodeck" - "hologram" - "holy-grail" - "homestuck" - "honey-i-shrunk" - "honorverse" - "horatio-hornblower" - "horcrux" - "horror" - "hoth" - "house-elves" - "house-of-m" - "how-to-train-your-dragon" - "howard-the-duck" - "hp-methods-of-rationality" - "hugh-howey" - "humanoid" - "humor" - "hunter-x-hunter" - "hunters-of-dune" - "hybrid" - "hyperion-cantos" - "hyperspace" - "i-am-legend" - "i-am-number-four" - "i-dream-of-jeannie" - "i-robot" - "iain-m-banks" - "idiocracy" - "idw-comics" - "illustrated-story" - "imager-chronicles" - "imager-portfolio" - "immortality" - "immortals" - "impulse" - "in-time" - "inception" - "independence-day" - "indiana-jones" - "infernal-devices" - "infinity-gauntlet" - "infinity-stones" - "influences" - "inheritance-cycle" - "inhumans" - "inspiration" - "interstellar" - "invincible" - "invisibility-cloak" - "invisible-plane" - "iris" - "iron-druid" - "iron-giant" - "iron-man" - "iron-man-2" - "iron-man-3" - "iron-sky" - "irredeemable" - "isaac-asimov" - "istari" - "j-m-barrie" - "jabba-the-hutt" - "jack-harkness" - "jack-mckinney" - "jack-vance" - "jacqueline-carey" - "jaeger" - "james-bond" - "james-dashner" - "japan" - "jasper-fforde" - "jean-grey" - "jean-le-flambeur" - "jean-luc-picard" - "jean-m-auel" - "jedi" - "jedi-training" - "jeepers-creepers" - "jericho" - "jericho-tv-series" - "jerry-pournelle" - "jgballard" - "jim-butcher" - "jk-rowling" - "jl8" - "joe-abercrombie" - "joe-hill" - "john-carpenter" - "john-carter" - "john-dies-at-the-end" - "john-ringo" - "john-steakley" - "john-varley" - "jojos-bizarre-adventures" - "joss-whedon" - "journey-into-space" - "judge-dredd" - "jules-verne" - "julia" - "julian-may" - "jumanji" - "jumper-movie" - "jurassic-park" - "justice" - "justice-league" - "k-pax" - "kaiju" - "kencyrath" - "khazad-dum" - "kikis-delivery-service" - "kim-harrison" - "kim-stanley-robinson" - "king-kong" - "king-solomons-mines" - "kingdom-hospital" - "klingon" - "knight" - "knight-rider" - "knights-of-sidonia" - "knowing" - "known-space" - "koi-mil-gaya" - "krrish" - "krypton" - "kung-fu-panda" - "kurt-vonnegut" - "kushiel" - "kyle-xy" - "l-e-modesitt" - "l-ron-hubbard" - "land-of-the-dead" - "land-of-the-lost" - "languages" - "larry-niven" - "last-unicorn" - "last-watch" - "laundry-files" - "laurell-k-hamilton" - "laws" - "laws-of-robotics" - "lcars" - "league" - "league-of-legends" - "legend-of-zelda" - "lego-movie" - "leigh-eddings" - "lester-del-rey" - "lev-grossman" - "leviathan-wakes" - "lewis-carroll" - "lex-luthor" - "lexx" - "lgbt" - "liaden" - "life-force" - "life-of-pi" - "lightbringer" - "lightsaber" - "lightsaber-combat" - "lineage" - "literary-analysis" - "location" - "locke-and-key" - "logans-run" - "lois-mcmaster-bujold" - "loki" - "loom" - "looper" - "lord-of-illusions" - "lord-of-the-rings" - "lore" - "lorien-legacies" - "lost" - "lost-girl" - "lost-in-space" - "love" - "love-is-in-the-blood" - "love-story-2050" - "lucy" - "luke-skywalker" - "lunar-the-silver-star" - "lycanthropy" - "mad-eye-moody" - "mad-max" - "madeline-lengle" - "magazine" - "magic" - "magic-the-gathering" - "magical-creatures" - "magical-history" - "magical-items" - "magical-theory" - "magical-transportation" - "magician-king" - "magneto" - "maiar" - "major-victory" - "malazan" - "maleficent" - "man-kzin-wars" - "man-of-steel" - "manga" - "map" - "marcus" - "margaret-atwood" - "mark-danielewski" - "marriage" - "mars" - "martian-manhunter" - "marvel-cinematic-universe" - "marvel-comics" - "marvel-illuminati" - "marvel-unlimited" - "mary-poppins" - "mary-shelley" - "mary-sue" - "mass-effect" - "mass-effect-2" - "mass-effect-3" - "masters-of-the-universe" - "math" - "maximum-ride" - "maze-runner" - "mecha" - "media" - "medieval" - "medusas-daughter" - "megami-tensei" - "megastructure" - "megatron" - "melancholia" - "meme" - "memory" - "memory-sorrow-thorn" - "men-in-black" - "men-in-black-2" - "mercedes-lackey" - "mercy-thomson" - "merlin" - "merlin-bbc" - "metamaterials" - "metaphysics" - "metro-2033" - "mi-go" - "michael-ende" - "michael-marshall-smith" - "michael-moorcock" - "middle-earth" - "midsummer-nights-dream" - "military-sf" - "mind-control" - "minions" - "minority" - "minority-report" - "mira-grant" - "mirror-universe" - "misfits" - "missing-scene" - "mistborn" - "mithril" - "mjolnir" - "mobile-suit-gundam" - "mockingjay" - "mockumentary" - "mogwai" - "mogworld" - "monster-id" - "monsters-inc" - "monsters-u" - "monty-python" - "moon" - "moon-movie" - "moontrap" - "morality" - "moralltach" - "morgoth" - "mork-and-mindy" - "mortal-instruments" - "mortal-kombat" - "mote-series" - "mouse-guard" - "movie" - "mst3k" - "muggles" - "mummy" - "music" - "musical" - "mutant" - "mutant-chronicles" - "my-little-pony" - "my-little-pony-fim" - "myst" - "mysterious-cities-of-gold" - "mystery" - "mythadventures" - "mythology" - "names" - "nanotechnology" - "narnia" - "naruto" - "nazgul" - "neal-stephenson" - "necrons" - "neil-gaiman" - "neuromancer" - "never-let-me-go" - "new-avengers" - "new-krypton-saga" - "newsflesh" - "nexus" - "nick-fury" - "night-angel-trilogy" - "night-watch-cycle" - "nights-dawn-trilogy" - "nightwing" - "noble-dead-saga" - "nolan-batman-trilogy" - "nonlinear-writing" - "norse-gods" - "novel" - "nowhere-man" - "nuclear-man" - "nukes" - "number" - "obi-wan-kenobi" - "object-identification" - "oblivion" - "observers" - "odin" - "old-kingdom" - "old-man-logan" - "old-mans-war" - "omni" - "once-upon-a-time" - "online-resources" - "ontology" - "optimus-prime" - "orbital-mechanics" - "orc" - "order-65" - "order-of-the-stick" - "origins" - "orphan-black" - "orson-scott-card" - "ost" - "outlander" - "oz-the-great-and-powerful" - "pacific-rim" - "pact" - "painted-caves" - "palantiri" - "pandorum" - "pans-labyrinth" - "paradox" - "parallel-universe" - "pariah" - "pathfinder" - "patrick-rothfuss" - "patronus-charm" - "patternist" - "paycheck" - "penny-dreadful" - "percy-jackson" - "pern" - "person-of-interest" - "pet-sematary" - "peter-f-hamilton" - "peter-jackson" - "peter-pan" - "peter-s-beagle" - "phantom-menace" - "phaser" - "philadelphia-experiment" - "philip-jose-farmer" - "philip-k-dick" - "philip-pullman" - "phoenix" - "phylactery" - "physics" - "piensieve" - "piers-anthony" - "pink-floyd" - "pinky-and-the-brain" - "pioneer-one" - "pirates" - "pirates-of-the-caribbean" - "pixar" - "plague" - "planet-of-the-apes" - "planetary" - "planets" - "plants-vs-zombies" - "player-of-games" - "plot" - "plot-device" - "plot-explanation" - "plot-inconsistency" - "podkayne-of-mars" - "poetry" - "pokemon" - "poker" - "politics" - "pontypool" - "popular-culture-impact" - "portal" - "portal-2" - "post-apocalyptic" - "potions" - "power-rangers" - "power-rangers-in-space" - "powers" - "practical-magic" - "preacher" - "predator" - "predestination" - "prediction" - "pregnancy" - "prehistoric" - "prequels" - "prime-directive" - "primer" - "primeval" - "prince-of-power" - "princess-leia" - "princess-tutu" - "printing" - "production" - "prolong" - "prometheus" - "promotion" - "prophecy" - "props" - "propulsion" - "psionic-powers" - "psychic" - "psychology" - "publishing" - "pulp" - "pushing-daisies" - "pyramids" - "q-bert" - "quake" - "quantum-leap" - "quantum-physics" - "quantum-thief" - "quarantine" - "qui-gon-jinn" - "quicksilver" - "quidditch" - "quiet-earth" - "quotes" - "r.i.p.d" - "r2-d2" - "races" - "radio-play" - "rainbows-end" - "rasputin" - "raw-shark-texts" - "ray-bradbury" - "raymond-e-feist" - "ready-player-one" - "real-identity" - "real-location" - "real-steel" - "real-world" - "recipes" - "record-of-lodoss-war" - "recurring-themes" - "red-dwarf" - "red-faction" - "red-sonya" - "redwall" - "reference" - "regeneration" - "reign-of-fire" - "reincarnation" - "religion" - "rendezvous-with-rama" - "replicator" - "resident-evil" - "retcon" - "revelation-space" - "revenge-of-the-fallen" - "revenge-of-the-sith" - "revision" - "revolt-in-the-stars" - "revolution" - "rick-riordan" - "riftwar-cycle" - "ring" - "ring-2" - "rings-of-power" - "ringworld" - "river-song" - "riverworld" - "roald-dahl" - "robert-a-heinlein" - "robert-e-howard" - "robert-holdstock" - "robert-jordan" - "robert-reed" - "robert-silverberg" - "robin" - "robin-hobb" - "robocop" - "robocop-1987" - "robocop-2014" - "robopocalypse" - "robots" - "rocky-horror-picture-show" - "roger-zelazny" - "rogue" - "roleplaying" - "romana" - "romantic-interest" - "romero" - "rpg" - "rumors" - "runaways" - "russian" - "s-m-stirling" - "saga" - "saga-of-the-exiles" - "sally-lockhart-mysteries" - "sanctuary" - "sandman" - "sandworm" - "santa-claus" - "sara-douglass" - "sarah-connor" - "sarah-connor-chronicles" - "sarah-tolerance" - "saruman" - "saturns-children" - "sauron" - "scanner-darkly" - "schlock" - "schlock-mercenary" - "science" - "science-fiction-genre" - "scott-pilgrim" - "scp-173" - "scp-foundation" - "seaquest" - "season-finale" - "secret-history" - "secret-identity" - "segments" - "sentience" - "sentinel-prime" - "sequel" - "serenity" - "sergei-lukyanenko" - "series" - "serpentwar-saga" - "setting" - "seven-of-nine" - "severus-snape" - "sexuality" - "sff-references" - "shadow-of-mordor" - "shadowfax" - "shadows-of-the-apt" - "shakespeare" - "shaktimaan" - "shape-shifter" - "shared-universe" - "sharknado" - "shield" - "shielding" - "shopping" - "short-stories" - "shrek" - "silmarillion" - "silver-samurai" - "silver-surfer" - "singularity" - "sister-claire" - "sith" - "six-million-dollar-man" - "skin-games" - "skin-horse" - "skullduggerypleasant" - "sky-captain" - "skynet" - "skyrim" - "sleepy-hollow" - "sliders" - "slow-regardsilent-things" - "slughorn" - "smallville" - "smaug" - "smoke-and-mirrors" - "smurfs" - "snow-crash" - "snowpiercer" - "society" - "socioeconomics" - "sociopathy" - "soft-sci-fi" - "solar-system" - "song-of-susannah" - "sonic-the-hedgehog" - "sorcerors-apprentice" - "sorting-hat" - "soul-gem" - "souls" - "sound" - "source-code" - "space" - "space-cadet" - "space-colonization" - "space-combat" - "space-cop" - "space-exploration" - "space-invaders" - "space-pirates" - "space1999" - "spaceship" - "spawn" - "speaker-for-the-dead" - "special-effects" - "speed-of-light" - "spells" - "spider-man" - "spirited-away" - "spock" - "spoilers" - "spot-the-cat" - "sprawl-trilogy" - "squib" - "stanislaw-lem" - "star-control-2" - "star-trek" - "star-trek-2009" - "star-trek-countdown" - "star-trek-data" - "star-trek-ds9" - "star-trek-enterprise" - "star-trek-first-contact" - "star-trek-iii" - "star-trek-into-darkness" - "star-trek-judgment-rites" - "star-trek-ph2" - "star-trek-q" - "star-trek-tas" - "star-trek-the-doctor" - "star-trek-tng" - "star-trek-tos" - "star-trek-vi" - "star-trek-voyager" - "star-wars" - "star-wars-7" - "star-wars-eu" - "star-wars-holiday-special" - "star-wars-rebels" - "starcraft" - "stardate" - "starfire" - "starfleet-rank" - "stargate" - "stargate-atlantis" - "stargate-movie" - "stargate-sg1" - "stargate-universe" - "starship-troopers" - "starslip-crisis" - "stasis" - "statistics" - "steampunk" - "stephen-baxter" - "stephen-king" - "stephen-r-lawhead" - "steve-perry" - "steven-brust" - "steven-erikson" - "steven-spielberg" - "storm" - "story-arcs" - "story-identification" - "stranger-in-strange-land" - "stranger-than-fiction" - "strata" - "street-fighter" - "strength" - "studio-ghibli" - "subgenre" - "suggested-order" - "sunshine" - "super-8" - "super-hero" - "superboy" - "superconductors" - "supergirl" - "superman" - "superman-brainiac-attacks" - "superman-lives" - "superman-returns" - "supernatural" - "supernatural-abilities" - "susan-cooper" - "suspended-animation" - "sw-the-old-republic" - "sword-of-shannara" - "sword-of-truth" - "swtor" - "sy-fy" - "symbols" - "t-h-white" - "tactics" - "tad-williams" - "talbot-mundy" - "tamora-pierce" - "tamriel" - "tangled" - "tardis" - "taskmaster" - "tattoo" - "tau-zero" - "technology" - "teen-wolf" - "tekken" - "tekwar" - "telekinesis" - "telepathy" - "teleportation" - "terminator" - "terminator-salvation" - "terminator2-judgement-day" - "terminator3" - "terminology" - "terra-nova" - "terraforming" - "terry-goodkind" - "terry-pratchett" - "thai" - "thanos" - "the-10th-kingdom" - "the-13th-reality" - "the-39-clues" - "the-4400" - "the-abyss" - "the-adjustment-bureau" - "the-almighty-johnsons" - "the-amazing-spider-man" - "the-amazing-spider-man-2" - "the-avengers" - "the-belgariad" - "the-black-hole" - "the-box" - "the-cabin-in-the-woods" - "the-chronicles-of-riddick" - "the-clone-wars" - "the-cold-equations" - "the-culture" - "the-death-gate-cycle" - "the-dresden-files" - "the-elder-scrolls" - "the-empire-strikes-back" - "the-event" - "the-first-law" - "the-flash" - "the-flash-2014" - "the-fly" - "the-force" - "the-forever-war" - "the-giver" - "the-gods-themselves" - "the-green-mile" - "the-hobbit" - "the-hollows" - "the-host" - "the-hulk" - "the-hunger-games" - "the-illusionist" - "the-incredible-hulk" - "the-incredibles" - "the-island" - "the-jetsons" - "the-kingkiller-chronicle" - "the-legend-of-korra" - "the-lost-boys" - "the-lost-room" - "the-lottery" - "the-magicians" - "the-master" - "the-matrix" - "the-maxx" - "the-middleman" - "the-new-52" - "the-one-ring" - "the-originals" - "the-pirates-of-dark-water" - "the-prisoner" - "the-puppet-masters" - "the-purge" - "the-reckoners" - "the-road" - "the-ruins" - "the-scar" - "the-secret-circle" - "the-shadow" - "the-shining" - "the-signal" - "the-silence" - "the-simpsons" - "the-stepford-wives" - "the-strain" - "the-terminator-series" - "the-thing" - "the-thing-1982" - "the-thirteenth-floor" - "the-tomorrow-people-2013" - "the-two-towers" - "the-unwritten" - "the-vampire-diaries" - "the-venture-bros" - "the-walking-dead" - "the-windup-girl" - "the-wizard-of-oz" - "the-wolverine" - "the-woman-in-black" - "thedaggerandthecoin" - "theme-music" - "theology" - "they-live" - "third-rock-from-the-sun" - "thor" - "thor-the-dark-world" - "thranduil" - "threshold" - "through-the-looking-glass" - "thunderbirds" - "thundercats" - "thursday-next" - "time" - "time-dilation" - "time-odyssey" - "time-travel" - "time-war" - "timecop" - "timeline" - "timeline-1999" - "timelord" - "tinker-bell" - "titles" - "tmnt" - "tolkien" - "tom-bombadil" - "tom-riddle" - "tom-swift" - "tony-stark" - "top-cow-universe" - "torchwood" - "tortall-universe" - "total-recall" - "total-recall-2070" - "towers-of-midnight" - "toy-story-2" - "toys" - "trade-federation" - "trailer" - "transcendence" - "transformation" - "transformers" - "transhuman" - "translation" - "transmetropolitan" - "transportation" - "transporter" - "transwarp" - "trenzalore" - "triangle" - "triwizard-tournament" - "tron" - "tron-legacy" - "tron-uprising" - "trope" - "trudi-canavan" - "true-blood" - "tv" - "tvtropes" - "twelve-monkeys" - "twilight" - "twilight-watch" - "twilight-zone" - "twin-peaks" - "ufos" - "ultimates" - "uncanny-avengers" - "undead" - "under-the-dome" - "underground-civilization" - "underworld" - "undying-lands" - "unforgivable-curse" - "unicorns" - "units" - "universal-translator" - "untagged" - "uplift" - "urban-fantasy" - "ursula-k-le-guin" - "uss-enterprise" - "v" - "valar" - "valerian-and-laureline" - "valeyard" - "valiant-comics" - "vampire" - "vampire-chronicles" - "vehicles" - "venom" - "venture-bros" - "vernor-vinge" - "vertigo-comics" - "vibranium" - "video-games" - "videssos" - "villains" - "virtual-worlds" - "virus" - "vitals-novel" - "vlad-taltos" - "voldemort" - "volunteer" - "voodoo" - "vorkosigan-saga" - "vulcan" - "wall-e" - "wandlore" - "wanted" - "war-machine" - "war-of-the-worlds" - "warcraft" - "wardstone-chronicles" - "warehouse-13" - "warfare" - "warhammer-fantasy" - "warhammer40k" - "warp" - "watchmen" - "water" - "waterworld" - "weapon" - "webcomics" - "weeping-angels" - "werewolf" - "wheel-of-time" - "wheres-wally" - "wicked" - "wild-cards" - "wildlings" - "wildstorm-comics" - "william-f-wu" - "william-gibson" - "william-s-burroughs" - "willow" - "willy-wonka" - "witch-world" - "witchblade" - "witcher" - "witches" - "wizards" - "wolverine" - "wolverine-and-the-xmen" - "wonder-twins" - "wonder-woman" - "wool" - "worf" - "world-war-z" - "worm-ouroboros" - "wormhole" - "wraiths" - "wreck-it-ralph" - "written" - "x-files" - "x-force" - "x-men" - "x-men-days-of-future-past" - "x-men-last-stand" - "x-men-origins-wolverine" - "x-wing-series" - "x2" - "xanth" - "xcom" - "xena" - "xenoblade-chronicles" - "xenocide" - "xenomorph" - "xindi" - "yafgc" - "yoda" - "you-only-live-twice" - "young-adult" - "young-avengers" - "young-justice" - "yuuzhan-vong" - "zero-hour-series" - "zoidberg" - "zombie" - "zombieland" - "zones-of-thought" - "zork" - "zpm") diff --git a/data/tags/security.el b/data/tags/security.el deleted file mode 100644 index 56f0ee3..0000000 --- a/data/tags/security.el +++ /dev/null @@ -1,684 +0,0 @@ -(".net" - "academia" - "access-control" - "account-lockout" - "active-directory" - "activex" - "adfs" - "aes" - "agile" - "ai" - "air-gap" - "ajax" - "algorithm" - "alternative-data-streams" - "amazon" - "android" - "anomaly-detection" - "anonymity" - "antimalware" - "antivirus" - "apache" - "apparmor" - "appsec" - "apt" - "architecture" - "arm" - "arp-spoofing" - "aslr" - "asn1" - "asp.net" - "asp.net-mvc" - "assembly" - "asymmetric" - "atm" - "attack-prevention" - "attack-vector" - "attacks" - "audio" - "audit" - "authentication" - "authorization" - "automated-testing" - "automation" - "availability" - "awareness" - "azure" - "backdoor" - "backup" - "banks" - "bash" - "batch" - "bcrypt" - "beast" - "binary-code" - "biometrics" - "bios" - "bitcoin" - "bitlocker" - "bitmessage" - "bittorrent" - "black-box" - "black-hat" - "blackberry" - "blowfish" - "bluetooth" - "boot" - "bot" - "botnet" - "browser-extensions" - "browser-hijacking" - "brute-force" - "budget" - "buffer-overflow" - "burp" - "business-risk" - "c" - "c++" - "caching" - "capabilities" - "captcha" - "captive-portal" - "career" - "cctv" - "cdma" - "censorship" - "centos" - "certificate-authority" - "certificate-pinning" - "certificate-revocation" - "certificates" - "certification" - "check-point" - "chrome" - "cipher-selection" - "cisco" - "cisco-ios" - "cissp" - "clean-desk" - "click-fraud" - "clickjacking" - "client" - "client-side" - "clipboard" - "clock" - "clock-skew" - "cloud-computing" - "cms" - "code-review" - "code-signing" - "common-criteria" - "compiler" - "compliance" - "compression" - "conference" - "confidentiality" - "configuration" - "confused-deputy" - "consumer-protection" - "cookies" - "corporate-policy" - "countermeasure" - "cracking" - "credentials" - "credit-card" - "crime" - "crl" - "crossdomain" - "cryptanalysis" - "cryptography" - "csrf" - "css" - "curl" - "custom-scheme" - "cve" - "cve-2014-9294" - "cve-2014-9295" - "cve-2014-9296" - "cvss" - "cyber-warfare" - "cycript" - "darknet" - "data-leakage" - "data-recovery" - "data-remanence" - "databases" - "datacenter" - "dataprotectionscope" - "dbms" - "ddos" - "debugging" - "decryption" - "default-password" - "defense" - "deletion" - "denial-of-service" - "dep" - "des" - "design-flaw" - "desktop" - "destruction" - "detection" - "devops" - "dhcp" - "dictionary" - "diffie-hellman" - "digital-signature" - "directory-traversal" - "disclosure" - "disk-encryption" - "disposal" - "distributed-computing" - "django" - "dlp" - "dm-crypt" - "dmz" - "dns" - "dns-domain" - "dns-spoofing" - "dnssec" - "documents" - "dom" - "domain-admin" - "doors" - "drive-by-download" - "driver" - "drm" - "drupal" - "dsa" - "duqu" - "dvwa" - "e-commerce" - "ecc" - "electronic-voting" - "email" - "email-spoofing" - "embedded-system" - "emet" - "emv" - "encoding" - "encryption" - "end-points" - "end-user" - "entropy" - "enumeration" - "error-handling" - "ethernet" - "ethics" - "exchange" - "exfiltration" - "exploit" - "exploit-development" - "exploit-kits" - "export" - "exposure" - "facebook" - "fax" - "federation" - "file" - "file-access" - "file-encryption" - "file-inclusion" - "file-system" - "file-types" - "file-upload" - "financial" - "fingerprint" - "fingerprinting" - "fips" - "firefox" - "firewalls" - "firmware" - "flash" - "flash-memory" - "flooding" - "forensics" - "format-string" - "forward-secrecy" - "fraud" - "freebsd" - "ftp" - "future-proofing" - "fuzzing" - "gaming" - "gcc" - "geolocation" - "gmail" - "gnupg" - "google" - "google-dorks" - "governance" - "government" - "gpu" - "group-policy" - "grub" - "gsm" - "gssapi" - "hardening" - "hardware" - "hardwareforensics" - "hash" - "healthcare" - "heap-overflow" - "heartbleed" - "hipaa" - "historical" - "history" - "hmac" - "homomorphic-encryption" - "honeypot" - "host-discovery" - "hsm" - "hsts" - "html" - "html-5" - "http" - "http-proxy" - "hydra" - "icmp" - "identification" - "identity" - "identity-management" - "identity-theft" - "ids" - "iis" - "ike" - "imap" - "impact" - "incident-response" - "infection-vector" - "information" - "initialisation-vector" - "injection" - "insider-threats" - "install" - "instant-messaging" - "integrity" - "international" - "internet" - "internet-explorer" - "intrusion" - "investigation" - "ios" - "ip" - "ip-spoofing" - "iphone" - "ipsec" - "iptables" - "ipv6" - "iso27000" - "iso27001" - "java" - "javascript" - "joomla" - "json" - "kali-linux" - "keepass" - "kerberos" - "kernel" - "key-exchange" - "key-generation" - "key-management" - "key-stretching" - "key-usage" - "keychain" - "keyloggers" - "kismet" - "known-vulnerabilities" - "kpi" - "kvm" - "ldap" - "ldap-injection" - "legal" - "library" - "license-enforcement" - "linux" - "local-storage" - "locks" - "logging" - "luks" - "lync" - "mac-address" - "mac-spoofing" - "macosx" - "magnetic-stripe-card" - "malware" - "man-in-the-middle" - "mandatory-access-control" - "manual-review" - "md5" - "memory" - "metasploit" - "meterpreter" - "metrics" - "mixed-content" - "mobile" - "mod-security" - "money" - "mongodb" - "monitoring" - "multi-factor" - "multi-tenancy" - "mutual" - "mysql" - "nat" - "near-field-communication" - "nessus" - "network" - "network-access-control" - "network-scanners" - "nfs" - "nginx" - "nist" - "nmap" - "node.js" - "non-repudiation" - "nonce" - "nosql" - "nsa" - "ntfs" - "ntlm" - "ntp" - "null-byte-injection" - "oauth" - "obfuscation" - "objective-c" - "obscurity" - "ocsp" - "off-the-record" - "office" - "ollydbg" - "one-time-pad" - "one-time-password" - "openbsd" - "opengl" - "openid" - "openid-connect" - "opensource" - "openssl" - "openvpn" - "operating-systems" - "operations" - "opportunistic-encryption" - "oracle" - "os-fingerprinting" - "oscp" - "outsourcing" - "owasp" - "owasp-top-ten" - "p2p" - "p3p" - "package-management" - "packet" - "padlocks" - "passphrase" - "password-management" - "password-policy" - "passwords" - "patching" - "path-injection" - "payment-gateway" - "paypal" - "pbkdf2" - "pci-dss" - "pci-scope" - "pdf" - "peap" - "penetration-test" - "people-management" - "perl" - "permissions" - "persona" - "pgp" - "phishing" - "phone" - "php" - "physical" - "physical-access" - "pkcs11" - "pkcs12" - "plugins" - "port-forwarding" - "port-knocking" - "ports" - "powershell" - "pptp" - "printers" - "privacy" - "privilege-escalation" - "privileged-account" - "prng" - "process" - "professional-education" - "programming" - "protection" - "protocols" - "provisioning" - "proxy" - "proxychains" - "public-key-infrastructure" - "pycrypto" - "python" - "qr-code" - "quantum-computing" - "radius" - "rails" - "rainbow-table" - "random" - "ransomware" - "raspberry-pi" - "rbac" - "rc4" - "rdp" - "reconnaissance" - "recovery" - "reference-request" - "referer" - "reflection" - "regexp" - "regulation" - "reinstall" - "remote-attestation" - "remote-desktop" - "remote-server" - "replay-detection" - "requirements" - "research" - "response-spliting" - "rest" - "restrictions" - "reverse-engineering" - "rfid" - "risk" - "risk-analysis" - "risk-management" - "rootkits" - "router" - "routing" - "rsa" - "ruby" - "safe-browsing" - "salt" - "same-origin-policy" - "saml" - "sandbox" - "satellite" - "scada" - "scripting" - "scrypt" - "sdl" - "secret-sharing" - "secure-coding" - "secure-renegotiation" - "securedelete" - "security-seal" - "security-theater" - "selinux" - "serial" - "server" - "service-account" - "session" - "session-fixation" - "session-management" - "setuid" - "sftp" - "sha" - "sha-3" - "sha2" - "sha256" - "shared-hosting" - "shellcode" - "shellshock" - "side-channel" - "siem" - "signal-analysis" - "silverlight" - "simcard" - "single-page-app" - "single-sign-on" - "sip" - "sitekey" - "skype" - "smartcard" - "smartphone" - "smime" - "sms" - "smtp" - "sniffer" - "snooping" - "snort" - "soc" - "social-engineering" - "software" - "solaris" - "source-code" - "spam" - "spdy" - "spoofing" - "spyware" - "sql-injection" - "sql-server" - "srp" - "ssh" - "sslstrip" - "sso" - "sspi" - "starttls" - "static-analysis" - "statistics" - "steganography" - "storage" - "sub-domain" - "sudo" - "surveillance" - "svg" - "symlink" - "system-compromise" - "take-grant" - "tamper-resistance" - "tampering" - "tcp" - "teamviewer" - "telnet" - "terminal" - "terminology" - "theory" - "third-party" - "threat-mitigation" - "threat-modeling" - "threats" - "time" - "timestamp" - "timing-attack" - "tls" - "tools" - "tor" - "torrent" - "tpm" - "truecrypt" - "trust" - "trusted-computing" - "tunneling" - "twitter" - "typosquatting" - "u-prove" - "uac" - "ubuntu" - "udp" - "uefi" - "unicode" - "unix" - "untagged" - "updates" - "url-redirection" - "usability" - "usb" - "usb-drive" - "user-education" - "user-enumeration" - "user-interface" - "user-management" - "user-names" - "user-tracking" - "validation" - "vehicle" - "vendor-selection" - "viewstate" - "virtual-memory" - "virtualization" - "virus" - "virus-removal" - "vlans" - "voip" - "vpn" - "vulnerabilities" - "vulnerability" - "vulnerability-markets" - "vulnerability-scanners" - "waf" - "wardriving" - "watermark" - "wcf" - "web-application" - "web-browser" - "web-hosting" - "web-of-trust" - "web-scanners" - "web-service" - "webmalware" - "webserver" - "websites" - "websocket" - "wep" - "whitebox" - "whitelist" - "wifi" - "wildcard" - "windows" - "windows-8" - "windows-dpapi" - "windows-permissions" - "windows-phone" - "windows-server" - "windows-to-go" - "windows-vista" - "windows-xp" - "wireless" - "wireshark" - "wordpress" - "wpa2" - "wpa2-eap-psk" - "wpa2-psk" - "wps" - "x.509" - "x11" - "x509" - "x86" - "xampp" - "xml" - "xmpp" - "xss" - "yahoo" - "yubikey" - "zero-day" - "zip") diff --git a/data/tags/serverfault.el b/data/tags/serverfault.el deleted file mode 100644 index 61ec247..0000000 --- a/data/tags/serverfault.el +++ /dev/null @@ -1,5065 +0,0 @@ -(".htaccess" - ".htpasswd" - ".net" - ".net-2.0" - ".net-4.0" - ".net-4.5" - ".net-install" - ".net2.0" - ".net3.5" - ".screenrc" - "10gbethernet" - "10gige" - "11g" - "1and1" - "200" - "301" - "301-redirect" - "32-bit" - "32bit-64bit" - "3750" - "389-ds" - "3com" - "3g" - "3ware" - "400" - "403" - "404" - "443" - "500" - "500-error" - "502" - "502-error" - "503-error" - "504" - "64-bit" - "6rd" - "6to4" - "7zip" - "802.11" - "802.11n" - "802.11u" - "802.1d" - "802.1q" - "802.1x" - "9p" - "a-record" - "aaa" - "ab" - "abuse" - "accelerator" - "acceptance-testing" - "access" - "access-control" - "access-denied" - "access-list" - "access-log" - "access-point" - "access-rights" - "access.log" - "accessibility" - "accident" - "account" - "account-lockout" - "accounting" - "accounts" - "ace" - "acl" - "acpi" - "acrobat" - "acronis" - "act" - "activation" - "active-directory" - "active-ftp" - "activemq" - "activesync" - "activex" - "ad-certificate-services" - "ad-lds" - "adam" - "adaptec" - "adapter" - "addins" - "addon" - "address" - "address-book" - "adduser" - "adfs" - "adhoc-network" - "admin" - "administration" - "administrator" - "administrators" - "adminsdholder" - "adminstration" - "admt" - "ado" - "ado.net" - "adobe" - "adobe-air" - "adobe-reader" - "adsi" - "adsl" - "adsl2" - "adtran" - "aduc" - "advanced-format" - "advantage-database-server" - "advertising" - "aes" - "affinity" - "afp" - "agent" - "aggregation" - "agile" - "aide" - "aik" - "air-conditioning" - "aironet" - "airport" - "aix" - "ajax" - "ajp" - "akamai" - "akismet" - "alcatel-lucent" - "alert" - "alerting" - "alerts" - "alfresco" - "alias" - "aliases" - "alignment" - "alternatives" - "alternatives-to" - "altiris" - "alwayson" - "amanda" - "amavis" - "amazon-ami" - "amazon-beanstalk" - "amazon-cloudformation" - "amazon-cloudfront" - "amazon-cloudwatch" - "amazon-dynamodb" - "amazon-ebs" - "amazon-ec2" - "amazon-elastic-ip" - "amazon-elasticache" - "amazon-elb" - "amazon-glacier" - "amazon-iam" - "amazon-instance-store" - "amazon-linux" - "amazon-linux-ami" - "amazon-rds" - "amazon-route53" - "amazon-s3" - "amazon-ses" - "amazon-vpc" - "amazon-web-services" - "amd" - "amd-v" - "amqp" - "amt" - "anaconda" - "analog" - "analysis" - "analysis-services" - "analytics" - "android" - "annoyance" - "annoying-beep" - "anonymity" - "anonymized" - "anonymous" - "ansi" - "ansible" - "answer-file" - "ant" - "antivirus" - "anycast" - "anyconnect" - "aoe" - "ap" - "apache-1.x" - "apache-2.2" - "apache-2.4" - "apache-ds" - "apache-traffic-server" - "apc" - "apc-smart-ups" - "apcupsd" - "api" - "app" - "app-pools" - "app-v" - "apparmor" - "appcmd" - "appcompat" - "append" - "appfabric" - "appfabric-caching" - "apple" - "apple-ios" - "apple-remote-desktop" - "appliance" - "application" - "application-event-log" - "application-firewall" - "application-packaging" - "application-pool" - "application-pools" - "application-server" - "applications" - "applocker" - "apps" - "apt" - "apt-cache" - "apt-mirror" - "aptitude" - "apxs" - "arcgis" - "arcgis-server" - "arch-linux" - "architecture" - "archive" - "archiving" - "arcserve" - "arguments" - "arm" - "arp" - "arp-poisoning" - "arp-scan" - "arptables" - "arr" - "array" - "aruba" - "as-number" - "ascii" - "asmx" - "asp" - "asp-classic" - "asp.net" - "asp.net-3.5" - "asp.net-ajax" - "asp.net-mvc" - "asp.net-mvc-2" - "asp.net-mvc-3" - "asp.net-mvc-4" - "aspx" - "asr" - "assembly" - "asset-management" - "asset-tracking" - "assignment" - "assp" - "astaro" - "asterisk" - "asterisk-queues" - "asterisknow" - "asus" - "at" - "atd" - "ati" - "atlassian" - "atm" - "atomic" - "attachment" - "attachments" - "attacks" - "attributes" - "audio" - "audit" - "auditd" - "auditing" - "aufs" - "augeas" - "aup" - "authentication" - "authoritative" - "authority" - "authorization" - "auto" - "auto-reply" - "autocad" - "autocomplete" - "autoconfiguration" - "autodiscovery" - "autoforwarding" - "autofs" - "autoincrement" - "autoit" - "autoloader" - "autologon" - "automated" - "automated-install" - "automated-reports" - "automated-testing" - "automatic" - "automatic-updates" - "automaticupdates" - "automation" - "automount" - "autoproxy" - "autorun" - "autoscaling" - "autosys" - "autotools" - "autoupdate" - "autoyast" - "avahi" - "availability" - "avaya" - "avg" - "awe" - "awk" - "aws-cli" - "awstats" - "axis" - "azure" - "backend" - "background" - "background-process" - "backports" - "backtrack" - "backup" - "backup-restoration" - "backup-server" - "backup-solution" - "backup-strategies" - "backupexec" - "backuppc" - "backups" - "backward-compatibility" - "bacula" - "bad-blocks" - "bad-request" - "bandwidth" - "bandwidth-control" - "bandwidth-measuring" - "banner" - "bare-metal" - "barnyard2" - "barracuda" - "bash" - "bashrc" - "basic-unix-commands" - "basics" - "bastion" - "batch" - "batch-conversion" - "batch-file" - "batch-processing" - "battery" - "bazaar" - "bbu" - "bbwc" - "bcc" - "bcdedit" - "bcp" - "bcrypt" - "bdc" - "beaker" - "beep" - "belkin" - "benchmarking" - "benchmarks" - "benefits" - "berkeleydb" - "berkshelf" - "bes" - "bes-express" - "best-practices" - "bgp" - "big-data" - "billing" - "bin" - "binary" - "binary-log" - "bind" - "bindings" - "bing" - "bios" - "bitcoin" - "bitlocker" - "bitnami" - "bits" - "bittorrent" - "biztalk" - "biztalk-2009" - "bkf" - "black-hat" - "blackberry" - "blackberry-enterprise" - "blackberry-server" - "blackhole" - "blacklist" - "blacklist-prevention" - "blade" - "blade-chassis" - "blade-servers" - "bladecenter" - "blades" - "block" - "block-device" - "block-level" - "blocked" - "blocking" - "blog" - "blogging" - "blogs" - "bluecoat" - "bluehost" - "bluetooth" - "bmc" - "bogofilter" - "bonding" - "bonjour" - "book" - "boost" - "boot" - "boot-loader" - "boot-process" - "bootcamp" - "booting" - "bootp" - "bootup" - "bosun" - "botnet" - "bots" - "bottleneck" - "bourne-shell" - "bpos" - "branchcache" - "branding" - "bridge" - "bridge-router" - "broadband" - "broadcast" - "broadcom" - "brocade" - "browser" - "browsers" - "browsing" - "brute-force-attacks" - "bsd" - "bsod" - "btrfs" - "budget" - "buffalo" - "buffer" - "bug" - "bugs" - "bugzilla" - "build" - "build-server" - "bulk" - "bulk-action" - "bulk-insert" - "bundler" - "bus" - "business" - "business-continuity" - "business-intelligence" - "businessobjects" - "businessobjects-xi" - "busybox" - "byobu" - "bypass" - "bzip2" - "c" - "c#" - "c++" - "cable" - "cable-internet" - "cable-management" - "cables" - "cabling" - "cache" - "caching" - "cacti" - "cage" - "cakephp" - "cal" - "caldav" - "calendar" - "calendar-management" - "calendarserver" - "call-manager" - "caller-id" - "cals" - "camera" - "canon" - "capacity" - "capacity-estimation" - "capacity-planning" - "capistrano" - "captcha" - "captive-portal" - "capture" - "carbon" - "career" - "carp" - "cart" - "cas" - "case" - "case-insensitive" - "case-sensitive" - "cassandra" - "cat" - "cat5" - "cat5e" - "cat6" - "catch-all" - "category" - "cc" - "ccna" - "cdburning" - "cdh4" - "cdn" - "cdp" - "cdrom" - "celerra" - "celery" - "cellular" - "centos" - "centos5" - "centos5.6" - "centos6" - "centos6.1" - "centos6.2" - "centos6.4" - "centos6.5" - "centos6.6" - "centos7" - "central-administration" - "centraladmin" - "centralization" - "centreon" - "ceph" - "certificate" - "certificate-authority" - "certificate-chain" - "certificate-store" - "cfdisk" - "cfengine" - "cgi" - "cgi-bin" - "cgroup" - "chaining" - "change-management" - "changes" - "channel" - "characterset" - "charset" - "chassis" - "chat" - "chattr" - "cheatsheet" - "check-mk" - "check-snmp" - "checkdb" - "checkinstall" - "checklist" - "checkpoint" - "checksum" - "chef" - "chef-client" - "chef-server" - "chef-solo" - "cherokee" - "cherrypy" - "chgrp" - "child-nameserver" - "china" - "chipset" - "chkconfig" - "chkdsk" - "chm" - "chmod" - "chown" - "chrome" - "chrony" - "chroot" - "chroot-jail" - "chunked" - "cidr" - "cifs" - "cinder" - "cipher-suites" - "cirros" - "cisco" - "cisco-ace" - "cisco-asa" - "cisco-catalyst" - "cisco-nexus" - "cisco-pix" - "cisco-ucs" - "cisco-vpn" - "ciscoworks" - "citadel" - "citrix" - "citrix-receiver" - "clamav" - "clariion" - "classpath" - "classroom" - "clean" - "cleaning" - "cleanup" - "clearcase" - "clearos" - "clickonce" - "client-server" - "clients" - "clipboard" - "clipboard-sharing" - "clock" - "clock-synchronization" - "clone" - "clonezilla" - "cloning" - "cloud" - "cloud-computing" - "cloud-hosting" - "cloud-init" - "cloud-network" - "cloud-storage" - "cloudera" - "cloudera-manager" - "cloudflare" - "cloudify" - "cloudlinux" - "cloudstack" - "cluster" - "cluster-aware-updating" - "cluster-management" - "cluster-shared-volume" - "clustercheck" - "clusters" - "cman" - "cmd" - "cmdb" - "cmdkey" - "cmdlets" - "cms" - "cn" - "cname-record" - "co-existence" - "cobbler" - "codecs" - "codeigniter" - "codesigning" - "cognos" - "coldfusion" - "coldfusion-8" - "coldfusion-9" - "colinux" - "collabnet" - "collaboration" - "collation" - "collectd" - "collision" - "colocation" - "color" - "com" - "com+" - "comcast" - "comet" - "command" - "command-line" - "command-prompt" - "commands" - "commit" - "commodity-server" - "communication" - "communications" - "community" - "community-server" - "commvault" - "compact" - "compact-flash" - "company" - "compaq" - "comparison" - "compatibility" - "compilation" - "compile" - "compiling" - "completion" - "compliance" - "components" - "compression" - "compromise" - "computer-accounts" - "computer-lab" - "computer-name" - "computer-science" - "computers" - "concurrency" - "conditional" - "condor" - "conf" - "conference" - "conference-call" - "conference-room" - "conferences" - "conferencing" - "conficker" - "config" - "configuration" - "configuration-management" - "configuration-manager" - "configuration-mgr-2007" - "configure" - "confluence" - "connect" - "connection" - "connection-broker" - "connection-pool" - "connection-refused" - "connection-reset" - "connection-sharing" - "connection-strings" - "connections" - "connectivity" - "connector" - "connlimit" - "conntrack" - "console" - "console-server" - "consolidation" - "consulting" - "contacts" - "containers" - "content" - "content-filter" - "content-management" - "content-negotiation" - "contentfilter" - "context-menu" - "context-switch" - "continuous-backup" - "continuous-integration" - "continuous-monitoring" - "contractors" - "control" - "control-panel" - "controller" - "convention" - "conversion" - "convert" - "cookbook" - "cookie" - "cookieless" - "cookies" - "cooling" - "coovachilli" - "copier" - "copssh" - "copy" - "copying" - "coredump" - "coreos" - "coreutils" - "corosync" - "corruption" - "cors" - "cost" - "cost-savings" - "couchbase" - "couchdb" - "count" - "country" - "courier" - "courier-imap" - "cp" - "cpan" - "cpanel" - "cpio" - "cpu" - "cpu-architecture" - "cpu-hogging" - "cpu-socket" - "cpu-usage" - "cpuinfo" - "cq5" - "cracklib" - "crawl-rate" - "create" - "credential" - "credentials" - "credssp" - "crl" - "crm" - "cron" - "cron.daily" - "cronolog" - "cross-domain" - "cross-forest" - "cross-platform" - "crossover" - "crowd" - "crucible" - "cruft" - "cruisecontrol" - "cryptography" - "crystalreports" - "cscript" - "csf" - "csh" - "csr" - "css" - "csv" - "csync2" - "ctrl" - "ctrl-c" - "cuda" - "cups" - "curl" - "curses" - "cursors" - "custom" - "custom-errors" - "custom-views" - "customization" - "cut" - "cvs" - "cwdm" - "cygwin" - "cygwin-sshd" - "cyrus" - "cyrus-murder" - "d-link" - "dac" - "daemon" - "daemontools" - "dag" - "daily" - "damage" - "dansguardian" - "dante" - "dar" - "das" - "dashboard" - "data" - "data-consistency" - "data-extraction" - "data-file" - "data-integrity" - "data-loss" - "data-migration" - "data-protection" - "data-pump" - "data-recovery" - "data-transfer" - "data-warehouse" - "database" - "database-administration" - "database-backup" - "database-connection" - "database-deployment" - "database-mail" - "database-migration" - "database-mirroring" - "database-performance" - "database-replication" - "database-restore" - "datacenter" - "datadirectory" - "dataguard" - "datastax-enterprise" - "datastore" - "date" - "date-modified" - "date-time" - "datetime" - "dav-svn" - "davfs2" - "daylight-saving" - "db-driven-website" - "db2" - "dba" - "dban" - "dbcc" - "dbi" - "dbus" - "dcdiag" - "dcom" - "dcpromo" - "dd" - "dd-wrt" - "ddclient" - "ddns" - "ddos" - "ddr" - "deadlock" - "deb" - "debconf" - "debian" - "debian-etch" - "debian-installer" - "debian-lenny" - "debian-squeeze" - "debian-sys-maint" - "debian-wheezy" - "debootstrap" - "debug" - "debugging" - "decrypt" - "dedicated-server" - "deduplication" - "deep-packet-inspection" - "default-document" - "default-profile" - "default-route" - "defaultapppool" - "defaults" - "deferred" - "definition" - "deflate" - "defrag" - "defragmentation" - "degraded" - "dekiwiki" - "delay" - "delay-delivery" - "delegation" - "deleting" - "deliverability" - "dell" - "dell-2850" - "dell-2950" - "dell-6224-powerconnect" - "dell-blades" - "dell-equallogic" - "dell-n2000" - "dell-perc" - "dell-powerconnect" - "dell-poweredge" - "dell-powervault" - "dell-r710" - "delphi" - "demote" - "denial-of-service" - "deny" - "denyhosts" - "dep" - "dependencies" - "depends" - "deploy" - "deployment" - "deploystudio" - "design" - "desktop" - "desktop-management" - "desktop-virtualization" - "detection" - "dev" - "developer" - "development" - "development-environment" - "device" - "devices" - "df" - "dfs" - "dfs-r" - "dhclient" - "dhcp" - "dhcp-option" - "dhcp-over-vpn" - "dhcp-server" - "dhcpd" - "dhcpv6" - "dhcrelay" - "diagnose" - "diagnosis" - "diagnostic" - "diagramming" - "dial" - "dialog" - "dialup" - "diameter" - "dicom" - "diff" - "difference" - "differencing" - "dig" - "digest" - "digital" - "digital-signatures" - "direct" - "direct-access" - "direct-admin" - "direct-booking" - "directory" - "directory-listing" - "directory-services" - "directoryindex" - "dirsync" - "disable" - "disabling" - "disaster" - "disaster-recovery" - "disc" - "discovery" - "discussion-forums" - "disk" - "disk-activity" - "disk-cache" - "disk-cloning" - "disk-encryption" - "disk-images" - "disk-io" - "disk-partition" - "disk-queue-length" - "disk-quota" - "disk-recovery" - "disk-usage" - "diskdrive" - "diskmanagement" - "diskpart" - "disks" - "diskspace" - "dism" - "display" - "disposal" - "dist-upgrade" - "distribute" - "distributed" - "distributed-computing" - "distributed-filesystems" - "distribution" - "distribution-groups" - "distribution-lists" - "distro" - "diy" - "django" - "djbdns" - "dkim" - "dl160g5" - "dl180g6" - "dlink" - "dll" - "dllregisterserver" - "dlt" - "dmarc" - "dmcrypt" - "dmesg" - "dmidecode" - "dmraid" - "dms" - "dmz" - "dnat" - "dns" - "dns-firewall" - "dns-hosting" - "dns-lookup" - "dns-server" - "dnsbl" - "dnsmadeeasy" - "dnsmasq" - "dnsrbl" - "dnssec" - "do-release-upgrade" - "dock" - "docker" - "docsis" - "document-library" - "document-management" - "documentation" - "documentroot" - "documents" - "dom0" - "domain" - "domain-controller" - "domain-name" - "domain-parking" - "domain-policies" - "domain-registrar" - "domain-registration" - "domain-transferring" - "domain-trust" - "domain-users" - "domaindnszones" - "domainkeys" - "domains" - "domino" - "domu" - "donation" - "dos" - "dotdeb" - "dotfiles" - "dotnet-framework" - "dotnetnuke" - "doubletake" - "dovecot" - "downgrade" - "doxygen" - "dpi" - "dpkg" - "drac" - "dracut" - "draytek" - "drbd" - "drbl" - "dreamhost" - "drift" - "drive" - "drive-failure" - "drive-letters" - "drivers" - "drives" - "drobo" - "dropbear" - "dropbox" - "dropped" - "drupal" - "drupal-6" - "drupal7" - "ds-store" - "dsa" - "dsc" - "dscl" - "dsget" - "dsl" - "dsn" - "dso" - "dspam" - "dsquery" - "dtrace" - "dts" - "du" - "dual" - "dual-boot" - "dual-monitor" - "dual-nic" - "dual-wan" - "dump" - "dump-files" - "duplicate-files" - "duplicate-ip" - "duplicity" - "duply" - "durability" - "dvd" - "dvd-burning" - "dvddrive" - "dvswitch" - "dynamic" - "dynamic-disk" - "dynamic-dns" - "dynamic-ip" - "dynamic-routing" - "dynamic-vlan-assignment" - "dynamics" - "dynamips" - "dyndns" - "e-discovery" - "e1000e" - "eaccelerator" - "eap" - "easy-install" - "easyapache" - "ebook" - "ecc" - "echo" - "echoserver" - "eclipse" - "ecm" - "ecommerce" - "ecryptfs" - "edb" - "edge" - "edge-transport" - "edirectory" - "editing" - "editor" - "education" - "effective" - "efficiency" - "efs" - "eicar-test-string" - "eigrp" - "ejabberd" - "elastic-beanstalk" - "elastic-search" - "elastix" - "electricity" - "elevated" - "emacs" - "email" - "email-addresses" - "email-bounces" - "email-client" - "email-headers" - "email-integration" - "emailserver" - "embedded" - "embedded-linux" - "emc" - "emc-vnxe" - "emerge" - "emergency-procedures" - "employment" - "emulation" - "emulator" - "emulex" - "enclosures" - "encoding" - "encrypting-file-system" - "encryption" - "end-user" - "endian" - "endpoint" - "endusers" - "energy-saving" - "engine" - "enterprise" - "enterprise-configuration" - "enterprise-deployment" - "enterprise-email" - "entourage" - "entropy-pool" - "env" - "environment" - "environment-variables" - "epel" - "epoch-time" - "equallogic" - "equipment" - "erase" - "erlang" - "erp" - "err-dns-fail" - "error-code" - "error-handling" - "error-logging" - "error-recovery" - "errordocument" - "errors" - "esata" - "escape" - "escaping" - "eserver" - "essentials-2012" - "essentials-2012-r2" - "estimation" - "esx-4.1" - "esx3.5" - "etags" - "etc" - "etckeeper" - "eth0" - "etherchannel" - "ethernet" - "ethernet-switch" - "ethical-hacking" - "ethics" - "ethtool" - "eucalyptus" - "ev-ssl" - "evaluation" - "event-id" - "event-log" - "event-log-security" - "event-scheduler" - "eventcreate" - "eventviewer" - "evolution" - "ews-managed-api" - "excel" - "excel-2007" - "exception" - "exchange" - "exchange-2003" - "exchange-2007" - "exchange-2010" - "exchange-2013" - "exchange-alternative" - "exchange-cached-mode" - "exchange-server" - "exchange-transition" - "exchangewebservices" - "exclude" - "exe" - "exec" - "executable" - "execute" - "execution" - "exfat" - "exim" - "exiqgrep" - "expansion" - "expect" - "experience" - "expiration" - "expired" - "expires" - "explain" - "exploit" - "explorer" - "export" - "ext2" - "ext3" - "ext4" - "extension" - "external" - "external-connection" - "external-hdd" - "external-ip" - "extract" - "extranet" - "f5-big-ip" - "fabric" - "facebook" - "facter" - "fail2ban" - "failed" - "failed-installation" - "failed-request-tracing" - "failover" - "failovercluster" - "failsafe" - "fakeraid" - "fan" - "fans" - "farm" - "farmwardeployer" - "fastcgi" - "fat" - "fat32" - "fault-tolerance" - "favicon" - "favorites" - "fax" - "fax-client" - "faxserver" - "fba" - "fcgi" - "fcoe" - "fcrdns" - "fdisk" - "features" - "federated" - "federated-search" - "fedora" - "fedora-21" - "fedora-ds" - "fedora12" - "fedora13" - "fedora14" - "fedora15" - "fedora17" - "fedora20" - "fedora8" - "fedora9" - "fedoracore" - "feedback" - "feeds" - "fencing" - "fetchmail" - "ffmpeg" - "fhs" - "fiber" - "fibre-channel" - "file-associations" - "file-copy" - "file-descriptors" - "file-extraction" - "file-format" - "file-hosting" - "file-permissions" - "file-recovery" - "file-replication-services" - "file-server" - "file-sharing" - "file-transfer" - "filegroups" - "filemaker" - "filenames" - "filer" - "files" - "fileservers" - "fileset" - "filestream" - "filesystems" - "filezilla" - "filter" - "filtering" - "find" - "finder" - "findstr" - "fingerprint" - "fingerprint-reader" - "fips-140-2" - "fire-suppression" - "firebird" - "firebox" - "firefox" - "firesheep" - "firewall" - "firewall-traversal" - "firewalld" - "firewire" - "firmware" - "fisheye" - "fixed" - "flags" - "flash" - "flash-drive" - "flash-media-server" - "flash-player" - "flash-plugin" - "flashcache" - "flask" - "flex-builder-3" - "flooding" - "floppy" - "fluentd" - "flume" - "flv" - "fog" - "folder" - "folder-redirection" - "folder-size" - "folders" - "font" - "fonts" - "fopen" - "for-loop" - "forbidden" - "force10" - "forceremoval" - "foreign-key" - "foreman" - "forensic-analysis" - "forensics" - "forest" - "forgotten" - "fork" - "format" - "formatting" - "forms" - "fortigate" - "fortinet" - "forum" - "forward-lookup-zone" - "forwarding" - "foswiki" - "foundation" - "foundry" - "foxpro" - "fqdn" - "fragmentation" - "framework" - "freebsd" - "freebsd-ports" - "freebsd-update" - "freeipa" - "freenas" - "freenx" - "freepbx" - "freeradius" - "freeradius2" - "freesshd" - "freeswitch" - "freetds" - "freeware" - "freezing" - "frequency" - "front-end" - "frontpageserverextensions" - "frs" - "fsck" - "fsmo" - "fsrm" - "fstab" - "ftp" - "ftp-client" - "ftp-server" - "ftpd" - "ftpes" - "ftps" - "ftpwebrequest" - "full-text-catalog" - "full-text-search" - "fuse" - "fusionio" - "future" - "fvs336g" - "fw1" - "fwbuilder" - "g++" - "g-wan" - "gac" - "galera" - "gallery" - "gallery2" - "gameserver" - "gaming" - "ganeti" - "ganglia" - "garbage-collecting" - "gateway" - "gcc" - "gconf" - "gd" - "gdb" - "gdmgreeting" - "gearman" - "gem" - "general" - "genpdf" - "gentoo" - "geodns" - "geoip" - "geolocation" - "geronimo" - "gerrit" - "getaddrinfo" - "gettext" - "getting-started" - "gfs" - "gfs2" - "ghc" - "ghettovcb" - "ghost" - "ghostscript" - "gif" - "gigabit" - "gigabit-ethernet" - "gina" - "git" - "git-daemon" - "git-remote-repository" - "git-repository" - "github" - "gitlab" - "gitlab-6" - "gitolite" - "gitorious" - "gitosis" - "gitweb" - "glassfish" - "glib" - "glibc" - "global" - "global-catalog" - "globaladdresslist" - "globalization" - "glpi" - "glue" - "gluster" - "glusterfs" - "glusterfs-3.5" - "gmail" - "gmail-pop" - "gmetad" - "gmond" - "gnome" - "gnome-terminal" - "gns3" - "gnu" - "gnu-screen" - "gnuplot" - "gnutls" - "go" - "god" - "godaddy" - "golang" - "google" - "google-analytics" - "google-app-engine" - "google-apps" - "google-authenticator" - "google-chrome" - "google-compute-engine" - "google-mail" - "google-mini" - "google-public-dns" - "google-search-appliance" - "google-site-verification" - "google-wave" - "google-webmaster-tools" - "googlebot" - "gopher" - "gotchas" - "governance" - "gp" - "gparted" - "gpg" - "gpg-key" - "gpgpu" - "gprs" - "gps" - "gpt" - "gpxe" - "graceful" - "grants" - "graph" - "graphical-interface" - "graphics" - "graphing" - "graphite" - "graphs" - "graylog2" - "gre" - "great-plains" - "green-it" - "grep" - "greylisting" - "grid" - "gridengine" - "groove" - "group" - "group-chat" - "group-policy" - "group-policy-preferences" - "groups" - "groupwise" - "growth" - "grsec" - "grub" - "grub2" - "gsa" - "gsm" - "gssapi" - "gtk" - "guest" - "gui" - "guid" - "guidelines" - "guides" - "gunicorn" - "gwt" - "gzip" - "h.264" - "h700" - "hacking" - "hadoop" - "hairpinning" - "hal" - "halt" - "hamachi" - "handle-leak" - "handler-mappings" - "hanging" - "hangs" - "haproxy" - "haproxy-1.3" - "hard-drive" - "hardening" - "hardlink" - "hardware" - "hardware-acceleration" - "hardware-architecture" - "hardware-failure" - "hardware-infrastructure" - "hardware-raid" - "hardware-requirements" - "hardware-reserved" - "hardware-selection" - "hash" - "haskell" - "hba" - "hbase" - "hdfs" - "hdmi" - "hdparm" - "header" - "headers" - "headless" - "health" - "healthcheck" - "heapdump" - "heapspace" - "heartbeat" - "heartbeat1" - "heartbeat3" - "heartbleed" - "heat" - "heimdal" - "helpdesk" - "heredoc" - "heroku" - "hetzner" - "hexidecimal" - "hfs+" - "hhvm" - "hiawatha" - "hibernate" - "hibernation" - "hidden" - "hidden-features" - "hidden-files" - "hiera" - "hierarchy" - "high-availability" - "high-load" - "high-traffic" - "high-volume" - "highlighting" - "hijack" - "hipaa" - "hiphop-php" - "history" - "hmailserver" - "home" - "home-directory" - "home-drive" - "home-folder" - "home-network" - "homepage" - "honeypot" - "hook" - "horde" - "host" - "host-headers" - "hostapd" - "hosted" - "hosted-exchange" - "hostgator" - "hostheaders" - "hosting" - "hostkey" - "hostname" - "hostnames" - "hosts" - "hosts-file" - "hosts.allow" - "hosts.deny" - "hot-spare" - "hotfix" - "hotlinking" - "hotmail" - "hotplug" - "hotspot" - "hotswap" - "hp" - "hp-server" - "hp-storageworks" - "hp-ux" - "hp-vsa" - "hpacucli" - "hpc" - "hpoo" - "hpsa" - "hs22" - "hsrp" - "htb" - "html" - "html-email" - "html5" - "htop" - "htpasswd" - "http" - "http-authentication" - "http-basic-authentication" - "http-compression" - "http-cookie" - "http-error-401.2" - "http-headers" - "http-proxy" - "http-server" - "http-status-code" - "http-status-code-403" - "http-status-code-404" - "http-status-code-408" - "http-streaming" - "httpd" - "httpd-conf" - "httpd.conf" - "httperf" - "httphandler" - "httpmodule" - "https" - "httpverbs" - "hub" - "hudson" - "hugepage" - "hvm" - "hylafax" - "hyper-v" - "hyper-v-2012" - "hyper-v-server-2008-r2" - "hyper-v-server-2012" - "hyper-v-server-2012-r2" - "hyper-v-tools" - "hyperic" - "hyperichq" - "hyperthreading" - "hypervisor" - "i18n" - "i386" - "i7" - "ia64" - "ias" - "iax2" - "iaxmodem" - "ibm" - "ibm-i-series" - "ibm-midrange" - "ibm-xseries" - "ica" - "icacls" - "ical" - "icecast" - "icinga" - "icmp" - "icmpv6" - "icons" - "ics" - "icu" - "ide" - "ident" - "identity" - "identity-management" - "idle" - "idn" - "idol" - "idrac" - "ids" - "ie6" - "ie7" - "ie8" - "ie9" - "if" - "ifconfig" - "igmp" - "ignore" - "ihs" - "ii6" - "iis" - "iis-express" - "iis-manager" - "iis-server-farm" - "iis5" - "iis6" - "iis7" - "iis7.5" - "iis8" - "iis8.5" - "ikev2" - "illumos" - "ilo" - "ilom" - "im" - "imac" - "image" - "imagecreatefromjpeg" - "imagemagick" - "images" - "imagex" - "imagick" - "imaging" - "imail" - "imap" - "imapsync" - "imm" - "imp" - "impersonation" - "import" - "incoming-mail" - "incremental-backup" - "incrond" - "incrontab" - "index" - "indexes" - "indexing" - "indexing-service" - "industry" - "inetd" - "infiniband" - "infopath" - "information" - "information-resources" - "informix" - "infrastructure" - "inheritance" - "init" - "init.d" - "initiator" - "initramfs" - "inittab" - "innobackupex" - "innodb" - "innodb-barracuda" - "inode" - "inotify" - "input" - "install" - "installation" - "installer" - "installing" - "instance" - "instances" - "instant-messaging" - "instantmessaging" - "integrated-authentication" - "integrity" - "intel" - "intel-atom" - "intel-vt-x" - "intel-x25" - "intellij-idea" - "intellisense" - "interactive-login" - "interface" - "interfaces" - "interference" - "interix" - "intermittent" - "internal-dns" - "international" - "internet" - "internet-access" - "internet-cafe" - "internet-connection" - "internet-explorer" - "internet-explorer-10" - "internet-explorer-9" - "internet-printing" - "internet-radio" - "internet-usage" - "interoperability" - "interrupt" - "interrupts" - "intl" - "intranet" - "intrusion-cleanup" - "intrusion-detection" - "intrusion-prevention" - "inventory" - "io" - "iometer" - "ioncube" - "ionice" - "iops" - "ios" - "iostat" - "iowait" - "iozone" - "ip" - "ip-address" - "ip-aliasing" - "ip-banning" - "ip-blocking" - "ip-conflict" - "ip-forwarding" - "ip-fragmentation" - "ip-routing" - "ip-rule" - "ip6tables" - "ipad" - "ipam" - "ipc" - "ipconfig" - "ipcop" - "iperf" - "ipfilter" - "ipfw" - "iphone" - "ipkvm" - "ipmi" - "ipmitool" - "ipnat" - "iproute" - "iproute2" - "ips" - "ipsec" - "ipsecvpnclient" - "ipset" - "iptables" - "ipv4" - "ipv6" - "ipxe" - "irc" - "ircd" - "iredmail" - "ironport" - "irq" - "irssi" - "isa" - "isa-2004" - "isa-2006" - "isa-server" - "isakmp" - "isapi" - "isapi-filters" - "isapi-rewrite" - "isc-dhcp" - "iscsi" - "isilon" - "isl" - "iso" - "iso-image" - "isolated-network" - "isp" - "ispconfig" - "ispconfig-3" - "issue-tracking" - "itanium" - "itil" - "itsm" - "itunes" - "iusr" - "ivr" - "j2ee" - "jail" - "jails" - "james" - "jar" - "jasig-cas" - "jasperserver" - "java" - "java-7" - "java-opts" - "java-runtime" - "javaee" - "javascript" - "jbod" - "jboss" - "jboss-tools" - "jdbc" - "jdk" - "jenkins" - "jeos" - "jetty" - "jfs" - "jira" - "jitter" - "jmeter" - "jms" - "jmx" - "jnlp" - "job" - "job-control" - "job-market" - "job-scheduler" - "job-skills" - "jobs" - "joomla" - "journal" - "journald" - "journaling" - "journalling" - "joyent" - "jpg" - "jquery" - "jre" - "jrun" - "json" - "jsp" - "jumboframes" - "jumpstart" - "junction" - "junction-points" - "jungledisk" - "juniper" - "junos" - "jvm" - "kace" - "kbsd" - "kcc" - "kde" - "kdump" - "keep-alive" - "keepalive" - "keepalived" - "kerberos" - "kerberos-keytab" - "kerio" - "kernel" - "kernel-modules" - "kernel-panic" - "key" - "key-bindings" - "keyboard" - "keyboard-layout" - "keyboard-shortcuts" - "keychain" - "keypairs" - "keys" - "keystore" - "keytab" - "keytool" - "kibana" - "kickstart" - "kill" - "kill-process" - "kinit" - "kiosk" - "kits" - "kjournald" - "kloxo" - "kmemsize" - "kms" - "knife" - "knoppix" - "knowledge-base" - "known-hosts" - "kohana" - "kpartx" - "kpi" - "ksh" - "kubuntu" - "kvm-switch" - "kvm-virtualization" - "l2tp" - "l7-filter" - "lab" - "label" - "labeler" - "laconica" - "lacp" - "lag" - "lamp" - "lan" - "lan-settings" - "landesk" - "landscape" - "language" - "language-bar" - "language-packs" - "languages" - "laptop" - "large-data" - "large-directory" - "largefiles" - "laser-printer" - "laserjet" - "last" - "last-modified" - "latency" - "launchctl" - "launchd" - "layer-7" - "layout" - "ldap" - "ldapsearch" - "ldif" - "ldirectord" - "leapsecond" - "lease" - "lefthand" - "legacy" - "legato" - "lemonldap" - "length" - "lenovo" - "leopard" - "leopardserver" - "less" - "lexmark" - "lfd" - "lftp" - "libboost" - "libc6" - "libmemcached" - "libpcap" - "libraries" - "library" - "libreoffice" - "libvirt" - "licences" - "license" - "license-key" - "licensing" - "lifecycle" - "liferay" - "lighttpd" - "lightweight" - "lightweight-webserver" - "likewise-open" - "limitations" - "limited-user" - "limits" - "line" - "link-layer" - "link-local" - "linked-server" - "linksys" - "linode" - "linux" - "linux-from-scratch" - "linux-ha" - "linux-kernel" - "linux-networking" - "linux-scripting" - "linux-server-printing" - "linux-vserver" - "linuxmint" - "lion" - "list" - "listener" - "litespeed" - "live" - "live-cd" - "live-migration" - "livebox" - "livecd" - "lldp" - "lm-sensors" - "load" - "load-average" - "load-balance" - "load-balancing" - "load-testing" - "loading" - "local" - "local-administrator" - "local-network" - "local-policy" - "local-system" - "local-users" - "locale" - "locales" - "localgpo" - "localhost" - "localization" - "locate" - "location" - "lockdown" - "locked" - "locked-file" - "locked-out" - "locking" - "locks" - "log-analysis" - "log-files" - "log-shipping" - "log4j" - "logadm" - "logging" - "login" - "login-script" - "logins" - "loglevel" - "logman" - "logmein" - "logoff" - "logoff-scripts" - "logon-scripts" - "logparser" - "logrotate" - "logrotation" - "logserver" - "logshipping" - "logstash" - "logwatch" - "lom" - "long-distance" - "long-polling" - "lookup" - "loop" - "loop-device" - "loopback" - "loops" - "lost" - "lotus" - "lotus-domino" - "lotus-notes" - "low-cost" - "low-memory" - "lpd" - "lpr" - "lpt" - "ls" - "lsass" - "lsb" - "lsi" - "lsof" - "lspci" - "lsyncd" - "lto" - "lto-3" - "lto-4" - "ltsp" - "lua" - "lucene" - "luks" - "lun" - "luns" - "lustre" - "lvm" - "lvs" - "lxadmin" - "lxc" - "lync" - "lync-2013" - "m0n0wall" - "m4" - "maas" - "maatkit" - "mac" - "mac-address" - "mac-clients" - "macbook" - "macbook-pro" - "machine" - "macosx" - "macosxserver" - "macports" - "macsec" - "maemo" - "magento" - "mahout" - "mail-delay" - "mail-forwarding" - "mailbox" - "mailcleaner" - "maildir" - "maildrop" - "mailenable" - "mailing-list" - "mailing-list-sw" - "mailing-lists" - "mailman" - "mailscanner" - "mailserver" - "mailx" - "mainframe" - "maintenance" - "maintenance-plan" - "mak" - "make" - "makefiles" - "malicious" - "malware" - "mamp" - "man" - "man-in-the-middle" - "manage" - "managed" - "managed-services" - "management" - "manager" - "mandatory-profiles" - "mandriva" - "manual" - "many-files" - "mapi" - "mappeddrive" - "mapping" - "mapreduce" - "maradns" - "mariadb" - "marketing" - "mask" - "masquerade" - "master" - "master-master" - "master-slave" - "matrix" - "maven" - "max-file-descriptors" - "max-requests" - "maximum" - "mbox" - "mbr" - "mbsa" - "mcafee" - "mcelog" - "mcitp" - "mcollective" - "mcollective-client" - "mcollective-server" - "mcrypt" - "mcse" - "mcx" - "md" - "md3000" - "md3000i" - "md3220i" - "md5" - "mdadm" - "mdaemon" - "mdm" - "mdns" - "mdop" - "mdraid" - "mds" - "mdt" - "mdt-2010" - "mdt-2012" - "mdt-2013" - "measurement" - "media" - "media-server" - "mediatemple" - "mediawiki" - "meeting" - "megacli" - "megaraid" - "mellanox" - "memcache" - "memcached" - "memory" - "memory-allocation" - "memory-leak" - "memory-management" - "memory-usage" - "menu" - "meraki" - "mercurial" - "mercurial-server" - "merge" - "merge-replication" - "message-queueing" - "message-queuing" - "messages" - "messaging" - "messenger" - "metabase" - "metadata" - "meteor" - "method" - "metrics" - "mget" - "mib" - "microsoft" - "microsoft-crm" - "microsoft-dns" - "microsoft-licensing" - "microsoft-servers" - "microsoft-smtp" - "microsoft-web-platform" - "middleware" - "midnight-commander" - "migrate" - "migration" - "migration-planning" - "mikrotik" - "milter" - "mime" - "mime-type" - "minimization" - "mirror" - "mirror-site" - "mirroring" - "misconceptions" - "missing" - "mitel" - "mitkerberos" - "mixed" - "mixed-content" - "mixed-mode" - "mk-livestatus" - "mkdir" - "mkfs" - "mld" - "mmc" - "mmonit" - "mobile" - "mobile-computing" - "mobsync" - "mod-alias" - "mod-auth" - "mod-auth-kerb" - "mod-auth-ldap" - "mod-auth-mysql" - "mod-authn-alias" - "mod-authz-host" - "mod-balancer" - "mod-cache" - "mod-cband" - "mod-cluster" - "mod-dav-svn" - "mod-deflate" - "mod-dir" - "mod-evasive" - "mod-expires" - "mod-fastcgi" - "mod-fcgid" - "mod-filter" - "mod-gzip" - "mod-headers" - "mod-jk" - "mod-mono" - "mod-ntlm" - "mod-pagespeed" - "mod-perl" - "mod-php" - "mod-proxy" - "mod-proxy-ajp" - "mod-proxy-fcgi" - "mod-proxybalance" - "mod-python" - "mod-remoteip" - "mod-reqtimeout" - "mod-rewrite" - "mod-rpaf" - "mod-security" - "mod-ssl" - "mod-status" - "mod-userdir" - "mod-vhost-alias" - "mod-webdav" - "mod-wsgi" - "mode" - "modem" - "modprobe" - "modsecurity" - "module" - "modules" - "modx" - "mogilefs" - "moinmoin" - "mom" - "mongodb" - "mongoose" - "mongrel" - "mongrel-cluster" - "mongrel-rails" - "monit" - "monitoring" - "monitors" - "mono" - "moodle" - "motd" - "motherboard" - "mount" - "mountain-lion" - "mouse" - "mozilla" - "mp3" - "mpio" - "mpls" - "mpm-prefork" - "mpm-worker" - "mrt" - "mrtg" - "ms-access" - "ms-forefront" - "ms-forefront-2010" - "ms-ftmg" - "ms-ftmg-2010" - "ms-office" - "ms-office-2003" - "ms-office-2007" - "ms-office-2010" - "ms-office-2011" - "ms-office-2013" - "ms-office-365" - "ms-office-communicator" - "ms-project" - "ms-security-essentials" - "ms-virtualserver" - "ms-word" - "msa" - "mscs" - "msdcs" - "msde" - "msdeploy" - "msdn" - "msdos6.22" - "msdtc" - "mse" - "msi" - "msiexec" - "msmq" - "msmtp" - "msn" - "msp-files" - "mssql-maintenance" - "mssql-ssms" - "mstsc" - "msword" - "msxml" - "mta" - "mtbf" - "mtime" - "mtr" - "mtu" - "multi" - "multi-boot" - "multi-core" - "multi-monitor" - "multi-platform" - "multi-site" - "multi-tenancy" - "multi-wan" - "multiarch" - "multicast" - "multihomed" - "multimedia" - "multipath" - "multiple-domains" - "multiple-exchange-servers" - "multiple-files" - "multiple-instances" - "multiple-login" - "multiple-nics" - "multiple-processes" - "multiple-sites" - "multiplexing" - "multiprocessing" - "multiseat" - "multithreading" - "mumble" - "munin" - "munin-graph" - "music" - "music-on-hold" - "mutt" - "mv" - "mvc" - "mx-record" - "my.cnf" - "mydomain" - "myisam" - "mysite" - "mysites" - "mysql" - "mysql-administrator" - "mysql-cluster" - "mysql-daemon" - "mysql-mmm" - "mysql-replication" - "mysql-schema" - "mysql-slow-query-log" - "mysql-workbench" - "mysql5" - "mysql5.1" - "mysql5.5" - "mysqladmin" - "mysqld-multi" - "mysqldump" - "mysqlproxy" - "mysqltuner" - "mythtv" - "mytop" - "n-wireless" - "n810" - "nagios" - "nagios-ninja" - "nagios-plugins" - "nagios3" - "nagiosgraph" - "nagiosgrapher" - "nagiosxi" - "naked-redirection" - "name" - "name-resolution" - "namecheap" - "named-conf" - "named-pipes" - "nameserver" - "namespaces" - "namevirtualhost" - "naming" - "naming-conventions" - "nano" - "nant" - "nas" - "nat" - "natd" - "native-mode" - "nautilus" - "navicat" - "navision" - "nconf" - "ncsa" - "ndmp" - "ndp" - "ndr" - "neo4j" - "nessus" - "net" - "net-snmp" - "net-use" - "netapp" - "netatalk" - "netbackup" - "netbeans" - "netbios" - "netbook" - "netboot" - "netbsd" - "netcat" - "netdiag" - "netdom" - "netflow" - "netflows" - "netgear" - "netinstall" - "netlogon" - "netmask" - "netrestore" - "netscaler" - "netscreen" - "netsh" - "netstat" - "netvault" - "network-account" - "network-architecture" - "network-design" - "network-filesystem" - "network-home-folders" - "network-level-auth" - "network-management" - "network-map" - "network-monitoring" - "network-namespace" - "network-planning" - "network-printer" - "network-programming" - "network-protocols" - "network-security" - "network-share" - "network-speed" - "network-storage" - "network-teaming" - "network-topology" - "network-traffic" - "network-utilization" - "networkcards" - "networkdrive" - "networker" - "networking" - "networkmanager" - "networks" - "networktimeserver" - "new-account" - "news" - "newsletters" - "nexenta" - "nexmomessage" - "nexus" - "nf-conntrack" - "nfs" - "nfs-client" - "nfs-perfomance" - "nfs-server" - "nfs4" - "nginx" - "nic" - "nice" - "nids" - "nis" - "nix" - "nlb" - "nmap" - "nmon" - "nntp" - "no-internet-connection" - "nobody" - "noc" - "node.js" - "noexec" - "nohup" - "noise" - "noise-reduction" - "nokia" - "nologin" - "nomachine" - "non-transparent" - "nonadmin" - "nonprofit" - "noprivileges" - "nortel" - "norton" - "nosql" - "not-responding" - "not-root" - "notebook" - "notes" - "notification" - "notifications" - "nova-network" - "novell" - "novell-netware" - "npm" - "nps" - "nrpe" - "ns-record" - "nsclient++" - "nsd" - "nslcd" - "nslookup" - "nss" - "nss-ldap" - "nsswitch.conf" - "nsupdate" - "ntbackup" - "ntdsutil" - "ntfs" - "ntfs-3g" - "ntfsresize" - "ntlm" - "ntop" - "ntp" - "ntpd" - "ntpdate" - "ntrights" - "null-client" - "nullmailer" - "numa" - "nut" - "nutch" - "nuxeo" - "nvidia" - "nx" - "nxlog" - "oauth" - "observium" - "ocfs2" - "ocr" - "ocs" - "ocs-2007" - "ocs-2007-r2" - "ocsp" - "oct" - "odbc" - "oel" - "oem" - "oes" - "office" - "office-communicator2007" - "office-equipment" - "office365" - "offline" - "offline-address-book" - "offline-files" - "offlineimap" - "offsite" - "offsite-backup" - "oid" - "olap" - "old-hardware" - "omdistro" - "omnibus" - "omnios" - "omsa" - "on-call" - "onboard" - "one-liner" - "online" - "online-backup" - "online-service" - "online-spreadsheet" - "online-storage" - "ont" - "ontap" - "oom" - "oom-killer" - "opcode" - "open" - "open-basedir" - "open-files" - "open-iscsi" - "open-manage" - "open-source" - "openafs" - "openais" - "openam" - "openbd" - "openbsd" - "openconnect" - "opendirectory" - "opendkim" - "opendns" - "opends" - "openerp" - "openfiler" - "openfire" - "openflow" - "opengl" - "openid" - "openindiana" - "openldap" - "openmanage" - "opennebula" - "opennms" - "openntpd" - "openoffice" - "openrelay" - "openshift-online" - "openshift-origin" - "opensolaris" - "opensource" - "opensource-software" - "openssl" - "opensso" - "openstack" - "openstack-horizon" - "openstack-keystone" - "openstack-nova" - "opensuse" - "openswan" - "opentsdb" - "openvas" - "openvms" - "openvpn" - "openvswitch" - "openvz" - "openwrt" - "openx" - "opera" - "operating-system" - "opscenter" - "opsmgr-2007" - "opsview" - "opsware" - "opsworks" - "opteron" - "optical-media" - "optics" - "optimization" - "optimize" - "option82" - "options" - "oracle" - "oracle-application-server" - "oracle-asm" - "oracle-rac" - "oracle10g" - "oracle11g" - "oracle11gr2" - "oracle9i" - "oraclevm" - "oraclexe" - "orchestration" - "order" - "organization" - "organizational-unit" - "organizing" - "orphans" - "os" - "os-agnostic" - "os2" - "osd" - "ospf" - "ospfd" - "osql" - "oss" - "ossec" - "ossim" - "ost" - "osx-10.6" - "osx-lion" - "osx-mountain-lion" - "osx-server" - "osx-snow-leopard" - "osx-yosemite" - "otp" - "otrs" - "out-of-band-management" - "out-of-office" - "outage" - "outboundrules" - "outbox" - "outgoing-mail" - "outlook" - "outlook-2003" - "outlook-2007" - "outlook-2010" - "outlook-2011" - "outlook-2013" - "outlook-anywhere" - "outlook-web-access" - "outofmemoryerror" - "output" - "outsourcing" - "ova" - "overflow" - "overwrite" - "ovf" - "ovh" - "ovirt" - "owa" - "owncloud" - "owner" - "ownership" - "p2p" - "p2v" - "paas" - "pac" - "pacemaker" - "package" - "package-management" - "package-sources" - "packages" - "packaging" - "packet" - "packet-analyzer" - "packet-capture" - "packet-crafting" - "packet-shaping" - "packet-sniffers" - "packetloss" - "packets" - "pae" - "page" - "page-speed" - "pagefile" - "pager" - "paging" - "palo-alto-networks" - "pam" - "pam-krb" - "pam-ldap" - "paperless" - "parallel" - "parallels" - "parameter" - "parameters" - "paravirtualization" - "parse" - "parsing" - "parted" - "partition" - "partition-alignment" - "partition-table" - "partitions" - "parts" - "passive" - "passphrase" - "passthrough" - "passwd" - "password" - "password-management" - "password-policy" - "password-protected" - "password-protection" - "password-recovery" - "password-reset" - "paster" - "pat" - "patch" - "patch-management" - "patch-panel" - "patching" - "path" - "paths" - "pattern-matching" - "pause" - "pay" - "payload" - "payment" - "paypal" - "pbr" - "pbs" - "pbx" - "pc" - "pcap" - "pci" - "pci-dss" - "pci-express" - "pcl" - "pcoip" - "pcre" - "pdc" - "pdf" - "pdo" - "pdu" - "pe" - "peap" - "pear" - "pecl" - "peering" - "penetration-testing" - "pentium" - "per-user" - "perc" - "perc6" - "percona" - "percona-nagios-plugins" - "percona-server" - "percona-toolkit" - "percona-xtrabackup" - "percona-xtradb-cluster" - "perdition" - "perfmon" - "perfomance" - "perforce" - "performance" - "performance-comparison" - "performance-counters" - "performance-monitoring" - "performance-trending" - "performance-tuning" - "perl" - "perl-scripts" - "permalinks" - "permgen" - "permission-denied" - "permissions" - "persistence" - "pf" - "pfctl" - "pfdavadmin" - "pfsense" - "pg-restore" - "pgadmin" - "pgbouncer" - "pgp" - "pgpool2" - "pgrep" - "phantomjs" - "philosophy" - "phishing" - "phone" - "photos" - "php" - "php-apc" - "php-apcu" - "php-cgi" - "php-cli" - "php-extensions" - "php-fpm" - "php-mail" - "php-mcrypt" - "php-memcached" - "php.ini" - "php4" - "php5" - "php5-gd" - "php5.3" - "php53" - "phpbb" - "phpbb3" - "phpinfo" - "phpldapadmin" - "phplist" - "phpmyadmin" - "phppgadmin" - "phusion-passenger" - "physical-environment" - "physical-security" - "physicalization" - "pictures" - "pid" - "ping" - "pingdom" - "pinning" - "pip" - "pipe" - "pipelining" - "piranha" - "piwik" - "pkgng" - "pki" - "planning" - "plesk" - "plink" - "plone" - "ploop" - "plsql" - "plugin" - "plugins" - "png" - "pnp4nagios" - "podcast" - "point-of-sale" - "policy" - "policy-routing" - "policyd" - "poll" - "polling" - "polycom" - "poodle" - "pool" - "poolmon" - "pop" - "pop3" - "pop3-ssl" - "port" - "port-53" - "port-80" - "port-block" - "port-forward" - "port-forwarding" - "port-mirroring" - "port-scanning" - "portable" - "portable-apps" - "portable-harddrive" - "portable-ubuntu" - "portage" - "portal" - "portforwarding" - "portmap" - "posix" - "post" - "post-commit" - "postfix" - "postfixadmin" - "postfwd" - "postgis" - "postgresql" - "postgresql-9.1" - "postgresql-9.3" - "postgresql-cluster" - "postgrey" - "postini" - "postmaster" - "postscreen" - "postscript" - "pots" - "poudriere" - "pound" - "power" - "power-consumption" - "power-management" - "power-over-ethernet" - "power-supply" - "powercli" - "powerconnect" - "powerdns" - "powerpath" - "powerpc" - "powerpivot" - "powershell" - "powershell-v3.0" - "powershell-v4.0" - "powervault" - "ppc" - "ppp" - "pppoa" - "pppoe" - "pptp" - "pptp-client" - "pptpd" - "preferences" - "prefork" - "prelude" - "premissions" - "prerequisites" - "preseed" - "presentations" - "prevent-deletion" - "prevention" - "price-performance" - "print" - "print-server" - "print-spooler" - "printer" - "printf" - "printing" - "printserver" - "priority" - "privacy" - "private" - "private-ip" - "private-key" - "private-subnet" - "privileges" - "privoxy" - "proc" - "procedures" - "process" - "process-accounting" - "process-explorer" - "process-monitor" - "process-priority" - "processor" - "procfs" - "procmail" - "procurement" - "procurve" - "product-key" - "production-environment" - "productivity" - "professional" - "profile" - "profile-disk" - "profiling" - "proftpd" - "program" - "program-files" - "programmers" - "programming" - "progress" - "project" - "project-management" - "project-server" - "projector" - "proliant" - "promiscuous" - "promise-raid" - "promise-vtrak" - "prompt" - "propagation" - "protection" - "protocol" - "protocol-analyzer" - "protocols" - "provider" - "providers" - "provisioning" - "proxied-authorization" - "proxmox" - "proxy" - "proxy-authentication" - "proxy.pac" - "proxypass" - "proxysg" - "ps" - "psad" - "psexec" - "psftp" - "psql" - "pst" - "pstn" - "pstools" - "psu" - "pt-stalk" - "ptp" - "ptr-record" - "public" - "public-folders" - "public-html" - "public-internet" - "public-ip" - "public-key" - "public-key-encryption" - "publish" - "puppet" - "puppet-agent" - "puppet-dashboard" - "puppet-reports" - "puppetdb" - "puppetmaster" - "purchase" - "pure-ftpd" - "purge" - "push" - "putty" - "pv" - "pvlan" - "pvmove" - "pxeboot" - "pylons" - "python" - "python-boto" - "pythonpath" - "q-in-q" - "qa" - "qcow2" - "qemu" - "qlogic" - "qmail" - "qnap" - "qos" - "qt" - "quagga" - "quality" - "quality-assurance" - "quantastor" - "quarantine" - "quartz" - "query" - "query-browser" - "query-optimization" - "querystring" - "quest-ad-cmdlets" - "questions" - "queue" - "quickbooks" - "quicktime" - "quiesce" - "quorum" - "quota" - "r1soft" - "r210ii" - "r410" - "r720" - "rabbitmq" - "rac" - "rack" - "rackmount" - "rackspace" - "rackspace-cloud" - "rackspace-cloud-sites" - "racoon" - "radeon" - "radio" - "radius" - "radvd" - "raid" - "raid-controller" - "raid0" - "raid1" - "raid10" - "raid5" - "raid6" - "raidz" - "railo" - "ram-upgrade" - "ramdisk" - "rancid" - "random-number-generator" - "rar" - "rate" - "rate-limiting" - "ratio" - "ratios" - "ravendb" - "raw-disk" - "razor" - "rbac" - "rbash" - "rbl" - "rc" - "rc.d" - "rc.local" - "rdate" - "rdbms" - "rdc" - "rdesktop" - "rdiff-backup" - "rdp" - "rds" - "rdweb" - "read-only" - "readonly" - "readwrite" - "readyboost" - "readynas" - "realm" - "realmd" - "realtek" - "realtime" - "realvnc" - "rebuild" - "receive-connector" - "reception" - "recompile" - "reconnect" - "record" - "records" - "recover" - "recovery" - "recovery-console" - "recruitment" - "recurring-maintenance" - "recursion" - "recursive" - "recursive-dns" - "recycle" - "recycle-bin" - "recycling" - "red5" - "redhat" - "redirect" - "redirection" - "redis" - "redis-sentinel" - "redmine" - "redo" - "redundancy" - "refactoring" - "reference" - "refs" - "regedit" - "regex" - "registrar" - "registration" - "regsvr32" - "regular-expressions" - "reindex" - "reinstall" - "reiserfs" - "relationships" - "relay" - "release" - "release-management" - "reliability" - "reload" - "remote" - "remote-access" - "remote-administration" - "remote-assistance" - "remote-backup" - "remote-connection" - "remote-control" - "remote-desktop" - "remote-desktop-gateway" - "remote-desktop-services" - "remote-execution" - "remote-install" - "remote-locations" - "remote-management" - "remote-scripting" - "remote-shutdown" - "remote-support" - "remote-web-workplace" - "remote-wipe" - "remoteapp" - "remotefx" - "remoting" - "removable-storage" - "removal" - "remove" - "remus" - "rename" - "renderfarm" - "renew" - "reorganize" - "repeater" - "replace" - "replacement" - "replica-set" - "replication" - "report" - "report-builder" - "reporting" - "reporting-services" - "reportingservices" - "repository" - "request" - "request-filtering" - "request-tracker" - "request-tracking" - "requestheader" - "requests" - "requirements" - "rescue" - "rescue-disk" - "research" - "reseller" - "reserved-instances" - "reset" - "resilience" - "resin" - "resize" - "resolution" - "resolv.conf" - "resolve" - "resolvers" - "resource-mailbox" - "resource-management" - "resource-monitoring" - "resources" - "response" - "response-time" - "rest" - "restore" - "restrict-access" - "restrict-user" - "restricted" - "restriction" - "restrictions" - "resume" - "retention" - "retrospect" - "retry" - "return-path" - "reverse" - "reverse-dns" - "reverse-engineering" - "reverse-proxy" - "review-board" - "revision-control" - "revisioning" - "revoked" - "rewrite" - "rewritecond" - "rewritemap" - "rfc" - "rfc-1323" - "rfc-1918" - "rfc-2181" - "rhcs" - "rhel4" - "rhel5" - "rhel6" - "rhel7" - "rhev" - "rhn" - "rhodecode" - "riak" - "ricoh" - "rights" - "rinetd" - "rip" - "ris" - "risk-management" - "rj45" - "rkhunter" - "rm" - "rmagick" - "rman" - "rndc" - "roaming" - "roaming-profile" - "robocopy" - "robots.txt" - "rocks" - "rodc" - "rogue" - "roi" - "roles" - "rollback" - "root" - "rootfs" - "rootkit" - "rootsh" - "rotation" - "round-robin" - "roundcube" - "route" - "router" - "routeros" - "routes" - "routing" - "rp-pppoe" - "rpc" - "rpm" - "rpm-repository" - "rpmbuild" - "rpmforge" - "rpz" - "rras" - "rrdtool" - "rs232" - "rsa" - "rsat" - "rsh" - "rsnapshot" - "rsop" - "rss" - "rst" - "rstp" - "rsync" - "rsyslog" - "rt" - "rtc" - "rtmp" - "rtp" - "rtsp" - "rtt" - "ruby" - "ruby-on-rails" - "ruby-on-rails-3" - "ruby-rack" - "rubygems" - "rudder" - "rules" - "runas" - "runit" - "runlevel" - "rv082" - "rvm" - "rxvt" - "rysnc" - "s3cmd" - "s3fs" - "s3ql" - "sa-exim" - "saas" - "safari" - "safe-browsing" - "safe-mode" - "safe-remove" - "safety" - "saltstack" - "samba" - "samba4" - "sametime" - "san" - "sandbox" - "sap" - "sap-portal" - "sar" - "sarg" - "sas" - "sasl" - "saslauthd" - "sata" - "satellite" - "save-money" - "saving" - "sbs-bpa" - "sc" - "sca" - "scalability" - "scale" - "scaling" - "scaling-out" - "scalr" - "scam" - "scan" - "scanner" - "scanning" - "sccm" - "sccm-2007" - "sccm-2012" - "sccm-2012-r2" - "scdpm" - "sce" - "sce-2007" - "schannel" - "schedule" - "scheduled" - "scheduled-task" - "scheduler" - "scheduling" - "schema" - "schools" - "schtasks" - "scientific-computing" - "scientific-linux" - "scientific-linux6" - "scm" - "sco" - "scom" - "scope" - "scoring" - "scounix-5.0.5" - "scouting" - "scp" - "scraping" - "screen" - "screen-capture" - "screen-monitor" - "screen-resolution" - "screen-sharing" - "screencasts" - "screenos" - "screensaver" - "screenshot" - "screwturn" - "scribe" - "scriptalias" - "scripting" - "scriptresource.axd" - "scrub" - "scsi" - "scsm-2012" - "sctp" - "scvmm" - "sd" - "sd-card" - "sdk" - "seagate" - "seamless" - "search" - "search-and-replace" - "search-engine" - "search-server" - "sec" - "secast" - "secondary" - "secondary-ip" - "secure" - "securedelete" - "securid" - "security" - "security-audit" - "security-certificate" - "security-group" - "security-zones" - "sed" - "segfault" - "segmentation" - "segmentationfault" - "select" - "selenium" - "self-hosting" - "self-signed" - "selinux" - "send-as" - "send-connector" - "sender" - "sender-id" - "sender-rewriting" - "sendgrid" - "sendmail" - "sensu" - "sent-http" - "seo" - "serial" - "serial-number" - "serial-over-lan" - "serial-port" - "serial-ports" - "server-2012-ipam" - "server-admin" - "server-configuration" - "server-core" - "server-crashes" - "server-hardware" - "server-management" - "server-manager" - "server-migration" - "server-push" - "server-room" - "server-settings" - "server-setup" - "server-side-includes" - "server-status" - "server-unavailable" - "serveraid" - "serveraid8k" - "serveralias" - "servernames" - "serverside" - "serverview" - "service" - "service-accounts" - "service-pack" - "service-rec" - "servicepacks" - "services" - "servlet" - "servlets" - "ses" - "session" - "session-disconnect" - "session-state" - "set" - "setenv" - "setenvif" - "setfacl" - "setgid" - "setting-as-default" - "settings" - "setuid" - "setup.py" - "setuptools" - "sflow" - "sfp" - "sftp" - "sge" - "sh" - "sha-1" - "sha-256" - "shadow" - "shadow-copy" - "shape" - "sharding" - "share" - "share-permissions" - "shared" - "shared-calendar" - "shared-hosting" - "shared-printers" - "shared-storage" - "sharepoint" - "sharepoint-2007" - "sharepoint-2010" - "sharepoint-2013" - "sharepoint-designer" - "sharepoint-search" - "sharepoint-server-farm" - "sharepoint-services" - "sharepoint2003" - "shares" - "sharing" - "shell" - "shell-command" - "shell-script" - "shell-scripting" - "shell-session" - "shibboleth" - "shinken" - "shipping" - "shmmax" - "shorewall" - "shortcut" - "shorturl" - "shrew" - "shrink" - "shutdown" - "sid" - "sidebyside" - "sieve" - "signals" - "signature" - "sigsegv" - "silent" - "simpledb" - "simpleid" - "simulation" - "sinatra" - "single-machine" - "single-sign-on" - "single-system-image" - "sip" - "site-collection" - "site-to-site-vpn" - "sitemap" - "siteminder" - "sizing" - "skype" - "sla" - "slackware" - "slapd" - "slave" - "sleep" - "sles" - "sles10" - "sles11" - "slicehost" - "slices" - "slip" - "slipstream" - "slow-connection" - "slow-logon" - "slowloris" - "small" - "small-business" - "smart" - "smartarray" - "smartcard" - "smartctl" - "smartermail" - "smartermail-8" - "smarthost" - "smartmontools" - "smartos" - "smartphone" - "smb" - "smb-conf" - "smbfs" - "smf" - "smime" - "smo" - "smoothwall" - "smp" - "sms" - "sms-gateway" - "smtp" - "smtp-auth" - "smtp-connector" - "smtp-helo-name" - "smtp-relay" - "smtpd" - "smtps" - "snapshot" - "sneakernet" - "sni" - "sniffer" - "sniffing" - "snippet" - "snmp" - "snmp-traps" - "snmpd" - "snmpv3" - "snoop" - "snort" - "snow-leopard" - "snow-leopard-server" - "soa" - "soa-record" - "soap" - "socat" - "social" - "socket" - "sockets" - "sockjs" - "socks" - "soekris" - "soft-skills" - "softether" - "softphone" - "software-deployment" - "software-evaluation" - "software-raid" - "software-update" - "solaris" - "solaris-10" - "solaris-11" - "solaris-8" - "solarwinds" - "solr" - "solusvm" - "sonet" - "sonicwall" - "sophos" - "sort" - "sound" - "source" - "source-address" - "sourcesafe" - "sox" - "space" - "spacewalk" - "spam" - "spam-filter" - "spam-prevention" - "spamassassin" - "spamd" - "span" - "spanning-tree" - "sparc" - "sparse-files" - "spawn-fcgi" - "spawning" - "spdy" - "specfile" - "special-characters" - "specifications" - "specs" - "spellcheck" - "spf" - "sphinx" - "sphinxsearch" - "spiceworks" - "spider" - "split" - "split-brain" - "split-dns" - "split-tunnel" - "split-tunneling" - "splunk" - "spn" - "spnego" - "spoofing" - "springframework" - "spyware" - "sql" - "sql-backup" - "sql-injection" - "sql-server" - "sql-server-2000" - "sql-server-2005" - "sql-server-2005-express" - "sql-server-2008" - "sql-server-2008-express" - "sql-server-2008-r2" - "sql-server-2008r2-express" - "sql-server-2012" - "sql-server-2012-express" - "sql-server-agent" - "sql-server-ce" - "sql-server-cluster" - "sql-server-express" - "sql-server-profiler" - "sql-server-reporting-serv" - "sql-server-service-broker" - "sqlagent" - "sqlanywhere" - "sqlclr" - "sqlcmd" - "sqldeveloper" - "sqlexception" - "sqlio" - "sqlite" - "sqlldr" - "sqlplus" - "sqlserver-reporting-servi" - "sqlserveragent" - "squid" - "squid3" - "squidguard" - "squirrelmail" - "sr-iov" - "srpms" - "srs" - "srv-record" - "srx" - "srx100" - "srx210" - "ss7" - "ssas" - "ssd" - "ssdp" - "ssg5" - "ssh" - "ssh-agent" - "ssh-keygen" - "ssh-keys" - "ssh-tunnel" - "sshfs" - "ssis" - "ssl" - "ssl-certificate" - "ssl-vpn" - "ssms" - "ssms-2008" - "ssmtp" - "ssp" - "ssrs" - "ssrs-2005" - "ssrs-2008" - "ssrs-2008-r2" - "ssrs-2012" - "sssd" - "sstp" - "stability" - "stack" - "staging" - "standalone" - "standards" - "start" - "start-menu" - "start-stop" - "start-stop-daemon" - "starttls" - "startup" - "startup-scripts" - "startupscript" - "starwind" - "stat" - "state-server" - "stateless" - "static" - "static-content" - "static-files" - "static-ip" - "static-routes" - "statistics" - "stats" - "statsd" - "status" - "statusnet" - "stderr" - "stdin" - "stdout" - "stealth" - "sticky-sessions" - "stop" - "stoperror" - "storage" - "storage-interface" - "storage-media" - "storage-server" - "storage-spaces" - "stored-procedures" - "stp" - "strace" - "strategy" - "stream" - "streaming" - "streaming-flv-video" - "stress" - "stress-testing" - "strings" - "stripe-size" - "striping" - "strongswan" - "stsadm" - "stty" - "stuck" - "stunnel" - "su" - "subdirectories" - "subdirectory" - "subdomain" - "subfolder" - "subject-alternate-name" - "subject-alternative-name" - "subnet" - "subscription" - "subscription-manager" - "subversion-edge" - "sudo" - "sudoers" - "suexec" - "sugarcrm" - "suggestions" - "suhosin" - "suid" - "sun" - "sun-one" - "sunos" - "sunray" - "supermicro" - "supervisord" - "suphp" - "support" - "support-contract" - "surge-protection" - "surveillance" - "survey" - "suspend" - "sustainability" - "svchost" - "svn" - "svn-dump" - "svn-repo" - "svn-verify" - "svnadmin" - "svnserve" - "svnserver" - "svnsync" - "swap" - "swapping" - "swf" - "switch" - "switching" - "swt" - "sybase" - "symantec" - "symantec-antivirus" - "symantec-endpoint-protect" - "symbian" - "symbolic-link" - "symfony" - "symlink" - "symlinks" - "sympa" - "syn" - "synaptic" - "sync" - "synchronization" - "syncml" - "synergy" - "synology" - "syntax" - "sysadmin-tools" - "sysctl" - "sysctls" - "sysinfo-retrieving" - "sysinternals" - "syslinux" - "syslog" - "syslog-ng" - "syslogd" - "sysprep" - "sysrq" - "system" - "system-building" - "system-center" - "system-compromise" - "system-monitoring" - "system-properties" - "system-recovery" - "system-restore" - "system-state" - "system-tray" - "system32" - "systemctl" - "systemd" - "systempath" - "systemtap" - "sysv" - "sysvol" - "t1" - "t38" - "t38modem" - "tab" - "tab-completion" - "table" - "table-partitioning" - "tables" - "tablet" - "tacacs+" - "tagging" - "tai" - "tail" - "tap" - "tape" - "tapedrive" - "tar" - "target" - "task" - "task-manager" - "task-scheduler" - "taskbar" - "tasks" - "tc" - "tcl" - "tcp" - "tcp-hijacking" - "tcp-offload-engine" - "tcp-slow-start" - "tcp-window" - "tcp-window-scaling" - "tcpdump" - "tcpip" - "tcpreplay" - "tcsh" - "teaching" - "team" - "team-foundation-server" - "teamcity" - "teamviewer" - "technet" - "technical-support" - "techniques" - "technology" - "tee" - "telco" - "telecom" - "telecommuting" - "telephone" - "telephony" - "telnet" - "temp-files" - "tempdb" - "temperature" - "template" - "templates" - "temporary-files" - "temporary-internet-files" - "temporary-tables" - "teredo" - "term" - "terminal" - "terminal-server" - "terminal-server-licensing" - "terminal-services" - "terminate" - "terminfo" - "terminology" - "test" - "testing" - "text" - "text-manipulation" - "text-search" - "tfs2005" - "tfs2008" - "tfs2010" - "tfs2012" - "tftp" - "the-cloud" - "theft" - "theory" - "thermal-dissipation" - "thick-provisioning" - "thin" - "thin-client" - "thin-provisioning" - "third-party-tools" - "thrashing" - "threadpool" - "threads" - "three-phase-power" - "throttling" - "throughput" - "thttpd" - "thumb-drive" - "thumbdrive" - "thunderbird" - "thunderbolt" - "ticket" - "ticket-system" - "tiered-storage" - "tiger" - "tightvnc" - "time" - "time-capsule" - "time-machine" - "time-management" - "time-measurement" - "time-server" - "time-tracking" - "time-wait" - "timeout" - "timestamp" - "timesync" - "timezone" - "tinc" - "tinydns" - "tinyproxy" - "tips" - "tivoli" - "tld" - "tls" - "tmg" - "tmp" - "tmpfs" - "tmpwatch" - "tmux" - "tnef" - "tns" - "toad" - "token" - "tolven" - "tomato" - "tombstones" - "tomcat" - "tomcat5.5" - "tomcat6" - "tomcat7" - "toolkit" - "tools" - "top" - "topology" - "tor" - "tornado" - "torque" - "torrent" - "tortoisehg" - "tortoisesvn" - "tp-link" - "tpm" - "tput" - "trac" - "trace" - "traceroute" - "tracert" - "tracing" - "tracking" - "tracking-bounces" - "traffic" - "traffic-filtering" - "traffic-management" - "traffic-shaping" - "training" - "tramp" - "transaction" - "transaction-log" - "transactional-replication" - "transactions" - "transcoding" - "transfer" - "transitioning" - "translate" - "transmission" - "transparent-proxy" - "transport-rules" - "trap" - "tray-icon" - "trendmicro" - "tricks" - "tridion" - "trigger" - "trim" - "tripwire" - "trixbox" - "trojan" - "troubleshooting" - "tru64" - "trucrypt" - "truecrypt" - "trueimage" - "truncate" - "truncate-log" - "trunk" - "trust" - "trusted-domain" - "ts-gateway" - "tshark" - "tsig" - "tsl" - "tsm" - "tsql" - "tswa" - "tsweb" - "ttl" - "tty" - "tun" - "tune2fs" - "tungsten" - "tuning" - "tunnel" - "tunneling" - "turnkey-linux" - "tutorial" - "tutorials" - "tv" - "tw-cli" - "twiddle" - "twiki" - "twisted" - "twitter" - "two-factor" - "txt-record" - "typo3" - "uac" - "uag-2010" - "ubiquiti" - "ubuntu" - "ubuntu-10.04" - "ubuntu-10.10" - "ubuntu-11.04" - "ubuntu-11.10" - "ubuntu-12.04" - "ubuntu-12.10" - "ubuntu-13.04" - "ubuntu-14.04" - "ubuntu-14.10" - "ubuntu-8.04" - "ubuntu-9.04" - "ubuntu-9.10" - "ubuntu-enterprise-cloud" - "ucarp" - "ucc" - "udb-db2" - "udev" - "udevd" - "udf" - "udp" - "uec" - "uefi" - "ufs" - "ufw" - "ui" - "uid" - "ulimit" - "ultrasparc" - "ultravnc" - "umask" - "unattended" - "unattended-upgrades" - "unc" - "undelete" - "undeliverable" - "undo" - "unexpected-shutdown" - "unicast" - "unicode" - "unicorn" - "unified-communications" - "unified-messaging" - "uninstall" - "unionfs" - "uniqueidentifier" - "unison" - "unity" - "university" - "unix" - "unix-domain-sockets" - "unix-programming" - "unix-shell" - "unix-socket" - "unix-time" - "unixodbc" - "unlink" - "unlock" - "unmount" - "unnatended-upgrades" - "unsupported-hardware" - "untagged" - "untangle" - "up2date" - "update" - "update-rc.d" - "updates" - "updating" - "upgrade-issue" - "upgrading" - "upload" - "upn" - "upnp" - "ups" - "upstart" - "uptime" - "ure" - "uri" - "uri-decoding" - "url" - "url-routing" - "usage" - "usb" - "usb-boot" - "usb-flash-drive" - "usb-modem" - "usb-sata" - "usb-stick" - "user" - "user-accounts" - "user-experience" - "user-groups" - "user-management" - "user-mode-linux" - "user-permissions" - "user-profile" - "user-profiles" - "user-rights" - "user-settings" - "useradd" - "useragent" - "usermin" - "usermod" - "username" - "users" - "users-rights" - "usmt" - "utc" - "utf-8" - "utilities" - "utility" - "utilization" - "utm" - "utp" - "uuid" - "uwsgi" - "v2p" - "vacation" - "vacuum" - "vagrant" - "valgrind" - "validation" - "var" - "varbinary" - "variable-scoping" - "variables" - "varnish" - "varnishncsa" - "vb" - "vb.net" - "vb6" - "vblock" - "vboxmanage" - "vbscript" - "vbulletin" - "vcb" - "vcpu" - "vcs" - "vdi" - "vdr" - "vds" - "vdsl" - "vector-graphics" - "veeam" - "ventilation" - "verification" - "veritas" - "veritas-cluster-server" - "verizon-wireless" - "version" - "version-control" - "version-number" - "versioning" - "vfs" - "vhd" - "vhost" - "vhosts" - "vi" - "via" - "video" - "video-card" - "video-conferencing" - "video-hosting" - "video-streaming" - "view" - "viewvc" - "vigor" - "vim" - "vimrc" - "virsh" - "virt-install" - "virt-manager" - "virtio" - "virtual" - "virtual-appliances" - "virtual-dedicated-server" - "virtual-directory" - "virtual-disk" - "virtual-domains" - "virtual-drive" - "virtual-hosting" - "virtual-ip" - "virtual-machines" - "virtual-memory" - "virtual-network" - "virtual-pc" - "virtual-private-cloud" - "virtual-san-appliance" - "virtual-server-2005-r2" - "virtualbox" - "virtualcenter" - "virtualdirectories" - "virtualdrive" - "virtualenv" - "virtualhost" - "virtualization" - "virtualmin" - "virtualpc" - "virtualpc-2007" - "virtualserver" - "virtuoso" - "virtuozzo" - "virtusertable" - "virus" - "virus-scan" - "viruses" - "visio" - "visitors" - "visual" - "visual-studio" - "visual-studio-2008" - "visual-studio-2008-sp1" - "visual-studio-2010" - "visualization" - "visualstudio" - "visualsvn" - "visualsvn-server" - "vlan" - "vlc" - "vlogger" - "vlsm" - "vmbuilder" - "vmdk" - "vmfs" - "vmlinuz" - "vmotion" - "vms" - "vmstat" - "vmware-capacity-planner" - "vmware-converter" - "vmware-esx" - "vmware-esxi" - "vmware-fusion" - "vmware-infrastructure" - "vmware-player" - "vmware-server" - "vmware-srm" - "vmware-studio" - "vmware-thinapp" - "vmware-tools" - "vmware-vcenter" - "vmware-vcloud-director" - "vmware-vdr" - "vmware-view" - "vmware-vma" - "vmware-vmdk" - "vmware-vsphere" - "vmware-workstation" - "vnc" - "vnc-viewer" - "vnx" - "voice" - "voip" - "volume" - "volume-activation" - "volumelicensing" - "volumes" - "vonage" - "vpc" - "vpn" - "vpnc" - "vpopmail" - "vpro" - "vps" - "vps-administration" - "vrrp" - "vsftp" - "vsftpd" - "vsphere-client" - "vss" - "vsts2008" - "vswitch" - "vtp" - "vulnerabilities" - "vulnerability" - "vulnerability-scanning" - "vyatta" - "w32time" - "w3c" - "w3svc" - "w3wp" - "wadk" - "waik" - "wait" - "wake-on-lan" - "wamp" - "wampserver" - "wan" - "wap" - "war-stories" - "warm-standby" - "warning" - "warranty" - "was7" - "watch" - "watchdog" - "watchguard" - "water-cooling" - "wave" - "wbadmin" - "wc" - "wcf" - "wcf-security" - "wcfservice" - "wds" - "web" - "web-administration" - "web-analytics" - "web-application-firewall" - "web-application-proxy" - "web-applications" - "web-apps" - "web-based" - "web-browsing" - "web-client" - "web-config" - "web-crawler" - "web-deployment" - "web-development" - "web-development-server" - "web-edition" - "web-farm" - "web-farm-framework" - "web-gardens" - "web-hosting" - "web-interface" - "web-mirror" - "web-platform-installer" - "web-proxy" - "web-publishing" - "web-security" - "web-services" - "web-traffic" - "web.config" - "webadmin" - "webalizer" - "webapp" - "webapplication" - "webcam" - "webdav" - "webdavfs" - "webex" - "webfarm" - "webfilter" - "webi" - "weblogic" - "weblogic-10.x" - "webmail" - "webmin" - "webpage" - "webpart" - "webresource.axd" - "websense" - "webserver" - "webservice" - "webservices" - "website" - "website-attack" - "websockets" - "websphere" - "websphere-mq" - "webstats" - "websvn" - "wep" - "wes7" - "western-digital" - "wget" - "whatsup" - "whisper" - "whitelist" - "whm" - "whois" - "wifi" - "wifidog" - "wiki" - "wildcard" - "wildcard-ssl" - "wildcard-subdomain" - "wildcards" - "wildfly8" - "wim" - "wimax" - "win32" - "winbind" - "windbg" - "window-managers" - "windows" - "windows-2000" - "windows-7" - "windows-8" - "windows-8.1" - "windows-98" - "windows-advanced-firewall" - "windows-authentication" - "windows-backup" - "windows-ce" - "windows-clients" - "windows-cluster" - "windows-defender" - "windows-dns" - "windows-embedded" - "windows-error-reporting" - "windows-event-log" - "windows-explorer" - "windows-firewall" - "windows-home-server" - "windows-hosting" - "windows-installation" - "windows-installer" - "windows-media-player" - "windows-messenger" - "windows-mobile" - "windows-multipoint-server" - "windows-networking" - "windows-nlb" - "windows-nt" - "windows-pe" - "windows-phone-7" - "windows-registry" - "windows-remote-storage" - "windows-sbs" - "windows-sbs-2000" - "windows-sbs-2003" - "windows-sbs-2008" - "windows-sbs-2011" - "windows-server" - "windows-server-2000" - "windows-server-2003" - "windows-server-2003-r2" - "windows-server-2008" - "windows-server-2008-core" - "windows-server-2008-r2" - "windows-server-2008-sp2" - "windows-server-2008-web" - "windows-server-2012" - "windows-server-2012-r2" - "windows-server-8" - "windows-server-backup" - "windows-server-essentials" - "windows-service" - "windows-sever-2012-r2" - "windows-storage-server" - "windows-terminal-server" - "windows-update" - "windows-virtual-pc" - "windows-vista" - "windows-vista-64" - "windows-vpn" - "windows-web-server" - "windows-xp" - "windows-xp-embedded" - "windows-xp-sp3" - "windowsessentialbusiness" - "windowsmediaservice" - "windowssearch" - "wine" - "winhttp" - "winlogon" - "winmail.dat" - "winpcap" - "winpe" - "winrar" - "winrm" - "winrs" - "wins" - "winscp" - "wipe-drive" - "wired" - "wireless-bridge" - "wireshark" - "wiring" - "wkhtmltopdf" - "wlan" - "wlbs" - "wmi" - "wmic" - "wordpress" - "wordpress-mu" - "work-environment" - "workbench" - "worker" - "worker-process" - "workflow" - "workgroup" - "workload" - "workstation" - "workstation-management" - "worm" - "wpa" - "wpa2" - "wpa2-aes" - "wpad" - "wpad.dat" - "wql" - "write" - "write-barrier" - "wrt54g" - "wrt54gl" - "ws-management" - "wscript" - "wsdl" - "wsgi" - "wsh" - "wsrm" - "wss" - "wss-3.0" - "wsus" - "wsus-offline" - "www" - "www-data" - "wysiwyg" - "x-forwarded-for" - "x-frame-options" - "x11" - "x11forwarding" - "x3550" - "x509" - "x86" - "x86-64" - "xamp" - "xampp" - "xapian" - "xargs" - "xauth" - "xcache" - "xcopy" - "xcp" - "xdebug" - "xdmcp" - "xen" - "xen4.4" - "xenapp" - "xencenter" - "xendesktop" - "xenserver" - "xeon" - "xeon-phi" - "xerox" - "xfce" - "xfs" - "xhprof" - "xinetd" - "xl2tpd" - "xm" - "xml" - "xmlhttp" - "xmlrpc" - "xmpp" - "xorg" - "xp-mode" - "xpath" - "xraid" - "xserve" - "xserve-raid" - "xserver" - "xsp" - "xsp2" - "xterm" - "xtrabackup" - "xtradb" - "xubuntu" - "xvfb" - "y2k10" - "yaml" - "yaws" - "yp" - "yslow" - "yum" - "zabbix" - "zabbix-agent" - "zend" - "zend-framework" - "zend-optimizer" - "zend-server" - "zend-server-ce" - "zenoss" - "zentyal" - "zenworks" - "zerigo" - "zero" - "zero-fill" - "zerovm" - "zeus" - "zfs" - "zfs-fuse" - "zfs-l2arc" - "zfsonlinux" - "zimbra" - "zip" - "zmanda" - "zombie" - "zone" - "zone-transfer" - "zoneedit" - "zones" - "zoning" - "zookeeper" - "zope" - "zos" - "zpanel" - "zpool" - "zsh" - "zvol" - "zypper" - "zywall" - "zyxel") diff --git a/data/tags/sharepoint.el b/data/tags/sharepoint.el deleted file mode 100644 index 0e3664b..0000000 --- a/data/tags/sharepoint.el +++ /dev/null @@ -1,1151 +0,0 @@ -(".net" - "12" - "14" - "2003" - "2007" - "2010" - "2012" - "2013" - "2016" - "3-tier" - "301" - "401" - "403" - "404" - "70-331" - "70-332" - "70-667" - "access" - "access-denied" - "access-rights" - "access-services" - "accessibility" - "acl" - "acs" - "actionfilter" - "active-directory" - "active-directory-import" - "activity-feed" - "ad" - "ad-account-creation-mode" - "ad-lds" - "adfs" - "adi" - "administration" - "advanced-search" - "aggregation" - "ajax" - "ajax-control-tookit" - "ajaxdelta" - "alert" - "allwebs" - "alm" - "alternate-access-mapping" - "analytics" - "anchor-tags" - "angular" - "angularjs" - "anonymous-authentication" - "anti-virus" - "aop" - "app" - "app-fabric" - "app-part" - "append-changes" - "apple-ios" - "application-pages" - "application-pool" - "application-server" - "approval-process" - "apps-development" - "architecture" - "archive" - "ashx" - "asmx" - "asp.net" - "aspnet-lifecycle" - "aspx" - "assembly-references" - "asseturlselector" - "attachments" - "audience-targeting" - "audiences" - "auditing" - "authentication" - "authoritative-pages" - "authorization" - "auto-approve" - "autohosted" - "autospinstaller" - "azure" - "backup" - "barcodes" - "batch" - "bcs" - "bdc" - "bdc-model" - "best-practices" - "beta" - "bi" - "bin" - "blackberry" - "blob" - "blob-cache" - "blog" - "body" - "books" - "boot-strap" - "branding" - "breadcrumb" - "browser-compatibility" - "browsers" - "bug" - "build" - "build-server" - "bulk" - "business" - "business-card" - "business-data-catalog" - "business-intelligence" - "cache" - "caching" - "cal" - "calculated-column" - "calculated-column-formula" - "calendar" - "calender" - "callouts" - "caml" - "caml-query" - "caml-renderpattern" - "camlviewfields" - "capacity-planning" - "cascading" - "caspolicies" - "catalog" - "categories" - "central-administration" - "certificate" - "certification" - "cewp" - "cews" - "changelog" - "chart" - "chart-web-part" - "check-in" - "check-out" - "checklist" - "choice-field" - "chrome" - "cksdev" - "claim-provider" - "claims" - "claims-based-auth" - "classic-mode-auth" - "cleanup" - "client" - "client-object-model" - "client-side-object-model" - "client-side-rendering" - "clients.svc" - "clone" - "close" - "cloud-business-apps" - "cmdlets" - "cmis" - "cms" - "co-authoring" - "code-access-security" - "codebehind" - "codeplex" - "collaboration" - "collection" - "column" - "column-data" - "com" - "comments" - "community" - "community-site" - "comparison" - "composed-looks" - "concurrency" - "conditional" - "config-database" - "configuration" - "configuration-wizard" - "confluence" - "connected-web-parts" - "connection" - "console-application" - "consumer" - "contacts" - "containspredicate" - "content" - "content-and-structure" - "content-approval" - "content-database" - "content-deployment" - "content-editor-web-part" - "content-enrichment" - "content-migration" - "content-organizer" - "content-organizer-rule" - "content-query-web-part" - "content-rating" - "content-search-web-part" - "content-source" - "content-type" - "content-type-hub" - "contextualscope" - "continuous-integration" - "contribute" - "conversion" - "cookie" - "copy-and-paste" - "core-api" - "core-js" - "crawl" - "crawl-external-content" - "crawl-rules" - "crawled-property" - "crawling" - "credentials" - "crm" - "cross-browser" - "cross-farm" - "cross-list" - "cross-platform" - "cross-site" - "cross-site-publishing" - "crosslistquerycache" - "crosslistqueryinfo" - "csom" - "css" - "cssregistration" - "csv" - "cswp" - "ctx" - "cumulative-update" - "custom" - "custom-action" - "custom-actions" - "custom-alert-templates" - "custom-application" - "custom-bcs" - "custom-bdc" - "custom-control" - "custom-database" - "custom-field-types" - "custom-form" - "custom-list" - "custom-login-page" - "custom-masterpage" - "custom-properties" - "custom-schema" - "custom-timer-job" - "custom-web-app" - "custom-web-part-property" - "custom-web-parts" - "custom-workflow" - "customitem" - "dashboard" - "dashboard-designer-2013" - "data" - "data-connection" - "data-form-web-part" - "data-view-web-part" - "database" - "database-attach" - "database-connection" - "database-server" - "datasheet" - "datatable" - "dataview" - "date-format" - "date-time" - "datepicker" - "datetimecontrol" - "daylight-saving-time" - "db-log-file" - "ddwrt" - "deadlock" - "debugging" - "decompile" - "default-document" - "default-value" - "delegate" - "delegate-control" - "delete" - "denied" - "deployment" - "design" - "design-manager" - "design-patterns" - "designer-workflow" - "dev-site" - "developer" - "development" - "development-enviroment" - "device-channel" - "diagnostics" - "dialog-framework" - "digital-signature" - "dip" - "directory" - "disaster-recovery" - "discussion-board" - "display-form" - "display-name" - "display-template" - "dispose" - "distributedcache" - "distribution-lists" - "dmz" - "dns" - "document" - "document-center" - "document-converter" - "document-id" - "document-info-panel" - "document-library" - "document-migration" - "document-set" - "document-template" - "documentation" - "domain" - "download" - "draft" - "drag-and-drop" - "drop-off-library" - "dropdown" - "duplicate" - "dwp" - "dynamics-crm" - "e-commerce" - "e-learning" - "ecb-menu" - "ecm" - "ediscovery" - "edit" - "edit-form" - "edit-mode-panel" - "editing-menu" - "edition" - "elements-xml" - "elmah" - "email" - "email-enabled-library" - "email-templates" - "encoding" - "enterprise-keywords" - "enterprise-search" - "enterprise-wiki" - "environment" - "error" - "error-handling" - "error.htm" - "evaluation" - "event-handlers" - "event-receivers" - "events" - "ews" - "exam" - "exams" - "excel" - "excel-services" - "exception" - "exception-handling" - "exchange" - "exchange-online" - "exchange-server" - "expiration" - "explorer" - "explorer-view" - "export" - "extended" - "external-blob-storage" - "external-content-type" - "external-data" - "external-data-column" - "external-list" - "external-users" - "extranet" - "fab-40" - "farm" - "farm-setup" - "farm-solution" - "fast" - "fast-esp" - "fast-for-sharepoint" - "fast-search" - "feature" - "feature-activation" - "feature-dependency" - "feature-receiver" - "feature-scope" - "feature-stapling" - "feature-upgrade" - "features" - "federated-search" - "federation" - "field-controls" - "field-definition" - "field-type" - "file" - "file-icons" - "file-metadata" - "file-server" - "file-upload" - "filenotfoundexception" - "filter" - "filtering" - "filtermulivalue" - "fim" - "fips" - "firebug" - "firefox" - "folder" - "follow" - "following" - "footnote" - "forefront" - "form" - "form-library" - "formatting" - "formfield" - "forms-authentication" - "forms-library" - "forms-services" - "front-end" - "fulltextsqlquery" - "gac" - "gantt-view" - "geolocation" - "ghosting" - "global-navigation" - "google-analytics" - "google-maps" - "governance" - "gridview" - "group-policy" - "grouping" - "groups" - "guid" - "guidance" - "hardware" - "hashtags" - "health" - "health-analyzer" - "hidden" - "hive" - "hnsc" - "host-header" - "host-named" - "hosting" - "hosting-environment" - "hotfix" - "html" - "html-editor" - "html-form-web-part" - "html5" - "http-400-bad-request" - "http-headers" - "http-module" - "http-status-503" - "httpcontext" - "httpmodules" - "https" - "hybrid-solution" - "hyperlink" - "ie" - "ie-11" - "ie6" - "ie8" - "ifieldeditor" - "ifilter" - "iframe" - "iis" - "iis7" - "image" - "image-display" - "image-rendition" - "image-upload" - "imaging" - "impersonation" - "import" - "incoming-email" - "index" - "index-component" - "indexed-column" - "infopath" - "infopath-data-connections" - "infopath-rules" - "information-architecture" - "information-management" - "information-policy" - "infrastructure" - "inheritance" - "initiation-form" - "input" - "inputformtextbox" - "installation" - "integrated-mode" - "integration" - "internal-name" - "internet" - "internet-explorer" - "internet-sites" - "intranet" - "irm" - "isapi" - "issue-tracking" - "item" - "item-styles" - "item-updating" - "itemupdated" - "iterate" - "javascript" - "jobs" - "joined-view" - "jpg" - "jquery" - "jquery-ui" - "jslink" - "jsom" - "json" - "kerberos" - "key-filter" - "keyword" - "keyword-query-language" - "keyword-set" - "keywordquery" - "kpi" - "kql" - "landing-page" - "language" - "language-pack" - "laptop" - "launch" - "layouts" - "ldap" - "learning" - "learning-kit" - "libraries" - "library" - "licence" - "licensing" - "lifecycle" - "like" - "limitations" - "links-list" - "linq" - "linux" - "list" - "list-definition" - "list-form" - "list-form-web-part" - "list-item" - "list-template" - "list-view" - "list-view-threshold" - "list-view-web-part" - "listdata.svc" - "load-balancing" - "load-testing" - "localization" - "lock" - "log" - "logging" - "login" - "logs" - "lookup-column" - "lotus-notes" - "mac-os-x" - "machine-translation" - "maintenance" - "managed" - "managed-account" - "managed-metadata" - "managed-metadata-service" - "managed-navigation" - "managed-path" - "managed-property" - "mapped-folder" - "mapping-engine" - "markup" - "master-page" - "mds" - "media-streaming" - "meeting-workspace" - "membership" - "membership-provider" - "memory-leak" - "menu-item" - "merge" - "messagebox" - "metadata" - "metrics" - "microsoft-access" - "migrate" - "migration" - "migrationapi" - "minimal-download-strategy" - "mirroring" - "mms" - "mobile" - "modal-dialog" - "modified" - "module" - "monitoring" - "move" - "ms-office" - "ms-project" - "mui" - "multi-select" - "multi-tenancy" - "multiline-text-field" - "multilingual" - "multiple-farms" - "multiple-lines-of-text" - "multiple-values" - "multithreading" - "mvc" - "my" - "my-content" - "my-profile" - "my-site" - "mysite" - "mysites" - "napa" - "navbars" - "navigation" - "network" - "network-drive" - "networking" - "newform" - "newsfeed" - "newsletter" - "nintex" - "nlb" - "no-checked-in-versions" - "no-code-solution" - "nodejs" - "notifications" - "ntlm" - "number" - "o365" - "oauth" - "object-cache" - "object-model" - "odata" - "office" - "office-365" - "office-365-develop-tool" - "office-365-developer" - "office-data-connection" - "office-integration" - "office-web-apps" - "office365apis" - "offline" - "offline-sync" - "olap" - "on-behalf" - "onedrive-for-business" - "onet" - "ootb" - "open-source" - "open-with-explorer" - "opensearch" - "openxml" - "optimization" - "oracle" - "ordering" - "organization-browser" - "organization-profile" - "orphan" - "oslo" - "out-of-the-box" - "outgoing-email" - "outlook" - "output-cache" - "owa" - "owstimer" - "packaging" - "page-layout" - "page-not-found" - "page-view" - "page-viewer-web-part" - "pages" - "pageviewer" - "paging" - "parameter" - "parser-error" - "password" - "patching" - "path" - "patterns-and-practices" - "pause" - "pdf" - "people-picker" - "people-search" - "performance" - "performancepoint" - "permalink" - "permissions" - "persistence" - "person" - "personalization" - "phonetics" - "picture" - "picture-library" - "pivot-tables" - "podcasting" - "popup" - "port" - "portalsitemapprovider" - "postback" - "powerpivot" - "powerpoint" - "powerpoint-services" - "powershell" - "powertools" - "powerview" - "prefix" - "preloader" - "prerequisites" - "presence-indication" - "printing" - "production" - "productivity" - "profile-sync" - "profiling" - "project-server" - "project2007" - "promises" - "promoted-links" - "properties" - "property" - "property-bag" - "provider-hosted-app" - "provisioning" - "provisioning-providers" - "ps" - "psconfig" - "public-website" - "publishing" - "publishing-page" - "publishing-site" - "quality-assurance" - "query" - "query-role" - "query-string" - "quick-edit" - "quick-launch" - "quick-parts" - "quickedit" - "quota" - "quotas" - "rating" - "rbs" - "read" - "read-only" - "recommendations" - "records-center" - "records-management" - "recurrent" - "recurring-events" - "recycle-bin" - "redirect" - "refinement-panel" - "refiner" - "reflection" - "refresh" - "regex" - "regional-settings" - "register" - "registry" - "related-list" - "reliability" - "reminder" - "remote-blob-storage" - "remote-event-receiver" - "remote-provisioning" - "rename" - "rendering" - "rendering-template" - "replication" - "report-viewer" - "reporting-services" - "reports" - "request-digest" - "resource-files" - "resource-throttling" - "resources" - "response" - "responsive" - "responsive-template" - "rest" - "rest-api" - "restart" - "restore" - "result-source" - "resx" - "retention" - "retraction" - "reusable" - "reuse-term" - "reverse-engineering" - "reverse-proxy" - "ribbon" - "rich-text" - "richhtmlfield" - "role-provider" - "roles" - "rollup-image" - "row-limit" - "rss" - "rte" - "runtime" - "runwithelevatedprivileges" - "s2s" - "safe-controls" - "sandbox-solution" - "save" - "save-as-template" - "schedule" - "schema" - "scope" - "scopedisplaygroup" - "script" - "scriptlink" - "sdk" - "search" - "search-api" - "search-box" - "search-center" - "search-configuration" - "search-content" - "search-express" - "search-query" - "search-results" - "search-scope" - "searchserviceapplication" - "secure-store" - "security" - "security-token-service" - "security-trimming" - "self-service" - "seo" - "serialization" - "server" - "server-farm" - "server-name-mappings" - "service" - "service-account" - "service-application" - "service-applications" - "service-bus" - "service-instance" - "service-pack" - "service-pack-2" - "services" - "session" - "setspn" - "settings" - "setup" - "share" - "shared-service-provider" - "shared-services" - "sharepiont" - "sharepoint-apps" - "sharepoint-branding" - "sharepoint-calendar" - "sharepoint-designer" - "sharepoint-email" - "sharepoint-enterprise" - "sharepoint-farm" - "sharepoint-fields" - "sharepoint-foundation" - "sharepoint-hosted-app" - "sharepoint-library" - "sharepoint-on-prem" - "sharepoint-online" - "sharepoint-search" - "sharepoint-server" - "sharepoint-store" - "sharepoint-workspace" - "sharepointdesinger2013" - "shop" - "shortcut" - "shredded-storage" - "sign-in" - "silverlight" - "single-sign-on" - "site" - "site-collection" - "site-column" - "site-creation" - "site-definition" - "site-deletion" - "site-directory" - "site-logo" - "site-mailboxes" - "site-settings" - "site-template" - "site-usage" - "sitefeed" - "sitepages" - "size" - "skydrive-pro" - "slidelibrary" - "small-business-server" - "smartpart" - "sms" - "smtp" - "sni" - "snippet" - "soap" - "social" - "social-comment" - "social-connector" - "social-note" - "social-tag" - "solution" - "solution-deployment" - "solution-package" - "sorting" - "source-control" - "sp.sod" - "spa" - "space-usage" - "spaudit" - "spbodyonload" - "spcontext" - "spdesigner" - "spdiag" - "spdialog" - "spdisposechecker" - "special-characters" - "spellchecker" - "spfield" - "spfielduser" - "spfile" - "spgridview" - "splimitedwebpartmanager" - "splist" - "splistitem" - "splistitemcollection" - "splongoperation" - "spmenufield" - "spmetal" - "spnavigationnode" - "sppersistedobject" - "spprincipal" - "spprofilephotostore" - "sppropertybag" - "spquery" - "spreadsheet" - "sprequest" - "spservices" - "spsite" - "spsitedataquery" - "spsource" - "spurl" - "spuser" - "sputility" - "spview" - "spweb" - "spweb.getfileasstringurl" - "spwebcollection" - "spwebconfigmodification" - "sql" - "sql-analysis-services" - "sql-membership-provider" - "sql-query" - "sql-server" - "sql-server-2012" - "ssl" - "sso" - "ssom" - "staging" - "standalone" - "state-machine" - "state-service" - "statistics" - "stats" - "status" - "storage" - "stress-test" - "string" - "sts" - "stsadm" - "stsdev" - "style" - "style-library" - "sub-site" - "submit" - "subscriptions" - "suite-links" - "suitebar" - "support" - "survey" - "survey-list" - "sync" - "synchronisation" - "synchronization" - "syntax" - "system-master-page" - "tagcloud" - "tagging" - "tags" - "task-list" - "tasks" - "taxonomy" - "team" - "team-sites" - "telerik" - "template" - "term" - "term-set" - "term-store" - "terminate" - "terminology" - "testing" - "textarea" - "tfs" - "theme" - "third-party-software" - "threshold" - "thumbnail" - "tiered" - "time-out" - "timer-jobs" - "timer-service" - "timestamp" - "timezone" - "token" - "toolbar" - "toolpart" - "tools" - "top-link-bar" - "topology" - "training" - "tripoli" - "troubleshooting" - "trusted-domain" - "tutorials" - "twitter" - "typeloadexception" - "uls" - "unghosting" - "unique" - "unit-testing" - "unsafe-updates" - "untagged" - "update" - "updatelistitems" - "updatepanel" - "upgrade" - "ups" - "url" - "url-length" - "url-rewriting" - "usage-counters" - "user" - "user-accounts" - "user-configuration" - "user-controls" - "user-experience" - "user-information-list" - "user-profile" - "user-profile-property" - "user-profile-service" - "user-profile-service-app" - "userprofilemanager" - "userprofiles" - "validation" - "variations" - "vba" - "version" - "version-comments" - "version-history" - "versioning" - "video" - "video-richmedia" - "view" - "view-styles" - "viewfields" - "viewstate" - "virtual-directory" - "virtual-machine" - "visio" - "visio-services" - "visual" - "visual-studio" - "visual-studio-2012" - "visual-studio-2013" - "visual-web-part" - "vmware" - "vs2012" - "vsewss" - "warm-up" - "wcf" - "wcm" - "web" - "web-analytics" - "web-application" - "web-application-zones" - "web-config" - "web-part" - "web-part-connection" - "web-part-gallery" - "web-part-page" - "web-part-pages" - "web-part-property" - "web-part-zone" - "web-server" - "web-services" - "web-template" - "webdav" - "welcome-page" - "wiki" - "wiki-pages" - "win-form" - "windows" - "windows-7" - "windows-8" - "windows-application" - "windows-authentication" - "windows-server" - "windows-server-2008-r2" - "windows-server-2012-r2" - "windows-xp" - "winsock" - "word" - "word-automation" - "worker-process" - "workflow" - "workflow-activity" - "workflow-history" - "workflow-lookup" - "workflow-manager" - "workflow-template" - "workflow-variable" - "workgroup" - "workspace" - "wsdl" - "wspbuilder" - "wss" - "wss-2.0" - "wss-3.0" - "wss-logging" - "x-frame" - "xaml-browser-application" - "xlv" - "xml" - "xml-viewer-web-part" - "xpath" - "xslt" - "xslt-list-view-web-part" - "xss" - "yammer") diff --git a/data/tags/skeptics.el b/data/tags/skeptics.el deleted file mode 100644 index cbc2cb7..0000000 --- a/data/tags/skeptics.el +++ /dev/null @@ -1,559 +0,0 @@ -("8fact" - "9-11" - "abiogenesis" - "abortion" - "acne" - "acupuncture" - "addiction" - "adolf-hitler" - "advertising" - "africa" - "aging" - "agriculture" - "air" - "airport-security" - "albert-einstein" - "alcohol" - "aliens" - "allergies" - "alternative-medicine" - "anatomy" - "ancient-monuments" - "ancient-rome" - "ancient-texts" - "andrew-wakefield" - "animals" - "antarctica" - "anthropology" - "antibiotic-resistance" - "antioxidant" - "apple" - "apple-inc" - "arachnology" - "archaeology" - "archeology" - "architecture" - "area-51" - "army" - "art" - "astrology" - "astronomy" - "australia" - "autism" - "aviation" - "backmasking" - "banking" - "barack-obama" - "battery" - "beauty" - "beer" - "bees" - "behavior" - "belarus" - "bible" - "bicycles" - "big-bang-theory" - "biology" - "biophysics" - "birds" - "birth" - "blood" - "blood-type" - "body-modification" - "body-piercing" - "bodybuilding" - "books" - "boston-marathon-bombings" - "bruce-lee" - "caffeine" - "canada" - "cancer" - "cannibalism" - "cape-town" - "cardiology" - "carl-sagan" - "cars" - "catastrophe" - "catholic-church" - "cats" - "causality" - "cdc" - "celebrities" - "charities" - "charles-darwin" - "charlie-chaplin" - "chemistry" - "chernobyl" - "chess" - "chewing-gum" - "chi" - "children" - "china" - "chinese" - "cholesterol" - "christianity" - "christmas" - "christopher-hitchens" - "church" - "cia" - "cigarettes" - "circumcision" - "cleaning" - "climate-change" - "climatology" - "clothing" - "coffee" - "cognitive-fitness" - "cognitive-science" - "colorado" - "colors" - "commerce" - "common-cold" - "compact-fluorescent-lamps" - "computers" - "concentration" - "condoms" - "consciousness" - "conspiracy" - "consumer-products" - "contraception" - "cooking" - "copyright" - "corporate-finance" - "cosmetics" - "cow" - "crime" - "criminology" - "cryptography" - "cryptozoology" - "cuba" - "culture" - "currency" - "cyprus" - "death-penalty" - "democracy" - "demographics" - "denmark" - "dentistry" - "depression" - "dermatology" - "diabetes" - "diagnostic-test" - "discrimination" - "disease" - "divorce" - "dna" - "doctors" - "dogs" - "dolphins" - "doping" - "dreaming" - "drink" - "drinks" - "driving" - "drug-development" - "drugs" - "earth" - "earthquakes" - "ebola" - "ecology" - "economics" - "education" - "egg" - "egypt" - "electromagnetism" - "electronics" - "elephants" - "elevators" - "email" - "emotions" - "employment" - "energy" - "energy-efficiency" - "engineering" - "entomology" - "environment" - "environmental-health" - "epidemiology" - "epistemology" - "ergonomics" - "esp" - "ethics" - "ethology" - "etymology" - "europe" - "evolution" - "exercise" - "experiments" - "explosives" - "extinction-event" - "facebook" - "family" - "fashion" - "fasting" - "fertility" - "finance" - "fire" - "fitness" - "flu" - "fluoridation" - "fluoride" - "football" - "forecasting" - "forensics" - "fossil-fuel" - "fossil-record" - "fracking" - "france" - "fruit" - "fuel-economy" - "fukushima-daiichi" - "gaddafi" - "gambling" - "games" - "gasoline" - "gaza" - "gender" - "gender-selection" - "genetics" - "genghis-khan" - "geography" - "geology" - "george-washington" - "germany" - "ghosts" - "gmo" - "government" - "government-policy" - "graphology" - "greece" - "guns" - "haarp" - "hacking" - "hair" - "halloween" - "hallucinations" - "handwriting" - "hardware" - "hay-fever" - "healthcare" - "herbalism" - "hfcs" - "himalayan-salt" - "history" - "hiv-aids" - "hollywood" - "homeopathy" - "honey" - "hong-kong" - "hormones" - "household" - "human-mating" - "human-reproduction" - "humor" - "hygiene" - "hyperloop" - "hypnotism" - "ice" - "immigration" - "immune-system" - "india" - "infection" - "infectious-disease" - "insects" - "intelligence" - "intelligent-design" - "internet" - "iphone" - "iran" - "iraq" - "ireland" - "isis" - "islam" - "israel" - "italy" - "japan" - "jesus-christ" - "joseph-mercola" - "jref" - "judaism" - "justice" - "keyboard" - "korea" - "labor" - "language" - "law" - "law-enforcement" - "lawsuits" - "lead" - "lead-poisoning" - "learning" - "legends" - "legislation" - "leonardo-da-vinci" - "lie-detection" - "life-expectancy" - "lifestyle" - "light" - "lightning" - "linguistics" - "literature" - "lithium" - "livestrong" - "loch-ness-monster" - "logic" - "lucid-dreaming" - "machines" - "magic" - "magnetism" - "magnets" - "malaysia" - "malware" - "management" - "manufacturing" - "marijuana" - "marketing" - "marriage" - "mars" - "martial-arts" - "massage" - "masturbation" - "materials" - "mathematics" - "mcdonalds" - "meat" - "media" - "medical-science" - "medications" - "meditation" - "mehmet-oz" - "memory" - "memory-foam" - "mercury" - "meteorology" - "mh17" - "mh370" - "microsoft" - "microwave" - "military" - "milk" - "mind-control" - "minerals" - "miracle" - "misattribution" - "mobile-phones" - "modelling" - "money" - "monsanto" - "moon" - "morality" - "mortality" - "motorcycle" - "movies" - "music" - "musicians" - "nasa" - "natural-disasters" - "natural-remedies" - "near-death-experience" - "nelson-mandela" - "netherlands" - "networks" - "neurology" - "news" - "nicotine" - "nikola-tesla" - "north-korea" - "nsa" - "nuclear-energy" - "nuclear-weapons" - "nutrition" - "nutritional-supplements" - "obesity" - "oceanography" - "oil" - "ophthalmology" - "optical-illusions" - "organic" - "organizations" - "organized-crime" - "osama-bin-laden" - "pain" - "pakistan" - "paleontology" - "palestine" - "parachutes" - "parenting" - "pasta" - "patents" - "perception" - "perpetual-motion" - "personal-finance" - "pest-control" - "pesticide" - "pesticides" - "pests" - "pharmaceutical" - "photography" - "physics" - "physiology" - "pirates" - "placebo" - "planetology" - "plants" - "police" - "politics" - "pollution" - "pope" - "population" - "pornography" - "positive-thinking" - "poverty" - "power-generation" - "predictions" - "pregnancy" - "prehistory" - "price" - "prisoner" - "privacy" - "productivity" - "programming" - "programming-productivity" - "prostitution" - "psychiatry" - "psychics" - "psychology" - "public-finance" - "public-health" - "pyramids" - "quantum-mechanics" - "quotes" - "race" - "racism" - "radiation" - "radio" - "railroads" - "reading" - "recreational-drugs" - "recycling" - "reincarnation" - "religion" - "reproduction" - "richard-dawkins" - "road" - "robert-lustig" - "russia" - "safety" - "saudi-arabia" - "school" - "scientific-papers" - "scientology" - "security" - "sexism" - "sexual-abuse" - "sexuality" - "side-effects" - "slavery" - "sleep" - "smell" - "smog" - "smoking" - "social-media" - "society" - "sociology" - "soda" - "software" - "sound" - "south-africa" - "soviet-union" - "space-flight" - "spain" - "sperm" - "spirituality" - "sport" - "sri-lanka" - "stage-magic" - "stress" - "suffocation" - "sugar" - "suicide" - "sun" - "sun-exposure" - "superstition" - "surgery" - "surveillance" - "survival" - "sustainability" - "sweden" - "switzerland" - "syria" - "taste" - "taxes" - "tea" - "technology" - "telekinesis" - "telephony" - "television" - "terrorism" - "testosterone" - "theft" - "time" - "titanic" - "tobacco" - "toilets" - "tony-abbott" - "toxicology" - "toys" - "traffic" - "transportation" - "travel" - "tricks" - "turkey" - "typography" - "ufo" - "uganda" - "ukraine" - "un" - "unemployment" - "united-arab-emirates" - "united-kingdom" - "united-nations" - "united-states" - "university" - "untagged" - "urine" - "us" - "vaccines" - "vatican" - "vegetables" - "vegetarianism" - "vehicle" - "video" - "videogames" - "vikings" - "violence" - "virus" - "vitamins" - "voice" - "voting" - "war" - "waste" - "waste-management" - "water" - "wealth" - "weapons" - "weather" - "weight-loss" - "welfare" - "william-shakespeare" - "wind-power" - "winston-churchill" - "work" - "world-war-i" - "world-war-ii" - "yeast" - "yoga" - "young-earth-creationism" - "zinc" - "zombie" - "zoology") diff --git a/data/tags/softwarerecs.el b/data/tags/softwarerecs.el deleted file mode 100644 index 2e03a6e..0000000 --- a/data/tags/softwarerecs.el +++ /dev/null @@ -1,597 +0,0 @@ -(".net" - "3d" - "accounting" - "ad-blocker" - "algorithms" - "amazon" - "analytics" - "android" - "animation" - "anki" - "annotation" - "antivirus" - "apache" - "api" - "archiving" - "arm" - "ascii" - "asciidoctor" - "assembly" - "assessment" - "astronomy" - "audio" - "authentication" - "autocomplete" - "autoit" - "automation" - "backup" - "barcode" - "bash" - "battery" - "benchmarking" - "binary-data" - "biology" - "bios" - "bitcoin" - "bittorrent" - "blackberry" - "bluetooth" - "bookkeeping" - "bookmarks" - "books" - "boot" - "bootloader" - "bukkit" - "business-card" - "business-intelligence" - "c" - "c#" - "c++" - "cad" - "calculator" - "calendar" - "camera" - "carddav" - "cddb" - "censorship" - "charts" - "chat" - "checks" - "chemistry" - "children" - "chrome" - "chrome-os" - "cifs" - "classification" - "cli" - "clipboard" - "closed-captions" - "cloud-computing" - "cloud-service" - "cloud-storage" - "clustering" - "cmis" - "cms" - "code-analysis" - "code-beautification" - "code-comparison" - "code-coverage" - "code-review" - "code-snippets" - "collaboration" - "collection-manager" - "color" - "command-line" - "communication" - "comparison" - "competition" - "compiler" - "component-diagram" - "computer-vision" - "connection-speed" - "contact-manager" - "continuous-integration" - "cookies" - "cooking" - "creative-commons" - "crm" - "cross-platform" - "crowdsourcing" - "css" - "csv" - "currency-converter" - "dart" - "dashboard" - "data" - "data-analysis" - "data-liberation" - "data-verification" - "data-visualization" - "database" - "database-browser" - "ddos" - "debugging" - "decompiler" - "defragmentation" - "desktop-client" - "desktop-environment" - "destop-publishing" - "device-driver" - "diagram" - "dictation" - "dictionary" - "diff" - "digital-asset-management" - "disk-analysis" - "display" - "django" - "djvu" - "dlna" - "dns" - "document-converter" - "document-indexing" - "document-management" - "documentation-viewer" - "donation" - "download-manager" - "drag-drop" - "drawing" - "drm" - "dropbox" - "duplicate-display" - "ebay" - "ebooks" - "eclipse" - "ecm" - "ecommerce" - "eda" - "educational" - "email" - "email-client" - "emulator" - "encryption" - "encyclopedia" - "eps" - "epub" - "er-diagram" - "exif" - "facebook" - "fax" - "file-associations" - "file-compression" - "file-format" - "file-management" - "file-merging" - "file-name" - "file-server" - "file-synchronization" - "filie-management" - "finance" - "firefox" - "firefox-os" - "firewall" - "flash" - "flashcard" - "flight" - "floor-plan" - "font-utility" - "forensics" - "format" - "forms" - "fortran" - "forum" - "framework" - "free-software" - "freetype" - "ftp" - "gallery" - "game" - "game-development" - "genealogy" - "geocaching" - "gif" - "git" - "github" - "gmail" - "gnome" - "gnu" - "go" - "google+" - "google-app-engine" - "google-apps" - "google-drive" - "google-glass" - "gopro" - "gps" - "gpu" - "gpu-monitor" - "graphic-design" - "graphics" - "graphs" - "gratis" - "gui" - "hadoop" - "hardware" - "haskell" - "hdd" - "hdd-recovery" - "health" - "help-desk" - "heroku" - "hex-viewer" - "home-automation" - "home-server" - "hpc" - "hsqldb" - "html" - "html-editor" - "http" - "hyperlink" - "hyperthreading" - "icon" - "ide" - "ie" - "image-conversion" - "image-editing" - "image-editor" - "image-processing" - "image-recognition" - "image-viewer" - "images" - "imap" - "information-management" - "internet" - "internet-explorer" - "internet-of-things" - "intranet" - "inventory" - "invoicing" - "ios" - "iot" - "ipad-app" - "iphone" - "iphone-app" - "ipod" - "irc" - "iso" - "issue-tracker" - "itinerary" - "itunes" - "ivona" - "java" - "javascript" - "jekyll" - "jpg" - "jquery" - "json" - "kde" - "keyboard" - "keyboard-layout" - "keyboard-listener" - "keyboard-shortcuts" - "kindle" - "kiosk" - "knowledge-base" - "knowledge-organization" - "kubuntu" - "lan" - "landscape" - "languages" - "latex" - "launcher" - "layout-designer" - "ldap" - "legal" - "less" - "leveldb" - "library" - "libreoffice" - "linked-data" - "lint" - "linux" - "linux-distribution" - "live-preview" - "localization" - "lockscreen" - "log-analysis" - "login" - "logs" - "lua" - "m2m" - "machine-learning" - "macros" - "mailing-list" - "maintenance" - "malware" - "map" - "mapping" - "mapreduce" - "maps" - "markdown" - "marketing" - "math" - "matlab" - "matrix" - "media-converter" - "media-manager" - "media-player" - "mediawiki" - "memory-card" - "memory-management" - "mercurial" - "merge" - "metadata-editor" - "microdata" - "microsoft-excel" - "microsoft-exchange" - "microsoft-word" - "minecraft" - "miracast" - "mms" - "modeling" - "moinmoin" - "mongodb" - "monitoring" - "mono" - "monodevelop" - "mooc" - "mouse" - "mp3" - "mp4" - "multi-monitor" - "music" - "music-composing" - "music-production" - "mysql" - "naturallyspeaking" - "navigation" - "netbeans" - "netflix" - "network-administration" - "network-monitor" - "networking" - "nfc" - "nginx" - "nlp" - "node.js" - "nosql" - "note-taking" - "notepad++" - "notification" - "nvidia" - "obfuscation" - "ocr" - "office" - "office365" - "offline" - "online-payment" - "open-source" - "opencart" - "opengl" - "openstack" - "openstreetmap" - "operating-system" - "optical-media" - "optimization" - "osx" - "outlook" - "owncloud" - "package-manager" - "packet-capture" - "parental-control" - "password-manager" - "password-recovery" - "pdf" - "pdf-viewer" - "performance-analysis" - "perl" - "pgp" - "phone" - "photography" - "php" - "phpstorm" - "pixel-graphics" - "plain-text" - "planning" - "play-store" - "png" - "podcast" - "portable" - "postgresql" - "posting" - "powerpoint" - "prediction" - "presentation" - "printing" - "privacy" - "process-control" - "product-management" - "productivity" - "profiling" - "programming" - "project-management" - "protocol" - "proxies" - "psd" - "python" - "qt" - "questionnaire" - "quora" - "r-language" - "rad" - "raspberry-pi" - "raw" - "rdf" - "reading" - "recommendation-engine" - "recovery" - "refactoring" - "reference-management" - "regex" - "reminders" - "remote-access" - "reporting" - "resharper" - "restaurant" - "reverse-engineering" - "ripping" - "rss" - "ruby" - "safari" - "samba" - "scala" - "scanning" - "science" - "scientific-computing" - "scraping" - "screen-orientation" - "screen-recording" - "screenshot" - "screenwriting" - "search" - "search-engine" - "security" - "sentiment-analysis" - "series-30" - "servlets" - "sftp" - "sharepoint" - "sharing" - "shell-scripting" - "shopping-cart" - "signal-processing" - "silverlight" - "simulation" - "single-sign-on" - "skype" - "slideshow" - "sms" - "smtp" - "social-networks" - "software-development" - "software-testing" - "sound" - "source-code" - "space-repetition" - "spam" - "sparql" - "speech-recognition" - "speech-synthesis" - "speechreading" - "spell-checker" - "spotify" - "spreadsheet" - "sql" - "sql-server" - "sqlite" - "ssh" - "stack-exchange" - "standalone" - "static-site-generator" - "statistics" - "stats" - "steganography" - "streaming" - "structured-data" - "sublime-text" - "support-tracker" - "surveys" - "svg" - "svn" - "sybase" - "system-monitor" - "tablet" - "task-management" - "templating" - "text-editors" - "text-processing" - "text-search" - "text-to-speech" - "thinking-tools" - "thunderbird" - "time-management" - "touchscreen" - "transcription" - "translation" - "transliteration" - "trends" - "twitter" - "typo3" - "ubuntu" - "uml" - "unicode" - "uninstall" - "unit-tests" - "untagged" - "url" - "usb" - "user-interface" - "user-management" - "validation" - "vbulletin" - "vcard" - "vector-graphics" - "version-control" - "video" - "video-conferencing" - "video-editing" - "vim" - "vimeo" - "virtual-keyboard" - "virtual-machine" - "virtualization" - "visual-studio" - "vlc" - "vmware-workstation" - "voice-command" - "voice-recognition" - "voip" - "vpn" - "wallpaper" - "watermark" - "weather" - "web-apis" - "web-apps" - "web-browser" - "web-development" - "web-server" - "web-services" - "webcam" - "webdav" - "website-blocker" - "webstorm" - "whiteboard" - "widget" - "wifi" - "wiki" - "wikidata" - "wikimedia" - "wikimedia-commons" - "wikivoyage" - "wikkawiki" - "window-manager" - "windowing" - "windows" - "windows-7" - "windows-8" - "windows-98" - "windows-ce" - "windows-ce-6.0" - "windows-phone" - "windows-rt" - "windows-server" - "windows-xp" - "winterbash" - "wiping" - "wireframing" - "wireless" - "wishlist" - "word-processor" - "wordpress" - "workflow" - "wysiwyg" - "x11" - "xml" - "xmpp" - "youtube" - "zip") diff --git a/data/tags/sound.el b/data/tags/sound.el deleted file mode 100644 index 945e122..0000000 --- a/data/tags/sound.el +++ /dev/null @@ -1,1207 +0,0 @@ -("003" - "0db" - "192k" - "192khz" - "2011" - "3d" - "416" - "48khz" - "5.1" - "7.1" - "702" - "722" - "744t" - "96k" - "aaf" - "ableton" - "ableton-live" - "abstract" - "ac3" - "academic" - "academy-awards" - "accessories" - "acoustics" - "active-noise-control" - "actors" - "adobe" - "adr" - "advertising" - "aes" - "aesthetic" - "africa" - "air" - "airplane" - "airshow" - "algorithmic" - "altiverb" - "amazon" - "ambiance" - "ambience" - "ambisonics" - "amplifier" - "analog" - "analysis" - "and" - "android" - "animals" - "animation" - "annoying" - "app" - "applications" - "apprenticeship" - "archival" - "archive" - "archiving" - "arduino" - "argentina" - "art" - "artist" - "asio" - "atmos" - "atmosphere" - "audacity" - "audience" - "audio" - "audio-drama" - "audio-editor" - "audio-illusion" - "audio-interfaces" - "audio-recording" - "audio-restoration" - "audiobook" - "audioease" - "audiosuite" - "australia" - "authentic" - "automation" - "autotune" - "avid" - "background" - "backgroundambience" - "backups" - "bad" - "baffling" - "bag" - "bass" - "batch" - "batch-processing" - "battery" - "beamforming" - "beeps" - "beginner" - "behind-the-scenes" - "behringer" - "best" - "best-practice" - "big" - "bike" - "billing" - "binaural" - "birds" - "bit-depth" - "bitrate" - "blimp" - "blimps" - "block" - "blog" - "books" - "boom" - "boom-operator" - "boom-pole" - "booming" - "booth" - "bounce" - "boutique" - "brainstorm" - "breathing" - "broadcast" - "broadcast-standards" - "broadcasting" - "broken" - "budget" - "bugs" - "building" - "building-a-soundtrack" - "business" - "buy" - "buying" - "buying-stuff" - "bwf" - "cable" - "cables" - "calibration" - "camera" - "canon-5d" - "car" - "cardioid" - "cards" - "career" - "career-advice" - "career-choices" - "cars" - "cartoon" - "cases" - "cataloguing" - "cd" - "cedar" - "cf" - "chain" - "challenge" - "chase" - "cheap" - "check" - "chipsound" - "choice" - "choices" - "cinema" - "city" - "clean" - "cleaning" - "clearance" - "cliche" - "clicks" - "clients" - "clipping" - "clips" - "clock" - "close-miking" - "cloth" - "cloud" - "cold" - "collaboration" - "college" - "color" - "colors" - "comedy" - "commercials" - "community" - "compact-flash-cards" - "compatibility" - "competition" - "complete" - "composer" - "composition" - "compression" - "compression-algorithm" - "computer" - "concrete" - "conference" - "conform" - "connector" - "console" - "consumer" - "contact" - "contact-mic" - "contacts" - "contracts" - "control" - "controller" - "conventions" - "conversion" - "converter" - "convolution" - "convolution-reverb" - "copyright" - "copyrights" - "course" - "courses" - "cracking" - "crash" - "crashing" - "creak" - "creative" - "creative-commons" - "creative-inspiration" - "creative-spaces" - "creativity" - "creature" - "creature-vocalizations" - "credit" - "credits" - "criticism" - "critique" - "crowd" - "crying" - "cubase" - "custom" - "cut" - "cutting" - "d-to-a" - "dac" - "damage" - "damping" - "dark" - "data" - "data-compression" - "database" - "daw" - "dcp" - "de-esser" - "deadlines" - "deaf" - "deals" - "decoder" - "definitions" - "degree" - "delay" - "deliverable" - "deliveries" - "demo" - "demo-reel" - "denman-horn" - "denoiser" - "depth" - "desert" - "design" - "designer" - "designing" - "deva" - "device" - "devices" - "dialnorm" - "dialog" - "dialogue" - "dialogue-recording" - "digidesign" - "digital" - "digital-technology" - "dinosaur" - "director" - "directors" - "dissertation" - "distortion" - "distribution" - "dither" - "diy" - "documentary" - "documentation" - "dolby" - "domain" - "doppler" - "double" - "download" - "downsampling" - "dpa" - "drama" - "driving" - "drone" - "drum" - "dslr" - "dts" - "dub" - "dubbing" - "dubbing-stage" - "dvd" - "dvd-release" - "dvtoolkit" - "dynamic" - "dynamic-microphone" - "dynamics" - "ear" - "ear-protection" - "earbuds" - "earphones" - "echo" - "edirol" - "edit" - "editing" - "editor" - "edl" - "education" - "effect" - "effects" - "efficiency" - "electric-bass" - "electricity" - "electronic" - "electronic-music" - "electronics" - "elements" - "embed" - "emotion" - "emotional-interpretation" - "emotions" - "employability" - "encoding" - "energy" - "engine" - "engineering" - "engines" - "epic" - "eq" - "equalization" - "equipment" - "ergonomics" - "error" - "ethics" - "etiquette" - "euphonix" - "europe" - "evaluation" - "examples" - "exchange" - "excitement" - "exhibition" - "expected-income" - "experience" - "experiences" - "experimental" - "explanation" - "exploration" - "export" - "exporting" - "external" - "external-harddrives" - "facebook" - "facility" - "fader" - "failure" - "fantasy" - "favorite" - "favourite" - "feature" - "features" - "feedback" - "field" - "field-recorder" - "field-recording" - "fieldrecording" - "file" - "file-conversion" - "file-naming" - "file-organization" - "file-transfer" - "files" - "filesize" - "filing" - "film" - "film-industry" - "film-mixing" - "film-school" - "film-sound-design" - "filmfestival" - "filter" - "filtering" - "final" - "final-cut-pro" - "finding-work" - "fireworks" - "first" - "fix" - "fixes" - "fl-studio" - "flac" - "flash" - "flat" - "flicker" - "fluorescent" - "fmod" - "foley" - "foley-artist" - "foley-editing" - "foley-stage" - "footsteps" - "for" - "foreign" - "format" - "forum" - "fostex" - "found" - "fountain" - "fps" - "frame-rate" - "free" - "freelance" - "freelancing" - "freeware" - "frequencies" - "frequency" - "frequency-response" - "fun" - "fundamental" - "furniture" - "future" - "futz" - "fx" - "gain" - "game" - "game-audio" - "gameaudio" - "games" - "garageband" - "gdc" - "gear" - "genre" - "getsoundeffects.com" - "getting-paid" - "gift" - "glass" - "glitch" - "gps" - "graduate" - "granular-synthesis" - "group" - "guerrilla" - "guidance" - "guide" - "guitar" - "guitar-rig" - "gun" - "guns" - "gunshot" - "h1" - "h2" - "h2n" - "h4" - "h4n" - "halloween" - "handheld" - "handling" - "handling-noise" - "hard-drive" - "harddrive" - "hardware" - "harmonics" - "head" - "headphone" - "headphones" - "health" - "hearing" - "hearing-damage" - "heat" - "helicopter" - "help" - "high-frequency" - "hiss" - "historical" - "hits" - "holidays" - "home" - "home-studio" - "honours" - "horror" - "horse" - "horses" - "how-to" - "hrtf" - "hum" - "human" - "humidity" - "humor" - "hurricane" - "hydrophone" - "hyper-realism" - "hypercardioid" - "iconic-sounds" - "ideas" - "illusion" - "imac" - "image" - "imdb" - "impacts" - "impedance" - "implementation" - "importing" - "impulse" - "impulse-response" - "in-the-box" - "income" - "independent-film" - "indie" - "indoor" - "indoor-dialogue" - "industry" - "influences" - "infrasound" - "innovation" - "input" - "insects" - "inspiration" - "instrument" - "instruments" - "insurance" - "interactive" - "interesting" - "interface" - "interference" - "international" - "internet" - "internships" - "interview" - "interviews" - "ipad" - "iphone" - "ir" - "isolation" - "issue" - "izotope" - "job" - "job-description" - "job-opportunities" - "jobs" - "jurassic-park" - "keyboard" - "keycommand" - "kick" - "kit" - "kit-bag" - "knight" - "knowledge" - "kontakt" - "kyma" - "labels" - "lapel" - "laptop" - "latency" - "laughter" - "lav" - "lav-mic" - "lavalier" - "lcr" - "learning" - "lectrosonics" - "legal" - "legality" - "levels" - "lfe" - "libraries" - "library" - "library-sound-effects" - "license" - "licensing" - "life" - "lighting" - "limiters" - "limiting" - "line-level" - "linear-sound-design" - "list" - "listening" - "literature" - "live" - "live-performance" - "live-sound" - "location" - "location-audio" - "location-recording" - "location-sound" - "locations" - "logic" - "logic-pro" - "logo" - "london" - "loop" - "looping" - "loudness" - "loudspeakers" - "low-budget" - "lowend" - "m-and-e" - "m-audio" - "m-powered-8" - "m10" - "mac" - "macbook" - "macbook-pro" - "macgyver" - "machine" - "macosx" - "magazine" - "magical" - "maintenance" - "management" - "manipulation" - "map" - "marantz" - "marketing" - "master" - "mastering" - "masters-degree" - "matching" - "material" - "max-msp" - "mbox" - "mbox-2" - "me" - "meaning" - "measurements" - "media" - "meet-up" - "memory" - "mental-health" - "mentorship" - "metadata" - "metal" - "methodology" - "mic-stand" - "mic-technique" - "microphone" - "microphone-positioning" - "microphone-techniques" - "microsound" - "mics" - "mid-side" - "middleware" - "midi" - "military" - "missing" - "mistakes-blunders-mishaps" - "mix" - "mixboard" - "mixer" - "mixers" - "mixing" - "mkh" - "mkh30" - "mkh415-t" - "mobile" - "mobile-phone" - "modification" - "modulation" - "money" - "monitor" - "monitor-calibration" - "monitoring" - "monitors" - "mono" - "monster" - "mood" - "motion" - "motor-sounds" - "motorcycle" - "motu" - "mounting" - "mouse" - "movement" - "movie-trailers" - "moviemaking" - "movies" - "moving" - "mp3" - "ms" - "msp" - "multiband" - "multichannel" - "multiple" - "murch" - "music" - "music-business" - "musician" - "nab" - "nagra" - "narration" - "native" - "nature" - "nature-recording" - "nearfield" - "networking" - "neumann" - "new" - "newbie" - "noise" - "noise-cancelling" - "noise-reduction" - "non-matching" - "noob" - "normalize" - "not-a-question" - "ntg2" - "ntg3" - "nuendo" - "nuendo4" - "obscure" - "observation" - "offsets" - "oktava" - "old" - "omf" - "omni" - "on" - "online" - "onomatopoeia-charades" - "operation" - "opinion" - "opportunity" - "optimizations" - "organic" - "organisation" - "organization" - "organize" - "osx" - "outdoor" - "outdoors" - "ownership" - "panning" - "patchbay" - "payment" - "pc" - "pcm" - "pcm-d50" - "pcm-m10" - "perception" - "performance" - "period" - "personal" - "perspective" - "petrol" - "phantom" - "phase" - "philosophy" - "phone" - "physical-reaction" - "physics" - "piano" - "pickup" - "picture" - "picture-editing" - "picture-editor" - "pistol-grip" - "pitch" - "pitch-issue" - "pitch-shifting" - "placement" - "plane" - "planes" - "planning" - "platform" - "playback" - "plosives" - "plug-in" - "plug-ins" - "plugin" - "plugins" - "plural-eyes" - "podcasts" - "podium" - "poll" - "poly-wav" - "pop" - "portable" - "portable-recorder" - "portable-recording" - "portfolio" - "post" - "post-production" - "postproduction" - "pov" - "power" - "powering" - "practice" - "pre" - "pre-amp" - "preamp" - "precautions" - "premiere" - "premixing" - "preparation" - "prices" - "pro-tools" - "pro-tools-10" - "pro-tools-11" - "pro-tools-9" - "problem" - "problems" - "procedure" - "process" - "processing" - "producer" - "product" - "product-research" - "production" - "production-audio" - "production-mixing" - "production-sound" - "productivity" - "professional-practice" - "professional-societies" - "program" - "programming" - "project" - "project-management" - "projectors" - "projects" - "promotion" - "props" - "prosumer" - "protect" - "protection" - "psychoacoustics" - "psychology" - "pt" - "pt-quick-keys" - "publishing" - "purchase-advice" - "puredata" - "pzm" - "qc" - "quality" - "question" - "questionnaire" - "quicktime" - "quiet" - "quote" - "r-44" - "radio" - "radio-frequency" - "radiomics" - "rain" - "random" - "raptor" - "rate" - "rates" - "re-conforming" - "re-recording" - "reaktor" - "realism" - "reality-tv" - "realtime" - "reaper" - "reason" - "rechargable" - "recommendations" - "record" - "recorder" - "recorder-mixer" - "recording" - "recordings" - "recordist" - "recovery" - "reduction" - "reel" - "reference" - "references" - "reflection" - "regions" - "relationship" - "remote" - "removal" - "rental" - "repair" - "replacement" - "replacement-parts" - "replication" - "reporting" - "request" - "research" - "resources" - "response" - "reused" - "reverb" - "reverberant" - "review" - "rf" - "rhythm" - "rights" - "robot" - "robots" - "rocks" - "rode" - "roles" - "room" - "room-tone" - "room-tone-removal" - "room-treatment" - "rotate" - "royalties" - "royalty-free" - "rta" - "rule" - "rycote" - "safety" - "sales" - "sample" - "sample-rate" - "sampler" - "samples" - "sampling" - "sand" - "sanken" - "scad" - "schedule" - "scheduling" - "schoeps" - "school" - "science" - "scifi" - "score" - "scoring" - "scratching" - "screams" - "script" - "sd" - "sd722" - "search" - "security" - "selection" - "self-noise" - "selling" - "sennheiser" - "session" - "session-organization" - "set-up" - "settings" - "setup" - "sfx" - "sharing" - "shielding" - "shootout" - "shopping" - "short" - "shortcut" - "shortfilm" - "shotgun" - "showreel" - "sibilence" - "side-chaining" - "signal" - "signal-processing" - "silence" - "singing-sword" - "sitcom" - "site" - "skill" - "skills-development" - "slate" - "slow" - "sm57" - "small" - "smpte" - "snap-crackle-pop" - "snow" - "social" - "social-network" - "social-sound-design" - "software" - "solving" - "song" - "sonic" - "sonification" - "sony" - "sony-pcm-d50" - "sound" - "sound-art" - "sound-dampening" - "sound-design" - "sound-designer" - "sound-devices" - "sound-editing" - "sound-effects" - "sound-effects-recording" - "sound-fx" - "sound-installations" - "sound-libraries" - "sound-library" - "sound-logos" - "sound-quality" - "sound-theory" - "soundcloud" - "soundcollectorsclub" - "sounddesign" - "soundeffects" - "soundminer" - "sounds" - "soundscapes" - "south" - "south-africa" - "space" - "spaces" - "speakers" - "spectral" - "spectrum" - "speech" - "speed" - "speed-of-sound" - "spl" - "sport" - "spotting" - "ssd" - "stage" - "standard" - "starter" - "stealth" - "steam-punk-sd" - "steinberg" - "stems" - "stereo" - "stereo-imaging" - "stereo-to-surround" - "stingers" - "stock" - "stock-effects" - "storage" - "stories" - "storytelling" - "strange" - "strategy" - "streaming" - "street" - "strings" - "strip-silence" - "student" - "studies" - "studio" - "studio-design" - "studio-monitors" - "studios" - "style" - "sub-bass" - "subconscious" - "subtlety" - "suggestion" - "suggestions" - "super" - "surfaces" - "surrealism" - "surround-sound" - "survey" - "suspense" - "suspension-mounts" - "sync" - "synthesis" - "synthesizer" - "system" - "systems" - "t-rex" - "tagging" - "tape" - "tascam" - "tascam-dr-680" - "team" - "tech-specs" - "technical" - "technician" - "techniques" - "technology" - "television" - "television-industry" - "temperature" - "templates" - "tempo" - "tension" - "terminology" - "tesla-coil" - "test" - "texture" - "thank" - "theater" - "theatre-sound-design" - "theory" - "thesis" - "thoughts" - "thud" - "thunder" - "timbre" - "time" - "time-management" - "time-stretching" - "timecode" - "tips" - "title" - "to" - "tonality" - "tone" - "tools" - "track" - "trackball" - "trade" - "traffic" - "trailer" - "training" - "transfer" - "transformation" - "transformers" - "transients" - "transmitter" - "transport-bag" - "travel" - "tricks" - "tripod" - "trivia" - "troubleshooting" - "tunnel" - "tutorial" - "tv-show" - "tyre" - "udk" - "ui" - "uk" - "ultrasone" - "underwater" - "unexpected-error" - "unions" - "university" - "untagged" - "unwanted" - "upgrade" - "upmixing" - "urban" - "usb" - "use" - "use-of" - "use-of-compression" - "used-gear" - "variations" - "vegas" - "vehicles" - "verisimilitude" - "video" - "video-games" - "video-reference" - "villain" - "vintage" - "visuals" - "vocals" - "vocoder" - "vocoding" - "voice" - "voice-manipulation" - "voice-over" - "voices" - "volume" - "vst" - "walking" - "walla" - "war" - "water" - "waterproof" - "wav" - "wave-editor" - "waveform" - "waves" - "weapon" - "web" - "websites" - "weird" - "wheeled" - "whistling" - "whoosh" - "whooshes" - "wiki" - "wild-sound" - "wilhelm-scream" - "wind" - "wind-protection" - "windjammer" - "windows" - "windows-7" - "windscreens" - "windshield" - "wireless" - "wishful-thinking" - "work" - "work-for-hire" - "workflow" - "workspace" - "workstation" - "worldizing" - "writing" - "wwise" - "xlr" - "xlr-input" - "y-cable" - "york" - "youtube" - "zombies" - "zoom" - "zoom-h4n" - "zoom-h6") diff --git a/data/tags/space.el b/data/tags/space.el deleted file mode 100644 index 02ade87..0000000 --- a/data/tags/space.el +++ /dev/null @@ -1,584 +0,0 @@ -("abort" - "accident" - "advanced-propulsion" - "aerobot" - "aerobraking" - "aerogel" - "air-bag" - "airlock" - "alcubierre-drive" - "altitude" - "amateur-radio" - "american" - "analysis" - "angara" - "animals" - "antares" - "antimatter" - "apollo-11" - "apollo-13" - "apollo-program" - "apollo-soyuz" - "ariane" - "armstrong" - "artificial-gravity" - "artificial-satellite" - "asds" - "asteroid" - "asteroid-belt" - "asteroid-redirect-mission" - "astrobiology" - "astrodynamics" - "astronaut-lifestyle" - "astronauts" - "astronomy" - "atlas-v" - "atmosphere" - "atmospheric-drag" - "attitude" - "avionics" - "ba-330" - "backup" - "baikonur-cosmodrome" - "ballistics" - "balloons" - "base" - "battery" - "berthing" - "bfr" - "bi-elliptic-transfer" - "bigelow" - "biology" - "black-hole" - "boeing" - "booster" - "buran" - "burn" - "calculation" - "camera" - "campaign" - "capsule" - "cardiovascular" - "career" - "cassini" - "caves" - "cbc" - "cbm" - "celestial-mechanics" - "ceres" - "chang-e" - "chemistry" - "china" - "classified" - "clean-room" - "climate" - "cme" - "cold-welding" - "collision-avoidance" - "colonization" - "comet" - "commercial" - "communication" - "communication-satellite" - "computing" - "conceptual" - "conjunction" - "constellation-program" - "construction" - "contamination" - "cosmic-radiation" - "cosmonaut" - "cost" - "cost-to-orbit" - "crater" - "crew-module" - "crew-size" - "crewed-missions" - "crewed-spaceflight" - "cryogenics" - "cst-100" - "cubesat" - "curiosity" - "cus" - "cycler" - "cygnus" - "data-storage" - "data-systems" - "data-transmission" - "dawn-mission" - "death" - "debris" - "deep-space" - "deep-space-hibernation" - "deep-space-network" - "deimos" - "delta-v" - "delta4" - "delta4-heavy" - "design" - "developing-space-programs" - "development" - "dimensions" - "docking" - "docking-port" - "draco" - "drag-augmentation" - "dragon" - "dragonrider" - "dream-chaser" - "drill" - "dual-launch" - "dust" - "dwarf-planets" - "dynamo-theory" - "earth" - "earth-observation" - "eclipse" - "ecliptic-plane" - "eclss" - "economics" - "eelv" - "eft-1" - "electronics" - "emdrive" - "end-of-life" - "energy" - "energy-conservation" - "engine-design" - "engineering" - "engines" - "environment" - "ephemeris" - "esa" - "escape-velocity" - "estes" - "europa" - "eva" - "exhaust" - "exoplanet" - "exosphere" - "expandable" - "experiment" - "explosions" - "explosives" - "external-tank" - "extra-solar-flight" - "extra-solar-object" - "extraterrestrial-life" - "faa" - "facility" - "failed-mission" - "failure" - "falcon-9" - "falcon-heavy" - "falcon9-r" - "fastening" - "feasibility" - "fgb" - "first-stage" - "flight-computer" - "flight-profile" - "flight-termination-system" - "flyby" - "food" - "forward-contamination" - "free-return" - "frogs" - "ftl" - "fuel" - "fuel-depots" - "fuel-system" - "funding" - "future-missions" - "g-force" - "gaia" - "gas-giant" - "gasses" - "geology" - "geophysics" - "geostationary" - "geosynchronous" - "giotto" - "gnss" - "goce" - "goldilocks-zone" - "government" - "gps" - "grail" - "gravity" - "gravity-assist" - "gravity-fields" - "ground-station" - "ground-track" - "guidance" - "habitat" - "hayabusa" - "health" - "heat" - "heat-shield" - "helium-3" - "high-altitude-launch" - "history" - "hllv" - "hohmann-transfer" - "hopper" - "horizontal-launch" - "htv" - "hubble" - "human-rating" - "humans" - "hydrogen" - "hypergravity" - "icbm" - "ice" - "imaging" - "impact" - "infrastructure" - "instrument" - "integration" - "interplanetary" - "interstellar-medium" - "interstellar-travel" - "investigation" - "ion-drive" - "ion-thruster" - "iran" - "isro" - "isru" - "iss" - "itn" - "j-2" - "japan" - "jaxa" - "johannes-kepler" - "juno" - "jupiter" - "jwst" - "kennedy-space-center" - "kepler-telescope" - "kerbal-space-program" - "ladee" - "lagrangian-points" - "lander" - "landing" - "language" - "laser" - "launch" - "launch-escape-system" - "launch-sequence" - "launch-site" - "launch-system" - "launch-vehicle" - "launcher-integration" - "launchpad" - "law" - "lc-40" - "lem" - "liability" - "life" - "life-support" - "lifetime" - "lift" - "lightning" - "liquid-fuel" - "lltv" - "logistics" - "long-duration" - "low-earth-orbit" - "low-energy-transfer" - "lunar-landing" - "lunar-orbital-station" - "lyappa" - "magnetic-field" - "magnetoplasmadynamic" - "magnetorquer" - "maintenance" - "mangalyaan" - "manned-flight" - "manned-missions" - "mapping" - "mars" - "mars-one" - "mars-orbiter-mission" - "mars-orbiters" - "mass" - "mass-driver" - "mass-fraction" - "materials" - "mathematics" - "mdm" - "measurement" - "medical" - "mercury" - "merlin-1d" - "meteorites" - "meteoroid" - "microgravity" - "military" - "mining" - "mir" - "missiles" - "mission-control" - "mission-design" - "model-rocketry" - "mom" - "moons" - "moonwalking" - "movement" - "multi-launch" - "myth-busting" - "n-1" - "n-body-problem" - "nasa" - "natural-resources" - "navigation" - "neo" - "neptune" - "new-horizons" - "nk-33" - "noaa" - "nozzle" - "nuclear" - "nuclear-pulse-propulsion" - "oberth-maneuver" - "observation" - "ocular" - "olympus-mons" - "oort-cloud" - "operations" - "opportunity" - "optical" - "orbit" - "orbit-determination" - "orbit-selection" - "orbital" - "orbital-altitude" - "orbital-assembly" - "orbital-elements" - "orbital-lifetime" - "orbital-maneuver" - "orbital-mechanics" - "orbital-sciences" - "orientation" - "orion" - "orion-spacecraft" - "outgassing" - "oxidizer" - "oxygen" - "parachute" - "payload" - "perseid" - "philae" - "phobos" - "photography" - "physical-activity" - "physics" - "pioneer" - "pirs" - "planet" - "planetary-defense" - "planetary-science" - "planetology" - "planning" - "plants" - "plss" - "plume" - "pluto" - "pma" - "poisk" - "pole" - "power" - "prediction" - "pressure-gradient-loss" - "probe" - "procedure" - "progress" - "project-gemini" - "project-mercury" - "propellants" - "propulsion" - "propulsive-deceleration" - "protection" - "pslv" - "psychology" - "pusher-les" - "quarantine" - "quest-joint-airlock" - "radar" - "radiation" - "radiators" - "radio-telescope" - "radioactive-decay" - "rail-gun" - "ramjet" - "range-safety" - "raptor" - "rassvet" - "raw-data" - "rd-170" - "rd-180" - "rd-19x" - "reaction-wheel" - "record" - "reentry" - "reference-request" - "regolith" - "regulatory" - "reliability" - "remote-sensing" - "rendezvous" - "repurpose" - "rescue-missions" - "research" - "resolution" - "retrograde-orbit" - "return" - "reusability" - "reuse" - "rings" - "risk-management" - "rl-10" - "robot" - "robotic-missions" - "robotics" - "rocket-science" - "rockets" - "roscosmos" - "rosetta" - "rotation" - "rovers" - "rs-68" - "rtg" - "russia" - "russian-segment" - "safe-mode" - "safety" - "salyut" - "sample-return" - "santa-claus" - "saturn" - "saturn-v" - "science" - "scientific-data" - "security" - "sedna" - "separation" - "shielding" - "shuttle-derived" - "sierra-nevada-corporation" - "simulation" - "site-selection" - "skycrane" - "skylab" - "sleep" - "sls" - "software" - "soi" - "sokol-spacesuit" - "solar-power" - "solar-sail" - "solar-system" - "solar-wind" - "solid-fuel" - "sound" - "sounding-rocket" - "soviet-union" - "soyuz" - "space-dust" - "space-elevator" - "space-gun" - "space-industry" - "space-program" - "space-race" - "space-shuttle" - "space-sickness" - "space-station" - "space-surveillance" - "space-telescope" - "space-track" - "space-tug" - "space-weather" - "spacecraft" - "spacecraft-development" - "spaceplane" - "spaceport" - "spacesuits" - "spacex" - "specific-impulse" - "spinoff" - "spirit" - "sputnik" - "srb" - "ssme" - "ssto" - "stages" - "standards" - "stardust" - "stars" - "station-keeping" - "stealth" - "sterilization" - "stratolaunch" - "sub-orbital" - "subsurface" - "suitport" - "sun-synchronous" - "super-sonic" - "supply" - "sustainability" - "swarm" - "tdrss" - "technology" - "tel" - "teleoperations" - "telescope" - "temperature" - "terminology" - "terraforming" - "testing" - "the-moon" - "the-sun" - "thermal" - "thermal-control" - "thermodynamics" - "thrust" - "tiangong" - "tidal-locking" - "tides" - "time" - "titan" - "tno" - "topography" - "tourism" - "tracking" - "tractor-les" - "training" - "trajectory" - "transport" - "travel" - "triton" - "uk-space" - "ula" - "uncrewed-spaceflight" - "unmanned-flight" - "upper-stage" - "us-segment" - "vacuum" - "velcro" - "venturestar" - "venus" - "vibration" - "virgin-galactic" - "visiting-craft" - "vlbi" - "volatile" - "voyager" - "waste" - "water" - "weather" - "wernher-von-braun" - "wet-workshop" - "x-37" - "yutu" - "zarya" - "zvezda") diff --git a/data/tags/spanish.el b/data/tags/spanish.el deleted file mode 100644 index cc75be4..0000000 --- a/data/tags/spanish.el +++ /dev/null @@ -1,172 +0,0 @@ -("énfasis" - "abreviaturas" - "acentos" - "acepción" - "adjetivos" - "adverbios" - "alfabeto" - "américa-latina" - "análisis-sentimental" - "animales" - "aprendizaje" - "arcaísmos" - "argentina" - "artículos" - "aspecto" - "borges" - "cópulas" - "cartas" - "categorías-gramatical" - "chile" - "chilenismo" - "ciencia" - "colombia" - "coloquialismos" - "comida" - "comparación-de-idiomas" - "complemento-directo" - "comprension" - "compuestos" - "condicional" - "conjugacion" - "conjunciones" - "connotaciones" - "contracciones" - "conversación" - "corrección" - "cortesía" - "costa-rica" - "cuba" - "cultura-de-masas" - "declinación" - "definiciones" - "deixis" - "deletreo" - "deportes" - "diacríticos" - "dialectos" - "dichos" - "diferencias-regionales" - "diminutivos" - "diptongos" - "distinción" - "drae" - "education" - "escritura" - "españa" - "español-neutral" - "estados-unidos" - "estilo" - "etimología" - "expresion" - "expresiones-fijas" - "extranjerismos" - "finanzas" - "fonética" - "fonología" - "formalidad" - "formas-de-verbos" - "formas-irregulares" - "frases-idiomáticas" - "futuro" - "género" - "gentilicio" - "gerundio" - "gramática" - "guinea-ecuatorial" - "historia" - "humor" - "idiomatico" - "imperativo" - "imperfecto" - "indicativa" - "infinitivo" - "insultos" - "interjecciones" - "interrogatives" - "it" - "jerga" - "jerga-internet" - "laismo-leismo" - "latín" - "le" - "letras" - "lingüística" - "lo" - "lyrics" - "méxico" - "música" - "mapuzungun" - "matemáticas" - "metáfora" - "modismos" - "morfología" - "morphosyntax" - "número-gramatical" - "números" - "neutralidad-de-género" - "nicaragua" - "nombres" - "objetos-directos" - "objetos-indirectos" - "orden-de-palabras" - "ortografía" - "oxímoron" - "palabras-interrogativas" - "palabras-raras" - "paradigms" - "participio" - "persona-gramatical" - "personal-a" - "phone-conversation" - "plurales" - "poesía" - "portugués" - "posesivos" - "préstamo-lingüístico" - "preguntas" - "preposiciones" - "preterito" - "pronombres" - "pronunciación" - "puerto-rico" - "puntuación" - "rae" - "recursos" - "redacción" - "reflexivos" - "religión" - "ropa" - "sílabas" - "sahara-occidental" - "saludos" - "se" - "selección-de-palabras" - "semantic-range" - "significado" - "sinónimos" - "sintaxis" - "solicitud-de-término" - "subjetividad" - "subjuntivo" - "sufijos" - "sustantivos" - "sustantivos-propios" - "términos-de-dirección" - "terminología" - "tiempo" - "tiempos-verbales" - "traducción" - "transportación" - "untagged" - "uso-de-palabras" - "venezuela" - "verb-moods" - "verbos" - "vocabulario" - "vocabulario-tecnico" - "vocales" - "voseo" - "voz-pasiva" - "vulgaridades" - "yeismo") diff --git a/data/tags/sports.el b/data/tags/sports.el deleted file mode 100644 index 9413e6e..0000000 --- a/data/tags/sports.el +++ /dev/null @@ -1,179 +0,0 @@ -("acquisition" - "air-racing" - "airsoft" - "american-football" - "archery" - "atp" - "australian-rules-football" - "auto-racing" - "awards" - "badminton" - "baseball" - "basketball" - "beach-tennis" - "betting" - "biathlon" - "bobsleigh" - "bowling" - "boxing" - "butterfly" - "cards" - "cfl" - "champions-league" - "climbing" - "coaching" - "collectibles" - "collegiate" - "competitive-eating" - "cricket" - "cricket-world-cup" - "curling" - "cycling" - "darts" - "davis-cup" - "defense" - "disabled-list" - "disc-golf" - "dodgeball" - "doping" - "draft" - "duckworth-lewis" - "endurance" - "english-premier-league" - "equipment" - "etiquette" - "euro" - "fans" - "fantasy" - "fencing" - "field-hockey" - "fifa" - "figure-skating" - "finances" - "follow-through" - "foosball" - "football" - "formations" - "formula-1" - "freestyle" - "golf" - "greyhound-racing" - "grip" - "gymnastics" - "helmet" - "heptathlon" - "history" - "horse-racing" - "icc" - "ice-hockey" - "ice-skating" - "indian-premier-league" - "indoor-climbing" - "injuries" - "inline-hockey" - "international-sports" - "interruption" - "itf" - "ittf" - "jersey" - "kart-racing" - "kayaking" - "labor-relations" - "lacrosse" - "language" - "longboarding" - "lpga-tour" - "luge" - "maintenance" - "marathon" - "martial-arts" - "media" - "mlb" - "mma" - "motogp" - "motorcycle-racing" - "nascar" - "nba" - "nfl" - "nhl" - "officiating" - "olympics" - "padel" - "paintball" - "paralympics" - "participation" - "performance" - "pga-tour" - "pitching" - "pool" - "postseason" - "pro-wrestling" - "promotions" - "racewalking" - "racket" - "racquetball" - "ranking" - "records" - "relegations" - "road-racing" - "roller-derby" - "rugby" - "rules" - "running" - "sabermetrics" - "sailing" - "scoring" - "scuba-diving" - "serve" - "shooting" - "skateboarding" - "skating" - "skeleton" - "skiing" - "snooker" - "snowboarding" - "softball" - "spin" - "sports-psychology" - "squash" - "stanley-cup" - "statistics" - "strategy" - "superbike" - "surfing" - "suspension" - "swimming" - "table-tennis" - "tactics" - "team-dynamics" - "technique" - "technology" - "tennis" - "terminology" - "tie-breaker" - "tour-de-france" - "tournaments" - "track-and-field" - "training" - "trampolining" - "transaction" - "transfer" - "triathlon" - "trivia" - "uefa" - "ultimate-frisbee" - "universiade" - "untagged" - "us-open" - "venues" - "volleyball" - "wakeboarding" - "water-sports" - "wicket" - "windsurfing" - "world-cup" - "world-superbike" - "wrestling" - "wta" - "wwe" - "x-games") diff --git a/data/tags/sqa.el b/data/tags/sqa.el deleted file mode 100644 index 2bf4245..0000000 --- a/data/tags/sqa.el +++ /dev/null @@ -1,222 +0,0 @@ -(".net" - "acc" - "acceptance-testing" - "action-recording" - "agile" - "agile-testing" - "android" - "apachepoi" - "api-testing" - "appium" - "automated-testing" - "bdd" - "browser-automation" - "browser-session" - "browsers" - "bug-priority" - "bug-report" - "bug-severity" - "bugzilla" - "build-verification-test" - "bvt" - "c#" - "calabash" - "captcha" - "career-development" - "certification" - "chrome" - "combinatorial-testing" - "conference" - "continuous-integration" - "coverage" - "cross-browser-testing" - "css" - "cucumber" - "culture" - "data-analysis" - "data-driven" - "data-quality" - "data-warehouse-testing" - "database" - "defect-tracking" - "development-process" - "documentation" - "dot-net" - "dynamic-testing" - "eclipse" - "efficiency" - "eggplant" - "email" - "embedded" - "end-to-end" - "excel" - "exception" - "exploratory" - "export" - "fault-isolation" - "fiddler" - "files" - "fingerprint" - "firebug" - "fitnesse" - "flash" - "flash-selenium" - "functional" - "fuzz-testing" - "geb" - "grid" - "gui" - "hardware" - "hp-quality-center" - "http" - "hudson" - "ie8" - "ie9" - "image-based-testing" - "integration-testing" - "interview" - "ios" - "iphone" - "iseb" - "istqb" - "jautomate" - "java" - "javascript" - "jbehave" - "jenkins" - "jira" - "jmeter" - "jmeter-plugins" - "jubula" - "junit" - "kanban" - "languages" - "learning" - "legacy-system" - "load-testing" - "loadui" - "logs" - "management" - "manual" - "manual-testing" - "metrics" - "mobile" - "mock" - "model-based-testing" - "mstest" - "mtm" - "non-functional" - "nunit" - "office" - "open-source" - "oracle-ats" - "oracle-openscript" - "page-objects" - "pairwise-testing" - "peach-fuzzer" - "people" - "performance" - "php" - "phpunit" - "planning" - "programmer-relations" - "python" - "qa-architect" - "qa-developer" - "qa-role" - "qf-test" - "qtp" - "qualification" - "quality-assessment" - "quality-center" - "ranorex" - "regression-testing" - "requirements-engineering" - "requirements-validation" - "review" - "robotframework" - "ruby" - "safaridriver" - "sap" - "sbtm" - "scheduling" - "scrum" - "sdet" - "sdk" - "security-testing" - "seetest" - "selenium" - "selenium-ide" - "selenium-rc" - "selenium-webdriver" - "selenium2" - "self-education" - "sensetalk" - "service" - "silverlight" - "skillset" - "smoke-testing" - "soapui" - "sockets" - "source-control" - "specflow" - "sql" - "sql-injection" - "ssl" - "standards" - "state-diagrams" - "static-analysis" - "static-testing" - "strategy" - "stress-testing" - "system-testing" - "tdd" - "team" - "team-management" - "techniques" - "telerik" - "terminology" - "test" - "test-automation-framework" - "test-creation" - "test-data" - "test-design" - "test-management" - "test-planning" - "test-report" - "test-strategy" - "testability" - "testcafe" - "testcase" - "testcomplete8" - "testing-environment" - "testing-team" - "testlink" - "testng" - "tfs" - "tfs2010" - "tools" - "training" - "travis-ci" - "uiautomation" - "unit-tests" - "unix" - "untagged" - "user-acceptance-testing" - "user-stories" - "vb.net" - "virtualization" - "virtualmachine" - "visualstudio" - "waterfall" - "watin" - "watir" - "watir-webdriver" - "web" - "web-application" - "web-service" - "webdriver" - "windows" - "work-place" - "xen" - "xpath") diff --git a/data/tags/stackapps.el b/data/tags/stackapps.el deleted file mode 100644 index cf842ad..0000000 --- a/data/tags/stackapps.el +++ /dev/null @@ -1,200 +0,0 @@ -(".net" - "abuse" - "ajax" - "android" - "answers" - "api" - "api-help" - "api-key" - "api-v1" - "api-v2" - "api-v2.1" - "api-v2.2" - "app" - "app-key" - "app-request" - "apps" - "area51" - "askubuntu" - "associated" - "authentication" - "badges" - "blog" - "bookmarklet" - "bounty" - "bug" - "c#" - "c++" - "caching" - "chat" - "chrome-extensions" - "closing" - "cocoa" - "coffeescript" - "comments" - "community-bulletin" - "contest" - "data-dump" - "data-explorer" - "date" - "design" - "dev-tip" - "dev-tool" - "discussion" - "display-name" - "documentation" - "editing" - "elections" - "emacs" - "email" - "esb" - "events" - "extension" - "facebook" - "faq" - "favorite" - "feature-request" - "featured" - "filter" - "firefox" - "flags" - "flair" - "flash" - "front-page" - "fun" - "getting-started" - "google-app-engine" - "google-chrome" - "greasemonkey" - "growl" - "gzip" - "headers" - "help" - "https" - "icons" - "iframe" - "ignored-tags" - "images" - "inbox" - "ios" - "ipad" - "iphone" - "japanese" - "java" - "javascript" - "jquery" - "json" - "jsonp" - "keyboard-shortcuts" - "legal" - "libraries" - "library" - "limits" - "linked-questions" - "linux" - "live" - "localisation" - "logo" - "mac-os-x" - "markdown" - "marketing" - "meta" - "missing-data" - "moderation-request" - "mono" - "navigation" - "notifications" - "notifier" - "oauth" - "oauth2" - "objective-c" - "odata" - "offline" - "open-source" - "paging" - "parameters" - "perl" - "php" - "placeholder" - "posts" - "python" - "qml" - "qt" - "question-lists" - "questions" - "quota" - "random" - "rate-limit" - "realtime" - "registration" - "related" - "release" - "reputation" - "reputation-audit" - "reputation-graph" - "review" - "revisions" - "rss" - "ruby" - "ruby-on-rails" - "scope" - "script" - "script-request" - "scripts" - "search" - "service" - "silverlight" - "sites" - "soapi.cs" - "soapi.js" - "sort" - "stack-exchange" - "stack.php" - "stackapplet" - "stackapps" - "stackauth" - "stackoverflow" - "stacktack" - "stacky" - "statistics" - "status" - "status-bydesign" - "status-completed" - "status-declined" - "status-deferred" - "status-norepro" - "status-planned" - "streaming" - "style" - "stylish" - "support" - "systemtray" - "tag-wiki" - "tags" - "tampermonkey" - "terminology" - "testing" - "throttling" - "timeline" - "topbar" - "twitter" - "unanswered" - "url-syntax" - "user" - "users" - "v1.1" - "versioning" - "voting" - "webos" - "website" - "widget" - "windows" - "windows-7" - "windows-8" - "windows-phone" - "windows-phone-7" - "winterbash" - "wordpress" - "wpf" - "write-access" - "xmpp") diff --git a/data/tags/stackoverflow.el b/data/tags/stackoverflow.el deleted file mode 100644 index 3ff829a..0000000 --- a/data/tags/stackoverflow.el +++ /dev/null @@ -1,39549 +0,0 @@ -(".a" - ".app" - ".aspxauth" - ".bash-profile" - ".class-file" - ".cs-file" - ".doc" - ".each" - ".emf" - ".git-info-grafts" - ".hgtags" - ".htaccess" - ".htpasswd" - ".ico" - ".lib" - ".lrc" - ".mobi" - ".mov" - ".net" - ".net-1.0" - ".net-1.1" - ".net-2.0" - ".net-3.0" - ".net-3.5" - ".net-4.0" - ".net-4.0-beta-2" - ".net-4.5" - ".net-4.5.1" - ".net-4.5.2" - ".net-4.6" - ".net-5.0" - ".net-assembly" - ".net-authorization" - ".net-bcl" - ".net-cf-3.5" - ".net-client-profile" - ".net-core" - ".net-fiddle" - ".net-framework-source" - ".net-framework-version" - ".net-gadgeteer" - ".net-internals" - ".net-micro-framework" - ".net-native" - ".net-reflector" - ".net-remoting" - ".net-rtf-writer" - ".net-security" - ".net-services" - ".net-trace" - ".netrc" - ".nettiers" - ".obj" - ".post" - ".procmailrc" - ".profile" - ".railsrc" - ".refresh" - ".sbr" - ".sdf" - ".war" - ".wav" - ".when" - ".x" - "0xdbe" - "10gen-csharp-driver" - "1131-3" - "128bit" - "12factor" - "16-bit" - "1wire" - "2-3-4-tree" - "2-3-tree" - "2-digit-year" - "2-legged" - "2-satisfiability" - "2-tier" - "2-way-object-databinding" - "2.5d" - "21cfr11" - "23andme-api" - "24bit" - "256color" - "2checkout" - "2d" - "2d-3d-conversion" - "2d-array" - "2d-context-api" - "2d-engine" - "2d-games" - "2d-vector" - "2dsphere" - "2phase-commit" - "2to3" - "3-tier" - "3-way-merge" - "32-bit" - "3270" - "32bit-64bit" - "32feet" - "34grid" - "360-degrees" - "37-signals" - "3d" - "3d-array" - "3d-engine" - "3d-model" - "3d-modelling" - "3d-reconstruction" - "3d-rendering" - "3d-secure" - "3d-studio" - "3d-texture" - "3dcamera" - "3des" - "3ds" - "3dsmax" - "3g" - "3g-network" - "3gp" - "3nf" - "3rd-party" - "3rd-party-library" - "3scale" - "4d" - "4d-database" - "4g" - "4gl" - "4js" - "4store" - "500px" - "51degrees" - "64bit" - "6502" - "6510" - "68000" - "68hc11" - "68hc12" - "6nf" - "6to5" - "777" - "7bit" - "7digital" - "7zip" - "8-puzzle" - "802.11" - "8051" - "8085" - "8086" - "8087cw" - "8bit" - "9-bit-serial" - "960.gs" - "a-records" - "a-star" - "a0poster" - "a2dp" - "a2lix-translation" - "a2x" - "aaa-security-protocol" - "aaa-syntax" - "aabb" - "aac" - "aac+" - "aalto" - "aapt" - "aar" - "aasm" - "ab-initio" - "ab-testing" - "abac" - "abaddressbook" - "abaddressbooksource" - "abandoned" - "abandoned-memory" - "abandonedmutexexception" - "abandonware" - "abap" - "abaqus" - "abbot" - "abbr" - "abbrevia" - "abbreviation" - "abbyy" - "abc" - "abc4j" - "abcl" - "abcpdf" - "abcpdf9" - "abcustomuinavcontroller" - "abi" - "abiword" - "ablecommerce" - "ableton-live" - "abmultivalue" - "abnf" - "aboditnlp" - "abort" - "abortbroadcast" - "about-box" - "abpeoplepickerview" - "abperson" - "abpersonviewcontroller" - "abrecord" - "abrecordcopyvalue" - "abrecordref" - "absolute" - "absolute-db" - "absolute-path" - "absolute-value" - "absolutelayout" - "abstract" - "abstract-action" - "abstract-algebra" - "abstract-base-class" - "abstract-class" - "abstract-data-type" - "abstract-factory" - "abstract-factory-pattern" - "abstract-function" - "abstract-interpretation" - "abstract-machine" - "abstract-methods" - "abstract-syntax-tree" - "abstract-type" - "abstraction" - "abstracttablemodel" - "abtest" - "abuse" - "abyss" - "acaccount" - "acaccountstore" - "acc" - "acceleo" - "accelerate-framework" - "accelerate-haskell" - "accelerated-c++" - "acceleration" - "accelerator" - "acceleratorkey" - "accelerometer" - "accent-insensitive" - "accented-strings" - "acceptance" - "acceptance-testing" - "acceptbutton" - "acceptverbs" - "access-control" - "access-data-project" - "access-denied" - "access-keys" - "access-levels" - "access-log" - "access-modifiers" - "access-point" - "access-point-name" - "access-protection" - "access-rights" - "access-rules" - "access-specifier" - "access-synchronization" - "access-token" - "access-vba" - "access-violation" - "accesscontrolexception" - "accesscontrolservice" - "accessdatasource" - "accessibility" - "accessibility-api" - "accessibilityservice" - "accessible" - "accessor" - "accessorizer" - "accessory" - "accessorytype" - "accessoryview" - "accord.net" - "accordion" - "accordionpane" - "account" - "account-management" - "accounting" - "accountmanager" - "accountpicker" - "accounts" - "accounts-github" - "accpac" - "accumarray" - "accumulate" - "accumulator" - "accumulo" - "accuracerdb" - "accurev" - "ace" - "ace-datatable" - "ace-editor" - "ace-tao" - "ace.js" - "aceshop" - "acf" - "achartengine" - "achievements" - "acid" - "acid-state" - "acid3" - "acitree" - "ack" - "ackermann" - "acl" - "acl2" - "acl9" - "acm" - "acm-icpc" - "acm-java-libraries" - "acm.graphics" - "acoustics" - "acpi" - "acquia" - "acquisition" - "acr122" - "acra" - "acrobat" - "acrobat-sdk" - "acrofields" - "acronym" - "acropolis" - "acs" - "acs-serviceidentity" - "act" - "actas" - "actinic" - "action" - "action-caching" - "action-filter" - "action-interface" - "action-menu" - "actionbarcompat" - "actionbarsherlock" - "actionbarsherlock-map" - "actioncontext" - "actioncontroller" - "actiondispatch" - "actionevent" - "actionfilterattribute" - "actionform" - "actionhero" - "actionlink" - "actionlist" - "actionlistener" - "actionmailer" - "actionmailer.net" - "actionmethod" - "actionmode" - "actionpack" - "actionresult" - "actionscript" - "actionscript-1" - "actionscript-2" - "actionscript-3" - "actionview" - "actionviewhelper" - "actionwebservice" - "activation" - "activation-codes" - "activation-context-api" - "activation-record" - "activator" - "active" - "active-analysis" - "active-attr" - "active-content" - "active-directory" - "active-directory-group" - "active-enum" - "active-form" - "active-memory" - "active-model-serializers" - "active-objects" - "active-pattern" - "active-record-query" - "active-relation" - "active-rest-client" - "active-script" - "active-users" - "active-window" - "activeadmin" - "activeandroid" - "activecollab" - "activedirectorymembership" - "activejdbc" - "activemerchant" - "activemessaging" - "activemodel" - "activemq" - "activemq-cpp" - "activeperl" - "activepivot" - "activepython" - "activeqt" - "activerecord" - "activerecord-import" - "activerecord-jdbc" - "activerecord-relation" - "activerecordlinq" - "activerelation" - "activereports" - "activeresource" - "activescaffold" - "activestate" - "activesupport" - "activesupport-concern" - "activesync" - "activetcl" - "activeview" - "activeweb" - "activex" - "activex-documents" - "activex-exe" - "activexobject" - "activiti" - "activity-diagram" - "activity-finish" - "activity-indicator" - "activity-lifecycle" - "activity-manager" - "activity-monitor" - "activity-recognition" - "activity-stack" - "activity-state" - "activity-streams" - "activity-transition" - "activitydesigner" - "activitygroup" - "activitynotfoundexception" - "activityunittestcase" - "actor" - "actor-model" - "acts-as-audited" - "acts-as-commentable" - "acts-as-ferret" - "acts-as-list" - "acts-as-nested-set" - "acts-as-paranoid" - "acts-as-relation" - "acts-as-shopping-cart" - "acts-as-state-machine" - "acts-as-taggable" - "acts-as-taggable-array-on" - "acts-as-taggable-on" - "acts-as-taggable-on-ster" - "acts-as-tenant" - "acts-as-tree" - "acts-as-versioned" - "actualheight" - "actualwidth" - "actuate" - "aculab-cloud" - "acumatica" - "acuxdbc" - "acymailing" - "ad-hoc-distribution" - "ad-management" - "ada" - "ada2012" - "adabas" - "adabas-natural" - "adaboost" - "adal" - "adam" - "adapter" - "adapter-pattern" - "adaption" - "adaptive-bitrate" - "adaptive-compression" - "adaptive-design" - "adaptive-layout" - "adaptive-parallel-payment" - "adaptive-threshold" - "adaptive-ui" - "adaptor" - "adb" - "adbannerview" - "adblock" - "adbwireless" - "adc" - "adcolony" - "add" - "add-custom-command" - "add-custom-target" - "add-filter" - "add-in" - "add-on" - "add-references-dialog" - "add-this-event" - "add-type" - "addattribute" - "addcallback" - "addchild" - "addclass" - "adddays" - "addeventlistener" - "addhandler" - "addition" - "addmodelerror" - "addobserver" - "addon-domain" - "addr2line" - "addrange" - "addremoveprograms" - "address-bar" - "address-bus" - "address-element" - "address-operator" - "address-sanitizer" - "address-space" - "addressable-gem" - "addressbook" - "addressbookui" - "addressing" - "addressing-mode" - "addressof" - "addslashes" - "addsubview" - "addtarget" - "addthis" - "adduplex" - "adempiere" - "adeos" - "adf" - "adf-faces" - "adf-task-flow" - "adfc-config" - "adfs" - "adfs2.0" - "adfs2.1" - "adfs3.0" - "adgroup" - "adhearsion" - "adhoc" - "adhoc-polymorphism" - "adhoc-queries" - "adif" - "adipoli" - "adium" - "adjacency-list" - "adjacency-list-model" - "adjacency-matrix" - "adjustable" - "adjustable-array" - "adjustment" - "adjustpan" - "adjustviewbounds" - "adk" - "adldap" - "adlds" - "adler32" - "adm-zip" - "adm2" - "admanager" - "admin" - "admin-ajax" - "admin-generator" - "admin-interface" - "admin-rights" - "admin-routing" - "adminer" - "adminhtml" - "administration" - "administrative" - "administrator" - "admob" - "ado" - "ado-net-dataservices" - "ado.net" - "ado.net-entity-data-model" - "adobe" - "adobe-analytics" - "adobe-brackets" - "adobe-bridge" - "adobe-captivate" - "adobe-cc" - "adobe-connect" - "adobe-contribute" - "adobe-dps" - "adobe-drive" - "adobe-edge" - "adobe-edge-inspect" - "adobe-extension" - "adobe-flash-cs3" - "adobe-illustrator" - "adobe-indesign" - "adobe-javascript" - "adobe-media-server" - "adobe-native-extensions" - "adobe-premiere" - "adobe-reader" - "adobe-scout" - "adobe-stratus" - "adoconnection" - "adodb" - "adodbapi" - "adomd.net" - "adonetappender" - "adoption" - "adorner" - "adornerdecorator" - "adornerlayer" - "adornment" - "adox" - "adp" - "adpcm" - "adplus" - "adrotator" - "ads" - "ads-api" - "adsense" - "adsense-api" - "adserver" - "adsf" - "adsi" - "adsl" - "adsutil.vbs" - "adt" - "adts" - "advanced-custom-fields" - "advanced-installer" - "advanced-queuing" - "advanced-search" - "advanceddatagrid" - "advantage-database-server" - "advapi32" - "adventure" - "adventureworks" - "advertised-shortcut" - "advertisement" - "advertisement-server" - "advertising" - "adview" - "advising-functions" - "adwhirl" - "adwords-api-v201109" - "adwords-apiv201402" - "adwords-budgetservice" - "aec" - "aegir" - "aegis" - "aem" - "aero" - "aero-glass" - "aero-peek" - "aero-snap" - "aerogear" - "aerospike" - "aes" - "aes-gcm" - "aes-ni" - "aescryptoserviceprovider" - "aeson" - "aesthetics" - "aether" - "afabstractrestclient" - "afbedsheet" - "afconvert" - "affiliate" - "affiliates" - "affinetransform" - "affinity" - "affix" - "afhttpclient" - "afhttprequestoperation" - "afincrementalstore" - "afjsonrequestoperation" - "afnetworking" - "afnetworking-2" - "afoauth2client" - "aforge" - "afp" - "after-create" - "after-effects" - "after-save" - "afterthought" - "afx" - "ag" - "against" - "agal" - "agatha-rrsl" - "agavi" - "agda" - "agen-framework" - "agent" - "agent-based-modeling" - "agents" - "agents-jade" - "agfx" - "aggdraw" - "aggpas" - "aggregate" - "aggregate-framework" - "aggregate-functions" - "aggregate-initialization" - "aggregateexception" - "aggregateroot" - "aggregates" - "aggregation" - "aggregation-framework" - "aggregator" - "aggregators" - "agi" - "agile" - "agile-processes" - "agile-project-management" - "agiletoolkit" - "agiletoolkit-css" - "agility.js" - "agitar" - "aglio" - "agpl" - "agrep" - "agsxmpp" - "agvtool" - "ahah" - "aho-corasick" - "ai-challenge" - "aida" - "aide-ide" - "aidl" - "aif" - "aiff" - "aim" - "aiml" - "aimms" - "aio" - "aio-write" - "aiohttp" - "air" - "air-android" - "air-native-extension" - "air2" - "airbrake" - "aircrack-ng" - "airdrop" - "airplane" - "airplay" - "airport" - "airprint" - "airpush" - "ais" - "aix" - "ajax" - "ajax-forms" - "ajax-on-rails" - "ajax-polling" - "ajax-push" - "ajax-request" - "ajax-upload" - "ajax.beginform" - "ajax.net" - "ajax.request" - "ajax4jsf" - "ajaxcomplete" - "ajaxcontext" - "ajaxcontroltoolkit" - "ajaxform" - "ajaxhelper" - "ajaxify" - "ajaxmin" - "ajaxpro" - "ajaxsetup" - "ajaxstart" - "ajaxstop" - "ajaxsubmit" - "ajaxtags" - "ajaxuploader" - "ajdt" - "ajp" - "akamai" - "akavache" - "akephalos" - "akhet" - "akismet" - "akka" - "akka-cluster" - "akka-http" - "akka-io" - "akka-monitoring" - "akka-persistence" - "akka-remote-actor" - "akka-stream" - "akka-supervision" - "akka-testkit" - "akka-zeromq" - "akka.net" - "al.exe" - "alamofire" - "alarm" - "alarmmanager" - "alarms" - "alasset" - "alassetlibrary" - "alassetsgroup" - "alassetslibrary" - "alauthorizationstatus" - "albacore" - "albireo" - "albpm" - "albumart" - "alcatel-ot" - "alchemy" - "alchemy-cms" - "alchemy-websockets" - "alchemyapi" - "alembic" - "aleph" - "alert" - "alertcenter" - "alertdialog" - "alertify" - "alerts" - "alertview" - "alex" - "alexa" - "alfa" - "alfred" - "alfresco" - "alfresco-share" - "algebra" - "algebraic-data-types" - "algebraic-number" - "alglib" - "algol" - "algol68" - "algorithm" - "algorithmic-trading" - "alias" - "alias-data-type" - "alias-method" - "alias-method-chain" - "aliases" - "aliasing" - "alice" - "alien" - "alienvault" - "alignas" - "alignment" - "alignof" - "alipay" - "alive" - "alivepdf" - "all-delete-orphan" - "all-files" - "all-in-one-event-calendar" - "allegro" - "allegro-cl" - "allegro-pl" - "allegro5" - "allegrograph" - "alljoyn" - "alljoyn-audio" - "alloc" - "alloca" - "allocatable-array" - "allocation" - "allocator" - "allow-same-origin" - "allowmultiple" - "alloy" - "alloy-ui" - "allure" - "allusersprofile" - "alm" - "almond" - "aloha-editor" - "alpha" - "alpha-beta-pruning" - "alpha-five" - "alpha-transparency" - "alphabet" - "alphabetic" - "alphabetical" - "alphabetical-sort" - "alphabetized" - "alphablend" - "alphablending" - "alphanumeric" - "alpn" - "alsa" - "alsb" - "alt" - "alt-attribute" - "alt-ergo" - "alt-key" - "alt-tab" - "alt.net" - "altbeacon" - "alter" - "alter-column" - "alter-table" - "altera" - "alternate" - "alternate-access-mappings" - "alternate-data-stream" - "alternate-stylesheets" - "alternateview" - "alternating" - "alternation" - "alternative-layouts" - "alternative-stream" - "alternator" - "altiris" - "altitude" - "altium-designer" - "altivec" - "altova" - "alu" - "aluminumlua" - "always-on-top" - "alwayson" - "alwaysontop" - "amadeus" - "amalgamation" - "amara" - "amarino" - "amazinglistview" - "amazon" - "amazon-appstore" - "amazon-cloudformation" - "amazon-cloudfront" - "amazon-cloudsearch" - "amazon-cloudtrail" - "amazon-cloudwatch" - "amazon-cognito" - "amazon-data-pipeline" - "amazon-device-messaging" - "amazon-dynamodb" - "amazon-ebs" - "amazon-ec2" - "amazon-ec2-windows" - "amazon-ecs" - "amazon-elastic-beanstalk" - "amazon-elasticache" - "amazon-elb" - "amazon-emr" - "amazon-fire-tv" - "amazon-firefly" - "amazon-fps" - "amazon-gamecircle" - "amazon-glacier" - "amazon-iam" - "amazon-in" - "amazon-java-sdk" - "amazon-javascript-sdk" - "amazon-kinesis" - "amazon-lambda" - "amazon-mobile-analytics" - "amazon-mws" - "amazon-payments" - "amazon-product-api" - "amazon-rds" - "amazon-redshift" - "amazon-route53" - "amazon-s3" - "amazon-search-api" - "amazon-ses" - "amazon-silk" - "amazon-simpledb" - "amazon-sns" - "amazon-sqs" - "amazon-sts" - "amazon-swf" - "amazon-vpc" - "amazon-web-services" - "amber-smalltalk" - "ambient" - "ambientcontext" - "ambiguity" - "ambiguous" - "ambiguous-call" - "ambiguous-grammar" - "amcharts" - "amd" - "amd-gpu" - "amd-processor" - "amdatu" - "amdefine" - "amember" - "amend" - "amf" - "amfphp" - "ami" - "amiga" - "amistad" - "ammap" - "ammo.js" - "amortization" - "amortized-analysis" - "amos" - "amp" - "ampersand" - "ampersand.js" - "ampl" - "amplifyjs" - "amplitude" - "ampps" - "ampscript" - "amqp" - "amr" - "amslidemenu" - "amsmath" - "amzi-prolog" - "anaconda" - "anaglyph-3d" - "anagram" - "analog-digital-converter" - "analysis" - "analysis-patterns" - "analytic-functions" - "analytical" - "analytics" - "analytics.js" - "analyzer" - "ancestor" - "ancestry" - "anchor" - "anchor-scroll" - "anchorpoint" - "ancs" - "and-operator" - "andand" - "andar" - "andengine" - "androguard" - "android" - "android-1.5-cupcake" - "android-1.6-donut" - "android-2.0-eclair" - "android-2.1-eclair" - "android-2.2-froyo" - "android-2.3-gingerbread" - "android-3.0-honeycomb" - "android-3.1" - "android-3.2" - "android-4.0" - "android-4.2-jelly-bean" - "android-4.3-jelly-bean" - "android-4.4-kitkat" - "android-5.0-lollipop" - "android-aar" - "android-account" - "android-actionbar" - "android-actionbar-compat" - "android-actionbaractivity" - "android-actionmode" - "android-activity" - "android-activityrecord" - "android-adapter" - "android-adapterview" - "android-afilechooser" - "android-alarms" - "android-alertdialog" - "android-animation" - "android-annotations" - "android-anr-dialog" - "android-app-indexing" - "android-app-ops" - "android-application" - "android-applicationinfo" - "android-appwidget" - "android-arrayadapter" - "android-assets" - "android-async-http" - "android-asynctask" - "android-audiomanager" - "android-audiorecord" - "android-authenticator" - "android-avd" - "android-background" - "android-backup-service" - "android-banner" - "android-beam" - "android-billing" - "android-bitmap" - "android-bluetooth" - "android-bootstrap" - "android-broadcast" - "android-browser" - "android-build" - "android-bundle" - "android-button" - "android-c2dm" - "android-cab" - "android-calendar" - "android-camera" - "android-camera-intent" - "android-canvas" - "android-capture" - "android-cards" - "android-cardview" - "android-cast-api" - "android-checkbox" - "android-chips" - "android-cling" - "android-compat-lib" - "android-compatibility" - "android-configchanges" - "android-contacts" - "android-contentprovider" - "android-contentresolver" - "android-context" - "android-contextmenu" - "android-controls" - "android-cookiemanager" - "android-cts" - "android-cursor" - "android-cursoradapter" - "android-cursorloader" - "android-custom-attributes" - "android-custom-view" - "android-date" - "android-datepicker" - "android-dateutils" - "android-debug" - "android-debug-bridge" - "android-developer-api" - "android-dialog" - "android-dialogfragment" - "android-dongle" - "android-download-manager" - "android-drawable" - "android-drm" - "android-droidtext" - "android-edittext" - "android-elevation" - "android-embedded-api" - "android-emulator" - "android-emulator-plugin" - "android-espresso" - "android-event" - "android-expansion-files" - "android-externalstorage" - "android-facebook" - "android-file" - "android-fileprovider" - "android-filter" - "android-filterable" - "android-firmware" - "android-fonts" - "android-fragmentactivity" - "android-fragments" - "android-framework" - "android-fullscreen" - "android-gallery" - "android-gcm" - "android-geofence" - "android-gesture" - "android-gpuimageview" - "android-gradle" - "android-graphview" - "android-gridlayout" - "android-gridview" - "android-guava" - "android-gui" - "android-handler" - "android-handlerthread" - "android-hardware" - "android-hardware-keyboard" - "android-holo-everywhere" - "android-homebutton" - "android-host-api" - "android-ibeacon" - "android-icons" - "android-ide" - "android-identifiers" - "android-image" - "android-imagebutton" - "android-imageview" - "android-implicit-intent" - "android-inflate" - "android-input-filter" - "android-input-method" - "android-inputtype" - "android-install-apk" - "android-instrumentation" - "android-intent" - "android-intentservice" - "android-internet" - "android-jack-and-jill" - "android-jobscheduler" - "android-jsinterface" - "android-json" - "android-json-rpc" - "android-kenburnsview" - "android-kernel" - "android-keypad" - "android-keystore" - "android-ksoap2" - "android-largeheap" - "android-launcher" - "android-layout" - "android-layout-weight" - "android-lazyadapter" - "android-lazyloading" - "android-library" - "android-lifecycle" - "android-linearlayout" - "android-lint" - "android-listfragment" - "android-listview" - "android-livefolders" - "android-loader" - "android-loadermanager" - "android-location" - "android-log" - "android-logcat" - "android-looper" - "android-lru-cache" - "android-lvl" - "android-make" - "android-managed-profile" - "android-manifest" - "android-mapping" - "android-maps" - "android-maps-extensions" - "android-maps-utils" - "android-maps-v2" - "android-mapview" - "android-market-filtering" - "android-maven-plugin" - "android-mediaplayer" - "android-mediarecorder" - "android-mediascanner" - "android-memory" - "android-menu" - "android-mms" - "android-mockup" - "android-monkey" - "android-multidex" - "android-multiple-apk" - "android-multiple-users" - "android-music-player" - "android-navigation" - "android-ndk" - "android-ndk-r4" - "android-ndk-r5" - "android-ndk-r7" - "android-nested-fragment" - "android-networking" - "android-notification-bar" - "android-notifications" - "android-nsd" - "android-open-accessory" - "android-optionsmenu" - "android-orientation" - "android-os-handler" - "android-overlay" - "android-overscoll" - "android-package-managers" - "android-pageradapter" - "android-pagetransformer" - "android-parsequeryadapter" - "android-parser" - "android-pendingintent" - "android-permissions" - "android-photos" - "android-popupwindow" - "android-powermanager" - "android-preferences" - "android-print-framework" - "android-productflavors" - "android-profile" - "android-progressbar" - "android-pullparser" - "android-qsb" - "android-query" - "android-radiobutton" - "android-radiogroup" - "android-reboot" - "android-recents" - "android-relativelayout" - "android-remoteview" - "android-resolution" - "android-resources" - "android-runonuithread" - "android-runtime" - "android-screen" - "android-screen-pinning" - "android-screen-support" - "android-scripting" - "android-scroll" - "android-scrollable-tabs" - "android-scrollbar" - "android-scrollview" - "android-sdcard" - "android-sdk-1.6" - "android-sdk-2.1" - "android-sdk-2.2" - "android-sdk-2.3" - "android-sdk-plugin" - "android-sdk-tools" - "android-search" - "android-searchmanager" - "android-securityexception" - "android-seek" - "android-seekbar" - "android-selector" - "android-sensors" - "android-service" - "android-service-binding" - "android-settings" - "android-shape" - "android-sharing" - "android-shell" - "android-side-navigation" - "android-simon-datepicker" - "android-simple-facebook" - "android-sliding" - "android-snapshot" - "android-softkeyboard" - "android-source" - "android-speech-api" - "android-spinner" - "android-sqlite" - "android-stlport" - "android-storm" - "android-studio" - "android-style-tabhost" - "android-styles" - "android-support-library" - "android-switch" - "android-syncadapter" - "android-tabactivity" - "android-tabhost" - "android-tablelayout" - "android-tabs" - "android-tabstrip" - "android-tap-and-pay" - "android-task" - "android-test-kit" - "android-testing" - "android-textattributes" - "android-textview" - "android-theme" - "android-timepicker" - "android-titlebar" - "android-toast" - "android-togglebutton" - "android-toolbar" - "android-traceview" - "android-transitions" - "android-tv" - "android-twitter" - "android-typeface" - "android-ui" - "android-uiautomator" - "android-usb" - "android-userdictionary" - "android-version" - "android-vibration" - "android-video-player" - "android-videoview" - "android-view" - "android-viewbinder" - "android-viewgroup" - "android-viewholder" - "android-viewpager" - "android-virtual-keyboard" - "android-volley" - "android-wake-lock" - "android-wallpaper" - "android-wear" - "android-wear-data-api" - "android-wear-notification" - "android-webservice" - "android-websettings" - "android-webview" - "android-widget" - "android-wifi" - "android-windowmanager" - "android-wireless" - "android-x86" - "android-xml" - "android-xmlpullparser" - "android-youtube-api" - "android.mk" - "androidasync-koush" - "androidhttpclient" - "androidplot" - "androidsvg" - "androidviewclient" - "androlua" - "andromda" - "androvm" - "ane" - "anemic-domain-model" - "anemone" - "angelscript" - "angle" - "angles" - "angstrom-linux" - "angular" - "angular-amd" - "angular-bootstrap" - "angular-broadcast" - "angular-builder" - "angular-cache" - "angular-carousel" - "angular-cookies" - "angular-dart" - "angular-data" - "angular-decorator" - "angular-digest" - "angular-directive" - "angular-file-upload" - "angular-filters" - "angular-foundation" - "angular-google-maps" - "angular-http" - "angular-http-auth" - "angular-http-interceptors" - "angular-kendo" - "angular-local-storage" - "angular-material" - "angular-mock" - "angular-moment" - "angular-momentum" - "angular-ng-attr" - "angular-ng-if" - "angular-nglist" - "angular-ngmodel" - "angular-orm" - "angular-promise" - "angular-resource" - "angular-route-segment" - "angular-routing" - "angular-scenario" - "angular-schema-form" - "angular-seed" - "angular-services" - "angular-sprout" - "angular-strap" - "angular-template" - "angular-transitions" - "angular-translate" - "angular-ui" - "angular-ui-bootstrap" - "angular-ui-grid" - "angular-ui-router" - "angular-ui-router-extras" - "angular-ui-sortable" - "angular-ui-tabset" - "angular-ui-timepicker" - "angular-ui-tree" - "angular-ui-typeahead" - "angularfire" - "angularjs" - "angularjs-1.3" - "angularjs-2.0" - "angularjs-animation" - "angularjs-authentication" - "angularjs-bootstrap" - "angularjs-compile" - "angularjs-controller" - "angularjs-decorator" - "angularjs-directive" - "angularjs-e2e" - "angularjs-factory" - "angularjs-filter" - "angularjs-google-maps" - "angularjs-http" - "angularjs-include" - "angularjs-injector" - "angularjs-interpolate" - "angularjs-log" - "angularjs-model" - "angularjs-module" - "angularjs-nested-object" - "angularjs-ng-change" - "angularjs-ng-click" - "angularjs-ng-focus" - "angularjs-ng-form" - "angularjs-ng-href" - "angularjs-ng-include" - "angularjs-ng-init" - "angularjs-ng-model" - "angularjs-ng-options" - "angularjs-ng-repeat" - "angularjs-ng-route" - "angularjs-ng-show" - "angularjs-ng-touch" - "angularjs-ng-transclude" - "angularjs-nvd3-directives" - "angularjs-orderby" - "angularjs-q" - "angularjs-rails" - "angularjs-resource" - "angularjs-routing" - "angularjs-scope" - "angularjs-select2" - "angularjs-service" - "angularjs-templates" - "angularjs-timeout" - "angularjs-track-by" - "angularjs-ui-utils" - "angularjs-validation" - "angularjs-view" - "angularjs-watch" - "angulartics" - "animal-sniffer" - "animalware" - "animate.css" - "animated" - "animated-gif" - "animated-selector" - "animatewindow" - "animatewithduration" - "animation" - "animationdrawable" - "animationextender" - "animationutils" - "anjuta" - "ankhsvn" - "anki" - "annotate" - "annotated-pojos" - "annotatedtimeline" - "annotation-processing" - "annotations" - "announcement" - "annox" - "annyang" - "anonymity" - "anonymize" - "anonymous" - "anonymous-access" - "anonymous-arrays" - "anonymous-class" - "anonymous-delegates" - "anonymous-function" - "anonymous-inner-class" - "anonymous-methods" - "anonymous-objects" - "anonymous-recursion" - "anonymous-scope" - "anonymous-struct" - "anonymous-types" - "anonymous-users" - "anonymousidentification" - "anorm" - "anormcypher" - "anova" - "anpr" - "ansi" - "ansi-92" - "ansi-colors" - "ansi-common-lisp" - "ansi-escape" - "ansi-nulls" - "ansi-sql" - "ansi-sql-92" - "ansi-term" - "ansible" - "ansible-awx" - "ansible-playbook" - "ansicon" - "ansistring" - "answer-set-programming" - "ant" - "ant-colony" - "ant-contrib" - "ant-junit" - "ant-loadfile" - "ant4eclipse" - "antbuilder" - "antcall" - "antform" - "anthill" - "anti-bot" - "anti-cheat" - "anti-if" - "anti-join" - "anti-patterns" - "anti-piracy" - "anti-xml" - "antialiasing" - "antiforgerytoken" - "antinstall" - "antisamy" - "antivirus" - "antivirus-integration" - "antixsslibrary" - "antlr" - "antlr2" - "antlr3" - "antlr4" - "antlr4cs" - "antlrv3ide" - "antlrworks" - "antlrworks2" - "antrun" - "ants" - "any" - "anyattribute" - "anychart" - "anycpu" - "anydac" - "anyevent" - "anylogic" - "anymote" - "anythingslider" - "anytime" - "aol" - "aol-desktop" - "aolserver" - "aop" - "aopalliance" - "aot" - "apache" - "apache-1.3" - "apache-abdera" - "apache-ace" - "apache-axis" - "apache-bloodhound" - "apache-camel" - "apache-cayenne" - "apache-celix" - "apache-chainsaw" - "apache-chemistry" - "apache-cloudstack" - "apache-commons" - "apache-commons-beanutils" - "apache-commons-cli" - "apache-commons-codec" - "apache-commons-collection" - "apache-commons-compress" - "apache-commons-config" - "apache-commons-daemon" - "apache-commons-dateutils" - "apache-commons-dbcp" - "apache-commons-dbutils" - "apache-commons-digester" - "apache-commons-email" - "apache-commons-exec" - "apache-commons-fileupload" - "apache-commons-httpclient" - "apache-commons-io" - "apache-commons-jci" - "apache-commons-lang" - "apache-commons-logging" - "apache-commons-math" - "apache-commons-net" - "apache-commons-pool" - "apache-commons-scxml" - "apache-commons-transact" - "apache-commons-vfs" - "apache-config" - "apache-crunch" - "apache-dbi" - "apache-felix" - "apache-fluent-api" - "apache-fop" - "apache-forrest" - "apache-httpclient-4.x" - "apache-httpcomponents" - "apache-jmeter" - "apache-kafka" - "apache-karaf" - "apache-license" - "apache-lucy" - "apache-mina" - "apache-modules" - "apache-nms" - "apache-ode" - "apache-pig" - "apache-pivot" - "apache-poi" - "apache-portable-runtime" - "apache-regexp" - "apache-roller" - "apache-shindig" - "apache-spark" - "apache-spark-sql" - "apache-stanbol" - "apache-stringutils" - "apache-tailer" - "apache-tika" - "apache-tiles" - "apache-tomee" - "apache-torque" - "apache-tuscany" - "apache-twill" - "apache-vysper" - "apache-whirr" - "apache-wink" - "apache-wink-spring" - "apache2" - "apache2-module" - "apache2.2" - "apache2.4" - "apachebench" - "apacheds" - "aparapi" - "apartment-gem" - "apartment-state" - "apartments" - "apc" - "apdu" - "ape" - "apex" - "apex-code" - "apex-data-loader" - "apfloat" - "api" - "api-auth" - "api-design" - "api-doc" - "api-eveonline" - "api-hook" - "api-key" - "api-manager" - "api-mock" - "apiary" - "apiary.io" - "apiaxle" - "apiblueprint" - "apic" - "apiclient" - "apigee" - "apigee-baas" - "apigee-wsd-to-rest" - "apigee127" - "apigen" - "apigility" - "apk" - "apk-expansion-files" - "apklib" - "apktool" - "apl" - "aplpy" - "apm" - "apn" - "apn-node" - "apng" - "apns-client" - "apns-php" - "apns-sharp" - "apollo" - "apostrophe" - "apostrophe-cms" - "apotomo" - "app-bundle" - "app-certification-kit" - "app-code" - "app-config" - "app-data" - "app-engine-modules" - "app-engine-ndb" - "app-engine-patch" - "app-globalresources" - "app-graph" - "app-hub" - "app-id" - "app-inventor" - "app-launcher" - "app-manager" - "app-nap" - "app-offline.htm" - "app-secret" - "app-startup" - "app-store" - "app-themes" - "app-update" - "app.net" - "app.xaml" - "app.yaml" - "app2sd" - "app42" - "apparmor" - "appassembler" - "appbar" - "appcelerator" - "appcelerator-acs" - "appcelerator-mobile" - "appcfg" - "appcloud" - "appcmd" - "appcode" - "appcompat" - "appconkit" - "appcontainer" - "appcrash" - "appdata" - "appdelegate" - "appdomain" - "appdomainsetup" - "appdynamics" - "appearance" - "append" - "appendchild" - "appender" - "appendfile" - "appendtext" - "appendto" - "appengine-magic" - "appengine-maven-plugin" - "appengine-pipeline" - "appengine-wordpress" - "appfabric" - "appfabric-beta-2" - "appfabric-cache" - "appfog" - "appframework" - "appfuse" - "appharbor" - "appindicator" - "appirater" - "appium" - "appixia" - "appjs" - "appkit" - "applaud" - "apple" - "apple-configurator" - "apple-expose" - "apple-help" - "apple-id" - "apple-m7" - "apple-mail" - "apple-maps" - "apple-metal" - "apple-numbers" - "apple-push-notifications" - "apple-radar" - "apple-touch-icon" - "apple-tv" - "apple-vpp" - "apple-watch" - "appledoc" - "appleevents" - "applepay" - "applescript" - "applescript-excel" - "applescript-objc" - "applescript-studio" - "applet" - "applet-servlet" - "appletviewer" - "appliance" - "application-bar" - "application-blocks" - "application-cache" - "application-client" - "application-close" - "application-data" - "application-dependency" - "application-design" - "application-end" - "application-error" - "application-framework" - "application-hang" - "application-icon" - "application-integration" - "application-layer" - "application-level-proxy" - "application-lifecycle" - "application-loader" - "application-management" - "application-name" - "application-onerror" - "application-planning" - "application-pool" - "application-resource" - "application-restart" - "application-role" - "application-security" - "application-server" - "application-settings" - "application-shutdown" - "application-singleton" - "application-size" - "application-start" - "application-state" - "application-structure" - "application-types" - "application-variables" - "application-verifier" - "application.cfc" - "application.cfm" - "application.xml" - "applicationcommand" - "applicationcontext" - "applicationcontroller" - "applicationcraft" - "applicationdomain" - "applicationhost" - "applicationmanager" - "applicationpage" - "applicationpoolidentity" - "applicationreference" - "applicationsettingsbase" - "applicationstate" - "applicationwindow" - "applicative" - "applicative-functor" - "applinks" - "applovin" - "apply" - "apply-script" - "apply-templates" - "apply-visitor" - "appmethod" - "appmobi" - "appointment" - "apportable" - "apprequests" - "approval" - "approval-tests" - "approximate" - "approximate-nn-searching" - "approximation" - "apprtcdemo" - "apps-for-office" - "appscale" - "appscript" - "appsdk2" - "appserver" - "appsettings" - "appstats" - "appstore-approval" - "appstore-sandbox" - "apptentive" - "apptrk" - "appv" - "appverse" - "appveyor" - "appwarp" - "appweb" - "appwidgetprovider" - "appworld" - "appx" - "appxmanifest" - "apr" - "april-fools" - "apriori" - "apropos" - "aps" - "apscheduler" - "apt" - "apt-get" - "aptana" - "aptana3" - "aptitude" - "apvpdf" - "apxs2" - "aqgridview" - "aql" - "aqtime" - "aquafold" - "aquamacs" - "aquaticprime" - "aquery" - "aquiles" - "ar" - "ar-mailer" - "ar.drone" - "arabic" - "arago" - "arangodb" - "arangodb-php" - "araxis" - "araxis-merge" - "arb" - "arbitrary-precision" - "arbor.js" - "arbre" - "arbtt" - "arc-lisp" - "arc42" - "arc4random" - "arcade" - "arcanist" - "arcball" - "arcgis" - "arcgis-js-api" - "arcgis-server" - "archetypes" - "architectural-patterns" - "architecture" - "archiva" - "archive" - "archive-file" - "archive-tar" - "archiving" - "archlinux" - "archlinux-arm" - "archos" - "arcmap" - "arcobjects" - "arcpy" - "arctext.js" - "arden-syntax" - "ardent" - "ardor3d" - "arduino" - "arduino-ide" - "arduino-makefile" - "arduino-uno" - "arduino-yun" - "area" - "areas" - "arel" - "arena-simulation" - "arff" - "argb" - "argc" - "argh" - "argmax" - "argonaut" - "argotic" - "argouml" - "argparse" - "args" - "args4j" - "argument-deduction" - "argument-dependent-lookup" - "argument-error" - "argument-matcher" - "argument-matching" - "argument-passing" - "argument-unpacking" - "argument-validation" - "argumentexception" - "argumentnullexception" - "arguments" - "argv" - "aria2" - "ariatemplates" - "aries" - "aris" - "arithabort" - "arithmetic-expressions" - "arithmeticexception" - "arity" - "arj" - "arm" - "arm64" - "arm7" - "arm9" - "armadillo" - "armcc" - "armv6" - "armv7" - "arp" - "arpack" - "arq" - "arquillian" - "arquillian-drone" - "arr" - "arrange-act-assert" - "arrangeoverride" - "array-address" - "array-algorithms" - "array-difference" - "array-filter" - "array-flip" - "array-formulas" - "array-initialization" - "array-initialize" - "array-intersect" - "array-key" - "array-key-exists" - "array-map" - "array-merge" - "array-multisort" - "array-population" - "array-push" - "array-reduce" - "array-reverse" - "array-slice" - "array-splice" - "array-unique" - "array-unset" - "arrayaccess" - "arraybuffer" - "arraycollection" - "arraycopy" - "arraydeque" - "arrayfire" - "arrayindexoutofbounds" - "arrayiterator" - "arraylist" - "arrayobject" - "arrayofstring" - "arrayref" - "arrays" - "arrow" - "arrow-keys" - "arrows" - "art" - "art-runtime" - "artax" - "artemis" - "article" - "articulate-storyline" - "artifact" - "artifactory" - "artifacts" - "artificial-intelligence" - "artificial-life" - "artisan" - "artisan-migrate" - "artistic-license" - "artoolkit" - "artwork" - "aruba" - "aruco" - "arules" - "as-if" - "as-keyword" - "as-operator" - "as-pattern" - "as.date" - "as3-api" - "as3crypto" - "as3xls" - "as86" - "asa" - "asadmin" - "asana" - "asbio" - "asc2" - "ascensor" - "ascii" - "ascii-8bit" - "ascii-art" - "ascii85" - "asciidoc" - "asciidoctor" - "asciiencoding" - "asciimath" - "ascmd" - "ascom" - "ascription" - "ascx" - "asdf" - "asdoc" - "ase" - "asenumerable" - "asf" - "ash" - "ashmem" - "ashx" - "asianfonts" - "asic" - "asiformdatarequest" - "asift" - "asihttprequest" - "asinetworkqueue" - "asio" - "ask-fast" - "askbot" - "asl" - "aslr" - "asm.js" - "asmack" - "asmjit" - "asml" - "asmock" - "asmselect" - "asmx" - "asn.1" - "asna-visual-rpg" - "asort" - "asp-classic" - "asp-literal" - "asp-usercontrols" - "asp.net" - "asp.net-1.1" - "asp.net-2.0" - "asp.net-3.5" - "asp.net-4.0" - "asp.net-4.5" - "asp.net-5" - "asp.net-ajax" - "asp.net-apicontroller" - "asp.net-authentication" - "asp.net-authorization" - "asp.net-bundling" - "asp.net-cache" - "asp.net-caching" - "asp.net-charts" - "asp.net-compiler" - "asp.net-controls" - "asp.net-customcontrol" - "asp.net-development-serv" - "asp.net-dynamic-data" - "asp.net-identity" - "asp.net-identity-2" - "asp.net-mail" - "asp.net-membership" - "asp.net-mvc" - "asp.net-mvc-2" - "asp.net-mvc-2-metadata" - "asp.net-mvc-2-validation" - "asp.net-mvc-3" - "asp.net-mvc-3-areas" - "asp.net-mvc-4" - "asp.net-mvc-5" - "asp.net-mvc-5.1" - "asp.net-mvc-5.2" - "asp.net-mvc-6" - "asp.net-mvc-ajax" - "asp.net-mvc-apiexplorer" - "asp.net-mvc-areas" - "asp.net-mvc-awesome" - "asp.net-mvc-beta1" - "asp.net-mvc-controller" - "asp.net-mvc-custom-filter" - "asp.net-mvc-file-upload" - "asp.net-mvc-filters" - "asp.net-mvc-futures" - "asp.net-mvc-helpers" - "asp.net-mvc-layout" - "asp.net-mvc-migration" - "asp.net-mvc-partialview" - "asp.net-mvc-routing" - "asp.net-mvc-scaffolding" - "asp.net-mvc-sitemap" - "asp.net-mvc-templates" - "asp.net-mvc-uihint" - "asp.net-mvc-validation" - "asp.net-mvc-viewmodel" - "asp.net-mvc-views" - "asp.net-optimization" - "asp.net-placeholder" - "asp.net-profiles" - "asp.net-roles" - "asp.net-routing" - "asp.net-session" - "asp.net-spa" - "asp.net-validators" - "asp.net-vnext" - "asp.net-web-api" - "asp.net-web-api-filters" - "asp.net-web-api-helppages" - "asp.net-web-api-odata" - "asp.net-web-api-routing" - "asp.net-web-api2" - "asp.net-webcontrol" - "asp.net-webpages" - "aspbutton" - "aspchart" - "aspdotnetstorefront" - "aspect" - "aspect-fit" - "aspect-oriented" - "aspect-ratio" - "aspectj" - "aspectj-maven-plugin" - "aspects" - "aspell" - "aspen" - "asplinkbutton" - "aspmaker" - "aspmenu" - "aspmenu-control" - "aspnet-compiler" - "aspnet-development-server" - "aspnet-identity" - "aspnet-merge" - "aspnet-regiis.exe" - "aspnetdb" - "aspose" - "aspose-cells" - "aspose-slides" - "aspose.pdf" - "aspose.words" - "asprepeater" - "aspstate" - "aspwizard" - "aspxcombobox" - "aspxgridview" - "asqueryable" - "assembla" - "assemble" - "assemblies" - "assembly" - "assembly-attributes" - "assembly-binding-redirect" - "assembly-loading" - "assembly-name" - "assembly-reference-path" - "assembly-references" - "assembly-resolution" - "assembly-signing" - "assembly.load" - "assembly.reflectiononly" - "assemblybinding" - "assemblybuilder" - "assemblyfileversion" - "assemblyinfo" - "assemblyresolve" - "assemblyversionattribute" - "assemblyversions" - "assert" - "assertion" - "assertions" - "assertj" - "assertraises" - "assessment" - "asset" - "asset-catalog" - "asset-finger-printing" - "asset-management" - "asset-pipeline" - "asset-sync" - "assetbundle" - "assetic" - "assets" - "assetslibrary" - "assign" - "assignment-operator" - "assimp" - "assimulo" - "assistant" - "assisted-inject" - "assistive" - "assistive-technology" - "associate" - "associated-object" - "associated-sorting" - "associated-types" - "associations" - "associative" - "associative-array" - "associative-table" - "associativity" - "ast" - "aster" - "asterisk" - "asteriskami" - "astoria" - "astral-plane" - "astro" - "astrolabe" - "astronomy" - "astropy" - "astyanax" - "astyle" - "asunit" - "asus-xtion" - "asx" - "asymmetric" - "asymptotic-complexity" - "async-await" - "async-ctp" - "async-loading" - "async-safe" - "async-workflow" - "async.js" - "asynccallback" - "asynccontroller" - "asyncdisplaykit" - "asyncfileupload" - "asynchronous" - "asynchronous-loader" - "asynchronous-method-call" - "asynchronous-pages" - "asynchronous-postback" - "asynchronous-processing" - "asynchronous-wcf-call" - "asynchronously" - "asynchttpclient" - "asyncimageview" - "asyncmongo" - "asyncore" - "asyncpostbackerror" - "asyncsocket" - "asynctaskloader" - "asynctoken" - "at-command" - "at-job" - "at-sign" - "ata" - "atag" - "atan2" - "atdd" - "atexit" - "atg" - "atg-droplet" - "atg-dust" - "atg-dynamo" - "athens" - "ati" - "atk4" - "atl" - "atlas" - "atlassian" - "atlassian-connect" - "atlassian-crowd" - "atlassian-crucible" - "atlassian-fisheye" - "atlassian-plugin-sdk" - "atlassian-sourcetree" - "atlassian-stash" - "atlassprites" - "atlcom" - "atmega" - "atmega16" - "atmel" - "atmel-uc3" - "atmelstudio" - "atmhud" - "atmosphere" - "atof" - "atoi" - "atom" - "atom-editor" - "atom-shell" - "atomic" - "atomic-int" - "atomic-long" - "atomic-swap" - "atomic-values" - "atomicboolean" - "atomicinteger" - "atomicity" - "atomicreference" - "atomikos" - "atomineerutils" - "atompub" - "atooma" - "ats" - "atsam3x" - "att" - "attach-api" - "attach-to-process" - "attached-properties" - "attachedbehaviors" - "attachevent" - "attachmate-extra" - "attachment" - "attachment-field" - "attachment-fu" - "attask" - "attiny" - "attivio" - "attlist" - "attoparsec" - "attr" - "attr-accessible" - "attr-accessor" - "attr-encrypted" - "attr-protected" - "attribute-exchange" - "attributeerror" - "attributerouting" - "attributerouting.net" - "attributes" - "attributeusage" - "attunity" - "atunit" - "aubio" - "auc" - "auctex" - "auction" - "audacity" - "audience" - "audio" - "audio-analysis" - "audio-capture" - "audio-comparison" - "audio-converter" - "audio-fingerprinting" - "audio-playback-agent" - "audio-player" - "audio-playing" - "audio-processing" - "audio-recording" - "audio-route" - "audio-streaming" - "audio-video-sync" - "audiobuffer" - "audiobufferlist" - "audiocontext" - "audioeffect" - "audioflinger" - "audioformat" - "audiojs" - "audiolab" - "audiomanager" - "audioqueue" - "audioqueueservices" - "audiorecord" - "audiosession" - "audiosessionservices" - "audiostreamer" - "audiotoolbox" - "audiotrack" - "audiounit" - "audiovideoplayback" - "audit" - "audit-logging" - "audit-tables" - "audit-trail" - "auditing" - "augeas" - "augmented-assignment" - "augmented-reality" - "aunit" - "aura-framework" - "aura.js" - "auraphp" - "aurasma" - "aurigma" - "aurora.js" - "auth-request" - "auth-token" - "authentication" - "authenticator" - "authenticity" - "authenticity-token" - "authenticode" - "authid" - "authkit" - "authlogic" - "authlogic-oauth" - "authlogic-oid" - "author" - "authoring" - "authority" - "authority-gem" - "authoritykeyidentifier" - "authorization" - "authorizationmanager" - "authorizationservices" - "authorize" - "authorize-attribute" - "authorize.net" - "authorize.net-cim" - "authorizeattribute" - "authorized-keys" - "authsmtp" - "authsub" - "authz" - "auto" - "auto-build" - "auto-close" - "auto-compile" - "auto-generate" - "auto-increment" - "auto-indent" - "auto-lock" - "auto-populate" - "auto-populating" - "auto-ptr" - "auto-registration" - "auto-renewing" - "auto-responder" - "auto-rotation" - "auto-update" - "auto-value" - "auto-vectorization" - "auto-versioning" - "autobahn" - "autobahnws" - "autobean" - "autobench" - "autoblogged" - "autoboxing" - "autocad" - "autocad-plugin" - "autoclass" - "autocloseable" - "autocmd" - "autocommand" - "autocommenting" - "autocommit" - "autocomplete" - "autocompletebox" - "autocompleteextender" - "autocompletetextview" - "autoconf" - "autocorrect" - "autocreate" - "autodeploy" - "autodesk" - "autodie" - "autodiff" - "autodiscovery" - "autodoc" - "autoellipsis" - "autoencoder" - "autoeventwireup" - "autoexec" - "autoexp.dat" - "autoexpect" - "autofac" - "autofield" - "autofill" - "autofilter" - "autofixture" - "autoflush" - "autofocus" - "autoformatting" - "autogen" - "autogeneratecolumn" - "autogrow" - "autohotkey" - "autoit" - "autojit" - "autokey" - "autolayout" - "autolink" - "autolisp" - "autoload" - "autoloader" - "autologin" - "automake" - "automap" - "automapper" - "automapper-2" - "automapper-3" - "automapping" - "automata" - "automata-theory" - "automated-deploy" - "automated-deployment" - "automated-refactoring" - "automated-testing" - "automated-tests" - "automatic-allocation" - "automatic-differentiation" - "automatic-generalization" - "automatic-migration" - "automatic-properties" - "automatic-ref-counting" - "automatic-storage" - "automatic-updates" - "automation" - "automationelement" - "automationpeer" - "automaton" - "automator" - "automerge" - "automobiles" - "automocking" - "automoq" - "automount" - "autonomy" - "autonumber" - "autopep8" - "autoplay" - "autoplay-media-studio" - "autopoco" - "autopostback" - "autoprefixer" - "autoproxy" - "autoreconf" - "autoregressive-models" - "autorelease" - "autorepeat" - "autoresetevent" - "autoresize" - "autoresizingmask" - "autorotate" - "autorun" - "autosar" - "autosave" - "autoscalemode" - "autoscaling" - "autoscroll" - "autosize" - "autossh" - "autostart" - "autosuggest" - "autosys" - "autotest" - "autotools" - "autovivification" - "autowire" - "autowired" - "avahi" - "availability-zone" - "avalondock" - "avalonedit" - "avasset" - "avassetexportsession" - "avassetimagegenerator" - "avassetreader" - "avassetwriter" - "avatar" - "avatar-generation" - "avatarjs" - "avatars" - "avaudioplayer" - "avaudiorecorder" - "avaudiosession" - "avaudiosessiondelegate" - "avaya" - "avcam" - "avcapture" - "avcapturedevice" - "avcapturemoviefileoutput" - "avcapturesession" - "avcodec" - "avcomposition" - "avconv" - "avd" - "avectra" - "average" - "average-precision" - "avfoundation" - "avi" - "avian" - "aviarc" - "aviary" - "avicode" - "avisynth" - "avl-tree" - "avm2" - "avmetadataitem" - "avmutablecomposition" - "avogadro" - "avplayer" - "avplayeritem" - "avplayerlayer" - "avprobe" - "avqueueplayer" - "avr" - "avr-gcc" - "avr-studio4" - "avr-studio5" - "avr-studio6" - "avrcp" - "avrdude" - "avro" - "avs" - "avspeechsynthesizer" - "avsystemcontroller" - "avurlasset" - "avvideocomposition" - "avx" - "avx2" - "avx512" - "await" - "awakefromnib" - "away3d" - "awdwr" - "awe" - "aweber" - "awesome-nested-set" - "awesome-wm" - "awesomeprint" - "awesomium" - "awestruct" - "awk" - "awk-formatting" - "awr" - "aws-cli" - "aws-code-deploy" - "aws-command-line" - "aws-elastictranscoder" - "aws-iam-roles" - "aws-lambda" - "aws-lib" - "aws-marketplace" - "aws-opsworks" - "aws-php-sdk" - "aws-powershell" - "aws-sdk" - "aws4c" - "awsiossdk" - "awss3transfermanager" - "awstats" - "awt" - "awt-eventqueue" - "awtrobot" - "awtutilities" - "ax" - "axacropdf" - "axapta" - "axd" - "axes" - "axhost" - "axi-bus" - "axiis" - "axiom" - "axis" - "axis-labels" - "axis2" - "axis2c" - "axlsx" - "axmediaplayer" - "axon" - "axshockwaveflash" - "axspreadsheet" - "axum" - "axure" - "axwebbrowser" - "axwindowsmediaplayer" - "az-application-insights" - "azcopy" - "azimuth" - "azkaban" - "azman" - "azspcs" - "aztec-barcode" - "azul-zulu" - "azure" - "azure-1.8" - "azure-acs" - "azure-active-directory" - "azure-affinity-group" - "azure-android-sdk" - "azure-api-management" - "azure-appfabric" - "azure-automation" - "azure-autoscaling-block" - "azure-caching" - "azure-cdn" - "azure-cli" - "azure-cloud-services" - "azure-clouddrive" - "azure-compute-emulator" - "azure-configuration" - "azure-connect" - "azure-data-sync" - "azure-debugger" - "azure-deployment" - "azure-diagnostics" - "azure-disk" - "azure-documentdb" - "azure-elastic-scale" - "azure-emulator" - "azure-eventhub" - "azure-git-deployment" - "azure-in-role-cache" - "azure-java-sdk" - "azure-machine-learning" - "azure-management" - "azure-management-api" - "azure-marketplace" - "azure-media-services" - "azure-mobile-services" - "azure-monitoring" - "azure-node-sdk" - "azure-notificationhub" - "azure-pack" - "azure-packaging" - "azure-powershell" - "azure-redis-cache" - "azure-resource-manager" - "azure-role-environment" - "azure-scheduler" - "azure-sdk-.net" - "azure-search" - "azure-service-runtime" - "azure-servicebus-queues" - "azure-servicebusrelay" - "azure-sql-reporting" - "azure-storage" - "azure-storage-blobs" - "azure-storage-emulator" - "azure-storage-queues" - "azure-storage-tables" - "azure-store" - "azure-table-storage" - "azure-traffic-manager" - "azure-virtual-machine" - "azure-virtual-network" - "azure-vm-role" - "azure-vpn" - "azure-web-roles" - "azure-web-sites" - "azure-webjobs" - "azure-webjobssdk" - "azure-worker-roles" - "azure-xplat-cli" - "azure-zulu" - "azureservicebus" - "b" - "b-method" - "b-plus-tree" - "b-prolog" - "b-tree" - "b-tree-index" - "b2" - "b2b" - "b2evolution" - "b2g" - "b3" - "b4j" - "baasbox" - "babaganoush-sitefinity" - "babel" - "babelua" - "babushka" - "babylonjs" - "back" - "back-button" - "back-button-control" - "back-projection" - "back-stack" - "backbarbuttonitem" - "backbase-portal" - "backbone-associations" - "backbone-boilerplate" - "backbone-collections" - "backbone-events" - "backbone-forms" - "backbone-layout-manager" - "backbone-local-storage" - "backbone-model" - "backbone-paginator" - "backbone-rails" - "backbone-relational" - "backbone-routing" - "backbone-stickit" - "backbone-ui" - "backbone-views" - "backbone.eventbinder" - "backbone.geppetto" - "backbone.js" - "backbone.js-collections" - "backbone.paginator" - "backbone.signalr" - "backbone.validation.js" - "backbonefire" - "backcolor" - "backend" - "backfire" - "backgrid" - "background" - "background-agent" - "background-agents" - "background-application" - "background-attachment" - "background-audio" - "background-blend-mode" - "background-color" - "background-drawable" - "background-fetch" - "background-foreground" - "background-image" - "background-music" - "background-position" - "background-process" - "background-repeat" - "background-service" - "background-size" - "background-subtraction" - "background-task" - "background-thread" - "background-transfer" - "backgrounding" - "backgroundrb" - "backgroundworker" - "backing" - "backing-beans" - "backing-field" - "backlight" - "backlink" - "backload" - "backlog" - "backout" - "backport" - "backpressure" - "backpropagation" - "backreference" - "backslash" - "backspace" - "backticks" - "backtrace" - "backtrack-linux" - "backtracking" - "backup" - "backup-agent" - "backup-sqldatabase" - "backup-strategies" - "backupexec" - "backups" - "backwards" - "backwards-compatibility" - "bacnet" - "bacnet4j" - "bacon" - "bacon.js" - "bacpac" - "bacula" - "bad-alloc" - "bad-request" - "bada" - "badge" - "badgerfish" - "badimageformatexception" - "badpaddingexception" - "badparcelableexception" - "baduk" - "bag" - "bakefile" - "baker-framework" - "balana" - "balance" - "balanced-data-distributor" - "balanced-groups" - "balanced-payments" - "balancing-groups" - "balloon" - "balloon-tip" - "balloons" - "balsamiq" - "bam" - "bamboo" - "baml" - "baml2006reader" - "banana" - "banana-pi" - "bancha" - "bandit" - "bandwidth" - "bandwidth-throttling" - "bank" - "bank-conflict" - "bankers-algorithm" - "bankers-rounding" - "banking" - "banner" - "banner-ads" - "banshee" - "bapi" - "bar-chart" - "barbecue" - "barcode" - "barcode-printing" - "barcode-scanner" - "barcode4j" - "bare" - "bare-domain" - "bare-metal" - "barebones" - "baresip" - "bareword" - "barrier" - "bartintcolor" - "base" - "base-60" - "base-address" - "base-class" - "base-conversion" - "base-db" - "base-n" - "base-path" - "base-sdk" - "base-tag" - "base-url" - "base32" - "base36" - "base62" - "base64" - "base85" - "baseadapter" - "basecamp" - "basedon" - "basehttprequesthandler" - "basehttpserver" - "baseless-merge" - "baseline" - "basemap" - "basex" - "bash" - "bash-completion" - "bash-function" - "bash-variables" - "bash2zsh" - "bash4" - "basic" - "basic-authentication" - "basic-msi" - "basic-operators" - "basic-string" - "basic4android" - "basichttpbinding" - "basichttprelaybinding" - "basicnamevaluepair" - "basil.js" - "basm" - "bass" - "bass.dll" - "batarang" - "batch-build" - "batch-drawing" - "batch-fetching" - "batch-file" - "batch-insert" - "batch-processing" - "batch-rename" - "batch-request" - "batch-updates" - "batching" - "batik" - "batman-rails" - "batman.js" - "batoo" - "battery" - "battery-saver" - "batterylevel" - "batterymanager" - "baucis" - "baud-rate" - "bayesglm" - "bayesian" - "bayesian-networks" - "bayeux" - "bazaar" - "bazaar-plugins" - "bb-messenger" - "bbc-glow" - "bbc-micro" - "bbcode" - "bbdb" - "bbdb-3" - "bbedit" - "bbpress" - "bbv.common.eventbroker" - "bc" - "bc4j" - "bcache" - "bcc" - "bcd" - "bcdedit" - "bcdstore" - "bcel" - "bck2brwsr" - "bcl" - "bcmath" - "bcnf" - "bcompiler" - "bcp" - "bcpl" - "bcrypt" - "bcrypt-ruby" - "bcrypt.net" - "bcs" - "bda" - "bdc" - "bdd" - "bde" - "bdmultidownloader" - "bduf" - "bea" - "beads-project" - "beagleboard" - "beagleboneblack" - "beaker" - "beaker-testing" - "beam" - "beam-search" - "beamer" - "bean-io" - "bean-managed-transactions" - "bean-manager" - "bean-validation" - "beaninfo" - "beans-binding" - "beansbinding" - "beanshell" - "beanstalk" - "beanstalk-maven-plugin" - "beanstalkc" - "beanstalkd" - "beanstream" - "bearer-token" - "bearing" - "beast" - "beat-detection" - "beatbox" - "beatsmusic" - "beautification" - "beautifier" - "beautifulsoup" - "beautify" - "beautytips" - "beaver" - "becomefirstresponder" - "beego" - "beehive" - "beep" - "beepbeep" - "beeswax" - "before-filter" - "before-save" - "beforenavigate2" - "beforesend" - "beforeupdate" - "befunge" - "beginanimations" - "begincollectionitem" - "begininvoke" - "beginread" - "beginreceive" - "beginthread" - "beginthreadex" - "behance-api" - "behat" - "behavior" - "behaviorspace" - "behaviorsubject" - "behemoth" - "behind" - "beizer" - "belief-propagation" - "bell-curve" - "bellman-ford" - "belongs-to" - "bem" - "benchmark.js" - "benchmarking" - "benerator" - "benfords-law" - "bento" - "ber" - "berkeley-cil" - "berkeley-db" - "berkeley-db-je" - "berkeley-db-xml" - "berkeley-sockets" - "berkelium" - "berksfile" - "berkshelf" - "bernoulli-numbers" - "bernoulli-probability" - "bert" - "bespin" - "bespoke.js" - "bessel-functions" - "best-buy-api" - "best-fit" - "best-fit-curve" - "best-in-place" - "beta" - "beta-distribution" - "beta-testing" - "beta-versions" - "betamax" - "betfair" - "better-assert" - "better-errors-gem" - "better-listview" - "better-pickers" - "between" - "betwixt" - "bevelled" - "beyondcompare" - "beyondcompare3" - "bezier" - "bezier-curve" - "bfd" - "bfg-repo-cleaner" - "bfile" - "bfs" - "bgga" - "bgi" - "bgiframe" - "bgp" - "bgr" - "bhm" - "bho" - "bi-lingual" - "bi-publisher" - "bi-temporal" - "bi-tool" - "bias-neuron" - "biblatex" - "bibliography" - "bibtex" - "bicubic" - "bidi" - "bidirectional" - "bidirectional-relation" - "bids" - "biff" - "biff12" - "big-endian" - "big-ip" - "big-o" - "big-omega" - "big-theta" - "big5" - "bigbluebutton" - "bigcartel" - "bigcommerce" - "bigcouch" - "bigdata" - "bigdecimal" - "bigfloat" - "bigfraction" - "biginsights" - "bigint" - "biginteger" - "bigloo" - "bignum" - "bigtable" - "bigtop" - "biicode" - "bijection" - "billiards" - "billing" - "bimap" - "biml" - "bin" - "bin-folder" - "bin-packing" - "binaries" - "binary" - "binary-bits" - "binary-compatibility" - "binary-data" - "binary-decision-diagram" - "binary-deserialization" - "binary-diff" - "binary-heap" - "binary-image" - "binary-log" - "binary-logic" - "binary-matrix" - "binary-operators" - "binary-reproducibility" - "binary-search" - "binary-search-tree" - "binary-serialization" - "binary-tree" - "binary-xml" - "binaryfiles" - "binaryformatter" - "binaryreader" - "binarystream" - "binarywriter" - "bind" - "bind-variables" - "bind2nd" - "bindable" - "bindable-linq" - "bindata" - "binder" - "binders" - "bindgen" - "binding" - "binding-expressions" - "binding-mode" - "bindingflags" - "bindinghandlers" - "bindinglist" - "bindingnavigator" - "bindingsource" - "bindonce" - "bindy" - "bing" - "bing-api" - "bing-maps" - "bing-maps-api" - "bing-maps-api-7" - "bing-maps-controls" - "bing-search" - "bing-traffic-api" - "bing-translator-api" - "bing-webmaster-tools" - "bingbot" - "binlog" - "binmode" - "binning" - "binomial-cdf" - "binomial-coefficients" - "binomial-heap" - "binomial-theorem" - "bins" - "binscope" - "binsor" - "binstar" - "bintray" - "binutils" - "bioconductor" - "biohaskell" - "bioinformatics" - "biojava" - "biological-neural-network" - "biom" - "biometrics" - "bionic" - "bioperl" - "biopython" - "bios" - "bipartite" - "birt" - "birt-emitter" - "birthday-paradox" - "bisect" - "bisection" - "bism" - "bison" - "bisonc++" - "bit" - "bit-depth" - "bit-fiddling" - "bit-fields" - "bit-manipulation" - "bit-masks" - "bit-packing" - "bit-representation" - "bit-shift" - "bit-shift-operators" - "bit-twiddling" - "bit.ly" - "bitarray" - "bitbake" - "bitblit" - "bitblt" - "bitboard" - "bitbucket" - "bitbucket-api" - "bitcasa" - "bitcoin" - "bitcoin-testnet" - "bitcoind" - "bitcoinj" - "bitconverter" - "bitcount" - "bitdefender" - "bitflags" - "bitfoo" - "bitkeeper" - "bitmap" - "bitmap-fonts" - "bitmap-index" - "bitmapcache" - "bitmapdata" - "bitmapdrawable" - "bitmapeffect" - "bitmapencoder" - "bitmapfactory" - "bitmapfield" - "bitmapframe" - "bitmapimage" - "bitmapregiondecoder" - "bitmapshader" - "bitmapsource" - "bitmask" - "bitnami" - "bitrate" - "bitrix" - "bitrock" - "bitronix" - "bits" - "bits-per-pixel" - "bits-service" - "bitset" - "bitsets" - "bitsharp" - "bitstream" - "bitstring" - "bitstuffing" - "bitsy" - "bittorrent" - "bittorrent-sync" - "bitvector" - "bitwise" - "bitwise-and" - "bitwise-operators" - "bitwise-or" - "bitwise-xor" - "bixolon-printer" - "bizagi" - "bizspark" - "biztalk" - "biztalk-2009" - "biztalk-2010" - "biztalk-2013" - "biztalk-2013r2" - "biztalk-deployment" - "biztalk-mapper" - "biztalk-orchestrations" - "biztalk-ps1-provider" - "biztalk-rule-engine" - "biztalk-schemas" - "biztalk-services" - "biztalk-wcf" - "biztalk2006r2" - "bizunit" - "bjam" - "bjoern" - "bjqs" - "bjyauthorize" - "black-box" - "black-box-testing" - "black-mark" - "blackberry" - "blackberry-10" - "blackberry-5" - "blackberry-9800" - "blackberry-android" - "blackberry-basiceditfield" - "blackberry-c++" - "blackberry-cascades" - "blackberry-curve" - "blackberry-eclipse-plugin" - "blackberry-editfield" - "blackberry-jde" - "blackberry-maps" - "blackberry-ndk" - "blackberry-os-v4.5" - "blackberry-os-v5" - "blackberry-os5" - "blackberry-os6" - "blackberry-playbook" - "blackberry-popupscreen" - "blackberry-push" - "blackberry-q10" - "blackberry-qnx" - "blackberry-simulator" - "blackberry-storm" - "blackberry-torch" - "blackberry-webworks" - "blackberry-widgets" - "blackberry-world" - "blackboard" - "blackcoffee" - "blackfin" - "blackfish" - "blackhole" - "blackjack" - "blacklight" - "blacklist" - "blade" - "blame" - "blank-line" - "blank-page" - "blank-space" - "blanket.js" - "blas" - "blast" - "blat" - "blaze" - "blaze-html" - "blazeds" - "blazemeter" - "blcr" - "blekko" - "blend" - "blend-2012" - "blend-sdk" - "blendability" - "blender" - "blender-2.49" - "blender-2.50" - "blender-2.61" - "blender-2.67" - "blending" - "bleno" - "bless" - "bliki" - "blind" - "blindness" - "blink" - "blinker" - "blinking" - "blit" - "blitline" - "blitz++" - "blitzmax" - "blkid" - "blktrace" - "bll" - "blob" - "blobs" - "blobstorage" - "blobstore" - "bloburls" - "block" - "block-cipher" - "block-comments" - "block-device" - "blockchain" - "blocked" - "blocked-threads" - "blocking" - "blockingcollection" - "blockingqueue" - "blockly" - "blockquote" - "blockui" - "blog-engine" - "blogengine.net" - "blogger" - "blogger-dynamic-views" - "blogml" - "blogs" - "blogspot" - "bloodhound" - "bloom" - "bloom-filter" - "bloomberg" - "blotter" - "blowfish" - "blpapi" - "bltoolkit" - "blu-ray" - "blue-green-deployment" - "bluebird" - "bluebutton" - "bluecloth" - "bluecove" - "bluedragon" - "bluefish" - "bluegiga" - "bluehost" - "blueimp" - "bluej" - "bluemix" - "bluenrg" - "bluepill" - "blueprint" - "blueprint-css" - "blueprint-osgi" - "bluesmirf" - "bluespec" - "bluestacks" - "bluetooth" - "bluetooth-keyboard" - "bluetooth-lowenergy" - "bluetooth-profile" - "bluetooth-sco" - "bluetooth-socket" - "bluez" - "bluno" - "blur" - "blurry" - "bmp" - "bnd" - "bndtools" - "bnf" - "bnfc" - "boa" - "boa-constructor" - "bobo-browse" - "bobo-browse.net" - "bochs" - "body-parser" - "boehm-gc" - "boids" - "boilerpipe" - "boilerplate" - "boilerplatejs" - "boinc" - "bokeh" - "bold" - "bold-for-delphi" - "bolt-cms" - "bolts-framework" - "bonecp" - "bonfire" - "bonita" - "bonjour" - "bonobo" - "bonsai-elasticsearch" - "bonsaijs" - "boo" - "boofcv" - "booggie" - "bookblock" - "bookmarklet" - "bookmarks" - "bookshelf.js" - "booksleeve" - "boolean" - "boolean-algebra" - "boolean-expression" - "boolean-logic" - "boolean-operations" - "boolean-search" - "booleanquery" - "boomerang" - "boonex-dolphin" - "boost" - "boost-accumulators" - "boost-any" - "boost-asio" - "boost-bimap" - "boost-bind" - "boost-bjam" - "boost-build" - "boost-context" - "boost-date-time" - "boost-dynamic-bitset" - "boost-extension" - "boost-filesystem" - "boost-flyweight" - "boost-foreach" - "boost-format" - "boost-function" - "boost-functional" - "boost-fusion" - "boost-geometry" - "boost-gil" - "boost-graph" - "boost-graph-parallel" - "boost-hana" - "boost-icl" - "boost-interprocess" - "boost-interval" - "boost-iostreams" - "boost-iterators" - "boost-jam" - "boost-lambda" - "boost-locale" - "boost-log" - "boost-logging" - "boost-move" - "boost-mpi" - "boost-mpl" - "boost-msm" - "boost-multi-array" - "boost-multi-index" - "boost-mutex" - "boost-optional" - "boost-parameter" - "boost-phoenix" - "boost-pool" - "boost-preprocessor" - "boost-program-options" - "boost-propertytree" - "boost-proto" - "boost-ptr-container" - "boost-python" - "boost-random" - "boost-range" - "boost-ref" - "boost-regex" - "boost-serialization" - "boost-signals" - "boost-signals2" - "boost-smart-ptr" - "boost-spirit" - "boost-spirit-karma" - "boost-spirit-lex" - "boost-spirit-qi" - "boost-spirit-x3" - "boost-statechart" - "boost-system" - "boost-test" - "boost-thread" - "boost-timer" - "boost-tokenizer" - "boost-tuples" - "boost-ublas" - "boost-unit-test-framework" - "boost-units" - "boost-unordered" - "boost-uuid" - "boost-variant" - "boost-xpressive" - "boost.build" - "boost.test" - "boot" - "boot-animation" - "boot2docker" - "bootable" - "bootbox" - "bootcamp" - "bootclasspath" - "bootcompleted" - "bootjack" - "bootloader" - "bootp" - "bootply" - "bootsfaces" - "bootstrap" - "bootstrap-datepicker" - "bootstrap-datetimepicker" - "bootstrap-dialog" - "bootstrap-file-upload" - "bootstrap-for-ember" - "bootstrap-form-helper" - "bootstrap-growl" - "bootstrap-image-gallery" - "bootstrap-lightbox" - "bootstrap-modal" - "bootstrap-multiselect" - "bootstrap-popover" - "bootstrap-protocol" - "bootstrap-sass" - "bootstrap-select" - "bootstrap-slider" - "bootstrap-sortable" - "bootstrap-switch" - "bootstrap-tabs" - "bootstrap-tags-input" - "bootstrap-tokenfield" - "bootstrap-tour" - "bootstrap-typeahead" - "bootstrap-wysihtml5" - "bootstrap-wysiwyg" - "bootstrap-wysiwyg5-rails" - "bootstrapper" - "bootstrapping" - "bootstro" - "bootswatch" - "border" - "border-box" - "border-color" - "border-container" - "border-layout" - "border-shadow" - "border-spacing" - "borderless" - "borderpane" - "borland-c" - "borland-c++" - "borland-enterprise-server" - "borland-together" - "borrow-checker" - "bosh" - "botan" - "botnet" - "boto" - "boto3" - "botocore" - "bots" - "botsuite.net" - "bottle" - "bottleneck" - "bottom-type" - "bottom-up" - "bounce" - "bouncedemail" - "bouncycastle" - "bound-variable" - "boundary" - "boundbox" - "boundcolumn" - "bounded-contexts" - "bounded-quantification" - "bounded-types" - "bounded-wildcard" - "boundfield" - "bounding" - "bounding-box" - "bounding-volume" - "bounds" - "bounds-check-elimination" - "bounds-checker" - "bourbon" - "bower" - "bower-install" - "bower-installer" - "box" - "box-api" - "box-view-api" - "box2d" - "box2d-iphone" - "box2dweb" - "boxapiv2" - "boxee" - "boxen" - "boxing" - "boxlayout" - "boxplot" - "boxsizer" - "boxstarter" - "boxy" - "boyer-moore" - "bpel" - "bpelxexec" - "bpf" - "bpg" - "bpgsql" - "bpl" - "bpm" - "bpmn" - "bpms" - "bpopup" - "bpp" - "bpy" - "bpython" - "brace-expansion" - "brace-initialization" - "braces" - "brackets" - "brackets-shell" - "braid" - "brail" - "braille" - "brain.js" - "brainbench" - "brainfuck" - "braintree" - "braintree-rails" - "brakeman" - "branch" - "branch-and-bound" - "branch-per-feature" - "branch-prediction" - "branching-and-merging" - "branching-strategy" - "branding" - "bread-board" - "breadcrumbs" - "breadth-first-search" - "break" - "breakout" - "breakpad" - "breakpoint-sass" - "breakpoints" - "breeze" - "breeze-sharp" - "breezingforms" - "bresenham" - "brew" - "brew-doctor" - "brewmp" - "brfs" - "bri" - "bridge" - "bridge-pattern" - "brief-bookmarks" - "brightcove" - "brightness" - "brightscript" - "bringtofront" - "brio" - "brisk" - "brk" - "bro" - "broad-phase" - "broadband" - "broadcast" - "broadcasting" - "broadcastreceiver" - "broadcom" - "broadleaf-commerce" - "broccolijs" - "broken-links" - "broken-pipe" - "brokenimage" - "broker" - "brokeredmessage" - "bronto" - "brownfield" - "browsable" - "browscap" - "browse-information" - "browse-url" - "browser" - "browser-action" - "browser-addons" - "browser-automation" - "browser-based" - "browser-bugs" - "browser-cache" - "browser-close" - "browser-defaults" - "browser-detection" - "browser-extension" - "browser-history" - "browser-link" - "browser-plugin" - "browser-refresh" - "browser-scrollbars" - "browser-security" - "browser-state" - "browser-support" - "browser-sync" - "browser-tab" - "browser-testing" - "browser-width" - "browsercaps" - "browsercms" - "browserfield" - "browserid" - "browserify" - "browserify-rails" - "browserify-shim" - "browsermob" - "browserstack" - "brubeck" - "brunch" - "brush" - "brushes" - "brute-force" - "brython" - "bsd" - "bsd-license" - "bsd-sockets" - "bsddb" - "bsdmake" - "bsdtar" - "bsod" - "bson" - "bson-ext" - "bsp" - "bsp-tree" - "bspline" - "bssid" - "bstr" - "bstr-t" - "bsxfun" - "btahl7" - "btdf" - "btle" - "btrace" - "btrfs" - "btrieve" - "bts" - "bubble-chart" - "bubble-popup" - "bubble-sort" - "bucardo" - "buck" - "bucket" - "bucket-sort" - "buckets" - "buckminster" - "buddy-class" - "buddy.com" - "buddypress" - "buffer" - "buffer-manager" - "buffer-objects" - "buffer-overflow" - "buffer-overrun" - "buffered" - "bufferedimage" - "bufferedinputstream" - "bufferedoutputstream" - "bufferedreader" - "bufferedstream" - "bufferedwriter" - "buffering" - "bufferstrategy" - "bufferunderflowexception" - "bug-reporting" - "bug-tracker" - "bug-tracking" - "bugs-everywhere" - "bugsense" - "bugsnag" - "bugtracker.net" - "bugzilla" - "bugzscout" - "build" - "build-agent" - "build-automation" - "build-chain" - "build-controller" - "build-definition" - "build-dependencies" - "build-environment" - "build-error" - "build-events" - "build-gradle" - "build-helper-maven-plugin" - "build-management" - "build-numbers" - "build-pipeline" - "build-pipeline-plugin" - "build-process" - "build-process-template" - "build-rules" - "build-script" - "build-server" - "build-settings" - "build-system" - "build-target" - "build-time" - "build-tools" - "build-triggers" - "build.gradle" - "build.xml" - "buildaction" - "buildapp" - "buildbot" - "buildconfig" - "buildconfiguration" - "buildengine" - "builder" - "builder-pattern" - "buildfarm" - "buildforge" - "buildhive" - "building" - "buildingblocks" - "buildmanager" - "buildmaster" - "buildnumber-maven-plugin" - "buildout" - "buildpack" - "buildpath" - "buildprovider" - "buildr" - "buildr-extension" - "buildroot" - "built-in" - "built-in-types" - "built.io" - "builtin" - "builtins" - "bukkit" - "bukkit-vault" - "bulbs" - "bulk" - "bulk-collect" - "bulk-email" - "bulk-import" - "bulk-load" - "bulk-mail" - "bulk-operations" - "bulk-synchronous-parallel" - "bulkinsert" - "bulkloader" - "bulksms" - "bulkupdate" - "bullet" - "bullet-chart" - "bullet-span" - "bulletedlist" - "bulletphysics" - "bullseye" - "bully-algorithm" - "bump" - "bump-mapping" - "bumptop" - "bundle" - "bundle-identifier" - "bundle-install" - "bundle-layout" - "bundler" - "bundles" - "bundletransformer" - "bundling-and-minification" - "bundlor" - "bunny" - "bunyan" - "burn" - "burndowncharts" - "burp" - "burrows-wheeler-transform" - "burstly" - "bus" - "bus-error" - "busboy" - "business-application" - "business-basic" - "business-catalyst" - "business-connector" - "business-intelligence" - "business-layer" - "business-logic" - "business-logic-layer" - "business-logic-toolkit" - "business-model" - "business-objects" - "business-objects-sdk" - "business-process" - "business-rules" - "businessevents" - "businessworks" - "buster.js" - "busy-cursor" - "busy-loop" - "busy-waiting" - "busybox" - "busyindicator" - "butterknife" - "button" - "button-to" - "buttonbar" - "buttonclick" - "buttonfield" - "buttongroup" - "buzz" - "buzz.js" - "buzztouch" - "buzzword-compliance" - "bwidget" - "bwplot" - "bwtoolkit" - "bwu-datagrid" - "bxslider" - "byebug" - "byobu" - "byref" - "byte" - "byte-buddy" - "byte-order" - "byte-order-mark" - "byte-shifting" - "bytea" - "bytearray" - "bytearrayinputstream" - "bytearrayoutputstream" - "bytebuffer" - "bytechannel" - "bytecode" - "bytecode-manipulation" - "bytecode-weaving" - "bytesio" - "bytestowrite" - "bytestream" - "bytestring" - "byval" - "bzip" - "bzip2" - "bzlib-conduit" - "bzr-svn" - "c" - "c#" - "c#-1.2" - "c#-2.0" - "c#-3.0" - "c#-4.0" - "c#-5.0" - "c#-6.0" - "c#-code-model" - "c#-edittext" - "c#-midi-toolkit" - "c#-nameof" - "c#-to-f#" - "c#-to-vb.net" - "c++" - "c++-address" - "c++-amp" - "c++-cli" - "c++-concepts" - "c++-cx" - "c++-edittext" - "c++-faq" - "c++-faq-lite" - "c++-standard-library" - "c++-tr2" - "c++03" - "c++0x" - "c++11" - "c++14" - "c++17" - "c++1z" - "c++98" - "c++builder" - "c++builder-2006" - "c++builder-2007" - "c++builder-2009" - "c++builder-2010" - "c++builder-5" - "c++builder-6" - "c++builder-xe" - "c++builder-xe2" - "c++builder-xe3" - "c++builder-xe4" - "c++builder-xe5" - "c++builder-xe6" - "c++builder-xe7" - "c++builder64" - "c++filt" - "c-api" - "c-ares" - "c-intermediate-language" - "c-libraries" - "c-like" - "c-minus-minus" - "c-mode" - "c-preprocessor" - "c-str" - "c-string" - "c-strings" - "c1001" - "c10k" - "c10n" - "c11" - "c18" - "c1flexgrid" - "c2079" - "c2664" - "c2call" - "c2hs" - "c2wts" - "c3.js" - "c3p0" - "c4" - "c5" - "c51" - "c64" - "c89" - "c90" - "c99" - "ca" - "ca1001" - "ca1062" - "ca1704" - "ca2000" - "ca2202" - "ca65" - "caa" - "caanimation" - "cab" - "cabal" - "cabal-dev" - "cabal-install" - "cabal-test" - "cabasicanimation" - "cabwiz" - "cac" - "cache-control" - "cache-dependency" - "cache-digests" - "cache-expiration" - "cache-invalidation" - "cache-manifest" - "cache-money" - "cache-oblivious" - "cachecow" - "cachedrowset" - "cachefactory" - "cachegrind" - "cacheprofile" - "caching" - "caching-application-block" - "caching-proxy" - "cacls" - "cacti" - "cactivedataprovider" - "cactiverecord" - "cactus" - "cad" - "cadence" - "cadisplaylink" - "caeagllayer" - "caemittercell" - "caemitterlayer" - "caf" - "caffe" - "cag" - "cagradientlayer" - "cairngorm" - "cairo" - "cairoplot" - "cajo" - "cake-console" - "cake-pattern" - "cakedc" - "cakeemail" - "cakefile" - "cakephp" - "cakephp-1.2" - "cakephp-1.3" - "cakephp-2.0" - "cakephp-2.1" - "cakephp-2.2" - "cakephp-2.3" - "cakephp-2.4" - "cakephp-2.4.7" - "cakephp-2.5" - "cakephp-3.0" - "cakephp-acl" - "cakephp-ajaxhelper" - "cakephp-appmodel" - "cakephp-bake" - "cakephp-helper" - "cakephp-model" - "cakephp-routing" - "cakephp-search-plugin" - "cakephp-view-cells" - "caketime" - "cakeyframeanimation" - "cal" - "cal-heatmap" - "calabash" - "calabash-android" - "calabash-ios" - "calayer" - "calc" - "calculated" - "calculated-columns" - "calculated-field" - "calculated-measure" - "calculated-member" - "calculator" - "calculus" - "caldav" - "caldecott" - "calendar" - "calendar-control" - "calendar-store" - "calendarcontract" - "calendarextender" - "calendarview" - "calibration" - "calibre" - "caliburn" - "caliburn.micro" - "caliburn.micro.reactiveui" - "calico" - "caliper" - "call" - "call-by-reference" - "call-by-value" - "call-control" - "call-flow" - "call-graph" - "call-hierarchy" - "callable" - "callable-statement" - "callback" - "callback-file-system" - "callbackurl" - "callblocking" - "callbyname" - "callcc" - "callermembername" - "callgrind" - "calling-convention" - "callisto" - "calllog" - "calloc" - "callout" - "callouts" - "callstack" - "cals-tables" - "cam-pdf" - "camanjs" - "camediatiming" - "camel-ftp" - "camelcasing" - "camelot-.net-connector" - "camelot-php-tools" - "camera" - "camera-api" - "camera-calibration" - "camera-flash" - "camera-matrix" - "camera-overlay" - "camera-roll" - "camera-view" - "cameracapturetask" - "cameraoverlayview" - "camino" - "caml" - "caml-light" - "camlp4" - "camomile" - "campaign-monitor" - "campfire" - "camping" - "camtasia" - "camunda" - "camus" - "can" - "can-bus" - "canary-deployment" - "cancan" - "cancancan" - "cancel-button" - "cancelio" - "cancellation" - "cancellation-token" - "cancellationtokensource" - "candidate" - "candidate-key" - "candisplaybannerads" - "candlestick-chart" - "candy" - "canexecute" - "canjs" - "canjs-component" - "canjs-construct" - "canjs-control" - "canjs-fixture" - "canjs-list" - "canjs-map" - "canjs-model" - "canjs-plugin" - "canjs-routing" - "canjs-view" - "cannon.js" - "cannot-find-symbol" - "canny-operator" - "canon-sdk" - "canonical-form" - "canonical-link" - "canonical-name" - "canonical-quickly" - "canonical-schema" - "canonicalization" - "canoo" - "canopen" - "canopy" - "canopy-web-testing" - "canvas" - "canvas-lms" - "canvas3d" - "canvasengine" - "canvasjs" - "canvg" - "cap" - "cap-theorem" - "capability" - "capacity" - "capacity-planning" - "capedwarf" - "capicom" - "capifony" - "capistrano" - "capistrano3" - "capitalization" - "capitalize" - "capl" - "capped-collections" - "cappuccino" - "capslock" - "capstone" - "captaris" - "captcha" - "caption" - "captions" - "captivenetwork" - "capture" - "capture-group" - "capture-mouse" - "capture-output" - "capturecollection" - "captured-variable" - "capturing-group" - "capybara" - "capybara-webkit" - "car" - "car-analogy" - "carabiner" - "carbide" - "carbon" - "carbon-copy" - "carbon-emacs" - "carchive" - "card-flip" - "card.io" - "carddav" - "cardinality" - "cardio" - "cardlayout" - "cardreader" - "cardscrollview" - "cardslib" - "cardspace" - "careplicatorlayer" - "caret" - "cargo" - "cargo-maven2-plugin" - "carmen" - "caroufredsel" - "carousel" - "carp" - "carplay" - "carray" - "carriage-return" - "carrier" - "carrierwave" - "carries-dependency" - "carrington" - "carrirerwave" - "carrot" - "carrot2" - "carryflag" - "cart" - "cart-analysis" - "cartalyst-sentinel" - "cartalyst-sentry" - "cartaro" - "cartesian" - "cartesian-coordinates" - "cartesian-product" - "cartesian-tree" - "cartodb" - "cartogram" - "cartography" - "cartopy" - "cartridge" - "cartridge-clojure" - "cartthrob" - "cas" - "casablanca" - "casbah" - "cascade" - "cascade-classifier" - "cascade-filtering" - "cascading" - "cascading-deletes" - "cascadingdropdown" - "cascalog" - "case" - "case-class" - "case-conversion" - "case-expression" - "case-folding" - "case-insensitive" - "case-sensitive" - "case-statement" - "case-study" - "case-tools" - "case-when" - "cash" - "cashapelayer" - "casing" - "casing-conventions" - "casperjs" - "caspol" - "cassandra" - "cassandra-0.7" - "cassandra-2.0" - "cassandra-cli" - "cassandra-jdbc" - "cassandra-node-driver" - "cassandra-sharp" - "cassette" - "cassia" - "cassini" - "cassini-dev" - "casting" - "castle" - "castle-activerecord" - "castle-autotx" - "castle-dictionaryadapter" - "castle-dynamicproxy" - "castle-monorail" - "castle-validators" - "castle-windsor" - "castle-windsor-3" - "castor" - "casyncsocket" - "cat" - "cat.net" - "catalina" - "catalina.out" - "catalog" - "catalyst" - "catamorphism" - "catastrophic-failure" - "catch-all" - "catch-block" - "catch-exception" - "catch-unit-test" - "catchoom-sdk" - "categorical-data" - "categories" - "categorization" - "category" - "category-theory" - "catel" - "catextlayer" - "catia" - "catiledlayer" - "catmull-rom-curve" - "catransaction" - "catransform3d" - "catransform3drotate" - "catransformlayer" - "catransition" - "caucho" - "causality" - "cautoptr" - "cayley" - "cbc-mac" - "cbc-mode" - "cbcentralmanager" - "cbind" - "cbir" - "cbitmap" - "cbo" - "cbor" - "cbperipheral" - "cbperipheralmanager" - "cbutton" - "cbuttoncolumn" - "cc" - "cc-mode" - "ccache" - "ccaction" - "ccavenue" - "ccc" - "ccd" - "cci" - "cck" - "ccl" - "cclabelttf" - "cclayer" - "cclayerpanzoom" - "ccmenu" - "ccmenuitem" - "ccnet-config" - "ccnode" - "ccombo" - "ccombobox" - "ccparticlesystem" - "ccr" - "ccrc" - "ccrewrite" - "ccrotateby" - "ccscene" - "ccscrolllayer" - "ccscrollview" - "ccspeed" - "ccsprite" - "ccspritebatchnode" - "cctalk" - "cctexturecache" - "cctray" - "cctv" - "ccuiviewwrapper" - "ccvideoplayer" - "ccw" - "ccxml" - "cd" - "cd-burning" - "cd-drive" - "cd-rom" - "cda" - "cdash" - "cdata" - "cdb" - "cdbhttpsession" - "cdbs" - "cdc" - "cdda" - "cddvd" - "cdecl" - "cdetailview" - "cdf" - "cdi" - "cdialog" - "cdma" - "cdn" - "cdo" - "cdo.message" - "cdonts" - "cdr" - "cdt" - "cedar" - "cedar-bdd" - "cedet" - "cedit" - "cefglue" - "cefpython" - "cefsharp" - "cegui" - "ceiklabel" - "ceil" - "ceiling" - "ceilometer" - "celebrate" - "celementtree" - "celerity" - "celery" - "celery-canvas" - "celery-task" - "celerybeat" - "celeryd" - "celko" - "cell" - "cell-array" - "cell-formatting" - "cellbrowser" - "celleditingtemplate" - "celleditorlistener" - "cellid" - "cellinfo" - "celllist" - "cellpadding" - "cellphone" - "cellrenderer" - "cells" - "cellspacing" - "celltable" - "celltemplate" - "cellular-automata" - "cellular-network" - "celluloid" - "cen-xfs" - "census" - "center" - "center-align" - "centering" - "centos" - "centos5" - "centos6" - "centos6.5" - "centos7" - "centralized" - "centrifuge" - "centrify" - "centroid" - "centura" - "cep" - "ceph" - "cequel" - "cer" - "ceramic-tile-engine" - "cereal" - "certenroll" - "certificate" - "certificate-authority" - "certificate-revocation" - "certificates" - "certificatestore" - "certify" - "certutil" - "cesium" - "cewolf" - "cewp" - "cexception" - "cextension" - "ceylon" - "cf.net" - "cfadmin" - "cfajaxproxy" - "cfarraybsearchvalues" - "cfbitvector" - "cfbundledisplayname" - "cfbundledocumenttypes" - "cfbundleidentifier" - "cfc" - "cfcache" - "cfchart" - "cfclient" - "cfcookie" - "cfdata" - "cfdirectory" - "cfdocument" - "cfdump" - "cfeclipse" - "cfengine" - "cffeed" - "cffi" - "cffile" - "cfform" - "cfftp" - "cffunction" - "cfgrid" - "cfgridcolumn" - "cfhttp" - "cfile" - "cfiledialog" - "cfilefind" - "cfimage" - "cfindex" - "cfinput" - "cfinvoke" - "cflocation" - "cflogin" - "cfloop" - "cfmail" - "cfml" - "cfmutabledictionary" - "cfnetwork" - "cfnetworking" - "cfnumberref" - "cfoutput" - "cfpdf" - "cfpdfform" - "cfpreferences" - "cfquery" - "cfqueryparam" - "cfreadstream" - "cfreport" - "cfront" - "cfrunloop" - "cfsearch" - "cfselect" - "cfsocket" - "cfspreadsheet" - "cfstatic" - "cfstoredproc" - "cfstream" - "cfstring" - "cfthread" - "cftypes" - "cfurl-encoding" - "cfwebsocket" - "cfwheels" - "cfwindow" - "cg" - "cg-language" - "cg-toolkit" - "cgaffinetransform" - "cgaffinetransformscale" - "cgal" - "cgbitmapcontext" - "cgbitmapcontextcreate" - "cgcolor" - "cgcolorspace" - "cgcontext" - "cgcontextdrawimage" - "cgcontextdrawpdfpage" - "cgcontextref" - "cgdb" - "cgeventtap" - "cgfloat" - "cgglyph" - "cgi" - "cgi-application" - "cgi-bin" - "cgi.pm" - "cgiapp" - "cgihttprequesthandler" - "cgihttpserver" - "cgilua" - "cgimage" - "cgimagecreatewithmask" - "cgimagemaskcreate" - "cgimageref" - "cgimagesource" - "cgit" - "cgkeycode" - "cgkit" - "cglayer" - "cglib" - "cgm" - "cgminer" - "cgns" - "cgo" - "cgpath" - "cgpathref" - "cgpdf" - "cgpdfcontext" - "cgpdfdictionaryref" - "cgpdfdocument" - "cgpdfdocumentref" - "cgpdfscanner" - "cgpoint" - "cgrect" - "cgrectintersectsrect" - "cgrectmake" - "cgridview" - "cgroups" - "cgsize" - "ch" - "chaco" - "chai" - "chai-as-promised" - "chain" - "chain-of-responsibility" - "chainability" - "chainable" - "chained" - "chained-payments" - "chained-select" - "chaining" - "chaiscript" - "chakra" - "chalk" - "challenge-response" - "chameleon" - "chameleonpi" - "change-data-capture" - "change-management" - "change-notification" - "change-password" - "change-script" - "change-tracking" - "changed" - "changelist" - "changelistener" - "changelog" - "changes" - "changeset" - "changetype" - "channel" - "channel-api" - "channelfactory" - "channels" - "chaos" - "chap-links-library" - "chapel" - "chaplin" - "chaplinjs" - "char" - "char-array" - "char-pointer" - "char-traits" - "char16-t" - "char32-t" - "character" - "character-arrays" - "character-class" - "character-codes" - "character-encoding" - "character-entities" - "character-limit" - "character-properties" - "character-reference" - "character-replacement" - "character-width" - "charactercount" - "characteristics" - "charat" - "chardet" - "chardev" - "chargify" - "charindex" - "charisma" - "charles" - "charm" - "charmap" - "charms-bar" - "charniak-parser" - "chars" - "charsequence" - "charset-table" - "chart-director" - "chart.js" - "chartbeat" - "chartboost" - "chartfx" - "charting-controls" - "chartjs" - "chartkick" - "chartpanel" - "charts" - "charts.js" - "charts4j" - "chat" - "chatbot" - "chatjs" - "chatroom" - "chdatastructures" - "chdir" - "chdk" - "chdropboxsync" - "cheat-engine" - "check-constraint" - "check-constraints" - "check-digit" - "check-framework" - "check-mk" - "check-unit-testing" - "checkbox" - "checkboxfor" - "checkboxlist" - "checkboxpreference" - "checkboxtree" - "checked" - "checked-exceptions" - "checkeditems" - "checkedlistbox" - "checkedtextview" - "checker-board" - "checker-framework" - "checkin" - "checkin-policy" - "checkinstall" - "checklist" - "checklistbox" - "checkmark" - "checkout" - "checkpoint" - "checkstyle" - "checksum" - "cheerio" - "cheeseshop" - "cheetah" - "chef" - "chef-databox" - "chef-recipe" - "chef-solo" - "chef-template" - "chef-windows" - "chefdk" - "chefspec" - "cheminformatics" - "chemistry" - "cherokee" - "cherry-pick" - "cherrypy" - "cheshire" - "chess" - "chessboard.js" - "cheyenne" - "chgrp" - "chi-squared" - "chibi-scheme" - "chicagoboss" - "chicken-scheme" - "chickenfoot" - "child-actions" - "child-nodes" - "child-objects" - "child-process" - "childactivity" - "childbrowser" - "childcontrol" - "children" - "childviewcontroller" - "childviews" - "childwindow" - "chiliproject" - "chilkat" - "chilkat-email" - "chilkat-xml" - "chinese-locale" - "chinese-remainder-theorem" - "chip" - "chipmunk" - "chipset" - "chirpy" - "chisel" - "chm" - "chmod" - "chocolatechip-ui" - "chocolatey" - "choice" - "choicefield" - "chomp" - "chomsky" - "chomsky-hierarchy" - "chomsky-normal-form" - "chop" - "chord" - "chord-diagram" - "choropleth" - "chown" - "chr" - "chromakey" - "chrome-app-developer-tool" - "chrome-dev-editor" - "chrome-for-android" - "chrome-for-ios" - "chrome-gcm" - "chrome-ios" - "chrome-native-messaging" - "chrome-options" - "chrome-packaged-app" - "chrome-sync" - "chrome-web-driver" - "chrome-web-store" - "chromebook" - "chromebug" - "chromecast" - "chromedriver" - "chromeless" - "chromelogger" - "chromephp" - "chromeview" - "chromium" - "chromium-embedded" - "chromium-os" - "chromium-tabs" - "chron" - "chronic" - "chronicle" - "chrono" - "chronoforms" - "chronometer" - "chronon" - "chroot" - "chruby" - "chuck" - "chud" - "chui" - "chui.js" - "chukwa" - "chunked" - "chunked-encoding" - "chunking" - "chunks" - "chunkypng" - "church" - "church-encoding" - "church-pl" - "churn" - "chutzpah" - "ci-merchant" - "ci-server" - "ci-skip" - "cics" - "cider" - "cidr" - "cielab" - "cielch" - "cieluv" - "cifacefeature" - "cifilter" - "cifs" - "ciimage" - "cil" - "cil-metadata" - "cilk" - "cilk-plus" - "cimbalino" - "cimg" - "cin" - "cinch" - "cinder" - "cinema-4d" - "cinnamon" - "cipango" - "cipher" - "cipixellate" - "circle" - "circle-pack" - "circleci" - "circles" - "circos" - "circuit" - "circuit-breaker" - "circuit-diagram" - "circular" - "circular-buffer" - "circular-content-carousel" - "circular-dependency" - "circular-list" - "circular-permutations" - "circular-reference" - "circular-slider" - "circularreveal" - "circumflex-orm" - "circusd" - "cirrus" - "cisco" - "cisco-axl" - "cisco-ios" - "cisco-jtapi" - "ciscoconfparse" - "citations" - "cite" - "citier" - "citrix" - "citrix-access-gateway" - "citrus-engine" - "citusdb" - "city" - "civicrm" - "cj" - "cjk" - "cjuidialog" - "cjuitabs" - "ckan" - "ckeditor" - "ckeditor.net" - "ckfetchrecordchangesopera" - "ckfinder" - "cknotification" - "ckquery" - "ckreference" - "cksubscription" - "cl" - "cl-ppcre" - "cl-who" - "cl.exe" - "claims" - "claims-based-identity" - "clamp" - "clang" - "clang++" - "clang-complete" - "clang-extensions" - "clang-format" - "clang-memory-sanitizer" - "clang-static-analyzer" - "clarification" - "clarion" - "clarity" - "clarius-visual-t4" - "clash" - "class" - "class-attribute" - "class-attributes" - "class-based-views" - "class-cluster" - "class-completion" - "class-constants" - "class-constructors" - "class-dbi" - "class-design" - "class-designer" - "class-diagram" - "class-eval" - "class-extensions" - "class-factory" - "class-helpers" - "class-hierarchy" - "class-instance-variables" - "class-library" - "class-loading" - "class-members" - "class-method" - "class-methods" - "class-names" - "class-oriented" - "class-reference" - "class-relationship" - "class-structure" - "class-table-inheritance" - "class-template" - "class-variables" - "class-visibility" - "classcastexception" - "classiejs" - "classification" - "classifier" - "classloader" - "classmate" - "classname" - "classnotfound" - "classnotfoundexception" - "classpath" - "classview" - "classwizard" - "classy-prelude" - "clause" - "clay" - "clbeacon" - "clbeaconregion" - "clbuttic" - "clcircleregion" - "clcircularregion" - "clckwrks" - "cldc" - "cldoc" - "clean-language" - "clean-url" - "clean-urls" - "cleaned-data" - "clear" - "clear-cache" - "clearance" - "clearcanvas" - "clearcase" - "clearcase-automation" - "clearcase-remote-client" - "clearcase-ucm" - "cleardb" - "clearfix" - "clearinterval" - "clearquest" - "clearscript" - "clearsilver" - "cleartimeout" - "cleartk" - "cleartool" - "cleartype" - "cleditor" - "cleo" - "clevercss" - "clewn" - "clfs" - "clgeocoder" - "cli" - "clib" - "click" - "click-counting" - "click-framework" - "click-through" - "click-tracking" - "clickable" - "clickable-image" - "clickatell" - "clickbank" - "clickbank-sdk" - "clicked" - "clicking" - "clickjacking" - "clicklistener" - "clickonce" - "clickstream" - "clicktag" - "clicktale" - "clicktoedit" - "client" - "client-applications" - "client-authentication" - "client-certificates" - "client-dataset" - "client-dependency" - "client-library" - "client-object-model" - "client-scripting" - "client-server" - "client-side" - "client-side-attacks" - "client-side-data" - "client-side-scripting" - "client-side-templating" - "client-side-validation" - "client-templates" - "client-validation" - "clientaccesspolicy.xml" - "clientbin" - "clientbundle" - "clientcache" - "clientform" - "clienthttprequest" - "clienthttpstack" - "clientid" - "clientip" - "clientresource" - "clients" - "clientscript" - "clientscriptmanager" - "clientside-caching" - "clientwebsocket" - "cliext" - "clif" - "clim" - "cling" - "clingo" - "clint" - "clion" - "cliopatria" - "clip" - "clipboard" - "clipboard-interaction" - "clipboard-pictures" - "clipboarddata" - "clipboardmanager" - "clipped" - "clipper" - "clipping" - "clippy" - "clips" - "cliptobounds" - "clique" - "clique-problem" - "clish" - "clisp" - "clist" - "clistbox" - "clistctrl" - "clistview" - "clj-kafka" - "clj-pdf" - "clj-schema" - "clj-time" - "cljsbuild" - "cljx" - "cllocation" - "cllocationcoordinate2d" - "cllocationdistance" - "cllocationmanager" - "cloaking" - "clob" - "cloc" - "clock" - "clock-synchronization" - "clockrates" - "clocks" - "clockwork" - "clog" - "clojars" - "clojure" - "clojure-1.3" - "clojure-contrib" - "clojure-core.logic" - "clojure-core.match" - "clojure-core.typed" - "clojure-java-interop" - "clojure-maven-plugin" - "clojure-protocol" - "clojure-repl" - "clojurebox" - "clojureclr" - "clojureql" - "clojurescript" - "clone" - "cloneable" - "clonenode" - "cloning" - "cloo" - "cloog" - "clos" - "close" - "close-application" - "closed-captions" - "closed-source" - "closedir" - "closedxml" - "closesocket" - "closest" - "closest-points" - "clostache" - "closures" - "cloud" - "cloud-code" - "cloud-connect" - "cloud-hosting" - "cloud-init" - "cloud-platform" - "cloud-storage" - "cloud66" - "cloud9-ide" - "cloudamqp" - "cloudant" - "cloudbees" - "cloudberry" - "cloudcontrol" - "clouddb" - "cloudera" - "cloudera-cdh" - "cloudera-manager" - "cloudera-sentry" - "cloudfiles" - "cloudflare" - "cloudfoundry" - "cloudfoundry-uaa" - "cloudfx" - "cloudhub" - "cloudify" - "cloudinary" - "cloudkit" - "cloudmade" - "cloudmailin" - "cloudpebble" - "cloudsim" - "cloudwatch" - "clout" - "clover" - "cloveretl" - "clp" - "clpb" - "clpfd" - "clplacemark" - "clpplus" - "clpq" - "clpr" - "clr" - "clr-hosting" - "clr-integration" - "clr-module-initializer" - "clr4.0" - "clrdump" - "clregion" - "clrmd" - "clrpackage" - "clrprofiler" - "clrs" - "clrstoredprocedure" - "cls" - "cls-compliant" - "clsid" - "clsidfromprogid" - "clsql" - "clucene" - "cluestick" - "cluetip" - "clustal" - "clustalx" - "cluster-analysis" - "cluster-computing" - "clustered-index" - "cluto" - "clutter" - "clutter-gui" - "clx" - "cm-synergy" - "cmake" - "cmake-gui" - "cmaltimeter" - "cmath" - "cmattitude" - "cmd" - "cmd-script" - "cmd.exe" - "cmdb" - "cmder" - "cmdlet" - "cmdlets" - "cmenu" - "cmfcbutton" - "cmfcmaskededit" - "cmfcribbonpanel" - "cmfctoolbar" - "cmis" - "cmis-workbench" - "cmmi" - "cmmotionmanager" - "cmock" - "cmockery" - "cmp" - "cms-migration" - "cmsamplebuffer" - "cmsamplebufferref" - "cmsis" - "cmsmadesimple" - "cmtime" - "cmtimemake" - "cmultifileupload" - "cmusphinx" - "cmyk" - "cname" - "cnc" - "cnf" - "cng" - "cnode" - "co" - "co-mysql" - "co-prime" - "coalesce" - "coalescing" - "coap" - "cobertura" - "cobol" - "cobol.net" - "cobol85" - "cobra" - "cobub-razor" - "coccinelle" - "cocktail.js" - "coclass" - "coco" - "coco2d-x" - "cocoa" - "cocoa-bindings" - "cocoa-design-patterns" - "cocoa-sheet" - "cocoa-spdy" - "cocoa-touch" - "cocoaasyncsocket" - "cocoahttpserver" - "cocoalibspotify-2.0" - "cocoalumberjack" - "cocoanetics" - "cocoapods" - "cocoon" - "cocoon-gem" - "cocoonjs" - "cocor" - "cocos2d" - "cocos2d-android" - "cocos2d-extensions-ios" - "cocos2d-html5" - "cocos2d-iphone" - "cocos2d-iphone-2.x" - "cocos2d-iphone-3" - "cocos2d-js" - "cocos2d-python" - "cocos2d-swift" - "cocos2d-x" - "cocos2d-x-2.x" - "cocos2d-x-3.0" - "cocos2d-x-for-xna" - "cocos3d" - "cocosbuilder" - "cocostudio" - "cocotron" - "cod" - "coda" - "coda-slider" - "codahale-metrics" - "codan" - "codaset" - "codata" - "code-access-security" - "code-analysis" - "code-analyst" - "code-assist" - "code-auditing" - "code-beautification" - "code-beautifier" - "code-behind" - "code-bubbles" - "code-by-voice" - "code-caching" - "code-camp" - "code-cleanup" - "code-climate" - "code-collaborator" - "code-comments" - "code-complete" - "code-completion" - "code-complexity" - "code-composer" - "code-contracts" - "code-conventions" - "code-conversion" - "code-converter" - "code-coverage" - "code-design" - "code-discovery" - "code-documentation" - "code-duplication" - "code-editor" - "code-efficiency" - "code-elimination" - "code-execution" - "code-first" - "code-first-migrations" - "code-folding" - "code-formatter" - "code-formatting" - "code-freeze" - "code-generation" - "code-golf" - "code-hinting" - "code-injection" - "code-inspection" - "code-intelligence" - "code-kata" - "code-layout" - "code-loading" - "code-maintainability" - "code-management" - "code-map" - "code-metrics" - "code-migration" - "code-navigation" - "code-organization" - "code-ownership" - "code-patching" - "code-protection" - "code-quality" - "code-readability" - "code-regions" - "code-reuse" - "code-review" - "code-search" - "code-search-engine" - "code-security" - "code-separation" - "code-sharing" - "code-signing" - "code-signing-certificate" - "code-signing-entitlements" - "code-size" - "code-smell" - "code-snippets" - "code-standards" - "code-statistics" - "code-structure" - "code-swarm" - "code-templates" - "code-testing" - "code-timing" - "code-translation" - "code-view" - "code-visualization" - "code-walkthrough" - "code128" - "code39" - "codea" - "codebase" - "codebeside" - "codeblocks" - "codec" - "codecampserver" - "codecave" - "codeception" - "codecharge" - "codechef" - "codecompare" - "codecompileunit" - "codecvt" - "coded-ui-tests" - "codedom" - "codefluent" - "codeforces" - "codegen" - "codeguard" - "codehighlighter" - "codeigniter" - "codeigniter-2" - "codeigniter-3" - "codeigniter-a3m" - "codeigniter-activerecord" - "codeigniter-classloader" - "codeigniter-datamapper" - "codeigniter-form-helper" - "codeigniter-helpers" - "codeigniter-hmvc" - "codeigniter-hooks" - "codeigniter-restserver" - "codeigniter-routing" - "codeigniter-upload" - "codeigniter-url" - "codeigniter-validation" - "codekit" - "codelens" - "codelite" - "codemirror" - "codemirror-modes" - "codenameone" - "codenarc" - "codenvy" - "codepad" - "codepages" - "codeplex" - "codepoint" - "codepro" - "coderay" - "coderef" - "codernity" - "coderunner" - "coderush" - "coderush-xpress" - "codesense" - "codeship" - "codesign" - "codesignkey" - "codesite" - "codeskulptor" - "codesmith" - "codesniffer" - "codesourcery" - "codesynthesis" - "codesys" - "codetyphon" - "codeviz" - "codewarrior" - "codeworld" - "codex" - "codi" - "coding-dojo" - "coding-efficiency" - "coding-style" - "codingbat" - "codio" - "codiqa" - "coefficients" - "coerce" - "coercion" - "coexistence" - "coff" - "coffeekup" - "coffeescript" - "coffeescript-resources" - "coffin" - "cofundos" - "cogl" - "cognos" - "cognos-10" - "cognos-8" - "cognos-bi" - "cognos-determinants" - "cognos-event-studio" - "cognos-tm1" - "coherence-toolkit" - "cohesion" - "coin-change" - "coin-flipping" - "coin-or-cbc" - "coin3d" - "coinbase" - "coinbase-php" - "coinduction" - "col" - "colander" - "colanderalchemy" - "cold-start" - "coldbox" - "coldfire" - "coldfusion" - "coldfusion-10" - "coldfusion-11" - "coldfusion-6" - "coldfusion-7" - "coldfusion-8" - "coldfusion-9" - "coldfusion-administrator" - "coldfusion-mx" - "coldfusionbuilder" - "coldspring" - "coledatetime" - "colemak" - "colgroup" - "collabnet" - "collaboration" - "collaboration-diagram" - "collaborative" - "collaborative-editing" - "collaborative-filtering" - "collada" - "collapsable" - "collapse" - "collapsiblepanelextender" - "collate" - "collation" - "collatz" - "collect" - "collectctl" - "collectd" - "collection-initializer" - "collection-json" - "collection-select" - "collectionbase" - "collectioneditor" - "collections" - "collectionview" - "collectionviewsource" - "collective-intelligence" - "collective.opengraph" - "collectors" - "collectstatic" - "collision" - "collision-detection" - "collisions" - "collocation" - "colocation" - "colon" - "colon-syntax" - "color-blending" - "color-blindness" - "color-channel" - "color-codes" - "color-coding" - "color-depth" - "color-key" - "color-management" - "color-mapping" - "color-palette" - "color-picker" - "color-profile" - "color-scheme" - "color-space" - "color-theory" - "color-tracking" - "color-wheel" - "colorama" - "coloranimation" - "colorbar" - "colorbox" - "colorbrewer" - "colordialog" - "colordrawable" - "colorfilter" - "colorize" - "colormap" - "colormatrix" - "colormatrixfilter" - "colors" - "colortransform" - "colt" - "column-aggregation" - "column-alias" - "column-chooser" - "column-count" - "column-defaults" - "column-family" - "column-oriented" - "column-sizing" - "column-store-index" - "column-sum" - "column-types" - "column-width" - "columnattribute" - "columnheader" - "columnize" - "columnmappings" - "columnname" - "columnsorting" - "columnspan" - "com" - "com+" - "com-automation" - "com-callable-wrapper" - "com-hell" - "com-interface" - "com-interop" - "com-object" - "com-server" - "com.sun.net.httpserver" - "com0com" - "com4j" - "comaddin" - "comadmin" - "comautomationfactory" - "comb.js" - "combinations" - "combinatorics" - "combinators" - "combinatory-logic" - "combinedresourcehandler" - "combiners" - "combining-marks" - "combn" - "combobox" - "comboboxes" - "comboboxmodel" - "combox" - "combres" - "comclass" - "comctl32" - "comdat-folding" - "comdlg32" - "comeau" - "comefrom" - "comet" - "cometd" - "cometd.net" - "cometserver" - "comexception" - "comfortable-mexican-sofa" - "comint-mode" - "comm" - "comma" - "comma-operator" - "command" - "command-behaviors" - "command-execution" - "command-line" - "command-line-arguments" - "command-line-interface" - "command-line-parser" - "command-line-parsing" - "command-line-tool" - "command-objects" - "command-pattern" - "command-prompt" - "command-query-separation" - "command-substitution" - "command-timeout" - "command-window" - "commandargument" - "commandbar" - "commandbinding" - "commandbutton" - "commandfield" - "commandlink" - "commandparameter" - "commarea" - "comment-conventions" - "commenting" - "comments" - "commerce" - "commerceserver" - "commerceserver2007" - "commercial" - "commercial-application" - "commission-junction" - "commit" - "commit-message" - "commitanimations" - "commodity" - "commodore" - "common" - "common-access-card" - "common-code" - "common-controls" - "common-crawl" - "common-dialog" - "common-files" - "common-library" - "common-lisp" - "common-service-locator" - "common-table-expression" - "common-tasks" - "common-test" - "common.logging" - "commoncrypto" - "commondomain" - "commonj" - "commonjs" - "commonspot" - "commonsware" - "commonsware-cwac" - "communicate" - "communication" - "communication-diagram" - "communication-protocol" - "communicationexception" - "communicator" - "community-server" - "community-translations" - "communityengine" - "commutativity" - "comobject" - "comonad" - "comp-3" - "compact-database" - "compact-font-format" - "compact-framework" - "compact-framework2.0" - "compact-policy" - "companion-object" - "compaq-visual-fortran" - "comparable" - "comparator" - "compare" - "compare-and-swap" - "compare-attribute" - "compare-contrast" - "compareobject" - "compareto" - "comparevalidator" - "comparison" - "comparison-operators" - "comparisonchain" - "compass" - "compass-geolocation" - "compass-lucene" - "compass-rails" - "compass-sass" - "compatibility" - "compatibility-level" - "compatibility-mode" - "compc" - "compgen" - "compilation" - "compilation-time" - "compilationmode" - "compilationunit" - "compile-mode" - "compile-static" - "compile-time" - "compile-time-constant" - "compile-time-weaving" - "compileassemblyfromsource" - "compiled" - "compiled-language" - "compiled-query" - "compiledkernel" - "compiler-architecture" - "compiler-as-a-service" - "compiler-bug" - "compiler-compiler" - "compiler-constants" - "compiler-construction" - "compiler-design" - "compiler-development" - "compiler-directives" - "compiler-errors" - "compiler-flags" - "compiler-generated" - "compiler-optimization" - "compiler-options" - "compiler-services" - "compiler-specific" - "compiler-theory" - "compiler-version" - "compiler-warnings" - "compiz" - "complement" - "complete" - "complete.ly" - "completion" - "completion-block" - "completion-service" - "completionhandler" - "complex-data-types" - "complex-event-processing" - "complex-networks" - "complex-numbers" - "complexity-theory" - "complextype" - "compliance" - "compliant" - "compojure" - "component-based" - "component-design" - "component-diagram" - "component-pascal" - "component-query" - "component-scan" - "component-services" - "component-space" - "component.io" - "componentart" - "componentlistener" - "componentmodel" - "componentone" - "componentresourcekey" - "components" - "compose" - "composer-php" - "composite" - "composite-application" - "composite-application-gu" - "composite-c1" - "composite-component" - "composite-controls" - "composite-id" - "composite-index" - "composite-key" - "composite-pattern" - "composite-primary-key" - "composite-templates" - "compositecollection" - "compositetype" - "compositeusertype" - "compositing" - "composition" - "compositionroot" - "compound-assignment" - "compound-drawables" - "compound-file" - "compound-index" - "compound-key" - "compound-literals" - "compound-operator" - "compound-type" - "compoundjs" - "comprehensive-list" - "compress" - "compressed" - "compressed-folder" - "compression" - "compressor" - "computability" - "computation" - "computation-expression" - "computation-theory" - "computational-finance" - "computational-geometry" - "computational-linguistics" - "compute-capability" - "compute-shader" - "computed-columns" - "computed-field" - "computed-observable" - "computed-properties" - "computed-style" - "computed-values" - "computer-algebra-systems" - "computer-architecture" - "computer-forensics" - "computer-name" - "computer-science" - "computer-science-theory" - "computer-vision" - "computercraft" - "computus" - "comtypes" - "comvisible" - "concat" - "concat-ws" - "concatenation" - "concatenative-language" - "concatmap" - "concave" - "concave-hull" - "concept" - "concept-analysis" - "conceptnet" - "conceptual" - "conceptual-model" - "concordion" - "concrete" - "concrete-inheritance" - "concrete-syntax-tree" - "concrete5" - "concreteclass" - "concrt" - "concurrency" - "concurrency-runtime" - "concurrency-violation" - "concurrent-collections" - "concurrent-mark-sweep" - "concurrent-processing" - "concurrent-programming" - "concurrent-queue" - "concurrent-vector" - "concurrent.futures" - "concurrentdictionary" - "concurrenthashmap" - "concurrentmodification" - "concurrentskiplistmap" - "conda" - "condition" - "condition-system" - "condition-variable" - "conditional" - "conditional-attribute" - "conditional-binding" - "conditional-breakpoint" - "conditional-comments" - "conditional-compilation" - "conditional-execution" - "conditional-expressions" - "conditional-formatting" - "conditional-operator" - "conditional-statements" - "conditionals" - "conditionaltagsupport" - "condor" - "conduit" - "conemu" - "conf.d" - "conference" - "conferences" - "conferencing" - "confidence-interval" - "confidential" - "confidential-information" - "confidentiality" - "config" - "config-designer-csd" - "config-files" - "config-spec" - "config-transformation" - "config.h" - "config.json" - "configatron" - "configgen" - "configobj" - "configparser" - "configsection" - "configsource" - "configurability" - "configurable" - "configurable-product" - "configuration" - "configuration-files" - "configuration-management" - "configuration-profile" - "configurationelement" - "configurationmanager" - "configurationproperty" - "configurationsection" - "configure" - "configure.in" - "confirm" - "confirmation" - "confirmation-email" - "confirmbutton" - "confirmbuttonextender" - "conflict" - "conflicting-libraries" - "confluence" - "confluence-rest-api" - "conform" - "confusion-matrix" - "congestion-control" - "congomongo" - "conio" - "conjunctive-normal-form" - "conkeror" - "conky" - "connect" - "connect-assets" - "connect-by" - "connect-flash" - "connect-modrewrite" - "connect-mongo" - "connect.js" - "connected-components" - "connected-standby" - "connectexception" - "connection" - "connection-close" - "connection-leaks" - "connection-manager" - "connection-points" - "connection-pooling" - "connection-refused" - "connection-reset" - "connection-string" - "connection-timeout" - "connectionexception" - "connectionkit" - "connections" - "connectiq" - "connectivity" - "connector" - "connector-j" - "connector-net" - "connman" - "conqat" - "cons" - "consensus" - "conservation-laws" - "considerations" - "consistency" - "consistent-hashing" - "consolas" - "console" - "console-application" - "console-history" - "console-input" - "console-output" - "console-redirect" - "console-scraping" - "console.log" - "console.out.writeline" - "console.readkey" - "console.readline" - "console.setout" - "console.writeline" - "console2" - "consoleappender" - "consolidation" - "const" - "const-cast" - "const-char" - "const-correctness" - "const-iterator" - "const-method" - "const-pointer" - "const-reference" - "const-string" - "constant-expression" - "constant-initializer" - "constant-memory" - "constantcontact" - "constantfolding" - "constants" - "constexpr" - "constraint-kinds" - "constraint-programming" - "constraint-satisfaction" - "constraintexception" - "constraints" - "construct" - "construct-2" - "construction" - "constructor" - "constructor-chaining" - "constructor-exception" - "constructor-injection" - "constructor-overloading" - "constructor-reference" - "constructorargument" - "consul" - "consumer" - "consuming" - "consumption" - "contact" - "contact-form" - "contact-form-7" - "contact-list" - "contactgroups" - "contactitem" - "contactless-smartcard" - "contactpicker" - "contacts" - "contactscontract" - "contactus" - "contain" - "containable" - "container-classes" - "container-file" - "container-managed" - "container-view" - "containers" - "containment" - "contains" - "containskey" - "containstable" - "contao" - "content-adaptation" - "content-assist" - "content-based-retrieval" - "content-delivery-network" - "content-disposition" - "content-drafts" - "content-editor" - "content-encoding" - "content-experiments" - "content-expiration" - "content-for" - "content-indexing" - "content-length" - "content-management" - "content-management-system" - "content-model" - "content-negotiation" - "content-pages" - "content-pipeline" - "content-porter-2009" - "content-query-rollup" - "content-query-web-part" - "content-repository" - "content-script" - "content-security-policy" - "content-styling" - "content-tag" - "content-type" - "contentcontrol" - "contenteditable" - "contentflow" - "contention" - "contentmode" - "contentobserver" - "contentoffset" - "contentpane" - "contentplaceholder" - "contentpresenter" - "contentproperty" - "contentrules" - "contentsize" - "contenttemplate" - "contenttemplateselector" - "contenttype" - "contenttypes" - "context" - "context-bound" - "context-free-grammar" - "context-free-language" - "context-info" - "context-param" - "context-sensitive-grammar" - "context-sensitive-help" - "context-specification" - "context-switch" - "context-switching" - "context.xml" - "contextclassloader" - "contextify" - "contextio" - "contextmanager" - "contextmenu" - "contextmenustrip" - "contextpath" - "contextroot" - "contextswitchdeadlock" - "contextual-action-bar" - "contextual-binding" - "contiguous" - "contiki" - "contingency" - "continuation" - "continuation-passing" - "continuations" - "continue" - "continued-fractions" - "continuity" - "continuous" - "continuous-delivery" - "continuous-deployment" - "continuous-forms" - "continuous-fourier" - "continuous-integration" - "continuous-testing" - "continuum" - "contivo" - "contour" - "contourf" - "contract" - "contract-first" - "contracts" - "contrast" - "contravariance" - "contribute" - "control" - "control-adapter" - "control-array" - "control-c" - "control-center" - "control-characters" - "control-flow" - "control-flow-graph" - "control-language" - "control-library" - "control-m" - "control-p5" - "control-panel" - "control-state" - "control-structure" - "control-structures" - "control-template" - "control-templates" - "control-theory" - "controlbox" - "controlcollection" - "controlfile" - "controlfx" - "controller" - "controller-action" - "controller-actions" - "controller-factory" - "controlleractioninvoker" - "controllercontext" - "controllers" - "controlling" - "controlpanel" - "controlparameter" - "controls" - "controlsfx" - "controltemplate" - "controltemplates" - "convenience-methods" - "convention" - "convention-over-configur" - "conventions" - "convergence" - "conversation-scope" - "converse.js" - "conversion-function" - "conversion-operator" - "conversion-tracking" - "conversion-wizard" - "convert-tz" - "convertall" - "convertapi" - "converter" - "converters" - "convertview" - "convex" - "convex-hull" - "convex-optimization" - "convex-polygon" - "convexity-defects" - "convolution" - "convoy" - "conways-game-of-life" - "coocox" - "cookbook" - "cookie-httponly" - "cookie-path" - "cookiecontainer" - "cookiejar" - "cookieless" - "cookielib" - "cookiemanager" - "cookies" - "cookiestore" - "cool-kitten" - "cooliris" - "coolite" - "coolstorage" - "coordinate" - "coordinate-systems" - "coordinate-transformation" - "coordinates" - "coords" - "coovachilli" - "cop" - "copilot" - "copperlicht" - "coproc" - "copssh" - "copy" - "copy-and-swap" - "copy-assignment" - "copy-constructor" - "copy-elision" - "copy-initialization" - "copy-item" - "copy-local" - "copy-mode" - "copy-on-write" - "copy-paste" - "copy-protection" - "copy.com" - "copybook" - "copycopter" - "copyfile" - "copying" - "copyleft" - "copymemory" - "copyonwritearraylist" - "copyright" - "copyright-display" - "copytree" - "copywithzone" - "coq" - "coqide" - "corba" - "cordic" - "cordova" - "cordova-2.0.0" - "cordova-2.7.0" - "cordova-3" - "cordova-3.5" - "cordova-4" - "cordova-chrome-app" - "cordova-facebook" - "cordova-plugins" - "cordovawebview" - "cordys-opentext" - "core" - "core-animation" - "core-api" - "core-audio" - "core-banking" - "core-bluetooth" - "core-data" - "core-data-migration" - "core-elements" - "core-file" - "core-foundation" - "core-graphics" - "core-image" - "core-location" - "core-media" - "core-motion" - "core-network" - "core-plot" - "core-services" - "core-telephony" - "core-text" - "core-video" - "core.async" - "core.autocrlf" - "core.match" - "corecon" - "corecrypto" - "corecursion" - "coredump" - "coreerlang" - "coreldraw" - "coremidi" - "coreos" - "corewlan" - "corflags" - "cornerradius" - "corners" - "cornerstone" - "corona" - "corona-director" - "corona-storyboard" - "coronasdk" - "coroutine" - "corporate" - "corporate-policy" - "corpus" - "correctness" - "correlated" - "correlated-subquery" - "correlation" - "correspondence" - "correspondence-analysis" - "corresponding-records" - "corrupt" - "corrupt-data" - "corrupted-state-exception" - "corruption" - "cors" - "cortado" - "cortana" - "cortex-a" - "cortex-a8" - "cortex-m" - "cortex-m0+" - "cortex-m3" - "cos" - "cosign-api" - "cosine" - "cosine-similarity" - "cosm" - "cosmos" - "cost-based-optimizer" - "cost-data-upload" - "cost-management" - "cots" - "couch-cms" - "couchapp" - "couchbase" - "couchbase-lite" - "couchbase-sync-gateway" - "couchbase-view" - "couchcocoa" - "couchdb" - "couchdb-futon" - "couchdb-lite" - "couchdb-lucene" - "couchdb-python" - "couchdbkit" - "couchdbx" - "couchnode" - "couchone" - "couchpotato" - "couchrest" - "count" - "countable" - "countdown" - "countdownevent" - "countdownlatch" - "countdowntimer" - "countelements" - "counter" - "counter-cache" - "counterclockwise" - "counters" - "countif" - "counting" - "counting-sort" - "countlinesofcode" - "countly-analytics" - "countries" - "country" - "country-codes" - "coupling" - "coupon" - "coursera-api" - "cout" - "covariance" - "covariant" - "covariogram" - "cover" - "coverage.py" - "coveralls" - "coverflow" - "covering-index" - "coverity" - "coverity-prevent" - "coverstory" - "cowboy" - "cox-regression" - "coypu" - "cp" - "cp1250" - "cp1251" - "cp1252" - "cp866" - "cpack" - "cpan" - "cpanel" - "cpanm" - "cpd" - "cperl-mode" - "cpickle" - "cpio" - "cpl" - "cplex" - "cpm" - "cpp-netlib" - "cppcheck" - "cppcms" - "cppdepend" - "cppiechart" - "cpplint" - "cppsqlite" - "cppunit" - "cpputest" - "cprofile" - "cpropertysheet" - "cptbarplot" - "cptimage" - "cpu" - "cpu-architecture" - "cpu-cache" - "cpu-cores" - "cpu-cycles" - "cpu-load" - "cpu-registers" - "cpu-speed" - "cpu-time" - "cpu-usage" - "cpuid" - "cpython" - "cq5" - "cqengine" - "cql" - "cql3" - "cqlengine" - "cqlinq" - "cqlsh" - "cqrs" - "cqs" - "cqwp" - "cracker" - "cracking" - "cradle" - "craftyjs" - "craigslist" - "cramp" - "cran" - "crash" - "crash-dumps" - "crash-log" - "crash-recovery" - "crash-reports" - "crashlytics" - "crashrpt" - "crate" - "crawl" - "crawler" - "crawler4j" - "crawling" - "cray" - "crc" - "crc-cards" - "crc16" - "crc32" - "crc64" - "crdt" - "create-directory" - "create-function" - "create-guid" - "create-table" - "create-view" - "createchildcontrols" - "createcriteria" - "createdesktop" - "createdibsection" - "createelement" - "createfile" - "createfolder" - "createinstance" - "createitem" - "createjs" - "createobject" - "createoleobject" - "createparams" - "createprocess" - "createprocessasuser" - "createquery" - "createremotethread" - "createsend" - "createtextnode" - "createthread" - "createuser" - "createuserwizard" - "createwindow" - "createwindowex" - "creation" - "creation-pattern" - "creative-cloud" - "creative-commons" - "credential-manager" - "credential-providers" - "credentials" - "credentialscache" - "credible-interval" - "crediscache" - "credit-card" - "credit-card-track-data" - "credits" - "credssp" - "credui" - "creole" - "crf" - "crf++" - "crichedit" - "cricheditctrl" - "criteria" - "criteria-api" - "criteriaquery" - "criterion" - "critical-section" - "crittercism" - "crm" - "crm-developer-toolkit" - "crmsvcutil" - "crockford" - "crocodoc" - "cromagversion" - "cron" - "cron-task" - "cron4j" - "cronexpression" - "crontab" - "crontrigger" - "croogo" - "crop" - "cropfield" - "cropimage.net" - "cross-application" - "cross-apply" - "cross-browser" - "cross-cast" - "cross-compile" - "cross-compiling" - "cross-context" - "cross-controller-redirect" - "cross-correlation" - "cross-cutting-concerns" - "cross-database" - "cross-device" - "cross-domain" - "cross-domain-policy" - "cross-domain-proxy" - "cross-fade" - "cross-join" - "cross-kylix" - "cross-language" - "cross-page-postback" - "cross-page-posting" - "cross-platform" - "cross-posting" - "cross-process" - "cross-product" - "cross-reference" - "cross-server" - "cross-site" - "cross-threading" - "cross-validation" - "cross-window-scripting" - "crossbar" - "crossdomain-request.js" - "crossdomain.xml" - "crossfilter" - "crossrider" - "crossroads-io" - "crossroadsjs" - "crosstab" - "crosstool-ng" - "crosswalk-runtime" - "crossword" - "crouton" - "crouton-os" - "crowd" - "crowdflower" - "crowdsourcing" - "crt" - "crtdbg.h" - "crtp" - "crud" - "cruise" - "cruise-release-management" - "cruisecontrol" - "cruisecontrol.net" - "cruisecontrol.rb" - "crx" - "cryengine" - "crypt" - "cryptanalysis" - "cryptarithmetic-puzzle" - "cryptico" - "cryptlib" - "crypto++" - "cryptoapi" - "cryptographicexception" - "cryptographichashfunction" - "cryptography" - "cryptojs" - "cryptolicensing" - "cryptostream" - "cryptprotectdata" - "cryptsharp" - "crysis" - "crystal-reports" - "crystal-reports-10" - "crystal-reports-12" - "crystal-reports-2005" - "crystal-reports-2008" - "crystal-reports-2010" - "crystal-reports-2011" - "crystal-reports-7" - "crystal-reports-8.5" - "crystal-reports-9" - "crystal-reports-export" - "crystal-reports-server" - "crystal-reports-viewer" - "crystal-reports-xi" - "crystal-space-3d" - "cs-cart" - "cs-script" - "cs193p" - "cs3" - "cs4" - "cs5" - "csb" - "csc" - "cscfg" - "cscope" - "cscore" - "cscript" - "csdl" - "csg" - "csh" - "csharpcodeprovider" - "csharpoptparse" - "cshrc" - "csip-simple" - "csla" - "csom" - "cson" - "csound" - "csp" - "cspack" - "csplit" - "csplitterwnd" - "csproj" - "csqldataprovider" - "csquery" - "csr" - "csrf" - "csrf-protection" - "csrss" - "css" - "css-animations" - "css-border-image" - "css-border-radius" - "css-box-model" - "css-box-shadow" - "css-combinators" - "css-content" - "css-editor" - "css-expressions" - "css-filters" - "css-float" - "css-frameworks" - "css-friendly" - "css-gcpm" - "css-grids" - "css-hack" - "css-keyframes" - "css-line-height" - "css-menu" - "css-overflow" - "css-paged-media" - "css-parsing" - "css-position" - "css-rem" - "css-reset" - "css-selectors" - "css-shapes" - "css-specificity" - "css-speech" - "css-sprites" - "css-tables" - "css-text-overflow" - "css-text-shadow" - "css-to-pdf" - "css-transforms" - "css-transitions" - "css-validator" - "css-variables" - "css3" - "css3pie" - "cssadapter" - "cssedit" - "csslint" - "csso" - "cssom" - "cssresource" - "csstidy" - "cstdint" - "cstdio" - "cstring" - "cstringio" - "csv" - "csv-import" - "csvde" - "csvhelper" - "csvjdbc" - "csvtools" - "csx" - "ctabctrl" - "ctabitem" - "ctags" - "ctest" - "ctfe" - "ctfont" - "ctfontref" - "ctframe" - "ctime" - "ctl" - "ctlineref" - "ctools" - "ctor-initializer" - "ctp" - "ctp4" - "ctrl" - "ctrlp" - "cts" - "cts-search" - "ctype" - "ctypes" - "cu" - "cua" - "cua-mode" - "cub" - "cuba" - "cube" - "cubefunctions" - "cubes" - "cubesat-protocol" - "cubic" - "cubic-spline" - "cubism.js" - "cublas" - "cubrid" - "cucm" - "cucumber" - "cucumber-cpp" - "cucumber-junit" - "cucumber-jvm" - "cucumberjs" - "cuda" - "cuda-driver-api" - "cuda-gdb" - "cuda-sass" - "cuda-streams" - "cuda.net" - "cudafy.net" - "cudd" - "cudpp" - "cue" - "cufft" - "cufon" - "cujojs" - "cuke4duke" - "cula" - "culerity" - "culling" - "culture" - "cultureinfo" - "cumsum" - "cumulative-frequency" - "cumulative-max" - "cumulative-sum" - "cumulus" - "cunit" - "cup" - "cups" - "cups4j" - "curator" - "curb" - "curl" - "curl-commandline" - "curl-language" - "curl-multi" - "curl.js" - "curljs" - "curlpp" - "curly-braces" - "curly-brackets" - "currency" - "currency-exchange-rates" - "currency-formatting" - "currencymanager" - "current-dir" - "current-page" - "current-principal" - "current-working-directory" - "currentculture" - "currentitem" - "currentlocation" - "currentuiculture" - "curry" - "curry-howard" - "currying" - "curses" - "cursive-clojure" - "cursor" - "cursor-position" - "cursor.current" - "cursors" - "curve" - "curve-25519" - "curve-fitting" - "curve25519.js" - "curves" - "curvesmoothing" - "curvezmq" - "curvycorners" - "cusp" - "cusp-library" - "custom-action" - "custom-action-filter" - "custom-activity" - "custom-adapter" - "custom-application" - "custom-attribute" - "custom-attributes" - "custom-authentication" - "custom-backend" - "custom-binding" - "custom-build" - "custom-build-step" - "custom-cell" - "custom-code" - "custom-collection" - "custom-compare" - "custom-component" - "custom-configuration" - "custom-contextmenu" - "custom-controls" - "custom-cursor" - "custom-data-attribute" - "custom-data-type" - "custom-datetimepicker" - "custom-draw" - "custom-element" - "custom-error-handling" - "custom-error-pages" - "custom-errors" - "custom-event" - "custom-eventlog" - "custom-events" - "custom-exceptions" - "custom-field-type" - "custom-fields" - "custom-font" - "custom-formatting" - "custom-headers" - "custom-keyboard" - "custom-keyword" - "custom-linq-providers" - "custom-lists" - "custom-membershipprovider" - "custom-model-binder" - "custom-object" - "custom-operator" - "custom-overlay" - "custom-pages" - "custom-paging" - "custom-painting" - "custom-panel" - "custom-pipeline-component" - "custom-post-type" - "custom-properties" - "custom-protocol" - "custom-receiver" - "custom-renderer" - "custom-routes" - "custom-scrolling" - "custom-search-provider" - "custom-sections" - "custom-selectors" - "custom-server-controls" - "custom-stories" - "custom-tag" - "custom-tags" - "custom-taxonomy" - "custom-titlebar" - "custom-tools" - "custom-transition" - "custom-type" - "custom-url" - "custom-validators" - "custom-view" - "custom-widgets" - "custom-wordpress-pages" - "customcolumn" - "customdialog" - "customdraw" - "customer-account-data" - "customer-account-data-api" - "customer-support" - "customising" - "customization" - "customizing" - "custompaging" - "customplaces" - "customproperty" - "customtags" - "customtaskpane" - "customtool" - "customtypedescriptor" - "customvalidator" - "cut" - "cut-and-paste" - "cuteeditor" - "cutepdf" - "cutycapt" - "cv" - "cvblobslib" - "cvc4" - "cvcs" - "cvd" - "cve-2014-9390" - "cvi" - "cview" - "cvs" - "cvs2git" - "cvs2svn" - "cvsimport" - "cvsnt" - "cvv8" - "cvx" - "cvxopt" - "cwac-camera" - "cwac-endless" - "cwac-touchlist" - "cwd" - "cwnd" - "cwrsync" - "cx-freeze" - "cx-oracle" - "cxf" - "cxf-client" - "cxf-codegen-plugin" - "cxf-xjc-plugin" - "cxfrs" - "cxml" - "cxxtest" - "cyanogenmod" - "cyber-ark" - "cyberduck" - "cyberneko" - "cybernetics" - "cycle" - "cycle-detection" - "cycle-plugin" - "cyclic" - "cyclic-dependency" - "cyclic-graph" - "cyclic-reference" - "cyclicbarrier" - "cyclomatic-complexity" - "cyclone" - "cycript" - "cydia" - "cydia-substrate" - "cygpath" - "cygwin" - "cyk" - "cylindrical" - "cypher" - "cyrillic" - "cyrus" - "cython" - "cytoscape" - "cytoscape-web" - "cytoscape.js" - "d" - "d-pad" - "d-pointer" - "d-star" - "d1" - "d2" - "d2rq" - "d2xx" - "d3.geo" - "d3.js" - "d3dimage" - "d3dx" - "d3plus" - "d3py" - "daab" - "daap" - "dabo" - "dac" - "dacapo" - "dache" - "dacircularprogressview" - "dacl" - "dacpac" - "daemon" - "daemons" - "dafny" - "daft" - "dagger" - "dagre" - "dagre-d3" - "dailybuilds" - "dailymotion-api" - "dajax" - "dajaxice" - "dalekjs" - "dali" - "dalli" - "dalvik" - "dam" - "damage-control" - "dancer" - "dane" - "dangerous-request" - "dangling" - "dangling-pointer" - "dao" - "dapper" - "dapper-extensions" - "dapper-lite" - "dapper-rainbow" - "daq-mx" - "darcs" - "dark" - "darken" - "dart" - "dart-async" - "dart-communications" - "dart-eclipse-plugin" - "dart-editor" - "dart-force-mvc" - "dart-html" - "dart-http" - "dart-io" - "dart-isolates" - "dart-js-interop" - "dart-mirrors" - "dart-mock" - "dart-native-extension" - "dart-polymer" - "dart-pub" - "dart-sdk" - "dart-shelf" - "dart-spark" - "dart-unittest" - "dart-web-toolkit" - "dart-webui" - "dart2js" - "dartium" - "dartvoid" - "darwin" - "dasblog" - "dash" - "dashboard" - "dashboard-designer" - "dashclock" - "dashcode" - "dashing" - "dashlet" - "dashstyle" - "dat.gui" - "data" - "data-access" - "data-access-app-block" - "data-access-layer" - "data-acquisition" - "data-analysis" - "data-annotation" - "data-annotations" - "data-aware" - "data-binding" - "data-bound-controls" - "data-caching" - "data-capture" - "data-change" - "data-cleaning" - "data-cleansing" - "data-collection" - "data-comparison" - "data-compression" - "data-connections" - "data-consistency" - "data-containers" - "data-contracts" - "data-controls" - "data-conversion" - "data-cube" - "data-dictionary" - "data-distribution-service" - "data-driven" - "data-driven-tests" - "data-dump" - "data-dumper" - "data-encryption" - "data-entry" - "data-exchange" - "data-execution-prevention" - "data-export" - "data-extraction" - "data-files" - "data-fitting" - "data-formats" - "data-formatters" - "data-generation" - "data-harvest" - "data-hiding" - "data-import" - "data-importer" - "data-integration" - "data-integrity" - "data-interchange" - "data-kinds" - "data-layer" - "data-layers" - "data-link-layer" - "data-linking" - "data-loss" - "data-management" - "data-manipulation" - "data-mapping" - "data-members" - "data-migration" - "data-mining" - "data-modeling" - "data-objects" - "data-oriented-design" - "data-paging" - "data-parallel-haskell" - "data-partitioning" - "data-persistence" - "data-presentation" - "data-processing" - "data-profiling" - "data-protection" - "data-quality" - "data-quality-services" - "data-recovery" - "data-reify" - "data-representation" - "data-retrieval" - "data-scrubbing" - "data-security" - "data-segment" - "data-serialization" - "data-sharing" - "data-storage" - "data-stores" - "data-stream" - "data-structures" - "data-synchronization" - "data-theme" - "data-tier-applications" - "data-tracing" - "data-transfer" - "data-transfer-objects" - "data-type-conversion" - "data-uri" - "data-uri-scheme" - "data-url" - "data-validation" - "data-virtualization" - "data-visualization" - "data-warehouse" - "data.frame" - "data.gov" - "data.stackexchange.com" - "data.success" - "data.table" - "dataabstract" - "dataadapter" - "dataannotations" - "databags" - "database" - "database-abstraction" - "database-administration" - "database-agnostic" - "database-backups" - "database-caching" - "database-cleaner" - "database-cloning" - "database-cluster" - "database-com" - "database-com-sdk" - "database-comparison" - "database-concurrency" - "database-connection" - "database-connectivity" - "database-create" - "database-cursor" - "database-deadlocks" - "database-deployment" - "database-design" - "database-diagram" - "database-diagramming" - "database-driven" - "database-dump" - "database-edition" - "database-engine" - "database-events" - "database-first" - "database-fragmentation" - "database-independent" - "database-indexes" - "database-installation" - "database-integrity" - "database-link" - "database-locking" - "database-mail" - "database-management" - "database-managers" - "database-metadata" - "database-migration" - "database-mirroring" - "database-modeling" - "database-normalization" - "database-optimization" - "database-partitioning" - "database-performance" - "database-permissions" - "database-programming" - "database-project" - "database-relations" - "database-replication" - "database-restore" - "database-scan" - "database-schema" - "database-scripts" - "database-security" - "database-server" - "database-table" - "database-template" - "database-testing" - "database-theory" - "database-tools" - "database-trigger" - "database-tuning" - "database-tuning-advisor" - "database-update" - "database-users" - "database-versioning" - "databasedotcom-gem" - "databasepublishingwizard" - "databasescripting" - "databinder" - "databound" - "databound-controls" - "databound-lists" - "databus" - "datacachefactory" - "datacash" - "datacolumn" - "datacolumncollection" - "datacontext" - "datacontract" - "datacontractjsonserialize" - "datacontracts" - "datacontractserializer" - "datacontractsurrogate" - "dataconverter" - "datadetectortypes" - "datadirectory" - "datadriven" - "datadroid" - "datadude" - "dataexplorer" - "datafeed" - "datafield" - "dataflex" - "dataflow" - "dataflow-diagram" - "dataflowtask" - "dataform" - "dataformat" - "dataformwebpart" - "dataframes" - "datagram" - "datagrid" - "datagridcell" - "datagridcolumn" - "datagridcolumnheader" - "datagridcomboboxcolumn" - "datagridheaderborder" - "datagridrowheader" - "datagridtablestyle" - "datagridtemplatecolumn" - "datagridtextcolumn" - "datagridview" - "datagridviewbuttoncolumn" - "datagridviewcellstyle" - "datagridviewcheckboxcell" - "datagridviewcolumn" - "datagridviewcombobox" - "datagridviewcomboboxcell" - "datagridviewimagecolumn" - "datagridviewlinkcolumn" - "datagridviewrow" - "datagridviewtextboxcell" - "dataguard" - "datahandler" - "datahistory" - "dataimporthandler" - "datainputstream" - "dataitem" - "datajs" - "datakey" - "datalength" - "datalife-engine" - "datalist" - "datalistitem" - "datalog" - "datamapper" - "datamapper-1.2" - "datamaps" - "datamart" - "datamatrix" - "datamember" - "datamodel" - "datamodule" - "datanitro" - "datanucleus" - "dataobjects.net" - "dataoutputstream" - "datapager" - "datapersistance" - "datapicker" - "datapoint" - "dataprovider" - "datapump" - "datareader" - "datarelation" - "datarepeater" - "datarow" - "datarowcollection" - "datarowview" - "datascroller" - "dataservice" - "dataset" - "dataset-designer" - "datasetextensions" - "datashape" - "datasheet" - "datasift-python" - "datasnap" - "datasource" - "datasourcecontrol" - "datasourceview" - "dataspecific" - "datastage" - "datastax" - "datastax-enterprise" - "datastax-java-driver" - "datastep" - "datastore" - "datastore-admin" - "datasvcutil" - "datatable" - "datatable.select" - "datatableadapters" - "datatables" - "datatables-1.10" - "datatemplate" - "datatemplates" - "datatemplateselector" - "datatextfield" - "datatip" - "datatipfunction" - "datatrigger" - "datatype" - "dataview" - "dataviewmanager" - "dataviewwebpart" - "datavisualization.toolkit" - "datawedge" - "datawindow" - "date" - "date-arithmetic" - "date-calculation" - "date-comparison" - "date-conversion" - "date-difference" - "date-format" - "date-formatting" - "date-manipulation" - "date-math" - "date-of-birth" - "date-parsing" - "date-range" - "date-sorting" - "dateadd" - "datebox" - "datecell" - "datechooser" - "datecreated" - "datediff" - "datefield" - "dateinterval" - "datejs" - "datemodified" - "datepart" - "datepicker" - "datepicker-ui" - "datepickerdialog" - "daterangepicker" - "datestamp" - "datetime" - "datetime-comparison" - "datetime-conversion" - "datetime-format" - "datetime-functions" - "datetime-generation" - "datetime-manipulation" - "datetime-operation" - "datetime-parsing" - "datetime-select" - "datetime2" - "datetime64" - "datetimeformatinfo" - "datetimeoffset" - "datetimepicker" - "datomic" - "datomisca" - "dav" - "davinci" - "dawg" - "dax" - "day-cq" - "daydream" - "dayofweek" - "daypilot" - "days" - "db-api-2" - "db-schema" - "db-structure" - "db2" - "db2-connect" - "db2-content-manager" - "db2-luw" - "db2400" - "db2i" - "db4o" - "dbaas" - "dbaccess" - "dbal" - "dbamp" - "dbase" - "dbca" - "dbcc" - "dbclient" - "dbcommand" - "dbconnection" - "dbcontext" - "dbd" - "dbd-pg" - "dbd-proxy" - "dbdatareader" - "dbdeploy" - "dbeaver" - "dbexpress" - "dbext" - "dbextensions" - "dbf" - "dbfit" - "dbforge" - "dbg" - "dbgeng" - "dbghelp" - "dbghost" - "dbgrid" - "dbi" - "dbi-profile" - "dbimport" - "dbisam" - "dbix-class" - "dbix-connector" - "dblatex" - "dblink" - "dblinq" - "dbm" - "dbmail" - "dbmetal" - "dbmigrate" - "dbmigrator" - "dbml" - "dbms" - "dbms-crypto" - "dbms-datapump" - "dbms-job" - "dbms-metadata" - "dbms-output" - "dbms-redefinition" - "dbms-scheduler" - "dbms-xmlgen" - "dbn" - "dbnull" - "dbo" - "dbobject" - "dbpedia" - "dbproj" - "dbproviderfactories" - "dbref" - "dbscan" - "dbset" - "dbsetup" - "dbslayer" - "dbstop" - "dbtable" - "dbtype" - "dbunit" - "dbus" - "dbvisualizer" - "dbx" - "dbxjson" - "dc" - "dc.js" - "dc.leaflet.js" - "dcc32" - "dccp" - "dce" - "dce-extension" - "dcevm" - "dcf77" - "dcg" - "dci" - "dcl" - "dcm4che" - "dcmtk" - "dcom" - "dcommit" - "dcop" - "dcount" - "dcpu-16" - "dcraw" - "dct" - "dcu" - "dd" - "dd-belatedpng" - "dd-wrt" - "dd4t" - "dda" - "dday" - "ddd-debugger" - "ddd-repositories" - "ddd-service" - "dddd" - "dde" - "ddex" - "ddfilelogger" - "ddhotkey" - "ddk" - "ddl" - "ddl-trigger" - "ddlutils" - "ddmathparser" - "ddms" - "ddoc" - "ddos" - "ddp" - "ddply" - "ddrmenu" - "dds" - "dds-format" - "ddt" - "ddx" - "de4dot" - "dead-code" - "dead-key" - "dead-letter" - "dead-reckoning" - "deadbolt" - "deadbolt-2" - "deadlines" - "deadlock" - "dealloc" - "deap" - "death-march" - "deb" - "debconf" - "debhelper" - "debian" - "debian-7.6.0" - "debian-based" - "debouncing" - "debug-backtrace" - "debug-build" - "debug-diagnostic-tool" - "debug-information" - "debug-mode" - "debug-print" - "debug-symbols" - "debug-visualizers" - "debugbreak" - "debugdiag" - "debuggerdisplay" - "debuggervisualizer" - "debugging" - "debugging-symbols" - "debugview" - "dec" - "decal" - "decibel" - "decidable" - "decimal" - "decimal-format" - "decimal-point" - "decimalformat" - "deciphering" - "decision-tree" - "deck.js" - "declaration" - "declarations" - "declarative" - "declarative-authorization" - "declarative-programming" - "declarative-security" - "declarative-services" - "declare" - "declare-styleable" - "declared-property" - "declspec" - "decltype" - "decode" - "decoder" - "decodeuricomponent" - "decoding" - "decompiler" - "decompiling" - "decomposition" - "decompress" - "decompression" - "decorator" - "decorator-chaining" - "decouple" - "decoupling" - "decrease-key" - "decrement" - "dedicated" - "dedicated-hosting" - "dedicated-server" - "deducer" - "deduplication" - "deedle" - "deep" - "deep-clone" - "deep-cloneable" - "deep-copy" - "deep-learning" - "deep-linking" - "deep-web" - "deepclone" - "deepequals" - "deepfreeze" - "deeplearning4j" - "deepload" - "deepzoom" - "deezer" - "def" - "deface" - "defadvice" - "default" - "default-arguments" - "default-browser" - "default-constraint" - "default-constructor" - "default-copy-constructor" - "default-database" - "default-document" - "default-implementation" - "default-method" - "default-package" - "default-parameters" - "default-programs" - "default-scope" - "default-selected" - "default-value" - "default.png" - "defaultbutton" - "defaultdict" - "defaulted-functions" - "defaultfilemonitor" - "defaultifempty" - "defaultlistmodel" - "defaultlocation" - "defaultmodelbinder" - "defaultmutabletreenode" - "defaultnetworkcredentials" - "defaultproxy" - "defaults" - "defaultstyleddocument" - "defaulttablemodel" - "defaulttreemodel" - "defaultview" - "defects" - "defensive-copy" - "defensive-programming" - "deferrable-constraint" - "deferred" - "deferred-buffer" - "deferred-execution" - "deferred-loading" - "deferred-query" - "deferred-rendering" - "deferred-shading" - "define" - "define-syntax" - "defined" - "defineproperty" - "definitelytyped" - "definition" - "definitions" - "deflate" - "deflatestream" - "defn" - "deform" - "defragmentation" - "deftjs" - "deftype" - "defunct" - "degrafa" - "degrees" - "dehl" - "deinit" - "deis" - "del" - "delaunay" - "delay" - "delay-load" - "delay-sign" - "delayed-execution" - "delayed-job" - "delayed-loading" - "delayed-paperclip" - "delayedvariableexpansion" - "delegatecommand" - "delegates" - "delegating-constructor" - "delegation" - "deletable" - "delete" - "delete-directory" - "delete-file" - "delete-method" - "delete-operator" - "delete-record" - "delete-row" - "deleteallonsubmit" - "deleted-functions" - "deleting" - "deletion" - "delicious-api" - "delimited" - "delimited-continuations" - "delimited-text" - "delimiter" - "deliverance" - "delivery" - "delphi" - "delphi-2005" - "delphi-2006" - "delphi-2007" - "delphi-2009" - "delphi-2010" - "delphi-2011" - "delphi-3" - "delphi-4" - "delphi-5" - "delphi-6" - "delphi-7" - "delphi-for-php" - "delphi-ide" - "delphi-ios" - "delphi-mocks" - "delphi-prism" - "delphi-prism-2010" - "delphi-unicode" - "delphi-units" - "delphi-xe" - "delphi-xe2" - "delphi-xe3" - "delphi-xe4" - "delphi-xe5" - "delphi-xe6" - "delphi-xe7" - "delphi.net" - "delphi4php" - "delphi64" - "delphiscript" - "delta" - "delta-index" - "delta-pack" - "delta-row-compression" - "deltaspike" - "deltawalker" - "demand" - "demandware" - "demangler" - "demeteorizer" - "demo" - "demo-effects" - "demorgans-law" - "demos" - "demoscene" - "denali" - "dendextend" - "dendrogram" - "dendropy" - "denial-of-service" - "denied" - "denodo" - "denormalization" - "denormalized" - "denotational-semantics" - "dense-rank" - "density-plot" - "dentrix" - "deobfuscation" - "deoptimization" - "dep" - "dependence-tests" - "dependencies" - "dependency-analysis" - "dependency-graph" - "dependency-injection" - "dependency-management" - "dependency-properties" - "dependency-resolver" - "dependency-walker" - "dependencyobject" - "dependent-destroy" - "dependent-method-type" - "dependent-name" - "dependent-type" - "depends" - "deployd" - "deploying" - "deployit" - "deployjava" - "deployment" - "deployment-descriptor" - "deployment-project" - "deployment-smell" - "deployment-target" - "deploymentitem" - "depot" - "deprecated" - "deprecation-warning" - "depth" - "depth-buffer" - "depth-first-search" - "depth-testing" - "deque" - "der" - "derby" - "derbyjs" - "dereference" - "derelict3" - "derivative" - "derived" - "derived-class" - "derived-instances" - "derived-table" - "derived-types" - "deriving" - "des" - "descartes" - "descendant" - "descendant-or-self" - "describe" - "describe.by" - "description-logic" - "descriptor" - "desctructuring" - "deselect" - "deserialization" - "design" - "design-by-contract" - "design-choices" - "design-consideration" - "design-data" - "design-debt" - "design-decisions" - "design-documents" - "design-guidelines" - "design-patterns" - "design-principles" - "design-rationale" - "design-surface" - "design-time" - "design-time-data" - "design-view" - "designated-initializer" - "designators" - "designer" - "designmode" - "designtime-attributes" - "designview" - "desire2learn" - "desk-check" - "deskband" - "desktop" - "desktop-application" - "desktop-background" - "desktop-integration" - "desktop-publishing" - "desktop-recording" - "desktop-search" - "desktop-sharing" - "desktop-shortcut" - "desktop-wallpaper" - "desktop.ini" - "despotify" - "destroy" - "destruction" - "destructor" - "destructuring" - "detach" - "detachedcriteria" - "detail" - "detail-band" - "details" - "detailsview" - "detailtextlabel" - "detailview" - "detect" - "detection" - "determinants" - "deterministic" - "detex" - "detours" - "dets" - "dev-appserver" - "dev-appserver-2" - "dev-c++" - "dev-mode" - "dev-null" - "dev-phone" - "dev-testing" - "dev-to-production" - "devart" - "devcon" - "devdefined-oauth" - "devel-cover" - "devel-declare" - "devel-nytprof" - "developer-machine" - "developer-payload" - "developer-tools" - "development-environment" - "development-fabric" - "development-lifecycle" - "development-machine" - "development-mode" - "development-process" - "devenv" - "devexpress" - "devexpress-mvc" - "devexpress-windows-ui" - "devexpress-wpf" - "devextreme" - "devfabric" - "devforce" - "deviation" - "device" - "device-admin" - "device-compatibility" - "device-context" - "device-controller" - "device-detection" - "device-driver" - "device-emulation" - "device-emulator-manager" - "device-instance-id" - "device-management" - "device-manager" - "device-mapper" - "device-name" - "device-node" - "device-orientation" - "device-owner" - "device-policy-manager" - "device-tree" - "device-width" - "deviceiocontrol" - "devicemotion" - "devices" - "devicetoken" - "devil" - "devise" - "devise-async" - "devise-confirmable" - "devise-invitable" - "devkit" - "devkitpro" - "devpartner" - "devpi" - "devserver" - "devstack" - "devtools" - "devtoolset" - "dex" - "dex-limit" - "dex2jar" - "dexclassloader" - "dexguard" - "dexmaker" - "dexopt" - "dexterity" - "dexy" - "dfa" - "dfc" - "dfdl" - "dfm" - "dfs" - "dfsort" - "dft" - "dfu" - "dgml" - "dgrid" - "dhcp" - "dhcpobjs" - "dhl" - "dht" - "dhtml" - "dhtmlx" - "dhtmlx-scheduler" - "di-containers" - "dia" - "dia-sdk" - "diacritics" - "diagnostics" - "diagonal" - "diagram" - "diagramming" - "diagrams" - "dial-up" - "dialect" - "dialect2" - "dialing" - "dialog" - "dialog-preference" - "dialogbasedapp" - "dialogbox" - "dialogfragment" - "dialogresult" - "dialogue" - "dialogviewcontroller" - "dialyzer" - "diameter-protocol" - "diamond-operator" - "diamond-problem" - "diaspora" - "diazo" - "dib" - "dibs" - "dice" - "dicom" - "dict-protocol" - "dictating" - "dictation" - "dictionary" - "dictionary-attack" - "dictionary-comprehension" - "dictmixin" - "dictview" - "didfailwitherror" - "dido" - "didreceivememorywarning" - "didselectrowatindexpath" - "die" - "diem" - "diet" - "diff" - "diff-lcs" - "diff3" - "diffbot" - "difference" - "difference-between-rows" - "difference-equations" - "difference-lists" - "differential-equations" - "differential-evolution" - "differential-execution" - "differentiation" - "diffie-hellman" - "difflib" - "diffmerge" - "diffstat" - "difftool" - "dig" - "digest" - "digest-authentication" - "digest-authorisation" - "digestive-functors" - "digg" - "digiflow" - "digit" - "digital" - "digital-analog-converter" - "digital-assets" - "digital-certificate" - "digital-compass" - "digital-design" - "digital-downloads" - "digital-filter" - "digital-handwritting" - "digital-logic" - "digital-ocean" - "digital-signature" - "digits" - "digraphs" - "dih" - "dijit" - "dijit.form" - "dijit.layout" - "dijit.tree" - "dijkstra" - "dill" - "dimension" - "dimension-reduction" - "dimensional" - "dimensional-modeling" - "dimensionality-reduction" - "dimensions" - "dimple.js" - "dinamico" - "dingbats" - "dining-philosopher" - "diophantine" - "dip" - "dir" - "direct-composition" - "direct-path" - "direct2" - "direct2d" - "direct3d" - "direct3d10" - "direct3d11" - "direct3d9" - "directadmin" - "directcast" - "directcompute" - "directdraw" - "directed-acyclic-graphs" - "directed-graph" - "directed-identity" - "directfb" - "directinput" - "direction" - "directional-light" - "directions" - "directive" - "directmemory" - "directmusic" - "director" - "directories" - "directory" - "directory-browsing" - "directory-listing" - "directory-permissions" - "directory-security" - "directory-server" - "directory-structure" - "directory-traversal" - "directory-tree" - "directory-walk" - "directory.delete" - "directoryentry" - "directoryindex" - "directoryinfo" - "directorysearcher" - "directoryservices" - "directorystream" - "directshow" - "directshow.net" - "directsound" - "directwrite" - "directx" - "directx-10" - "directx-11" - "directx-9" - "directxmath" - "dired" - "dirent.h" - "dirichlet" - "dirname" - "dirpagination" - "dirset" - "dirty-data" - "dirtyread" - "dirtyrectangle" - "disability" - "disable-app" - "disable-caching" - "disable-link" - "disabled-control" - "disabled-input" - "disambiguation" - "disassembler" - "disassembling" - "disassembly" - "disaster-recovery" - "disclaimer" - "disclosure" - "disco" - "disconnect" - "disconnected" - "disconnected-environment" - "disconnected-session" - "disconnection" - "discount" - "discountasp" - "discounts" - "discourse" - "discover" - "discoverability" - "discovery" - "discrete-mathematics" - "discrete-space" - "discretization" - "discriminated-union" - "discriminator" - "discussion-board" - "disjoint-sets" - "disjoint-union" - "disk" - "disk-access" - "disk-based" - "disk-imaging" - "disk-io" - "disk-partitioning" - "disk-smart" - "diskarbitration" - "diskcache" - "diskimage" - "diskspace" - "diskusage" - "dism" - "dismax" - "dismiss" - "disp" - "disparity-mapping" - "dispatch" - "dispatch-async" - "dispatch-table" - "dispatcher" - "dispatchertimer" - "dispatchevent" - "display-bugs" - "display-dpi" - "display-manager" - "display-picture" - "display-suite" - "display-templates" - "displayattribute" - "displayfor" - "displayformat" - "displaylist" - "displaymode" - "displayobject" - "displaytag" - "disposable" - "disposal" - "dispose" - "disposing" - "disqus" - "disruptor-pattern" - "dist-zilla" - "distance" - "distcc" - "distcp" - "distinct" - "distinct-on" - "distinct-values" - "distinguishedname" - "distortion" - "distractions" - "distribute" - "distributed" - "distributed-algorithm" - "distributed-apps" - "distributed-cache" - "distributed-caching" - "distributed-computing" - "distributed-database" - "distributed-filesystem" - "distributed-lock" - "distributed-objects" - "distributed-programming" - "distributed-system" - "distributed-testing" - "distributed-transactions" - "distribution" - "distribution-list" - "distro" - "distutils" - "distutils2" - "dita" - "dita-ot" - "dithering" - "ditto" - "div" - "div-tag" - "divide" - "divide-and-conquer" - "divide-by-zero" - "dividebyzeroexception" - "divider" - "division" - "divmod" - "divpeek" - "divshot" - "divx" - "django" - "django-1.1" - "django-1.2" - "django-1.3" - "django-1.4" - "django-1.5" - "django-1.6" - "django-1.7" - "django-1.8" - "django-adaptors" - "django-admin" - "django-admin-actions" - "django-admin-filters" - "django-admin-tools" - "django-aggregation" - "django-ajax-selects" - "django-allauth" - "django-apps" - "django-auth-ldap" - "django-authentication" - "django-authopenid" - "django-autocomplete-light" - "django-bitfield" - "django-blob" - "django-cache" - "django-cache-machine" - "django-caching" - "django-celery" - "django-chronograph" - "django-ckeditor" - "django-class-based-views" - "django-cms" - "django-command-extensions" - "django-commands" - "django-comments" - "django-compressor" - "django-contenttypes" - "django-context" - "django-contrib" - "django-cors-headers" - "django-countries" - "django-crispy-forms" - "django-csrf" - "django-custom-field" - "django-custom-manager" - "django-custom-tags" - "django-custom-user" - "django-database" - "django-datatable" - "django-debug-toolbar" - "django-deployment" - "django-dev-server" - "django-dynamic-scraper" - "django-email" - "django-endless-pagination" - "django-errors" - "django-evolution" - "django-extensions" - "django-facebook" - "django-fields" - "django-file-upload" - "django-filebrowser" - "django-filer" - "django-filter" - "django-filters" - "django-fixtures" - "django-flatpages" - "django-floppyforms" - "django-fluent" - "django-forms" - "django-formwizard" - "django-generic-views" - "django-geoposition" - "django-grappelli" - "django-guardian" - "django-haystack" - "django-hstore" - "django-i18n" - "django-imagefield" - "django-imagekit" - "django-import-export" - "django-inheritance" - "django-inlinecss" - "django-inplaceedit" - "django-jenkins" - "django-johnny-cache" - "django-jsonfield" - "django-lean" - "django-lfs" - "django-localeurl" - "django-localflavor" - "django-logging" - "django-login" - "django-mailer" - "django-manage.py" - "django-managers" - "django-many-to-many" - "django-media" - "django-mediagenerator" - "django-messages" - "django-middleware" - "django-migrations" - "django-modeladmin" - "django-modelform" - "django-modelformsets" - "django-models" - "django-modeltranslation" - "django-mongodb-engine" - "django-mptt" - "django-mssql" - "django-multi-db" - "django-multilingual" - "django-multiwidget" - "django-nani" - "django-nonrel" - "django-nose" - "django-notification" - "django-oembed" - "django-openid-auth" - "django-oracle" - "django-ordered-model" - "django-orm" - "django-oscar" - "django-pagination" - "django-paypal" - "django-permissions" - "django-pipeline" - "django-piston" - "django-postgresql" - "django-profiles" - "django-project-architect" - "django-pyodbc" - "django-queries" - "django-queryset" - "django-ratings" - "django-redis" - "django-registration" - "django-related-manager" - "django-rest-framework" - "django-reversion" - "django-rosetta" - "django-routing" - "django-rq" - "django-rss" - "django-search-lucene" - "django-sekizai" - "django-select-related" - "django-serializer" - "django-sessions" - "django-settings" - "django-shell" - "django-shop" - "django-signals" - "django-sitemaps" - "django-sites" - "django-sitetree" - "django-socialauth" - "django-socketio" - "django-south" - "django-sphinx" - "django-sslify" - "django-static" - "django-staticfiles" - "django-statistics" - "django-storage" - "django-suit" - "django-supervisor" - "django-syncdb" - "django-syndication" - "django-tables2" - "django-tagging" - "django-taggit" - "django-tastypie" - "django-template-filters" - "django-template-tags" - "django-templates" - "django-testing" - "django-tests" - "django-timezone" - "django-tinymce" - "django-transmeta" - "django-treebeard" - "django-unittest" - "django-uploads" - "django-urls" - "django-userena" - "django-users" - "django-validation" - "django-views" - "django-voting" - "django-webtest" - "django-widget" - "django-widget-tweaks" - "django-wsgi" - "django-wysihtml5" - "django-wysiwyg" - "djangoappengine" - "djcelery" - "djgpp" - "djnativeswing" - "djvu" - "dkim" - "dkpro-core" - "dl-dt-dd" - "dladdr" - "dll" - "dll-dependency" - "dll-injection" - "dll-reference" - "dllexport" - "dllhost" - "dllimport" - "dllmain" - "dllnotfoundexception" - "dllregistration" - "dlltool" - "dlms" - "dlna" - "dlopen" - "dlquery" - "dlsym" - "dltk" - "dlx" - "dm" - "dm-script" - "dm814x" - "dma" - "dmake" - "dmalloc" - "dmarc" - "dmcs" - "dmd" - "dmg" - "dmi" - "dml" - "dmo" - "dmoz" - "dmp" - "dms" - "dmv" - "dmx" - "dmx-ssas" - "dmx512" - "dmz" - "dn" - "dna-sequence" - "dnd" - "dng" - "dnlib" - "dnode" - "dns" - "dns-sd" - "dnsbl" - "dnsimple" - "dnsjava" - "dnsmasq" - "dnspython" - "dnssec" - "do-loops" - "do-not-track" - "do-notation" - "do-while" - "do.call" - "dob" - "doby-grid" - "doc" - "docbase" - "docblocks" - "docblox" - "docbook" - "docbook-5" - "docbook-xsl" - "docco" - "dock" - "dockable" - "dockable-windows" - "docker" - "docker-port" - "dockerfile" - "dockerhub" - "dockerpy" - "docking" - "docklayoutpanel" - "docklight" - "dockpanel" - "dockpanel-suite" - "dockyard" - "doclet" - "docopt" - "docpad" - "docset" - "docsplit" - "docstring" - "doctest" - "doctine2-installation" - "doctrine" - "doctrine-1.2" - "doctrine-collection" - "doctrine-extensions" - "doctrine-inheritance" - "doctrine-migrations" - "doctrine-mongodb" - "doctrine-odm" - "doctrine-phpcr" - "doctrine-query" - "doctrine-uploadable" - "doctrine2" - "doctrine2-postgres" - "doctype" - "document" - "document-architecture" - "document-based" - "document-based-database" - "document-body" - "document-carousel" - "document-centric" - "document-class" - "document-classification" - "document-conversion" - "document-database" - "document-imaging" - "document-library" - "document-management" - "document-oriented" - "document-oriented-db" - "document-preview" - "document-provider" - "document-ready" - "document-repository" - "document-root" - "document-set" - "document-storage" - "document-store" - "document-versioning" - "document-view" - "document.ready" - "document.write" - "documentation" - "documentation-generation" - "documentation-system" - "documentfile" - "documentfilter" - "documentfragment" - "documentlistener" - "documentpage" - "documentpaginator" - "documents" - "documents4j" - "documentsdirectory" - "documentum" - "documentum-dfs" - "documentum6.5" - "documentviewer" - "docushare" - "docusign" - "docusignapi" - "docutils" - "docvariable" - "docverter" - "docview" - "docx" - "docx4j" - "doevents" - "dof-file" - "dog" - "dogecoin" - "dogpile.cache" - "doh" - "doh-robot" - "doi" - "dojo" - "dojo-1.6" - "dojo-1.7" - "dojo-1.8" - "dojo-1.9" - "dojo-build" - "dojo-dnd" - "dojo-layer" - "dojo-require" - "dojo-store" - "dojo.data" - "dojo.gridx" - "dojo.stateful" - "dojoconfig" - "dojox" - "dojox.app" - "dojox.charting" - "dojox.gfx" - "dojox.grid" - "dojox.grid.datagrid" - "dojox.mobile" - "dokan" - "dokku" - "dokku-alt" - "dokuwiki" - "dolby" - "dolby-audio-api" - "dollar-sign" - "dolphin-browser" - "dolphin-cms" - "dolphin-player" - "dom" - "dom-events" - "dom-manipulation" - "dom-node" - "dom-parser" - "dom-reflow" - "dom-selection" - "dom-traversal" - "dom3" - "dom4" - "dom4j" - "domain-aliasing" - "domain-data-modelling" - "domain-driven-design" - "domain-events" - "domain-mapping" - "domain-mask" - "domain-masking" - "domain-model" - "domain-modelling" - "domain-name" - "domain-object" - "domain-service-class" - "domaincontext" - "domaincontroller" - "domaindatasource" - "domainkeys" - "domainservices" - "domc" - "domcontentloaded" - "domcrawler" - "domdocument" - "domexception" - "domino-designer-eclipse" - "dominotogo" - "dominspector" - "domo" - "domparser" - "dompdf" - "domready" - "domxpath" - "donations" - "dongle" - "dontenum" - "donut-caching" - "donut-chart" - "doophp" - "doorkeeper" - "doors" - "doozer" - "dopostback" - "dos" - "dos-donts" - "dos2unix" - "dosbox" - "dosgi" - "doskey" - "dossier" - "dot" - "dot-command" - "dot-emacs" - "dot-matrix" - "dot-notation" - "dot-operator" - "dot-product" - "dot.js" - "dot2tex" - "dot42" - "dotcloud" - "dotcmis" - "dotcms" - "dotconnect" - "dotcover" - "dotfiles" - "dotfuscator" - "dotimage" - "dotjs" - "dotless" - "dotliquid" - "dotmailer" - "dotnet-httpclient" - "dotnetbar" - "dotnetcharting" - "dotnethighcharts" - "dotnetinstaller" - "dotnetnuke" - "dotnetnuke-5" - "dotnetnuke-6" - "dotnetnuke-7" - "dotnetnuke-imc" - "dotnetnuke-module" - "dotnetnuke-settings" - "dotnetopenauth" - "dotnetrdf" - "dotnetzip" - "dotpeek" - "dotproject" - "dotspatial" - "dotted-line" - "dottrace" - "dotty" - "double" - "double-brace-initialize" - "double-buffering" - "double-byte" - "double-checked" - "double-checked-locking" - "double-click" - "double-click-advertising" - "double-compare-and-swap" - "double-dispatch" - "double-elimination" - "double-free" - "double-pointer" - "double-precision" - "double-quotes" - "double-splat" - "double-submit-prevention" - "double-submit-problem" - "double-underscore" - "doubleanimation" - "doublebuffered" - "doubly-linked-list" - "douglas-peucker" - "dovecot" - "downcast" - "downcasting" - "downgrade" - "download" - "download-manager" - "download-speed" - "downloadfile" - "downloadfileasync" - "downloadify" - "downloading" - "downloading-website-files" - "downloadstring" - "downsampling" - "downsize" - "downtime" - "doxia" - "doxygen" - "doxygen-addtogroup" - "doxygen-wizard" - "doxywizard" - "dozer" - "dpan" - "dpapi" - "dpdk" - "dphibernate" - "dpi" - "dpi-aware" - "dpinst" - "dpkg" - "dpkt" - "dplyr" - "dpm" - "dql" - "dr-memory" - "dr.watson" - "drag" - "drag-and-drop" - "drag-short-listview" - "drag-to-select" - "dragdealer-js" - "dragenter" - "draggable" - "dragonfire-sdk" - "dragonfly" - "dragonfly-gem" - "drakma" - "drakma-async" - "draper" - "draw" - "draw-list" - "draw2d" - "draw2d-js" - "drawable" - "drawablegamecomponent" - "drawbitmap" - "drawdib" - "drawellipse" - "drawer" - "drawerlayout" - "drawertoggle" - "drawimage" - "drawing" - "drawing2d" - "drawingarea" - "drawingbrush" - "drawingcache" - "drawingcontext" - "drawingml" - "drawingvisual" - "drawinrect" - "drawmaprect" - "drawrect" - "drawrectangle" - "drawstring" - "drawtext" - "drawtobitmap" - "drb" - "drbd" - "dreamcode" - "dreamhost" - "dreamservice" - "dreamspark" - "dreamweaver" - "dreamweaver-extensions" - "dreamweaver-sites" - "dreamweaver-templates" - "dredd" - "drift" - "drilldown" - "drillthrough" - "drive" - "drive-letter" - "drive-mapping" - "driveinfo" - "driver" - "driver-signing" - "drivers" - "drives" - "driving-directions" - "driving-distance" - "drizzle" - "drjava" - "drm" - "drmaa" - "droid-fu" - "droidex" - "droidgap" - "droidparts" - "droidquery" - "drone" - "drone.io" - "drools" - "drools-flow" - "drools-fusion" - "drools-guvnor" - "drools-planner" - "drop-database" - "drop-down-menu" - "drop-shadow" - "drop-table" - "dropbox" - "dropbox-api" - "dropbox-php" - "dropdownbox" - "dropdownchecklist" - "dropdownchoice" - "dropdownextender" - "dropdownlistfor" - "dropnet" - "droppable" - "dropshadow" - "droptarget" - "dropwizard" - "dropzone.js" - "drracket" - "druby" - "druid" - "druntime" - "drupal" - "drupal-5" - "drupal-6" - "drupal-7" - "drupal-8" - "drupal-ajax" - "drupal-alter" - "drupal-batch" - "drupal-behaviors" - "drupal-blocks" - "drupal-boost" - "drupal-cache" - "drupal-comments" - "drupal-commerce" - "drupal-commons" - "drupal-contact-form" - "drupal-content-types" - "drupal-contextual-filters" - "drupal-db-api" - "drupal-distributions" - "drupal-domain-access" - "drupal-entities" - "drupal-exposed-filter" - "drupal-fapi" - "drupal-feeds" - "drupal-field-api" - "drupal-field-collection" - "drupal-fields" - "drupal-file-api" - "drupal-filefield" - "drupal-fivestar" - "drupal-form-submission" - "drupal-form-validation" - "drupal-forms" - "drupal-gmap" - "drupal-hooks" - "drupal-input-format" - "drupal-jcarousel" - "drupal-menu" - "drupal-modules" - "drupal-multi-domain" - "drupal-nodes" - "drupal-panels" - "drupal-permissions" - "drupal-preprocess" - "drupal-regions" - "drupal-render" - "drupal-roles" - "drupal-rules" - "drupal-schema" - "drupal-search" - "drupal-services" - "drupal-smart-ip" - "drupal-spam" - "drupal-taxonomy" - "drupal-templates" - "drupal-themes" - "drupal-theming" - "drupal-views" - "drupal-views-relationship" - "drupal-webform" - "drupal-zen" - "drush" - "drwatson" - "dry" - "drywall" - "ds-5" - "ds9" - "dsa" - "dsc" - "dscl" - "dsdm-atern" - "dsdt" - "dsel" - "dsl" - "dsl-tools" - "dsld" - "dsml" - "dsn" - "dsofile" - "dsoframer" - "dsolve" - "dspace" - "dspack" - "dsquery" - "dss" - "dsss" - "dst" - "dst-embroidery" - "dstream" - "dsym" - "dsymutil" - "dta" - "dtcoretext" - "dtd" - "dtd-parsing" - "dtexec" - "dtf" - "dtgridview" - "dtl-cpp" - "dtls" - "dtmf" - "dtml" - "dtn" - "dto" - "dto-mapping" - "dtrace" - "dtruss" - "dts" - "dtsearch" - "dtsignalflag" - "dtsx" - "du" - "dual-monitor" - "dual-sim" - "dual-table" - "dub" - "dublin-core" - "duck-duck-go" - "duck-typing" - "ducttape" - "duffs-device" - "duktape" - "dulwich" - "dummy-data" - "dump" - "dumpbin" - "dumpdata" - "dumpfile" - "dumping" - "dumps" - "dumpsys" - "dundas" - "dunit" - "dunn.test" - "duo.js" - "duostack" - "dup" - "dup2" - "duplex" - "duplex-channel" - "duplicate-content" - "duplicate-data" - "duplicate-detection" - "duplicate-entry" - "duplicate-removal" - "duplicate-symbol" - "duplicates" - "duplicati" - "duplication" - "duplicity" - "durability" - "durable-duplex" - "durable-services" - "durable-subscription" - "durandal" - "durandal-2.0" - "durandal-navigation" - "duration" - "durovis-dive" - "dust.js" - "dust.js-linkedin" - "dustc" - "dutch-national-flag" - "dvb" - "dvcs" - "dvd" - "dvd-burning" - "dvi" - "dvi-tex" - "dvorak" - "dvr" - "dwarf" - "dwg" - "dwm" - "dwmapi" - "dwolla" - "dwoo" - "dword" - "dwr" - "dwscript" - "dwt" - "dx" - "dxcore" - "dxf" - "dxgi" - "dxl" - "dxperience" - "dxut" - "dxva" - "dyalog" - "dyantree" - "dydl" - "dygraphs" - "dylan" - "dyld" - "dylib" - "dymamic" - "dymo" - "dymola" - "dynacache" - "dynamic" - "dynamic-allocation" - "dynamic-analysis" - "dynamic-arrays" - "dynamic-assemblies" - "dynamic-attributes" - "dynamic-binding" - "dynamic-c" - "dynamic-cast" - "dynamic-class" - "dynamic-class-creation" - "dynamic-class-loaders" - "dynamic-code" - "dynamic-columns" - "dynamic-compilation" - "dynamic-compile" - "dynamic-content" - "dynamic-controls" - "dynamic-css" - "dynamic-data" - "dynamic-data-display" - "dynamic-data-exchange" - "dynamic-data-list" - "dynamic-data-site" - "dynamic-dispatch" - "dynamic-execution" - "dynamic-expresso" - "dynamic-featured-image" - "dynamic-finders" - "dynamic-folders" - "dynamic-forms" - "dynamic-function" - "dynamic-html" - "dynamic-image-generation" - "dynamic-import" - "dynamic-invoke" - "dynamic-ip" - "dynamic-jasper" - "dynamic-keyword" - "dynamic-language-runtime" - "dynamic-languages" - "dynamic-library" - "dynamic-linking" - "dynamic-links" - "dynamic-linq" - "dynamic-list" - "dynamic-loading" - "dynamic-management-views" - "dynamic-memory-allocation" - "dynamic-method" - "dynamic-pages" - "dynamic-parallelism" - "dynamic-pivot" - "dynamic-programming" - "dynamic-properties" - "dynamic-proxy" - "dynamic-queries" - "dynamic-rdlc-generation" - "dynamic-rebinding" - "dynamic-reports" - "dynamic-resizing" - "dynamic-schema" - "dynamic-scope" - "dynamic-script-loading" - "dynamic-sizing" - "dynamic-splash-screen" - "dynamic-sql" - "dynamic-tables" - "dynamic-text" - "dynamic-typing" - "dynamic-ui" - "dynamic-url" - "dynamic-usercontrols" - "dynamic-values" - "dynamic-variables" - "dynamic-web-controls" - "dynamic-web-twain" - "dynamic-websites" - "dynamically-generated" - "dynamically-generated-co" - "dynamically-loaded-xap" - "dynamicform" - "dynamicgridview" - "dynamicmethod" - "dynamicobject" - "dynamicpdf" - "dynamicpdf-table2" - "dynamicquery" - "dynamicresource" - "dynamics-ax" - "dynamics-ax-2009" - "dynamics-ax-2012" - "dynamics-ax-2012-r2" - "dynamics-ax-2012-r3" - "dynamics-ax-xpo" - "dynamics-crm" - "dynamics-crm-2011" - "dynamics-crm-2013" - "dynamics-crm-2013-sdk" - "dynamics-crm-2015" - "dynamics-crm-3" - "dynamics-crm-4" - "dynamics-crm-email-router" - "dynamics-crm-online" - "dynamics-gp" - "dynamics-nav" - "dynamics-nav-2013" - "dynamics-sl" - "dynamictype" - "dynarray" - "dynatable" - "dynatrace" - "dynatree" - "dyndns" - "dynpro" - "e" - "e-commerce" - "e-ink" - "e-notices" - "e-texteditor" - "e-token" - "e107" - "e2e-testing" - "e4" - "e4x" - "e57" - "e71" - "eaaccessory" - "eabi" - "eaccelerator" - "each" - "eager" - "eager-loading" - "eaglcontext" - "eaglehorn" - "eaglview" - "eai" - "ean-13" - "ear" - "ear-file" - "earley-parser" - "early-binding" - "earthdistance" - "easeljs" - "easerver" - "easing" - "easing-functions" - "eastl" - "easy-digital-downloads" - "easy-install" - "easy-thumbnails" - "easy68k" - "easyb" - "easyblog" - "easycwmp" - "easygui" - "easyhook" - "easyhtmlreport" - "easymock" - "easynetq" - "easyphp" - "easypie" - "easyquery" - "easyrtc" - "easyslider" - "easytracker" - "easytrieve" - "easyxdm" - "eazfuscator" - "ebay" - "ebay-api" - "ebay-lms" - "ebcdic" - "ebean" - "ebnf" - "ebook-reader" - "ebtables" - "ebuild" - "ebxml" - "ec2-ami" - "ec2-api-tools" - "ec2-container-service" - "ecb" - "ecb-pattern" - "ecdf" - "ecdsa" - "echo" - "echo-cancellation" - "echo-server" - "echo2" - "echo3" - "echosign" - "ecj" - "ecl" - "eclassnotfound" - "eclemma" - "eclim" - "eclipse" - "eclipse-3.2" - "eclipse-3.3" - "eclipse-3.4" - "eclipse-3.5" - "eclipse-3.5.1" - "eclipse-3.6" - "eclipse-adt" - "eclipse-api" - "eclipse-cdt" - "eclipse-classpath" - "eclipse-clp" - "eclipse-databinding" - "eclipse-dtp" - "eclipse-ecf" - "eclipse-emf" - "eclipse-emf-ecore" - "eclipse-europa" - "eclipse-formatter" - "eclipse-fp" - "eclipse-fragment" - "eclipse-gef" - "eclipse-gemini" - "eclipse-gmf" - "eclipse-indigo" - "eclipse-jdt" - "eclipse-jet" - "eclipse-juno" - "eclipse-kepler" - "eclipse-luna" - "eclipse-m2t-jet" - "eclipse-marketplace" - "eclipse-mars" - "eclipse-mat" - "eclipse-mdt" - "eclipse-memory-analyzer" - "eclipse-metadata" - "eclipse-orion" - "eclipse-pde" - "eclipse-pdt" - "eclipse-plugin" - "eclipse-plugin-dev" - "eclipse-project-file" - "eclipse-rap" - "eclipse-rcp" - "eclipse-rse" - "eclipse-scout" - "eclipse-templates" - "eclipse-tptp" - "eclipse-virgo" - "eclipse-wtp" - "eclipselink" - "eclipseme" - "ecm" - "ecma" - "ecma262" - "ecmascript-4" - "ecmascript-5" - "ecmascript-6" - "ecmascript-harmony" - "eco" - "ecobertura" - "ecom" - "econnect" - "econnrefused" - "econnreset" - "economics" - "ecopy" - "ecore" - "ecos" - "ecpg" - "ecrion" - "ecryptfs" - "ecslidingviewcontroller" - "ecslidingviewcontroller-2" - "ectjs" - "ecto" - "ed" - "ed25519" - "ed25519-donna" - "eda" - "edatatables" - "edb" - "edf" - "edg" - "edge" - "edge-detection" - "edge-side-includes" - "edge.js" - "edgecast" - "edges" - "edi" - "edid" - "edifact" - "edify" - "edirectory" - "edismax" - "edit" - "edit-and-continue" - "edit-control" - "edit-distance" - "edit-in-place" - "editbox" - "editcap" - "editcontrol" - "editfield" - "editing" - "editingstate" - "edititemtemplate" - "editline" - "editmode" - "editmodel" - "editor" - "editor-zone" - "editorfor" - "editorformodel" - "editortemplates" - "editpad" - "editplus" - "edittextpreference" - "editview" - "edm" - "edmgen" - "edmonds-karp" - "edmx" - "edmx-designer" - "edn" - "edsdk" - "edt" - "edtftpj" - "edwin" - "edx" - "eeepc" - "eeglab" - "eeprom" - "ef-code-first" - "ef-database-first" - "ef-fluent-api" - "ef-fluent-configuration" - "ef-migrations" - "ef-model-builder" - "ef-model-first" - "ef-postgresql" - "ef-power-tools" - "ef4-code-only" - "effect" - "effect-systems" - "effective-c++" - "effective-java" - "effects" - "effort" - "efi" - "efl" - "eflags" - "efm" - "efpocoadapter" - "efs" - "efv4" - "efxclipse" - "egg" - "eggdrop" - "eggplant" - "egit" - "egl" - "eglibc" - "egoimageview" - "egovernment" - "egrep" - "ehcache" - "ehcache-bigmemory" - "eid" - "eiffel" - "eigen" - "eigen3" - "eigenclass" - "eigenvalue" - "eigenvector" - "eintr" - "eip" - "either" - "ejabberd" - "ejabberd-http-bind" - "ejb" - "ejb-2.x" - "ejb-3.0" - "ejb-3.1" - "ejb-3.2" - "ejb-jar.xml" - "ejbca" - "ejbql" - "ejbscheduler" - "eject" - "ejml" - "ejs" - "ejs-chart" - "ekevent" - "ekeventkit" - "ekeventstore" - "ekg" - "ektorp" - "ektron" - "el" - "el-get" - "elaboration" - "elaphe" - "elapsed" - "elapsedtime" - "elastic-beanstalk" - "elastic-cache" - "elastic-grid" - "elastic-ip" - "elastic-map-reduce" - "elastic4s" - "elastica" - "elasticity" - "elasticjs" - "elasticlayout" - "elasticlinq" - "elasticsearch" - "elasticsearch-1.0.0" - "elasticsearch-curator" - "elasticsearch-jdbc-river" - "elasticsearch-mapping" - "elasticsearch-marvel" - "elasticsearch-model" - "elasticsearch-mongo-river" - "elasticsearch-net" - "elasticsearch-percolate" - "elasticsearch-plugin" - "elasticui" - "elasticutils" - "elastisch" - "elastislide" - "elastix" - "elcimagepickercontroller" - "eldarion-ajax" - "electric-fence" - "electronic-signature" - "electronics" - "element" - "element-binding" - "elementary-functions" - "elementflow" - "elementhost" - "elementname" - "elements" - "elementtree" - "elementwise-operations" - "elephantbird" - "elerea" - "elessar" - "elevated-privileges" - "elevatedb" - "elevation" - "elf" - "elfinder" - "elgamal" - "elgg" - "elinks" - "elips-studio" - "elisp" - "elixir" - "elixir-framework" - "elki" - "ellcc" - "ellipse" - "ellipsis" - "elliptic-curve" - "elm" - "elm327" - "elmah" - "elmah.mvc" - "elmahr" - "eloqua" - "eloquent" - "eloquera" - "elpa" - "elrte" - "em" - "em-getline" - "em-http-request" - "em-synchrony" - "em-websocket" - "em-websocket-client" - "emacs" - "emacs-dirtree" - "emacs-ecb" - "emacs-ediff" - "emacs-faces" - "emacs-jedi" - "emacs-semantic" - "emacs-server" - "emacs-speedbar" - "emacs23" - "emacs24" - "emacsclient" - "emacspeak" - "emacsw32" - "email" - "email-address" - "email-analytics" - "email-attachments" - "email-bounces" - "email-client" - "email-confirmation" - "email-ext" - "email-formats" - "email-forwarding" - "email-headers" - "email-injection" - "email-integration" - "email-notifications" - "email-parsing" - "email-processing" - "email-publisher" - "email-spam" - "email-spec" - "email-templates" - "email-threading" - "email-validation" - "email-verification" - "emailfield" - "emailrelay" - "embarrassingly-parallel" - "embed" - "embed-tag" - "embeddable" - "embedded" - "embedded-browser" - "embedded-code" - "embedded-container" - "embedded-control" - "embedded-database" - "embedded-device" - "embedded-documents" - "embedded-flashplayer" - "embedded-fonts" - "embedded-javascript" - "embedded-jboss" - "embedded-jetty" - "embedded-language" - "embedded-linux" - "embedded-matlab" - "embedded-media" - "embedded-object" - "embedded-osgi" - "embedded-resource" - "embedded-ruby" - "embedded-script" - "embedded-server" - "embedded-sql" - "embedded-tomcat-7" - "embedded-tomcat-8" - "embedded-v8" - "embedded-video" - "embeddedwebserver" - "embedding" - "embedly" - "ember-addon" - "ember-app-kit" - "ember-charts" - "ember-cli" - "ember-controllers" - "ember-data" - "ember-i18n" - "ember-linkto" - "ember-model" - "ember-observable" - "ember-old-router" - "ember-query-params" - "ember-qunit" - "ember-rails" - "ember-router" - "ember-select" - "ember-simple-auth" - "ember-table" - "ember-testing" - "ember-tools" - "ember.js" - "ember.js-2.0" - "ember.js-view" - "ember.select" - "emberfire" - "emblem.js" - "emblems" - "embos" - "emboss" - "embperl" - "embree" - "emc" - "emf" - "emf-compare" - "emftext" - "emgu" - "emgucv" - "emit" - "emitmapper" - "eml" - "emma" - "emmake" - "emmarun" - "emmet" - "emobile" - "emoji" - "emokit" - "emoticons" - "emotion" - "emplace" - "emplacement" - "empty-class" - "empty-list" - "empty-range" - "empty-string" - "emptydatatext" - "empy" - "emr" - "ems" - "emscripten" - "emulate" - "emulation" - "emulator" - "emv" - "enable-if" - "enaml" - "encapsulation" - "enchant" - "enclojure" - "encode" - "encoder" - "encodeuricomponent" - "encoding" - "encog" - "encrypted" - "encryption" - "encryption-asymmetric" - "encryption-symmetric" - "enctype" - "end-of-life" - "end-of-line" - "end-tag" - "end-to-end" - "end-user" - "endeca" - "endeca-workbench" - "ender" - "endianness" - "endl" - "endlessadapter" - "endlessscroll" - "endorsed" - "endpoint" - "endpoint-address" - "endpointbehavior" - "endpointnotfoundexception" - "endpoints" - "endpoints-proto-datastore" - "ends" - "ends-with" - "energy" - "energysmart" - "enet" - "enfinity" - "enforcement" - "engine.io" - "engineyard" - "engopen" - "enhanced-for-loop" - "enhanced-rich-text" - "enhancement" - "enide" - "enigma2" - "enlive" - "enomem" - "enquire.js" - "enrich-my-library" - "enscript" - "ensemble-learning" - "ensime" - "entab-detab" - "enter" - "enterframeevent" - "enterprise" - "enterprise-architect" - "enterprise-distribution" - "enterprise-guide" - "enterprise-integration" - "enterprise-library" - "enterprise-library-4.1" - "enterprise-library-5" - "enterprise-library-6" - "enterprise-manager" - "enterprise-portal" - "enterprise-web-library" - "enterprisedb" - "enterprisedt" - "enterpriseone" - "enthought" - "entities" - "entitlements" - "entity" - "entity-attribute-value" - "entity-bean" - "entity-data-model" - "entity-framework" - "entity-framework-4" - "entity-framework-4.1" - "entity-framework-4.2" - "entity-framework-4.3" - "entity-framework-4.3.1" - "entity-framework-5" - "entity-framework-6" - "entity-framework-6.1" - "entity-framework-7" - "entity-framework-ctp5" - "entity-framework-designer" - "entity-framework-extended" - "entity-framework-mapping" - "entity-framework-oss" - "entity-functions" - "entity-group-transactions" - "entity-groups" - "entity-model" - "entity-relationship" - "entity-relationship-model" - "entity-sql" - "entity-system" - "entitycollection" - "entityconnection" - "entitydatasource" - "entityframework.extended" - "entitykey" - "entitylisteners" - "entitymanager" - "entityobject" - "entityreference" - "entityresolver" - "entityset" - "entityspaces" - "entlib-logging" - "entourage" - "entropy" - "entry" - "entry-point" - "entryelement" - "entrypointnotfoundexcept" - "entryset" - "enum-class" - "enum-flags" - "enum-map" - "enumerable" - "enumerable.range" - "enumerate" - "enumerated-types" - "enumeration" - "enumerator" - "enumerators" - "enumerize" - "enums" - "enumset" - "enunciate" - "env" - "envdte" - "envelope" - "envi" - "environment" - "environment-modules" - "environment-variables" - "environments" - "envision.js" - "envjs" - "envoy" - "enyim" - "enyim.caching" - "enyo" - "eof" - "eoferror" - "eofexception" - "eol" - "eoserror" - "eot" - "eoutofresources" - "epad" - "epd-python" - "epel" - "epf" - "epg" - "ephesoft" - "epic" - "epiceditor" - "epipe" - "epiphany" - "episerver" - "episerver-6" - "episerver-6-r2" - "episerver-7" - "episerver-mirroring-2.0" - "episerver-relate+" - "epl" - "epm" - "epmd" - "epoch" - "epochx" - "epoll" - "epollet" - "epp" - "epplus" - "eps" - "epsg" - "epsilon" - "epson" - "ept" - "epub" - "epub.js" - "epub3" - "epublib" - "epydoc" - "eqatec" - "equal-heights" - "equal-range" - "equality" - "equality-operator" - "equalizer" - "equals" - "equals-operator" - "equalsverifier" - "equation" - "equation-solving" - "equational-reasoning" - "equations" - "equinox" - "equivalence" - "equivalence-classes" - "equivalent" - "er-diagram" - "er-diagrams" - "er-modeling" - "erase" - "erase-remove-idiom" - "eraser" - "erasure" - "erasure-code" - "erazor" - "erb" - "erd" - "erector" - "ereg" - "ereg-replace" - "eregi" - "ergoemacs" - "ergonomics" - "eric-ide" - "eric-martin-modal" - "erl" - "erl-interface" - "erlang" - "erlang-driver" - "erlang-escript" - "erlang-heart" - "erlang-ports" - "erlang-shell" - "erlang-stdlib" - "erlangweb" - "erlide" - "erlog" - "erlydb" - "erp" - "erpconnect" - "erpnext" - "errai" - "errata" - "errbit" - "errno" - "error-checking" - "error-code" - "error-codes" - "error-console" - "error-correction" - "error-detection" - "error-handling" - "error-kernel" - "error-list" - "error-log" - "error-logging" - "error-messages-for" - "error-recovery" - "error-reporting" - "error-suppression" - "errorcollector" - "errordocument" - "errorformat" - "errorlevel" - "errorplacement" - "errorprovider" - "errortemplate" - "erubis" - "eruby" - "erwin" - "es-hyperneat" - "es5-shim" - "es6-promise" - "esapi" - "esb" - "esb-toolkit-2.0" - "esb-toolkit-2.1" - "esc-key" - "escalante" - "escalation" - "escape-analysis" - "escape-server" - "escapestring" - "escaping" - "escript" - "escrow" - "esent" - "eshell" - "esi" - "esky" - "eslint" - "esoteric-languages" - "esp" - "espeak" - "esper" - "espn" - "espresso" - "esprima" - "esprima.js" - "esql" - "esqueleto" - "esri" - "esri-arc-engine" - "ess" - "essbase" - "estimation" - "estimote" - "esx" - "esxi" - "etag" - "etags" - "etapestry" - "etc-keeper" - "etcd" - "etch" - "etcpasswd" - "ethercat" - "ethernet" - "etherpad" - "ethics" - "etilqs" - "etiquette" - "etl" - "etrade-api" - "ets" - "etsy" - "etw" - "etw-eventsource" - "etymology" - "eucalyptus" - "euclidean-distance" - "eula" - "euler-angles" - "eulers-number" - "eulersharp" - "eunit" - "eurekalog" - "euro" - "eval" - "eval-after-load" - "eval-paste" - "eval-when" - "evaluate" - "evaluation" - "evaluation-function" - "evaluation-strategy" - "evaluator" - "evaporate.js" - "evb" - "evc" - "evc4" - "evdev" - "eve" - "evenly" - "event-b" - "event-based-components" - "event-based-programming" - "event-binding" - "event-bubbling" - "event-bus" - "event-capturing" - "event-context" - "event-delegation" - "event-dispatch-thread" - "event-dispatching" - "event-driven" - "event-driven-design" - "event-flow" - "event-gateway" - "event-handling" - "event-hooking" - "event-id" - "event-listener" - "event-listeners" - "event-log" - "event-loop" - "event-passthrough" - "event-propagation" - "event-queue" - "event-receiver" - "event-routing" - "event-sourcing" - "event-store" - "event-stream" - "event-tracking" - "event-triggers" - "event-validation" - "event-viewer" - "event-wait-handle" - "eventaggregator" - "eventargs" - "eventbrite" - "evented-io" - "eventemitter" - "eventhandler" - "eventkit" - "eventlet" - "eventlistener" - "eventlistenerlist" - "eventlog-source" - "evently" - "eventmachine" - "eventqueue" - "eventreceiver" - "events" - "eventsetter" - "eventtocommand" - "eventtrigger" - "eventtriggers" - "eventual-consistency" - "eventvalidation" - "eventviewer" - "evercookie" - "everlive" - "evernote" - "evernote-clearly" - "everyauth" - "everyplay" - "evict" - "evil-dicom" - "evil-mode" - "evo" - "evolus-pencil" - "evolutionary-algorithm" - "evopdf" - "evosuite" - "evp-cipher" - "ewmh" - "ews" - "ews-managed-api" - "ewsjavaapi" - "ex" - "ex-mode" - "exact-match" - "exact-synergy-enterprise" - "exacttarget" - "exadata" - "examdiff" - "examine" - "exasolution" - "exc-bad-access" - "exc-bad-instruction" - "excanvas" - "exceed" - "excel" - "excel-2000" - "excel-2002" - "excel-2003" - "excel-2007" - "excel-2008" - "excel-2010" - "excel-2011" - "excel-2013" - "excel-97" - "excel-addins" - "excel-automation" - "excel-charts" - "excel-dna" - "excel-export" - "excel-external-data" - "excel-formula" - "excel-import" - "excel-indirect" - "excel-interop" - "excel-template" - "excel-udf" - "excel-vba" - "excel-vba-mac" - "excel-web-query" - "exceldatareader" - "excellibrary" - "excelpackage" - "except" - "exception" - "exception-code" - "exception-handling" - "exception-logging" - "exception-notification" - "exception-notifier" - "exception-safe" - "exception-safety" - "exception-specification" - "exceptionhandler" - "exceptionhub" - "excercises" - "exchange-management-shell" - "exchange-server" - "exchange-server-2003" - "exchange-server-2007" - "exchange-server-2010" - "exchange-server-2013" - "exchange-transport-agents" - "exchangewebservices" - "exclude" - "excludes" - "excluding" - "exclusion" - "exclusive" - "exclusive-arc" - "excon" - "exe" - "exe4j" - "exec" - "exec-bad-access" - "exec-maven-plugin" - "execcommand" - "execfile" - "execjs" - "executable" - "executable-format" - "executable-jar" - "executable-path" - "executable-php" - "execute" - "execute-as" - "execute-immediate" - "execute360" - "executefetchrequest" - "executemany" - "executenonquery" - "executequery" - "executereader" - "executescalar" - "executestoredcommand" - "executestorequery" - "execution" - "execution-time" - "executioncontext" - "executionengineexception" - "executionexception" - "executionpolicy" - "executiontimeout" - "executives" - "executor" - "executors" - "executorservice" - "execv" - "execve" - "execvp" - "exen" - "exercism" - "exhaustive" - "exi" - "exif" - "exiflib" - "exiftool" - "exifworks" - "exim" - "exim4" - "exist-db" - "existential-operator" - "existential-type" - "exists" - "exit" - "exit-code" - "exit-handler" - "exitstatus" - "exiv2" - "exmpp" - "exoplayer" - "exp" - "expand" - "expandable" - "expandablelistadapter" - "expandablelistview" - "expander" - "expando" - "expandometaclass" - "expandoobject" - "expansion" - "expansion-files" - "expat-parser" - "expect" - "expect.js" - "expecta" - "expectations" - "expected-exception" - "expectj" - "expensive-resources" - "experience-manager" - "experimental-design" - "expert-system" - "expired-cookies" - "expired-sessions" - "expires-header" - "explain" - "explain-plan" - "explicit" - "explicit-constructor" - "explicit-conversion" - "explicit-destructor-call" - "explicit-implementation" - "explicit-instantiation" - "explicit-intent" - "explicit-interface" - "explicit-specialization" - "explode" - "exploded" - "exploit" - "exploratory" - "explorer" - "explorer-integration" - "exponent" - "exponential" - "exponential-distribution" - "exponentiation" - "exponents" - "export" - "export-to-csv" - "export-to-excel" - "export-to-pdf" - "export-to-text" - "export-to-word" - "export-to-xml" - "exporter" - "exporting" - "exposed" - "expr" - "express" - "express-4" - "express-checkout" - "express-generator" - "express-jwt" - "express-resource" - "express.io" - "express.js" - "expression" - "expression-blend" - "expression-blend-2" - "expression-blend-3" - "expression-blend-4" - "expression-blend-5" - "expression-design" - "expression-encoder" - "expression-encoder-4" - "expression-encoder-sdk" - "expression-evaluation" - "expression-sketchflow" - "expression-studio" - "expression-templates" - "expression-trees" - "expression-web" - "expressionbuilder" - "expressionengine" - "expressionvisitor" - "expresso" - "expresso-store" - "exrm" - "exslt" - "ext-designer" - "ext-direct" - "ext-gwt" - "ext-panel" - "ext.list" - "ext.net" - "ext2" - "ext3" - "ext4" - "extaudiofile" - "extaudiofileread" - "extbase" - "extconf.rb" - "extend" - "extended-ascii" - "extended-events" - "extended-precision" - "extended-procedures" - "extended-properties" - "extender" - "extendercontrol" - "extending" - "extending-classes" - "extends" - "extendscript" - "extensibility" - "extensible" - "extensible-records" - "extensible-storage-engine" - "extension-builder3" - "extension-function" - "extension-methods" - "extension-modules" - "extension-objects" - "extern" - "extern-c" - "external" - "external-accessory" - "external-application" - "external-assemblies" - "external-contenttype" - "external-dependencies" - "external-display" - "external-js" - "external-library" - "external-links" - "external-methods" - "external-process" - "external-script" - "external-sorting" - "external-tables" - "external-tools" - "external-url" - "externalcontext" - "externalinterface" - "externalizable" - "externalizing" - "externals" - "extjs" - "extjs-chart" - "extjs-form" - "extjs-grid" - "extjs-mvc" - "extjs-stores" - "extjs2" - "extjs3" - "extjs4" - "extjs4.1" - "extjs4.2" - "extjs5" - "extra" - "extract" - "extract-error-message" - "extract-value" - "extraction" - "extraction-operator" - "extractor" - "extranet" - "extrapolation" - "extras" - "extreme-feedback-devices" - "extreme-programming" - "extrinsic-parameters" - "exuberant-ctags" - "eye-detection" - "eye-tracking" - "eyecon-plugin" - "eyed3" - "eyeql" - "ez-letter" - "ezapi" - "ezibyte" - "ezpdf" - "ezpublish" - "ezsql" - "f#" - "f#-3.0" - "f#-3.1" - "f#-async" - "f#-charting" - "f#-data" - "f#-fake" - "f#-interactive" - "f#-make" - "f#-powerpack" - "f#-scripting" - "f#-unquote" - "f-script" - "f2c" - "f2py" - "f5" - "fab" - "fable" - "fabric" - "fabric-twitter" - "fabric8" - "fabrication-gem" - "fabricjs" - "facade" - "facade-pattern" - "face-detection" - "face-recognition" - "facebook" - "facebook-access-token" - "facebook-actionscript-api" - "facebook-ads-api" - "facebook-android-sdk" - "facebook-app-center" - "facebook-app-requests" - "facebook-app-settings" - "facebook-apps" - "facebook-as3-api" - "facebook-audience-network" - "facebook-authentication" - "facebook-authorization" - "facebook-batch-request" - "facebook-c#-sdk" - "facebook-canvas" - "facebook-chat" - "facebook-checkins" - "facebook-comments" - "facebook-credits" - "facebook-events" - "facebook-fanpage" - "facebook-fbml" - "facebook-field-expansion" - "facebook-fql" - "facebook-friends" - "facebook-game-groups" - "facebook-graph" - "facebook-graph-api" - "facebook-graph-api-v2.0" - "facebook-graph-api-v2.1" - "facebook-graph-api-v2.2" - "facebook-group" - "facebook-hacker-cup" - "facebook-iframe" - "facebook-insights" - "facebook-invite" - "facebook-invite-friends" - "facebook-ios-sdk" - "facebook-java-api" - "facebook-java-sdk" - "facebook-javascript-sdk" - "facebook-like" - "facebook-likebox" - "facebook-login" - "facebook-messages" - "facebook-messenger" - "facebook-node-sdk" - "facebook-oauth" - "facebook-opengraph" - "facebook-page" - "facebook-payment-dialog" - "facebook-payments" - "facebook-permissions" - "facebook-php-sdk" - "facebook-pop" - "facebook-public-feed-api" - "facebook-read-only-api" - "facebook-recommendations" - "facebook-requests" - "facebook-rest-api" - "facebook-scribe" - "facebook-sdk-3.0" - "facebook-sdk-3.1" - "facebook-sdk-3.14.x" - "facebook-sdk-4.0" - "facebook-sdk-ios" - "facebook-share" - "facebook-sharer" - "facebook-social-plugins" - "facebook-stream-story" - "facebook-tabs" - "facebook-tag" - "facebook-test-users" - "facebook-timeline" - "facebook-ui" - "facebook-unity-sdk" - "facebook-wall" - "facebook-widgets" - "facebook-winjs-sdk" - "facebooker" - "facebooker2" - "facebooktoolkit" - "facebox" - "facelets" - "facepile" - "facepy" - "faces-config" - "faces-flow" - "facescontext" - "facesservlet" - "facet" - "facet-wrap" - "faceted-search" - "facetime" - "facets" - "facilities" - "fact" - "fact++" - "fact-table" - "facter" - "factor-analysis" - "factor-lang" - "factorial" - "factories" - "factoring" - "factorization" - "factors" - "factory" - "factory-boy" - "factory-girl" - "factory-method" - "factory-pattern" - "factual" - "fad" - "fade" - "fadein" - "fadeout" - "fadeto" - "fading" - "fail-fast" - "fail-fast-fail-early" - "fail2ban" - "failed-installation" - "failed-to-load-viewstate" - "failing-tests" - "failonerror" - "failover" - "failovercluster" - "failsafe" - "failure-slice" - "fairplay" - "fake-repositories" - "fakeiteasy" - "fakeo" - "faker" - "fakesmile" - "fakevim" - "fakeweb" - "fal" - "falcon" - "falconframework" - "falconview" - "fall-through" - "fallback" - "fallbackvalue" - "false-language" - "false-positive" - "false-sharing" - "family-tree" - "famo.us" - "famono" - "famous-angular" - "fan-page" - "fancybox" - "fancybox-2" - "fancyform" - "fancytree" - "fancyupload" - "fandjango" - "fann" - "fannj" - "fanotify" - "fanstatic" - "fantom" - "fapws3" - "far" - "faraday" - "faraday-oauth" - "farbtastic" - "fare" - "farm-solution" - "farpoint" - "farpoint-spread" - "farseer" - "farsi" - "fasm" - "fast-app-switching" - "fast-enumeration" - "fast-esp" - "fast-fail" - "fast-forward" - "fast-lexical-analyzer" - "fast-protocol" - "fast-vector-highlighter" - "fasta" - "fastagi" - "fastcall" - "fastcgi" - "fastcgi++" - "fastcgi-mono-server" - "fastclick" - "fastclick.js" - "fastercsv" - "fasterxml" - "fastexport" - "fastflow" - "fastformat" - "fastfunc" - "fastinfoset" - "fastjson" - "fastmember" - "fastmm" - "fastpdfkit" - "fastreport" - "fastscroll" - "fastsearch" - "fastzip" - "fat" - "fat-binaries" - "fat-client" - "fat-free-framework" - "fat16" - "fat32" - "fatal-error" - "fatwire" - "fault" - "fault-tolerance" - "fault-tolerant-heap" - "faultcontract" - "faulted" - "faultexception" - "faults" - "faunus" - "favicon" - "favorite" - "favorites" - "fax" - "fay" - "faye" - "fb-graph" - "fb.ui" - "fb2" - "fba" - "fbconnect" - "fbdialogs" - "fbjs" - "fbml" - "fbnativedialogs" - "fbo" - "fbrequest-form" - "fbwebdialogs" - "fbx" - "fcbkcomplete" - "fcgi" - "fcgid" - "fciv" - "fckeditor" - "fcl" - "fclose" - "fcmp" - "fcntl" - "fcsh" - "fdb" - "fdd" - "fdesetup" - "fdf" - "fdisk" - "fdo" - "fdopen" - "fdr" - "fdt" - "feasibility" - "featherlight.js" - "feature-activation" - "feature-branch" - "feature-detection" - "feature-driven" - "feature-envy" - "feature-extraction" - "feature-file" - "feature-receivers" - "feature-selection" - "feature-tracking" - "feature-upgrade" - "featured" - "federated" - "federated-identity" - "federated-storage-engine" - "federated-table" - "federation" - "fedex" - "fedex-api" - "fedex-shipping" - "fedext" - "fedora" - "fedora-commons" - "fedora-core" - "fedora10" - "fedora11" - "fedora12" - "fedora16" - "fedora20" - "feed" - "feed-aggregator" - "feed-forward" - "feedback" - "feedback-loop" - "feedbackpanel" - "feedburner" - "feedjira" - "feedly" - "feedparser" - "feeds" - "feedtools" - "feedzirra" - "fees" - "feincms" - "feistel-cipher" - "femtolisp" - "fence" - "fence-plots" - "fencepost" - "fennec" - "fenv" - "fenwick-tree" - "feof" - "ferret" - "ferror" - "fest" - "fest-assert" - "festival" - "fetch" - "fetchall" - "fetched-properties" - "fetched-property" - "fetching-strategy" - "fetchmail" - "fetchxml" - "fexpect" - "fexpr" - "ff" - "ffbase" - "ffdshow" - "ffi" - "fflush" - "ffmpeg" - "ffmpeg-php" - "ffprobe" - "ffserver" - "fft" - "fftpack" - "fftw" - "fgallery" - "fgetc" - "fgetcsv" - "fgetpos" - "fgets" - "fgrep" - "fhs" - "fhs-twitter-engine" - "fiber" - "fibers" - "fibonacci" - "fibonacci-heap" - "fibplus" - "fiddler" - "fiddler-dev" - "fiddlercore" - "field" - "field-description" - "field-device-tool" - "field-names" - "field-with-errors" - "fieldbinding" - "fieldcodes" - "fieldcollapsing" - "fieldeditor" - "fieldinfo" - "fieldlist" - "fieldmanager" - "fieldofview" - "fields-for" - "fieldset" - "fieldtype" - "fifo" - "fig" - "figlet" - "figure" - "figures" - "filab" - "file" - "file-access" - "file-association" - "file-attributes" - "file-browser" - "file-comparison" - "file-connection" - "file-conversion" - "file-copying" - "file-dependancy" - "file-descriptor" - "file-diffs" - "file-download" - "file-encodings" - "file-exists" - "file-extension" - "file-find" - "file-format" - "file-generation" - "file-get-contents" - "file-globs" - "file-handling" - "file-icons" - "file-import" - "file-in-use" - "file-inclusion" - "file-io" - "file-io-permissions" - "file-link" - "file-listing" - "file-location" - "file-locking" - "file-management" - "file-manager" - "file-manipulation" - "file-mapping" - "file-monitoring" - "file-move" - "file-moving" - "file-not-found" - "file-organization" - "file-ownership" - "file-permissions" - "file-pointer" - "file-processing" - "file-properties" - "file-read" - "file-recovery" - "file-reference-url" - "file-rename" - "file-search" - "file-security" - "file-sharing" - "file-storage" - "file-structure" - "file-transfer" - "file-traversal" - "file-type" - "file-upload" - "file-uri" - "file-watcher" - "file-writing" - "file.exists" - "file.readalllines" - "fileapi" - "fileappender" - "filebrowse" - "filebuf" - "filechannel" - "filechooser" - "filecompare" - "filecontentresult" - "fileconveyor" - "filedialog" - "filedrop.js" - "filefield" - "filefilter" - "filegroup" - "filehandle" - "filehandler" - "filehash" - "filehelpers" - "fileinfo" - "fileinput" - "fileinputstream" - "fileiopermission" - "fileitem" - "filelist" - "fileloadexception" - "filelock" - "filemaker" - "filemap" - "filemapprovider" - "filemerge" - "filemq" - "filemtime" - "filenames" - "filenet" - "filenet-bpf" - "filenet-content-engine" - "filenet-image-services" - "filenet-p8" - "filenet-panagon" - "filenet-process-engine" - "filenet-workplace" - "filenotfoundexception" - "fileobserver" - "fileopendialog" - "fileopenpicker" - "fileoutputstream" - "fileparse" - "fileparsing" - "filepath" - "filepattern" - "filepicker" - "filepicker.io" - "filereader" - "filereference" - "filereferencelist" - "fileresult" - "filesavepicker" - "fileserver" - "fileset" - "fileshare" - "filesize" - "fileslurp" - "filesort" - "filesplitting" - "filestream" - "filestreamresult" - "filestreams" - "filestructure" - "filesystem-access" - "filesystem-browser" - "filesystem-events" - "filesysteminfo" - "filesystemobject" - "filesystems" - "filesystemwatcher" - "filetable" - "filetime" - "filetree" - "fileupdate" - "fileutils" - "filevault" - "fileversioninfo" - "filevisitor" - "filewalker" - "filewriter" - "filezilla" - "fill" - "fill-parent" - "fill-pointer" - "fillchar" - "fillfactor" - "filmstrip" - "filter" - "filter-driver" - "filter-input" - "filter-iterator" - "filter-var" - "filterattribute" - "filtered-index" - "filtered-lookup" - "filtered-statistics" - "filterfactory" - "filterfunction" - "filtering" - "filterrific" - "finagle" - "final" - "final-class" - "finalbuilder" - "finalcut" - "finalization" - "finalize" - "finalizer" - "finally" - "finance" - "financial" - "finatra" - "finch" - "find" - "find-all-references" - "find-by-sql" - "find-grep" - "find-in-set" - "find-my-mobile" - "find-occurrences" - "findall" - "findancestor" - "findandmodify" - "findbugs" - "findby" - "findcontrol" - "finddialog" - "finder" - "finder-sql" - "findersync" - "findfirst" - "findinfiles" - "findname" - "findstr" - "findviewbyid" - "findwindow" - "findwindowex" - "fine-uploader" - "finereader" - "finger-tree" - "fingerprint" - "fingerprinting" - "finite-automata" - "finite-element-analysis" - "finite-field" - "finite-group-theory" - "finite-state-machine" - "fink" - "fins" - "fiona" - "fips" - "fipy" - "fire-and-forget" - "firebase" - "firebase-android" - "firebase-hosting" - "firebase-security" - "firebasesimplelogin" - "firebird" - "firebird-embedded" - "firebird1.5" - "firebird2.1" - "firebird2.5" - "firebox" - "firebreath" - "firebug" - "firebug-lite" - "firebug1.5" - "firedac" - "firefly-mv" - "firefox" - "firefox-10" - "firefox-12" - "firefox-16" - "firefox-22" - "firefox-3" - "firefox-5" - "firefox-8" - "firefox-9" - "firefox-addon" - "firefox-addon-restartless" - "firefox-addon-sdk" - "firefox-aurora" - "firefox-developer-edition" - "firefox-developer-tools" - "firefox-driver" - "firefox-os" - "firefox-sidebar" - "firefox11" - "firefox2" - "firefox3.5" - "firefox3.6" - "firefox4" - "firefox6" - "firefox7" - "firemonkey" - "firemonkey-fm2" - "firemonkey-fm3" - "firemonkey-style" - "firepad" - "firepath" - "firephp" - "firewall" - "firewall-access" - "firewatir" - "firewire" - "fireworks" - "firing" - "firm-real-time" - "firmata" - "firmware" - "first-chance-exception" - "first-child" - "first-class" - "first-class-functions" - "first-class-module" - "first-level-cache" - "first-order-logic" - "first-responder" - "first-time" - "firstdata" - "fiscal" - "fish" - "fish-shell" - "fisheye" - "fishpig" - "fit-framework" - "fit-protocol" - "fitbi4j" - "fitbit" - "fitbounds" - "fitch-proofs" - "fitlibraryweb" - "fitness" - "fitnesse" - "fitnesse-slim" - "fits" - "fitsharp" - "fittextjs" - "fitvids" - "fivestar" - "fiware" - "fiware-orion" - "fiware-wirecloud" - "fix" - "fixed" - "fixed-format" - "fixed-header-tables" - "fixed-length-file" - "fixed-length-record" - "fixed-point" - "fixed-size-types" - "fixed-statement" - "fixed-width" - "fixeddocument" - "fixeddocumentsequence" - "fixedpage" - "fixheadertable" - "fixmetodo" - "fixnum" - "fixture" - "fixtures" - "fixup" - "fizzbuzz" - "fizzler" - "fjcore" - "fla" - "flac" - "flacbox" - "flags" - "flajaxian" - "flaka" - "flake8" - "flambe" - "flame" - "flamerobin" - "flamingo" - "flann" - "flannbasedmatcher" - "flappy-bird-clone" - "flare" - "flare3d" - "flartoolkit" - "flascc" - "flash" - "flash-10" - "flash-8" - "flash-autoplay" - "flash-block" - "flash-builder" - "flash-builder4.5" - "flash-cc" - "flash-component" - "flash-cs3" - "flash-cs4" - "flash-cs5" - "flash-cs5.5" - "flash-cs6" - "flash-html-interaction" - "flash-ide" - "flash-integration" - "flash-javascript-api" - "flash-media-server" - "flash-memory" - "flash-message" - "flash-player" - "flash-player-11" - "flash-scope" - "flash-v3-components" - "flash-video" - "flashback" - "flashbuilder4" - "flashcanvas" - "flashcatalyst" - "flashdevelop" - "flashing" - "flashlight" - "flashlite" - "flashlog" - "flashmedialiveencoder" - "flashmenu" - "flashmessenger" - "flashpaper" - "flashplayer-10" - "flashplayer-9" - "flashplayer-debug" - "flashsocket" - "flashvars" - "flashwindowex" - "flask" - "flask-admin" - "flask-assets" - "flask-autoindex" - "flask-blueprint" - "flask-cache" - "flask-extensions" - "flask-flatpages" - "flask-httpauth" - "flask-kvsession" - "flask-login" - "flask-mail" - "flask-mega-tutorial" - "flask-migrate" - "flask-mongoengine" - "flask-oauthlib" - "flask-peewee" - "flask-principal" - "flask-restful" - "flask-restless" - "flask-script" - "flask-security" - "flask-socketio" - "flask-sockets" - "flask-sqlalchemy" - "flask-superadmin" - "flask-testing" - "flask-whooshee" - "flask-wtforms" - "flat" - "flat-file" - "flatassembler" - "flatbuffers" - "flatiron" - "flatiron.js" - "flatlab" - "flatmap" - "flatopc" - "flatten" - "flattr" - "flatui" - "flawed-concept" - "flee" - "fleetdb" - "flesch-kincaid" - "flex" - "flex++" - "flex-actionbar" - "flex-builder-3" - "flex-charting" - "flex-charts" - "flex-datagrid" - "flex-lexer" - "flex-mobile" - "flex-mojos" - "flex-monkey" - "flex-pmd" - "flex-skins" - "flex2" - "flex3" - "flex4" - "flex4.10" - "flex4.5" - "flex4.6" - "flex4.7" - "flexbox" - "flexbuilder" - "flexc++" - "flexcover" - "flexgrid" - "flexibility" - "flexible-array-member" - "flexible-type" - "flexicious" - "flexigrid" - "flexjs" - "flexjson" - "flexlm" - "flexmock" - "flexmojos" - "flexpaper" - "flexslider" - "flextable" - "flexunit" - "flexunit4" - "flickable" - "flicker" - "flickr" - "flickr-api" - "flickrj" - "flightpath" - "flightphp" - "flingo" - "flip" - "flip-flop" - "flip3d" - "flipboard" - "flipclock" - "flipimageview" - "flipkart" - "flippant" - "flipper" - "flippy" - "flipside" - "flipview" - "flir" - "flite" - "flixel" - "flkautolayout" - "floatbuffer" - "floating" - "floating-accuracy" - "floating-action-button" - "floating-ip" - "floating-point" - "floating-point-conversion" - "floating-point-exceptions" - "floating-point-precision" - "flock" - "flockdb" - "flood-fill" - "flooding" - "floor" - "floppy" - "flops" - "flopsy" - "flot" - "flot.tooltip" - "flotcharts" - "flotr" - "flotr2" - "flourinefx" - "flourishlib" - "flow" - "flow-control" - "flow-diagram" - "flow-js" - "flow-scope" - "flowchart" - "flowdock" - "flowdocument" - "flowdocumentreader" - "flowdocumentscrollviewer" - "flower" - "flowgear" - "flowlang" - "flowlayout" - "flowlayoutpanel" - "flowpane" - "flowpanel" - "flowplayer" - "flowtype" - "floyd-cycle-finding" - "floyd-warshall" - "fltk" - "fluent" - "fluent-assertions" - "fluent-entity-framework" - "fluent-interface" - "fluent-migrator" - "fluent-mongo" - "fluent-nhibernate" - "fluent-nhibernate-mapping" - "fluent-nhibernate-test" - "fluent-ribbon" - "fluent-security" - "fluentautomation" - "fluentcassandra" - "fluentd" - "fluentdata" - "fluenthtml" - "fluentlenium" - "fluentvalidation" - "fluentvalidation-2.0" - "fluid" - "fluid-dynamics" - "fluid-images" - "fluid-layout" - "fluid-mac-app-engine" - "fluidsynth" - "flume" - "flume-ng" - "flume-twitter" - "fluorinefx" - "flup" - "flurry" - "flurry-analytics" - "flush" - "flux" - "flv" - "flvplayback" - "flvplayer" - "flwor" - "flycapture" - "flycheck" - "flying-saucer" - "flymake" - "flyout" - "flyspell" - "flysystem" - "flyway" - "flyweight" - "flyweight-pattern" - "fma" - "fmdb" - "fmi" - "fminsearch" - "fmj" - "fmle" - "fmod" - "fmodf" - "fmpp" - "fms" - "fms3" - "fmtonly" - "fmx" - "fnfilter" - "fnv" - "fo-dicom" - "foaf" - "focus" - "focus-stealing" - "focusable" - "focusin" - "focuslistener" - "focusmanager" - "focusout" - "focusrect" - "focusvisualstyle" - "fody" - "fody-costura" - "fody-propertychanged" - "fody-validar" - "fog" - "fogbugz" - "fogbugz-api" - "fogbugz-on-demand" - "fogbugzpy" - "fold" - "foldable" - "folder" - "folder-permissions" - "folder-security" - "folder-structure" - "folderbrowserdialog" - "folders" - "folding" - "foldleft" - "folksonomy" - "fonemonkey" - "fongo" - "font-awesome" - "font-awesome-3.2" - "font-awesome-4.0.0" - "font-editor" - "font-embedding" - "font-face" - "font-linking" - "font-lock" - "font-lock-mode" - "font-replacement" - "font-scaling" - "font-size" - "font-smoothing" - "fontastic" - "fontconfig" - "fontdeck" - "fontello" - "fontfamily" - "fontforge" - "fontmetrics" - "fonts" - "fontspec" - "foolproof-validation" - "footable" - "footer" - "footnotes" - "footprint" - "fop" - "fopen" - "foq" - "for-attribute" - "for-comprehension" - "for-else" - "for-in-loop" - "for-loop" - "for-xml" - "for-xml-explicit" - "for-xml-path" - "forall" - "force-based-algorithm" - "force-download" - "force-ide" - "force-layout" - "force.com" - "forceclose" - "forced-unwrapping" - "forcing" - "ford-fulkerson" - "foreach" - "foreach-loop-container" - "forecasting" - "forecastr" - "foreground" - "foreground-service" - "foregroundnotification" - "foreign-collection" - "foreign-data-wrapper" - "foreign-key-relationship" - "foreign-keys" - "foreigner" - "forem" - "foreman" - "forerunnerdb" - "forever" - "forex" - "forge" - "forgery" - "forgot-password" - "forio-contour" - "fork" - "fork-join" - "forking" - "forkjoinpool" - "form-alter" - "form-api" - "form-authentication" - "form-builder" - "form-control" - "form-data" - "form-design" - "form-designer" - "form-editing" - "form-fields" - "form-for" - "form-generator" - "form-helpers" - "form-layout" - "form-library" - "form-load" - "form-parameter" - "form-post" - "form-processing" - "form-submit" - "form-validation" - "form-verification" - "form2js.js" - "formal-languages" - "formal-methods" - "formal-semantics" - "formal-verification" - "formalchemy" - "formalize" - "formapi" - "format" - "format-conversion" - "format-patch" - "format-specifiers" - "format-string" - "formatdatetime" - "formatexception" - "formatjs" - "formatmessage" - "formatprovider" - "formatr" - "formats" - "formatted" - "formatted-input" - "formatted-text" - "formatter" - "formatting" - "formborderstyle" - "formbuilder" - "formclosing" - "formcollection" - "formencode" - "formfield" - "formhelper" - "formidable" - "formish" - "formlets" - "formmail" - "formotion" - "formpanel" - "forms" - "forms-authentication" - "formsauthentication" - "formsauthenticationticket" - "formset" - "formsets" - "formsof" - "formstack" - "formtastic" - "formula" - "formula-editor" - "formulas" - "formview" - "formwizard" - "forth" - "fortify" - "fortify-software" - "fortify-source" - "fortrabbit" - "fortran" - "fortran-iso-c-binding" - "fortran2003" - "fortran77" - "fortran90" - "fortran95" - "fortress" - "fortumo" - "fortune" - "forum" - "forum-spam" - "forums" - "forward" - "forward-compatibility" - "forward-declaration" - "forward-delete" - "forward-engineer" - "forward-indexing" - "forward-list" - "forward-reference" - "forward-slash" - "forwarderrorcorrection" - "forwarding" - "forwarding-reference" - "foscommentbundle" - "foselasticabundle" - "foselasticbundle" - "fosfacebookbundle" - "fosoauthserverbundle" - "fosrestbundle" - "foss" - "fossil" - "fosuserbundle" - "foswiki" - "fotoly" - "fotorama" - "fotoware" - "fouc" - "foundation" - "foundation-icon-fonts" - "foundationdb" - "foundationkit" - "fourcc" - "fourier-descriptors" - "foursquare" - "fout" - "fox-toolkit" - "foxit" - "foxit-reader" - "foxitembeddedsdk" - "foxpro" - "foxx" - "foxycart" - "foxyproxy" - "fparsec" - "fpc" - "fpcomplete" - "fpdf" - "fpdi" - "fpga" - "fpic" - "fpmake" - "fppopover" - "fps" - "fpu" - "fputcsv" - "fputs" - "fqdn" - "fql.multiquery" - "fr3dldapbundle" - "fractals" - "fractions" - "fragment" - "fragment-backstack" - "fragment-caching" - "fragment-identifier" - "fragment-lifecycle" - "fragment-shader" - "fragment-tab-host" - "fragment-transitions" - "fragmentation" - "fragmentmanager" - "fragmentpageradapter" - "fragmentstatepageradapter" - "fragmenttransaction" - "frama-c" - "frame" - "frame-grab" - "frame-rate" - "framebuffer" - "framebusting" - "framejs" - "framelayout" - "framemaker" - "framerjs" - "frames" - "frameset" - "frameset-iframe" - "framework-caching" - "framework-design" - "framework-installation" - "framework-migration" - "framework3.5" - "framework7" - "frameworkelement" - "frameworkelementfactory" - "frameworks" - "frank" - "frapi" - "frappe" - "fraud" - "fraud-prevention" - "fread" - "freak" - "freb" - "fredhopper" - "free" - "free-dos" - "free-function" - "free-monad" - "free-theorem" - "free-variable" - "freebase" - "freebase-acre" - "freebasic" - "freebcp" - "freebsd" - "freecad" - "freecap" - "freedesktop.org" - "freefem++" - "freeform" - "freegeoip" - "freeglut" - "freehep" - "freeimage" - "freelancer.com-api" - "freemarker" - "freemat" - "freemind" - "freemium" - "freepascal" - "freepie" - "freeradius" - "freerdp" - "freertos" - "freestanding" - "freeswitch" - "freetds" - "freetext" - "freetextbox" - "freetexttable" - "freetts" - "freetype" - "freetype2" - "freeware" - "freezable" - "freeze" - "freeze-thaw" - "frege" - "french" - "freopen" - "frequency" - "frequency-analysis" - "frequency-distribution" - "frequency-domain" - "freshbooks-api" - "fresnel" - "friend" - "friend-class" - "friend-function" - "friendfeed" - "friendly-id" - "friendly-url" - "friendrequest" - "friendship" - "fringe" - "frm" - "froala" - "frombodyattribute" - "fromcharcode" - "fromfile" - "fromhtml" - "fromkeys" - "front-camera" - "front-controller" - "frontbase" - "frontcontroller" - "frontend" - "frontpage" - "frontpage-extensions" - "froogaloop" - "frozen" - "frozen-columns" - "frozenset" - "frp" - "frustum" - "fs" - "fsc" - "fscanf" - "fschateoasbundle" - "fscheck" - "fsck" - "fscommand" - "fseek" - "fsevents" - "fsfs" - "fsharp-typeclasses" - "fsharp.data" - "fsharp.data.sqlclient" - "fsharpchart" - "fsharpcodeprovider" - "fsharpx" - "fsi" - "fslex" - "fsm" - "fso" - "fsockopen" - "fsshttp" - "fssm" - "fst" - "fstat" - "fstream" - "fsunit" - "fsutil" - "fsyacc" - "fsync" - "ftasync" - "ftdi" - "ftell" - "ftgl" - "ftok" - "ftp" - "ftp-client" - "ftp-server" - "ftp4j" - "ftpes" - "ftplib" - "ftplugin" - "ftps" - "ftputil" - "ftpwebrequest" - "ftpwebresponse" - "ftrace" - "fts3" - "fts4" - "fubumvc" - "fudge" - "fuelcms" - "fuelphp" - "fuelphp-orm" - "fuelphp-routing" - "fuelux" - "fugitive" - "fujitsu" - "fulfillment" - "full-expression" - "full-outer-join" - "full-table-scan" - "full-text-catalog" - "full-text-indexing" - "full-text-search" - "full-trust" - "fullcalendar" - "fullcontact" - "fullname" - "fullpage.js" - "fullrowselect" - "fullscreen" - "fulltext" - "fulltext-index" - "fulltrust" - "fully-qualified-naming" - "funambol" - "func" - "func-delegate" - "funcall" - "function" - "function-address" - "function-approximation" - "function-attributes" - "function-binding" - "function-call" - "function-call-operator" - "function-calls" - "function-composition" - "function-constructor" - "function-coverage" - "function-declaration" - "function-exit" - "function-expression" - "function-handle" - "function-interposition" - "function-literal" - "function-module" - "function-object" - "function-overloading" - "function-overriding" - "function-parameter" - "function-pointers" - "function-points" - "function-prototypes" - "function-query" - "function-signature" - "function-template" - "function-templates" - "function-try-block" - "functional-assignment" - "functional-dependencies" - "functional-interface" - "functional-java" - "functional-programming" - "functional-specifications" - "functional-testing" - "functionality" - "functools" - "functor" - "functx" - "funcunit" - "fundamentals-ts" - "funkload" - "funnelback" - "funnelweb" - "funq" - "funscript" - "fuse" - "fusebox" - "fusedlocationproviderapi" - "fuseesb" - "fusefabric" - "fuseki" - "fuser" - "fusion" - "fusion-log-viewer" - "fusioncharts" - "fusionpbx" - "fusionreactor" - "fuslogvw" - "futex" - "future" - "future-proof" - "futuretask" - "fuzz-testing" - "fuzzer" - "fuzzing" - "fuzzy" - "fuzzy-c-means" - "fuzzy-comparison" - "fuzzy-logic" - "fuzzy-look-up" - "fuzzy-search" - "fuzzyfinder" - "fuzzywuzzy" - "fw1" - "fwrite" - "fxaa" - "fxcomposer" - "fxcop" - "fxcop-customrules" - "fxcopcmd" - "fxforms" - "fxg" - "fxml" - "fxmlloader" - "fxruby" - "fxsave" - "fxsl" - "g++" - "g++-4.7" - "g++4.8" - "g-code" - "g-wan" - "g1" - "g15" - "g1gc" - "g2log" - "g360" - "g729" - "g77" - "gaap" - "gabba" - "gac" - "gacutil" - "gadfly" - "gadget" - "gadgeteer" - "gadgets" - "gadt" - "gae-backends" - "gae-datastore" - "gae-ds-transactions" - "gae-eclipse-plugin" - "gae-module" - "gae-quotas" - "gae-search" - "gae-sessions" - "gae-userservice" - "gae-whitelist" - "gaelyk" - "gaema" - "gaeunit" - "gaia" - "gain" - "gal" - "galaxy" - "galaxy-nexus" - "galaxy-tab" - "galera" - "galileo" - "galleria" - "galleriffic" - "gallery" - "galleryview" - "gallio" - "galois-field" - "galsim" - "gam" - "gambas" - "gambio" - "gambit" - "gambling" - "game-ai" - "game-center" - "game-center-leaderboard" - "game-engine" - "game-loop" - "game-maker" - "game-physics" - "game-theory" - "gameboy" - "gamecanvas" - "gameclosure" - "gamecontroller" - "gamekit" - "gameobject" - "gamepad" - "gamepad-api" - "gameplay3d" - "gamequery" - "gamesalad" - "gaming" - "gamma" - "gamma-distribution" - "gamma-function" - "gammu" - "ganglia" - "ganon" - "gant" - "gantt-chart" - "ganymede" - "gap-system" - "gapi" - "gaps-and-islands" - "gaps-in-data" - "gaps-in-visuals" - "garb-gem" - "garbage" - "garbage-collection" - "gargoyle" - "garmin" - "garnet-os" - "garrys-mod" - "gas" - "gasnet" - "gasp" - "gate" - "gatein" - "gateway" - "gateways" - "gatling" - "gatt" - "gaufrette" - "gauge" - "gaul" - "gaussian" - "gawk" - "gazman-sdk" - "gb2312" - "gba" - "gbk" - "gbm" - "gbxml" - "gcal" - "gcc" - "gcc-4.2" - "gcc-extensions" - "gcc-pedantic" - "gcc-warning" - "gcc3" - "gcc4" - "gcc4.4" - "gcc4.5" - "gcc4.6" - "gcc4.7" - "gcc4.8" - "gcc4.9" - "gccfilter" - "gccgo" - "gcdasyncsocket" - "gcdasyncudpsocket" - "gcdwebserver" - "gchart" - "gchi" - "gcj" - "gcloud" - "gcloud-node" - "gcloud-python" - "gcm" - "gconf" - "gcore" - "gcov" - "gcovr" - "gcutil" - "gcw0" - "gd" - "gd-graph" - "gd2" - "gdal" - "gdata" - "gdata-api" - "gdata-java-client" - "gdata-objectivec-client" - "gdata-python-client" - "gdatadb" - "gdataxml" - "gdb" - "gdb-python" - "gdbinit" - "gdbm" - "gdbserver" - "gdbus" - "gdc" - "gdcm" - "gdi" - "gdi+" - "gdirections" - "gdk" - "gdkpixbuf" - "gdlib" - "gdr" - "gdt" - "gdx" - "geany" - "gearman" - "gears" - "geb" - "geben" - "gecko" - "geckoboard" - "geckofx" - "geckosdk" - "gecode" - "gedcom" - "geddy" - "gedit" - "gedit-plugin" - "gee" - "geektool" - "gegl" - "geiser" - "gem" - "gem-bundler" - "gem5" - "gemalto" - "gembox-spreadsheet" - "gemcutter" - "gemfile" - "gemfile.lock" - "gemfire" - "geminabox" - "gemini" - "gems-in-a-jar" - "gemset" - "gemspecs" - "gemstone" - "gen-class" - "gen-event" - "gen-fsm" - "gen-idea" - "gen-server" - "gen-tcp" - "genbank" - "gendarme" - "genealogy" - "geneos" - "general-network-error" - "general-protection-fault" - "general-purpose-registers" - "generalization" - "generalpasteboard" - "generate-scripts" - "generate-series" - "generated" - "generated-code" - "generated-sql" - "generative" - "generative-art" - "generative-programming" - "generative-testing" - "generator" - "generator-backbone" - "generator-expression" - "generator-functions" - "generator-sql" - "generic-callback" - "generic-class" - "generic-collections" - "generic-constraints" - "generic-exception" - "generic-foreign-key" - "generic-function" - "generic-handler" - "generic-interface" - "generic-jms-ra" - "generic-lambda" - "generic-list" - "generic-method" - "generic-programming" - "generic-relations" - "generic-relationship" - "generic-test" - "generic-type-argument" - "generic-variance" - "generic.xaml" - "genericdao" - "genericprincipal" - "generics" - "genericsetup" - "genero" - "genesis" - "genesys" - "genetic" - "genetic-algorithm" - "genetic-programming" - "genetics" - "geneva-framework" - "geneva-server" - "genexus" - "genexus-dbret" - "genfromtxt" - "genie" - "genome" - "genshi" - "gensim" - "genson" - "genstrings" - "gensym" - "gentoo" - "genuinechannels" - "genymotion" - "genymotion-call" - "genymotion-gps" - "geo" - "geo-replication" - "geo-schema" - "geoalchemy" - "geoalchemy2" - "geoapi" - "geocaching" - "geocode" - "geocodeaddressstring" - "geocoding" - "geocouch" - "geodesic-sphere" - "geodjango" - "geoext" - "geofencing" - "geofire" - "geographic-distance" - "geographical-information" - "geography" - "geohashing" - "geoip" - "geojason" - "geojson" - "geokettle" - "geokit" - "geolocation" - "geom-bar" - "geom-text" - "geomap" - "geometric-arc" - "geometry" - "geometry-class-library" - "geometry-instancing" - "geometry-path" - "geometry-shader" - "geometry-slice" - "geometry-surface" - "geometrydrawing" - "geomview" - "geonames" - "geonetwork" - "geopandas" - "geopoints" - "geopositioning" - "geopy" - "georchestra" - "georgian" - "georss" - "georuby" - "geos" - "geoserver" - "geospatial" - "geotagging" - "geotargetting" - "geotiff" - "geotools" - "geoxml" - "geoxml3" - "gephi" - "gera" - "geraldo" - "geronimo" - "gerrit" - "gerund" - "gervill" - "geshi" - "gesture" - "gesture-recognition" - "gesturedetector" - "gestures" - "get" - "get-childitem" - "get-event-store" - "get-eventlog" - "get-headers" - "get-method" - "get-request" - "getaddrinfo" - "getaddrinfo-a" - "getasync" - "getattr" - "getattribute" - "getattro" - "getboundingclientrect" - "getbuffer" - "getc" - "getcaretpos" - "getch" - "getchar" - "getclientrect" - "getcomputedstyle" - "getconstructor" - "getcustomattributes" - "getcwd" - "getdate" - "getdibits" - "getdirectories" - "getdistance" - "getdrivetype" - "getelementbyid" - "getelementsbyclassname" - "getelementsbyname" - "getelementsbytagname" - "getenv" - "getfeatureinfo" - "getfiles" - "getfileversion" - "getgenerictype" - "gethashcode" - "gethostbyaddr" - "gethostbyname" - "getid3" - "getimagedata" - "getimagesize" - "getitem" - "getjson" - "getlasterror" - "getlastwritetime" - "getlatest" - "getline" - "getmem" - "getmessage" - "getmethod" - "getmodulefilename" - "getopenfilename" - "getopt" - "getopt-long" - "getopts" - "getorders" - "getparameter" - "getpasswd" - "getpicture" - "getpixel" - "getprocaddress" - "getproperties" - "getproperty" - "getpwnam" - "getpwuid" - "getresource" - "getresponse" - "getresponsestream" - "getrusage" - "gets" - "getschema" - "getschematable" - "getscript" - "getselection" - "getsockopt" - "getstate" - "getstring" - "getsystemmetrics" - "getter" - "getter-setter" - "gettext" - "gettickcount" - "gettime" - "gettimeofday" - "gettype" - "geturl" - "getusermedia" - "getview" - "getwindowlong" - "getwritabledatabase" - "gevent" - "gevent-socketio" - "gexperts" - "gf" - "gflags" - "gforge" - "gforth" - "gfortran" - "gfs" - "gfx" - "ggally" - "ggbiplot" - "ggdendro" - "ggmap" - "ggpairs" - "ggplot2" - "ggts" - "ggvis" - "gh-pages" - "gh-unit" - "ghc" - "ghc-api" - "ghc-generics" - "ghc-mod" - "ghc-pkg" - "ghci" - "ghcjs" - "gherkin" - "ghost-blog" - "ghost-installer" - "ghost.py" - "ghost4j" - "ghostdoc" - "ghostdriver" - "ghosts-in-the-machine" - "ghostscript" - "ghostscript.net" - "ghostscriptsharp" - "gibberish" - "gibbon" - "gideros" - "gif" - "giflib" - "gift" - "gigaspaces" - "gige-sdk" - "gigya" - "gii" - "gil" - "gild" - "gilead" - "gimbal" - "gimli" - "gimp" - "gimpfu" - "gimple" - "gin" - "gina" - "ginac" - "ginkgo" - "ginput" - "gio" - "gipc" - "giraffe.js" - "giraph" - "gis" - "gist" - "gist-index" - "git" - "git-add" - "git-alias" - "git-am" - "git-annex" - "git-apply" - "git-archive" - "git-assume-unchanged" - "git-bare" - "git-bash" - "git-bisect" - "git-blame" - "git-branch" - "git-branch-sculpting" - "git-bundle" - "git-checkout" - "git-cherry" - "git-cherry-pick" - "git-clean" - "git-clone" - "git-commands" - "git-commit" - "git-config" - "git-conflict-resolution" - "git-core" - "git-credential-winstore" - "git-cvs" - "git-daemon" - "git-describe" - "git-detached-head" - "git-diff" - "git-diff-tree" - "git-difftool" - "git-extensions" - "git-fast-import" - "git-fetch" - "git-filter" - "git-filter-branch" - "git-flow" - "git-fork" - "git-fsck" - "git-ftp" - "git-gc" - "git-gui" - "git-history-graph" - "git-index" - "git-init" - "git-interactive-rebase" - "git-internals" - "git-log" - "git-ls-files" - "git-ls-tree" - "git-media" - "git-merge" - "git-new-workdir" - "git-non-bare-repository" - "git-notes" - "git-p4" - "git-patch" - "git-plumbing" - "git-post-receive" - "git-pull" - "git-push" - "git-rebase" - "git-reflog" - "git-remote" - "git-repo" - "git-rerere" - "git-reset" - "git-rev-list" - "git-revert" - "git-review" - "git-rewrite-history" - "git-rm" - "git-shell" - "git-show" - "git-slave" - "git-squash" - "git-stage" - "git-stash" - "git-status" - "git-submodules" - "git-subtree" - "git-svn" - "git-tag" - "git-tf" - "git-tfs" - "git-tower" - "git-track" - "git-update-server-info" - "git-verify-pack" - "git-workflow" - "gitattributes" - "gitblit" - "gitbook" - "gitbox" - "giter8" - "gitfs" - "gitg" - "githooks" - "github" - "github-api" - "github-archive" - "github-enterprise" - "github-flavored-markdown" - "github-for-mac" - "github-for-windows" - "github-hub" - "github-mantle" - "github-organizations" - "github-pages" - "github-services" - "github3.py" - "gitignore" - "gitk" - "gitlab" - "gitlab-ci" - "gitlist" - "gitnub" - "gitolite" - "gitorious" - "gitosis" - "gitpython" - "gitsharp" - "gitstack" - "gitweb" - "gitx" - "gitzilla" - "giza++" - "gjs" - "gjslint" - "gkmatch" - "gkmatchmaker" - "gkpeerpickercontroller" - "gkplugin" - "gkscore" - "gksession" - "gksudo" - "gkturnbasedmatch" - "gl-matrix" - "gl-triangle-strip" - "gl868" - "glade" - "glass" - "glass-mapper" - "glass.mapper" - "glassfish" - "glassfish-2.x" - "glassfish-3" - "glassfish-4" - "glassfish-4.1" - "glassfish-embedded" - "glassfish-esb" - "glassfish-webspace" - "glasspane" - "glazedlists" - "glblendfunc" - "glcanvas" - "gldrawarrays" - "gldrawpixels" - "glew" - "glfw" - "glge" - "glib" - "glibc" - "glibmm" - "glide" - "gliffy" - "glimpse" - "glkbaseeffect" - "glkit" - "glktextureloader" - "glkview" - "glload" - "glm" - "glm-math" - "glmnet" - "glob" - "global" - "global-asax" - "global-assembly-cache" - "global-filter" - "global-hotkey" - "global-methods" - "global-namespace" - "global-object" - "global-scope" - "global-state" - "global-temp-tables" - "global-variables" - "global.asa" - "globalcompositeoperation" - "globalevent" - "globalization" - "globalize" - "globalize2" - "globalize3" - "globalplatform" - "globals" - "globalstorage" - "globbing" - "globus-toolkit" - "glog" - "glomosim" - "gloox" - "gloss" - "glossaries" - "glossary" - "glow" - "glowcode" - "glowscript" - "glpk" - "glpointsize" - "glr" - "glreadpixels" - "glrotate" - "glscene" - "glsl" - "glsles" - "glsurfaceview" - "gltail" - "glteximage2d" - "gltools" - "glu" - "glue-framework" - "glui" - "glulookat" - "glusterfs" - "glut" - "glutcreatewindow" - "glx" - "glympse" - "glyph" - "glyph-substitution" - "glyphicons" - "glyphrun" - "gm-xmlhttprequest" - "gmagick" - "gmail" - "gmail-api" - "gmail-contextual-gadgets" - "gmail-gadget" - "gmail-imap" - "gmail-pop" - "gmap.net" - "gmaps4jsf" - "gmaps4rails" - "gmaps4rails2" - "gmaven" - "gmaven-plugin" - "gmcs" - "gmetad" - "gmgridview" - "gmgridviewcell" - "gmisc" - "gml" - "gmlib" - "gmock" - "gmongo" - "gmp" - "gmpy" - "gmsmapview" - "gmt" - "gnash" - "gnat" - "gnat-gps" - "gnip" - "gnm" - "gnokii" - "gnome" - "gnome-3" - "gnome-keyring-daemon" - "gnome-shell" - "gnome-shell-extensions" - "gnome-terminal" - "gnonlin" - "gnu" - "gnu-arm" - "gnu-c++" - "gnu-classpath" - "gnu-cobol" - "gnu-common-lisp" - "gnu-coreutils" - "gnu-fileutils" - "gnu-findutils" - "gnu-global" - "gnu-make" - "gnu-parallel" - "gnu-prolog" - "gnu-screen" - "gnu-smalltalk" - "gnu-sort" - "gnu-toolchain" - "gnu99" - "gnucash" - "gnumeric" - "gnupg" - "gnuplot" - "gnuradio" - "gnus" - "gnustep" - "gnutls" - "gnuwin32" - "go" - "go-back-n" - "go-cd" - "go-channel" - "go-couchbase" - "go-flag" - "go-gtk" - "go-html-template" - "go-interface" - "go-nsq" - "go-statement" - "go-templates" - "go-to-definition" - "go-toolchain" - "go-tools" - "goal" - "goal-tracking" - "goals" - "goamz" - "goangular" - "goatse" - "gob" - "gobject" - "gobject-introspection" - "gocardless" - "goclipse" - "gocql" - "god" - "god-object" - "godaddy" - "godi" - "godoc" - "goertzel-algorithm" - "gof" - "gofmt" - "gogo-shell" - "gogrid" - "goinstall" - "goinstant" - "goinstant-platform" - "goji" - "gojs" - "gold-linker" - "gold-parser" - "goldmine" - "golfscript" - "goliath" - "golint" - "gollum-wiki" - "golog" - "gomock" - "gomoku" - "goo.gl" - "good-dynamics" - "gooddata" - "goodness-of-fit" - "google-account" - "google-ad-manager" - "google-admin-audit-api" - "google-admin-sdk" - "google-admin-settings-api" - "google-advertising-id" - "google-adwords" - "google-ajax" - "google-ajax-api" - "google-ajax-libraries" - "google-ajax-search-api" - "google-alerts" - "google-analytics" - "google-analytics-api" - "google-analytics-sdk" - "google-analytics-v4" - "google-api" - "google-api-client" - "google-api-console" - "google-api-cpp-client" - "google-api-dotnet-client" - "google-api-java-client" - "google-api-js-client" - "google-api-nodejs-client" - "google-api-objc-client" - "google-api-php-client" - "google-api-python-client" - "google-api-ruby-client" - "google-api-timezone" - "google-api-v3" - "google-apis-explorer" - "google-app-engine" - "google-app-engine-java" - "google-app-engine-patch" - "google-app-engine-python" - "google-appliance" - "google-apps" - "google-apps-for-education" - "google-apps-marketplace" - "google-apps-script" - "google-authentication" - "google-authenticator" - "google-authorship" - "google-base" - "google-bigquery" - "google-body-browser" - "google-books" - "google-breakpad" - "google-buzz" - "google-caja" - "google-calendar" - "google-cardboard" - "google-cast" - "google-cdn" - "google-charts-api" - "google-chartwrapper" - "google-checkout" - "google-chrome" - "google-chrome-app" - "google-chrome-devtools" - "google-chrome-extension" - "google-chrome-frame" - "google-chrome-os" - "google-chrome-storage" - "google-client" - "google-closure" - "google-closure-compiler" - "google-closure-libraries" - "google-closure-library" - "google-closure-linter" - "google-closure-stylesheet" - "google-closure-templates" - "google-cloud" - "google-cloud-console" - "google-cloud-dataflow" - "google-cloud-datastore" - "google-cloud-dns" - "google-cloud-endpoints" - "google-cloud-messaging" - "google-cloud-platform" - "google-cloud-print" - "google-cloud-pubsub" - "google-cloud-save" - "google-cloud-sql" - "google-cloud-storage" - "google-code" - "google-code-hosting" - "google-code-jam" - "google-code-prettify" - "google-compute-engine" - "google-contacts" - "google-container-engine" - "google-content-api" - "google-crawlers" - "google-cse" - "google-ctemplate" - "google-custom-search" - "google-data" - "google-data-api" - "google-data-protocol" - "google-datalayer" - "google-datastore" - "google-datatable" - "google-desktop" - "google-desktop-search" - "google-dfp" - "google-diff-match-patch" - "google-direction" - "google-directory-api" - "google-docs" - "google-docs-api" - "google-document-viewer" - "google-domain-api" - "google-doodle" - "google-drive" - "google-drive-android-api" - "google-drive-api" - "google-drive-realtime-api" - "google-drive-sdk" - "google-earth" - "google-earth-plugin" - "google-eclipse-plugin" - "google-email-audit-api" - "google-email-migration" - "google-email-settings-api" - "google-experiments" - "google-feed-api" - "google-finance" - "google-finance-api" - "google-fit" - "google-fit-sdk" - "google-floodlight" - "google-font-api" - "google-form" - "google-friend-connect" - "google-fusion-tables" - "google-gadget" - "google-gauges" - "google-gdk" - "google-gears" - "google-genomics" - "google-genomics-api" - "google-geochart" - "google-geocoder" - "google-geocoding-api" - "google-geolocation" - "google-glass" - "google-go-idea-plugin" - "google-goggles" - "google-groups" - "google-groups-api" - "google-groups-migration" - "google-groups-settings" - "google-hadoop" - "google-hangouts" - "google-health" - "google-http-client" - "google-http-java-client" - "google-ima" - "google-image-search" - "google-inbox" - "google-index" - "google-indoor-maps" - "google-instant" - "google-instant-previews" - "google-java-style" - "google-keep" - "google-language-api" - "google-latitude" - "google-license-manager" - "google-loader" - "google-local-business" - "google-local-search" - "google-login" - "google-maps" - "google-maps-android-api-1" - "google-maps-android-api-2" - "google-maps-api-2" - "google-maps-api-3" - "google-maps-embed" - "google-maps-engine" - "google-maps-engine-lite" - "google-maps-markers" - "google-maps-mobile" - "google-maps-sdk-ios" - "google-maps-styled" - "google-maps-timezone" - "google-mini" - "google-mirror-api" - "google-moderator" - "google-music" - "google-nativeclient" - "google-news" - "google-nexus" - "google-notebook" - "google-now" - "google-oauth" - "google-oauth-java-client" - "google-openid" - "google-pagespeed" - "google-perftools" - "google-photos" - "google-picker" - "google-pie-chart" - "google-places" - "google-places-api" - "google-play" - "google-play-games" - "google-play-services" - "google-play-store" - "google-playground" - "google-plugin-eclipse" - "google-plus" - "google-plus-domains" - "google-plus-one" - "google-plus-signin" - "google-polyline" - "google-prediction" - "google-product-search" - "google-profiles-api" - "google-project-hosting" - "google-project-tango" - "google-provisioning-api" - "google-query-language" - "google-ranking" - "google-reader" - "google-refine" - "google-reflections" - "google-reporting-api" - "google-reseller-api" - "google-rich-snippets" - "google-schemas" - "google-scholar" - "google-search" - "google-search-api" - "google-search-appliance" - "google-shared-contacts" - "google-sheets" - "google-shopping" - "google-shopping-api" - "google-sitemap" - "google-sites" - "google-spanner" - "google-spreadsheet" - "google-spreadsheet-api" - "google-sso" - "google-static-maps" - "google-street-view" - "google-style-guide" - "google-suggest" - "google-swiffy" - "google-tag-manager" - "google-talk" - "google-tasks" - "google-tasks-api" - "google-text-to-speech" - "google-toolbar" - "google-toolbox-for-mac" - "google-translate" - "google-translator-toolkit" - "google-trends" - "google-tv" - "google-url-shortener" - "google-visualization" - "google-voice" - "google-voice-search" - "google-wallet" - "google-wave" - "google-weather-api" - "google-webdriver" - "google-webfonts" - "google-webmaster-tools" - "google-website-optimizer" - "google-widget" - "google.load" - "googlebot" - "googlecl" - "googleglass-tuggableview" - "googleio" - "googlemock" - "googletest" - "googlevis" - "goose" - "gopro" - "gora" - "gorest" - "gorilla" - "gorilla-toolkit" - "gorm" - "gorm-mongodb" - "goroutine" - "gorp" - "gost28147" - "gost3410" - "gost3411" - "gosu" - "gosublime" - "goto" - "gottox" - "gotw" - "gouraud" - "gource" - "goutte" - "government" - "gp" - "gpars" - "gpath" - "gpc" - "gpeasy" - "gperf" - "gperftools" - "gpg" - "gpgme" - "gpgpu" - "gpib" - "gpio" - "gpl" - "gplex" - "gplots" - "gplv3" - "gpo" - "gpolygon" - "gppg" - "gprof" - "gprs" - "gps" - "gps-time" - "gps.net" - "gpsd" - "gpsignaturefile" - "gpu" - "gpu-overdraw" - "gpu-perfstudio" - "gpu-programming" - "gpuimage" - "gpuimagestillcamera" - "gpx" - "gql" - "gqlquery" - "gquery" - "grab" - "graceful" - "graceful-degradation" - "gracenote" - "grackle" - "gradient" - "gradient-descent" - "gradients" - "gradientstop" - "gradle" - "gradle-2" - "gradle-android-test-plugi" - "gradle-custom-plugin" - "gradle-eclipse" - "gradle-plugin" - "gradle-release-plugin" - "gradle-shadow-plugin" - "gradle-tomcat-plugin" - "gradle-tooling-api" - "gradlefx" - "gradlew" - "grads" - "grafana" - "graffiticms" - "grafika" - "grahams-scan" - "grails" - "grails-2.0" - "grails-2.0.4" - "grails-2.1" - "grails-2.2" - "grails-2.3" - "grails-2.4" - "grails-cache" - "grails-config" - "grails-constraints" - "grails-controller" - "grails-domain-class" - "grails-filters" - "grails-hasmany" - "grails-maven" - "grails-orm" - "grails-platform-core" - "grails-plugin" - "grails-plugin-rabbitmq" - "grails-resources-plugin" - "grails-searchable" - "grails-services" - "grails-tomcat-plugin" - "grails-validation" - "grako" - "grammar" - "grammar-kit" - "grammars" - "grand-central-dispatch" - "grandchild" - "graniteds" - "grant" - "granularity" - "grape" - "grape-api" - "grape-entity" - "grapecity" - "graph" - "graph-algorithm" - "graph-coloring" - "graph-databases" - "graph-drawing" - "graph-layout" - "graph-reduction" - "graph-sharp" - "graph-theory" - "graph-tool" - "graph-traversal" - "graph-visualization" - "graphael" - "graphchi" - "graphdiff" - "graphedit" - "grapheme" - "graphene2" - "graphhopper" - "graphic" - "graphic-design" - "graphic-effects" - "graphical-interaction" - "graphical-language" - "graphical-layout-editor" - "graphical-logo" - "graphical-programming" - "graphicex" - "graphicimage" - "graphics" - "graphics2d" - "graphics32" - "graphics3d" - "graphicscontext" - "graphicsmagick" - "graphicspath" - "graphing" - "graphite" - "graphiti" - "graphiti-js" - "graphlab" - "graphml" - "graphstream" - "graphviz" - "grasp" - "grass" - "grass-file" - "grasshopper" - "gravatar" - "gravity" - "gravity-forms-plugin" - "gray-code" - "graylog" - "graylog2" - "grayscale" - "grc-framework" - "greasekit" - "greasemonkey" - "greasyspoon" - "great-circle" - "greatest-common-divisor" - "greatest-n-per-group" - "gree" - "greedy" - "green-threads" - "green-uml" - "greendao" - "greendao-generator" - "greendroid" - "greenfoot" - "greenhills" - "greenhopper" - "greenlets" - "greenmail" - "greenplum" - "greenrobot-eventbus" - "greenscript" - "greensock" - "greensoftware" - "greenspunning" - "gregorian-calendar" - "gremlin" - "grep" - "grepcode" - "grepl" - "grequests" - "gretl" - "gretty" - "greybox" - "grib" - "grid" - "grid-computing" - "grid-layout" - "grid-system" - "gridbaglayout" - "gridcontrol" - "griddler" - "gridex" - "gridextra" - "gridfs" - "gridfs-stream" - "gridgain" - "gridgroupingcontrol" - "gridify" - "gridlayoutmanager" - "gridlength" - "gridlines" - "gridlookupedit" - "gridpane" - "gridpanel" - "gridsplitter" - "gridster" - "gridview" - "gridview-sorting" - "gridviewcolumn" - "gridviewheader" - "gridviewrow" - "gridworld" - "griffin.mvccontrib" - "griffon" - "grimport" - "grinder" - "grip" - "grit" - "gritter" - "grizzly" - "grmm" - "grob" - "groc" - "grocery-crud" - "groebner-basis" - "groff" - "grok" - "groove" - "grooveshark" - "groovlet" - "groovy" - "groovy++" - "groovy-2" - "groovy-2.3" - "groovy-console" - "groovy-eclipse" - "groovy-grab" - "groovy-ldap" - "groovy-sql" - "groovyc" - "groovyclassloader" - "groovydoc" - "groovydsl" - "groovyfx" - "groovysh" - "groovyshell" - "groovyws" - "groundy" - "group" - "group-by" - "group-by-all" - "group-by-time-interval" - "group-concat" - "group-membership" - "group-policy" - "group-project" - "group-summaries" - "groupbox" - "groupchat" - "grouped-collection-select" - "grouped-table" - "grouping" - "groupingcollection" - "grouplayout" - "groupname" - "groupon" - "groupprincipal" - "groups" - "groupstyle" - "groupwise" - "groupwise-maximum" - "grover" - "growl" - "growl-for-windows" - "growlnotify" - "growth" - "growth-rate" - "grub" - "gruber" - "gruff" - "grunt" - "grunt-angular-gettext" - "grunt-build-control" - "grunt-cli" - "grunt-concurrent" - "grunt-connect" - "grunt-connect-proxy" - "grunt-contrib-coffee" - "grunt-contrib-compass" - "grunt-contrib-compress" - "grunt-contrib-concat" - "grunt-contrib-connect" - "grunt-contrib-copy" - "grunt-contrib-cssmin" - "grunt-contrib-haml" - "grunt-contrib-htmlmin" - "grunt-contrib-imagemin" - "grunt-contrib-jasmine" - "grunt-contrib-jshint" - "grunt-contrib-jst" - "grunt-contrib-less" - "grunt-contrib-qunit" - "grunt-contrib-requirejs" - "grunt-contrib-sass" - "grunt-contrib-uglify" - "grunt-contrib-watch" - "grunt-ember-templates" - "grunt-exec" - "grunt-express" - "grunt-init" - "grunt-notify" - "grunt-plugins" - "grunt-prompt" - "grunt-requirejs" - "grunt-shell" - "grunt-smoosher" - "grunt-spell" - "grunt-spritesmith" - "grunt-ssh" - "grunt-svgstore" - "grunt-ts" - "grunt-usemin" - "grunt-wiredep" - "gruntjs" - "gs-collections" - "gsa" - "gsap" - "gsettings" - "gsl" - "gslb" - "gsm" - "gso" - "gsoap" - "gson" - "gsp" - "gspread" - "gssapi" - "gst" - "gst-launch" - "gstat" - "gstreamer" - "gstring" - "gsub" - "gsutil" - "gtable" - "gtd" - "gtfs" - "gtk" - "gtk#" - "gtk+" - "gtk-parasite" - "gtk1.2" - "gtk2" - "gtk2hs" - "gtk3" - "gtkbuilder" - "gtkd" - "gtkentry" - "gtkmm" - "gtkscrolledwindow" - "gtksourceview" - "gtktextview" - "gtktreeview" - "gtm-oauth2" - "guard" - "guard-clause" - "guard-malloc" - "guava" - "guava-collections" - "gud" - "gui" - "gui-builder" - "gui-design" - "gui-designer" - "gui-editor" - "gui-guidelines" - "gui-test-framework" - "gui-testing" - "gui-toolkit" - "gui-tools" - "gui2exe" - "guice" - "guice-3" - "guice-persist" - "guice-servlet" - "guid" - "guid-generation" - "guidance-automation-tool" - "guide" - "guided-access" - "guidelines" - "guides" - "guidewire" - "guile" - "guitar" - "guitexture" - "gulp" - "gulp-buster" - "gulp-changed" - "gulp-concat" - "gulp-filter" - "gulp-glob" - "gulp-header" - "gulp-if" - "gulp-imagemin" - "gulp-inject" - "gulp-jasmine" - "gulp-karma" - "gulp-less" - "gulp-livereload" - "gulp-load-plugins" - "gulp-notify" - "gulp-rename" - "gulp-sass" - "gulp-sourcemaps" - "gulp-spellcheck" - "gulp-spritesmith" - "gulp-tap" - "gulp-traceur" - "gulp-uglify" - "gulp-watch" - "gumbo" - "gumby-framework" - "gumstix" - "gunicorn" - "gunit" - "gunzip" - "gupnp" - "guppy" - "guptateamdeveloper" - "gurobi" - "gutter" - "guvnor" - "guzzle" - "gvisgeomap" - "gvm" - "gvnix" - "gvnix-es" - "gw-basic" - "gwidgets" - "gwt" - "gwt-2.2" - "gwt-2.2-celltable" - "gwt-2.3" - "gwt-2.4" - "gwt-2.5" - "gwt-2.7" - "gwt-activities" - "gwt-animation" - "gwt-bootstrap" - "gwt-celltable" - "gwt-compiler" - "gwt-designer" - "gwt-dev-mode" - "gwt-dispatch" - "gwt-editors" - "gwt-edittext" - "gwt-elemental" - "gwt-eventservice" - "gwt-exporter" - "gwt-ext" - "gwt-highcharts" - "gwt-history" - "gwt-hosted-mode" - "gwt-log4j" - "gwt-maven-plugin" - "gwt-mosaic" - "gwt-mvp" - "gwt-openlayers" - "gwt-places" - "gwt-platform" - "gwt-preprocessor" - "gwt-rpc" - "gwt-super-dev-mode" - "gwt-syncproxy" - "gwt-tablayoutpanel" - "gwt-test-utils" - "gwt-validation" - "gwt-visualization" - "gwt-widgets" - "gwt2" - "gwtbootstrap3" - "gwtmockito" - "gwtp" - "gwtquery" - "gwttestcase" - "gwtupload" - "gxl" - "gxp" - "gxt" - "gxt-charts" - "gyazowin" - "gyp" - "gyroscope" - "gz" - "gzip" - "gzipfile" - "gzipinputstream" - "gzipoutputstream" - "gzippo" - "gzipstream" - "h.263" - "h.264" - "h.265" - "h.323" - "h2" - "h2db" - "h2o" - "h5py" - "haar-classifier" - "haar-wavelet" - "habanero" - "habari" - "habtm" - "hachoir-parser" - "hackage" - "hacker-news" - "hackerrank" - "hacking" - "hackintosh" - "hacklang" - "haddock" - "hadoop" - "hadoop-lzo" - "hadoop-partitioning" - "hadoop-plugins" - "hadoop-streaming" - "hadoop2" - "hadoopy" - "haiku" - "hake" - "hakyll" - "hal" - "hal-json" - "halbuilder" - "half-close" - "half-precision-float" - "halide" - "hallo-js" - "halo" - "halogy" - "halt" - "halting-problem" - "halvm" - "hama" - "hamachi" - "hamcrest" - "hamiltonian-cycle" - "haml" - "hamlc" - "hamlet" - "hamlet.coffee" - "hammer" - "hammer.js" - "hamming" - "hamming-code" - "hamming-distance" - "hamming-numbers" - "hammingweight" - "hammock" - "hamsterdb" - "hana" - "hana-cloud-platform" - "hana-studio" - "hana-xs" - "handbrake" - "handheld" - "handhelddevice" - "handjs" - "handle" - "handle-leak" - "handlebars" - "handlebars.js" - "handlebarshelper" - "handleerror" - "handler" - "handlerexceptionresolver" - "handlers" - "handlersocket" - "handles" - "handoff" - "handpoint-sdk" - "handset" - "handshake" - "handshaking" - "handsoap" - "handsontable" - "handwriting" - "handwriting-recognition" - "hang" - "hangfire" - "hangout" - "hapi" - "hapijs" - "happening" - "happens-before" - "happstack" - "happy" - "happy.js" - "happybase" - "haproxy" - "har" - "hard-coding" - "hard-drive" - "hard-real-time" - "hardcode" - "hardcoded" - "hardlink" - "hardware" - "hardware-acceleration" - "hardware-design" - "hardware-id" - "hardware-infrastructure" - "hardware-interface" - "hardware-port" - "hardware-programming" - "hardware-security-module" - "hardware-traps" - "hardy-ramanujan" - "harfbuzz" - "harmon.ie" - "harp" - "harvest" - "harvest-scm" - "has-and-belongs-to-many" - "has-many" - "has-many-polymorphs" - "has-many-through" - "has-one" - "has-one-through" - "hasattr" - "hash" - "hash-code-uniqueness" - "hash-collision" - "hash-function" - "hash-join" - "hash-of-hashes" - "hash-reference" - "hashable" - "hashalgorithm" - "hashbang" - "hashbytes" - "hashchange" - "hashcode" - "hashes" - "hashlib" - "hashmap" - "hashmultimap" - "hashref" - "hashrocket" - "hashset" - "hashtable" - "hashtag" - "hashtree" - "haskeline" - "haskell" - "haskell-cmdargs" - "haskell-mode" - "haskell-persistent" - "haskell-pipes" - "haskell-platform" - "haskell-sdl" - "haskell-src-exts" - "haskell-wai" - "haskell-warp" - "haskell-zlib" - "haskelldb" - "haslayout" - "hasownproperty" - "hasp" - "hasql" - "haste" - "hat" - "hatchstyle" - "hateoas" - "havebox" - "haversine" - "having" - "having-clause" - "havok" - "hawtio" - "haxe" - "haxeflixel" - "haxelib" - "haxl" - "haxm" - "haxml" - "hayoo" - "hazelcast" - "hbase" - "hbasestorage" - "hbitmap" - "hbm" - "hbm2ddl" - "hbm2java" - "hbmxml" - "hbox" - "hcalendar" - "hcard" - "hcatalog" - "hce" - "hci" - "hclust" - "hcluster" - "hcsticky" - "hd44780" - "hdbc" - "hdc" - "hdcp" - "hdd" - "hdf" - "hdf5" - "hdfs" - "hdfstore" - "hdinsight" - "hdiv" - "hdl" - "hdl-coder" - "hdmi" - "hdpi" - "hdr" - "hdrimages" - "head" - "head.js" - "header" - "header-fields" - "header-files" - "header-injection" - "header-only" - "header-row" - "headerdoc" - "headereditemscontrol" - "headertext" - "heading" - "headjs" - "headless" - "headless-browser" - "headless-fragments" - "headless-rcp" - "headphones" - "headset" - "healpy" - "health-kit" - "health-monitoring" - "healthvault" - "heap" - "heap-corruption" - "heap-dump" - "heap-fragmentation" - "heap-memory" - "heap-pollution" - "heap-profiling" - "heap-randomization" - "heap-size" - "heapalloc" - "heapbox" - "heapshot" - "heapsort" - "heapy" - "heartbeat" - "heartbleed-bug" - "heat" - "heatma.ps" - "heatmap" - "heavy-computation" - "hebrew" - "heckle" - "hecl" - "hector" - "heidisql" - "height" - "heightforrowatindexpath" - "heightmap" - "heisenbug" - "heist" - "helenus" - "helicontech" - "heliconzoo" - "helios" - "helix" - "helix-3d-toolkit" - "helix-dna-server" - "helix-server" - "hello.js" - "helm" - "help-authoring" - "help-balloon" - "help-files" - "help-system" - "help-viewer" - "help-viewer-1.0" - "helpcontext" - "helpdesk" - "helper" - "helper-functions" - "helpermethods" - "helpers" - "helpextract" - "helpfile" - "heplots" - "here-api" - "here-launcher" - "here-maps" - "heredoc" - "herestring" - "heritrix" - "hermite" - "heroku" - "heroku-postgres" - "heroku-san" - "heroku-toolbelt" - "hessian" - "heterogeneous" - "heterogeneous-services" - "heuristics" - "hevc" - "hex" - "hex-editors" - "hexadecimal-notation" - "hexagonal-architecture" - "hexagonal-tiles" - "hexavigesimal" - "hexchat" - "hexdump" - "hexo" - "hextiles" - "hfile" - "hfp" - "hfs" - "hfs+" - "hft" - "hg-convert" - "hg-git" - "hg-log" - "hg-push--rev" - "hgeclipse" - "hgignore" - "hglib" - "hgrc" - "hgserve" - "hgsubversion" - "hgsvn" - "hgweb" - "hgweb.cgi" - "hhvm" - "hi-tech-c" - "hiawatha" - "hibernate" - "hibernate-4.x" - "hibernate-annotations" - "hibernate-batch-updates" - "hibernate-cache" - "hibernate-cascade" - "hibernate-criteria" - "hibernate-entitymanager" - "hibernate-envers" - "hibernate-filters" - "hibernate-generic-dao" - "hibernate-mapping" - "hibernate-mode" - "hibernate-native-query" - "hibernate-ogm" - "hibernate-onetomany" - "hibernate-postgresql" - "hibernate-search" - "hibernate-session" - "hibernate-spatial" - "hibernate-tools" - "hibernate-validator" - "hibernate.cfg.xml" - "hibernate3" - "hibernate3-maven-plugin" - "hibernateexception" - "hibernation" - "hiccup" - "hid" - "hid-device" - "hidapi" - "hidden" - "hidden-characters" - "hidden-features" - "hidden-field" - "hidden-fields" - "hidden-files" - "hidden-markov-models" - "hidden-variables" - "hiddenfield" - "hide" - "hiding" - "hiera" - "hierarchical" - "hierarchical-clustering" - "hierarchical-data" - "hierarchical-grouping" - "hierarchical-query" - "hierarchical-trees" - "hierarchicaldatasource" - "hierarchicaldatatemplate" - "hierarchy" - "hierarchyid" - "hierarchyviewer" - "hig" - "high-availability" - "high-contrast" - "high-integrity-systems" - "high-level" - "high-level-architecture" - "high-load" - "high-resolution" - "high-speed-computing" - "high-traffic" - "high-voltage" - "high-volume" - "highcharts" - "highcharts-ng" - "highdpi" - "higher-kinded-types" - "higher-order-functions" - "higher-rank-types" - "highest" - "highgui" - "highland.js" - "highlight" - "highlight.js" - "highlighter" - "highlighter.net" - "highlighting" - "highline" - "highmaps" - "highpass-filter" - "highrise" - "highslide" - "highstock" - "higlabo" - "hijack" - "hijacked" - "hijax" - "hijri" - "hikaricp" - "hilbert-curve" - "hill-climbing" - "hilo" - "hindi" - "hindley-milner" - "hinstance" - "hint" - "hints" - "hints-and-tips" - "hipaa" - "hipache" - "hipchat" - "hipe" - "hiphop" - "hippocms" - "hippomocks" - "hirb" - "hiredis" - "hirefire" - "histogram" - "histogram2d" - "historian" - "historical-db" - "historical-debugging" - "history" - "history-stack" - "history.js" - "hit" - "hit-count" - "hit-highlighting" - "hitcounter" - "hittest" - "hive" - "hivemind" - "hivemq" - "hiveql" - "hjcache" - "hk2" - "hkhealthstore" - "hkobserverquery" - "hl7" - "hl7-cda" - "hl7-fhir" - "hl7-v2" - "hl7-v3" - "hla" - "hlint" - "hlist" - "hllapi" - "hls" - "hlsl" - "hlsl2glsl" - "hmac" - "hmacsha1" - "hmail-server" - "hmatrix" - "hmi" - "hmisc" - "hmp" - "hmvc" - "hoard" - "hoare-logic" - "hobbitmon" - "hobby-os" - "hobo" - "hockeyapp" - "hocon" - "hocr" - "hogan.js" - "hoist" - "hoisting" - "holder.js" - "hole-punching" - "holidays-gem" - "holoeverywhere" - "holtwinters" - "home" - "home-automation" - "home-button" - "home-directory" - "home-networking" - "homebrew" - "homebrew-cask" - "homekit" - "homescreen" - "homestead" - "homogenous-transformation" - "homoglyph" - "homography" - "homoiconicity" - "honeypot" - "honeywell" - "hoodie" - "hoogle" - "hook" - "hook-form" - "hook-form-alter" - "hook-install" - "hook-menu" - "hook-theme" - "hook.io" - "hookbox" - "hoopl" - "hoops" - "hootsuite" - "hopac" - "hoplon" - "hopscotch" - "hopscotch-hashing" - "hoptoad" - "horde" - "horde3d" - "horizontal-accordion" - "horizontal-line" - "horizontal-scaling" - "horizontal-scrolling" - "horizontalfieldmanager" - "horizontallist" - "horizontaloffset" - "horizontalscrollview" - "horn" - "hornetq" - "hortonworks-data-platform" - "host" - "host-object" - "host-permissions" - "hostable-web-core" - "hosted" - "hosted-app" - "hostent" - "hostheader" - "hostheaders" - "hosting" - "hostmonster" - "hostname" - "hosts" - "hosts-file" - "hotcocoa" - "hotdeploy" - "hotfix" - "hotkeys" - "hotlinking" - "hotmail" - "hotpatching" - "hotplugging" - "hotswap" - "hottowel" - "hough-transform" - "hour" - "hourglass" - "hover" - "hover-over" - "hoverintent" - "howler.js" - "hp" - "hp-cloud-services" - "hp-exstream" - "hp-nonstop" - "hp-quality-center" - "hp-service-manager" - "hp-trim" - "hp-uft" - "hp-ux" - "hpc" - "hpet" - "hpf" - "hping" - "hpple" - "hpricot" - "hprof" - "hpsa" - "hpx" - "hql" - "href" - "hresult" - "hs-err" - "hsb" - "hsc2hs" - "hsenv" - "hsl" - "hsm" - "hspec" - "hsqldb" - "hssf" - "hstore" - "hstringtemplate" - "hsts" - "hsv" - "hta" - "htc" - "htc-hd2" - "htc-hero" - "htc-thunderbolt" - "htcsense" - "htdigest" - "htdocs" - "htf" - "htk" - "html" - "html-agility-pack" - "html-base" - "html-components" - "html-compression" - "html-content-extraction" - "html-datalist" - "html-dom" - "html-editor" - "html-email" - "html-encode" - "html-entities" - "html-escape" - "html-escape-characters" - "html-form" - "html-form-post" - "html-formatting" - "html-formfu" - "html-formhandler" - "html-frames" - "html-generation" - "html-head" - "html-heading" - "html-help" - "html-help-workshop" - "html-helper" - "html-injections" - "html-input" - "html-lists" - "html-manipulation" - "html-mode" - "html-object" - "html-parser" - "html-parsing" - "html-post" - "html-rendering" - "html-safe" - "html-sanitizing" - "html-select" - "html-table" - "html-tableextract" - "html-target" - "html-title" - "html-to-jpeg" - "html-to-pdf" - "html-to-text" - "html-tree" - "html-treebuilder" - "html-validation" - "html-xml-utils" - "html.actionlink" - "html.beginform" - "html.checkbox" - "html.dropdownlistfor" - "html.encode" - "html.hiddenfor" - "html.label" - "html.labelfor" - "html.listboxfor" - "html.radiobuttonlist" - "html.renderpartial" - "html.textbox" - "html.textboxfor" - "html2canvas" - "html2haml" - "html2latex" - "html2pdf" - "html2ps" - "html4" - "html5" - "html5-animation" - "html5-appcache" - "html5-apps" - "html5-async" - "html5-audio" - "html5-canvas" - "html5-data" - "html5-draggable" - "html5-filesystem" - "html5-history" - "html5-input-date" - "html5-keygen" - "html5-kickstart" - "html5-notifications" - "html5-template" - "html5-validation" - "html5-video" - "html5boilerplate" - "html5builder" - "html5lib" - "html5shiv" - "html5test" - "htmlbridge" - "htmlbutton" - "htmlcleaner" - "htmlcollection" - "htmlcontrols" - "htmlcxx" - "htmldatatable" - "htmldoc" - "htmldocument" - "htmldocumentclass" - "htmleditorextender" - "htmleditorkit" - "htmlelements" - "htmlextensions" - "htmlfill" - "htmlgenericcontrol" - "htmlize.el" - "htmlpurifier" - "htmlspecialchars" - "htmlsuite" - "htmltable-control" - "htmltext" - "htmltextwriter" - "htmltidy" - "htmlunit" - "htmlunit-driver" - "htmlwriter" - "htonl" - "htop" - "htpasswd" - "htpc" - "htsql" - "http" - "http-0.9" - "http-1.0" - "http-1.1" - "http-accept-encoding" - "http-accept-header" - "http-accept-language" - "http-authentication" - "http-basic-authentication" - "http-caching" - "http-chunked" - "http-compression" - "http-conduit" - "http-content-length" - "http-content-range" - "http-daemon" - "http-delete" - "http-digest" - "http-equiv" - "http-error" - "http-etag" - "http-get" - "http-head" - "http-headers" - "http-host" - "http-kit" - "http-live-streaming" - "http-method" - "http-monitor" - "http-negotiate" - "http-options-method" - "http-parameters" - "http-patch" - "http-pipelining" - "http-post" - "http-post-vars" - "http-protocols" - "http-proxy" - "http-put" - "http-range" - "http-redirect" - "http-referer" - "http-request" - "http-request-parameters" - "http-request2" - "http-response-codes" - "http-server" - "http-status" - "http-status-code-100" - "http-status-code-200" - "http-status-code-201" - "http-status-code-204" - "http-status-code-205" - "http-status-code-301" - "http-status-code-302" - "http-status-code-303" - "http-status-code-304" - "http-status-code-307" - "http-status-code-308" - "http-status-code-400" - "http-status-code-401" - "http-status-code-403" - "http-status-code-404" - "http-status-code-405" - "http-status-code-406" - "http-status-code-407" - "http-status-code-408" - "http-status-code-409" - "http-status-code-410" - "http-status-code-411" - "http-status-code-412" - "http-status-code-413" - "http-status-code-415" - "http-status-code-424" - "http-status-code-500" - "http-status-code-503" - "http-status-code-504" - "http-status-code-505" - "http-status-codes" - "http-streaming" - "http-token-authentication" - "http-trace" - "http-tunneling" - "http-unit" - "http-upload" - "http-via-header" - "http.client" - "http.sys" - "http2" - "httpapplication" - "httpapplicationstate" - "httparty" - "httpbackend" - "httpbl" - "httpbrowsercapabilities" - "httpbuilder" - "httpcfg.exe" - "httpclient" - "httpclientandroidlib" - "httpconfiguration" - "httpconnection" - "httpcontent" - "httpcontext" - "httpcontext.cache" - "httpcookie" - "httpcookiecollection" - "httpd" - "httpd.conf" - "httpentity" - "httperf" - "httpexception" - "httpfilecollection" - "httpforbiddenhandler" - "httpfox" - "httpful" - "httphandler" - "httphandlerfactory" - "httphostconnectexception" - "httpi" - "httpie" - "httpinvoker" - "httplib" - "httplib2" - "httplistener" - "httplistenerrequest" - "httpmodule" - "httponly" - "httppostedfile" - "httppostedfilebase" - "httprequest" - "httpresponse" - "httpresponsecache" - "httpretty" - "httpruntime" - "httpruntime.cache" - "https" - "httpserver" - "httpserverutility" - "httpservice" - "httpsession" - "httpsurlconnection" - "httptaskasynchandler" - "httptransportse" - "httpunhandledexception" - "httpurlconnection" - "httpverbs" - "httpwatch" - "httpwebrequest" - "httpwebresponse" - "httr" - "httrack" - "hubflow" - "hubic-api" - "hubnet" - "hubot" - "hubspot" - "hubtile" - "hud" - "hudson" - "hudson-api" - "hudson-plugin-batch-task" - "hudson-plugins" - "hue" - "huffman-coding" - "huge-pages" - "hugo" - "hugs" - "human" - "human-computer-interface" - "human-interface" - "human-readable" - "humanize" - "humanize-boolean" - "humanizer" - "hunch" - "hunchentoot" - "hung" - "hungarian-algorithm" - "hungarian-notation" - "hunit" - "hunspell" - "huxley" - "hwclock" - "hwid" - "hwioauthbundle" - "hwnd" - "hwndhost" - "hwndsource" - "hwpf" - "hwui" - "hxcpp" - "hxdatatableex" - "hxt" - "hxtt" - "hy" - "hybrid" - "hybrid-mobile-app" - "hybridauth" - "hybridauthprovider" - "hybris" - "hyde" - "hydra" - "hygiene" - "hyper-v" - "hyperbolic-function" - "hypercard" - "hypercube" - "hyperdex" - "hyperfilesql" - "hypergraph" - "hyperic" - "hyperion" - "hyperjaxb" - "hyperlink" - "hyperloglog" - "hypermedia" - "hyperparameters" - "hyperref" - "hypersonic" - "hypertable" - "hypertalk" - "hyperterminal" - "hyperthreading" - "hypervisor" - "hyphen" - "hyphenation" - "hypodermic" - "hypotenuse" - "hyprlinkr" - "hystrix" - "i18n-gem" - "i18n-node" - "i18next" - "i2b2" - "i2c" - "i3" - "i386" - "i4i" - "ia-32" - "ia64" - "iaas" - "iaca" - "iaccessible" - "iactivescript" - "iad" - "iad-workbench" - "iads" - "iadstsuserex" - "iaik-jce" - "iam" - "iana" - "iap-hosted-content" - "iar" - "ias" - "iasyncoperation" - "iasyncresult" - "iauthorizationfilter" - "ibaction" - "iban" - "ibatis" - "ibatis.net" - "ibator" - "ibdesignable" - "ibeacon" - "ibeacon-android" - "ibexpert" - "ibindabletemplate" - "ibinspectable" - "iblazr" - "ibm" - "ibm-bpm" - "ibm-case-manager" - "ibm-connections" - "ibm-content-navigator" - "ibm-css" - "ibm-data-studio" - "ibm-datapower" - "ibm-db2" - "ibm-ifs" - "ibm-jazz" - "ibm-jdk" - "ibm-jsf" - "ibm-jvm" - "ibm-midrange" - "ibm-mq" - "ibm-notes" - "ibm-odm" - "ibm-oneui" - "ibm-rad" - "ibm-rad-7.5" - "ibm-soliddb" - "ibm-sterling" - "ibm-was" - "ibm-watson" - "ibm-wxs" - "ibmhttpserver" - "ibmsbt" - "ibook-author" - "ibooks" - "iboutlet" - "iboutletcollection" - "ibplugin" - "ibpy" - "ibrokers" - "ibtool" - "ic-ajax" - "icacls" - "ical" - "ical4j" - "icalendar" - "icallbackeventhandler" - "icanhaz.js" - "icann" - "icarousel" - "icarus" - "icc" - "icccm" - "iccid" - "iccube" - "icd" - "icd10cm" - "ice" - "ice-cube" - "ice-validation" - "ice4j" - "icecast" - "iced-coffeescript" - "icedtea" - "icefaces" - "icefaces-1.8" - "icefaces-2" - "icefaces-3" - "icehouse" - "icenium" - "icepdf" - "icepush" - "iceweasel" - "ichat" - "icheck" - "icicle-diagram" - "icicles" - "iciql" - "iclientmessageinspector" - "icloneable" - "icloud" - "icloud-api" - "icmp" - "icmpsendecho2" - "icns" - "ico" - "icollection" - "icollectionview" - "icommand" - "icomparable" - "icomparablet" - "icomparer" - "icon-composer" - "icon-editor" - "icon-fonts" - "icon-handler" - "icon-language" - "iconfsdk" - "iconic" - "iconitemrenderer" - "iconix" - "iconnectionpoint" - "icons" - "icontact" - "iconutil" - "iconv" - "iconvertible" - "icpc" - "icq" - "icr" - "icriteria" - "icsharpcode" - "icsharpziplib" - "icu" - "icustomtypedescriptor" - "id-card" - "id-generation" - "id3" - "id3-tag" - "id3dxmesh" - "id3lib" - "id3v2" - "ida" - "ida-pro" - "idataerrorinfo" - "idataobject" - "idatareader" - "idatus-dispatcher" - "idbcommand" - "idbconnection" - "ide" - "ide-customization" - "idea-plugin" - "idealforms" - "ideavim" - "idempotent" - "ident" - "identica" - "identicon" - "identification" - "identifier" - "identify" - "identifying" - "identity" - "identity-column" - "identity-delegation" - "identity-insert" - "identity-management" - "identity-map" - "identity-operator" - "ideone" - "ideserializationcallback" - "idfa" - "idhttp" - "idictionary" - "idiomatic" - "idiomatic-perl" - "idioms" - "idiorm" - "idispatch" - "idispatchmessageinspector" - "idisposable" - "idl" - "idl-programming-language" - "idle-processing" - "idle-timer" - "idlj" - "idml" - "idn" - "ido" - "ido-mode" - "idoc" - "idocscript" - "idref" - "idris" - "idtabs" - "idynamicobject" - "ie-automation" - "ie-compatibility-mode" - "ie-developer-tools" - "ie-mobile" - "ie-plugins" - "ie11-developer-tools" - "ie7.js" - "ie8-browser-mode" - "ie8-compatibility-mode" - "ie8-webslice" - "ieaddon" - "iec10967" - "iec61131-3" - "iecapt" - "ieditablecollectionview" - "ieditableobject" - "ieee" - "ieee-754" - "ieframe.dll" - "ienumerable" - "ienumerator" - "iepngfix" - "iequalitycomparer" - "iequatable" - "ierrorhandler" - "iesi-collections" - "ietester" - "ietf-bcp-47" - "iexpress" - "iextenderprovider" - "iextensibledataobject" - "iexternalizable" - "if-modified-since" - "if-none-match" - "if-statement" - "if-this-then-that" - "ifc" - "ifconfig" - "ifdefine" - "ifft" - "ifilter" - "ifndef" - "ifnull" - "iformatprovider" - "iformattable" - "ifort" - "iframe" - "iframe-app" - "ifs" - "ifs-erp" - "ifstream" - "igbinary" - "igdatachart" - "iggrid" - "igmp" - "ignite-ui" - "ignore" - "ignore-case" - "ignore-duplicates" - "ignore-files" - "ignorelist" - "ignoreroute" - "ignoring" - "igoogle" - "igor" - "igraph" - "igrid" - "igrouping" - "igtree" - "iguana-ui" - "ihtmldocument" - "ihtmldocument2" - "ihtmlimgelement" - "ihtmlstring" - "ihttpasynchandler" - "ihttphandler" - "ihttpmodule" - "ii6" - "iidentity" - "iif" - "iif-function" - "iife" - "iinterceptor" - "iiop" - "iirf" - "iis" - "iis-5" - "iis-6" - "iis-7" - "iis-7.5" - "iis-8" - "iis-8.5" - "iis-arr" - "iis-express" - "iis-handlers" - "iis-logs" - "iis-manager" - "iis-metabase" - "iis-modules" - "iisnode" - "iisreset" - "iisvdir" - "iiviewdeckcontroller" - "ijetty" - "ijg" - "ijulia-notebook" - "ikimagebrowsercell" - "ikimagebrowserview" - "ikimagekit" - "ikimageview" - "ikiwiki" - "ikpicturetaker" - "iksaveoptions" - "ikscannerdeviceview" - "ikvm" - "il" - "ilasm" - "ildasm" - "ile-c++" - "ilgenerator" - "ilias" - "ilide" - "ilink64" - "ilist" - "illegal-characters" - "illegal-input" - "illegal-instruction" - "illegalaccessexception" - "illegalargumentexception" - "illegalmonitorstateexcep" - "illegalstateexception" - "illuminate-container" - "ilmerge" - "ilnumerics" - "ilog" - "ilog-elixir" - "ilookup" - "ilspy" - "im+" - "im4java" - "ima4" - "imac" - "imacros" - "image" - "image-archive" - "image-caching" - "image-capture" - "image-clipping" - "image-comparison" - "image-compression" - "image-conversion" - "image-editing" - "image-editor" - "image-effects" - "image-enhancement" - "image-enlarge" - "image-events" - "image-extraction" - "image-field" - "image-file" - "image-formats" - "image-gallery" - "image-generation" - "image-graphviz" - "image-icon" - "image-load" - "image-loading" - "image-management" - "image-manipulation" - "image-masking" - "image-optimization" - "image-preloader" - "image-processing" - "image-quality" - "image-recognition" - "image-rendering" - "image-replacement" - "image-resizing" - "image-rotation" - "image-scaling" - "image-scanner" - "image-science" - "image-segmentation" - "image-size" - "image-stabilization" - "image-stitching" - "image-transcoding" - "image-trim" - "image-unit" - "image-upload" - "image-uploading" - "image-viewer" - "image-zoom" - "image.createimage" - "image.save" - "imageareaselect" - "imagebrush" - "imagebutton" - "imagecreatefrompng" - "imagedownload" - "imageedgeinsets" - "imagefield" - "imagefilter" - "imageflow" - "imagehandler" - "imageicon" - "imagej" - "imagej-macro" - "imagekit" - "imagelibrary" - "imagelist" - "imagemagick" - "imagemagick-convert" - "imagemagick-identify" - "imagemagick.net" - "imagemap" - "imagemapster" - "imagemin" - "imagenamed" - "imageobserver" - "imageresizer" - "imageresizer-diskcache" - "imageshack" - "imagesloaded" - "imagesource" - "imagespan" - "imageswitcher" - "imagettftext" - "imageurl" - "imageview" - "imagevoodoo" - "imagick" - "imaging" - "imake" - "imalloc" - "imanage" - "imap" - "imap-open" - "imapclient" - "imapi" - "imaplib" - "imapx" - "imdb" - "imdbpy" - "ime" - "imei" - "imenu" - "imeoptions" - "imessage" - "imessagefilter" - "imetadataimport" - "imgkit" - "imgscalr" - "imgur" - "immediacy" - "immediate" - "immediate-mode" - "immediate-window" - "immutability" - "immutable-class" - "immutable.js" - "immutablearray" - "immutablelist" - "immutant" - "imodelbinder" - "imovie" - "imp" - "impactjs" - "impala" - "impb" - "impdp" - "imperative" - "imperative-languages" - "imperative-programming" - "impersonation" - "implementation" - "implements" - "implication" - "implicit" - "implicit-cast" - "implicit-conversion" - "implicit-declaration" - "implicit-int" - "implicit-methods" - "implicit-parameters" - "implicit-style" - "implicit-surface" - "implicit-typing" - "implicits" - "implode" - "impoly" - "import" - "import-contacts" - "import-from-csv" - "import-from-excel" - "import-hooks" - "import-libraries" - "import-module" - "import-table" - "import.io" - "importance" - "importerror" - "imports" - "imposition" - "imposm" - "imposter-pattern" - "impredicativetypes" - "impress.js" - "impressions" - "impresspages" - "impromptu" - "impromptu-interface" - "imread" - "imshow" - "imsl" - "imultivalueconverter" - "in-addr" - "in-app" - "in-app-billing" - "in-app-purchase" - "in-call" - "in-class-initialization" - "in-clause" - "in-function" - "in-house-distribution" - "in-memory" - "in-memory-database" - "in-operator" - "in-place" - "in-place-edit" - "in-place-editor" - "in-subquery" - "inamingcontainer" - "inappbrowser" - "inappropriate-intimacy" - "inappsettings" - "inappsettingskit" - "inappstorewindow" - "inbound" - "inbox" - "incanter" - "incapsula" - "inches" - "include" - "include-guards" - "include-path" - "inclued" - "inclusion" - "incognito-mode" - "incoming-call" - "incoming-mail" - "incompatibility" - "incompatibletypeerror" - "incomplete-type" - "incr-tcl" - "incredibuild" - "increment" - "incremental-build" - "incremental-compiler" - "incremental-linking" - "incremental-search" - "incron" - "indefero" - "indefinite" - "indent" - "indentation" - "independent-set" - "independentsoft" - "indesign" - "indesign-server" - "index" - "index-buffer" - "index-intersection" - "index.dat" - "indexed" - "indexed-image" - "indexed-properties" - "indexed-view" - "indexed-views" - "indexeddb" - "indexer" - "indexes" - "indexhibit" - "indexing" - "indexing-service" - "indexof" - "indexoutofboundsexception" - "indexoutofrangeexception" - "indextank" - "indexwriter" - "indic" - "indicator" - "indices" - "indirect-objects" - "indirection" - "indoor-positioning-system" - "indri" - "induction" - "industrial" - "indy" - "indy-9" - "indy10" - "ineqdeco" - "inequalities" - "inequality" - "inertia" - "inertial-navigation" - "inet" - "inet-aton" - "inet-ntop" - "inet-socket" - "inetaddress" - "inetd" - "inets" - "inexact-arithmetic" - "inf" - "inference" - "inference-engine" - "inferred-type" - "infile" - "infiniband" - "infinidb" - "infinispan" - "infinite" - "infinite-carousel" - "infinite-loop" - "infinite-scroll" - "infinite-sequence" - "infinite-value" - "infinitest" - "infinity" - "infinity.js" - "infix" - "infix-operator" - "inflate" - "inflate-exception" - "inflection" - "inflector" - "influxdb" - "info" - "info-hash" - "info-plist" - "info.plist" - "infobox" - "infobright" - "infobubble" - "infocard" - "infomaker" - "infopath" - "infopath-2007" - "infopath-forms-services" - "infopath2010" - "infor-eam" - "inform7" - "informat" - "informatica" - "informatica-powercenter" - "informatica-powerexchange" - "informatics-olympiad" - "information-architecture" - "information-bar" - "information-extraction" - "information-hiding" - "information-management" - "information-retrieval" - "information-schema" - "information-theory" - "information-visualization" - "informix" - "infoset" - "infosphere-spl" - "infoview" - "infovis" - "infowindow" - "infragistics" - "infrared" - "infrastructure" - "infusionsoft" - "ingres" - "ingres9" - "ingress-game" - "inherit" - "inheritance" - "inheritance-prevention" - "inheritdoc" - "inherited" - "inherited-constructors" - "inherited-resources" - "inheriting-constructors" - "ini" - "ini-files" - "ini-set" - "ini4j" - "inifile" - "inih" - "init" - "init-parameters" - "init-sql" - "init.d" - "initalization" - "initial-context" - "initial-scale" - "initialization" - "initialization-list" - "initialization-order" - "initialization-vector" - "initializecomponent" - "initializer" - "initializer-list" - "initializing" - "initializr" - "initrd" - "inittab" - "initwithcoder" - "initwithcontentsoffile" - "initwithcontentsofurl" - "initwithframe" - "initwithstyle" - "inject" - "injectable" - "injectableprovider" - "injection" - "ink-analyzer" - "ink.sapo.pt" - "inkcanvas" - "inkmanager" - "inkml" - "inkscape" - "inlincode" - "inline" - "inline-assembly" - "inline-block" - "inline-c" - "inline-code" - "inline-editing" - "inline-formset" - "inline-functions" - "inline-html" - "inline-if" - "inline-images" - "inline-method" - "inline-namespaces" - "inline-scripting" - "inline-styles" - "inline-view" - "inline-xml" - "inlineeditbox" - "inlines" - "inlineuicontainer" - "inlining" - "inmobi" - "inner-classes" - "inner-exception" - "inner-join" - "inner-product" - "inner-query" - "innerhtml" - "innertext" - "innerxhtml" - "innerxml" - "inno-setup" - "innobackupex" - "innodb" - "innovation" - "inode" - "inorder" - "inotify" - "inotify-tools" - "inotifycollectionchanged" - "inotifydataerrorinfo" - "inotifypropertychanged" - "inotifytaskcompletion" - "inotifywait" - "inplace-editing" - "inproc" - "input" - "input-buffer" - "input-builders" - "input-button-image" - "input-devices" - "input-field" - "input-file" - "input-filter" - "input-filtering" - "input-history" - "input-language" - "input-mask" - "input-method-kit" - "input-parameters" - "input-sanitization" - "input-split" - "input-type-file" - "input-validation" - "inputaccessoryview" - "inputbinding" - "inputbox" - "inputmismatchexception" - "inputscope" - "inputstream" - "inputstreamreader" - "inputverifier" - "inputview" - "inquisit" - "inscopeapps" - "insecure-connection" - "insert" - "insert-id" - "insert-image" - "insert-into" - "insert-iterator" - "insert-query" - "insert-select" - "insert-statement" - "insert-update" - "insertafter" - "insertcommand" - "inserter" - "inserthtml" - "insertion" - "insertion-order" - "insertion-sort" - "insertonsubmit" - "insertorupdate" - "insets" - "insight" - "insight.database" - "insmod" - "inspect" - "inspect-element" - "inspectdb" - "inspection" - "inspections" - "inspector" - "instafeedjs" - "instagram" - "instagram-api" - "install" - "install-name-tool" - "install-requires" - "install-sequence" - "install.packages" - "install4j" - "installanywhere" - "installation" - "installation-package" - "installation-path" - "installaware" - "installed-applications" - "installer" - "installing" - "installscript" - "installscript-msi" - "installshield" - "installshield-2008" - "installshield-2009" - "installshield-2010" - "installshield-2011" - "installshield-2012" - "installshield-2013" - "installshield-2014" - "installshield-le" - "installutil" - "instance" - "instance-eval" - "instance-initializers" - "instance-method" - "instance-methods" - "instance-transform" - "instance-variables" - "instancecontextmode" - "instanceid" - "instanceof" - "instances" - "instancestate" - "instancetype" - "instant" - "instant-message" - "instant-messaging" - "instantclient" - "instantiation" - "instantiationexception" - "instantmessenger" - "instantobjects" - "instapaper" - "instasharp" - "instaweb" - "instruction-set" - "instructions" - "instrumentation" - "instruments" - "instsrv" - "int" - "int128" - "int32" - "int64" - "integer" - "integer-arithmetic" - "integer-division" - "integer-hashing" - "integer-overflow" - "integer-programming" - "integer-promotion" - "integerupdown" - "integral" - "integrate" - "integrated" - "integrated-pipeline-mode" - "integrated-security" - "integration" - "integration-patterns" - "integration-testing" - "integration-tests" - "integrator" - "integrity" - "intel" - "intel-8080" - "intel-atom" - "intel-c++" - "intel-composer" - "intel-fortran" - "intel-galileo" - "intel-inspector" - "intel-ipp" - "intel-media-sdk" - "intel-mic" - "intel-mkl" - "intel-mpi" - "intel-parallel-studio" - "intel-pin" - "intel-syntax" - "intel-visual-fortran" - "intel-xdk" - "intel-xdk-contacts" - "intelinde" - "intellectual-property" - "intellij-10" - "intellij-12" - "intellij-13" - "intellij-14" - "intellij-eap" - "intellij-idea" - "intellij-idea-14" - "intellij-plugin" - "intellilock" - "intellipad" - "intellisense" - "intellisense-documentati" - "intellitrace" - "intense-debate" - "intent-protocol" - "intentfilter" - "intentional-programming" - "intentservice" - "inter-process-communicat" - "interact.js" - "interaction" - "interaction-design" - "interactive" - "interactive-brokers" - "interactive-mode" - "interactive-session" - "interactive-shell" - "interactive-window" - "interactivepopgesture" - "interbase" - "interbase-2009" - "intercal" - "intercept" - "interception" - "interceptor" - "interceptors" - "interceptorstack" - "interchange" - "intercom.js" - "interface" - "interface-builder" - "interface-design" - "interface-implementation" - "interface-orientation" - "interfacing" - "interference" - "interimap" - "interix" - "interlacing" - "interlocked" - "interlocked-increment" - "intermec" - "intermediate-code" - "intermediate-language" - "intermittent" - "intern" - "internal" - "internal-class" - "internal-compiler-error" - "internal-link" - "internal-representation" - "internal-server-error" - "internal-storage" - "internals" - "internalsvisibleto" - "international" - "internationalization" - "internet" - "internet-component-suite" - "internet-connection" - "internet-download-manager" - "internet-explorer" - "internet-explorer-10" - "internet-explorer-11" - "internet-explorer-5" - "internet-explorer-6" - "internet-explorer-7" - "internet-explorer-8" - "internet-explorer-9" - "internet-options" - "internet-radio" - "internetsetoption" - "interop" - "interop-domino" - "interopbitmapimage" - "interopservices" - "interpeter" - "interpolate" - "interpolation" - "interposing" - "interpretation" - "interpreted" - "interpreted-language" - "interpreter" - "interprocess" - "interprolog" - "interrogative-programming" - "interrupt" - "interrupt-handling" - "interrupted-exception" - "interruption" - "interruptions" - "intersect" - "intersection" - "interspire-shopping-cart" - "interstitial" - "intersystems" - "intersystems-cache" - "intersystems-ensemble" - "interval-arithmetic" - "interval-intersection" - "interval-tree" - "intervals" - "interwoven" - "intl" - "into-outfile" - "intptr" - "intranet" - "intraweb" - "intraweb-10" - "intrepid" - "intrinsic-ratio" - "intrinsics" - "intro" - "intro.js" - "introduction" - "introscope" - "introspection" - "intrusion-detection" - "intrusive-containers" - "intuit" - "intuit-partner-platform" - "inuit.css" - "invalid-argument" - "invalid-characters" - "invalid-object-name" - "invalid-postback" - "invalid-url" - "invalidargumentexception" - "invalidate" - "invalidation" - "invalidoperationexception" - "invalidprogramexception" - "invariantculture" - "invariants" - "inventions" - "inventor-ilogic" - "inventory" - "inventory-management" - "inverse" - "inverse-kinematics" - "inverse-match" - "inversion" - "inversion-of-control" - "invert" - "inverted-index" - "inview" - "invisible" - "invision-power-board" - "invitation" - "invite" - "invocation" - "invocation-api" - "invocationhandler" - "invocationtargetexception" - "invoice" - "invoices" - "invoke" - "invoke-command" - "invokeandwait" - "invokedynamic" - "invokelater" - "invokemember" - "invokerequired" - "invokescript" - "invokevirtual" - "io" - "io-async" - "io-buffering" - "io-completion-ports" - "io-monad" - "io-redirection" - "io-socket" - "io.js" - "iobluetooth" - "iobservable" - "iobserver" - "ioc-container" - "ioccc" - "iocp" - "ioctl" - "iodbc" - "iodocs" - "ioerror" - "ioexception" - "ioi" - "ioio" - "ioke" - "iokit" - "iolanguage" - "iomanip" - "iommu" - "ion" - "ion-auth" - "ion-koush" - "ioncube" - "ionic" - "ionic-framework" - "ionicpopup" - "ionmonkey" - "ionsound" - "ioports" - "iorderedenumerable" - "iorderedqueryable" - "ioremap" - "ios" - "ios-3.x" - "ios-4.2" - "ios-app-extension" - "ios-app-group" - "ios-autolayout" - "ios-automasking" - "ios-bluetooth" - "ios-calender" - "ios-camera" - "ios-enterprise" - "ios-extensions" - "ios-frameworks" - "ios-homekit" - "ios-icons" - "ios-keyboard-extension" - "ios-library" - "ios-provisioning" - "ios-sdk" - "ios-simulator" - "ios-standalone-mode" - "ios-subclass" - "ios-ui-automation" - "ios-uiviewanimation" - "ios-universal-app" - "ios-universal-framework" - "ios-urlsheme" - "ios-web-app" - "ios3.0" - "ios32" - "ios4" - "ios4.0.1" - "ios4.1" - "ios4.3" - "ios5" - "ios5-compatibility" - "ios5-sdk" - "ios5.1" - "ios6" - "ios6-maps" - "ios6.0" - "ios6.1" - "ios7" - "ios7-statusbar" - "ios7.1" - "ios8" - "ios8-documents-directory" - "ios8-extension" - "ios8-handoff" - "ios8-share-extension" - "ios8-today-widget" - "ios8.1" - "iosched" - "iostat" - "iostream" - "iosurface" - "iot" - "iota" - "iowait" - "ip" - "ip-address" - "ip-camera" - "ip-fragmentation" - "ip-geolocation" - "ip-protocol" - "ip-restrictions" - "ipa" - "ipad" - "ipad-2" - "ipad-3" - "ipad-mini" - "ipad-splitview" - "ipad-ui" - "ipaper" - "ipb" - "ipc" - "ipconfig" - "ipcopen3" - "ipcs" - "ipcu" - "ipdb" - "iperf" - "ipersistfile" - "ipfw" - "iphelper" - "iphone" - "iphone-3g" - "iphone-3gs" - "iphone-4" - "iphone-5" - "iphone-6" - "iphone-6-plus" - "iphone-64bit" - "iphone-accessory" - "iphone-ar-toolkit" - "iphone-developer-program" - "iphone-keypad" - "iphone-maps" - "iphone-network" - "iphone-plist" - "iphone-privateapi" - "iphone-sdk-2" - "iphone-sdk-2.2.1" - "iphone-sdk-3.0" - "iphone-sdk-3.1" - "iphone-sdk-3.1.2" - "iphone-sdk-3.1.3" - "iphone-sdk-3.2" - "iphone-sdk-4.0.1" - "iphone-sdk-4.1" - "iphone-sdk-4.3" - "iphone-sdk-5.0" - "iphone-sdk-6.0" - "iphone-sdk-documentation" - "iphone-security" - "iphone-softkeyboard" - "iphone-standalone-web-app" - "iphone-vibrate" - "iphone-video" - "iphone-wax" - "iphone-web" - "iphone-web-app" - "iphonecoredatarecipes" - "iphoto" - "ipl" - "iplanet" - "iplimage" - "iplots" - "ipmi" - "ipmitool" - "ipod" - "ipod-nano" - "ipod-touch" - "ipojo" - "ipopt" - "ipp" - "ipp-protocol" - "ipp-qbd-sync" - "ipreupdateeventlistener" - "ipreviewhandler" - "iprincipal" - "iprogress" - "iprogressdialog" - "ipropertystorage" - "iproute" - "ipsec" - "iptables" - "iptc" - "iptv" - "ipv4" - "ipv6" - "ipxe" - "ipython" - "ipython-magic" - "ipython-notebook" - "ipython-parallel" - "iqr" - "iquery" - "iqueryable" - "iqueryable.toarray" - "iqueryprovider" - "ir" - "iranges" - "irate" - "irb" - "irc" - "ireadonlydictionary" - "ireport" - "irepository" - "iri" - "iris-recognition" - "iriscouch" - "irix" - "iron" - "iron-router" - "iron.io" - "ironclad" - "ironjs" - "ironmq" - "ironpython" - "ironpython-studio" - "ironruby" - "ironscheme" - "ironspeed" - "ironworker" - "irony" - "iroutehandler" - "irp" - "irq" - "irr" - "irrklang" - "irrlicht" - "irssi" - "is-empty" - "is-uploaded-file" - "isa" - "isa-swizzling" - "isabelle" - "isabout" - "isaccessibletouser" - "isam" - "isapi" - "isapi-extension" - "isapi-filter" - "isapi-redirect" - "isapi-rewrite" - "isapi-wsgi" - "isar" - "isaserver" - "isbackground" - "isbn" - "ischecked" - "ischedulingservice" - "iscii" - "iscriptcontrol" - "iscroll" - "iscroll4" - "iscrollview" - "iscsi" - "isearch" - "isenabled" - "iserializable" - "iseries-navigator" - "iservicebehaviors" - "iservicelocator" - "iserviceprovider" - "isession" - "isgl3d" - "isight" - "isinrole" - "isinstance" - "isinteger" - "isis" - "isis2" - "isl" - "ismouseover" - "isnull" - "isnullorempty" - "isnumeric" - "iso" - "iso-19794" - "iso-3166" - "iso-639-2" - "iso-8859-1" - "iso-8859-15" - "iso-8859-2" - "iso-image" - "iso-prolog" - "iso8583" - "iso8601" - "iso9660" - "isobuild" - "isodate" - "isolatedstorage" - "isolatedstoragefile" - "isolation" - "isolation-frameworks" - "isolation-level" - "isometric" - "isomorphic-javascript" - "isomorphism" - "isoneway" - "isp" - "ispeech" - "ispell" - "ispf" - "ispostback" - "ispring" - "isql" - "isqlquery" - "isr" - "isreadonly" - "isrequired" - "isset" - "issharedsizescope" - "isshown" - "issue-tracking" - "issuu" - "istanbul" - "istatelesssession" - "istool" - "istorage" - "istream" - "istream-iterator" - "istringstream" - "iswitchb-mode" - "iswix" - "itable" - "italic" - "italics" - "itanium" - "itanium-abi" - "itar" - "itaskitem" - "itcl" - "itemcollection" - "itemcommand" - "itemcontainergenerator" - "itemcontainerstyle" - "itemdatabound" - "itemeditor" - "itemgroup" - "itemizedoverlay" - "itemlistener" - "itemplate" - "itemrenderer" - "itemrenderers" - "items" - "itemscollection" - "itemscontrol" - "itemselector" - "itemsource" - "itemspanel" - "itemspaneltemplate" - "itemspresenter" - "itemssource" - "itemtemplate" - "itemtemplateselector" - "iterable" - "iterable-unpacking" - "iterate" - "iterated-function" - "iteratee" - "iteration" - "iterative" - "iterative-deepening" - "iterator" - "iterator-facade" - "iterator-range" - "iterator-traits" - "iterm" - "iterm2" - "iterparse" - "itertools" - "itext" - "itextg" - "itextpdf" - "itextsharp" - "ithit" - "ithit-ajax-file-browser" - "ithit-webdav-server" - "itil" - "itk" - "itmstransporter" - "itoa" - "itron" - "itsm" - "itunes" - "itunes-app" - "itunes-sdk" - "itunes-search-api" - "itunes-store" - "itunesartwork" - "itunesconnect" - "ituneslibrary" - "itunesu" - "itween" - "iui" - "iunknown" - "iup" - "iusertype" - "ivalidatableobject" - "ivalueconverter" - "ivar" - "ivars" - "ivr" - "ivy" - "ivyde" - "iwa" - "iwconfig" - "iweb" - "iwebbrowser2" - "iwebkit" - "iwork" - "iwrap" - "ixmldomdocument" - "ixmldomelement" - "ixmldomnode" - "ixmlserializable" - "izpack" - "izpanel" - "j" - "j#" - "j++" - "j-integra" - "j-interop" - "j-security-check" - "j1939" - "j2ab" - "j2ep" - "j2mepolish" - "j2objc" - "j2ssh" - "j9" - "jaas" - "jabaco" - "jabberd2" - "jabbr" - "jacc" - "jack" - "jackcess" - "jacket" - "jackrabbit" - "jackson" - "jackson-modules" - "jacl" - "jacob" - "jacoco" - "jacoco-maven-plugin" - "jacop" - "jacorb" - "jad" - "jadclipse" - "jade" - "jade4j" - "jadeify" - "jagged-arrays" - "jaggery-js" - "jags" - "jags.parallel" - "jahia" - "jai" - "jail" - "jail-shell" - "jailbreak" - "jailkit" - "jain-sip" - "jain-slee" - "jak" - "jake" - "jalali-calendar" - "jalangi" - "jalopy" - "jam" - "jama" - "jambi" - "james" - "jamjs" - "jaml" - "jammer" - "jammit" - "jamon" - "jamvm" - "janalyser" - "janino" - "janky" - "janrain" - "janus" - "japid" - "japplet" - "jar" - "jar-signing" - "jar-with-dependencies" - "jarbundler" - "jarjar" - "jaro-winkler" - "jarsign" - "jarsigner" - "jarsplice" - "jasidepanels" - "jasig" - "jasmin" - "jasmin-x86" - "jasmine" - "jasmine-ajax" - "jasmine-async" - "jasmine-headless-webkit" - "jasmine-jquery" - "jasmine-matchers" - "jasmine-maven-plugin" - "jasmine-node" - "jasmine2.0" - "jasny-bootstrap" - "jasper" - "jasper-plugin" - "jasper-reports" - "jasperprint" - "jasperreports-jsf-plugin" - "jasperserver" - "jaspersoft-studio" - "jasperviewer" - "jaspic" - "jastor" - "jasypt" - "jatha" - "jaunt-api" - "jaus++" - "jautodoc" - "java" - "java-2d" - "java-3d" - "java-5" - "java-6" - "java-7" - "java-8" - "java-api" - "java-asm" - "java-attach-api" - "java-batch" - "java-binding" - "java-bridge-method" - "java-bytecode-asm" - "java-canvas" - "java-client" - "java-communication-api" - "java-compiler-api" - "java-custom-serialization" - "java-deployment-toolkit" - "java-ee" - "java-ee-5" - "java-ee-6" - "java-ee-7" - "java-ee-web-profile" - "java-gstreamer" - "java-home" - "java-interop" - "java-io" - "java-launcher" - "java-libraries" - "java-me" - "java-melody" - "java-memory-model" - "java-metro-framework" - "java-micro-editon-sdk3.0" - "java-mission-control" - "java-monitor" - "java-optional" - "java-opts" - "java-package" - "java-print" - "java-robot" - "java-scripting-engine" - "java-server" - "java-service-wrapper" - "java-stored-procedures" - "java-stream" - "java-synthetic-methods" - "java-time" - "java-transaction-service" - "java-util-logging" - "java-util-scanner" - "java-war" - "java-web-start" - "java-websocket" - "java-wireless-toolkit" - "java-ws" - "java.lang.class" - "java.lang.linkageerror" - "java.library.path" - "java.nio.file" - "java.util.calendar" - "java.util.concurrent" - "java.util.date" - "java.util.logging" - "java.util.stream" - "java1.4" - "java2word" - "java2wsdl" - "javaagents" - "javaapns" - "javaassist" - "javabeans" - "javabuilders" - "javac" - "javacaps" - "javacard" - "javacc" - "javacompiler" - "javacpp" - "javacv" - "javadb" - "javadoc" - "javaexe" - "javafx" - "javafx-1" - "javafx-2" - "javafx-3d" - "javafx-8" - "javafx-webengine" - "javah" - "javahelp" - "javahg" - "javahl" - "javaloader" - "javamail" - "javap" - "javaparser" - "javaplot" - "javapns" - "javapolicy" - "javapos" - "javaquery" - "javarebel" - "javarosa" - "javascript" - "javascript-1.7" - "javascript-1.8" - "javascript-api-for-office" - "javascript-automation" - "javascript-build" - "javascript-compatibility" - "javascript-databinding" - "javascript-debugger" - "javascript-disabled" - "javascript-dom" - "javascript-editor" - "javascript-engine" - "javascript-events" - "javascript-framework" - "javascript-globalize" - "javascript-injection" - "javascript-intellisense" - "javascript-library" - "javascript-map-method" - "javascript-module" - "javascript-namespaces" - "javascript-objects" - "javascript-runtime" - "javascript-security" - "javascriptcore" - "javascriptmvc" - "javascriptserializer" - "javasound" - "javaspaces" - "javassist" - "javaw" - "javax.activation" - "javax.comm" - "javax.crypto" - "javax.imageio" - "javax.mail" - "javax.mail.address" - "javax.script" - "javax.sound.midi" - "javax.sound.sampled" - "javax.speech" - "javax.swing.text" - "javax.swing.timer" - "javax.xml" - "javolution" - "jawbone" - "jawr" - "jaws-screen-reader" - "jaws-wordnet" - "jawt" - "jax-rpc" - "jax-rs" - "jax-ws" - "jax-ws-customization" - "jaxb" - "jaxb-episode" - "jaxb2" - "jaxb2-annotate-plugin" - "jaxb2-basics" - "jaxb2-maven-plugin" - "jaxb2-simplify-plugin" - "jaxbelement" - "jaxer" - "jaxfront" - "jaxl" - "jaxm" - "jaxp" - "jaxws-maven-plugin" - "jay-parser-generator" - "jaybird" - "jaydata" - "jaydebeapi" - "jayrock" - "jazelle" - "jazz" - "jazzylistview" - "jbake" - "jbase" - "jbchartview" - "jbcrypt" - "jbehave" - "jbehave-maven-plugin" - "jbehave-plugin" - "jbi" - "jbig2" - "jbilling" - "jbloomberg" - "jboss" - "jboss-3.x" - "jboss-4.0.x" - "jboss-4.2.x" - "jboss-amq" - "jboss-arquillian" - "jboss-cache" - "jboss-cli" - "jboss-eap-4.3.x" - "jboss-eap-6" - "jboss-esb" - "jboss-logging" - "jboss-mdb" - "jboss-messaging" - "jboss-modules" - "jboss-portal" - "jboss-rules" - "jboss-seam" - "jboss-tools" - "jboss-web" - "jboss-weld" - "jboss5.x" - "jboss6.x" - "jboss7.x" - "jbossfuse" - "jbossmq" - "jbossws" - "jbox2d" - "jbpm" - "jbrowse" - "jbuilder" - "jbullet" - "jbutton" - "jca" - "jcabi" - "jcache" - "jcalendar" - "jcanvas" - "jcanvascript" - "jcaps" - "jcarousel" - "jcarousellite" - "jcc" - "jccd" - "jcchart" - "jce" - "jcenter" - "jchart2d" - "jchartfx" - "jcheckbox" - "jcifs" - "jcl" - "jclouds" - "jco" - "jcodec" - "jcodemodel" - "jcolorchooser" - "jcombobox" - "jcommander" - "jcomponent" - "jconfirm" - "jconnect" - "jconsole" - "jcop" - "jcr" - "jcr-sql2" - "jcreator" - "jcrop" - "jcryption" - "jcs" - "jcsv" - "jcuda" - "jcurses" - "jcycle" - "jd-eclipse" - "jd-gui" - "jdatechooser" - "jdb" - "jdbc" - "jdbc-odbc" - "jdbc-pool" - "jdbc-postgres" - "jdbcrealm" - "jdbctemplate" - "jdbi" - "jde" - "jdedwards" - "jdee" - "jdepend" - "jdesktop" - "jdesktoppane" - "jdeveloper" - "jdi" - "jdialog" - "jdic" - "jdk" - "jdk-tools" - "jdk1.4" - "jdk1.5" - "jdk1.6" - "jdk1.8" - "jdk6" - "jdk7" - "jdk8" - "jdk9" - "jdmk" - "jdo" - "jdom" - "jdom-2" - "jdoql" - "jdownloader" - "jdt" - "jdto" - "jdwp" - "jeasyopc" - "jedi" - "jedi-code-library" - "jedi-vim" - "jedis" - "jedit" - "jeditable" - "jeditorpane" - "jeet-grid" - "jekyll" - "jekyll-bootstrap" - "jekyll-extensions" - "jelastic" - "jelly" - "jemmy" - "jemmyfx" - "jemos-podam" - "jena" - "jenkins" - "jenkins-cli" - "jenkins-job-builder" - "jenkins-job-dsl" - "jenkins-php" - "jenkins-plugins" - "jenkins-scriptler" - "jenv" - "jepp" - "jericho-html-parser" - "jerkson" - "jeromq" - "jersey" - "jersey-1.0" - "jersey-2.0" - "jersey-client" - "jes" - "jespa" - "jesque" - "jess" - "jest" - "jestjs" - "jet" - "jet-sql" - "jetbrains" - "jetpack" - "jets3t" - "jetspeed2" - "jetstrap" - "jett" - "jettison" - "jetty" - "jetty-8" - "jetty-9" - "jexcelapi" - "jexl" - "jface" - "jfeed" - "jfeinstein" - "jffs2" - "jfif" - "jfilechooser" - "jflap" - "jflex" - "jflex-maven-plugin" - "jflow" - "jform" - "jform-designer" - "jformattedtextfield" - "jformer" - "jframe" - "jfreechart" - "jfreereport" - "jfs" - "jfugue" - "jfxtras" - "jgap" - "jgestures" - "jgit" - "jgoodies" - "jgraph" - "jgrapht" - "jgraphx" - "jgrasp" - "jgroups" - "jgrowl" - "jgss" - "jhat" - "jhbuild" - "jhipster" - "jhtmlarea" - "jibx" - "jide" - "jigsaw" - "jikes" - "jimfs" - "jinfo" - "jing" - "jini" - "jinitiator" - "jinja" - "jinja2" - "jinput" - "jint" - "jinterface" - "jinternalframe" - "jira" - "jira-agile" - "jira-mobile-connect" - "jira-ondemand" - "jira-plugin" - "jira-rest-api" - "jira-rest-java-api" - "jira-zephyr" - "jison" - "jit" - "jitsi" - "jitter" - "jitterbit" - "jive" - "jjaql" - "jkexpandtableview" - "jkey" - "jks" - "jlabel" - "jlayer" - "jlayeredpane" - "jline" - "jlink" - "jlist" - "jls" - "jmagick" - "jmail" - "jmap" - "jmapviewer" - "jmathplot" - "jmc" - "jmdns" - "jmenu" - "jmenubar" - "jmenuitem" - "jmenupopup" - "jmesa" - "jmespath" - "jmeter" - "jmeter-analysis" - "jmeter-maven-plugin" - "jmeter-plugins" - "jmf" - "jmh" - "jminix" - "jml" - "jmock" - "jmockit" - "jmonkeyengine" - "jmp" - "jmpress" - "jms" - "jms-serializer" - "jms-session" - "jms-topic" - "jms2" - "jmspaymentpaypalbundle" - "jmsserializerbundle" - "jmstemplate" - "jmtp" - "jmx" - "jmx-ws" - "jmxmp" - "jmxtrans" - "jmyron" - "jna" - "jnaerator" - "jnario" - "jncryptor" - "jndi" - "jnetpcap" - "jni" - "jni4net" - "jnienv" - "jniwrapper" - "jnlp" - "jnotify" - "jnp" - "jnr" - "jnrpe" - "jo4neo" - "joauth" - "job-control" - "job-queue" - "job-scheduling" - "jobamatic" - "jobeet" - "joblib" - "jobs" - "jocl" - "joda" - "joda-money" - "jodatime" - "jodconverter" - "jodd" - "joeblogs" - "jogl" - "john-the-ripper" - "johnny-five" - "joi" - "join" - "joincolumn" - "joined-subclass" - "joiner" - "jointable" - "jointjs" - "jol" - "jolokia" - "jomsocial" - "jonas" - "jongo" - "jonix" - "joodo" - "joomdle" - "joomfish" - "joomla" - "joomla-community-builder" - "joomla-component" - "joomla-dbo" - "joomla-extensions" - "joomla-framework" - "joomla-jform" - "joomla-k2" - "joomla-module" - "joomla-sef-urls" - "joomla-task" - "joomla-template" - "joomla1.5" - "joomla1.6" - "joomla1.7" - "joomla2.5" - "joomla3.0" - "joomla3.1" - "joomla3.2" - "joomla3.3" - "joone" - "jooq" - "jooq-sbt-plugin" - "joose" - "joosy" - "joox" - "jopenid" - "joptionpane" - "josephus" - "josql" - "josso" - "jotform" - "jotm" - "journal" - "journaling" - "journey" - "joyent" - "joypad" - "joystick" - "jpa" - "jpa-1.0" - "jpa-2.0" - "jpa-2.1" - "jpa-annotations" - "jpa-rs" - "jpacontainer" - "jpage" - "jpanel" - "jpanelmenu" - "jparsec" - "jpasswordfield" - "jpc" - "jpcap" - "jpct" - "jpda" - "jpdl" - "jpedal" - "jpeg" - "jpeg-xr" - "jpeg2000" - "jpegbitmapencoder" - "jpegmini" - "jpegoptim" - "jpf" - "jpgraph" - "jpicker" - "jpl" - "jplaton" - "jplayer" - "jpopup" - "jpopupmenu" - "jpos" - "jpql" - "jpreloader" - "jprobe" - "jprofiler" - "jprogressbar" - "jpype" - "jq" - "jqbargraph" - "jqbootstrapvalidation" - "jqchart" - "jqgrid" - "jqgrid-asp.net" - "jqgrid-formatter" - "jqgrid-inlinenav" - "jqgrid-php" - "jql" - "jqlite" - "jqm4gwt" - "jqmigrate" - "jqmobi" - "jqmodal" - "jqote" - "jqpagination" - "jqpivot" - "jqplot" - "jqprint" - "jqte" - "jqtouch" - "jqtransform" - "jqtree" - "jquery" - "jquery++" - "jquery-1.10" - "jquery-1.3" - "jquery-1.3.2" - "jquery-1.4" - "jquery-1.5" - "jquery-1.6" - "jquery-1.7" - "jquery-1.8" - "jquery-1.9" - "jquery-2.0" - "jquery-accordion" - "jquery-address" - "jquery-ajaxq" - "jquery-animate" - "jquery-append" - "jquery-attributes" - "jquery-autocomplete" - "jquery-backstretch" - "jquery-bar-rating" - "jquery-barcode" - "jquery-bbq" - "jquery-blockui" - "jquery-boilerplate" - "jquery-calculation" - "jquery-callback" - "jquery-chaining" - "jquery-checktree" - "jquery-chosen" - "jquery-click-event" - "jquery-clone" - "jquery-collision" - "jquery-color" - "jquery-contents" - "jquery-context" - "jquery-cookie" - "jquery-corner" - "jquery-countdown" - "jquery-csv" - "jquery-cycle" - "jquery-cycle2" - "jquery-data" - "jquery-datatables" - "jquery-datatables-editor" - "jquery-datatables-rails" - "jquery-deferred" - "jquery-delegate" - "jquery-dialog" - "jquery-draggable" - "jquery-dropkick" - "jquery-droppable" - "jquery-dynatree" - "jquery-easing" - "jquery-easyui" - "jquery-effects" - "jquery-end" - "jquery-events" - "jquery-file-upload" - "jquery-fileupload-rails" - "jquery-filter" - "jquery-find" - "jquery-flexbox" - "jquery-focusout" - "jquery-form-validator" - "jquery-form-wizard" - "jquery-forms-plugin" - "jquery-get" - "jquery-globalization" - "jquery-gmap" - "jquery-gmap2" - "jquery-gmap3" - "jquery-grid" - "jquery-highlightfade" - "jquery-hotkeys" - "jquery-hover" - "jquery-html5uploader" - "jquery-ias" - "jquery-iframe-transport" - "jquery-inputmask" - "jquery-isotope" - "jquery-jscrollpane" - "jquery-jtable" - "jquery-knob" - "jquery-layout" - "jquery-lazyload" - "jquery-lint" - "jquery-live" - "jquery-load" - "jquery-localizer" - "jquery-manipulation" - "jquery-mask" - "jquery-masonry" - "jquery-migrate" - "jquery-mobile" - "jquery-mobile-ajax" - "jquery-mobile-button" - "jquery-mobile-checkbox" - "jquery-mobile-collapsible" - "jquery-mobile-dialog" - "jquery-mobile-fieldset" - "jquery-mobile-flipswitch" - "jquery-mobile-grid" - "jquery-mobile-listview" - "jquery-mobile-loader" - "jquery-mobile-navbar" - "jquery-mobile-pageshow" - "jquery-mobile-panel" - "jquery-mobile-popup" - "jquery-mobile-radio" - "jquery-mobile-select" - "jquery-mobile-slider" - "jquery-mobile-table" - "jquery-mobile-themeroller" - "jquery-mobile-toolbars" - "jquery-mostslider" - "jquery-multidatespicker" - "jquery-multiselect" - "jquery-multisortable" - "jquery-on" - "jquery-pagescroller" - "jquery-pagination" - "jquery-plugins" - "jquery-post" - "jquery-prev" - "jquery-queue" - "jquery-rails" - "jquery-reel" - "jquery-resizable" - "jquery-roundabout" - "jquery-scrollable" - "jquery-select2" - "jquery-selectbox" - "jquery-selectors" - "jquery-session" - "jquery-slide-effects" - "jquery-slider" - "jquery-socialist" - "jquery-sortable" - "jquery-source-map" - "jquery-spinner" - "jquery-steps" - "jquery-svg" - "jquery-tablesorter" - "jquery-tabs" - "jquery-tags-input" - "jquery-templates" - "jquery-terminal" - "jquery-textext" - "jquery-timing" - "jquery-tokeninput" - "jquery-tools" - "jquery-tooltip" - "jquery-transit" - "jquery-traversing" - "jquery-trigger" - "jquery-triggerhandler" - "jquery-ui" - "jquery-ui-accordion" - "jquery-ui-autocomplete" - "jquery-ui-button" - "jquery-ui-contextmenu" - "jquery-ui-css-framework" - "jquery-ui-datepicker" - "jquery-ui-dialog" - "jquery-ui-draggable" - "jquery-ui-droppable" - "jquery-ui-layout" - "jquery-ui-map" - "jquery-ui-menubar" - "jquery-ui-plugins" - "jquery-ui-progressbar" - "jquery-ui-resizable" - "jquery-ui-selectable" - "jquery-ui-selectmenu" - "jquery-ui-slider" - "jquery-ui-sortable" - "jquery-ui-spinner" - "jquery-ui-tabs" - "jquery-ui-theme" - "jquery-ui-timepicker" - "jquery-ui-tooltip" - "jquery-ui-touch-punch" - "jquery-ui-widget" - "jquery-ui-widget-factory" - "jquery-uniform" - "jquery-upload-file-plugin" - "jquery-validate" - "jquery-validation-engine" - "jquery-waypoints" - "jquery-webcam-plugin" - "jquery-week-calendar" - "jquery-widget-factory" - "jquery-widgets" - "jquery-xml" - "jquery.address" - "jquery.fileapi" - "jquery.smartbanner" - "jquery.support" - "jqueryform" - "jqueryi-ui-buttonset" - "jquerynotebook" - "jqueryui-menu" - "jqui" - "jqvmap" - "jqwidget" - "jqxcombobox" - "jqxgrid" - "jqxhr" - "jqxwidgets" - "jqzoom" - "jradiobutton" - "jrails" - "jrails-auto-complete" - "jre" - "jrebel" - "jrecorder" - "jri" - "jrmp" - "jrockit" - "jruby" - "jruby-java-interop" - "jruby-openssl" - "jruby-rack" - "jruby-win32ole" - "jrubyfx" - "jrubyonrails" - "jrules" - "jrun" - "js-amd" - "js-beautify" - "js-of-ocaml" - "js-routes" - "js-test-driver" - "js.class" - "js1k" - "js2-mode" - "js2coffee" - "jsa" - "jsapi" - "jsawk" - "jsbin" - "jsbn" - "jsbuilder" - "jsc3d" - "jscalendar" - "jscc" - "jsch" - "jscharts" - "jscience" - "jscolor" - "jscompress" - "jscoverage" - "jscript" - "jscript-10" - "jscript.net" - "jscrollbar" - "jscrollpane" - "jscs" - "jsctags" - "jsctypes" - "jsdebug" - "jsdelivr" - "jsdoc" - "jsdoc3" - "jsdom" - "jsdt" - "jsduck" - "jsecurity" - "jseparator" - "jsessionid" - "jsf" - "jsf-1.1" - "jsf-1.2" - "jsf-2" - "jsf-2.2" - "jsf-stateless" - "jsfeat" - "jsfiddle" - "jsfl" - "jsfunit" - "jsgauge" - "jshint" - "jshowoff" - "jshtml" - "jsil" - "jsjac" - "jsl" - "jslider" - "jslink" - "jslint" - "jslint4java" - "jsm" - "jsmin" - "jsmockito" - "jsmooth" - "jsmovie" - "jsmpp" - "jsnetworkx" - "jsni" - "jsnlog" - "jsoauth" - "jsobject" - "jsocket" - "jsog" - "json" - "json-api" - "json-c" - "json-decode" - "json-deserialization" - "json-encode" - "json-framework" - "json-ld" - "json-lib" - "json-linq" - "json-parsing" - "json-patch" - "json-rpc" - "json-schema-validator" - "json-simple" - "json-spec" - "json-spirit" - "json-view" - "json-web-token" - "json.net" - "json2csharp" - "json2html" - "json4s" - "jsonarray" - "jsonb" - "jsonbuilder" - "jsoncpp" - "jsonexception" - "jsonfx" - "jsonidentityinfo" - "jsoniq" - "jsonix" - "jsonkit" - "jsonlint" - "jsonlite" - "jsonml" - "jsonmodel" - "jsonobject" - "jsonp" - "jsonpath" - "jsonpickle" - "jsonplugin" - "jsonreader" - "jsonresponse" - "jsonreststore" - "jsonresult" - "jsonschema" - "jsonschema2pojo" - "jsonselect" - "jsonserializer" - "jsonstore" - "jsonstream" - "jsontemplate" - "jsonx" - "jsoup" - "jsp" - "jsp-fragments" - "jsp-tags" - "jspdf" - "jspec" - "jspeex" - "jspell" - "jsperf" - "jspinclude" - "jspinner" - "jsplitpane" - "jsplumb" - "jsprit" - "jspx" - "jsqlite" - "jsqlparser" - "jsr" - "jsr-275" - "jsr160" - "jsr166" - "jsr168" - "jsr170" - "jsr172" - "jsr179" - "jsr196" - "jsr199" - "jsr223" - "jsr233" - "jsr250" - "jsr257" - "jsr286" - "jsr296" - "jsr299" - "jsr305" - "jsr310" - "jsr311" - "jsr330" - "jsr335" - "jsr356" - "jsr75" - "jsr82" - "jsrender" - "jsreport" - "jssc" - "jsse" - "jssh" - "jssor" - "jst" - "jstack" - "jstat" - "jstatd" - "jstestrunner" - "jstilemap" - "jstimezonedetect" - "jstl" - "jstockchart" - "jstorage" - "jstore" - "jstree" - "jstree-search" - "jstween" - "jstyleparser" - "jsunit" - "jsvc" - "jsviews" - "jsx" - "jsxgraph" - "jsyn" - "jsyntaxpane" - "jszip" - "jt400" - "jta" - "jtabbedpane" - "jtable" - "jtableheader" - "jtag" - "jtapi" - "jtds" - "jtemplate" - "jtemplates" - "jtest" - "jtextarea" - "jtextcomponent" - "jtextfield" - "jtextpane" - "jtidy" - "jtmpl" - "jtogglebutton" - "jtoolbar" - "jtooltip" - "jtopen" - "jtracert" - "jtree" - "jtreetable" - "jts" - "jtwig" - "jtwitter" - "jubula" - "juce" - "juddi" - "judy-array" - "juggernaut" - "jugglingdb" - "juice-ui" - "juicy-pixels" - "juju" - "julia-jump" - "julia-lang" - "julia-macros" - "julia-studio" - "julian" - "julian-date" - "julius" - "jumi" - "jump" - "jump-list" - "jump-lists" - "jump-table" - "jumping" - "junaio" - "junction" - "junction-table" - "jung" - "jung2" - "jungledisk" - "junit" - "junit-ee" - "junit-rule" - "junit-runner" - "junit-theory" - "junit3" - "junit4" - "junitperf" - "juno" - "junrar" - "jupload" - "jurassic" - "jusb" - "justboil.me" - "justcode" - "justgage" - "justify" - "justin.tv" - "justinmind" - "justmock" - "justniffer" - "justonedb" - "juttle" - "juzu" - "jvcl" - "jvectormap" - "jvi" - "jviewport" - "jvisualvm" - "jvlc" - "jvm" - "jvm-arguments" - "jvm-codecache" - "jvm-crash" - "jvm-hotspot" - "jvm-languages" - "jvmti" - "jwe" - "jwebbrowser" - "jwebunit" - "jwi" - "jwindow" - "jwizard" - "jwplayer" - "jwplayer6" - "jwrapper" - "jwt" - "jwysiwyg" - "jxa" - "jxcore" - "jxl" - "jxloginpane" - "jxls" - "jxmapkit" - "jxmultisplitpane" - "jxpath" - "jxta" - "jxtable" - "jxtaskpane" - "jxtree" - "jxtreetable" - "jyaml" - "jython" - "jython-2.5" - "jython-2.7" - "jzlib" - "jzmq" - "jzy3d" - "k" - "k-means" - "k2" - "k2f" - "kaazing" - "kabel-bundleplus" - "kadanes-algorithm" - "kademlia" - "kafka-consumer-api" - "kairosdb" - "kal" - "kaleidoscope" - "kali-linux" - "kalman" - "kalman-filter" - "kaltura" - "kamailio" - "kamianri" - "kaminari" - "kana" - "kanban" - "kango-framework" - "kannel" - "kannotator" - "kanso" - "karaf" - "karel" - "karma" - "karma-coverage" - "karma-jasmine" - "karma-mocha" - "karma-qunit" - "karma-runner" - "karnaugh-map" - "kartograph" - "katana" - "kate" - "katex" - "katta" - "kawa" - "kaxaml" - "kazoo" - "kb" - "kbhit" - "kbuild" - "kcachegrind" - "kcfinder" - "kconfig" - "kcov" - "kdb" - "kdbg" - "kdc" - "kde" - "kde4" - "kdelibs" - "kdevelop" - "kdevelop4" - "kdf" - "kdialog" - "kdiff3" - "kdtree" - "keccak" - "keefox" - "keen-io" - "keep-alive" - "keepass" - "keeplayout" - "keil" - "kendo-asp.net-mvc" - "kendo-autocomplete" - "kendo-chart" - "kendo-colorpicker" - "kendo-combobox" - "kendo-contextmenu" - "kendo-datasource" - "kendo-dataviz" - "kendo-datepicker" - "kendo-datetimepicker" - "kendo-draggable" - "kendo-dropdown" - "kendo-droptarget" - "kendo-editor" - "kendo-gauge" - "kendo-grid" - "kendo-listview" - "kendo-maskedtextbox" - "kendo-menu" - "kendo-mobile" - "kendo-multiselect" - "kendo-mvvm" - "kendo-observable" - "kendo-panelbar" - "kendo-scheduler" - "kendo-slider" - "kendo-splitter" - "kendo-tabstrip" - "kendo-template" - "kendo-timepicker" - "kendo-tooltip" - "kendo-treeview" - "kendo-ui" - "kendo-ui-mvc" - "kendo-ui-splitter" - "kendo-upload" - "kendo-validator" - "kendo-window" - "kendonumerictextbox" - "kentico" - "kentico-azure" - "kentico-mvc" - "kentor-authservices" - "kepler" - "kerberos" - "kerberos-delegation" - "kermit" - "kernel" - "kernel-density" - "kernel-extension" - "kernel-mode" - "kernel-module" - "kernel-programming" - "kernel32" - "kernighan-and-ritchie" - "kerning" - "kernlab" - "kernow" - "kestrel" - "keter" - "kettle" - "kevent" - "kexi" - "kext" - "key" - "key-bindings" - "key-cache-size" - "key-events" - "key-generator" - "key-management" - "key-pair" - "key-storage" - "key-value" - "key-value-coding" - "key-value-observing" - "key-value-store" - "keyboard" - "keyboard-events" - "keyboard-grab" - "keyboard-hook" - "keyboard-input" - "keyboard-layout" - "keyboard-maestro" - "keyboard-navigation" - "keyboard-shortcuts" - "keyboard-wedge" - "keyboardfocusmanager" - "keyboardinterrupt" - "keychain" - "keychainitemwrapper" - "keycloak" - "keycode" - "keyczar" - "keydown" - "keydragzoom" - "keyedcollection" - "keyerror" - "keyevent" - "keyeventargs" - "keyfilter" - "keyframe" - "keyguard" - "keyguardlock" - "keyhelp" - "keyhook" - "keylistener" - "keylogger" - "keymando" - "keymapping" - "keymaps" - "keymasterjs" - "keynote" - "keynotfoundexception" - "keypad" - "keypoint" - "keypress" - "keypreview" - "keyref" - "keyrelease" - "keyset" - "keystone" - "keystone.js" - "keystore" - "keystroke" - "keystrokes" - "keytab" - "keytool" - "keyup" - "keyvaluepair" - "keywindow" - "keyword" - "keyword-argument" - "keyword-expansion" - "keyword-search" - "keyword-spotting" - "keyword-substitution" - "keywordquery" - "keywordstats" - "kgdb" - "khan-academy" - "kiama" - "kibana" - "kickstarter" - "kickstrap" - "kie" - "kie-wb" - "kie-workbench" - "kif" - "kif-framework" - "kigg" - "kiicloud" - "kiip" - "kik" - "kill" - "kill-process" - "kill-ring" - "kiln" - "kindle" - "kindle-fire" - "kindle-kdk" - "kindlegen" - "kinect" - "kinect-interaction" - "kinect-sdk" - "kinect.toolbox" - "kinematics" - "kineticjs" - "kingsoft" - "kinosearch" - "kint" - "kinterbasdb" - "kinvey" - "kiokudb" - "kiosk" - "kiosk-mode" - "kirby" - "kismet" - "kiss-mvc" - "kissfft" - "kissmetrics" - "kissxml" - "kit3d" - "kitchenpc" - "kite" - "kivy" - "kiwi" - "kiwi-template" - "kix" - "klee" - "kleene-star" - "klein-mvc" - "kleisli" - "klist" - "klocwork" - "kloudless" - "klout" - "kloxo" - "kmalloc" - "kmdf" - "kmem" - "kmip" - "kml" - "kmz" - "knapsack-problem" - "knex.js" - "knife" - "knife-solo" - "knime" - "knitr" - "knitrbootstrap" - "knn" - "knockback.js" - "knockd" - "knockout-2.0" - "knockout-3.0" - "knockout-amd-helpers" - "knockout-components" - "knockout-editables" - "knockout-es5-plugin" - "knockout-kendo" - "knockout-mapping-plugin" - "knockout-mvc" - "knockout-mvvm" - "knockout-postbox" - "knockout-projections" - "knockout-sortable" - "knockout-subscribe" - "knockout-templating" - "knockout-validation" - "knockout-viewmodel-plugin" - "knockout.js" - "knockout.js-3.0" - "knockout.js-extensions" - "knopflerfish" - "knot-theory" - "knowledge-capture" - "knowledge-management" - "known-folders" - "known-issues" - "known-types" - "knox-amazon-s3-client" - "knpmenu" - "knpmenubundle" - "knppaginator" - "knr" - "knuth" - "knuth-morris-pratt" - "knx" - "knyle-style-sheet" - "ko.dependentobservable" - "ko.observablearray" - "koa" - "koa-generic-session" - "koa-locals" - "koa-passport" - "koa-session" - "koala" - "koala-framework" - "koala-gem" - "kobold-kit" - "kobold2d" - "koding" - "kofax" - "kognitio" - "kognitio-wx2" - "kogrid" - "kohana" - "kohana-2" - "kohana-3" - "kohana-3.0" - "kohana-3.2" - "kohana-3.3" - "kohana-auth" - "kohana-cache" - "kohana-db" - "kohana-orm" - "kohana-routing" - "koji" - "koken" - "kol" - "kolab" - "kolite" - "kombu" - "komodo" - "komodoedit" - "konacha" - "konakart" - "konami-code" - "koneki" - "konsole" - "kontagent" - "kony" - "kooboo" - "korma" - "korundum" - "kosaraju-sharir" - "kostache" - "kotlin" - "kotti" - "kparts" - "kpi" - "kprobe" - "kqueue" - "kr-c" - "kraken-image-optimizer" - "kraken.js" - "kramdown" - "kriging" - "krl" - "kronos-wfc" - "krpano" - "krumo" - "kruntime" - "kruskal-wallis" - "kruskals-algorithm" - "kryo" - "kryonet" - "krypt-ossl" - "krypton" - "krypton-toolkit" - "kryptonoutlookgrid" - "kryzhanovskycssminifier" - "ksh" - "ksoap" - "ksoap2" - "ksort" - "kss" - "kstat" - "kuali" - "kubernetes" - "kubuntu" - "kudu" - "kue" - "kuka-krl" - "kumulos" - "kundera" - "kunena" - "kuromoji" - "kurtosis" - "kvc" - "kvm" - "kwargs" - "kwicks" - "kxml" - "kxml2" - "kylix" - "kyotocabinet" - "l-systems" - "l1-cache" - "l18n" - "l2-cache" - "l20n" - "l2cap" - "l2tp" - "la-clojure" - "lab-color-space" - "lab-management" - "label" - "label-control" - "label-for" - "labeled-statements" - "labelfield" - "labelfunction" - "labeling" - "labelled-break" - "labelled-generic" - "labels" - "labjs" - "labview" - "labwindows" - "laconica" - "ladon" - "lag" - "lager" - "laika" - "lalr" - "lambda" - "lambda-architecture" - "lambda-calculus" - "lambda-functions" - "lambdabot" - "lambdaj" - "lame" - "lamina" - "lamp" - "lampp" - "lamson" - "lan" - "lanczos" - "landscape" - "landscape-portrait" - "lang" - "langohr" - "language-agnostic" - "language-binding" - "language-comparisons" - "language-concepts" - "language-construct" - "language-design" - "language-details" - "language-detection" - "language-enhancement" - "language-extension" - "language-features" - "language-history" - "language-implementation" - "language-interoperability" - "language-lawyer" - "language-model" - "language-name" - "language-packs" - "language-processing" - "language-recognition" - "language-specifications" - "language-switching" - "language-theory" - "language-translation" - "language-translator" - "languageservice" - "languagetool" - "lansa" - "lanterna" - "lapack" - "lapack++" - "lapacke" - "lapply" - "laptop" - "laravel" - "laravel-3" - "laravel-4" - "laravel-5" - "laravel-annotations" - "laravel-elixir" - "laravel-environment" - "laravel-excel" - "laravel-facade" - "laravel-filters" - "laravel-forge" - "laravel-form" - "laravel-helper" - "laravel-paginate" - "laravel-pagination" - "laravel-request" - "laravel-routing" - "laravel-seeding" - "laravel-testing" - "laravel-translation" - "laravel-validation" - "large-data" - "large-data-volumes" - "large-file-support" - "large-file-upload" - "large-files" - "large-fonts" - "large-object-heap" - "large-query" - "large-scale" - "large-teams" - "large-text" - "largenumber" - "lars" - "lasso" - "last-child" - "last-insert-id" - "last-modified" - "last-occurrence" - "last.fm" - "lastaccesstime" - "lastindexof" - "lastinsertid" - "lastpass" - "lastpasswordset" - "laszlo" - "late-binding" - "late-bound-evaluation" - "late-static-binding" - "latency" - "latent-semantic-analysis" - "latent-semantic-indexing" - "lateral" - "laterjs" - "latex" - "latex-environment" - "latex-suite" - "latexmk" - "latexml" - "latin" - "latin-square" - "latin1" - "latin9" - "latitude-longitude" - "lattice" - "lattix" - "launch" - "launch-agent" - "launch-condition" - "launch-configuration" - "launch-daemon" - "launch-screen" - "launch-services" - "launch-time" - "launch4j" - "launchd" - "launchdagent" - "launcher" - "launchimage" - "launching" - "launching-application" - "launchmode" - "launchpad" - "lauterbach" - "lava" - "lavaboom" - "lavalamp" - "law-of-demeter" - "lawnchair" - "layar" - "layer" - "layer-list" - "layerdrawable" - "layered" - "layered-navigation" - "layered-windows" - "layering" - "layertype" - "layout" - "layout-animation" - "layout-editor" - "layout-engine" - "layout-extraction" - "layout-gravity" - "layout-inflater" - "layout-manager" - "layout-optimization" - "layout-page" - "layout-xml" - "layoutkind.explicit" - "layoutpanels" - "layoutparams" - "layoutsubviews" - "layouttransform" - "layouttransition" - "lazarus" - "lazy" - "lazy-c++" - "lazy-evaluation" - "lazy-high-charts" - "lazy-initialization" - "lazy-io" - "lazy-loading" - "lazy-propagation" - "lazy-registration" - "lazy-sequences" - "lazy.js" - "lazydatamodel" - "lazylist" - "lazythreadsafetymode" - "lazyweb" - "lbph-algorithm" - "lc3" - "lcc" - "lcc-win32" - "lccs" - "lcd" - "lcds" - "lcdui" - "lcg" - "lchown" - "lcid" - "lcm" - "lcom" - "lcov" - "lcs" - "ld" - "ld-preload" - "lda" - "ldap" - "ldap-client" - "ldap-query" - "ldapconnection" - "ldapjs" - "ldd" - "ldf" - "ldflags" - "ldif" - "ldjson" - "lds" - "lead" - "leadbolt" - "leader" - "leaderboard" - "leading-zero" - "leadingmarginspan2" - "leadtools-sdk" - "leaflet" - "leakdiag" - "leaky-abstraction" - "leanback" - "leantween" - "leap-motion" - "leap-second" - "leap-year" - "learn-c-the-hard-way" - "learn-ruby-on-rails" - "learn-ruby-the-hard-way" - "least-astonishment" - "least-common-ancestor" - "least-privilege" - "least-squares" - "led" - "leda" - "ledbat" - "leex" - "left-join" - "left-recursion" - "left-to-right" - "leftalign" - "leftist-tree" - "legacy" - "legacy-app" - "legacy-code" - "legacy-database" - "legacydata" - "legal" - "legato" - "legend" - "legend-properties" - "lego" - "leiningen" - "lejos-nxj" - "leksah" - "lemmatization" - "lemmon-slider" - "lemon" - "lemon-graph-library" - "lemoon" - "lempel-ziv-76" - "lemur" - "lenny" - "lens" - "lenses" - "lenskit" - "lepl" - "leptonica" - "less" - "less-plugins" - "less-rails" - "less.js" - "less.php" - "lesscss-resources" - "lesshat" - "lessphp" - "lesti-fpc" - "let" - "let-binding" - "letrec" - "letter" - "letter-spacing" - "letteringjs" - "letterpress" - "letters" - "lettuce" - "level" - "level-of-detail" - "leveldb" - "levelhelper" - "levelplot" - "levels" - "levelscheme" - "levenberg-marquardt" - "levenshtein-distance" - "levigo" - "lex" - "lexer" - "lexical" - "lexical-analysis" - "lexical-cast" - "lexical-closures" - "lexical-scanner" - "lexical-scope" - "lexical-scoping" - "lexicographic" - "lexicon" - "lexing" - "lf" - "lfe" - "lfs" - "lftp" - "lg" - "lgbluetooth" - "lgpl" - "lib-nfc" - "lib-noir" - "lib.web.mvc" - "libalsa" - "libarchive" - "libaria" - "libasound" - "libav" - "libavcodec" - "libavformat" - "libavg" - "libc" - "libc++" - "libcds" - "libclang" - "libcloud" - "libcmtd" - "libcomponentlogging" - "libcouchbase" - "libcql" - "libcrypto" - "libcurl" - "libcurl.net" - "libdbi" - "libdc1394" - "libdispatch" - "libdrizzle" - "liberator" - "libev" - "libevent" - "libexif" - "libextobjc" - "libfaac" - "libffi" - "libgc" - "libgcc" - "libgcj" - "libgcrypt" - "libgdx" - "libgit2" - "libgit2sharp" - "libgmail" - "libgomp" - "libgosu" - "libgphoto2" - "libhand" - "libharu" - "libical" - "libiconv" - "libjingle" - "libjpeg" - "libjpeg-turbo" - "libjson" - "liblacewing" - "liblas" - "liblinear" - "libltdl" - "libm" - "libmagic" - "libmemcache" - "libmemcached" - "libming" - "libmms" - "libmosquitto" - "libmproxy" - "libmysql" - "libnds" - "libnet" - "libnids" - "libnodave" - "libnotify" - "libobjc" - "libobjc2" - "libopc" - "libots" - "libpcap" - "libpd" - "libphash" - "libphonenumber" - "libpng" - "libpq" - "libpqxx" - "libpurple" - "libpuzzle" - "libqxt" - "librabbitmq" - "librarian" - "libraries" - "library-design" - "library-interposition" - "library-path" - "library-project" - "libraw" - "libreadline" - "libredwg" - "libreoffice" - "libreoffice-base" - "libreoffice-basic" - "libreoffice-calc" - "libreplan" - "libresolv" - "libressl" - "librocket" - "librsvg" - "librsync" - "libs" - "libsass" - "libselinux" - "libserial" - "libsigc++" - "libsmbclient" - "libsndfile" - "libsodium" - "libsox" - "libspotify" - "libssh" - "libssh2" - "libssl" - "libstatusbar" - "libstdc++" - "libstreaming" - "libstrophe" - "libsvm" - "libsystem" - "libtcod" - "libtermkey" - "libtiff" - "libtiff.net" - "libtomcrypt" - "libtool" - "libtool-xcode" - "libtooling" - "libtorrent" - "libtorrent-rasterbar" - "libumem" - "libusb" - "libusb-1.0" - "libusb-win32" - "libusbdotnet" - "libuv" - "libv8" - "libvirt" - "libvlc" - "libvpx" - "libwcs" - "libwebsockets" - "libwww-perl" - "libx264" - "libxl" - "libxml" - "libxml-js" - "libxml-ruby" - "libxml2" - "libxslt" - "libyaml" - "libyuv" - "libz" - "libzip" - "license-key" - "license4j" - "licenses.licx" - "licensing" - "licode" - "lidar" - "lidar-data" - "lidgren" - "lifecycle" - "liferay" - "liferay-6" - "liferay-aui" - "liferay-hook" - "liferay-ide" - "liferay-service-builder" - "liferay-theme" - "liferay-velocity" - "lifetime" - "lifetime-scoping" - "lifo" - "lift" - "lift-json" - "lift-mapper" - "lift-record" - "lifted-operators" - "lifting" - "lifty" - "ligature" - "light" - "light-inject" - "light-sensor" - "lightadmin" - "lightblue" - "lightbox" - "lightbox2" - "lightcore" - "lighthouse" - "lighting" - "lightning" - "lightopenid" - "lightroom" - "lights" - "lightspeed" - "lightstreamer" - "lightswitch" - "lightswitch-2012" - "lightswitch-2013" - "lighttable" - "lighttpd" - "lightweight-processes" - "lightwindow" - "lighty" - "liipimaginebundle" - "like" - "like-keyword" - "like-operator" - "likwid" - "lilypond" - "lime" - "limejs" - "limelight" - "limesurvey" - "limewire" - "limit" - "limit-choices-to" - "limit-clause" - "limit-per-group" - "limited-user" - "limiting" - "limits" - "limo" - "linaro" - "linda" - "linden-scripting-language" - "linderdaum" - "line" - "line-breaks" - "line-by-line" - "line-count" - "line-drawing" - "line-endings" - "line-intersection" - "line-numbers" - "line-of-business-app" - "line-plot" - "line-processing" - "line-segment" - "line-through" - "linea-pro" - "linear" - "linear-algebra" - "linear-equation" - "linear-gradients" - "linear-interpolation" - "linear-programming" - "linear-regression" - "linear-search" - "linear-solver" - "linear-types" - "lineargradientbrush" - "linearization" - "linecache" - "linechart" - "linefeed" - "linegraph" - "linemanjs" - "lines" - "lines-of-code" - "lineseries" - "linestyle" - "linewrap" - "linfu" - "linfu-dynamicproxy" - "lingo" - "lingpipe" - "linguaplone" - "linguistics" - "link-checking" - "link-header" - "link-local" - "link-tag" - "link-to" - "link-to-function" - "link-to-remote" - "linkage" - "linkbutton" - "linkchecker" - "linkdemand" - "linked" - "linked-data" - "linked-list" - "linked-server" - "linked-tables" - "linkedhashmap" - "linkedhashset" - "linkedin" - "linkedin-gem" - "linkedin-glu" - "linkedin-j" - "linkedin-jsapi" - "linkedmdb" - "linker" - "linker-error" - "linker-flags" - "linker-scripts" - "linker-warning" - "linkfieldvalue" - "linkify" - "linking-errors" - "linklabel" - "linkmovementmethod" - "linkoption" - "linkparser" - "linkpoint" - "links" - "linkshare" - "linksys" - "linktable" - "linode" - "linphone" - "linq" - "linq-expressions" - "linq-extensions" - "linq-group" - "linq-method-syntax" - "linq-query-syntax" - "linq-to-dataset" - "linq-to-entities" - "linq-to-excel" - "linq-to-json" - "linq-to-ldap" - "linq-to-lucene" - "linq-to-mysql" - "linq-to-nhibernate" - "linq-to-objects" - "linq-to-sharepoint" - "linq-to-sql" - "linq-to-twitter" - "linq-to-wiki" - "linq-to-xml" - "linq-to-xsd" - "linq.compiledquery" - "linq.js" - "linq2db" - "linq2indexeddb" - "linq4j" - "linqbridge" - "linqdatasource" - "linqkit" - "linqpad" - "linqtemplates" - "linqtocsv" - "lint" - "lintian" - "linux" - "linux-capabilities" - "linux-containers" - "linux-device-driver" - "linux-distro" - "linux-from-scratch" - "linux-kernel" - "linux-standard-base" - "linux-toolchain" - "linux-x32-abi" - "linuxbrew" - "linuxmint" - "linuxthreads" - "lipo" - "liquibase" - "liquid" - "liquid-layout" - "liquidsoap" - "lirc" - "lis" - "lisp" - "lisp-2" - "lisp-box" - "lisp-in-a-box" - "lisp-unit" - "lispworks" - "list" - "list-comparison" - "list-comprehension" - "list-definition" - "list-initialization" - "list-literal" - "list-manipulation" - "list-separator" - "list-template" - "list.selectedvalue" - "listactivity" - "listadapter" - "listbox" - "listbox-control" - "listboxitem" - "listboxitems" - "listbuffer" - "listcellrenderer" - "listchanged" - "listcollectionview" - "listcontrol" - "listctrl" - "listdir" - "listen" - "listener" - "listeners" - "listfield" - "listgrid" - "listings" - "listitem" - "listiterator" - "listivew" - "listjs" - "listlabel" - "listobject" - "listpicker" - "listpreference" - "listproperty" - "listselectionlistener" - "listserv" - "listview" - "listview-adapter" - "listview-selector" - "listviewgroup" - "listviewitem" - "litabcontrol" - "liteide" - "literal-class" - "literals" - "literate-programming" - "litespeed" - "lithium" - "litjson" - "litterallycanvas.js" - "little-endian" - "little-man-computer" - "little-o" - "little-proxy" - "live" - "live-cd" - "live-connect-sdk" - "live-meeting" - "live-mesh" - "live-preview" - "live-sdk" - "live-streaming" - "live-templates" - "live-tile" - "live-update" - "live-video" - "live-wallpaper" - "live555" - "livebindings" - "livechat" - "livecode" - "livecoding" - "liveconnect" - "livecycle" - "livecycle-designer" - "livedocx" - "liveedit" - "livefyre" - "livegraph" - "liveid" - "livelink" - "livelock" - "livequery" - "liverail" - "livereload" - "livescribe" - "livescript" - "livesearch" - "liveserver" - "livevalidation" - "liveview" - "livewires" - "ll" - "llblgen" - "llblgenpro" - "llc" - "lldb" - "llvm" - "llvm-3.0" - "llvm-3.1" - "llvm-3.2" - "llvm-4.0" - "llvm-c++-api" - "llvm-clang" - "llvm-fs" - "llvm-gcc" - "llvm-ir" - "llvm-py" - "llvm5" - "llvm5.1" - "lm" - "lmax" - "lmdb" - "lme4" - "lmer" - "lmtp" - "ln" - "lnk" - "lnk2001" - "lnk2005" - "lnk2019" - "lnk2022" - "load" - "load-balancing" - "load-data-infile" - "load-factor" - "load-generator" - "load-order" - "load-path" - "load-testing" - "load-time" - "load-time-weaving" - "loadcontrol" - "loaddata" - "loaded" - "loader" - "loaderinfo" - "loaderlock" - "loadimage" - "loading" - "loading-animation" - "loading-image" - "loadjava" - "loadleveler" - "loadlibrary" - "loadmask" - "loadmodule" - "loadnibnamed" - "loadoptions" - "loadrunner" - "loadui" - "loadvars" - "loadview" - "loadviewstate" - "lob" - "lobo" - "lobo-cobra" - "loc" - "local" - "local-class" - "local-database" - "local-datastore" - "local-definition" - "local-files" - "local-network" - "local-security-policy" - "local-shared-object" - "local-storage" - "local-system-account" - "local-variables" - "localbroadcastmanager" - "localconnection" - "localdatacache" - "localdb" - "locale" - "localeconv" - "localforage" - "localhost" - "locality-sensitive-hash" - "localityofreference" - "localizable.strings" - "localization" - "localized" - "locallib" - "localnotification" - "localreport" - "locals" - "localserver" - "localserversocket" - "localsocket" - "localsolr" - "localsystem" - "localtime" - "localtunnel" - "localytics" - "locate" - "location" - "location-aware" - "location-based" - "location-based-service" - "location-client" - "location-href" - "location-provider" - "location-services" - "location-sharing" - "locationlistener" - "locationmanager" - "locationmatch" - "locbaml" - "lock-free" - "lock-in" - "lockbits" - "lockbox-2" - "lockbox-3" - "lockdown" - "locked" - "locked-files" - "lockfile" - "locking" - "lockless" - "lockout" - "locks" - "lockscreen" - "lockscreenwidget" - "lockup" - "locomotivecms" - "locomotivejs" - "locust" - "lodash" - "loess" - "log-analysis" - "log-files" - "log-rotation" - "log-shipping" - "log-viewer" - "log4" - "log4c" - "log4cplus" - "log4cpp" - "log4cxx" - "log4d" - "log4j" - "log4j2" - "log4javascript" - "log4jdbc" - "log4jna" - "log4js-node" - "log4net" - "log4net-appender" - "log4net-configuration" - "log4net-filter" - "log4perl" - "log4php" - "log4postsharp" - "log4qt" - "log4r" - "log4view" - "log5j" - "logarithm" - "logary" - "logback" - "logback-groovy" - "logcat" - "logentries" - "logfactory" - "logfile" - "logfile-analysis" - "logfiles" - "logged" - "logging" - "logging-application-block" - "loggly" - "logic" - "logic-programming" - "logical" - "logical-components" - "logical-grouping" - "logical-operators" - "logical-or" - "logical-reads" - "logical-tree" - "logicblox" - "login" - "login-attempts" - "login-automation" - "login-config.xml" - "login-control" - "login-name" - "login-page" - "login-required" - "login-script" - "login-system" - "loginfo" - "loginradius" - "loginstatus" - "loginview" - "logiql" - "logistic-regression" - "logistics" - "logitech" - "logitech-gaming-software" - "loglog" - "logmein" - "logmx" - "logo" - "logo-testing" - "logoff" - "logon-failed" - "logonserver" - "logos" - "logout" - "logparser" - "logramm" - "logrotate" - "logstash" - "logstash-forwarder" - "logstash-grok" - "logstash-logback-encoder" - "logtalk" - "lokad-cqrs" - "loki" - "lolcode" - "lombok" - "lomo-effect" - "londiste" - "long-click" - "long-double" - "long-filenames" - "long-integer" - "long-lines" - "long-long" - "long-parameter-list" - "long-polling" - "long-press" - "long-running-processes" - "longest-path" - "longest-prefix" - "longest-substring" - "longjmp" - "longlistselector" - "longtable" - "longtext" - "look-and-feel" - "lookahead" - "lookaround" - "lookback" - "lookbackapi" - "lookbehind" - "looking-glass" - "lookless" - "lookup" - "lookup-field" - "lookup-tables" - "lookupfield" - "loop-counter" - "loop-invariant" - "loop-unrolling" - "loopback" - "loopback-address" - "loopbackjs" - "looper" - "loopingselector" - "loopj" - "loops" - "loose" - "loose-coupling" - "loose-typing" - "lorem-ipsum" - "loss" - "lossless" - "lossless-compression" - "lossy-compression" - "lost-focus" - "lostfocus" - "lotus" - "lotus-designer" - "lotus-domino" - "lotus-formula" - "lotus-notes" - "lotus-ruby" - "lotus-sametime" - "lotus-wcm" - "lotusscript" - "loupe" - "lov" - "love2d" - "loveseat" - "low-latency" - "low-level" - "low-level-api" - "low-level-code" - "low-level-io" - "low-memory" - "lower-bound" - "lowercase" - "lowest-common-ancestor" - "lowpass-filter" - "lowpro" - "lpa-flex" - "lparam" - "lpbyte" - "lpc" - "lpcstr" - "lpcwstr" - "lpeg" - "lpod" - "lpr" - "lpsolve" - "lpsolveapi" - "lpstr" - "lpt" - "lptstr" - "lpwstr" - "lr" - "lr1" - "lru" - "ls" - "ls-colors" - "ls-remote" - "ls2j" - "lsa" - "lsb" - "lseek" - "lsf" - "lshell" - "lsm-tree" - "lsmeans" - "lso" - "lsof" - "lsp" - "lstlisting" - "lsusb" - "lsw-memcache-bundle" - "lte" - "ltk" - "lto" - "ltpa" - "ltrace" - "ltree" - "lts" - "lttng" - "lua" - "lua-4.0" - "lua-5.1" - "lua-5.2" - "lua-5.3" - "lua-alien" - "lua-api" - "lua-c++-connection" - "lua-edit" - "lua-lanes" - "lua-loadfile" - "lua-mode" - "lua-patterns" - "lua-scripting-library" - "lua-table" - "lua-userdata" - "lua.net" - "luabind" - "luabridge" - "luac" - "luacom" - "luadec" - "luadoc" - "luafilesystem" - "luagl" - "luainterface" - "luaj" - "luajava" - "luajit" - "luaplus" - "luarocks" - "luasec" - "luasocket" - "luasql" - "luaxml" - "lubm" - "lubridate" - "lucene" - "lucene-filters" - "lucene-highlighter" - "lucene-index" - "lucene-nrt" - "lucene.net" - "lucene.net.linq" - "luci" - "lucidchart" - "lucidworks" - "luhn" - "luke" - "lumberjack" - "lumenworks" - "lumia" - "lumia-imaging-sdk" - "luminance" - "luminus" - "lumisoft" - "lumx" - "lungo" - "lungojs" - "luntbuild" - "lustre" - "luup-engine" - "luvit" - "lvalue" - "lvalue-to-rvalue" - "lvm" - "lwip" - "lwjgl" - "lwp" - "lwp-useragent" - "lwrp" - "lwt" - "lwuit" - "lwuit-button" - "lwuit-combobox" - "lwuit-command" - "lwuit-container" - "lwuit-dialog" - "lwuit-form" - "lwuit-label" - "lwuit-layouts" - "lwuit-list" - "lwuit-resource-editor" - "lwuit-scroll" - "lwuit-tabs" - "lwuit-textarea" - "lwuit-textfield" - "lwuit-vkb" - "lxc" - "lxc-docker" - "lxml" - "lxml.html" - "lxr" - "lxrt" - "lychrel-numbers" - "lync" - "lync-2010" - "lync-2013" - "lync-client-sdk" - "lync-server-2010" - "lynx" - "lynxos" - "lytebox" - "lytro" - "lyx" - "lz4" - "lz77" - "lzf" - "lzh" - "lzma" - "lzo" - "lzw" - "lzx" - "m" - "m-file" - "m2crypto" - "m2e" - "m2e-pro" - "m2e-wtp" - "m2eclipse" - "m2m" - "m3g" - "m3u" - "m3u8" - "m4" - "m4a" - "m4v" - "mac-address" - "mac-app-store" - "mac-classic" - "mac-frameworks" - "mac-office" - "mac-os-x-server" - "mac-roman" - "macapplication" - "macbook" - "macbookpro" - "macdeployqt" - "macfuse" - "mach" - "mach-ii" - "mach-o" - "machg" - "machina.js" - "machine-code" - "machine-config" - "machine-instruction" - "machine-language" - "machine-learning" - "machine-translation" - "machine.config" - "machine.fakes" - "machinekey" - "machinist" - "macports" - "macrodef" - "macromedia" - "macros" - "macruby" - "macrubyc" - "macvim" - "madbee" - "madcap" - "madexcept" - "madge" - "maemo" - "maf" - "magazine" - "mage" - "mageia" - "magellan" - "magento" - "magento-1.12" - "magento-1.13" - "magento-1.3" - "magento-1.4" - "magento-1.5" - "magento-1.6" - "magento-1.7" - "magento-1.8" - "magento-1.9" - "magento-1.9.1" - "magento-admin" - "magento-catalog" - "magento-dev" - "magento-fpc" - "magento-go" - "magento-layout-xml" - "magento-module" - "magento-rules" - "magento-upgrade" - "magento2" - "magic" - "magic-constants" - "magic-draw" - "magic-function" - "magic-methods" - "magic-mouse" - "magic-numbers" - "magic-quotes" - "magic-quotes-gpc" - "magic-square" - "magic-string" - "magicalrecord" - "magicalrecord-2.1" - "magicalrecord-2.2" - "magick++" - "magick.net" - "magickcore" - "magicknet" - "magickwand" - "magicline" - "magicmock" - "magicsuggest" - "magiczoom" - "magiczoomplus" - "magit" - "maglev" - "magma" - "magmi" - "magnet-uri" - "magnetic" - "magnetic-cards" - "magnetometer" - "magnific-popup" - "magnification" - "magnification-api" - "magnify" - "magnitude" - "magnolia" - "magpie" - "magrittr" - "mahapps.metro" - "mahara" - "mahjong" - "mahotas" - "mahout" - "mahout-recommender" - "mail-form" - "mail-gem" - "mail-merge" - "mail-mime" - "mail-queue" - "mail-sender" - "mail-server" - "mailaddress" - "mailboxer" - "mailboxprocessor" - "mailcatcher" - "mailchimp" - "mailcore" - "mailcore2" - "maildir" - "mailer" - "mailgun" - "mailing" - "mailing-list" - "mailitem" - "mailjet" - "mailkit" - "mailman" - "mailman-gem" - "mailmerge" - "mailmessage" - "mailnotifier" - "mailsettings" - "mailslot" - "mailsystem.net" - "mailto" - "mailtrap.io" - "mailx" - "main" - "main-activity" - "main-memory-database" - "main-method" - "mainbundle" - "mainclass" - "mainframe" - "mainscreen" - "maintainability" - "maintaining-code" - "maintainscrollpositionon" - "maintenance" - "maintenance-mode" - "maintenance-plan" - "mainwindow" - "major-mode" - "major-upgrade" - "make" - "make-install" - "make-shared" - "makecab" - "makecert" - "maked-textbox" - "makefile" - "makefile-project" - "makekeyandordertofront" - "makemaker" - "makemigrations" - "makepp" - "mako" - "makumba" - "mal" - "malbolge" - "malcom" - "malformed" - "malformedurlexception" - "mali" - "mali-400" - "mallard" - "mallet" - "malloc" - "malloc-history" - "malware" - "malware-detection" - "maml" - "mamp" - "mamp-pro" - "man" - "man-in-the-middle" - "manage.py" - "managed" - "managed-bean" - "managed-c++" - "managed-code" - "managed-directx" - "managed-ews" - "managed-extensions" - "managed-file" - "managed-jscript" - "managed-property" - "manageddirectx" - "managedfusion" - "managedinstallerclass" - "managedobjectcontext" - "management-pack" - "management-studio" - "management-studio-express" - "managementeventwatcher" - "manager" - "manager-app" - "managment" - "manatee.trello" - "manchester-syntax" - "mandango" - "mandelbrot" - "mandelbug" - "mandrill" - "mangodb" - "manifest" - "manifest.cache" - "manifest.mf" - "manifest.xml" - "manifold" - "manifoldcf" - "maniphest" - "manipulation" - "manipulators" - "mano-machine" - "manos" - "manova" - "manpage" - "mantis" - "mantissa" - "mantle" - "manual" - "manual-testing" - "manualresetevent" - "manuals" - "many-to-many" - "many-to-one" - "manyconsole" - "manyrelatedmanager" - "manytomanyfield" - "map" - "map-basic" - "map-directions" - "map-edit" - "map-files" - "map-force" - "map-projections" - "mapactivity" - "mapbox" - "mapdb" - "mapfish" - "mapfragment" - "mapguide" - "mapi" - "mapi-audiocopy" - "mapi-audiopaste" - "mapinfo" - "maping" - "mapisendmail" - "mapkit" - "mapkitannotation" - "maple" - "maplist" - "mapmyfitness" - "mapnik" - "mappath" - "mapped-drive" - "mappedbytebuffer" - "mappedsuperclass" - "mapper" - "mappers" - "mapping" - "mapping-by-code" - "mapping-model" - "mapping-resources" - "mappingexception" - "mappings" - "mapplets" - "mapply" - "mappoint" - "mappy" - "mapquest" - "mapr" - "mapreduce" - "maproute" - "maps" - "mapserver" - "mapsforge" - "mapstraction" - "mapstruct" - "mapsvg" - "maptiler" - "maptools" - "mapxtreme" - "maqetta" - "marathon" - "marathontesting" - "marc" - "marching-ants" - "marching-cubes" - "margin" - "marginalia" - "margins" - "mariadb" - "marie" - "marimekko-chart" - "marionette" - "mark" - "mark-and-sweep" - "mark-of-the-web" - "markaby" - "markdown" - "markdownsharp" - "marker" - "marker-interfaces" - "marker-manager" - "markerclusterer" - "markermanager" - "markers" - "markerspiderfier" - "market-basket-analysis" - "market-share" - "marketo" - "marketplace" - "markitup" - "marklogic" - "markov" - "markov-chains" - "markov-models" - "markup" - "markup-extensions" - "markupbuilder" - "marmalade" - "marmalade-edk" - "marmalade-iwui" - "marmalade-quick" - "marpa" - "marquee" - "marray" - "mars" - "mars-simulator" - "marshalbyrefobject" - "marshalling" - "martini" - "maruku" - "marvin-framework" - "marvinproject" - "marytts" - "mashape" - "mashery" - "mashtogether" - "mashup" - "mask" - "masked" - "maskededitextender" - "maskededitvalidator" - "maskedinput" - "maskedtextbox" - "maskformatter" - "masking" - "masm" - "masm32" - "mason" - "masonry" - "mass-assignment" - "mass-emails" - "mass-package" - "massif" - "massive" - "massmail" - "masspay" - "masstransit" - "master" - "master-data-management" - "master-data-services" - "master-detail" - "master-pages" - "master-slave" - "master-theorem" - "mastercard" - "mat" - "mat-file" - "match" - "match-against" - "matchcollection" - "matcher" - "matchevaluator" - "matching" - "matchmedia" - "matchtemplate" - "mate" - "mate-desktop" - "mate-flex-framework" - "material" - "material-design" - "material-theme" - "materialize" - "materialized" - "materialized-path-pattern" - "materialized-views" - "math" - "math-mode" - "math.h" - "math.sqrt" - "mathcad" - "mathcontext" - "mathdotnet" - "mathematica-7" - "mathematica-8" - "mathematica-cdf" - "mathematica-frontend" - "mathematical-expressions" - "mathematical-lattices" - "mathematical-morphology" - "mathematical-notation" - "mathematical-optimization" - "mathematical-packages" - "mathematical-typesetting" - "mathgl" - "mathics" - "mathjax" - "mathjs" - "mathlink" - "mathml" - "mathnet" - "mathos-parser" - "mathprog" - "mathquill" - "mathtype" - "matisse" - "matlab" - "matlab-class" - "matlab-coder" - "matlab-compiler" - "matlab-cvst" - "matlab-deployment" - "matlab-engine" - "matlab-figure" - "matlab-gpu" - "matlab-guide" - "matlab-hg2" - "matlab-ide" - "matlab-java" - "matlab-load" - "matlab-path" - "matlab-standalone" - "matlab-table" - "matlab-toolbox" - "matlab-uitable" - "matlabcontrol" - "matlabpool" - "matplotlib" - "matplotlib-basemap" - "matrix" - "matrix-decomposition" - "matrix-factorization" - "matrix-indexing" - "matrix-inverse" - "matrix-math" - "matrix-multiplication" - "matrix-storage" - "matrix-transform" - "matrix-vision" - "matrixcursor" - "matroska" - "maturity" - "maude-system" - "mavanagaiata" - "maven" - "maven-1" - "maven-2" - "maven-3" - "maven-ant-tasks" - "maven-antrun-plugin" - "maven-archetype" - "maven-assembly-plugin" - "maven-bundle-plugin" - "maven-cargo" - "maven-central" - "maven-changes-plugin" - "maven-clean-plugin" - "maven-cobertura-plugin" - "maven-compiler-plugin" - "maven-dependency-plugin" - "maven-deploy-plugin" - "maven-descriptor" - "maven-ear-plugin" - "maven-eclipse-plugin" - "maven-embedder" - "maven-enforcer-plugin" - "maven-failsafe-plugin" - "maven-for-php" - "maven-gae-plugin" - "maven-glassfish-plugin" - "maven-indexer" - "maven-install-plugin" - "maven-invoker-plugin" - "maven-jar-plugin" - "maven-javadoc-plugin" - "maven-jaxb2-plugin" - "maven-jetty-plugin" - "maven-lifecycle" - "maven-module" - "maven-mojo" - "maven-nar-plugin" - "maven-nbm" - "maven-overlay" - "maven-package" - "maven-pdf-plugin" - "maven-plugin" - "maven-plugin-development" - "maven-profiles" - "maven-publish" - "maven-reactor" - "maven-release-plugin" - "maven-replacer-plugin" - "maven-resources-plugin" - "maven-scala-plugin" - "maven-scm" - "maven-scm-plugin" - "maven-scr-plugin" - "maven-shade-plugin" - "maven-site-plugin" - "maven-source-plugin" - "maven-surefire-plugin" - "maven-tomcat-plugin" - "maven-wagon-plugin" - "maven-war-plugin" - "maven-webstart-plugin" - "mawk" - "max" - "max-flow" - "max-heap" - "max-msp-jitter" - "max-path" - "max-size" - "max732x.c" - "maxby" - "maxdate" - "maxent" - "maxima" - "maximization" - "maximize" - "maximize-window" - "maximo" - "maxlength" - "maxmind" - "maxreceivedmessagesize" - "maxrequestlength" - "maxscript" - "maxstringcontentlength" - "maxthon" - "maxtotalconnections" - "maya" - "mayavi" - "maybe" - "maze" - "mb-convert-encoding" - "mbaas" - "mbcalendarkit" - "mbcs" - "mbeanexporter" - "mbeans" - "mbed" - "mbf" - "mbox" - "mbprogresshud" - "mbr" - "mbrola" - "mbstring" - "mbt" - "mbtiles" - "mbunit" - "mbv" - "mc" - "mcafee" - "mcapi" - "mcapi.net" - "mcas" - "mcc" - "mcedit" - "mci" - "mcimagemanager" - "mcisendstring" - "mcl" - "mclapply" - "mcmc" - "mcml" - "mcms" - "mcms-2000" - "mcollective" - "mcpd" - "mcpl" - "mcps" - "mcrypt" - "mcrypt-js" - "mcs" - "mcsession" - "mcts" - "md5" - "md5-file" - "md5sum" - "mda" - "mdac" - "mdadm" - "mdb2" - "mdbg" - "mdbtools" - "mdc" - "mdd" - "mde" - "mdf" - "mdg-camera" - "mdht" - "mdi" - "mdichild" - "mdiparent" - "mdls" - "mdm" - "mdm-zinc" - "mdns" - "mdp" - "mdpi" - "mds-cs" - "mdsd" - "mdt" - "mdtool" - "mdw" - "mdx" - "mdxstudio" - "mean" - "mean-shift" - "mean-square-error" - "mean-stack" - "mean.io" - "meanjs" - "measure" - "measurement" - "measurement-protocol" - "measurement-studio" - "measureoverride" - "measures" - "measurestring" - "mecab" - "mechanicalturk" - "mechanize" - "mechanize-python" - "mechanize-ruby" - "meck" - "media" - "media-channel" - "media-keys" - "media-library" - "media-manager" - "media-player" - "media-queries" - "media-source" - "media-type" - "media-url" - "mediacenter" - "mediacodec" - "mediacontroller" - "mediaelement" - "mediaelement.js" - "mediaextractor" - "mediafire" - "mediainfo" - "medial-axis" - "mediametadataretriever" - "mediamuxer" - "median" - "median-of-medians" - "mediaplayback" - "mediaplayerservices" - "mediarecorder" - "mediarss" - "mediastore" - "mediastreamsegmenter" - "mediastreamsource" - "mediatemple" - "mediator" - "mediatr" - "mediatypeformatter" - "mediawiki" - "mediawiki-api" - "mediawiki-extensions" - "mediawiki-templates" - "medical" - "medium-editor" - "medium-trust" - "medium.com" - "medoo" - "meebo" - "meego" - "meego-harmattan" - "meekro" - "meep" - "meeting" - "meeting-request" - "meetup" - "mef" - "mef-fluent" - "mef2" - "mefedmvvm" - "megabyte" - "megamenu" - "megapixel" - "megaupload" - "meio-upload" - "meiomask" - "mel" - "meld" - "melonjs" - "melpa" - "melt" - "mem-fun" - "membase" - "member" - "member-access" - "member-function" - "member-function-pointers" - "member-functions" - "member-hiding" - "member-initialization" - "member-pointers" - "member-properties" - "member-variables" - "memberinfo" - "memberof" - "members" - "membership" - "membership-provider" - "membershipreboot" - "membershipuser" - "memberwiseclone" - "membus" - "memcache-stats" - "memcached" - "memcachedb" - "memcachier" - "memcheck" - "memcmp" - "memcpy" - "memento" - "memkeys" - "memmove" - "memo" - "memoir" - "memoization" - "memorization" - "memory" - "memory-access" - "memory-address" - "memory-alignment" - "memory-allocation" - "memory-bandwidth" - "memory-barriers" - "memory-consumption" - "memory-corruption" - "memory-deallocation" - "memory-dump" - "memory-editing" - "memory-efficient" - "memory-fences" - "memory-footprint" - "memory-fragmentation" - "memory-layout" - "memory-leak-detector" - "memory-leaks" - "memory-limit" - "memory-locking" - "memory-management" - "memory-mapped-files" - "memory-mapping" - "memory-model" - "memory-optimization" - "memory-optimized-tables" - "memory-pool" - "memory-pressure" - "memory-profiling" - "memory-safety" - "memory-segmentation" - "memory-size" - "memory-table" - "memory-visibility" - "memory-warning" - "memoryanalyzer" - "memorycache" - "memoryimagesource" - "memorystream" - "memoryview" - "memprof" - "memset" - "memsql" - "mencoder" - "mendeley" - "menhir" - "menpo" - "mention" - "menu" - "menu-items" - "menubar" - "menuitem" - "menuitem-selection" - "menustrip" - "meny-js" - "mer" - "merb" - "merb-auth" - "mercator" - "merchant-account" - "mercurial" - "mercurial-api" - "mercurial-bigfiles" - "mercurial-convert" - "mercurial-extension" - "mercurial-hook" - "mercurial-keyring" - "mercurial-phases" - "mercurial-queue" - "mercurial-revsets" - "mercurial-server" - "mercurial-subrepos" - "mercurial-svn" - "mercurialeclipse" - "mercury" - "mercury-editor" - "mercury-mta" - "merge" - "merge-conflict-resolution" - "merge-file" - "merge-module" - "merge-replication" - "merge-statement" - "merge-strategy" - "merge-tracking" - "mergecursor" - "mergeddictionaries" - "mergefield" - "mergeinfo" - "mergemodule" - "mergesort" - "mergetool" - "merging-data" - "mergmicrophone" - "merit-gem" - "mersenne-twister" - "mesa" - "meschach" - "mesh" - "mesh-network" - "meshlab" - "mesos" - "mesosphere" - "message" - "message-bundle" - "message-bus" - "message-digest" - "message-driven-bean" - "message-forwarding" - "message-handlers" - "message-listener" - "message-loop" - "message-map" - "message-passing" - "message-pump" - "message-queue" - "message-system" - "message-type" - "messageboard" - "messagebox" - "messagebroker" - "messagecontract" - "messagedialog" - "messageenumerator" - "messageformat" - "messageid" - "messagepack" - "messagepump" - "messages" - "messageui" - "messagewindow" - "messaging" - "messenger" - "meta" - "meta-attribute" - "meta-boxes" - "meta-inf" - "meta-key" - "meta-method" - "meta-object-facility" - "meta-predicate" - "meta-search" - "meta-tags" - "meta-title" - "meta-where" - "metabase" - "metacello" - "metacharacters" - "metacircular" - "metacity" - "metaclass" - "metacpan" - "metadata" - "metadata-repository" - "metadatatype" - "metafile" - "metafont" - "metaio" - "metal" - "metal-framework" - "metalanguage" - "metalc" - "metalsmith" - "metalua" - "metamodel" - "metaobject" - "metaocaml" - "metaphone" - "metapost" - "metaprogramming" - "metaspace" - "metasploit" - "metastore" - "metasyntactic-variable" - "metatable" - "metatag" - "metatrader4" - "metatrader5" - "metawatch" - "metaweblog" - "metawhere" - "metawidget" - "meteor" - "meteor-0.9.4" - "meteor-accounts" - "meteor-autoform" - "meteor-blaze" - "meteor-helper" - "meteor-plugin" - "meteor-publications" - "meteor-slides" - "meteor-up" - "meteor-velocity" - "meteorcharts" - "meteoric" - "meteorite" - "meteorjs" - "meter" - "metering" - "method-call" - "method-cascades" - "method-chaining" - "method-declaration" - "method-dispatch" - "method-group" - "method-hiding" - "method-interception" - "method-invocation" - "method-missing" - "method-modifier" - "method-names" - "method-overloading" - "method-overriding" - "method-parameters" - "method-reference" - "method-resolution-order" - "method-signature" - "method-swizzling" - "methodaccessexception" - "methodbase" - "methodexpression" - "methodhandle" - "methodimplattribute" - "methodinfo" - "methodnotfound" - "methodology" - "methods" - "metis" - "metric" - "metric-fu" - "metric-space" - "metric-system" - "metrical" - "metrics" - "metro-ui-css" - "metro.js" - "metrofax" - "metrolog" - "metrowerks" - "mex" - "mex-bindings" - "mezzanine" - "mfc" - "mfc-feature-pack" - "mfc-networking" - "mfcc" - "mfi" - "mflow" - "mfmailcomposer" - "mfmailcomposeviewcontroll" - "mfmessagecomposeview" - "mfslidemenu" - "mft" - "mgcv" - "mgo" - "mgrammar" - "mgtwitterengine" - "mgwt" - "mhash" - "mhtml" - "mib" - "mibian" - "micr" - "micrium" - "micro-ip" - "micro-optimization" - "micro-orm" - "microbenchmark" - "microblaze" - "microblogging" - "microc" - "microchip" - "microcoding" - "microcontroller" - "microdata" - "microfocus" - "microformats" - "microkernel" - "microphone" - "microprocessors" - "microservices" - "microsoft" - "microsoft-accelerator" - "microsoft-account" - "microsoft-acm" - "microsoft-agent" - "microsoft-ajax" - "microsoft-ajax-minifier" - "microsoft-appstore" - "microsoft-bits" - "microsoft-cdn" - "microsoft-certifications" - "microsoft-chart-controls" - "microsoft-commerce-server" - "microsoft-contracts" - "microsoft-cpp-unit-test" - "microsoft-dynamics" - "microsoft-expression" - "microsoft-expression-web" - "microsoft-fakes" - "microsoft-glee" - "microsoft-ink" - "microsoft-media-server" - "microsoft-metro" - "microsoft-ocr" - "microsoft-project-vba" - "microsoft-reporting" - "microsoft-research" - "microsoft-runtime-library" - "microsoft-sal" - "microsoft-search-server" - "microsoft-speech-api" - "microsoft-speech-platform" - "microsoft-sync-framework" - "microsoft-tag" - "microsoft-test-manager" - "microsoft-translator" - "microsoft-ui-automation" - "microsoft-vcc" - "microsoft-virtualization" - "microsoft-web-deploy" - "microsoft.build" - "microsoft.ink" - "microsoft.mshtml" - "microsoft.sdc.tasks" - "microstation" - "microstrategy" - "microtime" - "microxml" - "midas-editor" - "midas-server" - "middle-tier" - "middleman" - "middleware" - "midi" - "midi-instrument" - "midi-interface" - "midijs" - "midje" - "midl" - "midlet" - "midori" - "midp" - "midp-2.0" - "mifare" - "mifosx" - "mightymoose" - "miglayout" - "migradoc" - "migrate" - "migrating" - "migration" - "migration-manager" - "migration-wizard" - "migrator.net" - "migratordotnet" - "mijireh" - "mikroc" - "mikrotik" - "miktex" - "milestone" - "millennial-media" - "miller-columns" - "milliseconds" - "milton" - "mime" - "mime-filter" - "mime-mail" - "mime-message" - "mime-types" - "mime4j" - "mimecraft" - "mimedefang" - "mimekit" - "mimosa" - "min" - "min-heap" - "min.js" - "min3d" - "mina" - "mincemeat" - "mincer" - "mindate" - "mindmap" - "mindmapping" - "mindscape" - "mindstorms" - "mindtouch" - "minecraft" - "minecraft-forge" - "minesweeper" - "ming" - "mingw" - "mingw-w64" - "mingw32" - "mingw64" - "minhash" - "mini-language" - "mini-xml" - "minibufexplorer" - "minibuffer" - "miniconda" - "minicpan" - "minidom" - "minidump" - "minidumpwritedump" - "minification" - "minifiedjs" - "minifilter" - "minify" - "minifyify" - "minikanren" - "minim" - "minima" - "minimagick" - "minimal-json" - "minimatch" - "minimax" - "minimization" - "minimize" - "minimized" - "minimongo" - "minimum" - "minimum-coded-unit" - "minimum-cut" - "minimum-requirements" - "minimum-size" - "minimum-spanning-tree" - "minimumosversion" - "mininet" - "mining" - "miniport" - "miniprofiler" - "miniskirt" - "minispade" - "ministro" - "minitab" - "minitab-16" - "minitest" - "miniupnpc" - "minix" - "minizinc" - "mink" - "minmatch" - "minmax" - "minmax-heap" - "minoccurs" - "minor-mode" - "mint" - "mintty" - "minute" - "mipmaps" - "mips" - "mips32" - "mips64" - "miracast" - "mirah" - "miranda" - "mirc" - "mirror" - "mirroring" - "mirrorlink" - "mirth" - "miscutils" - "misfire-instruction" - "mismatch" - "miso.dataset" - "misra" - "missing-cookies" - "missing-data" - "missing-features" - "missing-symbols" - "missing-template" - "missingmethod" - "missingmethodexception" - "mission-control" - "mission-critical" - "misspelling" - "misultin" - "misuse" - "misv" - "mit-kerberos" - "mit-license" - "mit-scheme" - "mit-scratch" - "miter" - "mithril.js" - "mitk" - "mitmproxy" - "miva" - "mix" - "mixed" - "mixed-authentication" - "mixed-case" - "mixed-code" - "mixed-content" - "mixed-mode" - "mixed-models" - "mixed-programming" - "mixed-radix" - "mixer" - "mixing" - "mixins" - "mixitup" - "mixlib-shellout" - "mixpanel" - "mixradio" - "mixture-model" - "mjpeg" - "mjsip" - "mkannotation" - "mkannotationview" - "mkbundle" - "mkcoordinateregion" - "mkcoordinatespan" - "mkdir" - "mkdirs" - "mkfifo" - "mkicloudsync" - "mklink" - "mklocalsearch" - "mklocalsearchrequest" - "mkmapcamera" - "mkmapitem" - "mkmapkit" - "mkmaprect" - "mkmapsnapshotter" - "mkmapview" - "mkmapviewdelegate" - "mkmf" - "mknetworkengine" - "mknetworkkit" - "mknod" - "mkoverlay" - "mkoverlaypathrenderer" - "mkpinannotationview" - "mkplacemark" - "mkpointannotation" - "mkpolygon" - "mkpolygonrenderer" - "mkpolygonview" - "mkpolyline" - "mkreversegeocoder" - "mks" - "mks-integrity" - "mkstemp" - "mkstorekit" - "mktileoverlay" - "mktime" - "mkuserlocation" - "mkusertrackingmode" - "mkv" - "ml" - "mlab" - "mlabwrap" - "mle" - "mlint" - "mllib" - "mllp" - "mload" - "mlogit" - "mlt" - "mlton" - "mm7" - "mmap" - "mmapi" - "mmc" - "mmc3" - "mmdrawercontroller" - "mmenu" - "mmix" - "mmo" - "mmppf" - "mmrecord" - "mms" - "mms-gateway" - "mmu" - "mmx" - "mnemonics" - "mnesia" - "mnist" - "mnpp" - "mo" - "mo+" - "moa" - "moai" - "mobclix" - "mobfox" - "mobicents-sip-servlets" - "mobify" - "mobify-js" - "mobile" - "mobile-analytics" - "mobile-app-tracker" - "mobile-application" - "mobile-broadband-api" - "mobile-browser" - "mobile-chrome" - "mobile-controls" - "mobile-country-code" - "mobile-devices" - "mobile-emulator" - "mobile-fu" - "mobile-os" - "mobile-phones" - "mobile-robots" - "mobile-safari" - "mobile-webkit" - "mobile-website" - "mobiledevice.framework" - "mobilefirst" - "mobilefirst-adapters" - "mobilefirst-appcenter" - "mobilefirst-cli" - "mobilefirst-qa" - "mobilefirst-server" - "mobilefirst-studio" - "mobilejoomla" - "mobileme" - "mobileprovision" - "mobilewebforms" - "mobilink" - "mobility" - "mobilize.js" - "mobione" - "mobipocket" - "mobiscroll" - "mobli" - "moc" - "mocha" - "mocha-cakes" - "mocha-phantomjs" - "mocha-web-velocity" - "mochi" - "mochijson2" - "mochikit" - "mochiweb" - "mockachino" - "mockery" - "mocking" - "mockito" - "mockjax" - "mockmvc" - "mockolate" - "mockrunner" - "mockup-tool" - "mockups" - "mockwebserver" - "mod-access" - "mod-alias" - "mod-archive-odbc" - "mod-auth" - "mod-auth-kerb" - "mod-auth-passthrough" - "mod-authz-host" - "mod-autoindex" - "mod-cache" - "mod-cband" - "mod-cluster" - "mod-dav-svn" - "mod-deflate" - "mod-expires" - "mod-fastcgi" - "mod-fcgid" - "mod-filter" - "mod-headers" - "mod-include" - "mod-jk" - "mod-ldap" - "mod-log-config" - "mod-lua" - "mod-mono" - "mod-negotiation" - "mod-pagespeed" - "mod-perl" - "mod-perl-registry" - "mod-perl2" - "mod-php" - "mod-plsql" - "mod-proxy" - "mod-proxy-ajp" - "mod-proxy-balancer" - "mod-proxy-html" - "mod-python" - "mod-pywebsocket" - "mod-rails" - "mod-rewrite" - "mod-security" - "mod-security2" - "mod-spdy" - "mod-ssl" - "mod-vhost-alias" - "mod-weblogic" - "mod-wsgi" - "modal-dialog" - "modal-popup" - "modal-view" - "modal-window" - "modality" - "modalpopup" - "modalpopupextender" - "modalpopups" - "modalviewcontroller" - "modbus" - "mode" - "model" - "model-associations" - "model-based-testing" - "model-binders" - "model-binding" - "model-checking" - "model-driven" - "model-driven-development" - "model-fitting" - "model-glue" - "model-inheritance" - "model-validation" - "model-view" - "model-view-adapter" - "model-view-controller" - "model.matrix" - "modeladmin" - "modelandview" - "modelattribute" - "modelbinder" - "modelbinders" - "modeless" - "modelform" - "modelica" - "modeline" - "modeling" - "modelio" - "modello" - "modelmapper" - "modelmetadata" - "modelmetadataprovider" - "models" - "modelsim" - "modelstate" - "modelstatedictionary" - "modelvisual3d" - "modem" - "moderation" - "modern-languages" - "modern-runtime" - "modern-ui" - "modern.ie" - "modernizr" - "modesetting" - "modeshape" - "modgrammar" - "modi" - "modification-form" - "modified-date" - "modified-preorder-tree-t" - "modifier" - "modifier-key" - "modifiers" - "modman" - "modula-2" - "modula-3" - "modular" - "modular-arithmetic" - "modular-design" - "modular-scale" - "modularity" - "modularization" - "modulation" - "module" - "module-build" - "module-loaders" - "module-management" - "module-packaging" - "module-pattern" - "module-search-path" - "module-versions" - "modulefile" - "modulino" - "modulo" - "modulus" - "modulus.io" - "modx" - "modx-chunks" - "modx-evolution" - "modx-getresources" - "modx-resources" - "modx-revolution" - "modx-templates" - "modx-user-groups" - "mog" - "mogenerator" - "mogilefs" - "mogrify" - "moinmoin" - "mojarra" - "mojibake" - "mojito" - "mojo" - "mojo-dom" - "mojo-sdk" - "mojolicious" - "mojolicious-lite" - "mojoportal" - "mole-2010" - "molehill" - "moles" - "molybdenum" - "mom" - "moma" - "moment-recur" - "momentics" - "momentjs" - "momentjs-timezone" - "momentum" - "momoko" - "monad-transformers" - "monadfix" - "monads" - "mondrian" - "monetdb" - "money" - "money-format" - "money-rails" - "monger" - "mongo-c-driver" - "mongo-collection" - "mongo-cxx" - "mongo-jackson-mapper" - "mongo-java" - "mongo-scala-driver" - "mongo-shell" - "mongoalchemy" - "mongodate" - "mongodb" - "mongodb-all" - "mongodb-arrays" - "mongodb-c" - "mongodb-csharp" - "mongodb-hadoop" - "mongodb-indexes" - "mongodb-java" - "mongodb-mms" - "mongodb-php" - "mongodb-query" - "mongodb-roles" - "mongodb-ruby" - "mongodb-scala" - "mongodb-shell" - "mongodb-update" - "mongodump" - "mongoengine" - "mongoexport" - "mongohq" - "mongohub" - "mongoid" - "mongoid-slug" - "mongoid2" - "mongoid3" - "mongoid4" - "mongoimport" - "mongointernalexception" - "mongojack" - "mongojs" - "mongokit" - "mongolab" - "mongomapper" - "mongomatic" - "mongoosastic" - "mongoose" - "mongoose-crate" - "mongoose-im" - "mongoose-plugins" - "mongoose-populate" - "mongoose-q" - "mongoose-web-server" - "mongor" - "mongorepository" - "mongorestore" - "mongoskin" - "mongotemplate" - "mongovue" - "mongrel" - "mongrel-cluster" - "mongrel2" - "monifu" - "moniker" - "monit" - "monitor" - "monitor.wait" - "monitoring" - "monitors" - "monk" - "monkey" - "monkey-testing" - "monkeypatching" - "monkeyrunner" - "monkeytalk" - "mono" - "mono-embedding" - "mono-posix" - "mono-service" - "mono-tools" - "mono.addins" - "mono.cecil" - "monobjc" - "monochrome" - "monocle" - "monocross" - "monodevelop" - "monodroid" - "monodroid.dialog" - "monogame" - "monoids" - "monolog" - "monologue" - "monomac" - "monomorphism" - "monomorphism-restriction" - "monospace" - "monostate" - "monotone" - "monotorrent" - "monotouch" - "monotouch.dialog" - "monstra" - "montage" - "montecarlo" - "montgomery-multiplication" - "monthcalendar" - "monticello" - "moo" - "moo.fx" - "moodle" - "moodstocks" - "moonapns" - "moonlight" - "moonscript" - "moops" - "moores-law" - "moose" - "moose-technology" - "moosefs" - "moosex-types" - "mootools" - "mootools-events" - "mootools-fx" - "mootools-more" - "mootools-sortable" - "mootools1.2" - "moovweb" - "mop" - "moped" - "mopub" - "moq" - "moq-3" - "moq-rt" - "moqcontrib" - "moqui" - "morea-framework" - "morelikethis" - "morelinq" - "moreunit" - "morfik" - "mori" - "mork" - "morph-x" - "morphia" - "morphic" - "morphing" - "morphological-analysis" - "morris.js" - "morse-code" - "mortar" - "morton-number" - "mosaic" - "mosek" - "moses" - "mosh" - "mosix" - "mosquitto" - "moss" - "moss2007-security" - "moss2007enterprisesearch" - "mosso" - "most-vexing-parse" - "mosync" - "motherboard" - "motif" - "motion" - "motion-blur" - "motion-detection" - "motion-planning" - "motionevent" - "motionmodel" - "moto-360" - "motodev-studio" - "motordriver" - "motorola" - "motorola-droid" - "motorola-emdk" - "mount" - "mount-point" - "mouse" - "mouse-coordinates" - "mouse-cursor" - "mouse-hook" - "mouse-listeners" - "mouse-picking" - "mouse-pointer" - "mouse-position" - "mousecapture" - "mouseclick-event" - "mousedown" - "mouseenter" - "mouseevent" - "mousehover" - "mouseleave" - "mouseleftbuttondown" - "mouseleftbuttonup" - "mouseless" - "mouselistener" - "mousemotionevent" - "mousemotionlistener" - "mousemove" - "mouseout" - "mouseover" - "mousepress" - "mousetrap" - "mouseup" - "mousewheel" - "mov" - "movable" - "movabletype" - "move" - "move-assignment-operator" - "move-constructor" - "move-semantics" - "moveabletype" - "movefileex" - "moveit" - "movement" - "movie" - "movieclip" - "moviecliploader" - "movieplayer" - "moviepy" - "movies" - "moving-average" - "mox" - "moxiemanager" - "moxy" - "mozapps" - "mozart" - "mozart-mvc" - "mozilla" - "mozilla-brick" - "mozilla-prism" - "mozmill" - "mozrepl" - "mozy" - "mp3" - "mp3agic" - "mp4" - "mp4a" - "mp4parser" - "mpandroidchart" - "mpavcontroller" - "mpc" - "mpd" - "mpdf" - "mpeg" - "mpeg-2" - "mpeg-4" - "mpeg-dash" - "mpeg2-ts" - "mpf" - "mpfi" - "mpfr" - "mpi" - "mpi-io" - "mpi4py" - "mpic++" - "mpich" - "mpiexec" - "mpir" - "mpj-express" - "mpkg" - "mpl" - "mplab" - "mplayer" - "mpld3" - "mplot3d" - "mpmath" - "mpmediaitem" - "mpmediaitemcollection" - "mpmedialibrary" - "mpmediapickercontroller" - "mpmediaplayercontroller" - "mpmediaquery" - "mpmovieplayer" - "mpmovieplayercontroller" - "mpmoviewcontroller" - "mpmusicplayercontroller" - "mpnowplayinginfocenter" - "mpns" - "mpp" - "mprotect" - "mps" - "mps-format" - "mptt" - "mpu" - "mpvolumeview" - "mpxj" - "mq" - "mqget" - "mql" - "mql4" - "mql5" - "mqlwrite" - "mqseries" - "mqtt" - "mquan-cortex" - "mqueue" - "mqx" - "mraid" - "mrjob" - "mro" - "mrtg" - "mru" - "mruby" - "mrunit" - "mrv2" - "ms-access" - "ms-access-2000" - "ms-access-2002" - "ms-access-2003" - "ms-access-2007" - "ms-access-2010" - "ms-access-2013" - "ms-access-97" - "ms-access-data-macro" - "ms-application-insights" - "ms-dos" - "ms-jet-ace" - "ms-media-foundation" - "ms-office" - "ms-project" - "ms-project-server-2010" - "ms-project-server-2013" - "ms-publisher" - "ms-query" - "ms-release-management" - "ms-reports" - "ms-rl" - "ms-security-essentials" - "ms-solver-foundation" - "ms-word" - "ms11-100" - "msaa" - "msas" - "msbee" - "msbi" - "msbuiild" - "msbuild" - "msbuild-4.0" - "msbuild-api" - "msbuild-batching" - "msbuild-buildengine" - "msbuild-itemgroup" - "msbuild-projectreference" - "msbuild-propertygroup" - "msbuild-target" - "msbuild-task" - "msbuild-wpp" - "msbuildcommunitytasks" - "msbuildextensionpack" - "mscapi" - "mschart" - "mscomct2.ocx" - "mscomm32" - "mscorlib" - "mscorwks.dll" - "mscrollbar" - "msdasql" - "msdatasetgenerator" - "msde" - "msde2000" - "msdeploy" - "msdeployserviceagent" - "msdev" - "msdn" - "msdropdown" - "msdtc" - "mse" - "mser" - "msf" - "msflexgrid" - "msg" - "msgbox" - "msgfmt" - "msgpack" - "msgrcv" - "msgsend" - "mshtml" - "msi" - "msi-factory" - "msi-gui" - "msi-patch" - "msi-validation" - "msiexec" - "msinfo32" - "msisdn" - "msitransform" - "msmq" - "msmq-security" - "msmq-transaction" - "msmq-wcf" - "msmqbinding" - "msmqintegrationbinding" - "msmtp" - "msn" - "msn-messenger" - "msnpsharp" - "msp" - "msp430" - "mspec" - "mspgcc" - "mspl" - "msr" - "mss" - "msscc" - "msscci" - "msscriptcontrol" - "mssql-jdbc" - "mssqlft" - "msstyles" - "mstdc" - "mstest" - "mstor" - "mstsc" - "msvc10" - "msvc11" - "msvc12" - "msvcr90.dll" - "msvcr90d.dll" - "msvcrt" - "msvs" - "msvsmon" - "msx" - "msxml" - "msxml3" - "msxml4" - "msxml5" - "msxml6" - "msxsl" - "msys" - "msys2" - "msysgit" - "mt" - "mt4" - "mt4j" - "mt940" - "mta" - "mtaf" - "mtasc" - "mtgox" - "mthaml" - "mtj" - "mtlm" - "mtm" - "mtom" - "mtp" - "mtrace" - "mts" - "mtu" - "mu" - "muc" - "mud" - "muenchian-grouping" - "mui" - "mulan" - "mule" - "mule-cluster" - "mule-component" - "mule-el" - "mule-module-jpa" - "mule-studio" - "multer" - "multi-agent" - "multi-catch" - "multi-column" - "multi-configuration" - "multi-database" - "multi-device-hybrid-apps" - "multi-dimensional-scaling" - "multi-friend-selector" - "multi-gpu" - "multi-index" - "multi-instance-deployment" - "multi-layer" - "multi-layer-perceptron" - "multi-level" - "multi-mapping" - "multi-master-replication" - "multi-model-forms" - "multi-module" - "multi-monitor" - "multi-project" - "multi-query" - "multi-select" - "multi-stage-programming" - "multi-step" - "multi-table" - "multi-table-delete" - "multi-table-inheritance" - "multi-targeting" - "multi-tenancy" - "multi-tenant" - "multi-term" - "multi-tier" - "multi-touch" - "multi-upload" - "multi-user" - "multi-value-dictionary" - "multi-window" - "multiautocompletetextview" - "multibinding" - "multiboot" - "multibox" - "multibyte" - "multibyte-functions" - "multicast" - "multicastdelegate" - "multicastsocket" - "multichoiceitems" - "multicol" - "multicolumn" - "multicore" - "multidatatrigger" - "multidex" - "multidimensional" - "multidimensional-array" - "multidimensional-chart" - "multidrop-bus" - "multifile" - "multifile-uploader" - "multihomed" - "multikey" - "multilabel-classification" - "multilanguage" - "multiline" - "multilinestring" - "multilingual" - "multilingual-app-toolkit" - "multimap" - "multimarkdown" - "multimedia" - "multimethod" - "multinomial" - "multipage" - "multiparameter" - "multipart" - "multipart-alternative" - "multipart-form" - "multipart-mixed-replace" - "multipartconfig" - "multipartentity" - "multipartform-data" - "multipass" - "multipeer-connectivity" - "multiplatform" - "multiplayer" - "multiple-accounts" - "multiple-apk" - "multiple-arguments" - "multiple-assign-variable" - "multiple-axes" - "multiple-browsers" - "multiple-choice" - "multiple-columns" - "multiple-conditions" - "multiple-constructors" - "multiple-databases" - "multiple-definition" - "multiple-definition-error" - "multiple-dispatch" - "multiple-domains" - "multiple-entries" - "multiple-file-upload" - "multiple-files" - "multiple-forms" - "multiple-gpu" - "multiple-inclusions" - "multiple-indirection" - "multiple-inheritance" - "multiple-insert" - "multiple-instances" - "multiple-interface-implem" - "multiple-items" - "multiple-languages" - "multiple-login" - "multiple-makefiles" - "multiple-matches" - "multiple-mice" - "multiple-models" - "multiple-monitors" - "multiple-processes" - "multiple-projects" - "multiple-records" - "multiple-repositories" - "multiple-results" - "multiple-resultsets" - "multiple-schema" - "multiple-select" - "multiple-select-query" - "multiple-sites" - "multiple-tables" - "multiple-users" - "multiple-value" - "multiple-variable-return" - "multiple-versions" - "multiple-views" - "multiplechoicefield" - "multipleoutputs" - "multipleselection" - "multipleselectionmodel" - "multiplestacks" - "multiplexing" - "multiplication" - "multiplicity" - "multiplying" - "multipoint" - "multiprecision" - "multiprocess" - "multiprocessing" - "multiprocessor" - "multirec" - "multirow" - "multisampling" - "multiscaleimage" - "multiscreen" - "multiscroll.js" - "multiselectlistpreference" - "multiserver" - "multiset" - "multisite" - "multisplitpane" - "multistage" - "multistore" - "multitargeting" - "multitasking" - "multitasking-gestures" - "multitexturing" - "multithreading" - "multiton" - "multitouch-keyboard" - "multitrigger" - "multiuser" - "multiuserchat" - "multivalue" - "multivalue-database" - "multivariate-partition" - "multivariate-testing" - "multiview" - "multiviews" - "multiway-tree" - "mumps" - "munin" - "munq" - "mupad" - "muparser" - "mupdf" - "mura" - "murex" - "murky" - "murmurhash" - "muse" - "music" - "music-player" - "music21" - "musicbrainz" - "musicsequence" - "musicxml" - "musl" - "mustache" - "mustache.php" - "mutability" - "mutable" - "mutagen" - "mutated" - "mutating-table" - "mutation" - "mutation-events" - "mutation-observers" - "mutation-testing" - "mutators" - "mute" - "mutex" - "mutt" - "mutual" - "mutual-authentication" - "mutual-exclusion" - "mutual-recursion" - "mux" - "muxer" - "muzei" - "mv" - "mvapich2" - "mvc" - "mvc-editor-templates" - "mvc-mini-profiler" - "mvc-storefront" - "mvcc" - "mvccontrib" - "mvccontrib-3" - "mvccontrib-grid" - "mvccontrib-testhelper" - "mvcextensions" - "mvcgrid" - "mvchtmlstring" - "mvcjqgrid" - "mvcmailer" - "mvcminiprofiler" - "mvcrazortopdf" - "mvcrecaptcha" - "mvcroutehandler" - "mvcsitemap" - "mvcsitemapprovider" - "mvcxgridview" - "mvel" - "mvg" - "mvp" - "mvp4g" - "mvs" - "mvvm" - "mvvm-foundation" - "mvvm-light" - "mvvm-toolkit" - "mvvmcross" - "mvw" - "mvxbind" - "mwe" - "mwphotobrowser" - "mws" - "mx" - "mx-record" - "mx4j" - "mxbean" - "mxe" - "mxgraph" - "mxhr" - "mxit" - "mxm" - "mxml" - "mxmlc" - "mxunit" - "my-namespace" - "my-recent-documents" - "my.cnf" - "my.resources" - "my.settings" - "mybatis" - "mybatis-generator" - "mybb" - "mydac" - "mydbr" - "myeclipse" - "myfaces" - "mygeneration" - "myget" - "myhdl" - "myisam" - "mylocationoverlay" - "mylyn" - "mylyn-wikitext" - "myo" - "myob" - "myprettycms" - "myreviewplugin" - "myro" - "myrrix" - "mysite" - "mysource" - "myspace" - "myspell" - "mysql" - "mysql++" - "mysql-5.0" - "mysql-5.1" - "mysql-5.5" - "mysql-5.6" - "mysql-5.7" - "mysql-backup" - "mysql-cluster" - "mysql-connect" - "mysql-connector" - "mysql-connector-python" - "mysql-dependent-subquery" - "mysql-error-1005" - "mysql-error-1007" - "mysql-error-1025" - "mysql-error-1030" - "mysql-error-1040" - "mysql-error-1044" - "mysql-error-1045" - "mysql-error-1046" - "mysql-error-1049" - "mysql-error-1050" - "mysql-error-1051" - "mysql-error-1052" - "mysql-error-1054" - "mysql-error-1060" - "mysql-error-1062" - "mysql-error-1064" - "mysql-error-1065" - "mysql-error-1066" - "mysql-error-1067" - "mysql-error-1071" - "mysql-error-1075" - "mysql-error-1091" - "mysql-error-1093" - "mysql-error-1111" - "mysql-error-1130" - "mysql-error-1136" - "mysql-error-1138" - "mysql-error-1140" - "mysql-error-1142" - "mysql-error-1146" - "mysql-error-1170" - "mysql-error-1193" - "mysql-error-1205" - "mysql-error-1214" - "mysql-error-1222" - "mysql-error-1235" - "mysql-error-1241" - "mysql-error-1242" - "mysql-error-1248" - "mysql-error-1253" - "mysql-error-126" - "mysql-error-1264" - "mysql-error-1267" - "mysql-error-1292" - "mysql-error-1293" - "mysql-error-1312" - "mysql-error-1327" - "mysql-error-1349" - "mysql-error-1364" - "mysql-error-1415" - "mysql-error-1416" - "mysql-error-1442" - "mysql-error-1451" - "mysql-error-1452" - "mysql-error-150" - "mysql-error-1630" - "mysql-error-2002" - "mysql-error-2003" - "mysql-error-2006" - "mysql-error-2013" - "mysql-escape-string" - "mysql-event" - "mysql-fabric" - "mysql-gui-tools" - "mysql-insert-id" - "mysql-loadfile" - "mysql-logic" - "mysql-management" - "mysql-manager" - "mysql-notifier" - "mysql-num-rows" - "mysql-odbc-connector" - "mysql-parameter" - "mysql-pconnect" - "mysql-proxy" - "mysql-python" - "mysql-real-escape-string" - "mysql-select-db" - "mysql-slow-query-log" - "mysql-spatial" - "mysql-udf" - "mysql-workbench" - "mysql.data" - "mysql.sock" - "mysql2" - "mysql2psql-gem" - "mysql4" - "mysql5" - "mysql6" - "mysqladmin" - "mysqladministrator" - "mysqlbinlog" - "mysqlclient" - "mysqlconnection" - "mysqld" - "mysqldatareader" - "mysqldump" - "mysqldumpslow" - "mysqli" - "mysqli-multi-query" - "mysqlimport" - "mysqlnd" - "mysqlpp" - "mysqltuner" - "mytoolkit" - "mzcroppableview" - "n-ary-tree" - "n-dimensional" - "n-gram" - "n-layer" - "n-queens" - "n-tier" - "n-tier-architecture" - "n-triples" - "n-way" - "n-way-merge" - "n1ql" - "n2" - "n2cms" - "n2o" - "n3" - "n73" - "n900" - "n95" - "n97" - "na" - "na.rm" - "nabaztag" - "nachos" - "nacl" - "nacl-cryptography" - "nagios" - "nagle" - "nailgun" - "naked-objects" - "name-attribute" - "name-binding" - "name-clash" - "name-collision" - "name-conflict" - "name-decoration" - "name-hiding" - "name-length" - "name-lookup" - "name-mangling" - "name-matching" - "name-resolution" - "name-value" - "named" - "named-captures" - "named-constructor" - "named-entity-extraction" - "named-entity-recognition" - "named-instance" - "named-parameters" - "named-pipes" - "named-query" - "named-ranges" - "named-routing" - "named-scope" - "named-scopes" - "namedpipeserverstream" - "namedtuple" - "nameerror" - "names" - "nameservers" - "nameservice" - "namespace-organisation" - "namespace-package" - "namespaces" - "namevaluecollection" - "naming" - "naming-containers" - "naming-conventions" - "nan" - "nana" - "nancy" - "nano" - "nanoc" - "nanohttpd" - "nanomsg" - "nanoscroller" - "nanotime" - "nant" - "nant-task" - "nantcontrib" - "nao-robot" - "nape" - "narc" - "narration" - "narrator" - "narray" - "narrowing" - "narwhal" - "nas" - "nashorn" - "nasm" - "nat" - "nat-traversal" - "native" - "native-activity" - "native-code" - "native-com-support" - "native-executable" - "native-maven-plugin" - "native-methods" - "native-resources" - "native-sql" - "nativeapplication" - "nativecompilation" - "nativecss" - "nativedroid" - "nativelibrary" - "nativequery" - "nativewindow" - "nativexml" - "natsort" - "nattable" - "natty" - "natural-join" - "natural-key" - "natural-logarithm" - "natural-pl" - "natural-sort" - "naturallyspeaking" - "natvis" - "naudio" - "nautilus" - "nav" - "nav-pills" - "navbar" - "navicat" - "navigatetourl" - "navigateuri" - "navigateurl" - "navigation" - "navigation-drawer" - "navigation-framework" - "navigation-list" - "navigation-properties" - "navigation-services" - "navigation-style" - "navigation-timing-api" - "navigational-properties" - "navigationbar" - "navigationcontroller" - "navigationitem" - "navigationservice" - "navigationwindow" - "navigator" - "navigator-view" - "navision" - "navit" - "navmesh" - "navteq" - "nawk" - "nax" - "nbehave" - "nbug" - "nbuilder" - "ncache" - "ncalc" - "ncb" - "ncbi" - "nclob" - "ncml" - "nco" - "ncommon" - "nconf" - "ncover" - "ncover-explorer" - "ncqrs" - "ncr" - "ncron" - "ncrunch" - "ncurses" - "ncwidgetcontroller" - "nda" - "ndarray" - "ndbunit" - "ndc" - "ndde" - "ndebug" - "ndef" - "ndepend" - "ndesk.options" - "ndfd" - "ndimage" - "ndis" - "ndjango" - "ndk-build" - "ndk-gdb" - "ndndump" - "ndns" - "ndnsim" - "ndoc" - "near-real-time" - "nearest-neighbor" - "nearlyfreespeech" - "neat" - "neato" - "neatupload" - "nebula" - "necklaces" - "nedb" - "nedmalloc" - "needle" - "negamax" - "negate" - "negation" - "negative-lookahead" - "negative-lookbehind" - "negative-margin" - "negative-number" - "negotiate" - "nehalem" - "neighbours" - "neko" - "nemerle" - "neo4django" - "neo4j" - "neo4j-embedded" - "neo4j-node" - "neo4j-spatial" - "neo4j.py" - "neo4j.rb" - "neo4j2.0" - "neo4jclient" - "neo4jphp" - "neo4jrestclient" - "neoclipse" - "neocomplcache" - "neocomplete" - "neoeloquent" - "neography" - "neolane" - "neoload" - "neomad" - "neomodel" - "neon" - "neos-server" - "neovim" - "nerdcommenter" - "nerddinner" - "nerdtree" - "nesc" - "nesper" - "nessus" - "nest" - "nest-api" - "nestacms" - "nested" - "nested-application" - "nested-array" - "nested-attributes" - "nested-checkboxes" - "nested-class" - "nested-controls" - "nested-datalist" - "nested-exceptions" - "nested-form-for" - "nested-forms" - "nested-function" - "nested-generics" - "nested-groups" - "nested-if" - "nested-includes" - "nested-lists" - "nested-loops" - "nested-properties" - "nested-queries" - "nested-query" - "nested-reference" - "nested-repeater" - "nested-resources" - "nested-routes" - "nested-set-model" - "nested-sets" - "nested-sortable" - "nested-statement" - "nested-table" - "nested-transactions" - "nested-type" - "nested-urls" - "nested-views" - "nestedlayout" - "nesting" - "net-ftp" - "net-http" - "net-koans" - "net-library" - "net-reactor" - "net-sftp" - "net-snmp" - "net-ssh" - "net-tcp" - "net-use" - "net.p2p" - "net.pipe" - "net.tcp" - "netadvantage" - "netapi32" - "netapp" - "netaxept" - "netbeans" - "netbeans-6.9" - "netbeans-7" - "netbeans-7.1" - "netbeans-7.2" - "netbeans-7.3" - "netbeans-7.4" - "netbeans-8" - "netbeans-platform" - "netbeans-plugins" - "netbeans6.1" - "netbeans6.5" - "netbeans6.7" - "netbeans6.8" - "netbeans7.0" - "netbios" - "netbiscuits" - "netbook" - "netbsd" - "netburner" - "netcast" - "netcat" - "netcdf" - "netconnection" - "netdatacontractserializer" - "netdb" - "netdna-api" - "netduino" - "netezza" - "netfilter" - "netflix" - "netflix-competition" - "netflix-feign" - "netflow" - "netgroup" - "nethack" - "netiq" - "netldap" - "netlib" - "netlink" - "netlogo" - "netmask" - "netmera" - "netmf" - "netmodules" - "netmon" - "netmq" - "netmsmqbinding" - "netnamedpipebinding" - "netoffice" - "netpbm" - "netrexx" - "netriaservices" - "netrw" - "netscaler" - "netscape" - "netsh" - "netsparkle" - "netsqlazman" - "netstat" - "netstream" - "netsuite" - "nettcpbinding" - "nettcprelaybinding" - "nette" - "nettopologysuite" - "netty" - "netui" - "netweaver" - "netwire" - "network-analysis" - "network-block-device" - "network-conduit" - "network-connection" - "network-drive" - "network-efficiency" - "network-flow" - "network-interface" - "network-monitoring" - "network-printers" - "network-programming" - "network-protocols" - "network-scan" - "network-scanner" - "network-security" - "network-service" - "network-share" - "network-shares" - "network-state" - "network-storage" - "network-tools" - "network-traffic" - "network-utilization" - "network-volume" - "networkcomms.net" - "networkcredentials" - "networkimageview" - "networking" - "networkonmainthread" - "networkstream" - "networkx" - "netzke" - "netzke-basepack" - "neural-network" - "neural-network-tuning" - "neuroscience" - "neventstore" - "nevow" - "nevron" - "new-handler" - "new-operator" - "new-project" - "new-style-class" - "new-webserviceproxy" - "new-window" - "newable" - "newenvironment" - "newforms" - "newgem" - "newid" - "newlib" - "newline" - "newlisp" - "newman" - "newrelic" - "newrelic-platform" - "newrow" - "news" - "news-feed" - "news-ticker" - "newsequentialid" - "newsgroup" - "newsletter" - "newspaper" - "newspeak" - "newsql" - "newsstand-kit" - "newtons-method" - "newtonscript" - "newtonsoft" - "newtype" - "newzly-phantom" - "nexmo" - "next" - "next-generation-plugin" - "nextgen-gallery" - "nextpeer" - "nextsibling" - "nextuntil" - "nextval" - "nexus" - "nexus-10" - "nexus-4" - "nexus-5" - "nexus-7" - "nexus-one" - "nexus-s" - "nexusdb" - "nfa" - "nfc" - "nfc-p2p" - "nfd" - "nfop" - "nfs" - "nfsclient" - "nftw" - "ng-animate" - "ng-bind" - "ng-bind-html" - "ng-class" - "ng-dialog" - "ng-flow" - "ng-grid" - "ng-hide" - "ng-html2js" - "ng-init" - "ng-map" - "ng-maxlength" - "ng-options" - "ng-pattern" - "ng-repeat" - "ng-show" - "ng-style" - "ng-submit" - "ng-switch" - "ng-tags-input" - "ng-view" - "ngboilerplate" - "ngcloak" - "ngen" - "ngif" - "nginfinitescroll" - "nginx" - "ngit" - "ngmin" - "ngmock" - "ngmocke2e" - "ngrep" - "ngresource" - "ngrok" - "ngroute" - "ngsanitize" - "ngtable" - "ngtoast" - "ngui" - "nhaml" - "nhapi" - "nhibernate" - "nhibernate-2" - "nhibernate-3" - "nhibernate-4" - "nhibernate-burrow" - "nhibernate-caches" - "nhibernate-cascade" - "nhibernate-collections" - "nhibernate-configuration" - "nhibernate-criteria" - "nhibernate-envers" - "nhibernate-futures" - "nhibernate-inheritance" - "nhibernate-mapping" - "nhibernate-metadata" - "nhibernate-profiler" - "nhibernate-projections" - "nhibernate-queryover" - "nhibernate-search" - "nhibernate-validator" - "nhibernate.search" - "nhlambdaextensions" - "nhprof" - "nhtmlunit" - "nhunspell" - "nhydrate" - "niagara-ax" - "nib" - "nibble" - "nic" - "nice" - "nice-language" - "nicedit" - "niceforms" - "nicescroll" - "nidaqmx" - "nifty-gui" - "nifty-modal" - "nightly-build" - "nightmare" - "nightmarejs" - "nightwatch.js" - "nike" - "nikeplus-api" - "nikola" - "nil" - "nim" - "nimble" - "nimbus" - "nimbus-ios" - "nimbuzz" - "nimrod" - "nimrod-babel" - "nine-patch" - "nineoldandroids" - "ning" - "nini" - "ninja" - "ninja-turtles" - "ninjaframework" - "ninjakit" - "ninject" - "ninject-2" - "ninject-3" - "ninject-conventions" - "ninject-extensions" - "ninject-interception" - "ninject-logging" - "ninject-mockingkernel" - "ninject-portable" - "ninject.web" - "ninject.web.mvc" - "nintendo" - "nintendo-ds" - "nintex-workflow" - "nio" - "nio2" - "niofsdirectory" - "nios" - "nipy" - "nipype" - "nis" - "nite" - "nitrogen" - "nitrous" - "nitrousio" - "nivo" - "nivoslider" - "nixos" - "nl2br" - "nla" - "nlb" - "nlg" - "nlm" - "nlme" - "nlog" - "nlog-configuration" - "nlopt" - "nlp" - "nls" - "nls-comp" - "nls-lang" - "nls-sort" - "nltk" - "nlua" - "nm" - "nmake" - "nmap" - "nmath" - "nmatrix" - "nme" - "nmea" - "nmea2000" - "nmock" - "nmock-2.1" - "nmock2" - "nmodel" - "nms" - "nmssh" - "nncron" - "nnet" - "nntool" - "nntp" - "no-cache" - "no-data" - "no-duplicates" - "no-framework" - "no-match" - "no-response" - "no-www" - "noaa" - "noamtools" - "nobackend" - "noble-count" - "noborder" - "nocilla" - "nock" - "noclassdeffounderror" - "nocount" - "nod32" - "nodatime" - "node-amqp" - "node-assert" - "node-async" - "node-blade" - "node-canvas" - "node-celery" - "node-debugger" - "node-dev" - "node-dirty" - "node-expat" - "node-ffi" - "node-fibers" - "node-github" - "node-glob" - "node-gyp" - "node-http-proxy" - "node-imagemagick" - "node-inspector" - "node-java" - "node-lame" - "node-memwatch" - "node-modules" - "node-mongodb-native" - "node-mssql" - "node-mysql" - "node-neo4j" - "node-odbc" - "node-oracle" - "node-orm2" - "node-pdfkit" - "node-persist" - "node-postgres" - "node-red" - "node-redis" - "node-repl" - "node-request" - "node-sass" - "node-serialport" - "node-set" - "node-soap" - "node-speaker" - "node-sqlserver" - "node-static" - "node-stitch" - "node-supervisor" - "node-webkit" - "node-webkit-agent" - "node-xbee" - "node-xmpp" - "node.io" - "node.js" - "node.js-client" - "node.js-connect" - "node.js-domains" - "node.js-pg" - "node.js-stream" - "node.js-tape" - "nodeapi" - "nodebb" - "nodebox" - "nodeclipse" - "nodegit" - "nodejitsu" - "nodelist" - "nodeload" - "nodemailer" - "nodemon" - "nodename" - "nodequeue" - "nodereference" - "nodes" - "nodesets" - "nodester" - "nodetool" - "nodeunit" - "nodevalue" - "nodobjc" - "noexcept" - "noflo" - "nofollow" - "nohup" - "noindex" - "noir" - "noise" - "noise-generator" - "noise-reduction" - "noise-words" - "nokia" - "nokia-imaging-sdk" - "nokia-maps" - "nokia-n8" - "nokia-s40" - "nokia-wrt" - "nokiabrowser" - "nokiax" - "nokogiri" - "nolio" - "nolock" - "nomachine" - "nomenclature" - "nomethoderror" - "nominatim" - "nominet" - "non-admin" - "non-alphanumeric" - "non-ascii-chars" - "non-clustered-index" - "non-convex" - "non-deterministic" - "non-english" - "non-exhaustive-patterns" - "non-functional" - "non-gpl" - "non-greedy" - "non-interactive" - "non-latin" - "non-lazy-ptr" - "non-member-functions" - "non-modal" - "non-nullable" - "non-printable" - "non-printing-characters" - "non-recursive" - "non-relational-database" - "non-renewing-subscription" - "non-repetitive" - "non-scrolling" - "non-static" - "non-termination" - "non-type" - "non-unicode" - "non-uniform-distribution" - "non-virtual-interface" - "non-volatile" - "non-web" - "non-well-formed" - "nonatomic" - "nonblank" - "nonblocking" - "nonce" - "nonclient" - "nonclient-area" - "noncopyable" - "nonetype" - "nonlinear-functions" - "nonlinear-optimization" - "nonsequential" - "nonserializedattribute" - "nook" - "nook-tablet" - "nools" - "noop" - "nop" - "nopcommerce" - "nor" - "noreturn" - "norm" - "normal-distribution" - "normalization" - "normalize" - "normalize-text" - "normalizing" - "normals" - "northwind" - "norton" - "noscript" - "nose" - "nose-gae" - "nose2" - "nosetests" - "nosql" - "nosql-aggregation" - "nosuchelementexception" - "nosuchfieldexception" - "nosuchfileexception" - "nosuchmethod" - "nosuchmethoderror" - "nosuchproviderexception" - "not-exists" - "not-operator" - "not-revert" - "notation" - "notation3" - "note" - "notepad" - "notepad++" - "notepad2" - "notesview" - "nothing" - "nothrow" - "notice" - "notification-area" - "notification-bar" - "notificationcenter" - "notificationmanager" - "notifications" - "notificationservices" - "notify" - "notifydatasetchanged" - "notifyicon" - "notifyjs" - "notimplementedexception" - "notin" - "notnull" - "notorm" - "notserializableexception" - "notsupportedexception" - "noty" - "nouislider" - "nova-scheduler" - "novaclient" - "novacode-docx" - "novell" - "novell-idm" - "novocaine" - "now" - "nowdoc" - "noweb" - "nowjs" - "nowrap" - "np" - "np-complete" - "np-hard" - "npapi" - "npgsql" - "nph" - "npm" - "npm-request" - "npmunbox" - "npn" - "npoco" - "npoi" - "npp" - "nppexec" - "npr" - "npruntime" - "nptl" - "nrefactory" - "nrepl" - "nresponder" - "nrf51" - "nrpe" - "nrvo" - "ns-3" - "ns2" - "nsaffinetransform" - "nsalert" - "nsanimation" - "nsanimationcontext" - "nsapi" - "nsappleeventdescriptor" - "nsappleeventmanager" - "nsapplescript" - "nsapplication" - "nsapplication-delegate" - "nsarchiving" - "nsarray" - "nsarraycontroller" - "nsassert" - "nsattributedescription" - "nsattributedstring" - "nsautolayout" - "nsautoreleasepool" - "nsbasic" - "nsbezierpath" - "nsbitmapimagerep" - "nsblockoperation" - "nsborderlesswindowmask" - "nsbox" - "nsbrowser" - "nsbundle" - "nsbutton" - "nsbuttoncell" - "nscache" - "nscalendar" - "nscell" - "nscfstring" - "nscharacterset" - "nsclipview" - "nscoder" - "nscoding" - "nscollectionview" - "nscollectionviewitem" - "nscolor" - "nscolorpanel" - "nscolorspace" - "nscolorwell" - "nscombobox" - "nscompoundpredicate" - "nscondition" - "nsconnection" - "nscontrol" - "nscopying" - "nscountedset" - "nscursor" - "nsdata" - "nsdatadetector" - "nsdate" - "nsdatecomponent" - "nsdatecomponents" - "nsdateformatter" - "nsdatepicker" - "nsdecimal" - "nsdecimalnumber" - "nsdialogs" - "nsdictionary" - "nsdictionaryresulttype" - "nsdocktile" - "nsdocument" - "nsdocumentcontroller" - "nsdocumentdirectory" - "nsdocumentdirectory-ios8" - "nsdragginginfo" - "nsdraggingitem" - "nsenter" - "nsentitydescription" - "nsenumerator" - "nserror" - "nservicebus" - "nservicebus-distributor" - "nservicebus-sagas" - "nservicebus3" - "nservicebus4" - "nsevent" - "nsexception" - "nsexpression" - "nsfastenumeration" - "nsfetchedresultscontrolle" - "nsfetchrequest" - "nsfilecoordinator" - "nsfilehandle" - "nsfilemanager" - "nsfilepresenter" - "nsfileversion" - "nsfilewrapper" - "nsfont" - "nsfontmanager" - "nsfontpanel" - "nsform" - "nsformatter" - "nsgradient" - "nshield" - "nshost" - "nshttpcookie" - "nshttpcookiestorage" - "nshttpurlresponse" - "nsight" - "nsimage" - "nsimagecell" - "nsimagerep" - "nsimageview" - "nsincrementalstore" - "nsindexpath" - "nsindexset" - "nsinputstream" - "nsinteger" - "nsinvocation" - "nsinvocationoperation" - "nsis" - "nsjsonserialization" - "nskeyedarchiver" - "nskeyedunarchiver" - "nskeyvalue" - "nskeyvaluecoding" - "nslayoutconstraint" - "nslayoutmanager" - "nslengthformatter" - "nslevelindicator" - "nslibrarydirectory" - "nslocale" - "nslocalizedstring" - "nslock" - "nslog" - "nslookup" - "nsmanagedobject" - "nsmanagedobjectcontext" - "nsmanagedobjectid" - "nsmanagedobjectmodel" - "nsmanageobjectcontext" - "nsmangedobjectmodel" - "nsmatrix" - "nsmenu" - "nsmenudelegate" - "nsmenuitem" - "nsmenuitemcell" - "nsmetadataquery" - "nsmutablearray" - "nsmutableattributedstring" - "nsmutablecopying" - "nsmutabledata" - "nsmutabledictionary" - "nsmutableorderedset" - "nsmutableset" - "nsmutablestring" - "nsmutableurlrequest" - "nsnetservice" - "nsnetservicebrowser" - "nsnotification" - "nsnotificationcenter" - "nsnotifications" - "nsnull" - "nsnumber" - "nsnumberformatter" - "nsobject" - "nsobjectcontroller" - "nsopengl" - "nsopenglview" - "nsopenpanel" - "nsoperation" - "nsoperationqueue" - "nsorderedset" - "nsoutlineview" - "nsoutputstream" - "nspanel" - "nsparagraphstyle" - "nspasteboard" - "nspathcontrol" - "nspec" - "nspeex" - "nspersistentdocument" - "nspersistentstore" - "nspipe" - "nspoint" - "nspointerarray" - "nspopover" - "nspopupbutton" - "nspopupbuttoncell" - "nspr" - "nspredicate" - "nspredicateeditor" - "nspreferencepane" - "nsprintinfo" - "nsprintoperation" - "nsprogress" - "nsprogressindicator" - "nsproxy" - "nsq" - "nsrails" - "nsrange" - "nsrangeexception" - "nsrect" - "nsregularexpression" - "nsresponder" - "nsruleeditor" - "nsrulerview" - "nsrunalertpanel" - "nsrunloop" - "nsrunningapplication" - "nss" - "nssavepanel" - "nsscanner" - "nsscroller" - "nsscrollview" - "nssearchfield" - "nssecurecoding" - "nssegmentedcontrol" - "nsset" - "nsshadow" - "nsslider" - "nssm" - "nssocketport" - "nssortdescriptor" - "nssound" - "nssplitview" - "nsstackview" - "nsstatusbar" - "nsstatusitem" - "nsstoryboard" - "nsstream" - "nsstring" - "nsstringencoding" - "nstablecellview" - "nstablecolumn" - "nstableheadercell" - "nstableheaderview" - "nstablerowview" - "nstableview" - "nstableviewcell" - "nstabview" - "nstabviewcontroller" - "nstask" - "nstextattachment" - "nstextcontainer" - "nstextfield" - "nstextfieldcell" - "nstextstorage" - "nstexttab" - "nstextview" - "nsthread" - "nstimeinterval" - "nstimer" - "nstimezone" - "nstokenfield" - "nstokenfieldcell" - "nstoolbar" - "nstoolbaritem" - "nstore" - "nstouch" - "nstrackingarea" - "nstreecontroller" - "nsubiquitouskeyvaluestore" - "nsubstitute" - "nsuinteger" - "nsundomanager" - "nsunknownkeyexception" - "nsurl" - "nsurlcache" - "nsurlconnection" - "nsurlconnectiondelegate" - "nsurlcredential" - "nsurlcredentialstorage" - "nsurldownload" - "nsurlerrordomain" - "nsurlprotocol" - "nsurlrequest" - "nsurlrequestcachepolicy" - "nsurlsession" - "nsurlsessionconfiguration" - "nsurlsessiondatatask" - "nsurlsessiondownloadtask" - "nsurlsessiontask" - "nsurlsessionuploadtask" - "nsuserdefaults" - "nsusernotification" - "nsusernotificationcenter" - "nsuuid" - "nsvalue" - "nsvaluetransformer" - "nsview" - "nsviewanimation" - "nsviewcontroller" - "nsvisualeffectview" - "nswindow" - "nswindowcontroller" - "nswindowrestoration" - "nsworkspace" - "nsxml" - "nsxmldocument" - "nsxmlelement" - "nsxmlnode" - "nsxmlparser" - "nsxmlparserdelegate" - "nsxmlparsererrordomain" - "nsxpcconnection" - "nszombie" - "nszombieenabled" - "nszombies" - "nt" - "nt-native-api" - "nt4" - "ntdll" - "ntemacs" - "ntext" - "ntfs" - "ntfs-mft" - "nth-child" - "nth-element" - "nth-of-type" - "nth-root" - "ntl" - "ntlm" - "ntlmv2" - "ntp" - "ntpd" - "ntruencrypt" - "ntt" - "ntvdm" - "ntvdm.exe" - "ntvs" - "ntwain" - "ntwitter" - "nucleon" - "nude.js" - "nuget" - "nuget-package" - "nuget-package-restore" - "nuget-server" - "nuget-spec" - "nugetgallery" - "nui" - "nuitka" - "nuke" - "nul" - "null" - "null-cast" - "null-character" - "null-check" - "null-coalescing" - "null-coalescing-operator" - "null-layout-manager" - "null-object" - "null-object-pattern" - "null-pointer" - "null-propagation-operator" - "null-string" - "null-terminated" - "null-test" - "null-uniqueidentifier" - "nullable" - "nullif" - "nullpointerexception" - "nullptr" - "nullreferenceexception" - "num-lock" - "numa" - "numactl" - "numba" - "numba-pro" - "number-crunching" - "number-formatting" - "number-literal" - "number-manipulation" - "number-recognition" - "number-rounding" - "number-sequence" - "number-systems" - "number-theory" - "number-to-currency" - "number-with-delimiter" - "numbered" - "numberexception" - "numberformat" - "numberformatexception" - "numberformatter" - "numberpad" - "numberpicker" - "numbers" - "numeric" - "numeric-conversion" - "numeric-format" - "numeric-input" - "numeric-keypad" - "numeric-limits" - "numeric-precision" - "numeric-ranges" - "numeric-textbox" - "numerical" - "numerical-analysis" - "numerical-computing" - "numerical-integration" - "numerical-methods" - "numerical-recipes" - "numerical-stability" - "numerics" - "numericstepper" - "numericupdown" - "numerology" - "numexpr" - "numpad" - "numpy" - "nunit" - "nunit-2.5" - "nunit-2.5.9" - "nunit-2.6" - "nunit-2.6.2" - "nunit-3.0" - "nunit-addins" - "nunit-console" - "nunit-mocks" - "nunjucks" - "nuodb" - "nupic" - "nurbs" - "nusoap" - "nuspec" - "nutch" - "nutiteq" - "nuxeo" - "nuxeo-js-client" - "nvapi" - "nvarchar" - "nvcc" - "nvd3.js" - "nvda" - "nvelocity" - "nvidia" - "nvl" - "nvlink" - "nvm" - "nvml" - "nvorbis" - "nvp" - "nvvp" - "nwire" - "nx" - "nxbre" - "nxc" - "nxhtml" - "nxlog" - "nxml" - "nxt" - "nxt-python" - "nyquist" - "nyromodal" - "o3d" - "oai" - "oam" - "oas" - "oauth" - "oauth-2.0" - "oauth-php" - "oauth-provider" - "oauth-ruby" - "oauth.io" - "oauth2-playground" - "oauth2-toolkit" - "oauth2app" - "oauth2client" - "oauth2orize" - "oauthtwitterwrapper" - "oaw" - "ob-get-contents" - "ob-start" - "obd-ii" - "obel" - "oberon" - "obex" - "obexftp" - "obfuscar" - "obfuscation" - "obiee" - "objc-category" - "objc-message-send" - "objc-protocol" - "objc2j" - "objcmongodb" - "objcopy" - "objdump" - "object" - "object-address" - "object-code" - "object-comparison" - "object-composition" - "object-construction" - "object-create" - "object-database" - "object-design" - "object-destruction" - "object-detection" - "object-diagram" - "object-dumper" - "object-equality" - "object-expected" - "object-files" - "object-graph" - "object-identity" - "object-initialization" - "object-initializer" - "object-initializers" - "object-inspector" - "object-layout" - "object-lifetime" - "object-literal" - "object-model" - "object-notation" - "object-object-mapping" - "object-oriented-analysis" - "object-oriented-database" - "object-oriented-perl" - "object-pascal" - "object-persistence" - "object-pooling" - "object-properties" - "object-property" - "object-recognition" - "object-reference" - "object-relational-model" - "object-relationships" - "object-role-modeling" - "object-serialization" - "object-sharing" - "object-slicing" - "object-state" - "object-tag" - "object-test-bench" - "object-to-string" - "object-type" - "object.observe" - "objectaid" - "objectal" - "objectanimator" - "objectarx" - "objectbrowser" - "objectbuilder" - "objectcache" - "objectcontext" - "objectdataprovider" - "objectdatasouce" - "objectdatasource" - "objectdb" - "objectdisposedexception" - "objectfactory" - "objectid" - "objectify" - "objectinitalizer" - "objectinputstream" - "objectinstantiation" - "objective-c" - "objective-c++" - "objective-c-2.0" - "objective-c-blocks" - "objective-c-category" - "objective-c-literals" - "objective-c-protocol" - "objective-c-runtime" - "objective-c-swift-bridge" - "objective-git" - "objective-grid" - "objective-j" - "objectiveflickr" - "objectiveresource" - "objectivezip" - "objectlistview" - "objectname" - "objectoutputstream" - "objectpool" - "objectquery" - "objectscript" - "objectset" - "objectsize" - "objectspace" - "objectstatemanager" - "objenesis" - "obliterate" - "obout" - "obr" - "obscured-view" - "observable" - "observablecollection" - "observablelist" - "observer-pattern" - "observers" - "observium" - "obshapedbutton" - "obsolete" - "obviel" - "oc4j" - "ocaml" - "ocaml-batteries" - "ocaml-core" - "ocaml-lwt" - "ocaml-toplevel" - "ocamlbrowser" - "ocamlbuild" - "ocamldoc" - "ocamlfind" - "ocamllex" - "ocamlyacc" - "occam-pi" - "occasionallyconnected" - "occi" - "occlusion" - "occlusion-culling" - "ocean" - "ocfs2" - "ochamcrest" - "oci" - "oci8" - "ocl" - "oclint" - "ocmock" - "ocmockito" - "ocomon" - "ocp" - "ocp-build" - "ocpjp" - "ocr" - "ocra" - "ocracoke" - "ocs" - "ocsigen" - "ocsp" - "octal" - "octave" - "octest" - "octobercms" - "octokit" - "octokit.net" - "octopress" - "octopus" - "octopus-deploy" - "octree" - "oculus" - "ocunit" - "ocupload" - "ocx" - "odac" - "odata" - "odata-php-sdk" - "odata-v3" - "odata-v4" - "odata4j" - "odatalib" - "odb" - "odb-orm" - "odb2" - "odbc" - "odbc-bridge" - "odbc-sql-server-driver" - "ode" - "ode-library" - "odeint" - "odesk" - "odf" - "odftoolkit" - "odfweave" - "odk" - "odm" - "odoo" - "odp" - "odp.net" - "odp.net-managed" - "odr" - "odroid" - "ods" - "odt" - "odt.net" - "oembed" - "ofbiz" - "ofc" - "ofed" - "off-by-one" - "off-screen" - "off-the-record-messaging" - "office-2003" - "office-2007" - "office-2010" - "office-2013" - "office-addins" - "office-app" - "office-automation" - "office-communicator" - "office-interop" - "office-macro" - "office-pia" - "office-web-components" - "office365" - "office365-addin" - "office365-apps" - "officedev" - "officewriter" - "offline" - "offline-browsing" - "offline-caching" - "offline-mode" - "offline-storage" - "offline-web-app" - "offlineapps" - "offloading" - "offscreentabs" - "offset" - "offsetheight" - "offsetof" - "offsetwidth" - "offsite" - "ofnhookproc" - "ofstream" - "oft" - "oftype" - "ofx" - "ofxkinect" - "og-meta" - "ogc" - "ogd-wien" - "ogdf" - "ogg" - "ogg-theora" - "oggenc" - "oggvorbis" - "oglplus" - "ognl" - "ogr" - "ogre" - "ogre3d" - "oh-my-zsh" - "ohai-gem" - "ohattributedlabel" - "ohhttpstubs" - "ohm" - "oid" - "oink" - "ojb" - "ojdbc" - "ojo" - "ojs" - "okhttp" - "okio" - "okra-framework" - "okular" - "okuma" - "okvideo" - "olap" - "olap-cube" - "olap4j" - "ole" - "ole-automation" - "oledb" - "oledbcommand" - "oledbconnection" - "oledbdataadapter" - "oledbdatareader" - "oledbexception" - "oledbparameter" - "oledragdrop" - "olingo" - "ollydbg" - "olpc" - "oltp" - "oltu" - "olwidget" - "om" - "oma" - "oma-dm" - "omake" - "omap" - "ometa" - "omf" - "omittag" - "omml" - "omnet++" - "omniauth" - "omniauth-facebook" - "omnibox" - "omnicomplete" - "omnicontacts-gem" - "omnicppcomplete" - "omnifaces" - "omnigrid" - "omniorb" - "omnios" - "omnipay" - "omnisharp" - "omnithreadlibrary" - "omnixml" - "omp" - "on-clause" - "on-disk" - "on-duplicate-key" - "on-lisp" - "on-screen-keyboard" - "on-the-fly" - "onactionexecuted" - "onactionexecuting" - "onactivityresult" - "onami" - "onapp" - "onauthorization" - "onavailable" - "onbackpressed" - "onbeforeload" - "onbeforeprint" - "onbeforeunload" - "onblur" - "once" - "onchange" - "oncheckedchanged" - "onclick" - "onclicklistener" - "onclientclick" - "oncloselistener" - "onconfigurationchanged" - "oncopy" - "oncreate" - "oncreateoptionsmenu" - "ondemand" - "ondestroy" - "ondraw" - "ondrawitem" - "one-click-web-publishing" - "one-hot" - "one-time-password" - "one-to-many" - "one-to-one" - "oneclick" - "onedefinitionrule" - "onedrive" - "onedrive-api" - "onejar" - "onenote" - "onepage" - "onepage-checkout" - "oneplusone" - "onerror" - "onerrorlistener" - "ones-complement" - "onestepcheckout" - "oneupuploaderbundle" - "oneway" - "onexception" - "onfling" - "onfocus" - "onguard" - "onhover" - "oniguruma" - "onion-architecture" - "onionkit" - "onitemclick" - "onitemclicklistener" - "onitemlongclicklistener" - "onitemselectedlistener" - "onix" - "onkeydown" - "onkeypress" - "onkeyup" - "onkillfocus" - "online-algorithm" - "online-compilation" - "online-forms" - "online-game" - "online-radio" - "online-repository" - "online-storage" - "online-store" - "onlinebanking" - "onload" - "onload-event" - "onlongclicklistener" - "onmeasure" - "onmouseclick" - "onmousedown" - "onmousemove" - "onmouseout" - "onmouseover" - "onmouseup" - "onncpaint" - "onnewintent" - "onpageloadstring" - "onpaint" - "onpaste" - "onpause" - "onpreferenceclicklistener" - "onpreinit" - "onready" - "onreadystatechange" - "onrender" - "onresize" - "onrestoreinstancestate" - "onresume" - "ons-api" - "onscroll" - "onscrolllistener" - "onselect" - "onsen-ui" - "onstart" - "onsubmit" - "ontime" - "ontology" - "ontopia" - "ontouch" - "ontouchevent" - "ontouchlistener" - "onunload" - "onupdate" - "onutterancecompleted" - "onvif" - "onvp8" - "onx" - "oo" - "ooad" - "oocharts" - "oocss" - "oodb" - "oodbms" - "oolong" - "oolua" - "oop" - "oov" - "oovoo" - "ooyala" - "oozie" - "oozie-coordinator" - "op5" - "opa" - "opacity" - "opacitymask" - "opal" - "opal-compiler" - "opalrb" - "opalvoip" - "opam" - "opaque-pointers" - "opc" - "opcache" - "opcode" - "opcode-cache" - "opcodes" - "opdispatch" - "open-array-parameters" - "open-atrium" - "open-basedir" - "open-closed-principle" - "open-esb" - "open-flash-chart" - "open-generics" - "open-graph-beta" - "open-graph-protocol" - "open-intents" - "open-mobile-api" - "open-nfc" - "open-packaging-convention" - "open-session-in-view" - "open-source" - "open-uri" - "open-webkit-sharp" - "open-with" - "open4" - "openacc" - "openaccess" - "openacs" - "openafs" - "openair" - "openal" - "openam" - "openargs" - "openbabel" - "openbadge" - "openbase" - "openbd" - "openblas" - "openbr" - "openbravo" - "openbsd" - "openca" - "opencalais" - "opencart" - "opencart2.x" - "opencascade" - "opencl" - "opencl.net" - "openclient" - "opencmis" - "opencms" - "opencobol" - "opencomputers" - "opencore" - "opencover" - "opencpu" - "opencpu.org" - "opencsv" - "opencv" - "opencv-contour" - "opencv-drawcontour" - "opencv-features2d" - "opencv-mat" - "opencv-stitching" - "opencv3.0" - "opencv4android" - "opencvdotnet" - "opencvsharp" - "opencyc" - "opendap" - "opendata" - "opendatabase" - "opendaylight" - "opendetex" - "opendialog" - "opendiff" - "opendir" - "opendj" - "opendmk" - "opendocument" - "opendolphin" - "opends" - "openears" - "openedge" - "openejb" - "openembedded" - "openerp" - "openerp-7" - "openerp-8" - "openerp-web-module" - "openexr" - "openfaces" - "openfeint" - "openfiledialog" - "openfire" - "openfl" - "openflashchart" - "openflashchart2" - "openflow" - "openfoam" - "openform" - "openframeworks" - "openfst" - "opengis" - "opengl" - "opengl-1.x" - "opengl-2.0" - "opengl-3" - "opengl-4" - "opengl-es" - "opengl-es-1.1" - "opengl-es-2.0" - "opengl-es-3.0" - "opengl-es-lighting" - "opengl-extensions" - "opengl-shader-builder" - "opengl-to-opengles" - "openglcontext" - "openglraw" - "opengraph" - "opengrok" - "opengts" - "openhab" - "openhardwaremonitor" - "openid" - "openid-connect" - "openid-provider" - "openid-selector" - "openid2" - "openid4java" - "openide" - "openimaj" - "openindiana" - "openinfowindowhtml" - "openinventor" - "openinviter" - "openiso8583.net" - "openjdk" - "openjms" - "openjpa" - "openjpa-maven-plugin" - "openkinect" - "openkm" - "openlaszlo" - "openlayers" - "openlayers-3" - "openldap" - "openmap" - "openmax" - "openmcdf" - "openmeetings" - "openmobster" - "openmodelica" - "openmoko" - "openmp" - "openmpi" - "openmq" - "openmrs" - "opennebula" - "opennetcf" - "opennetcf.ioc" - "openni" - "opennlp" - "opennms" - "opennurbs" - "openocd" - "openoffice-api" - "openoffice-base" - "openoffice-basic" - "openoffice-calc" - "openoffice-impress" - "openoffice-writer" - "openoffice.org" - "openorb" - "openpages" - "openpgp" - "openplug" - "openpop" - "openprocess" - "openproject" - "openpyxl" - "openquery" - "openrasta" - "openrdf" - "openrefine" - "openresty" - "openrowset" - "openrpt" - "opensaf" - "opensaml" - "opensc" - "openscad" - "openscenegraph" - "openscript" - "openseadragon" - "openseamap" - "opensearch" - "openser" - "opensg" - "openshift" - "openshift-client-tools" - "openshift-enterprise" - "openshift-origin" - "openshift-web-console" - "opensips" - "opensl" - "opensmpp" - "opensocial" - "opensolaris" - "opensoundcontrol" - "opensplice" - "opensql" - "openssh" - "openssl" - "opensso" - "openstack" - "openstack-cinder" - "openstack-heat" - "openstack-horizon" - "openstack-instance" - "openstack-neutron" - "openstack-nova" - "openstack-swift" - "openstacknetsdk" - "openstep" - "openstreetmap" - "openstruct" - "openstv" - "opensuse" - "opensymphony" - "opentbs" - "opentext" - "opentip" - "opentk" - "opentok" - "opentools" - "opentor" - "opentsdb" - "opentype" - "opentypefont" - "openui5" - "openurl" - "openvas" - "openvg" - "openvms" - "openvpn" - "openvswitch" - "openvz" - "openwebanalytics" - "openwebbeans" - "openwrap" - "openwrt" - "openwsman" - "openwysiwyg" - "openx" - "openx.net" - "openxava" - "openxls" - "openxml" - "openxml-sdk" - "opera" - "opera-dragonfly" - "opera-extension" - "opera-mini" - "opera-mobile" - "opera-turbo" - "operadriver" - "operand" - "operands" - "operating-system" - "operation" - "operation-aborted" - "operation-contract" - "operational" - "operational-transform" - "operationalerror" - "operationcontext" - "operationcontract" - "operations" - "operations-research" - "operator-arrow-star" - "operator-keyword" - "operator-overloading" - "operator-precedence" - "operator-sections" - "operators" - "operf" - "opf3" - "opkg" - "opl" - "opml" - "opnet" - "opos" - "oprofile" - "ops4j" - "opscenter" - "opserver" - "opshub" - "optaplanner" - "optgroup" - "optical-drive" - "optical-mark-recognition" - "opticalflow" - "optics-algorithm" - "optimistic" - "optimistic-concurrency" - "optimistic-locking" - "optimization" - "optimizely" - "optimizer" - "optimizer-hints" - "optimus" - "option" - "option-explicit" - "option-infer" - "option-rom" - "option-strict" - "optional" - "optional-arguments" - "optional-chaining" - "optional-parameters" - "optional-values" - "optional-variables" - "optionaldataexception" - "optionbutton" - "optionmenu" - "optionparser" - "options" - "options-menu" - "optix" - "optparse" - "optparse-applicative" - "opus" - "oql" - "or-condition" - "or-designer" - "or-mapper" - "or-operator" - "ora-00001" - "ora-00054" - "ora-00257" - "ora-00600" - "ora-00900" - "ora-00902" - "ora-00904" - "ora-00905" - "ora-00907" - "ora-00911" - "ora-00913" - "ora-00917" - "ora-00918" - "ora-00923" - "ora-00928" - "ora-00932" - "ora-00933" - "ora-00934" - "ora-00936" - "ora-00937" - "ora-00942" - "ora-00947" - "ora-00955" - "ora-00972" - "ora-00979" - "ora-00984" - "ora-00997" - "ora-01000" - "ora-01008" - "ora-01017" - "ora-01031" - "ora-01034" - "ora-01036" - "ora-01045" - "ora-01400" - "ora-01403" - "ora-01422" - "ora-01426" - "ora-01427" - "ora-01438" - "ora-01446" - "ora-01461" - "ora-01555" - "ora-01652" - "ora-01704" - "ora-01722" - "ora-01735" - "ora-01747" - "ora-01756" - "ora-01790" - "ora-01795" - "ora-01830" - "ora-01843" - "ora-01858" - "ora-01861" - "ora-02014" - "ora-02049" - "ora-02290" - "ora-02291" - "ora-03113" - "ora-03114" - "ora-04044" - "ora-04063" - "ora-04088" - "ora-04091" - "ora-04098" - "ora-06502" - "ora-06512" - "ora-06550" - "ora-06553" - "ora-08177" - "ora-12012" - "ora-12154" - "ora-12514" - "ora-12519" - "ora-12541" - "ora-12545" - "ora-12560" - "ora-12571" - "ora-12705" - "ora-12899" - "ora-17004" - "ora-20000" - "ora-24338" - "ora-27101" - "ora-28002" - "ora-29532" - "ora-29855" - "ora-31011" - "ora-38104" - "ora-hash" - "oracle" - "oracle-adf" - "oracle-adf-mobile" - "oracle-agile-plm" - "oracle-analytics" - "oracle-apex" - "oracle-application-server" - "oracle-apps" - "oracle-aq" - "oracle-bpm-suite" - "oracle-cdc" - "oracle-client" - "oracle-coherence" - "oracle-commerce" - "oracle-cursor" - "oracle-data-integrator" - "oracle-ebs" - "oracle-enterprise-linux" - "oracle-enterprise-manager" - "oracle-fusion-apps" - "oracle-fusion-middleware" - "oracle-golden-gate" - "oracle-home" - "oracle-maf" - "oracle-mds" - "oracle-net-services" - "oracle-nosql" - "oracle-olap" - "oracle-opam" - "oracle-osm" - "oracle-padding-exploit" - "oracle-pro-c" - "oracle-rac" - "oracle-rules" - "oracle-service-bus" - "oracle-soa" - "oracle-spatial" - "oracle-spatial-ndm" - "oracle-sql-data-modeler" - "oracle-sqldeveloper" - "oracle-streams" - "oracle-text" - "oracle-type" - "oracle-ucm" - "oracle-warehouse-builder" - "oracle-xdk" - "oracle-xe" - "oracle-xml-db" - "oracle-xml-db-repository" - "oracle10g" - "oracle11g" - "oracle11gr1" - "oracle11gr2" - "oracle12c" - "oracle8" - "oracle8i" - "oracle9i" - "oracleapplications" - "oracleclient" - "oraclecommand" - "oracleexception" - "oracleforms" - "oracleinternals" - "oracleinternetdirectory" - "oracleportal" - "oraclereports" - "orange" - "orangehrm" - "oraoledb" - "orb" - "orbacus" - "orbeon" - "orbit" - "orbital-mechanics" - "orbited" - "orbot" - "orca" - "orcad" - "orchard-modules" - "orchardcms" - "orchardcms-1.6" - "orchardcms-1.7" - "orchardcms-1.8" - "orchestra" - "orchestration" - "ord" - "ordbms" - "order" - "order-of-evaluation" - "order-of-execution" - "order-of-operations" - "ordered-delivery" - "ordered-map" - "ordered-test" - "ordered-tree" - "ordereddictionary" - "ordering" - "orders" - "ordinal" - "ordinal-indicator" - "ordinals" - "org-babel" - "org-mode" - "org-table" - "org.json" - "organic" - "organic-groups" - "organization" - "organizational-chart" - "organized" - "organizer" - "orgchart" - "oridomi" - "orient-db" - "orientation" - "orientation-changes" - "oriented-graph" - "origami" - "originlab" - "origodb" - "orika" - "orkut" - "orleans" - "orm" - "ormlite" - "ormlite-servicestack" - "orocrm" - "orphan" - "orphaned-objects" - "orsserialport" - "orthogonal" - "orthographic" - "oryx" - "oryx-editor" - "os-agnostic" - "os-dependent" - "os-detection" - "os.execl" - "os.path" - "os.system" - "os.walk" - "os161" - "osascript" - "osb" - "osc" - "oscache" - "oscar" - "oscilloscope" - "osclass" - "oscommerce" - "osdev" - "osdi" - "ose" - "osgeo" - "osgi" - "osgi-bundle" - "osgi-fragment" - "osi" - "osk" - "oslc" - "oslo" - "osmdroid" - "osmf" - "osmosis" - "ospf" - "osqa" - "osql" - "osspinlock" - "osticket" - "ostream" - "ostrich" - "ostringstream" - "osworkflow" - "osx" - "osx-chameleon" - "osx-extensions" - "osx-gatekeeper" - "osx-leopard" - "osx-lion" - "osx-mavericks" - "osx-mountain-lion" - "osx-server" - "osx-snow-leopard" - "osx-tiger" - "osx-yosemite" - "osx-yosemite-beta" - "osx-yosemite10.10" - "osxfuse" - "ota" - "otapi" - "otcl" - "otl" - "otool" - "otp" - "otroslogviewer" - "otrs" - "ott" - "otto" - "ou" - "ounit" - "oursql" - "out" - "out-of-band" - "out-of-browser" - "out-of-memory" - "out-of-process" - "out-of-source" - "out-parameter" - "out-parameters" - "outbound" - "outbrain" - "outdir" - "outer" - "outer-classes" - "outer-join" - "outerheight" - "outerhtml" - "outerwidth" - "outerxml" - "outfile" - "outgoing-mail" - "outlet" - "outliers" - "outline" - "outline-view" - "outliner" - "outlining" - "outlook" - "outlook-2003" - "outlook-2007" - "outlook-2007-addin" - "outlook-2010" - "outlook-2011" - "outlook-2013" - "outlook-addin" - "outlook-calendar" - "outlook-envelope-icon" - "outlook-express" - "outlook-form" - "outlook-macro" - "outlook-object-model" - "outlook-redemption" - "outlook-vba" - "outlook-web-app" - "outlook.com" - "outofrangeexception" - "output" - "output-buffering" - "output-caching" - "output-clause" - "output-directory" - "output-file" - "output-formatting" - "output-parameter" - "output-redirect" - "output-window" - "outputcache" - "outputdebugstring" - "outputformat" - "outputstream" - "outputstylesheet" - "outsourcing" - "outsystems" - "ouya" - "ova" - "oval" - "over-clause" - "over-the-air" - "overcoat" - "overcommit" - "overflow" - "overflow-menu" - "overflowexception" - "overhead" - "overhead-minimization" - "overheating" - "overlap" - "overlapped-io" - "overlapping" - "overlapping-instances" - "overlapping-matches" - "overlay" - "overlay-icon-disappear" - "overlay-view" - "overlayitem" - "overlays" - "overload-resolution" - "overloaded-strings" - "overloading" - "overpass-api" - "override" - "overrides" - "overriding" - "overrun" - "overscroll" - "overtone" - "overuse" - "overview" - "overwrite" - "overwriting" - "ovf" - "ovi" - "ovistore" - "ovp" - "owasp" - "owin" - "owin-middleware" - "owin-security" - "owin.security" - "owl" - "owl-api" - "owl-carousel" - "owl-time" - "owlim" - "owlnext" - "owncloud" - "owner" - "ownerdraw" - "ownerdrawn" - "ownership" - "ownership-semantics" - "oxid" - "oxite" - "oxm" - "oxpath" - "oxwall" - "oxygene" - "oxygenxml" - "oxyplot" - "oz" - "ozeki" - "p-np" - "p-value" - "p2" - "p2-director" - "p2p" - "p3p" - "p4.net" - "p4api.net" - "p4d" - "p4eclipse" - "p4java" - "p4merge" - "p4python" - "p4v" - "p4vs" - "p4win" - "p5.js" - "p6spy" - "p7b" - "p99" - "pa-risc" - "paas" - "pabbrev" - "pabx" - "pac" - "pace" - "pacemaker" - "pack" - "pack-uri" - "package" - "package-control" - "package-development" - "package-diagram" - "package-explorer" - "package-info" - "package-management" - "package-managers" - "package-name" - "package-private" - "package-structuring" - "package.json" - "packaged-task" - "packageinspectionfailed" - "packagemaker" - "packager" - "packager-for-iphone" - "packages" - "packages.config" - "packaging" - "packagist" - "packed" - "packed-decimal" - "packer" - "packery" - "packet" - "packet-capture" - "packet-construction-set" - "packet-injection" - "packet-loss" - "packet-mangling" - "packet-sniffers" - "packet.net" - "packetdotnet" - "packets" - "packing" - "packr" - "packrat" - "pacman" - "pad" - "padarn" - "padding" - "padleft" - "padre" - "padrino" - "paf" - "page-break" - "page-break-inside" - "page-caching" - "page-curl" - "page-directives" - "page-editor" - "page-fault" - "page-flipping" - "page-flow" - "page-fragments" - "page-index-changed" - "page-init" - "page-inspector" - "page-jump" - "page-layout" - "page-library" - "page-lifecycle" - "page-load-time" - "page-loading-message" - "page-numbering" - "page-object-gem" - "page-refresh" - "page-replacement" - "page-setup" - "page-size" - "page-state" - "page-title" - "page-zoom" - "page.js" - "pageant" - "pageasynctask" - "pagecontext" - "pagecontrol" - "pagedcollectionview" - "pagedlist" - "pagedown" - "pagefile" - "pagefunction" - "pageheap" - "pagelines" - "pagelines-framework" - "pagelines-platformpro" - "pageload" - "pagemethods" - "pageobjects" - "pager" - "pagerank" - "pagerequestmanager" - "pagerfanta" - "pagerjs" - "pagerslidingtabstrip" - "pagertabstrip" - "pagertemplate" - "pagertitlestrip" - "pageshow" - "pagespeed" - "pageviews" - "pagey" - "paginate" - "pagination" - "paginator" - "paging" - "pagingtoolbar" - "pagoda-box" - "paho" - "pahole" - "paint" - "paint-code" - "paint.net" - "paintbox" - "paintcomponent" - "paintevent" - "pair" - "pair-programming" - "pairing-heap" - "pakyow" - "palemoon" - "palette" - "palib" - "palindrome" - "pallet" - "palm" - "palm-os" - "palm-pre" - "palm-pre2" - "palmdb" - "pam" - "pamie" - "pan" - "panda3d" - "pandaboard" - "pandas" - "pandastream" - "pander" - "pandoc" - "pandora" - "pane" - "panel" - "panel-data" - "panelbar" - "panelgrid" - "panels" - "panes" - "pango" - "pangocairo" - "pangram" - "panic" - "panning" - "panorama-control" - "panoramas" - "panoramic" - "panoramio" - "pantheios" - "pantomime" - "pantone" - "papaparse" - "paper-elements" - "paperclip" - "paperclip-validation" - "paperjs" - "paperless" - "papertrail" - "papervision3d" - "papi" - "papyrus" - "par" - "paraccel" - "paradigms" - "paradox" - "paraffin" - "paragraph" - "paragraphs" - "parakeet" - "parallax" - "parallax-spin" - "parallax.js" - "parallel-arrays" - "parallel-assignment" - "parallel-builds" - "parallel-collections" - "parallel-coordinates" - "parallel-data-warehouse" - "parallel-extensions" - "parallel-for" - "parallel-foreach" - "parallel-port" - "parallel-processing" - "parallel-python" - "parallel-testing" - "parallel.for" - "parallel.foreach" - "parallelism-amdahl" - "parallels" - "paralleltry" - "param" - "paramarray" - "paramater-passing" - "parameter-groups" - "parameter-passing" - "parameter-sniffing" - "parameter-spoofing" - "parameterbinding" - "parameterinfo" - "parameterization" - "parameterized" - "parameterized-class" - "parameterized-query" - "parameterized-tests" - "parameterized-types" - "parameterized-unit-test" - "parameters" - "parametric-equations" - "parametric-polymorphism" - "parametrized-constructor" - "paramiko" - "params" - "params-keyword" - "paramstr" - "parasoft" - "paraview" - "paravirtualization" - "parboiled" - "parcel" - "parcelable" - "pardiso" - "paredit" - "parenscript" - "parent" - "parent-child" - "parent-node" - "parent-pom" - "parental-control" - "parentheses" - "parentid" - "parents" - "parentviewcontroller" - "pareto-chart" - "parfor" - "pari" - "pari-gp" - "parity" - "parking" - "parosproxy" - "parquet" - "parrot" - "parse-android-sdk" - "parse-combinator" - "parse-error" - "parse-ez" - "parse-forest" - "parse-framework" - "parse-recdescent" - "parse-transform" - "parse-tree" - "parse-url" - "parse.com" - "parse.js" - "parse4j" - "parsec" - "parsecontrol" - "parsedown" - "parseexcel" - "parseexception" - "parsefacebookutils" - "parsefloat" - "parseint" - "parsekit" - "parsepy" - "parser-combinators" - "parser-generator" - "parserelation" - "parserole" - "parseui" - "parsexml" - "parsing" - "parsing-error" - "parslet" - "parsley" - "parsley.js" - "part-of-speech" - "partcover" - "partial" - "partial-application" - "partial-caching" - "partial-classes" - "partial-functions" - "partial-index" - "partial-methods" - "partial-mocks" - "partial-ordering" - "partial-page-refresh" - "partial-postback" - "partial-sort" - "partial-specialization" - "partial-trust" - "partial-view" - "partial-views" - "partialfunction" - "partially-applied-type" - "partials" - "partialviews" - "particle" - "particle-engine" - "particle-filter" - "particle-swarm" - "particle-system" - "particles" - "partition" - "partition-by" - "partition-problem" - "partitioned-view" - "partitioner" - "partitioning" - "party" - "pascal" - "pascal-case" - "pascal-fc" - "pascalcasing" - "pascalmock" - "pascals-triangle" - "pascalscript" - "pass-by-const-reference" - "pass-by-name" - "pass-by-pointer" - "pass-by-reference" - "pass-by-rvalue-reference" - "pass-by-value" - "pass-data" - "pass-through" - "passbook" - "passenger" - "passive-mode" - "passive-sts" - "passive-view" - "passkit" - "passphrase" - "passport" - "passport-facebook" - "passport-freshbooks" - "passport-local" - "passport-twitter" - "passport.js" - "passport.socketio" - "passslot" - "passthrough-attributes" - "passthrough-elements" - "passthru" - "passwd" - "password-checker" - "password-confirmation" - "password-encryption" - "password-generator" - "password-hash" - "password-policy" - "password-prompt" - "password-protection" - "password-recovery" - "password-retrieval" - "password-storage" - "passwordbox" - "passwords" - "passwordvault" - "paste" - "pastebin" - "pasteboard" - "paster" - "pastie" - "pasting" - "pastrykit" - "patch" - "patchgeneration" - "patching" - "patents" - "path" - "path-2d" - "path-aliases" - "path-combine" - "path-dependent-type" - "path-finding" - "path-info" - "path-iterator" - "path-manipulation" - "path-parameter" - "path-separator" - "path-variables" - "path.js" - "pathanimator" - "pathauto" - "pathelement" - "pathfinder" - "pathgeometry" - "pathinfo" - "pathing" - "pathlib" - "pathname" - "pathogen" - "pathos" - "pathpattern" - "pathtoolongexception" - "patindex" - "patricia-trie" - "patsy" - "pattern-finding" - "pattern-guards" - "pattern-layout" - "pattern-matching" - "pattern-recognition" - "patterns" - "patternsyntaxexception" - "paul-graham" - "pausing-execution" - "paver" - "pavlov" - "pavuk" - "paw" - "pawn" - "pawserver" - "pax" - "pax-exam" - "pax-runner" - "pax-web" - "paxos" - "pay-per-click" - "pay-per-view" - "payflowlink" - "payflowpro" - "paykey" - "payload" - "payment" - "payment-gateway" - "payment-method" - "payment-processing" - "payment-schemas" - "payment-services" - "paymill" - "paypal" - "paypal-adaptive-payments" - "paypal-api" - "paypal-buttons" - "paypal-express" - "paypal-gateway" - "paypal-ipn" - "paypal-mobile-sdk" - "paypal-nvp" - "paypal-pdt" - "paypal-permissions" - "paypal-rest-sdk" - "paypal-sandbox" - "paypal-soap" - "paypal-subscriptions" - "paypal-vault" - "paypal-webhooks" - "paypalmerchantsdk" - "paysimple" - "payum" - "pbcopy" - "pbkdf2" - "pbm" - "pbmplus" - "pbo" - "pbrequester" - "pbs" - "pbuilder" - "pbx" - "pbxproj" - "pbxt" - "pc" - "pc-lint" - "pc104" - "pca" - "pcap" - "pcap-ng" - "pcap.net" - "pcdata" - "pcf" - "pch" - "pchar" - "pchart" - "pci" - "pci-bus" - "pci-compliance" - "pci-dss" - "pci-e" - "pclose" - "pclxl" - "pclzip" - "pcm" - "pcmanfm" - "pcntl" - "pcre" - "pcregrep" - "pcsc" - "pcspim" - "pcx" - "pd4ml" - "pda" - "pdb" - "pdb-files" - "pdb-palm" - "pdb-python" - "pdc" - "pdc2008" - "pdcurses" - "pde" - "pdebuild" - "pdepend" - "pdf" - "pdf-annotations" - "pdf-conversion" - "pdf-extraction" - "pdf-form" - "pdf-generation" - "pdf-manipulation" - "pdf-parsing" - "pdf-reader" - "pdf-rendering" - "pdf-scraping" - "pdf-to-html" - "pdf-viewer" - "pdf-writer" - "pdf.js" - "pdf2htmlex" - "pdf2swf" - "pdf417" - "pdfa" - "pdfbox" - "pdfclown" - "pdfkit" - "pdflatex" - "pdflib" - "pdfmake" - "pdfminer" - "pdfnet" - "pdfobject" - "pdfpage" - "pdfpages" - "pdfptable" - "pdfrenderer" - "pdfsharp" - "pdfstamper" - "pdftex" - "pdftk" - "pdftoppm" - "pdftotext" - "pdftron" - "pdfview" - "pdfviewer" - "pdh" - "pdi" - "pdist" - "pdk" - "pdksh" - "pdl" - "pdo" - "pdo-odbc" - "pdostatement" - "pdp" - "pdp-11" - "pdt" - "pdu" - "pdw-file-browser" - "pe" - "pe-exports" - "peaberry" - "pear" - "pear-mail" - "pearson" - "pebble-js" - "pebble-sdk" - "pebble-watch" - "pebl" - "pechkin" - "pecl" - "pecl-oauth" - "pecs" - "pedestal" - "peek" - "peekmessage" - "peer" - "peer-wire-protocol" - "peerjs" - "peewee" - "peg" - "pega" - "pegjs" - "pegkit" - "pelco" - "pelican" - "pelles-c" - "pellet" - "pelops" - "pem" - "pen" - "pen-tablet" - "pending-transition" - "pendrive" - "penetration-testing" - "penetration-tools" - "pentaho" - "pentaho-cde" - "pentaho-design-studio" - "pentium" - "peoplepicker" - "peoplesoft" - "peoplesoft-app-engine" - "pep" - "pep8" - "pep8-assembly" - "pep8-checker" - "percent" - "percent-encoding" - "percentage" - "percentile" - "percentwidth" - "perception" - "perceptivemcapi" - "perceptron" - "perceptual-sdk" - "perch" - "percona" - "perf" - "perf4j" - "perfarce" - "perfect-developer" - "perfect-forwarding" - "perfect-hash" - "perfect-numbers" - "perfect-square" - "perfino" - "perfmon" - "perforce" - "perforce-branch-spec" - "perforce-client-spec" - "perforce-integrate" - "performance" - "performance-estimation" - "performance-measurement" - "performance-monitor" - "performance-monitoring" - "performance-test" - "performance-testing" - "performanceanalytics" - "performancecounter" - "performancepoint" - "performselector" - "perfview" - "perfwatson" - "period" - "periodformatter" - "periodic-processing" - "periodic-task" - "peripherals" - "perl" - "perl-context" - "perl-core" - "perl-critic" - "perl-data-structures" - "perl-express" - "perl-hash" - "perl-html-template" - "perl-io" - "perl-module" - "perl-mouse" - "perl-oo" - "perl-package" - "perl-pod" - "perl-prove" - "perl-select" - "perl-tidy" - "perl-xs" - "perl2exe" - "perl4" - "perl5" - "perl5.10" - "perl5.12" - "perl5.14" - "perl5.18" - "perl5.6" - "perl5.8" - "perl6" - "perlapp" - "perlbrew" - "perldoc" - "perlguts" - "perlin-noise" - "perlmagick" - "perlnetssh" - "perlop" - "perlre" - "perlscript" - "perlsections" - "perlsyn" - "perltk" - "perlvar" - "permalink-fu" - "permalinks" - "permanent" - "permanent-generation" - "permgen" - "permission-denied" - "permissionerror" - "permissions" - "permissionset" - "permutation" - "permute" - "persian" - "persist" - "persisted-column" - "persistence" - "persistence-ignorance" - "persistence-manager" - "persistence-unit" - "persistence.xml" - "persistent" - "persistent-connection" - "persistent-data" - "persistent-object-store" - "persistent-set" - "persistent-storage" - "persistentmanager" - "persistjs" - "persona" - "personal-hotspot" - "personal-software-process" - "personal-website" - "personalization" - "perspective" - "perspective-broker" - "perspectivecamera" - "perspectives" - "pervasive" - "pervasive-sql" - "perwebrequest" - "pessimistic" - "pessimistic-locking" - "pester" - "petapoco" - "petcare" - "peter-norvig" - "peterblum" - "petitparser" - "petrel" - "petri-net" - "petsc" - "peverify" - "pex" - "pex-and-moles" - "pexcept" - "pexpect" - "pf-ring" - "pfbc" - "pffile" - "pfi" - "pfloginviewcontroller" - "pfobject" - "pfquery" - "pfrelation" - "pfsense" - "pfsubclassing" - "pfuser" - "pfx" - "pg" - "pg-dump" - "pg-jdbc" - "pg-restore" - "pg-search" - "pg-upgrade" - "pg8000" - "pgadmin" - "pgagent" - "pgbouncer" - "pgcc" - "pgcrypto" - "pgdb" - "pgf" - "pgfouine" - "pgi" - "pgi-accelerator" - "pgi-visual-fortran" - "pgm" - "pgmagick" - "pgo" - "pgp" - "pgp-desktop" - "pgplot" - "pgpool" - "pgraphics" - "pgrep" - "pgrouting" - "pgtap" - "pgu" - "pgwmodal" - "phabricator" - "phactory" - "phalanger" - "phalcon" - "phalcon-routing" - "phalconeye" - "phamlp" - "phantom-reference" - "phantom-types" - "phantomcss" - "phantomjs" - "phar" - "pharlap" - "pharo" - "pharocloud" - "phase" - "phaselistener" - "phaser" - "phaser-framework" - "phash" - "phasset" - "pheanstalk" - "pheatmap" - "philips-hue" - "phing" - "phirehose" - "phishing" - "phmagick" - "phobos" - "phoenix" - "phoenix-framework" - "phone" - "phone-number" - "phone-state-listener" - "phonecalls" - "phoneformat" - "phonegap" - "phonegap-build" - "phonegap-desktop-app" - "phonegap-gmaps-plugin" - "phonegap-plugins" - "phonegap-pushplugin" - "phonejs" - "phoneme" - "phonertc" - "phonetics" - "phong" - "phono" - "phonon" - "phoria.js" - "photo" - "photo-gallery" - "photo-management" - "photo-tagging" - "photo-upload" - "photobucket" - "photogrammetry" - "photography" - "photoimage" - "photokit" - "photolibrary" - "photologue" - "photon" - "photos" - "photosframework" - "photoshop" - "photoshop-cs3" - "photoshop-cs4" - "photoshop-cs5" - "photoshop-script" - "photoshop-sdk" - "photosphere" - "photostream" - "photoswipe" - "photoviewer" - "photran" - "php" - "php-5.2" - "php-5.3" - "php-5.4" - "php-5.5" - "php-5.6" - "php-amqp" - "php-amqplib" - "php-analog-package" - "php-arc" - "php-basic" - "php-beautifier" - "php-builtin-server" - "php-carbon" - "php-closures" - "php-codebrowser" - "php-core-sdk" - "php-cpp" - "php-dao" - "php-di" - "php-ews" - "php-extension" - "php-extension-yaf" - "php-fpm" - "php-gd" - "php-generators" - "php-gettext" - "php-gtk" - "php-ide" - "php-imagecopy" - "php-imagine" - "php-include" - "php-ini" - "php-internals" - "php-java-bridge" - "php-migration" - "php-mode" - "php-oara" - "php-opcode" - "php-opencloud" - "php-openssl" - "php-packages" - "php-parse-error" - "php-parser" - "php-password-hash" - "php-pgsql" - "php-qt" - "php-resque" - "php-safe-mode" - "php-shorttags" - "php-socket" - "php-stream-wrappers" - "php-toolkit" - "php-vcr" - "php.gt" - "php2html" - "php4" - "php4delphi" - "phpactiverecord" - "phpasn1" - "phpass" - "phpbb" - "phpbb3" - "phpbms" - "phpcas" - "phpcassa" - "phpcodesniffer" - "phpcrawl" - "phpdbg" - "phpdebugbar" - "phpdesigner" - "phpdoc" - "phpdoctrine" - "phpdocumenter" - "phpdocumentor" - "phpdocumentor2" - "phpdocx" - "phpeclipse" - "phped" - "phpexcel" - "phpexcelreader" - "phpfarm" - "phpflickr" - "phpfog" - "phpfox" - "phpfreechat" - "phpgraphlib" - "phpgrid" - "phpinfo" - "phpixie" - "phpjs" - "phpldapadmin" - "phplint" - "phplist" - "phploc" - "phplot" - "phpmailer" - "phpmd" - "phpmotion" - "phpmyadmin" - "phpmyid" - "phppgadmin" - "phppowerpoint" - "phpquery" - "phpredis" - "phpscheduleit" - "phpseclib" - "phpsh" - "phpsniff" - "phpspec" - "phpstorm" - "phpt" - "phptal" - "phpthumb" - "phpundercontrol" - "phpunit" - "phpvibe" - "phpwebsocket" - "phpword" - "phrase" - "phrases" - "phreeze" - "phtml" - "phundament" - "phusion" - "phusion-passenger" - "phxsoftware" - "phylogeny" - "physfs" - "physical" - "physical-design" - "physics" - "physics-engine" - "physicsjs" - "physijs" - "physx" - "physx.net" - "pi" - "pi-calculation" - "pi-calculus" - "pi-db" - "pia" - "piano" - "pibase" - "pic" - "pic18" - "pic24" - "pic32" - "picard" - "picasa" - "picasso" - "picaxe" - "piccolo" - "pick" - "pickadate" - "picker" - "picketlink" - "picking" - "pickle" - "picklist" - "pico" - "picoblaze" - "picoc" - "picocontainer" - "picolisp" - "picosat" - "pictos" - "picturebox" - "picturefill" - "picturegallery" - "pid" - "pid-algorithm" - "pid-controller" - "pidcrypt" - "pidgin" - "pidls" - "pie-chart" - "piecewise" - "piggybak" - "piglatin" - "piglet" - "pii" - "pik" - "pika" - "pikachoose" - "pike" - "piler" - "pillow" - "pim" - "pimcore" - "pimpl-idiom" - "pimple" - "pin-code" - "pin-it-sdk" - "pin-ptr" - "pinax" - "pinch" - "pinchzoom" - "ping" - "pingback" - "pingdom" - "pingexception" - "pingfederate" - "pinging" - "pinnacle-cart" - "pinned-header-list-view" - "pinned-site" - "pinning" - "pinny" - "pinocc.io" - "pins" - "pinterest" - "pintos" - "pinvoke" - "pip" - "pip-install-cryptography" - "pipe" - "pipedrive-api" - "pipeline" - "pipelined-function" - "pipelining" - "pipes-filters" - "piping" - "piracy" - "piracy-prevention" - "piracy-protection" - "piranha-cms" - "pisa" - "piston" - "pitbar" - "pitch" - "pitch-detection" - "pitch-shifting" - "pitch-tracking" - "pitchfork" - "pitest" - "pivot" - "pivot-table" - "pivot-without-aggregate" - "pivot-xml" - "pivot.js" - "pivotal-crm" - "pivotaltracker" - "pivotitem" - "pivottable.js" - "pivotviewer" - "piwik" - "pix" - "pixastic" - "pixate" - "pixbuf" - "pixel" - "pixel-bender" - "pixel-fonts" - "pixel-manipulation" - "pixel-perfect" - "pixel-ratio" - "pixel-shader" - "pixel-shading" - "pixelate" - "pixelformat" - "pixelmed" - "pixels" - "pixelsense" - "pixi" - "pixmap" - "pjax" - "pjl" - "pjsip" - "pkcs#1" - "pkcs#11" - "pkcs#12" - "pkcs#15" - "pkcs#5" - "pkcs#8" - "pkcs11" - "pkcs7" - "pkg-config" - "pkg-file" - "pkg-resources" - "pkgbuild" - "pkgcloud" - "pkgdef" - "pki" - "pkix" - "pl-i" - "place" - "placeholder" - "placeholder-control" - "placement" - "placement-new" - "plack" - "plagiarism-detection" - "plai" - "plaid" - "plainelastic.net" - "plaintext" - "plan-9" - "planar-graph" - "plane" - "planerotation" - "planetary.js" - "planning" - "planning-game" - "plantuml" - "plasma" - "plasmoid" - "plasticscm" - "plates" - "platform" - "platform-agnostic" - "platform-builder" - "platform-detection" - "platform-independence" - "platform-independent" - "platform-sdk" - "platform-specific" - "platform-update-1" - "plato" - "platypus" - "plaxo" - "play-authenticate" - "play-plugins-redis" - "play-reactivemongo" - "play-slick" - "play2-mini" - "playback" - "playback-rate" - "playbin2" - "playbook" - "player" - "player-stage" - "player.io" - "playframework" - "playframework-1.x" - "playframework-2.0" - "playframework-2.1" - "playframework-2.2" - "playframework-2.3" - "playframework-evolutions" - "playframework-json" - "playframework-routing" - "playframework-webservice" - "playhaven" - "playing" - "playing-cards" - "playlist" - "playlists" - "playmaker" - "playn" - "playnomics" - "playorm" - "playready" - "playsound" - "playstation" - "playstation-portable" - "playstation3" - "plc" - "plcrashreporter" - "pleasewait" - "plesk" - "plex" - "plexus" - "pligg" - "plimus" - "plink" - "plinq" - "plinqo" - "plist" - "plivo" - "pljava" - "pljson" - "plm" - "plone" - "plone-3.x" - "plone-4.x" - "plone-funnelweb" - "ploneformgen" - "plop" - "plot" - "plotgooglemaps" - "plotlab" - "plotly" - "plotmath" - "plotmatrix" - "plotrix" - "plovr" - "plperl" - "plperlu" - "plpgsql" - "plpy" - "plpython" - "plr" - "pls-00103" - "pls-00323" - "pls-00428" - "plsql" - "plsql-psp" - "plsqldeveloper" - "plt-redex" - "pluck" - "plug-and-play" - "pluggable" - "pluggableprotocol" - "plugin-architecture" - "plugin-pattern" - "plugin-system" - "plugin.xml" - "plugins" - "plugman" - "plumbum" - "plumtree" - "plunker" - "plunkr" - "plupload" - "plural" - "plural-forms" - "pluralize" - "pluto" - "plv8" - "ply" - "plyr" - "pm2" - "pmap" - "pmd" - "pmml" - "pmp" - "pmwiki" - "png" - "png-24" - "png-8" - "png-transparency" - "pngcrush" - "pngfix" - "pnotify" - "pnrp" - "pnunit" - "po" - "po-file" - "poc" - "pocket" - "pocket-ie" - "pocketc" - "pocketpc" - "pocketsphinx" - "pocketsphinx-android" - "poco" - "poco-libraries" - "pod" - "pod-types" - "podcast" - "podio" - "podo" - "podofo" - "podpress" - "podscms" - "podspec" - "poe" - "poeaa" - "poedit" - "poet" - "pogoscript" - "poi-hssf" - "point" - "point-cloud-library" - "point-clouds" - "point-in-polygon" - "point-in-time" - "point-of-interest" - "point-of-sale" - "point-sprites" - "pointcut" - "pointcuts" - "pointer-address" - "pointer-arithmetic" - "pointer-container" - "pointer-conversion" - "pointer-events" - "pointer-to-array" - "pointer-to-member" - "pointer-to-pointer" - "pointerlock" - "pointers" - "pointfree" - "points" - "poisson" - "pojo" - "pokein" - "poker" - "polar-coordinates" - "polarion" - "polarssl" - "policies" - "policy" - "policy-based-design" - "policy-injection" - "policy-server" - "policyfiles" - "polipo" - "polish" - "polish-notation" - "poll-syscall" - "poller" - "polling" - "pollingduplexhttpbinding" - "poltergeist" - "polychart" - "polycode" - "polyfills" - "polyglot" - "polyglot-markup" - "polyglot-persistance" - "polyglot.js" - "polygon" - "polygon-skeleton" - "polygons" - "polyhedra" - "polyline" - "polymaps" - "polymer" - "polymer-designer-tool" - "polymodel" - "polymorphic" - "polymorphic-associations" - "polymorphic-functions" - "polymorphism" - "polynomial-math" - "polynomials" - "polyphonic-c#" - "polyvariadic" - "pom.xml" - "pomelo" - "pomm" - "pong" - "pony" - "ponydebugger" - "ponyorm" - "poodle-attack" - "pool" - "pooling" - "pootle" - "pop" - "pop-11" - "pop-up" - "pop3" - "popcornjs" - "popen" - "popen3" - "popfax-api" - "poplib" - "popover" - "poppler" - "popstate" - "poptoviewcontroller" - "popularity" - "populate" - "population" - "popup" - "popup-balloons" - "popup-blocker" - "popupcontrolextender" - "popupmenu" - "popupmenubutton" - "popuppanel" - "popupwindow" - "popviewcontroller" - "popviewcontrolleranimated" - "port" - "port-number" - "port-scanning" - "port80" - "porta-one" - "portability" - "portable-applications" - "portable-areas" - "portable-class-libary" - "portable-class-library" - "portable-contacts" - "portable-database" - "portable-executable" - "portable-library-tools" - "portable-python" - "portal" - "portal-java" - "portal-server" - "portal-system" - "portaljs" - "portals-bridge" - "portalsitemapprovider" - "portaudio" - "porter-duff" - "porter-stemmer" - "portfolio" - "portforwarding" - "porthole.js" - "portia" - "porting" - "portlet" - "portletbridge" - "portrait" - "ports" - "porttype" - "pos-for-.net" - "pos-tagger" - "pos-tagging" - "pose-estimation" - "poset" - "posh-git" - "poshserver" - "posiflex" - "position" - "position-sticky" - "positional-operator" - "positioning" - "posix" - "posix-api" - "posix-ere" - "posix-select" - "posixct" - "posixlt" - "post" - "post-build" - "post-build-event" - "post-commit" - "post-commit-hook" - "post-conditions" - "post-increment" - "post-install" - "post-mortem" - "post-parameter" - "post-processing" - "post-receive-email" - "post-redirect-get" - "post-request" - "post-update" - "postageapp" - "postal" - "postal-code" - "postback" - "postbackurl" - "postconstruct" - "postdata" - "postdelayed" - "poster" - "posterization" - "posterous" - "postfile" - "postfix" - "postfix-notation" - "postfix-operator" - "postgis" - "postgres-ext" - "postgres-fdw" - "postgres-plus" - "postgres-xc" - "postgres-xl" - "postgres.app" - "postgresapp" - "postgresql" - "postgresql-8.1" - "postgresql-8.2" - "postgresql-8.3" - "postgresql-8.4" - "postgresql-9.0" - "postgresql-9.1" - "postgresql-9.2" - "postgresql-9.3" - "postgresql-9.4" - "postgresql-extensions" - "postgresql-initdb" - "postgresql-json" - "postgresql-performance" - "postgresqlstudio" - "posthoc" - "posting" - "postman" - "postmark" - "postmessage" - "postmortem-debugging" - "postorder" - "posts" - "postscript" - "postsharp" - "pouchdb" - "pound" - "povray" - "pow" - "pow.cx" - "powder" - "power-law" - "power-management" - "power-off" - "power-saving" - "power-series" - "power-state" - "powerbi" - "powerbuilder" - "powerbuilder-build-deploy" - "powerbuilder-conversion" - "powerbuilder-pfc" - "powerbuilder.net" - "powercfg" - "powercli" - "powercommands" - "powerdesigner" - "powerdns" - "powerform" - "powergrep" - "powergui" - "powerline" - "powermanager" - "powermock" - "powerpack" - "powerpacks" - "powerpc" - "powerpivot" - "powerplus" - "powerpoint" - "powerpoint-2007" - "powerpoint-2010" - "powerpoint-2013" - "powerpoint-automation" - "powerpoint-vba" - "powerquery" - "powerschool" - "powerset" - "powershell" - "powershell-4.0" - "powershell-hosting" - "powershell-ise" - "powershell-jobs" - "powershell-module" - "powershell-provider" - "powershell-remoting" - "powershell-sdk" - "powershell-studio" - "powershell-v1.0" - "powershell-v2.0" - "powershell-v3.0" - "powershell-v4.0" - "powershell-v5.0" - "powershell-workflow" - "powertab" - "powerview" - "powervm" - "powervr-sgx" - "pox" - "pp" - "pp-perl-par-packager" - "pp-python-parallel" - "ppapi" - "ppc" - "ppd" - "ppi" - "ppl" - "ppm" - "ppns" - "ppp" - "pppd" - "pppoe" - "pprint" - "pprof" - "pptp" - "praat" - "practical-common-lisp" - "prado" - "pragma" - "praw" - "prawn" - "prawnto" - "prc-tools" - "pre" - "pre-3d" - "pre-authentication" - "pre-build-event" - "pre-commit" - "pre-commit-hook" - "pre-compilation" - "pre-increment" - "pre-packaged" - "pre-signed-url" - "prebinding" - "prebuild" - "precedence" - "precision" - "precompile" - "precompile-assets" - "precompiled" - "precompiled-binaries" - "precompiled-headers" - "precompiled-templates" - "precompiled-views" - "precompiler" - "precompiling" - "precompute" - "preconditions" - "predef" - "predefined-macro" - "predefined-variables" - "predicate" - "predicatebuilder" - "predicates" - "predicatewithformat" - "predict" - "prediction" - "predis" - "preemption" - "preemptive" - "prefast" - "preference" - "preferenceactivity" - "preferencefragment" - "preferences" - "preferencescreen" - "preferredsize" - "prefetch" - "prefetch-related" - "prefix" - "prefix-operator" - "prefix-sum" - "prefix-tree" - "prefixes" - "preflight" - "preforking" - "prefuse" - "preg-grep" - "preg-match" - "preg-match-all" - "preg-quote" - "preg-replace" - "preg-replace-callback" - "preg-split" - "preinit" - "prelink" - "preload" - "preloader" - "preloading" - "preloadjs" - "prelude" - "prelude.ls" - "premailer" - "premake" - "premature-optimization" - "premultiplied-alpha" - "preon" - "preorder" - "prepare" - "prepared-statement" - "prepend" - "preprocessor" - "preprocessor-directive" - "preprocessor-meta-program" - "prepros" - "prequel" - "prerender" - "prerenderview" - "prerequesthandler" - "prerequisites" - "presentation" - "presentation-layer" - "presentation-model" - "presentationml" - "presenter" - "presenter-first" - "presentmodalviewcontrolle" - "presentviewcontroller" - "preserve" - "preset" - "pressed" - "pressflow" - "pressure" - "prestashop" - "prestashop-1.5" - "prestashop-1.6" - "presto" - "prestodb" - "prettify" - "pretty-print" - "pretty-urls" - "prettyfaces" - "prettyphoto" - "prettyplotlib" - "prettytable" - "prettytime" - "preun" - "prevayler" - "preventdefault" - "preverify" - "preview" - "preview-5" - "preview-handler" - "preview-pane" - "previous-installation" - "previouspagetype" - "prezi" - "prezto" - "priam" - "primality-test" - "primary-constructor" - "primary-interop-assembly" - "primary-key" - "primary-key-design" - "primavera" - "prime-factoring" - "prime-ui" - "prime31" - "primefaces" - "primefaces-extensions" - "primefaces-gmap" - "primefaces-mobile" - "primepush" - "primer3" - "primes" - "primesense" - "primitive" - "primitive-types" - "prims-algorithm" - "primus" - "prince2" - "princely" - "princexml" - "principal" - "principal-components" - "principalcontext" - "principalpermission" - "principalsearcher" - "principles" - "princomp" - "print-css" - "print-module" - "print-preview" - "print-spooler-api" - "print-style" - "print-webpage" - "printdialog" - "printdocument" - "printer-control-language" - "printer-properties" - "printers" - "printf" - "printf-debugging" - "printform" - "printing" - "printing-web-page" - "printk" - "println" - "printqueue" - "printqueuewatch" - "printscreen" - "printstacktrace" - "printstream" - "printthis" - "printwriter" - "priority" - "priority-inversion" - "priority-queue" - "prism" - "prism-2" - "prism-4" - "prism-5" - "prism.js" - "prismatic-schema" - "privacy" - "private" - "private-class" - "private-constructor" - "private-functions" - "private-header" - "private-inheritance" - "private-members" - "private-messaging" - "private-methods" - "private-network" - "private-pub" - "privatefontcollection" - "privatekey" - "privateobject.invoke" - "privilege" - "privilege-elevation" - "privileged-functions" - "privileges" - "prng" - "pro-power-tools" - "proactive" - "probability" - "probability-density" - "probability-theory" - "probe" - "probing" - "problem-steps-recorder" - "proc" - "proc-format" - "proc-object" - "proc-open" - "proc-report" - "proc-sql" - "procdump" - "procedural" - "procedural-generation" - "procedural-music" - "procedural-programming" - "procedure" - "procedures" - "process" - "process-accounting" - "process-control" - "process-dictionary" - "process-elevation" - "process-exit" - "process-explorer" - "process-group" - "process-management" - "process-migration" - "process-monitor" - "process-monitoring" - "process-substitution" - "process-template" - "process.start" - "processbuilder" - "processes" - "processid" - "processing" - "processing-efficiency" - "processing-ide" - "processing-instruction" - "processing.js" - "processing.org" - "processlist" - "processmaker" - "processmodel" - "processor" - "processor-architecture" - "processors" - "processstartinfo" - "procfile" - "procfs" - "proclarity" - "procmail" - "procmon" - "procobol" - "procps" - "procrun" - "prodinner" - "producer" - "producer-consumer" - "product" - "product-development" - "product-key" - "product-management" - "productbuild" - "production" - "production-code" - "production-environment" - "production-support" - "productivity" - "productivity-power-tools" - "productivity-tools" - "products" - "profanity" - "proficy" - "profile" - "profile-provider" - "profilecommon" - "profiler" - "profiles" - "profiling" - "proftpd" - "proget" - "progid" - "progmem" - "progol" - "program-counter" - "program-files" - "program-flow" - "program-slicing" - "program-structure" - "program-transformation" - "programdata" - "programmable-completion" - "programmatically-created" - "programmers-notepad" - "programming-competitions" - "programming-contest" - "programming-languages" - "programming-paradigms" - "programming-pearls" - "programming-tools" - "progress" - "progress-4gl" - "progress-bar" - "progress-database" - "progress-db" - "progress-indicator" - "progress-reports" - "progressdialog" - "progressive" - "progressive-download" - "progressive-enhancement" - "progressmonitor" - "proguard" - "proj" - "proj4" - "proj4js" - "project" - "project-avatar" - "project-conversion" - "project-design" - "project-documentation" - "project-estimation" - "project-euler" - "project-explorer" - "project-files" - "project-folder" - "project-hosting" - "project-layout" - "project-lifecycle" - "project-management" - "project-navigator" - "project-open" - "project-organization" - "project-planning" - "project-properties" - "project-reactor" - "project-reference" - "project-server" - "project-server-2007" - "project-settings" - "project-setup" - "project-siena" - "project-structure" - "project-structuring" - "project-template" - "project-types" - "project-web-access" - "project-wonder" - "projectgen" - "projectile" - "projection" - "projection-matrix" - "projection-plane" - "projectitem" - "projective-geometry" - "projectlocker" - "projector" - "projectpier" - "projects" - "projects-and-solutions" - "projectwise" - "projekktor" - "projex-orb" - "prolog" - "prolog-assert" - "prolog-cut" - "prolog-dif" - "prolog-setof" - "prolog-toplevel" - "promela" - "promise" - "promisekit" - "promoted-builds" - "promoting" - "promotion-code" - "promotions" - "prompt" - "pronunciation" - "proof" - "proof-general" - "proof-of-correctness" - "proof-system" - "proofs" - "prop" - "propagation" - "propel" - "propeller-tool" - "properties" - "properties-file" - "properties.settings" - "property-attribute" - "property-based-testing" - "property-binding" - "property-editor" - "property-graph" - "property-injection" - "property-list" - "propertybag" - "propertychanged" - "propertychangelistener" - "propertychangesupport" - "propertyconfigurator" - "propertydescriptor" - "propertyeditor" - "propertygrid" - "propertyinfo" - "propertysheet" - "proprietary" - "proprietary-software" - "prose" - "protect" - "protect-from-forgery" - "protected" - "protected-folders" - "protected-mode" - "protected-resource" - "protection" - "protector" - "protege" - "protege4" - "protein-database" - "proto" - "protobuf-csharp-port" - "protobuf-net" - "protocol-buffers" - "protocol-handler" - "protocol-relative" - "protocolexception" - "protocols" - "protofield" - "protogen" - "protorpc" - "protostuff" - "prototip" - "prototypal" - "prototypal-inheritance" - "prototype" - "prototype-chain" - "prototype-chosen" - "prototype-oriented" - "prototype-programming" - "prototype-scope" - "prototypejs" - "prototyping" - "protouser" - "protovis" - "protractor" - "protx" - "provider" - "provider-independent" - "provider-model" - "providers" - "providertestcase2" - "provisioned-iops" - "provisioning" - "provisioning-profile" - "proxies" - "proxima-nova" - "proximity" - "proximitysensor" - "proximo" - "proxmox" - "proxool" - "proxy" - "proxy-authentication" - "proxy-caching" - "proxy-classes" - "proxy-icon" - "proxy-object" - "proxy-pattern" - "proxy-server" - "proxy-servers" - "proxy.pac" - "proxyfactory" - "proxylocal" - "proxypass" - "proxyquire" - "proxyselector" - "proxytunnel" - "prudentia" - "pruning" - "pry" - "pry-rails" - "pryr" - "ps" - "ps1" - "ps2" - "ps3" - "psake" - "pscmdlet" - "pscollectionview" - "pscp" - "pscustomobject" - "pscx" - "psd" - "pseries" - "pseudo-class" - "pseudo-destructor" - "pseudo-element" - "pseudo-globals" - "pseudo-streaming" - "pseudocode" - "pseudolocalization" - "psexec" - "psgi" - "pshost" - "psi" - "psmtabbarcontrol" - "pso" - "psobject" - "psoc" - "pspdfkit" - "pspell" - "pspice" - "pspsdk" - "psql" - "psqlodbc" - "psr-0" - "psr-1" - "psr-2" - "psr-3" - "psr-4" - "psse" - "pssnapin" - "pst" - "pstack" - "pstats" - "pstcollectionview" - "pstree" - "pstricks" - "psunit" - "psutil" - "psych" - "psychoacoustics" - "psychology" - "psychopy" - "psychparser" - "psychtoolbox" - "psyco" - "psycopg" - "psycopg2" - "pt" - "pt-query-digest" - "ptah" - "ptc-windchill" - "pthread-exit" - "pthread-join" - "pthread-key-create" - "pthreads" - "pthreads-win32" - "ptokax" - "ptr" - "ptr-vector" - "ptrace" - "ptrdiff-t" - "ptree" - "pts" - "pttimeselect" - "ptvs" - "ptx" - "ptxas" - "pty" - "pubchem" - "pubdate" - "public" - "public-activity" - "public-fields" - "public-folders" - "public-html" - "public-key" - "public-key-encryption" - "public-key-exchange" - "public-members" - "public-method" - "public-speaking" - "publicdomain" - "publickeytoken" - "publify" - "publish" - "publish-actions" - "publish-profiles" - "publish-subscribe" - "publisher" - "publisher-policy" - "publishing" - "publishing-site" - "pubmed" - "pubnub" - "pubs" - "pubsubhubbub" - "pubxml" - "pudb" - "pugixml" - "pugs" - "pugxmultiuserbundle" - "puid" - "pull" - "pull-queue" - "pull-request" - "pull-to-refresh" - "pulp" - "pulpcore" - "pulsar" - "pulse" - "pulseaudio" - "puma" - "pumping-lemma" - "punbb" - "punctuation" - "pundit" - "punjab" - "punycode" - "puphpet" - "puppet" - "puppet-enterprise" - "puppetlabs-apache" - "puppetlabs-mysql" - "purchase-order" - "pure-function" - "pure-js" - "pure-layout" - "pure-managed" - "pure-virtual" - "puredata" - "pureftpd" - "purely-functional" - "puremvc" - "purepdf" - "purescript" - "purge" - "purify" - "push" - "push-back" - "push-linq" - "push-notification" - "push-queue" - "push-relabel" - "push.js" - "pushapps" - "pushbackinputstream" - "pushbots" - "pushbullet" - "pushdown-automaton" - "pusher" - "pushmobi" - "pushover" - "pushpin" - "pushsharp" - "pushstate" - "pushstream" - "pushstreamcontent" - "pushviewcontroller" - "pushwhoosh" - "pushwoosh" - "put" - "putchar" - "putimagedata" - "puts" - "putty" - "puttycyg" - "puzzle" - "pv3d" - "pvclust" - "pvcs" - "pvm" - "pvpython" - "pvrtc" - "pvs-studio" - "pwd" - "pwm" - "pwnat" - "pxe" - "pxsourcelist" - "py++" - "py-amqplib" - "py-appscript" - "py-postgresql" - "py.test" - "py2app" - "py2exe" - "py2neo" - "py2to3" - "py4j" - "pyalgotrade" - "pyamf" - "pyapns" - "pyaudio" - "pybel" - "pybindgen" - "pybinding" - "pybrain" - "pybuffer" - "pybugz" - "pybuilder" - "pyc" - "pycairo" - "pycallgraph" - "pycard" - "pycassa" - "pyccuracy" - "pycharm" - "pychart" - "pychecker" - "pychef" - "pycparser" - "pycrypto" - "pycuda" - "pycurl" - "pycxsimulator" - "pycxx" - "pyd" - "pydatalog" - "pydbg" - "pydev" - "pydoc" - "pydot" - "pydrive" - "pydub" - "pyelasticsearch" - "pyelftools" - "pyenchant" - "pyephem" - "pyes" - "pyevolve" - "pyexcelerator" - "pyexiv2" - "pyface" - "pyfacebook" - "pyffmpeg" - "pyfftw" - "pyfits" - "pyflakes" - "pygal" - "pygame" - "pygame-surface" - "pygi-aio" - "pygit2" - "pyglet" - "pygmaps" - "pygmentize" - "pygments" - "pygn" - "pygobject" - "pygooglechart" - "pygraph" - "pygraphics" - "pygraphviz" - "pygresql" - "pygsl" - "pygst" - "pygtk" - "pygui" - "pyhdf" - "pyhoca-cli" - "pyhook" - "pyicu" - "pyinotify" - "pyinsane" - "pyinstaller" - "pyinvoke" - "pyisapie" - "pyjade" - "pyjamas" - "pyjnius" - "pykde" - "pyke" - "pykka" - "pylab" - "pylearn" - "pylint" - "pylons" - "pylot" - "pylucene" - "pym.js" - "pymacs" - "pymc" - "pymc3" - "pyme" - "pymel" - "pyminuit" - "pyml" - "pymock" - "pymol" - "pymongo" - "pymox" - "pymssql" - "pymtp" - "pymunk" - "pymysql" - "pynotify" - "pynsist" - "pynsq" - "pyobjc" - "pyobject" - "pyodbc" - "pyode" - "pyopencl" - "pyopengl" - "pyopenssl" - "pyp" - "pyparsing" - "pypdf" - "pypi" - "pyplot" - "pypm" - "pypng" - "pyportmidi" - "pyprocessing" - "pypy" - "pypyodbc" - "pyq" - "pyqt" - "pyqt4" - "pyqt5" - "pyqtgraph" - "pyquery" - "pyral" - "pyramid" - "pyramid-debug-toolbar" - "pyrax" - "pyreport" - "pyrex" - "pyro" - "pyrocms" - "pyrocms-lex" - "pyroot" - "pyrserve" - "pyrus" - "pys60" - "pysandbox" - "pysb" - "pyscard" - "pyscripter" - "pysdl2" - "pyserial" - "pysftp" - "pyside" - "pysimplesoap" - "pysnmp" - "pysolr" - "pysphere" - "pyspider" - "pysqlite" - "pystache" - "pysvg" - "pysvn" - "pytables" - "pytch-sdk" - "pytesser" - "pythagorean" - "pythomnic3k" - "python" - "python-2.1" - "python-2.2" - "python-2.3" - "python-2.4" - "python-2.5" - "python-2.6" - "python-2.7" - "python-2.x" - "python-3.1" - "python-3.2" - "python-3.3" - "python-3.4" - "python-3.5" - "python-3.x" - "python-asyncio" - "python-behave" - "python-bindings" - "python-blessings" - "python-c-api" - "python-c-extension" - "python-cffi" - "python-click" - "python-cmd" - "python-collections" - "python-config" - "python-curses" - "python-daemon" - "python-datamodel" - "python-datetime" - "python-dateutil" - "python-db-api" - "python-decorators" - "python-del" - "python-docx" - "python-dragonfly" - "python-egg-cache" - "python-elixir" - "python-embedding" - "python-eval" - "python-exec" - "python-extensions" - "python-fu" - "python-gearman" - "python-ggplot" - "python-gstreamer" - "python-huey" - "python-idle" - "python-imaging-library" - "python-import" - "python-importlib" - "python-install" - "python-interactive" - "python-internals" - "python-iptables" - "python-iris" - "python-jedi" - "python-jira" - "python-keyring" - "python-ldap" - "python-logging" - "python-magic" - "python-memcached" - "python-mock" - "python-mode" - "python-module" - "python-multiprocessing" - "python-multithreading" - "python-nonlocal" - "python-nose" - "python-openid" - "python-parsley" - "python-paste" - "python-pika" - "python-pulsar" - "python-redmine" - "python-requests" - "python-routes" - "python-rq" - "python-server-pages" - "python-shell" - "python-sip" - "python-social-auth" - "python-sockets" - "python-sphinx" - "python-stackless" - "python-subprocess-module" - "python-tesseract" - "python-textprocessing" - "python-twitter" - "python-unicode" - "python-unittest" - "python-venv" - "python-visual" - "python-watchdog" - "python-webbrowser" - "python-wheel" - "python.el" - "python.net" - "python4delphi" - "pythonanywhere" - "pythonbrew" - "pythoncard" - "pythonce" - "pythoncom" - "pythonmagick" - "pythonpath" - "pythonw" - "pythonxy" - "pytorctl" - "pytrilinos" - "pytz" - "pyudev" - "pyuic" - "pyunit" - "pyuno" - "pyusb" - "pyv8" - "pyvirtualdisplay" - "pyvmomi" - "pywhois" - "pywikipedia" - "pywin" - "pywin32" - "pywinauto" - "pywinusb" - "pywt" - "pyxb" - "pyxll" - "pyxml" - "pyxmpp2" - "pyxpcom" - "pyxplot" - "pyyaml" - "pyzmq" - "q" - "q-lang" - "q-learning" - "q-query" - "q-value" - "qa" - "qabstractbutton" - "qabstractitemmodel" - "qabstractitemview" - "qabstractlistmodel" - "qabstractslider" - "qabstractsocket" - "qabstracttablemodel" - "qac" - "qaction" - "qapplication" - "qaxobject" - "qaxwidget" - "qbasic" - "qbfc" - "qboe" - "qbs" - "qbwc" - "qbxml" - "qbytearray" - "qc" - "qcar" - "qcar-sdk" - "qcc" - "qchar" - "qcheckbox" - "qcodo" - "qcolor" - "qcolordialog" - "qcombobox" - "qcommandlineparser" - "qcompleter" - "qcoreapplication" - "qcplayground" - "qcubed" - "qcursor" - "qcustomplot" - "qdap" - "qdapregex" - "qdatastream" - "qdate" - "qdatetime" - "qdbus" - "qdbusxml2cpp" - "qdebug" - "qdesktopservices" - "qdialog" - "qdir" - "qdjango" - "qdockwidget" - "qdomdocument" - "qdox" - "qelapsedtimer" - "qemu" - "qevent" - "qeventloop" - "qexception" - "qextserialport" - "qf-test" - "qfe" - "qfile" - "qfiledialog" - "qfileinfo" - "qfilesystemmodel" - "qfilesystemwatcher" - "qframe" - "qfs" - "qftp" - "qgis" - "qglviewer" - "qglwidget" - "qgraphicsitem" - "qgraphicsscene" - "qgraphicstextitem" - "qgraphicsview" - "qgraphicswidget" - "qgridlayout" - "qgroundcontrol" - "qgroupbox" - "qhash" - "qheaderview" - "qhostinfo" - "qhull" - "qi" - "qi4j" - "qicon" - "qif" - "qiime" - "qimage" - "qiodevice" - "qitemdelegate" - "qizmt" - "qjsengine" - "qjson" - "qjsonobject" - "qjsonvalue" - "qkeyevent" - "qkeysequence" - "qlabel" - "qlayout" - "qlibrary" - "qliksense" - "qlikview" - "qlikview.next" - "qlineedit" - "qlinkedlist" - "qlist" - "qlistview" - "qlistwidget" - "qlistwidgetitem" - "qlocale" - "qlocalserver" - "qlocalsocket" - "qlogin" - "qlpreviewcontroller" - "qmail" - "qmainwindow" - "qmake" - "qmap" - "qmdiarea" - "qmediaplayer" - "qmenu" - "qmenubar" - "qmessagebox" - "qmetaobject" - "qmetatype" - "qml" - "qmllint" - "qmodelindex" - "qmouseevent" - "qmultimap" - "qmutex" - "qnames" - "qnap" - "qnetworkaccessmanager" - "qnetworkreply" - "qnetworkrequest" - "qnx" - "qnx-ifs" - "qnx-neutrino" - "qobject" - "qooxdoo" - "qoq" - "qos" - "qpainter" - "qpid" - "qpixmap" - "qplaintextedit" - "qpolygon" - "qprinter" - "qprocess" - "qprogressbar" - "qproperty" - "qpropertyanimation" - "qpushbutton" - "qpython" - "qpython3" - "qqmlcomponent" - "qquickitem" - "qquickview" - "qquickwidget" - "qqwing" - "qr-code" - "qr-decomposition" - "qr-operator" - "qradiobutton" - "qreadwritelock" - "qrect" - "qregexp" - "qregularexpression" - "qresource" - "qsa" - "qscintilla" - "qscopedpointer" - "qscript" - "qscrollarea" - "qset" - "qsettings" - "qshareddata" - "qsharedmemory" - "qsharedpointer" - "qsignalspy" - "qsizepolicy" - "qslider" - "qsort" - "qsortfilterproxymodel" - "qspinbox" - "qsplashscreen" - "qsplitter" - "qsqldatabase" - "qsqlquery" - "qsqltablemodel" - "qss" - "qsslsocket" - "qstackedwidget" - "qstandarditem" - "qstandarditemmodel" - "qstandardpaths" - "qstatemachine" - "qstatusbar" - "qstring" - "qstyle" - "qstyleditemdelegate" - "qstylesheet" - "qsub" - "qsys" - "qt" - "qt-contextmenu" - "qt-creator" - "qt-designer" - "qt-events" - "qt-faststart" - "qt-installer" - "qt-jambi" - "qt-layout" - "qt-maemo" - "qt-mfc-migration" - "qt-mobility" - "qt-msvc-addin" - "qt-necessitas" - "qt-quick" - "qt-resource" - "qt-signals" - "qt-stylesheet" - "qt-vs-addin" - "qt3" - "qt3d" - "qt4" - "qt4.6" - "qt4.7" - "qt4.8" - "qt4dotnet" - "qt5" - "qt5.1" - "qt5.2" - "qt5.3" - "qt5.4" - "qtabbar" - "qtableview" - "qtablewidget" - "qtablewidgetitem" - "qtabwidget" - "qtandroidextras" - "qtbluetooth" - "qtchart" - "qtconcurrent" - "qtconsole" - "qtcore" - "qtcpserver" - "qtcpsocket" - "qtdbus" - "qtdeclarative" - "qtembedded" - "qtestlib" - "qtextbrowser" - "qtextcursor" - "qtextdocument" - "qtextedit" - "qtextstream" - "qtftp" - "qtgstreamer" - "qtgui" - "qthread" - "qthttp" - "qtime" - "qtimer" - "qtip" - "qtip2" - "qtkit" - "qtmacextras" - "qtmath" - "qtmultimedia" - "qtnetwork" - "qtonpi" - "qtoolbar" - "qtopengl" - "qtp" - "qtplugin" - "qtquick-designer" - "qtquick2" - "qtquick3d" - "qtquickcontrols" - "qtranslate" - "qtreeview" - "qtreewidget" - "qtreewidgetitem" - "qtruby" - "qtscript" - "qtserial" - "qtserialport" - "qtspim" - "qtsql" - "qtsvg" - "qtsystems" - "qttest" - "qtthread" - "qtwayland" - "qtwebengine" - "qtwebkit" - "qtwebsockets" - "qtwidgets" - "qtwinextras" - "qtxml" - "quad" - "quadprog" - "quadratic" - "quadratic-curve" - "quadratic-probing" - "quadratic-programming" - "quadruple-precision" - "quadtree" - "quagga" - "quake" - "quake2" - "qualified" - "qualified-name" - "qualifiers" - "quality-center" - "quality-metrics" - "qualtrics" - "quantifiers" - "quantify" - "quantile" - "quantitative" - "quantitative-finance" - "quantization" - "quantlib" - "quantlib-swig" - "quantmod" - "quantstrat" - "quantum" - "quantum-computing" - "quantumgrid" - "quaqua" - "quartus" - "quartus-ii" - "quartz-2d" - "quartz-composer" - "quartz-core" - "quartz-graphics" - "quartz-scheduler" - "quartz.net" - "quartz.net-2.0" - "quasar" - "quaternion" - "quaternions" - "quazip" - "qubole" - "qudpsocket" - "quercus" - "querulous" - "query-analyzer" - "query-builder" - "query-by-example" - "query-cache" - "query-designer" - "query-engine" - "query-execution-plans" - "query-expressions" - "query-extender" - "query-help" - "query-hints" - "query-notifications" - "query-optimization" - "query-parameters" - "query-parser" - "query-performance" - "query-plans" - "query-string" - "query-timeout" - "query-tuning" - "query-variables" - "queryanalyzer" - "querydsl" - "querying" - "queryinterceptor" - "queryinterface" - "queryover" - "querypath" - "queryperformancecounter" - "queryselectall" - "queryselectorall" - "queryset" - "querystringparameter" - "quest" - "question-answering" - "question2answer" - "questionmark" - "queue" - "queue-classic" - "queue-table" - "queue.js" - "queued-connection" - "queueing" - "queueinglib" - "queueuserworkitem" - "queuing" - "quick-junit" - "quick-search" - "quick-union" - "quick-watch" - "quickaction" - "quickapps-cms" - "quickbase" - "quickbasic" - "quickblox" - "quickbooks" - "quickbooks-online" - "quickbuild" - "quickcheck" - "quickcontact" - "quickcontactbadge" - "quickdialog" - "quickdraw" - "quicken" - "quickfix" - "quickfixj" - "quickform" - "quickgraph" - "quickinfo" - "quicklaunch" - "quicklisp" - "quicklook" - "quickoffice" - "quickreports" - "quicksand" - "quickselect" - "quicksilver" - "quicksort" - "quickstart" - "quicktime" - "quicktype" - "quicktypebar" - "quil" - "quill" - "quilt" - "quiltview" - "quine" - "quirks-mode" - "quit" - "quiz-engine" - "qunit" - "qunit-bdd" - "quojs" - "quora" - "quota" - "quotas" - "quotation-marks" - "quotations" - "quote" - "quoted-identifier" - "quoted-printable" - "quotemeta" - "quotes" - "quoting" - "quova" - "quovolver" - "qurl" - "qvalidator" - "qvariant" - "qvboxlayout" - "qvector" - "qvector3d" - "qvt" - "qvtkwidget" - "qweb" - "qwebelement" - "qwebkit" - "qwebpage" - "qwebview" - "qwerty" - "qwidget" - "qwt" - "qwtpolar" - "qx" - "qx11embedcontainer" - "qxmlstreamreader" - "qxmpp" - "qxorm" - "qxt" - "qyoto" - "r" - "r-ape" - "r-commander" - "r-corrplot" - "r-doredis" - "r-extension" - "r-factor" - "r-faq" - "r-foreach" - "r-forge" - "r-lavaan" - "r-mice" - "r-neo4j" - "r-osgi" - "r-qgraph" - "r-raster" - "r-s3" - "r-s4" - "r-table" - "r-timedate" - "r-tree" - "r-within" - "r.java-file" - "r.js" - "r.net" - "r2html" - "r2jags" - "r2winbugs" - "r3-gui" - "r5rs" - "r6" - "r6025" - "r6rs" - "r7rs" - "rabbitmq" - "rabbitmq-exchange" - "rabbitmq-shovel" - "rabbitmqadmin" - "rabbitmqctl" - "rabbitpy" - "rabbitvcs" - "rabin" - "rabin-karp" - "rabl" - "raccommand" - "race-condition" - "racerjs" - "racf" - "racing" - "rack" - "rack-cache" - "rack-middleware" - "rack-mini-profiler" - "rack-pow" - "rack-proxy" - "rack-rewrite" - "rack-test" - "rackattack" - "racket" - "rackspace" - "rackspace-cloud" - "rackspace-cloudfiles" - "rackup" - "racsignal" - "ractivejs" - "rad" - "rad-controls" - "rad-studio" - "radajaxloadingpanel" - "radajaxmanager" - "radar-chart" - "radbuilder" - "radchart" - "radcombobox" - "raddatapager" - "raddatepicker" - "raddiagram" - "raddocking" - "raddropdownbutton" - "radeditor" - "radfileexplorer" - "radgrid" - "radgridview" - "radhtmlchart" - "radial" - "radial-gradients" - "radialgradientbrush" - "radiance" - "radians" - "radiant" - "radicale" - "radio" - "radio-button" - "radio-group" - "radiobuttonfor" - "radiobuttonlist" - "radioelement" - "radius" - "radius-protocol" - "radix" - "radix-point" - "radix-sort" - "radix-tree" - "radlistbox" - "radlistview" - "radmaskedtextbox" - "radmenu" - "radosgw" - "radpanelbar" - "radpdf" - "radphp" - "radrails" - "radrotator" - "radscheduler" - "radscheduleview" - "radtextbox" - "radtreelist" - "radtreeview" - "radupload" - "radwindow" - "rafaeljs" - "raft" - "ragdoll" - "ragel" - "ragged" - "raid" - "raii" - "railo" - "railroad-diagram" - "rails-12factor" - "rails-3-upgrade" - "rails-3.0.10" - "rails-3.1" - "rails-activejob" - "rails-activerecord" - "rails-admin" - "rails-agnostic" - "rails-api" - "rails-authorization" - "rails-bullet" - "rails-cells" - "rails-composer" - "rails-console" - "rails-engines" - "rails-flash" - "rails-for-zombies" - "rails-generate" - "rails-generators" - "rails-geocoder" - "rails-i18n" - "rails-migrations" - "rails-models" - "rails-postgresql" - "rails-roar" - "rails-routing" - "rails-spring" - "rails-ssl-requirement" - "rails.vim" - "railsapps" - "railscasts" - "railsinstaller" - "railsinstaller-windows" - "railsmini-profiler" - "railstutorial.org" - "railtie" - "railway.js" - "raima" - "rainbow-js" - "rainbowattack" - "rainbows" - "rainbowtable" - "rainmeter" - "raise" - "raiseerror" - "raiseevent" - "raiserror" - "rajawali" - "rake" - "rake-pipeline" - "rake-task" - "rake-test" - "rakefile" - "raknet" - "rakudo" - "rakudo-star" - "rally" - "ram" - "ram-scraping" - "ramaze" - "ramda.js" - "ramdirectory" - "ramdisk" - "ramdrive" - "raml" - "rampart" - "ranch" - "random" - "random-access" - "random-effects" - "random-forest" - "random-sample" - "random-seed" - "random-testing" - "random-walk" - "randomaccessfile" - "randori" - "range" - "range-checking" - "range-encoding" - "range-map" - "range-notation" - "range-query" - "range-tree" - "range-types" - "ranged-loops" - "ranges" - "rangeset" - "rangeslider" - "rangevalidator" - "rangy" - "rank" - "ranking" - "ranking-functions" - "ranorex" - "ransac" - "ransack" - "rapache" - "rapaste" - "raphael" - "rapi" - "rapid-prototyping" - "rapidfire-gem" - "rapidjson" - "rapidminer" - "rapidshare" - "rapidsql" - "rapidsvn" - "rapidxml" - "rapier-loom" - "rapture.io" - "rar" - "ras" - "rascal" - "rasman" - "raspberry-pi" - "raspbian" - "raster" - "raster-graphics" - "rasterize" - "rasterizer-state" - "rasterizing" - "ratchet" - "ratchet-2" - "ratchet-bootstrap" - "rate" - "rate-limiting" - "rategate" - "ratelimit" - "rates" - "rating" - "rating-system" - "ratingbar" - "ratio" - "rational" - "rational-numbers" - "rational-performance-test" - "rational-purify" - "rational-rose" - "rational-rsa" - "rational-team-concert" - "rational-test-workbench" - "rational-unified-process" - "rationale" - "ratpack" - "rattle" - "raty" - "raudus" - "rauth" - "rautomation" - "rave-reports" - "ravello" - "raven" - "raven-php" - "ravendb" - "ravendb-http" - "ravendb-studio" - "ravenfs" - "ravenhq" - "raw-data" - "raw-disk" - "raw-ethernet" - "raw-input" - "raw-pointer" - "raw-post" - "raw-sockets" - "raw-types" - "rawbytestring" - "rawcontactid" - "rawcontacts" - "rawsql" - "rawstring" - "rawurl" - "ray" - "ray-picking" - "raycasting" - "raygun" - "raygun.io" - "raymarching" - "raytracing" - "razor" - "razor-2" - "razor-3" - "razor-declarative-helpers" - "razor-grid" - "razor-mediator" - "razorengine" - "razorgenerator" - "razorpdf" - "razorsql" - "rb-appscript" - "rbac" - "rbar" - "rbenv" - "rbenv-gemset" - "rbga" - "rbind" - "rbindlist" - "rbm" - "rbp" - "rbvmomi" - "rc" - "rc-shell" - "rc.exe" - "rc2-cipher" - "rc4-cipher" - "rcaller" - "rcc" - "rcf" - "rcharts" - "rclr" - "rcov" - "rcp" - "rcpp" - "rcpp11" - "rcrawl" - "rcs" - "rcu" - "rcurl" - "rcw" - "rd" - "rda" - "rdata" - "rdb" - "rdbms" - "rdbms-agnostic" - "rdcl" - "rdcomclient" - "rdd" - "rdebug" - "rdf" - "rdfa" - "rdflib" - "rdfs" - "rdfstore" - "rdiff-backup" - "rdio" - "rdiscount" - "rdkit" - "rdl" - "rdlc" - "rdlx" - "rdma" - "rdms" - "rdo" - "rdoc" - "rdotnet" - "rdp" - "rdrand" - "rds" - "rdtsc" - "re-engineering" - "re2" - "re2c" - "reachability" - "react" - "react-async" - "react-bootstrap" - "react-jsx" - "react-os" - "react-rails" - "react-router" - "reactive-banana" - "reactive-cocoa" - "reactive-extensions-js" - "reactive-programming" - "reactive-streams" - "reactivemongo" - "reactiveui" - "reactivevalidatedobject" - "reactjs" - "reactjs-flux" - "reactjs-testutils" - "reactor" - "read-committed" - "read-committed-snapshot" - "read-data" - "read-eval-print-loop" - "read-the-docs" - "read-uncommitted" - "read-unread" - "read-write" - "read.table" - "readability" - "readable" - "readblock" - "readdir" - "readdirectorychangesw" - "readelf" - "reader-macro" - "reader-monad" - "readerquotas" - "readerwriterlock" - "readerwriterlockslim" - "readeventlog" - "readfile" - "readkey" - "readline" - "readlines" - "readlink" - "readme" - "readonly" - "readonlyattribute" - "readonlycollection" - "readprocessmemory" - "readwritelock" - "readxml" - "ready" - "readystate" - "reagent" - "real-datatype" - "real-mode" - "real-time" - "real-time-clock" - "real-time-data" - "real-time-java" - "real-time-strategy" - "real-time-systems" - "real-time-text" - "real-time-updates" - "real-world-haskell" - "realbasic" - "realex-payments-api" - "realloc" - "realm" - "realm.io" - "realpath" - "realplayer" - "realproxy" - "realstudio" - "realthinclient" - "realtime-api" - "realurl" - "realview" - "reaper" - "reasoning" - "rebar" - "rebase" - "rebasing" - "rebol" - "rebol2" - "rebol3" - "reboot" - "rebuild" - "rebus" - "recall" - "recaptcha" - "recarray" - "receipt" - "receipt-validation" - "receiptkit" - "receive" - "receive-location" - "receiver" - "receiving" - "recent-documents" - "recent-file-list" - "recent-screens" - "recess" - "recipe" - "recode" - "recognizer-intent" - "recoll" - "recommendation" - "recommendation-engine" - "recompile" - "reconnect" - "record" - "record-count" - "record-locking" - "recorder" - "recorder.js" - "recording" - "recordmydesktop" - "recordreader" - "records" - "recordset" - "recordstore" - "recover" - "recovery" - "recoverymodel" - "recreate" - "rect" - "rectanglef" - "rectangles" - "rectangular-arrays" - "recurly" - "recurrence" - "recurrence-relation" - "recurring" - "recurring-billing" - "recurring-events" - "recursion" - "recursive-backtracking" - "recursive-call" - "recursive-cte" - "recursive-databinding" - "recursive-datastructures" - "recursive-descent" - "recursive-query" - "recursive-regex" - "recursiveiterator" - "recursivetask" - "recv" - "recvfrom" - "recycle" - "recycle-bin" - "recycler-adapter" - "recyclerview" - "recycling" - "red" - "red-black-tree" - "red-gate-ants" - "red-gate-data-compare" - "red-gate-sql-prompt" - "red-system" - "red5" - "red5-recorder" - "redaction" - "redactor" - "redactor.js" - "redbean" - "redbrick" - "redcar" - "redcarpet" - "redcase" - "redcloth" - "reddit" - "redditkit" - "reddot" - "redeclaration" - "redeclare" - "redefine" - "redefinition" - "redeploy" - "redgate" - "redgreen" - "redhat" - "redhawksdr" - "redigo" - "redips.drag" - "redirect" - "redirect-after-post" - "redirect-loop" - "redirecting" - "redirectmode" - "redirectstandardoutput" - "redirecttoaction" - "redirecttoroute" - "redirectwithcookies" - "redis" - "redis-cache" - "redis-cli" - "redis-objects" - "redis-py" - "redis-sentinel" - "redis-server" - "rediscala" - "rediska" - "redislabs" - "redismqserver" - "redistogo" - "redistributable" - "redistribution" - "redland" - "redmine" - "redmine-api" - "redmine-plugins" - "redmon" - "redo" - "redo-logs" - "redpitaya" - "redquerybuilder" - "redraw" - "redsmin" - "redstone.dart" - "reduce" - "reduce-reduce-conflict" - "reducers" - "reducing" - "reducisaurus" - "reduction" - "redundancy" - "redundant" - "redundant-code" - "reed-solomon" - "reek" - "reentrancy" - "reentrant" - "reentrantlock" - "reentrantreadwritelock" - "ref" - "ref-cursor" - "ref-parameters" - "ref-qualifier" - "refactoring" - "refactoring-databases" - "refactorpro" - "refcounting" - "refer" - "reference" - "reference-application" - "reference-binding" - "reference-class" - "reference-count" - "reference-counting" - "reference-implementation" - "reference-library" - "reference-loop" - "reference-manual" - "reference-parameters" - "reference-source" - "reference-type" - "reference-wrapper" - "referenced-dimension" - "referenceequals" - "referenceerror" - "referenceproperty" - "referential" - "referential-integrity" - "referential-transparency" - "referer" - "referrals" - "referrer" - "referrer-spam" - "refinery" - "refinerycms" - "refit" - "refix" - "reflectinsight" - "reflection" - "reflection.emit" - "reflectionpermission" - "reflector" - "reflexil" - "reflog" - "reflow" - "reform" - "reformat" - "reformatting" - "refresh" - "refresher" - "refs" - "refspec" - "reg-free" - "regasm" - "regedit" - "regex" - "regex-alternation" - "regex-greedy" - "regex-group" - "regex-lookarounds" - "regex-negation" - "regexbuddy" - "regexkit" - "regexkitlite" - "regexp-grammars" - "regexp-replace" - "regexp-substr" - "regfreecom" - "region" - "region-management" - "region-monitoring" - "regionadapter" - "regional" - "regional-indicator-symbol" - "regional-settings" - "regioninfo" - "regions" - "register-allocation" - "register-globals" - "register-keyword" - "registerclass" - "registerclientscriptblock" - "registerhelper" - "registerhotkey" - "registering" - "registerstartupscript" - "registrar" - "registration" - "registration-free-com" - "registry" - "registry-virtualization" - "registrykey" - "regression" - "regression-testing" - "regsvr32" - "regula" - "regular-language" - "regularized" - "rehosting" - "reification" - "reify" - "reindex" - "reinforcement-learning" - "reinstall" - "reintegration" - "reinterpret-cast" - "rel" - "relate" - "related-content" - "relation" - "relational" - "relational-algebra" - "relational-database" - "relational-division" - "relational-model" - "relationship" - "relationships" - "relative" - "relative-addressing" - "relative-date" - "relative-import" - "relative-path" - "relative-url" - "relativedelta" - "relativelayout" - "relativesource" - "relaunch" - "relaxed-atomics" - "relaxer" - "relaxng" - "relaxng-compact" - "relay" - "relaycommand" - "release" - "release-builds" - "release-cycle" - "release-management" - "release-mode" - "relevance" - "reliability" - "reliable-message-delivery" - "reliable-multicast" - "reliable-secure-profile" - "reliablesession" - "relic" - "reload" - "reloadable" - "reloaddata" - "reloading" - "relocation" - "relstorage" - "reltag" - "reltool" - "reluctant-quantifiers" - "relx" - "remap" - "remarks" - "remedy" - "remember-me" - "remenu" - "reminders" - "remobjects" - "remote" - "remote-access" - "remote-actors" - "remote-administration" - "remote-assistance" - "remote-backup" - "remote-blob-store" - "remote-branch" - "remote-client" - "remote-connection" - "remote-connections" - "remote-control" - "remote-debugging" - "remote-desktop" - "remote-execution" - "remote-file-inclusion" - "remote-forms" - "remote-host" - "remote-login" - "remote-management" - "remote-process" - "remote-registry" - "remote-server" - "remote-validation" - "remote-working" - "remoteapi" - "remoteapp" - "remotecommand" - "remoteexception" - "remoteio" - "remoteobject" - "remoteusermiddleware" - "remoteview" - "remotewebdriver" - "remoting" - "remotipart" - "removable" - "removable-drive" - "removable-storage" - "remove-if" - "remove-method" - "removeall" - "removechild" - "removeclass" - "removing-whitespace" - "rename" - "rename-item-cmdlet" - "renaming" - "render" - "render-html" - "render-to-response" - "render-to-string" - "render-to-texture" - "renderaction" - "rendercontrol" - "rendered-attribute" - "renderer" - "rendering" - "rendering-engine" - "renderman" - "rendermonkey" - "renderpartial" - "renderscript" - "rendertarget" - "rendertargetbitmap" - "rendertransform" - "rendr" - "renewal" - "renewcommand" - "renice" - "renjin" - "renren-sdk" - "reorder" - "reordering" - "reorderlist" - "reorganize" - "rep" - "repa" - "repaint" - "repaintmanager" - "repair" - "reparenting" - "reparsepoint" - "repast-hpc" - "repast-simphony" - "repeat" - "repeatbutton" - "repeater" - "repeating" - "repeatingalarm" - "repetition" - "replace" - "replaceall" - "replacewith" - "replay" - "replaygain" - "replicaset" - "replicate" - "replication" - "reply" - "repmgr" - "repo" - "repopulation" - "report" - "report-builder2.0" - "report-designer" - "report-viewer2010" - "report-viewer2012" - "reportbuilder" - "reportbuilder3.0" - "reportdocument" - "reportgenerator" - "reporting" - "reporting-services" - "reporting-services-2012" - "reporting-tools" - "reportingservices-2000" - "reportingservices-2005" - "reportingservices-2008" - "reportlab" - "reportmanager" - "reportng" - "reportparameter" - "reportserver" - "reportviewer" - "reportviewer2008" - "repositories" - "repository" - "repository-design" - "repository-pattern" - "repositorylookupedit" - "repost" - "reposurgeon" - "repoze.bfg" - "repoze.who" - "repr" - "representation" - "reproducible-research" - "reprojection-error" - "reputation-tracker" - "reql" - "request" - "request-cancelling" - "request-headers" - "request-object" - "request-pipeline" - "request-queueing" - "request-timed-out" - "request-uri" - "request-validation" - "request.form" - "request.querystring" - "request.servervariables" - "requestanimationframe" - "requestcontext" - "requestdispatcher" - "requestfactory" - "requestfiltering" - "requesthandler" - "requestify" - "requestreduce" - "requests-per-second" - "requestvalidationmode" - "require" - "require-handlebars" - "require-method" - "require-once" - "requirecss" - "required" - "required-field" - "requiredfieldvalidator" - "requirehttps" - "requirejs" - "requirejs-optimizer" - "requirejs-rails" - "requirejs-text" - "requirements" - "requirements-management" - "requirements.txt" - "requires" - "requiressl" - "rerender" - "reroute" - "resampling" - "rescale" - "rescue" - "research" - "resemblejs" - "reservation" - "reserved" - "reserved-words" - "reset" - "reset-button" - "reset-password" - "resetevent" - "resgen" - "reshape" - "reshape2" - "resharper" - "resharper-4.5" - "resharper-5.0" - "resharper-5.1" - "resharper-5.x" - "resharper-6.0" - "resharper-6.1" - "resharper-7.0" - "resharper-7.1" - "resharper-8.0" - "resharper-8.1" - "resharper-8.2" - "resharper-9.0" - "resharper-plugins" - "resharper-sdk" - "residemenu" - "resig" - "resignfirstresponder" - "resiliency" - "resin" - "resizable" - "resize" - "resize-crop" - "resize-image" - "resizegrip" - "resolution" - "resolution-independence" - "resolutions" - "resolve" - "resolveassemblyreference" - "resolveclienturl" - "resolver" - "resolveurl" - "resource-cleanup" - "resource-disposal" - "resource-dll" - "resource-editor" - "resource-file" - "resource-files" - "resource-governor" - "resource-id" - "resource-leak" - "resource-loading" - "resource-management" - "resource-monitor" - "resource-ref" - "resource-scheduling" - "resource-timing-api" - "resource-utilization" - "resourcebundle" - "resourcedictionary" - "resourcemanager" - "resourceproviderfactory" - "resourcereference" - "resources" - "resourcestring" - "respect-validation" - "respond-to" - "respond-with" - "respond.js" - "responder-chain" - "responders" - "respondstoselector" - "response" - "response-headers" - "response-time" - "response.addheader" - "response.contenttype" - "response.filter" - "response.redirect" - "response.transmitfile" - "response.write" - "responseformat" - "responsestream" - "responsetext" - "responsibility" - "responsive-design" - "responsive-slides" - "resque" - "resque-meta" - "resque-retry" - "resque-scheduler" - "resque-status" - "rest" - "rest-assured" - "rest-client" - "rest-core" - "rest-firebase" - "rest-security" - "rest-without-put" - "rest.li" - "restangular" - "restart" - "restartmanager" - "restclientbuilder" - "resteasy" - "restfb" - "restful-architecture" - "restful-authentication" - "restful-url" - "resthub" - "restify" - "restitution" - "restivejs" - "restkit" - "restkit-0.20" - "restler" - "restlet" - "restlet-2.0" - "restore" - "restore-points" - "restrict" - "restrict-qualifier" - "restricted-profiles" - "restriction" - "restrictions" - "restructuredtext" - "restsharp" - "resttemplate" - "restxq" - "resty" - "resty-gwt" - "result" - "result-object" - "result-of" - "result-partitioning" - "resultevent" - "resultset" - "resulttransformer" - "resulttype" - "resumablejs" - "resume" - "resume-download" - "resume-upload" - "resx" - "retain" - "retain-cycle" - "retaincount" - "retained-in-memory" - "rete" - "retention" - "rethinkdb" - "rethinkdb-python" - "rethinkdb-ruby" - "rethrow" - "retina" - "retina-display" - "retina.js" - "retire" - "retlang" - "retransmit-timeout" - "retro-computing" - "retrofit" - "retrospectiva" - "retrospectives" - "retrotranslator" - "retrypolicy" - "rets" - "return" - "return-by-reference" - "return-by-value" - "return-code" - "return-path" - "return-statement" - "return-type" - "return-type-deduction" - "return-url" - "return-value" - "return-value-optimization" - "returnurl" - "reusability" - "reuseidentifier" - "reuters" - "reveal-effect" - "reveal.js" - "revealing-module-pattern" - "revealing-prototype" - "revel" - "revenue" - "revenue-sharing" - "reverse" - "reverse-ajax" - "reverse-debugging" - "reverse-dns" - "reverse-engineering" - "reverse-geocoding" - "reverse-iterator" - "reverse-lookup" - "reverse-polish-notation" - "reverse-proxy" - "reverseprojection" - "reversi" - "reversing" - "reversion" - "revert" - "reverting" - "review" - "review-board" - "reviews" - "revision" - "revision-graph" - "revision-history" - "revisionable" - "revisions" - "revit" - "revit-api" - "revitpythonshell" - "reviver-function" - "revmob" - "revmobads" - "revokeobjecturl" - "revolute-joints" - "revolution-r" - "revolution-slider" - "reward" - "reward-system" - "rewind" - "rewrite" - "rewritebase" - "rewritemap" - "rewritepath" - "rewriting" - "rex" - "rexcel" - "rexec" - "rexml" - "rexster" - "rexx" - "rfb-protocol" - "rfc" - "rfc-4226" - "rfc1035" - "rfc1123" - "rfc2231" - "rfc2368" - "rfc2396" - "rfc2445" - "rfc2616" - "rfc2822" - "rfc2898" - "rfc3161" - "rfc3339" - "rfc3986" - "rfc4122" - "rfc4180" - "rfc4627" - "rfc5322" - "rfc5545" - "rfc5766turnserver" - "rfc6265" - "rfc6455" - "rfc6749" - "rfc6902" - "rfc822" - "rfcomm" - "rfduino" - "rfe" - "rfid" - "rft" - "rgb" - "rgba" - "rgdal" - "rgeo" - "rggobi" - "rgl" - "rgooglemaps" - "rgraph" - "rgs" - "rgui" - "rhadoop" - "rhapsody" - "rhel" - "rhel-scl" - "rhel5" - "rhel6" - "rhel7" - "rhino" - "rhino-commons" - "rhino-dsl" - "rhino-esb" - "rhino-etl" - "rhino-licensing" - "rhino-mocks" - "rhino-mocks-3.5" - "rhino-security" - "rhino-servicebus" - "rhino-tools" - "rhino-unit" - "rhino3d" - "rhoconnect" - "rhodecode" - "rhodes" - "rhom" - "rhomobile" - "rhq" - "rhtml" - "rhythmbox" - "ri" - "ria" - "ria-services" - "riak" - "riak-cs" - "riak-js" - "riak-search" - "ribbon" - "ribbon-button" - "ribbon-control" - "ribbon-form" - "ribboncontrolslibrary" - "ribbonx" - "rich-client-platform" - "rich-domain-model" - "rich-internet-application" - "rich-media" - "rich-notifications" - "rich-snippets" - "rich-text-editor" - "rich-ui" - "richdatatable" - "richedit" - "richedit-control" - "richeditabletext" - "richeditbox" - "richedittext" - "richfaces" - "richfaces-modal" - "richpush" - "richtext" - "richtextarea" - "richtextblock" - "richtextbox" - "richtextctrl" - "richtextediting" - "richtextfx" - "rickshaw" - "riemann" - "riemann-dashboard" - "rietveld" - "riff" - "right-align" - "right-angle-bracket" - "right-aws" - "right-click" - "right-join" - "right-justified" - "right-mouse-button" - "right-to-left" - "rightbarbuttonitem" - "rightfax" - "rightjs" - "rightnow-crm" - "rights" - "rights-management" - "rightscale" - "rightview" - "rigid-bodies" - "rijndael" - "rijndaelmanaged" - "rikulo" - "ril" - "rim-4.2" - "rim-4.3" - "rim-4.5" - "rim-4.6" - "rim-4.7" - "rim-5.0" - "rinari" - "ring" - "ring-buffer" - "ringdroid" - "ringojs" - "ringtone" - "rinside" - "riot.js" - "ripemd" - "ripping" - "ripple" - "rippledrawable" - "risc" - "riscv" - "risk-analysis" - "risk-management" - "river-crossing-puzzle" - "rivets.js" - "rjava" - "rjb" - "rjdbc" - "rjs" - "rjson" - "rjsonio" - "rkmappingtest" - "rkobjectmapping" - "rlib" - "rlike" - "rlwrap" - "rm" - "rmagick" - "rman" - "rmannotation" - "rmaps" - "rmarkdown" - "rmdir" - "rmi" - "rmic" - "rmiregistry" - "rml" - "rmo" - "rmo-programming" - "rmongo" - "rmongodb" - "rmq" - "rms" - "rmstore" - "rmysql" - "rncryptor" - "rndis" - "rngcryptoserviceprovider" - "rnw" - "roadkill-wiki" - "roadmap" - "roaming" - "roaming-profile" - "roassal" - "roauth" - "robjects" - "roblox" - "robobrowser" - "robocode" - "robocopy" - "robocup" - "roboguice" - "robohelp" - "robolectric" - "robolectric-gradle-plugin" - "robomongo" - "robospice" - "robospock" - "robot" - "robot-legs-problem" - "robotframework" - "robotics" - "robotics-studio" - "robotium" - "robotlegs" - "robots.txt" - "robovm" - "robust" - "robustness" - "roc" - "rockbox" - "rocket" - "rocket-u2" - "rocketpants" - "rocketshipit" - "rocks" - "rocksdb" - "rococoa" - "rodbc" - "rodf" - "rogue-wave" - "roguelike" - "roi" - "rokajaxsearch" - "rokon" - "roku" - "rolap" - "role" - "role-base-authorization" - "role-based" - "role-based-access-control" - "role-manager" - "roleprovider" - "roles" - "rolify" - "rollapply" - "rollback" - "rollbacksegments" - "rolling-computation" - "rollingfileappender" - "rollingfilesink" - "rollout" - "rollover" - "rollover-effect" - "rollovers" - "rollup" - "rom" - "roman-numerals" - "rome" - "roo" - "roo-gem" - "rook" - "root" - "root-access" - "root-certificate" - "root-framework" - "root-node" - "root.plist" - "rootbeer" - "rooted-device" - "rootfs" - "rootkit" - "rootpy" - "roots-toolkit" - "rootscope" - "roottools" - "rootview" - "rope" - "rope-data-structure" - "ropemacs" - "ropensci" - "ropes" - "ros" - "rosalind" - "rose-db" - "rose-db-object" - "rose-diagram" - "rosetta" - "rosetta-code" - "roslyn" - "roslyn-ctp" - "rostering" - "rot13" - "rotateanimation" - "rotatetransform" - "rotation" - "rotational-matrices" - "rotativa" - "rotator" - "rotor" - "rotten-tomatoes" - "roulette-wheel-selection" - "round" - "round-rect" - "round-robin" - "roundcube" - "rounded-corners" - "roundedbitmapdrawable" - "roundedcorners-dropshadow" - "roundhouse" - "rounding" - "rounding-error" - "roundtrip" - "roundup" - "route-constraint" - "route-me" - "route-provider" - "routeattribute" - "routed" - "routed-commands" - "routed-events" - "routedata" - "routedcommand" - "routedebugger" - "routedevent" - "routedeventargs" - "routedevents" - "routelink" - "routemagic" - "router" - "router-os" - "routerjs" - "routes" - "routetable" - "routevalues" - "routines" - "routing" - "row" - "row-height" - "row-key" - "row-level-security" - "row-number" - "row-removal" - "row-value-expression" - "rowcommand" - "rowcount" - "rowdatabound" - "rowdefinition" - "rowdeleting" - "rowdetails" - "rowdetailstemplate" - "roweditor" - "rowexpansion" - "rowfilter" - "rowheader" - "rowid" - "rowlex" - "rowlocking" - "rowname" - "rownum" - "rownumber" - "rows" - "rows-affected" - "rowset" - "rowsorter" - "rowstate" - "rowsum" - "rowtest" - "rowtype" - "rowversion" - "roxy-fileman" - "roxygen" - "roxygen2" - "rparallel" - "rpart" - "rpath" - "rpc" - "rpc2" - "rpcl" - "rpg" - "rpgle" - "rpm" - "rpm-maven-plugin" - "rpm-spec" - "rpmbuild" - "rpn" - "rpostgresql" - "rpres" - "rprofile" - "rpt" - "rpx" - "rpxnow" - "rpy2" - "rpyc" - "rpython" - "rr" - "rras" - "rrd" - "rrdtool" - "rro" - "rrouter" - "rrule" - "rs" - "rs.exe" - "rs485" - "rsa" - "rsa-key-fingerprint" - "rsacryptoserviceprovider" - "rsaprotectedconfiguration" - "rscript" - "rselenium" - "rserve" - "rsf" - "rsghb" - "rsh" - "rshd" - "rsl" - "rsls" - "rsm" - "rsnapshot" - "rsolr" - "rspec" - "rspec-expectations" - "rspec-puppet-init" - "rspec-rails" - "rspec-sidekiq" - "rspec-stories" - "rspec1" - "rspec2" - "rspec3" - "rsqlite" - "rsqlserver" - "rsrc" - "rss" - "rss-reader" - "rss.net" - "rss2" - "rssi" - "rst2html.py" - "rst2pdf" - "rstan" - "rstudio" - "rstudio-server" - "rsvg" - "rsvp-promise" - "rsvp.js" - "rsync" - "rsyntaxtextarea" - "rsyslog" - "rt" - "rt.jar" - "rtai" - "rtaudio" - "rtbkit" - "rtc" - "rtcc" - "rtcdatachannel" - "rtcp" - "rtd" - "rte" - "rtems" - "rterm" - "rtf" - "rtl" - "rtl-language" - "rtm" - "rtmfp" - "rtml" - "rtmp" - "rtmpd" - "rtmps" - "rtos" - "rtp" - "rtsj" - "rtsp" - "rtsp-client" - "rtti" - "rtw" - "rtx" - "rubaxa-sortable" - "rubber" - "rubber-band" - "rubiks-cube" - "rubinius" - "rubocop" - "ruboto" - "rubular" - "ruby" - "ruby-1.8" - "ruby-1.8.7" - "ruby-1.9" - "ruby-1.9.1" - "ruby-1.9.2" - "ruby-1.9.3" - "ruby-2.0" - "ruby-2.1" - "ruby-2.1.3" - "ruby-2.1.4" - "ruby-basics" - "ruby-box" - "ruby-c-api" - "ruby-c-extension" - "ruby-cocoa" - "ruby-daemons" - "ruby-datamapper" - "ruby-debug" - "ruby-debug-ide" - "ruby-development-kit" - "ruby-development-tools" - "ruby-enterprise-edition" - "ruby-ext" - "ruby-extension" - "ruby-ffi" - "ruby-gnome2" - "ruby-in-steel" - "ruby-install" - "ruby-interpreter" - "ruby-koans" - "ruby-llvm" - "ruby-mode" - "ruby-object-mapper" - "ruby-on-rails" - "ruby-on-rails-2" - "ruby-on-rails-3" - "ruby-on-rails-3.1" - "ruby-on-rails-3.2" - "ruby-on-rails-3.2.1" - "ruby-on-rails-4" - "ruby-on-rails-4.0.2" - "ruby-on-rails-4.1" - "ruby-on-rails-4.2" - "ruby-on-rails-plugins" - "ruby-openid" - "ruby-parser" - "ruby-prof" - "ruby-reports" - "ruby-rgl" - "ruby-rice" - "ruby-ripper" - "ruby-roo" - "ruby-serialport" - "ruby-smpp" - "ruby-test" - "ruby-tools" - "rubyamf" - "rubycas" - "rubycas-client" - "rubycas-server" - "rubydl" - "rubyforge" - "rubygame" - "rubygems" - "rubymine" - "rubymine-7" - "rubymotion" - "rubymotion-promotion" - "rubyosa" - "rubypython" - "rubyspec" - "rubyxl" - "rubyzip" - "rudp" - "rufus-scheduler" - "rugged" - "ruhoh" - "rule" - "rule-engine" - "rule-of-three" - "rule-of-zero" - "rulers" - "rules" - "rules-of-thumb" - "run-app" - "run-configuration" - "run-erl" - "run-length-encoding" - "run-loop" - "run-script" - "run-war" - "runas" - "runat" - "runatserver" - "runc" - "runcommand" - "rundeck" - "rundll32" - "rune" - "runge-kutta" - "runhaskell" - "runit" - "runjags" - "runjettyrun" - "runkit" - "runlevel" - "runloop" - "runnable" - "runner" - "running-balance" - "running-object-table" - "running-other-programs" - "running-total" - "runonce" - "runpy" - "runscope" - "runsettings" - "runspace" - "runtime" - "runtime-compilation" - "runtime-configuration" - "runtime-environment" - "runtime-error" - "runtime-packages" - "runtime-type" - "runtime.exec" - "runtimeexception" - "runtimemodification" - "rup" - "ruport" - "rusage" - "russian-doll-caching" - "rust" - "rust-0.11" - "rust-0.12-pre" - "rust-0.8" - "rust-0.9" - "rust-cargo" - "rust-crates" - "rust-crypto" - "rust-match" - "rust-modules" - "ruta" - "rvalue" - "rvalue-reference" - "rvds" - "rvest" - "rvm" - "rvm-capistrano" - "rvmrc" - "rvmsudo" - "rvo" - "rwebspec" - "rweka" - "rwlock" - "rx-android" - "rx-java" - "rx-kotlin" - "rx-netty" - "rx-py" - "rx-scala" - "rx.net" - "rxjs" - "rxtx" - "rxvt" - "rye-gem" - "rythm" - "ryu" - "ryujit" - "ryz" - "ryzom" - "s" - "s#arp" - "s#arp-architecture" - "s-expression" - "s-function" - "s-maxage" - "s-plus" - "s2k" - "s3cmd" - "s3fs" - "s3transfermanager" - "s4" - "s40" - "s5" - "s60" - "s60-3rd-edition" - "s60-5th-edition" - "s7" - "s7graphview" - "sa" - "sa-mp" - "saaj" - "saas" - "sablecc" - "sabre" - "sabredav" - "sac" - "saddle" - "saf" - "safari" - "safari-extension" - "safari-minimal-ui" - "safari-push-notifications" - "safari-web-inspector" - "safari6" - "safari7" - "safari8" - "safaridriver" - "safariwatir" - "safe-bool-idiom" - "safe-browsing" - "safe-haskell" - "safe-mode" - "safe-publication" - "safearray" - "safecontrols" - "safecracker" - "safefilehandle" - "safehandle" - "safety-critical" - "safewaithandle" - "saff-squeeze" - "sag" - "saga" - "sage" - "sage-erp" - "sage-line-50" - "sageframe" - "sagepay" - "sahi" - "saiku" - "sailfish-os" - "sails-generator" - "sails-mongo" - "sails-postgresql" - "sails-redis" - "sails.io.js" - "sails.js" - "sajax" - "sakai" - "sal" - "salat" - "sales" - "sales-tax" - "salesforce" - "salesforce-chatter" - "salesforce-ios-sdk" - "salesforce-service-cloud" - "saleslogix" - "salt" - "salt-creation" - "salt-stack" - "saltedhash" - "sam" - "samba" - "same-origin-policy" - "sametime" - "saml" - "saml-2.0" - "sammy.js" - "sample" - "sample-data" - "sample-rate" - "sample-size" - "samplegrabber" - "sampling" - "samsung-galaxy-camera" - "samsung-galaxy-gear" - "samsung-gear-fit" - "samsung-iap" - "samsung-knox" - "samsung-mobile" - "samsung-mobile-sdk" - "samsung-smart-tv" - "samsung-touchwiz" - "samtools" - "san" - "sandbox" - "sandbox-solution" - "sandcastle" - "sandy3d" - "sane" - "sanitization" - "sanitize" - "sanitizer" - "sanitizing-data" - "sanity-check" - "sankey-diagram" - "sap" - "sap-basis" - "sap-bsp" - "sap-connector" - "sap-fiori" - "sap-smp" - "sap-xi" - "sapb1" - "sapi" - "sapply" - "saprfc" - "sapscript" - "sapui" - "sapui5" - "sar" - "sarbanesoxley" - "sardine" - "saripaar" - "sarissa" - "sarsa" - "sas" - "sas-gtl" - "sas-iml" - "sas-jmp" - "sas-macro" - "sas-ods" - "sashform" - "sasl" - "saslauthd" - "sass" - "sass-globbing" - "sat" - "sat-solvers" - "sat4j" - "sata" - "satchless" - "satchmo" - "satellite" - "satellite-assembly" - "satellite-image" - "satellite-navigation" - "satelliteforms" - "satellizer" - "satis" - "satisfiability" - "saturn" - "saucelabs" - "savant3" - "save" - "save-as" - "save-dialog" - "save-image" - "savechanges" - "savedrequest" - "savefiledialog" - "savepoints" - "savestate" - "saving" - "saving-data" - "savon" - "sax" - "saxon" - "saxparseexception" - "saxparser" - "sbatch" - "sbaz" - "sbcl" - "sbjson" - "sbrk" - "sbt" - "sbt-0.12" - "sbt-android" - "sbt-android-plugin" - "sbt-aspectj" - "sbt-assembly" - "sbt-aws-plugin" - "sbt-buildinfo" - "sbt-idea" - "sbt-native-packager" - "sbt-onejar" - "sbt-osgi" - "sbt-plugin" - "sbt-release" - "sbt-revolver" - "sbt-rjs" - "sbt-web" - "sbteclipse" - "sc" - "sca" - "scada" - "scaffold" - "scaffoldcolumn" - "scaffolding" - "scala" - "scala-2.10" - "scala-2.11" - "scala-2.7" - "scala-2.8" - "scala-2.9" - "scala-arm" - "scala-breeze" - "scala-collections" - "scala-compiler" - "scala-designer" - "scala-dispatch" - "scala-ide" - "scala-java-interop" - "scala-macro-paradise" - "scala-macros" - "scala-maven-plugin" - "scala-nlp" - "scala-option" - "scala-pickling" - "scala-primary-constructor" - "scala-quasiquotes" - "scala-reflect" - "scala-script" - "scala-specialized" - "scala-string" - "scala-swing" - "scala-template" - "scala-xml" - "scala-xray" - "scala.js" - "scala.rx" - "scalability" - "scalable" - "scalac" - "scalacheck" - "scalacl" - "scaladoc" - "scalafx" - "scalala" - "scalalab" - "scalameter" - "scalamock" - "scalap" - "scalapack" - "scalaquery" - "scalar" - "scalar-context" - "scalariform" - "scalastyle" - "scalate" - "scalatest" - "scalatra" - "scalatra-sbt" - "scalaxb" - "scalaz" - "scalaz-stream" - "scalaz7" - "scaldi" - "scalding" - "scale" - "scale9grid" - "scaleanimation" - "scalejs" - "scaleout-hserver" - "scales-xml" - "scaletransform" - "scaletype" - "scalikejdbc" - "scaling" - "scaloid" - "scalr" - "scaml" - "scan" - "scan-build" - "scancodes" - "scandir" - "scanf" - "scanline" - "scanning" - "scapy" - "scatter" - "scatter-ioc" - "scatter-plot" - "scatter3d" - "scatterview" - "sccm" - "sccm-2007" - "scct" - "scd" - "scd2" - "scenarios" - "scene" - "scene2d" - "scenebuilder" - "scenegraph" - "scenejs" - "scenekit" - "scenic-ribbon" - "scentry" - "scgi" - "schannel" - "schedule" - "scheduled-tasks" - "scheduledactionservice" - "scheduledexecutorservice" - "scheduler" - "scheduling" - "schema" - "schema-compare" - "schema-design" - "schema-migration" - "schema.org" - "schema.rb" - "schema.yml" - "schemabinding" - "schemacrawler" - "schemaexport" - "schemagen" - "schemaless" - "schemaspy" - "schematron" - "scheme" - "scheme48" - "schroot" - "schtasks" - "schtasks.exe" - "scichart" - "scidb" - "science.js" - "scientific-computing" - "scientific-notation" - "scientific-software" - "scikit-image" - "scikit-learn" - "scikits" - "scilab" - "scilexer.dll" - "scim" - "scimore" - "scintilla" - "scip" - "scipy" - "scite" - "scitools" - "scivis" - "scjp" - "scmbug" - "scmmanager" - "scnnode" - "sco-unix" - "scodec" - "scom" - "scons" - "scope" - "scope-chain" - "scope-creep" - "scope-id" - "scope-identity" - "scope-resolution" - "scope-strategy" - "scoped-lock" - "scoped-mass-assigment" - "scoped-ptr" - "scopeguard" - "scopes" - "scoping" - "scopt" - "scopus" - "scorch" - "scoreloop" - "scoreninja" - "scoring" - "scorm" - "scorm1.2" - "scorm2004" - "scotty" - "scoverage" - "scp" - "scramble" - "scrap-your-boilerplate" - "scrape" - "scraper" - "scraperwiki" - "scrapinghub" - "scrapy" - "scrapy-shell" - "scrapy-spider" - "scrapyd" - "scrapyjs" - "scratch-file" - "scratch-memory" - "scratchbox" - "scratchcard" - "scratchpad" - "screen" - "screen-brightness" - "screen-capture" - "screen-grab" - "screen-lock" - "screen-off" - "screen-orientation" - "screen-positioning" - "screen-projection" - "screen-readers" - "screen-record" - "screen-resolution" - "screen-rotation" - "screen-scraper" - "screen-scraping" - "screen-size" - "screencast" - "screenrc" - "screens" - "screensaver" - "screensharing" - "screenshot" - "screeps" - "screwturn" - "screwunit" - "scribble" - "scribd" - "scribe" - "scribe-server" - "scribunto" - "scrimage" - "scringo" - "scriplets" - "script#" - "script-component" - "script-console" - "script-debugging" - "script-element" - "script-fu" - "script-tag" - "script-task" - "scriptable" - "scriptaculous" - "scriptblock" - "scriptbundle" - "scriptcam" - "scriptcontrol" - "scriptcs" - "scriptdata" - "scriptdb" - "scriptdom" - "scriptedmain" - "scriptella" - "scriptengine" - "scriptgenerate" - "scriptignore" - "scriptine" - "scripting" - "scripting-bridge" - "scripting-interface" - "scripting-language" - "scripting-languages" - "scripting-runtime" - "scripting.dictionary" - "scriptish" - "scriptlet" - "scriptmanager" - "scriptom" - "scriptprocessor" - "scriptresource.axd" - "scriptservice" - "scripty2" - "scroll" - "scroll-lock" - "scroll-paging" - "scroll-position" - "scrollable" - "scrollable-table" - "scrollableresults" - "scrollbar" - "scrollbars" - "scrolledcomposite" - "scrolledwindow" - "scroller" - "scrolling" - "scrollmagic" - "scrollorama" - "scrollpane" - "scrollrect" - "scrollspy" - "scrollto" - "scrolltop" - "scrollview" - "scrollviewer" - "scrollwheel" - "scrooge" - "scrubyt" - "scrum" - "scrumboard" - "scrummaster" - "scrutinizer" - "scrypt" - "scsf" - "scsi" - "scss" - "sctp" - "scuery" - "sculpture" - "scxml" - "sd-card" - "sda" - "sdata" - "sdcalertview" - "sdcc" - "sdef" - "sdf" - "sdhc" - "sdi" - "sdi-12" - "sdi-engine" - "sdiff" - "sdist" - "sdk" - "sdk3.0" - "sdkmesh" - "sdl" - "sdl-1.2" - "sdl-2" - "sdl-image" - "sdl-mixer" - "sdl-net" - "sdl-opengl" - "sdl-tridion" - "sdl-ttf" - "sdl.net" - "sdlc" - "sdn" - "sdo" - "sdp" - "sds" - "sdwebimage" - "seaborn" - "seadragon" - "seafile-server" - "seaglass" - "sealed" - "seam" - "seam-carving" - "seam-conversation" - "seam-gen" - "seam-solder" - "seam2" - "seam3" - "seamonkey" - "search" - "search-and-promote" - "search-box" - "search-dialog" - "search-engine" - "search-engine-api" - "search-engine-bots" - "search-form" - "search-keywords" - "search-multiple-words" - "search-path" - "search-server" - "search-server-2010" - "search-suggestion" - "search-tree" - "searchable" - "searchable-plugin" - "searchactivity" - "searchbar" - "searchdisplaycontroller" - "searchfiltercollection" - "searchify" - "searching-xml" - "searchkick" - "searchlogic" - "searchly" - "searchmanager" - "searchqueryset" - "searchview" - "seaside" - "seasoned-schemer" - "seccomp" - "seckeyref" - "second-level-cache" - "secondary-indexes" - "secondary-live-tile" - "secondary-sort" - "secondaryloop" - "secondlife" - "seconds" - "secret-key" - "secretary" - "secs" - "section508" - "sectionheader" - "sectionindexer" - "sections" - "sector" - "secure-coding" - "secure-crt" - "secure-gateway" - "secure-scl" - "secure-trading" - "secure-transport" - "securesocial" - "securestring" - "securezeromemory" - "securid" - "security" - "security-by-obscurity" - "security-constraint" - "security-context" - "security-context-token" - "security-critical" - "security-framework" - "security-identifier" - "security-policy" - "security-roles" - "security-scoped-bookmarks" - "security-testing" - "security-trimming" - "security-warning" - "security-zone" - "security.framework" - "securityaction" - "securitycenter" - "securitydomain" - "securityexception" - "securitymanager" - "securityswitch" - "securitytrimmingenabled" - "sed" - "sede" - "sedis" - "sedna" - "seed" - "seed.rb" - "seeding" - "seek" - "seekableiterator" - "seekbar" - "seekbarpreference" - "seekg" - "seesaw" - "sef" - "segment" - "segment-io" - "segment-tree" - "segmentation-fault" - "segmentedcontrol" - "segments" - "segue" - "seh" - "sejda" - "sekken" - "select" - "select-case" - "select-for-xml" - "select-function" - "select-insert" - "select-into" - "select-into-outfile" - "select-menu" - "select-n-plus-1" - "select-query" - "select-statement" - "select-string" - "select-syscall" - "select-tag" - "select-to-slider" - "select-until" - "select-xml" - "select2-rails" - "selectable" - "selectall" - "selectbooleancheckbox" - "selectbox" - "selectcommand" - "selected" - "selectedindex" - "selectedindexchanged" - "selecteditem" - "selecteditemchanged" - "selecteditemtemplate" - "selectedtext" - "selectedvalue" - "selectinputdate" - "selection" - "selection-border" - "selection-object" - "selection-sort" - "selectionchanged" - "selectionchanging" - "selectionmodel" - "selectivizr" - "selectize.js" - "selectlist" - "selectlistitem" - "selectmanycheckbox" - "selectmanylistbox" - "selectmanymenu" - "selectmethod" - "selectnodes" - "selectonemenu" - "selectoneradio" - "selector" - "selectors" - "selectors-api" - "selectsinglenode" - "selendroid" - "selenium" - "selenium-builder" - "selenium-chromedriver" - "selenium-firefoxdriver" - "selenium-fitnesse-bridge" - "selenium-grid" - "selenium-grid2" - "selenium-ide" - "selenium-rc" - "selenium-server" - "selenium-webdriver" - "selenium2" - "seleno" - "self" - "self-contained" - "self-destruction" - "self-documenting" - "self-documenting-code" - "self-executing-function" - "self-extracting" - "self-healing" - "self-host" - "self-hosting" - "self-interpreter" - "self-intersection" - "self-invoking-function" - "self-join" - "self-modifying" - "self-organizing-maps" - "self-publishing" - "self-reference" - "self-referencing-table" - "self-signed" - "self-tracking-entities" - "self-type" - "self-updating" - "selfbrailleclient" - "selflanguage" - "selinux" - "sellvana" - "sem" - "semantic-analysis" - "semantic-comparison" - "semantic-diff" - "semantic-logging" - "semantic-markup" - "semantic-mediawiki" - "semantic-merge" - "semantic-model" - "semantic-ui" - "semantic-versioning" - "semantic-web" - "semantic-zoom" - "semantics" - "semaphore" - "semi-join" - "semicolon" - "semigroup" - "semver" - "semweb" - "sencha" - "sencha-2" - "sencha-architect" - "sencha-charts" - "sencha-cmd" - "sencha-cmd5" - "sencha-command" - "sencha-fiddle" - "sencha-touch" - "sencha-touch-2" - "sencha-touch-2-proxy" - "sencha-touch-2.1" - "sencha-touch-2.2" - "sencha-touch-2.3" - "sencha-touch-theming" - "senchatouch-2.4" - "send" - "send-on-behalf-of" - "send-port" - "sendasync" - "sendasynchronousrequest" - "sender" - "sender-id" - "sendfile" - "sendgrid" - "sendgrid-parse-webhook" - "sendhub" - "sendinput" - "sendkeys" - "sendmail" - "sendmail.exe" - "sendmailr" - "sendmessage" - "sendto" - "sens" - "sense" - "sensenet" - "sensitive-data" - "sensor" - "sensor-fusion" - "sensormanager" - "sensu" - "sentence" - "sentencecase" - "sentestingkit" - "sentiment-analysis" - "sentinel" - "sentry" - "seo" - "separating-axis-theorem" - "separation-of-concerns" - "separator" - "seq" - "seq.unfold" - "sequel" - "sequel-gem" - "sequelize" - "sequelize.js" - "sequelpro" - "sequence" - "sequence-alignment" - "sequence-analysis" - "sequence-diagram" - "sequence-generators" - "sequence-points" - "sequence-sql" - "sequencefile" - "sequencematcher" - "sequences" - "sequencing" - "sequential" - "sequential-number" - "sequential-workflow" - "serena" - "serial-communication" - "serial-number" - "serial-port" - "serial-processing" - "serializable" - "serializableattribute" - "serialization" - "serializationbinder" - "serializearray" - "serializer" - "serialscroll" - "serialversionuid" - "series" - "series-40" - "serilog" - "serp" - "servemux" - "server" - "server-administration" - "server-application" - "server-communication" - "server-configuration" - "server-core" - "server-error" - "server-explorer" - "server-farm" - "server-hardware" - "server-load" - "server-migration" - "server-mode" - "server-monitoring" - "server-name" - "server-push" - "server-response" - "server-sent-events" - "server-side" - "server-side-attacks" - "server-side-controls" - "server-side-includes" - "server-side-scripting" - "server-side-validation" - "server-tags" - "server-to-server" - "server-variables" - "server.mappath" - "server.transfer" - "server.xml" - "server2go" - "servercontrol" - "servercontrols" - "serverfbml" - "servermanager" - "serverside-javascript" - "serversocket" - "serverspec" - "servertag" - "serverxmlhttp" - "service" - "service-accounts" - "service-application" - "service-broker" - "service-config-editor" - "service-control-manager" - "service-design" - "service-discovery" - "service-factory" - "service-installer" - "service-layer" - "service-locator" - "service-management" - "service-menu" - "service-model" - "service-moniker" - "service-name" - "service-not-available" - "service-object" - "service-operations" - "service-pack" - "service-provider" - "service-reference" - "service-tier" - "service-worker" - "servicebehavior" - "servicebus" - "serviceconnection" - "servicecontract" - "servicecontroller" - "servicedcomponent" - "servicehost" - "serviceinsight" - "serviceinstall" - "serviceknowntype" - "serviceloader" - "servicemanager" - "servicemix" - "servicenow" - "servicepacks" - "servicepoint" - "servicepointmanager" - "servicereference" - "servicestack" - "servicestack-auth" - "servicestack-bsd" - "servicestack-razor" - "servicestack-text" - "servicestack.redis" - "servicetestcase" - "serving" - "servlet-2.5" - "servlet-3.0" - "servlet-3.1" - "servlet-container" - "servlet-dispatching" - "servlet-filters" - "servlet-listeners" - "servlet-mapping" - "servletconfig" - "servletcontextlistener" - "servletexception" - "servlets" - "servletunit" - "ses" - "sesame" - "session" - "session-0-isolation" - "session-bean" - "session-cache" - "session-cookies" - "session-fixation" - "session-hijacking" - "session-less" - "session-management" - "session-per-request" - "session-replay" - "session-replication" - "session-scope" - "session-set-save-handler" - "session-state" - "session-state-provider" - "session-state-server" - "session-storage" - "session-store" - "session-timeout" - "session-variables" - "session.socket.io" - "sessioncontext" - "sessionend" - "sessionfactory" - "sessionid" - "sessionstate-timeout" - "sessionstorage" - "sessiontracking" - "set" - "set-based" - "set-comprehension" - "set-context-info" - "set-cover" - "set-difference" - "set-include-path" - "set-intersection" - "set-operations" - "set-options" - "set-returning-functions" - "set-theory" - "set-union" - "setattr" - "setattribute" - "setbackground" - "setbounds" - "setclasslong" - "setcontentview" - "setcookie" - "setcurrentvalue" - "setdefault" - "setdlldirectory" - "setediting" - "setenv" - "setenvif" - "setf" - "setfocus" - "setforegroundwindow" - "setfsuid" - "setinterval" - "setitimer" - "setjmp" - "setlocale" - "setneedsdisplay" - "setneedsdisplayinrect" - "setonerrorlistener" - "setorientation" - "setparent" - "setrlimit" - "setsid" - "setsockopt" - "setstate" - "setstring" - "setstyle" - "setter" - "settext" - "setthreadaffinitymask" - "settimeout" - "setting" - "settings" - "settings-bundle" - "settings.bundle" - "settings.settings" - "settingslogic" - "settingsprovider" - "setuid" - "setup" - "setup-deployment" - "setup-kit" - "setup-project" - "setup-wizard" - "setup.exe" - "setup.py" - "setupapi" - "setuptools" - "setuserinteractionenabled" - "setvalue" - "setw" - "setwd" - "setwindowlong" - "setwindowshookex" - "setx" - "seven-segment-display" - "sevenzipsharp" - "sevntu-checkstyle" - "sfauthorizationpluginview" - "sfdoctrineguard" - "sfguard" - "sfhfkeychainutils" - "sfinae" - "sfml" - "sfml.net" - "sftp" - "sfx" - "sgbd" - "sgen" - "sgen.exe" - "sgi" - "sgml" - "sgml-mode" - "sgmlreader" - "sgs" - "sgvizler" - "sh" - "sha" - "sha-3" - "sha1" - "sha2" - "sha256" - "sha512" - "shade" - "shader" - "shader-model" - "shadow" - "shadow-build" - "shadow-copy" - "shadow-database" - "shadow-dom" - "shadow-mapping" - "shadow-removal" - "shadowbox" - "shadowing" - "shadowpath" - "shadows" - "shake" - "shake-build-system" - "shakespeare-text" - "shallow-clone" - "shallow-copy" - "shaml" - "shapado" - "shape" - "shape-recognition" - "shape-rendering" - "shaped-window" - "shapedrawable" - "shapefile" - "shapeless" - "shapely" - "shapes" - "shapesheet" - "shapeshift" - "sharding" - "share" - "share-button" - "share.js" - "shareactionprovider" - "shared" - "shared-addin" - "shared-cache" - "shared-data" - "shared-directory" - "shared-element-transition" - "shared-file" - "shared-folders" - "shared-host" - "shared-hosting" - "shared-libraries" - "shared-memory" - "shared-nothing" - "shared-objects" - "shared-primary-key" - "shared-project" - "shared-ptr" - "shared-resource" - "shared-secret" - "shared-state" - "shareddbconnectionscope" - "sharedelementcallback" - "sharedpreferences" - "sharedservicesprovider" - "sharedsizegroup" - "sharekit" - "sharepoint" - "sharepoint-2003" - "sharepoint-2007" - "sharepoint-2010" - "sharepoint-2013" - "sharepoint-alerts" - "sharepoint-api" - "sharepoint-apps" - "sharepoint-branding" - "sharepoint-clientobject" - "sharepoint-deployment" - "sharepoint-designer" - "sharepoint-documents" - "sharepoint-feature" - "sharepoint-list" - "sharepoint-listtemplate" - "sharepoint-object-model" - "sharepoint-online" - "sharepoint-search" - "sharepoint-security" - "sharepoint-survey-list" - "sharepoint-timer-job" - "sharepoint-upgrade" - "sharepoint-userprofile" - "sharepoint-webservice" - "sharepoint-wiki" - "sharepoint-workflow" - "sharepoint2010-bcs" - "sharepointadmin" - "sharepointdocumentlibrary" - "sharepointfoundation2010" - "sharethis" - "shareware" - "sharing" - "shark" - "shark-compiler" - "shark-ml" - "shark-sql" - "sharp-architecture" - "sharp-repository" - "sharp-snmp" - "sharpbox" - "sharpcompress" - "sharpdevelop" - "sharpdx" - "sharpen-tool" - "sharpffmpeg" - "sharpgl" - "sharpkml" - "sharpmap" - "sharpnlp" - "sharppcap" - "sharppdf" - "sharpshell" - "sharpsquare" - "sharpssh" - "sharpsvn" - "sharpziplib" - "shazam" - "shdocvw" - "shearsort" - "shebang" - "shedskin" - "sheet" - "sheetengine" - "shef" - "shell" - "shell-exec" - "shell-extensions" - "shell-icons" - "shell-scripting" - "shell-verbs" - "shell32" - "shell32.dll" - "shellcode" - "shellexecute" - "shellexecuteex" - "shellforge" - "shellshock-bash-bug" - "shelly" - "shelve" - "shelveset" - "shelving" - "shfb" - "shfileoperation" - "shibboleth" - "shieldui" - "shift" - "shift-jis" - "shift-reduce" - "shift-reduce-conflict" - "shift-register" - "shim" - "shinemp3encoder" - "shinobi" - "shiny" - "shiny-server" - "shipping" - "shiro" - "shiva3d" - "shlex" - "shockwave" - "shodan" - "shoes" - "shop" - "shop-script" - "shopify" - "shopio" - "shopizer" - "shopping" - "shopping-cart" - "shopware" - "shoretel" - "short" - "short-circuiting" - "short-cut-fusion" - "short-filenames" - "short-open-tags" - "short-url" - "shortcode" - "shortcut" - "shortcut-key" - "shortcuts" - "shorten-url" - "shortest" - "shortest-path" - "shorthand" - "shorthand-if" - "shorttags" - "shotgun" - "should.js" - "shoulda" - "shouldstartload" - "shoutcast" - "show" - "show-hide" - "show-sql" - "showcaseview" - "showdialog" - "showdown" - "showmodaldialog" - "showplan.out" - "showuserlocation" - "showwindow" - "shp" - "shpaml" - "shred" - "shrimp" - "shrink" - "shrinkr" - "shrinkresources" - "shrinkroute" - "shrinksafe" - "shrinkwrap" - "shtml" - "shtool" - "shuffle" - "shunting-yard" - "shutdown" - "shutdown-hook" - "shutil" - "shutter" - "sialertview" - "siblings" - "sicp" - "sicstus-prolog" - "sid" - "siddhi" - "side-by-side" - "side-effects" - "side-scroller" - "sidebar" - "sidekiq" - "sidekiq-monitor" - "sideloading" - "sidetiq" - "sideviewutils" - "sidewaffle" - "sidr" - "siebel" - "siege" - "siena" - "siesta" - "sieve" - "sieve-language" - "sieve-of-atkin" - "sieve-of-eratosthenes" - "sieve.net" - "sifr" - "sifr3" - "sift" - "sifteo" - "sifting-appender" - "sig-atomic-t" - "sigabrt" - "sigaction" - "sigar" - "sigbus" - "sigchld" - "sigfpe" - "sightcall" - "sightly" - "sigils" - "sigint" - "sigkill" - "sigma-grid-control" - "sigma.js" - "sigmaplot" - "sign" - "sign-extension" - "signal-handling" - "signal-processing" - "signal-slot" - "signal-strength" - "signaling" - "signalr" - "signalr-backplane" - "signalr-hub" - "signalr.client" - "signals" - "signals-slots" - "signals2" - "signature" - "signature-files" - "signaturepad" - "signatures" - "signaturetool" - "signed" - "signed-applet" - "signed-assembly" - "signed-integer" - "signedness" - "signedxml" - "signer" - "significance" - "significant-digits" - "significant-terms" - "signing" - "signpost" - "signtool" - "sigpipe" - "sigprocmask" - "sigqueue" - "sigsegv" - "sigterm" - "sijax" - "sikuli" - "silent" - "silent-installer" - "silent-post" - "silex" - "silicon" - "silk-central" - "silk-performer" - "silkjs" - "silktest" - "silo" - "silverlight" - "silverlight-2-rc0" - "silverlight-2.0" - "silverlight-3.0" - "silverlight-4.0" - "silverlight-5.0" - "silverlight-embedded" - "silverlight-jetpack-theme" - "silverlight-oob" - "silverlight-plugin" - "silverlight-toolkit" - "silverlight.fx" - "silverlightcontrols" - "silverstripe" - "silvertunnel" - "sim-card" - "sim-toolkit" - "sim.js" - "sim900" - "simba" - "simbl" - "simd" - "simevents" - "simhash" - "simian" - "simics" - "similarity" - "simile" - "simperium" - "simple-authentication" - "simple-el" - "simple-form" - "simple-form-for" - "simple-framework" - "simple-html-dom" - "simple-injector" - "simple-machines-forum" - "simple-mvvm" - "simple-openni" - "simple-push-api" - "simple-web-token" - "simple-xml-serialization" - "simple.data" - "simple.odata" - "simpleadapter" - "simpleaudioengine" - "simplebutton" - "simplecaptcha" - "simplecart" - "simplecov" - "simplecursoradapter" - "simplecursortreeadapter" - "simplecv" - "simpledateformat" - "simpledialog" - "simpledom" - "simplegeo" - "simplehttpserver" - "simplejdbcinsert" - "simplejmx" - "simplejson" - "simplemembership" - "simplemodal" - "simplepager" - "simplepie" - "simplerepository" - "simplesamlphp" - "simpletabcontrol" - "simpletest" - "simpletip" - "simpletype" - "simpleworkerrequest" - "simplex" - "simplex-noise" - "simplexml" - "simplexmlrpcserver" - "simplification" - "simplify" - "simplyscroll" - "simplyvbunit" - "simpowersystems" - "simpy" - "simscape" - "simulate" - "simulated-annealing" - "simulation" - "simulator" - "simulink" - "simultaneous" - "simultaneous-calls" - "sin" - "sinatra" - "sinatra-activerecord" - "sinatra-assetpack" - "sinaweibo" - "sinch" - "sinclair" - "sine" - "sine-wave" - "sinemacula" - "single-dispatch" - "single-file" - "single-instance" - "single-page-application" - "single-precision" - "single-quotes" - "single-sign-on" - "single-source" - "single-table-inheritance" - "single-threaded" - "single-user" - "singleinstance" - "singlepage" - "singlethreadmodel" - "singleton" - "singleton-methods" - "singleton-type" - "singly" - "singly-linked-list" - "singular" - "singularitygs" - "sink" - "sinon" - "sio2" - "sip" - "sip-server" - "sip-servlet" - "sipdroid" - "siphon" - "sipml" - "sips" - "siren" - "siri" - "siri-xml" - "sirtrevor" - "sis" - "sisc" - "sisodb" - "sisu" - "site-column" - "site-definition" - "site-mining" - "site-prism" - "site-template" - "site.master" - "sitebricks" - "sitecollection" - "sitecore" - "sitecore-analytics" - "sitecore-azure" - "sitecore-dms" - "sitecore-ecm" - "sitecore-ecommerce" - "sitecore-media-library" - "sitecore-mvc" - "sitecore-rocks" - "sitecore-social-connected" - "sitecore-speak-ui" - "sitecore-workflow" - "sitecore5.2" - "sitecore6" - "sitecore7" - "sitecore7.1" - "sitecore7.2" - "sitecore7.5" - "sitedefs" - "sitedesign" - "sitedirectory" - "siteedit" - "sitefinity" - "sitefinity-3x" - "sitefinity-4" - "sitefinity-5" - "sitemap" - "sitemap-generator-gem" - "sitemap.xml" - "sitemapnode" - "sitemappath" - "sitemapprovider" - "sitemesh" - "siteminder" - "sites" - "sitescope" - "sitetemplate" - "six-python" - "size" - "size-classes" - "size-estimation" - "size-reduction" - "size-t" - "size-type" - "sizehint" - "sizeof" - "sizer" - "sizetocontent" - "sizetofit" - "sizewithfont" - "sizing" - "sizzle" - "sjavac" - "sjax" - "sjcl" - "sjplot" - "sjson" - "sjsxp" - "sjxp" - "skaction" - "skbio" - "skcropnode" - "skdownload" - "skeffectnode" - "skein" - "skel" - "skeletal-animation" - "skeletal-mesh" - "skeleton-code" - "skeleton-css-boilerplate" - "skelta" - "skemitternode" - "sketchflow" - "sketching" - "sketchup" - "skew" - "skfieldnode" - "skia" - "skin" - "skinlookandfeel" - "skinning" - "skinny-war" - "skins" - "skip" - "skip-lists" - "skip-take" - "skipfish" - "skipper" - "skitch" - "skitter-slider" - "sklabelnode" - "sklearn" - "skmaps" - "sknode" - "skos" - "skpaymenttransaction" - "skphysicsbody" - "skphysicscontact" - "skphysicsjoint" - "skphysicsworld" - "skproduct" - "skpsmtpmessage" - "skrollr" - "skscene" - "skshapenode" - "skspritenode" - "sktexture" - "sktextureatlas" - "sktransition" - "skunk-works" - "skus" - "skvideonode" - "skview" - "skybox" - "skydns" - "skydock" - "skydrive" - "skype" - "skype-uri.js" - "skype4com" - "skype4java" - "skype4py" - "skyscanner" - "sl4a" - "slab" - "slack-api" - "slackware" - "slam-algorithm" - "slash" - "slashdot" - "slave" - "slcomposeviewcontroller" - "sld" - "sleak" - "sleep" - "sleep-mode" - "sleepy-mongoose" - "sles" - "slf4j" - "slf4net" - "slf5j" - "sli" - "slice" - "slicehost" - "slices" - "slicing" - "slick" - "slick-2.0" - "slick-3.0" - "slick-carousel" - "slick-codegen" - "slick2d" - "slickedit" - "slickgrid" - "slickquiz" - "slickupload" - "slide" - "slide.js" - "slide.show2" - "slidedown" - "slider" - "sliderextender" - "sliders" - "slidertabs" - "slideshow" - "slideshowify" - "slidesjs" - "slidetoggle" - "slideup" - "slidify" - "sliding" - "sliding-doors" - "sliding-window" - "slidingdrawer" - "slidingmenu" - "slidingpanelayout" - "slidy" - "slik" - "slim" - "slim-lang" - "slimbox" - "slimdx" - "slime" - "slimerjs" - "slimpicker" - "slimscroll" - "slimtune" - "slimv" - "sling" - "slk" - "sll" - "sln-file" - "sloc" - "slony" - "slot" - "slots" - "slow-load" - "slowcheetah" - "slowdown" - "slp" - "slrequest" - "slsvcutil" - "slug" - "slurm" - "slurp" - "sly-scroller" - "smaato" - "smack" - "smacss" - "smali" - "small-bet" - "small-business-server" - "smallbasic" - "smallcaps" - "smallcheck" - "smalldatetime" - "smallsql" - "smalltalk" - "smart-board" - "smart-commits" - "smart-device" - "smart-device-framework" - "smart-files" - "smart-http" - "smart-listing" - "smart-matching" - "smart-mobile-studio" - "smart-playlist" - "smart-pointers" - "smart-quotes" - "smart-table" - "smart-tags" - "smart-tv" - "smart-tv-alliance" - "smart-wizard" - "smartadmin" - "smartassembly" - "smartbanner" - "smartcard" - "smartcard-reader" - "smartclient" - "smartcollection" - "smartercsv" - "smartface.io" - "smartformat.net" - "smartfox" - "smartfoxserver" - "smartgit" - "smartgwt" - "smartgwt-pro" - "smarthost" - "smartinspect" - "smartmatch" - "smartos" - "smartpart" - "smartphone" - "smartsheet-api" - "smartsvn" - "smarttarget" - "smartxls" - "smarty" - "smarty2" - "smarty3" - "smartypants" - "smartystreets" - "smb" - "smcalloutview" - "smd" - "smf" - "smf-forum" - "smil" - "smime" - "smips" - "smjobbless" - "sml" - "sml-mode" - "smlnj" - "smo" - "smoke" - "smoke-testing" - "smooks" - "smooth" - "smooth-numbers" - "smooth-scrolling" - "smooth-streaming" - "smooth-streaming-player" - "smoothing" - "smoothsort" - "smp" - "smpp" - "sms" - "sms-gateway" - "smslib" - "smsmanager" - "smspdu" - "smss" - "smt" - "smtp" - "smtp-auth" - "smtpappender" - "smtpclient" - "smtpd" - "smtpexception" - "smtplib" - "smtps" - "sn.exe" - "sna" - "snackjs" - "snakes" - "snakeyaml" - "snap" - "snap-framework" - "snap-in" - "snap-lang" - "snap-to-grid" - "snap.svg" - "snapchat" - "snapjs" - "snapped-view" - "snapping" - "snappy" - "snapshot" - "snapshot-isolation" - "snapshot-view" - "snapshotcm" - "snapstodevicepixels" - "snare" - "sni" - "sniffer" - "sniffing" - "snipcart" - "snipmate" - "snk" - "snmp" - "snmp4j" - "snmpb" - "snmpd" - "snmpsharpnet" - "snmptrapd" - "snobol" - "snockets" - "snomed-ct" - "snoop" - "snoopy" - "snort" - "snow" - "snowball" - "snowballanalyzer" - "snowfall" - "snowflake" - "snowflake-schema" - "snowplow" - "so" - "so-linger" - "soa" - "soa-suite" - "soap" - "soap-client" - "soap-extension" - "soap-rpc-encoded" - "soap-serialization" - "soap-toolkit" - "soap1.2" - "soap4r" - "soapexception" - "soapfault" - "soapformatter" - "soaphandler" - "soapheader" - "soaphttpclientprotocol" - "soaplib" - "soaplite" - "soappy" - "soapserver" - "soapui" - "soar" - "sobel" - "sobipro" - "soc" - "socat" - "soci" - "sociable" - "social" - "social-authentication" - "social-framework" - "social-gaming" - "social-graph" - "social-likes" - "social-media" - "social-networking" - "social-stream" - "socialauth" - "socialengine" - "socialize-sdk" - "socialregistration" - "socialshare" - "sockaddr-in" - "socket-timeout-exception" - "socket.io" - "socket.io-1.0" - "socket.io-java-client" - "socket.io-redis" - "socketasynceventargs" - "socketcan" - "socketchannel" - "socketexception" - "socketfactory" - "socketio" - "socketio4net" - "socketmobile" - "socketpair" - "socketrocket" - "sockets" - "socketscan" - "socketserver" - "socketstream" - "sockit" - "sockjs" - "socks" - "socrata" - "soda" - "sofea" - "soffice" - "sofia-sip" - "soft-debugger" - "soft-delete" - "soft-heap" - "soft-hyphen" - "soft-input-panel" - "soft-keyboard" - "soft-real-time" - "soft-references" - "softbody" - "softirq" - "softkeys" - "softlayer" - "softlock" - "software-collections" - "software-design" - "software-distribution" - "software-engineering" - "software-estimation" - "software-factory" - "software-hunting" - "software-lifecycle" - "software-packaging" - "software-product-lines" - "software-protection" - "software-quality" - "software-release" - "software-serial" - "software-tools" - "software-update" - "soil" - "solace-mq" - "solandra" - "solaris" - "solaris-10" - "solaris-studio" - "solarium" - "solarwindslem" - "solid-bodies" - "solid-principles" - "solidcolorbrush" - "solidworks" - "solr" - "solr-cell" - "solr-highlight" - "solr-multy-valued-fields" - "solr-query-syntax" - "solr-schema" - "solr4" - "solr4j" - "solrcloud" - "solritas" - "solrj" - "solrmeter" - "solrnet" - "solution" - "solution-deployment" - "solution-explorer" - "solver" - "som" - "somee" - "somotiondetector" - "sonar" - "sonar-runner" - "sonarqube" - "sonata" - "sonata-admin" - "sonata-media-bundle" - "sonata-user-bundle" - "sonatype" - "sones" - "songbird" - "songkick" - "sonic" - "sonicmq" - "sony" - "sony-camera-api" - "sony-smarteyeglass" - "sony-smartwatch" - "sony-xperia" - "soomla" - "soot" - "soql" - "sorcery" - "sorenson-360" - "sorl-thumbnail" - "sorm" - "sortable" - "sortable-tables" - "sortables" - "sortcomparefunction" - "sortdirection" - "sorted" - "sortedcollection" - "sorteddictionary" - "sortedlist" - "sortedmap" - "sortedset" - "sorting" - "sorting-algorithm" - "sorting-network" - "sos" - "sosex" - "soti" - "sound-api" - "sound-recognition" - "sound-synthesis" - "soundbuffer" - "soundcard" - "soundchannel" - "soundcloud" - "soundeffect" - "soundeffectinstance" - "soundex" - "soundfont" - "soundjs" - "soundmanager2" - "soundplayer" - "soundpool" - "sounds" - "soundtouch" - "source" - "source-address" - "source-code" - "source-code-protection" - "source-code-quality" - "source-control-bindings" - "source-control-explorer" - "source-control-hosting" - "source-depot" - "source-file-organization" - "source-filter" - "source-folders" - "source-formatting" - "source-highlighting" - "source-insight" - "source-maps" - "source-modification" - "source-monitor" - "source-separation" - "source-server" - "source-sets" - "source-to-source" - "source-tree" - "sourceforge" - "sourcegear" - "sourcegear-fortress" - "sourcegear-vault" - "sourcekit" - "sources" - "sourcesafe-6.0" - "southeast-asian-languages" - "sox" - "sp" - "sp-executesql" - "sp-help-operator" - "sp-msforeachdb" - "sp-rename" - "sp-reset-connection" - "sp-send-dbmail" - "sp-who2" - "spa" - "space" - "space-complexity" - "space-efficiency" - "space-filling-curve" - "space-leak" - "space-partitioning" - "space-tree" - "spacebars" - "spacecraft-operator" - "spaces" - "spaceship-operator" - "spacing" - "spagobi" - "spam" - "spam-prevention" - "spamassassin" - "spannable" - "spannablestring" - "spanned" - "spanning-tree" - "sparc" - "spark" - "spark-ada" - "spark-cluster-framework" - "spark-framework" - "spark-graphx" - "spark-java" - "spark-list" - "spark-skinning" - "spark-streaming" - "spark-view-engine" - "sparkcore" - "sparkle" - "sparklines" - "sparks-language" - "sparkup" - "sparql" - "sparqlwrapper" - "sparrow-framework" - "sparse" - "sparse-array" - "sparse-checkout" - "sparse-columns" - "sparse-file" - "sparse-matrix" - "spartan" - "spatial" - "spatial-data" - "spatial-data-frame" - "spatial-index" - "spatial-interpolation" - "spatial-query" - "spatialite" - "spatstat" - "spawn" - "spawn-fcgi" - "spawning" - "spc" - "spcontext" - "spdy" - "speaker" - "speakerphone" - "speaking" - "spec" - "spec#" - "spec-ui" - "spec2" - "specfiles" - "specflow" - "special-characters" - "special-folders" - "special-form" - "special-keys" - "special-variables" - "specialization" - "specialized-annotation" - "specific-install" - "specific-stylesheets" - "specification" - "specification-pattern" - "specifications" - "specificity" - "specifier" - "specjour" - "speclj" - "speclog" - "specman" - "specrun" - "specs" - "specs2" - "spectral" - "spectral-density" - "spectrogram" - "spectrum" - "specular" - "speculative" - "speculative-execution" - "speech" - "speech-recognition" - "speech-sdk" - "speech-synthesis" - "speech-to-text" - "speechsynthesizer" - "speed-test" - "speedtracer" - "speex" - "spell-checking" - "spelling" - "spf" - "spf13vim" - "spfield" - "spfieldcollection" - "spfile" - "spgridview" - "spgroup" - "sphere" - "sphere.io" - "sphero" - "sphero-api" - "sphinx" - "sphinx4" - "sphinxql" - "sphlib" - "spi" - "spiceworks" - "spid" - "spider" - "spiderlang" - "spidermonkey" - "spigot-algorithm" - "spike" - "spike-arrest" - "spim" - "spin" - "spin.js" - "spinach" - "spine.js" - "spinlock" - "spinner" - "spinning" - "spintax" - "spinwait" - "spip" - "spiral" - "spiratest" - "spire" - "spire.doc" - "spkac" - "spket" - "spl" - "spl-autoload-call" - "spl-autoload-register" - "spl-autoloader" - "splash" - "splash-screen" - "splat" - "splay-tree" - "splfileobject" - "splice" - "spline" - "splines" - "splint" - "splinter" - "splist" - "splistitem" - "split" - "split-apply-combine" - "split-button" - "split-function" - "splitactionbar" - "splitcontainer" - "spliterator" - "splitpane" - "splitpanel" - "splitter" - "splitterpanel" - "splitting" - "splitview" - "splobjectstorage" - "splunk" - "spmd" - "spmetal" - "spml" - "spn" - "spnego" - "spock" - "spoj" - "spoken-language" - "spongycastle" - "spoof" - "spoofax" - "spoofing" - "spookyjs" - "spool" - "spooler" - "spoon" - "spork" - "spotfire" - "spotify" - "spotify-app" - "spotify-desktop" - "spotlight" - "spotlight-dbpedia" - "spotlight-plugin" - "spp" - "spquery" - "sprache" - "spray" - "spray-client" - "spray-dsl" - "spray-json" - "spray-test" - "spread" - "spread-toolkit" - "spreadsheet" - "spreadsheet-excel-writer" - "spreadsheet-gem" - "spreadsheetgear" - "spreadsheetlight" - "spreadsheetml" - "spree" - "spree-auth-devise" - "spree-paypal-express" - "spreedly" - "spring" - "spring-2.5" - "spring-3" - "spring-4" - "spring-4-gwt" - "spring-actionscript" - "spring-amqp" - "spring-android" - "spring-annotations" - "spring-aop" - "spring-aspects" - "spring-batch" - "spring-batch-admin" - "spring-bean" - "spring-board" - "spring-boot" - "spring-cache" - "spring-cloud" - "spring-data" - "spring-data-cassandra" - "spring-data-commons" - "spring-data-couchbase" - "spring-data-document" - "spring-data-elasticsearch" - "spring-data-gemfire" - "spring-data-graph" - "spring-data-hadoop" - "spring-data-jpa" - "spring-data-mongodb" - "spring-data-neo4j" - "spring-data-redis" - "spring-data-rest" - "spring-data-solr" - "spring-dm" - "spring-dsl" - "spring-el" - "spring-environment" - "spring-features" - "spring-flex" - "spring-form" - "spring-gem" - "spring-groovy-config" - "spring-hateoas" - "spring-ide" - "spring-insight" - "spring-integration" - "spring-io" - "spring-ioc" - "spring-java-config" - "spring-jdbc" - "spring-jms" - "spring-jmx" - "spring-jpa" - "spring-js" - "spring-json" - "spring-junit" - "spring-ldap" - "spring-loaded" - "spring-messaging" - "spring-mobile" - "spring-modules" - "spring-mongo" - "spring-mongodb" - "spring-mvc" - "spring-mvc-initbinders" - "spring-mvc-test" - "spring-nature" - "spring-orm" - "spring-oxm" - "spring-portlet-mvc" - "spring-profiles" - "spring-rabbit" - "spring-rcp" - "spring-remoting" - "spring-retry" - "spring-roo" - "spring-saml" - "spring-scheduled" - "spring-security" - "spring-security-acl" - "spring-security-cas" - "spring-security-kerberos" - "spring-security-ldap" - "spring-security-oauth2" - "spring-security-test" - "spring-session" - "spring-shell" - "spring-social" - "spring-social-facebook" - "spring-social-google" - "spring-social-linkedin" - "spring-social-twitter" - "spring-surf" - "spring-test" - "spring-test-dbunit" - "spring-test-htmlunit" - "spring-test-mvc" - "spring-tld" - "spring-tool-suite" - "spring-transactions" - "spring-validator" - "spring-webflow" - "spring-webflow-2" - "spring-websocket" - "spring-ws" - "spring-xd" - "spring.codeconfig" - "spring.net" - "spring2.x" - "spring4d" - "springboard" - "springlayout" - "springloops" - "springmockito" - "springockito" - "springsource" - "springsource-dm-server" - "sprinkle" - "sprint" - "sprint.ly" - "sprite" - "sprite-kit" - "sprite-sheet" - "spritebatch" - "spritebuilder" - "spritefont" - "spritely" - "sprites" - "sprockets" - "sprof" - "sproutcore" - "sproutcore-2" - "sproutcore-controllers" - "sproutcore-views" - "sprox" - "spry" - "spservices" - "spsite" - "spsitedataquery" - "spss" - "sptbxlib" - "spu" - "spuser" - "spuserfield" - "spview" - "spweb" - "spwindowsservice" - "spy" - "spy++" - "spyc" - "spyder" - "spying" - "spymemcached" - "spyne" - "spynner" - "spyon" - "spyware" - "sqa" - "sql" - "sql-agent" - "sql-agent-job" - "sql-authentication" - "sql-azure" - "sql-azure-alerts" - "sql-azure-federations" - "sql-calc-found-rows" - "sql-ce" - "sql-convert" - "sql-copy" - "sql-cte" - "sql-data-services" - "sql-data-tools" - "sql-date-functions" - "sql-default-instance" - "sql-delete" - "sql-domain" - "sql-drop" - "sql-execution-plan" - "sql-function" - "sql-generation" - "sql-import-wizard" - "sql-in" - "sql-injection" - "sql-insert" - "sql-interactive-mode" - "sql-job" - "sql-like" - "sql-limit" - "sql-loader" - "sql-management-studio" - "sql-manager" - "sql-match-all" - "sql-merge" - "sql-mode" - "sql-mr" - "sql-navigator" - "sql-optimization" - "sql-order-by" - "sql-parametrized-query" - "sql-parser" - "sql-pl" - "sql-psm" - "sql-returning" - "sql-scripts" - "sql-search" - "sql-server" - "sql-server-2000" - "sql-server-2005" - "sql-server-2005-express" - "sql-server-2008" - "sql-server-2008-express" - "sql-server-2008-r2" - "sql-server-2008r2-express" - "sql-server-2012" - "sql-server-2012-datatools" - "sql-server-2012-express" - "sql-server-2012-localdb" - "sql-server-2012-web" - "sql-server-2014" - "sql-server-2014-express" - "sql-server-6.5" - "sql-server-7" - "sql-server-administration" - "sql-server-agent" - "sql-server-authentication" - "sql-server-ce" - "sql-server-ce-3.5" - "sql-server-ce-4" - "sql-server-ce-toolbox" - "sql-server-config-manager" - "sql-server-data-services" - "sql-server-data-tools" - "sql-server-express" - "sql-server-express-2005" - "sql-server-express-2008" - "sql-server-group-concat" - "sql-server-job" - "sql-server-migration-assi" - "sql-server-mobile" - "sql-server-native-client" - "sql-server-openxml" - "sql-server-package" - "sql-server-performance" - "sql-server-profiler" - "sql-server-triggers" - "sql-session-state" - "sql-smo" - "sql-standards" - "sql-subselect" - "sql-syntax" - "sql-timestamp" - "sql-to-entity-framework" - "sql-to-linq-conversion" - "sql-translator" - "sql-triggers" - "sql-tuning" - "sql-types" - "sql-update" - "sql-variant" - "sql-view" - "sql-workbench-j" - "sql2java" - "sqladvantage" - "sqlalchemy" - "sqlalchemy-migrate" - "sqlanywhere" - "sqlapi++" - "sqlbase" - "sqlbindparameter" - "sqlbrowser" - "sqlbuddy" - "sqlbuilder" - "sqlbulkcopy" - "sqlcachedependency" - "sqlcedatareader" - "sqlcipher" - "sqlclient" - "sqlclr" - "sqlcmd" - "sqlcode" - "sqlcommand" - "sqlcommandbuilder" - "sqlcompare" - "sqlconnection" - "sqlconnection.close" - "sqldataadapter" - "sqldatadapter" - "sqldatareader" - "sqldatasource" - "sqldatatypes" - "sqldatetime" - "sqldbtype" - "sqldependency" - "sqldf" - "sqldmo" - "sqlexception" - "sqlfairy" - "sqlfiddle" - "sqlfilestream" - "sqlfire" - "sqlfu" - "sqlgeography" - "sqlgeometry" - "sqlhelper" - "sqlike" - "sqlite" - "sqlite-net" - "sqlite-net-extensions" - "sqlite-odbc" - "sqlite.net" - "sqlite2" - "sqlite3" - "sqlite3-ruby" - "sqlitejdbc" - "sqlitemanager" - "sqliteopenhelper" - "sqlitestudio" - "sqlj" - "sqljdbc" - "sqljet" - "sqljocky" - "sqlkorma" - "sqlmail" - "sqlmap" - "sqlmembershipprovider" - "sqlmetal" - "sqlmigrations" - "sqlmp" - "sqlmx" - "sqlncli" - "sqlobject" - "sqloledb" - "sqlpackage" - "sqlparameter" - "sqlparameters" - "sqlperformance" - "sqlplus" - "sqlprofileprovider" - "sqlprofiler" - "sqlproj" - "sqlps" - "sqlpubwiz" - "sqlresultsetmapping" - "sqlroleprovider" - "sqlselect" - "sqlsiphon" - "sqlsitemapprovider" - "sqlsoup" - "sqlsrv" - "sqltools" - "sqltransaction" - "sqlvarchar" - "sqlworkflowpersistencese" - "sqlxml" - "sqlyog" - "sqoop" - "sqoop2" - "sqr" - "sqrl" - "sqrt" - "sqsh" - "square" - "square-bracket" - "square-connect" - "square-cube" - "square-flow" - "square-root" - "square-tape" - "square-wire" - "squarespace" - "squash" - "squashfs" - "squeak" - "squeel" - "squeezebox" - "squeryl" - "squid" - "squirejs" - "squirrel" - "squirrel-sql" - "squirrelfish" - "squirrelmail" - "squish" - "squishit" - "srand" - "src" - "srcset" - "srcsrv" - "sreg" - "srfi" - "srgb" - "srid" - "srp" - "srp-protocol" - "srs" - "srt" - "srv" - "srvany" - "srware-iron" - "ss" - "ss7" - "ssa" - "ssao" - "ssas" - "ssas-2008" - "ssas-2008-r2" - "ssas-2012" - "ssas-tabular" - "sscanf" - "sscli" - "sscrypto" - "ssd" - "ssdl" - "ssdp" - "ssds" - "ssdt" - "ssdt-bi" - "sse" - "sse2" - "sse3" - "sse4" - "ssh" - "ssh-agent" - "ssh-keygen" - "ssh-keys" - "ssh-tunnel" - "ssh.net" - "ssh2-exec" - "ssh2-sftp" - "ssha" - "sshd" - "sshfs" - "sshj" - "sshkit" - "sshpass" - "ssi" - "ssid" - "ssim" - "ssis" - "ssis-2005" - "ssis-2008" - "ssis-2012" - "ssis-data-transformations" - "ssis-data-types" - "ssjs" - "sskeychain" - "ssl" - "ssl-certificate" - "ssl-security" - "sslengine" - "sslexception" - "sslhandshakeexception" - "sslsocketfactory" - "sslstream" - "sslv2" - "sslv3" - "ssml" - "ssms" - "ssms-2005" - "ssms-2008" - "ssms-2012" - "ssms-2014" - "ssms-addin" - "ssms-express" - "ssmtp" - "ssn" - "ssp" - "sspi" - "ssrf" - "ssrs-2000" - "ssrs-2008" - "ssrs-2008-r2" - "ssrs-2012" - "ssrs-2014" - "ssrs-grouping" - "ssrs-reports" - "ssrs-tablix" - "sst" - "sstoolkit" - "sstream" - "st" - "st-monad" - "sta" - "stability" - "stable-identifier" - "stable-marriage" - "stable-sort" - "stablexui" - "stack" - "stack-allocation" - "stack-based" - "stack-corruption" - "stack-dump" - "stack-frame" - "stack-level" - "stack-machine" - "stack-memory" - "stack-size" - "stack-smash" - "stack-trace" - "stack-unwinding" - "stackage" - "stackalloc" - "stackato" - "stacked" - "stacked-area-chart" - "stacked-chart" - "stackedbarseries" - "stackedit" - "stackexchange" - "stackexchange-api" - "stackexchange.redis" - "stackframe" - "stackless" - "stackmob" - "stackoverflow" - "stackoverflow-api" - "stackoverflow.com" - "stackoverflowerror" - "stackoverflowexception" - "stackpanel" - "stackunderflow" - "stackview" - "stacky" - "stado" - "staf" - "staff-wsf" - "stage" - "stage3d" - "stagedisplaystate" - "stagefright" - "stagevideo" - "stagewebview" - "stagewebviewbridge" - "stagexl" - "staggered-gridview" - "staggeredgridlayout" - "staging" - "staging-table" - "staledataexception" - "staleobjectstate" - "stalestateexception" - "stalled" - "stamen-maps" - "stamp" - "stan" - "standard-deviation" - "standard-error" - "standard-icons" - "standard-layout" - "standard-library" - "standardanalyzer" - "standardized" - "standards" - "standards-compliance" - "standby" - "standford-core-nlp" - "stanford-nlp" - "stapes.js" - "stapling" - "star" - "star-schema" - "starcluster" - "starcounter" - "stardog" - "stargate" - "stargazer" - "stario-sdk" - "starkit" - "starling-framework" - "starling-server" - "starman" - "starray" - "start-activity" - "start-job" - "start-of-line" - "start-page" - "start-process" - "start-stop-daemon" - "startapp" - "starteam" - "starter-kits" - "startmenu" - "startprocessinfo" - "startswith" - "starttls" - "startup" - "startup-error" - "startup-folder" - "startup.cmd" - "startupscript" - "staruml" - "stash" - "stat" - "stata" - "statamic" - "state" - "state-diagram" - "state-machine-workflow" - "state-machines" - "state-management" - "state-monad" - "state-pattern" - "state-restoration" - "state-saving" - "state-server" - "state-space" - "statechart" - "stateflow" - "stateful" - "stateful-session-bean" - "stateless" - "stateless-session" - "stateless-session-bean" - "statelist" - "statelistdrawable" - "statement-modifiers" - "statements" - "states" - "stateserver" - "statet" - "static" - "static-allocation" - "static-analysis" - "static-array" - "static-assert" - "static-binding" - "static-block" - "static-cast" - "static-class" - "static-classes" - "static-code-analysis" - "static-compilation" - "static-const" - "static-constructor" - "static-content" - "static-data" - "static-factory" - "static-files" - "static-function" - "static-functions" - "static-html" - "static-if" - "static-import" - "static-indexers" - "static-initialization" - "static-initializer" - "static-ip-address" - "static-language" - "static-libraries" - "static-linking" - "static-media" - "static-members" - "static-memory-allocation" - "static-methods" - "static-order-fiasco" - "static-pages" - "static-polymorphism" - "static-reflection" - "static-resource" - "static-site" - "static-text" - "static-typing" - "static-variables" - "static-visitor" - "static-vs-non-static" - "staticfbml" - "staticfilehandler" - "staticmatic" - "staticresource" - "statistical-analysis" - "statistical-analysis-soft" - "statistical-test" - "statistics" - "statlight" - "statnet" - "statsd" - "statsmodels" - "statspack" - "statsvn" - "status" - "status-message" - "status-register" - "statusbar" - "statusbaritem" - "statusline" - "statusnet" - "statusstrip" - "stax" - "staxmate" - "stay-logged-in" - "stayontop" - "std" - "std-bitset" - "std-function" - "std-pair" - "stdadvance" - "stdafx.h" - "stdarray" - "stdasync" - "stdatomic" - "stdbind" - "stdbool" - "stdcall" - "stdclass" - "stddraw" - "stderr" - "stdin" - "stdint" - "stdio" - "stdlib" - "stdlist" - "stdmap" - "stdnet" - "stdole" - "stdout" - "stdset" - "stdstring" - "stdthread" - "stdtuple" - "stdvector" - "steady.js" - "stealjs" - "steam" - "steam-condenser" - "steam-web-api" - "steambot" - "steelseries" - "steganography" - "stellar.js" - "stellent" - "stemming" - "stencil-buffer" - "stencils" - "stencyl" - "step" - "step-by-step" - "step-into" - "step-through" - "stepic" - "stereo-3d" - "stereoscopy" - "stereotype" - "sterling-db" - "steroids" - "sthttprequest" - "sti" - "sticky" - "sticky-broadcast" - "sticky-footer" - "sticky-windows" - "stickynote" - "stimulsoft" - "stingray" - "stipple" - "stk" - "stl" - "stl-algorithm" - "stl-decomposition" - "stlmap" - "stlport" - "stm" - "stm32" - "stm32f4discovery" - "stm32l152" - "stm32ldiscovery" - "stochastic" - "stochastic-process" - "stock" - "stockquotes" - "stocks" - "stocktwits" - "stofdoctrineextensions" - "stomp" - "stomp-websocket" - "stompjs" - "stonith" - "stop-words" - "stopiteration" - "stoppropagation" - "stopwatch" - "storable" - "storage" - "storage-access-framework" - "storage-class-specifier" - "storage-duration" - "storage-engines" - "storagefile" - "storagefolder" - "store" - "store-data" - "stored-functions" - "stored-procedures" - "storefront" - "storekit" - "stories" - "storing-data" - "storing-information" - "storm" - "storm-gen" - "storm-hadoop" - "storm-orm" - "stormpath" - "story" - "storyboard" - "storyboarding" - "storyq" - "stp" - "str" - "str-replace" - "str-to-date" - "strace" - "strassen" - "strategy" - "strategy-pattern" - "stratifiedjs" - "stratus" - "strawberry-perl" - "strcat" - "strcat-s" - "strchr" - "strcmp" - "strconv" - "strcpy" - "strdup" - "stream" - "stream-cipher" - "stream-compaction" - "stream-fusion" - "stream-graph" - "stream-operators" - "stream-processing" - "stream-socket-client" - "stream-wrapper" - "streambase" - "streambuf" - "streaming" - "streaming-algorithm" - "streaming-flv-video" - "streaming-radio" - "streaming-replication" - "streaming-video" - "streamingmarkupbuilder" - "streaminsight" - "streampad" - "streamreader" - "streams2" - "streamwriter" - "streamwriter.write" - "street-address" - "strength-reduction" - "strerror" - "stress" - "stress-testing" - "stretch" - "stretchblt" - "stretchdibits" - "stretched" - "stretching" - "strftime" - "strict" - "strict-aliasing" - "strict-mode" - "strict-weak-ordering" - "strictfp" - "strictmode" - "strictness" - "strictures" - "stride" - "strikethrough" - "string" - "string-aggregation" - "string-algorithm" - "string-array" - "string-building" - "string-comparison" - "string-concatenation" - "string-constant" - "string-conversion" - "string-decoding" - "string-evaluation" - "string-externalization" - "string-formatting" - "string-hashing" - "string-interning" - "string-interpolation" - "string-length" - "string-literals" - "string-matching" - "string-math" - "string-metric" - "string-parsing" - "string-pool" - "string-search" - "string-split" - "string-substitution" - "string-table" - "string-to-datetime" - "string-to-symbol" - "string-utils" - "string.format" - "string.h" - "stringbuffer" - "stringbuilder" - "stringbyevaluatingjavascr" - "stringcollection" - "stringcomparer" - "stringdictionary" - "stringescapeutils" - "stringformat" - "stringgrid" - "stringi" - "stringification" - "stringify" - "stringio" - "stringize" - "stringr" - "stringreader" - "stringstream" - "stringtemplate" - "stringtemplate-4" - "stringtokenizer" - "stringwithcapacity" - "stringwithformat" - "stringwithstring" - "stringwriter" - "strip" - "strip-tags" - "stripchart" - "stripe-payments" - "stripe.net" - "stripes" - "stripos" - "stripping" - "stripslashes" - "strlen" - "strncmp" - "strncpy" - "strobe-media-playback" - "stroke" - "stroke-dasharray" - "strokeshadow" - "strong" - "strong-named-key" - "strong-parameters" - "strong-references" - "strong-typing" - "strongloop" - "strongly-typed-dataset" - "strongly-typed-enum" - "strongly-typed-helper" - "strongly-typed-view" - "strongname" - "strophe" - "strpos" - "strptime" - "strrchr" - "strsafe" - "strsep" - "strsplit" - "strstr" - "strstream" - "strtod" - "strtofloat" - "strtok" - "strtol" - "strtotime" - "strtoull" - "strtr" - "struct" - "struct-vs-class" - "struct.pack" - "structlayout" - "structr" - "structural-equality" - "structural-search" - "structural-typing" - "structure" - "structure-from-motion" - "structured-array" - "structured-data" - "structured-exception" - "structured-programming" - "structured-references" - "structured-storage" - "structured-text" - "structuremap" - "structuremap3" - "structures" - "struts" - "struts-1" - "struts-1.x" - "struts-action" - "struts-config" - "struts-html" - "struts-tags" - "struts-validation" - "struts1" - "struts2" - "struts2-actionflow-plugin" - "struts2-codebehind-plugin" - "struts2-config-browser" - "struts2-convention-plugin" - "struts2-interceptors" - "struts2-jfreechart-plugin" - "struts2-jquery" - "struts2-jquery-grid" - "struts2-jquery-plugin" - "struts2-json-plugin" - "struts2-junit-plugin" - "struts2-namespace" - "struts2-rest-plugin" - "struts2-s2hibernate" - "struts2-tiles-plugin" - "sts-securitytokenservice" - "sts-simple-templatesystem" - "sts-springsourcetoolsuite" - "stsadm" - "sttwitter" - "stty" - "stuarray" - "stub" - "stub-data-generation" - "stubbing" - "stubs" - "studioshell" - "stumbleupon" - "stun" - "stunnel" - "stx" - "stxxl" - "styleable" - "stylebundle" - "stylecop" - "stylecop-plus" - "styleddocument" - "styledtext" - "styles" - "stylesheet" - "stylesheet-link-tag" - "styleswitching" - "styling" - "stylish" - "stylus" - "stylus-pen" - "su" - "sua" - "sub-array" - "sub-arrays" - "subactivity" - "subant" - "subapplication" - "subclass" - "subclasses" - "subclassing" - "subclipse" - "subcommand" - "subcontroller" - "subcut" - "subdirectories" - "subdirectory" - "subdirs" - "subdocument" - "subdomain" - "subdomain-fu" - "subdomains" - "subfigure" - "subfolder" - "subform" - "subforms" - "subgit" - "subgraph" - "subgrid" - "subgurim-maps" - "subitem" - "subject" - "subject-observer" - "sublayout" - "sublime-build" - "sublime-jslint" - "sublime-text-plugin" - "sublimecodeintel" - "sublimelinter" - "sublimelinterrc" - "sublimerepl" - "sublimerope" - "sublimetext" - "sublimetext2" - "sublimetext3" - "subliminal" - "sublist" - "submatrix" - "submenu" - "submission" - "submit" - "submit-button" - "submitchanges" - "submitting" - "submodule" - "subnet" - "subobject" - "subparsers" - "subpixel" - "subplot" - "subprocess" - "subproject" - "subquery" - "subquery-factoring" - "subreport" - "subreports" - "subrepos" - "subroutine" - "subroutine-prototypes" - "subsampling" - "subscribe" - "subscribe2" - "subscriber" - "subscript" - "subscript-operator" - "subscription" - "subscriptions" - "subselect" - "subsequence" - "subset" - "subset-sum" - "subsetting" - "subshell" - "subsonic" - "subsonic-active-record" - "subsonic-select" - "subsonic-simplerepository" - "subsonic-v3p2" - "subsonic2.0" - "subsonic2.2" - "subsonic3" - "subst" - "substage" - "substance" - "substitute" - "substitution" - "substr" - "substring" - "substrings" - "subsystem" - "subtext" - "subtitle" - "subtotal" - "subtract" - "subtraction" - "subtree" - "subtype" - "subtyping" - "subversion-edge" - "subversive" - "subview" - "subviews" - "success" - "successor-arithmetics" - "sucker-punch" - "suckerfish" - "sudo" - "sudoers" - "sudoku" - "suds" - "sudzc" - "suexec" - "suffix-array" - "suffix-tree" - "sugar.js" - "sugarbean" - "sugarcrm" - "sugarorm" - "suggestbox" - "suhosin" - "suid" - "suite" - "suitecrm" - "sum" - "sum-of-digits" - "sumifs" - "summarization" - "summary" - "summernote" - "sun" - "sun-codemodel" - "sun-coding-conventions" - "sunburnt" - "sunburst-diagram" - "suncc" - "sundance" - "sungridengine" - "sunone" - "sunos" - "sunrpc" - "sunspot" - "sunspot-rails" - "sunspot-solr" - "sunstudio" - "suo" - "sup" - "super" - "super-columns" - "superagent" - "superblock" - "superclass" - "supercollider" - "supercomputers" - "supercsv" - "superfeedr" - "superfish" - "superglobals" - "superobject" - "superpixels" - "superpreview" - "superscript" - "superscrollorama" - "superset" - "supersized" - "supersocket.net" - "supertab" - "supertest" - "supertype" - "superview" - "supervised-learning" - "supervisingcontroller" - "supervisor" - "supervisor-mode" - "supervisord" - "suphp" - "supplementary" - "support-vector-machines" - "supportmapfragment" - "suppress" - "suppress-warnings" - "suppressfinalize" - "suppression" - "suppressmessage" - "supquery" - "surefire" - "surf" - "surface" - "surface-controller" - "surface-toolkit" - "surfaceflinger" - "surfaceholder" - "surfaceview" - "suriwire" - "surrogate-key" - "surrogate-pairs" - "surround" - "surroundscm" - "surveillance" - "survey" - "surveymonkey" - "surveyor-gem" - "survival-analysis" - "sus" - "suse" - "suspend" - "sustainable-pace" - "susy" - "susy-compass" - "susy-next" - "susy-sass" - "svc" - "svctraceviewer" - "svcutil.exe" - "svd" - "svd-xbee" - "svenson" - "svg" - "svg-android" - "svg-animate" - "svg-edit" - "svg-filters" - "svg-font" - "svg.js" - "svggraph" - "svgkit" - "svgweb" - "svk" - "svm" - "svmlight" - "svn" - "svn-administraton" - "svn-api" - "svn-checkout" - "svn-client" - "svn-config" - "svn-copy" - "svn-export" - "svn-externals" - "svn-hooks" - "svn-lock" - "svn-merge" - "svn-merge-reintegrate" - "svn-notify" - "svn-organization" - "svn-propset" - "svn-reintegrate" - "svn-repository" - "svn-server" - "svn-ssh" - "svn-switch" - "svn-trunk" - "svn-update" - "svn2git" - "svnadmin" - "svnant" - "svnbridge" - "svncommit" - "svndump" - "svndumpfilter" - "svnignore" - "svnkit" - "svnlook" - "svnserve" - "svnsync" - "svnx" - "svprogresshud" - "svrl" - "svsocket" - "swagger" - "swagger-2.0" - "swagger-editor" - "swagger-maven-plugin" - "swagger-node-express" - "swagger-php" - "swagger-play2" - "swagger-ui" - "swallowed-exceptions" - "swampy" - "swank" - "swank-clojure" - "swank-js" - "swap" - "swapfile" - "swarm" - "swc" - "sweave" - "sweeper" - "sweet.js" - "sweetalert" - "sweethome3d" - "swf" - "swf-compiler" - "swf-decompiler" - "swfaddress" - "swfloader" - "swfmill" - "swfobject" - "swfupload" - "swi-prolog" - "swift" - "swift-array" - "swift-closures" - "swift-dictionary" - "swift-extensions" - "swift-generics" - "swift-immediate-mode" - "swift-mt" - "swift-playground" - "swift-protocols" - "swiften" - "swiftmailer" - "swiftsuspenders" - "swifty-json" - "swiftype" - "swig" - "swig-template" - "swing" - "swing-application-framewo" - "swingbuilder" - "swingutilities" - "swingworker" - "swingx" - "swipe" - "swipe-gesture" - "swipe.js" - "swiper" - "swiperefreshlayout" - "swipestripe" - "swipeview" - "swish" - "swissql" - "switch" - "switch-case" - "switch-statement" - "switch-user" - "switchcompat" - "switchcontrol" - "switchers" - "switching" - "switchpreference" - "swixml" - "swiz" - "swizzling" - "swordv2" - "swp" - "swrevealviewcontroller" - "swrl" - "swt" - "swt-awt" - "swtbot" - "swtchart" - "swx" - "sxml" - "sxs" - "sybase" - "sybase-asa" - "sybase-ase" - "sybase-iq" - "sybase-rs" - "syck" - "sygic" - "sylius" - "syllable" - "sylvester" - "symantec" - "symbian" - "symbian3" - "symbol" - "symbol-capture" - "symbol-not-found" - "symbol-server" - "symbol-table" - "symbol-tables" - "symbolic-computation" - "symbolic-math" - "symbolic-references" - "symbolicate" - "symbolicatecrash" - "symbolicc++" - "symbols" - "symfony-1.2" - "symfony-1.3" - "symfony-1.4" - "symfony-2.0" - "symfony-2.1" - "symfony-2.2" - "symfony-2.3" - "symfony-2.5" - "symfony-2.6" - "symfony-cmf" - "symfony-components" - "symfony-console" - "symfony-filesystem" - "symfony-finder" - "symfony-forms" - "symfony-http-foundation" - "symfony-plugins" - "symfony-routing" - "symfony-security" - "symfony-sonata" - "symfony-voters" - "symfony1" - "symfony2" - "symfony2-forms" - "symfony2-services" - "symfony2.4" - "symfony3" - "symja" - "symlink" - "symlink-traversal" - "symmetric" - "symmetric-difference" - "symmetric-key" - "symmetricds" - "symmetry" - "symphony-cms" - "sympy" - "symstore" - "syn" - "synapse" - "sync" - "syncback" - "syncdb" - "syncfusion" - "syncfx" - "synchronisation" - "synchronization" - "synchronizationcontext" - "synchronize" - "synchronized" - "synchronized-block" - "synchronizing" - "synchronous" - "synclock" - "syncml" - "syncroot" - "syncservices" - "syncsort" - "synctool" - "syndication" - "syndication-feed" - "syndication-item" - "syndicationfeed" - "synedit" - "synergy-dbl" - "synology" - "synonym" - "synopsys-vcs" - "syntactic-sugar" - "syntastic" - "syntax" - "syntax-checking" - "syntax-error" - "syntax-highlighting" - "syntax-object" - "syntax-rules" - "syntaxhighlighter" - "synth" - "synthesis" - "synthesize" - "synthesizer" - "synthetic" - "synthetica" - "syphon" - "sys" - "sys-refcursor" - "sys.dm-sql" - "sys.path" - "sysadmin" - "sysbios" - "syscache" - "syscache2" - "syscall" - "sysctl" - "sysdatabases" - "sysdate" - "sysdatetime" - "sysdba" - "sysdeo" - "sysenter" - "sysex" - "sysfs" - "sysin" - "sysinfo" - "sysinternals" - "syslinux" - "syslistview32" - "syslog" - "syslog-ng" - "syslog4j" - "sysobjects" - "sysoperationframework" - "sysprep" - "system" - "system-administration" - "system-alert-window" - "system-analysis" - "system-calls" - "system-center" - "system-clock" - "system-codedom-compiler" - "system-configuration" - "system-console" - "system-databases" - "system-dependent" - "system-design" - "system-drawing" - "system-error" - "system-f" - "system-font" - "system-generator" - "system-identification" - "system-idle-process" - "system-information" - "system-integration" - "system-monitoring" - "system-paths" - "system-preferences" - "system-procedures" - "system-profiler" - "system-properties" - "system-requirements" - "system-restore" - "system-rules" - "system-setting" - "system-shutdown" - "system-sounds" - "system-status" - "system-stored-procedures" - "system-tables" - "system-testing" - "system-tray" - "system-variable" - "system-verilog" - "system-views" - "system.addin" - "system.argumentexception" - "system.array" - "system.componentmodel" - "system.configuration" - "system.data" - "system.data.datatable" - "system.data.oracleclient" - "system.data.sqlite" - "system.diagnostics" - "system.directoryservices" - "system.dll" - "system.drawing" - "system.drawing.color" - "system.drawing.graphics" - "system.drawing.imaging" - "system.err" - "system.exit" - "system.graphics" - "system.in" - "system.interactive" - "system.io.directory" - "system.io.file" - "system.io.fileinfo" - "system.io.packaging" - "system.json" - "system.management" - "system.messaging" - "system.net" - "system.net.httpwebrequest" - "system.net.mail" - "system.net.sockets" - "system.net.webexception" - "system.net.websockets" - "system.numerics.vectors" - "system.out" - "system.printing" - "system.reactive" - "system.reflection" - "system.security" - "system.speech.recognition" - "system.timers.timer" - "system.transactions" - "system.type" - "system.version" - "system.web" - "system.web.abstractions" - "system.web.caching" - "system.web.extensions" - "system.web.mail" - "system.web.optimization" - "system.web.routing" - "system.web.ui.webcontrols" - "system.windows.media" - "system.xml" - "system2" - "system32" - "systemc" - "systemcolors" - "systemd" - "systemdynamics" - "systemevent" - "systemexit" - "systemfit" - "systemjs" - "systemmanagement" - "systemmenu" - "systemmodeler" - "systems-programming" - "systemtap" - "systemtime" - "systemwrapper" - "systrace" - "systray" - "systypes.h" - "sysv" - "sysv-ipc" - "syswow64" - "t4" - "t4-template" - "t4-toolbox" - "t4mvc" - "t4scaffolding" - "t9" - "ta-lib" - "tab-completion" - "tab-delimited" - "tab-delimited-text" - "tab-ordering" - "tab-size" - "tabactivity" - "tabbar" - "tabbarcontroller" - "tabbed" - "tabbed-browsing" - "tabbed-document-interface" - "tabbed-interface" - "tabbed-view" - "tabbedpage" - "tabbedviewnavigator" - "tabbing" - "tabcontainer" - "tabcontrol" - "tabexpansion" - "tabindex" - "tabitem" - "table" - "table-adapter" - "table-alias" - "table-data-gateway" - "table-definition" - "table-design" - "table-driven" - "table-footer" - "table-functions" - "table-index" - "table-inheritance" - "table-lock" - "table-locking" - "table-manipulation" - "table-per-class" - "table-per-hierarchy" - "table-per-subclass" - "table-per-type" - "table-relationships" - "table-rename" - "table-splitting" - "table-statistics" - "table-structure" - "table-valued-parameters" - "table-variable" - "tableadapter" - "tableadapters" - "tableau" - "tableau-online" - "tableau-server" - "tablecell" - "tablecelleditor" - "tablecellrenderer" - "tablecolumn" - "tablednd" - "tablefilter" - "tablefooterview" - "tablegateway" - "tableheader" - "tablelayout" - "tablelayoutpanel" - "tablemodel" - "tablename" - "tableofcontents" - "tablerow" - "tablerowsorter" - "tableservicescontext" - "tablesorter" - "tablespace" - "tablet" - "tablet-pc" - "tabletools" - "tableview" - "tableviewcell" - "tableviewer" - "tabnavigator" - "tabpage" - "tabpanel" - "tabris" - "tabs" - "tabslideout" - "tabstop" - "tabu-search" - "tabular" - "tabular-form" - "tabview" - "tabwidget" - "tachyon" - "tacit-programming" - "taconite" - "tactic" - "taction" - "tactionlist" - "tactionmanager" - "tadodataset" - "tadoquery" - "tadotable" - "taffy" - "taffydb" - "tag-cloud" - "tag-handler" - "tag-it" - "tag-manipulation" - "tag-property" - "tag-soup" - "tagbar" - "tagbuilder" - "tagcanvas" - "tagfile" - "tagged-corpus" - "tagged-pdf" - "tagging" - "taglet" - "taglib" - "taglib-ruby" - "taglib-sharp" - "taglist" - "tagname" - "tagprefix" - "tags" - "tagx" - "tail" - "tail-call" - "tail-call-optimization" - "tail-recursion" - "taillistener" - "tailrecursion-modulo-cons" - "taint" - "taint-checking" - "taip" - "take" - "tal" - "talend" - "taleo" - "talkback" - "tamejs" - "tamil" - "tamper-data" - "tampering" - "tampermonkey" - "tandem" - "tangible-t4-editor" - "tanglejs" - "tango" - "tankauth" - "tanuki" - "tao" - "tao-framework" - "tao.ffmpeg" - "taocp" - "tap" - "tap-harness" - "tapandhold" - "tapestry" - "taphold" - "tapi" - "tapjoy" - "tapku" - "tapply" - "taps" - "tar" - "tarantino" - "tarantula" - "tarfile" - "target" - "target-action" - "target-audience" - "target-framework" - "target-platform" - "target-sdk" - "target-typing" - "targeting" - "targetinvocationexception" - "targetnullvalue" - "targetprocess" - "targets" - "targettype" - "tarjans-algorithm" - "task" - "task-management" - "task-manager" - "task-parallel-library" - "task-queue" - "task-switching" - "task-tracking" - "taskaffinity" - "taskbar" - "taskcompletionsource" - "taskdef" - "taskdialog" - "tasker" - "taskfactory" - "taskjs" - "taskkill" - "tasklet" - "tasklist" - "taskmanager" - "taskservice" - "tasm" - "tastypie" - "tattletale" - "tatukgis" - "taxonomy" - "taylor-series" - "tayra" - "tbar" - "tbb" - "tbcd" - "tbitmap" - "tbsooo" - "tbucketlist" - "tbuttonededit" - "tbxml" - "tcanvas" - "tcc" - "tchar" - "tcheckbox" - "tchecklistbox" - "tchromium" - "tcl" - "tcl-api" - "tcldevkit" - "tclientdataset" - "tclientsock" - "tclientsocket" - "tclsh" - "tclws" - "tcm" - "tcmalloc" - "tcollection" - "tcollectionitem" - "tcollector" - "tcolor" - "tcombobox" - "tcomponent" - "tcomport" - "tcp" - "tcp-ip" - "tcp-port" - "tcp-slow-start" - "tcpchannel" - "tcpclient" - "tcpdf" - "tcpdump" - "tcplistener" - "tcpmon" - "tcpportsharing" - "tcpreplay" - "tcpserver" - "tcpsocket" - "tcptrace" - "tcptrace-pocketsoap" - "tcserver" - "tcsh" - "tcustomcontrol" - "tcxgrid" - "tdataset" - "tdatasetprovider" - "tdatetime" - "tdatetimepicker" - "tdb" - "tdbf" - "tdbgrid" - "tdd" - "tde" - "tdictionary" - "tdm-mingw" - "tdom" - "tds" - "tdsodbc" - "tdxmemdata" - "tea-cipher" - "teacup" - "team" - "team-build" - "team-build2010" - "team-explorer" - "team-explorer-everywhere" - "team-management" - "team-project" - "team-project-collection" - "teambuild2010" - "teambuilding" - "teamcity" - "teamcity-4" - "teamcity-5.0" - "teamcity-5.1" - "teamcity-6" - "teamcity-7.0" - "teamcity-7.1" - "teamcity-8.0" - "teamcity-9.0" - "teamforge" - "teamprise" - "teamsite" - "teamstudio-analyzer" - "teamstudio-unplugged" - "teamsystem" - "teamviewer" - "teamwork" - "teardown" - "tearing" - "teaser" - "teaspoon" - "teched" - "techlog" - "technet" - "technical-debt" - "technology-stack" - "tedious" - "tee" - "teechart" - "teensy" - "tegra" - "tei" - "teiid" - "tel" - "telecommunication" - "telegram" - "telemetry" - "telepathy-python" - "telephone-api" - "telephony" - "telephonymanager" - "telerik" - "telerik-2012q2" - "telerik-ajax" - "telerik-appbuilder" - "telerik-charting" - "telerik-combobox" - "telerik-datepicker" - "telerik-editor" - "telerik-grid" - "telerik-javascript" - "telerik-mvc" - "telerik-open-access" - "telerik-radformdecorator" - "telerik-radinput" - "telerik-radlistbox" - "telerik-radmaskedtextbox" - "telerik-radribbonbar" - "telerik-reporting" - "telerik-scheduler" - "telerik-test-studio" - "telerik-testing-tools" - "telerik-window" - "telescope" - "television" - "tell" - "tell-dont-ask" - "telligent" - "telnet" - "telnetlib" - "telpad" - "telprompt" - "tembeddedwb" - "temboo" - "temp" - "temp-tables" - "tempdata" - "tempdb" - "tempdir" - "temperature" - "tempfile" - "template-aliases" - "template-classes" - "template-control" - "template-deduction" - "template-engine" - "template-function" - "template-haskell" - "template-inheritance" - "template-lite" - "template-matching" - "template-meta-programming" - "template-metal" - "template-method-pattern" - "template-methods" - "template-mixins" - "template-specialization" - "template-strings" - "template-tal" - "template-templates" - "template-toolkit" - "templatebinding" - "templatefield" - "templatepower" - "templates" - "templates-deduction" - "templatetag" - "templatetags" - "templating" - "templating-engine" - "templatizer" - "templavoila" - "tempo" - "tempodb" - "temporal" - "temporal-database" - "temporal-difference" - "temporaries" - "temporary" - "temporary-asp.net-files" - "temporary-directory" - "temporary-files" - "temporary-objects" - "teneo" - "tenfold" - "teradata" - "teradata-aster" - "terasoluna" - "term" - "term-document-matrix" - "termcap" - "terminal" - "terminal-color" - "terminal-emulator" - "terminal-ide" - "terminal-server" - "terminal-services" - "terminal-services-gateway" - "terminate" - "terminate-handler" - "termination" - "terminator" - "terminfo" - "terminology" - "termios" - "terms-of-use" - "tern" - "ternary" - "ternary-operator" - "ternary-representation" - "ternary-search" - "ternary-search-tree" - "ternary-tree" - "ternjs" - "terr" - "terracotta" - "terrain" - "terse" - "tesla" - "tess4j" - "tesselation" - "tessellation" - "tesseract" - "tessnet2" - "test-and-set" - "test-and-target" - "test-class" - "test-coverage" - "test-data" - "test-environments" - "test-explorer" - "test-first" - "test-framework" - "test-is" - "test-kitchen" - "test-more" - "test-plan" - "test-project" - "test-refactoring" - "test-reporting" - "test-runner" - "test-suite" - "test.check" - "testability" - "testacular" - "testautomationfx" - "testbed" - "testcase" - "testcaseattribute" - "testcasedata" - "testcasesource" - "testcomplete" - "testcontext" - "testdirector" - "testdox" - "testdriven.net" - "testdrivendesign" - "testdroid" - "testem" - "testflight" - "testify" - "testimonials" - "testing" - "testing-strategies" - "testkit" - "testlink" - "testng" - "testr" - "testrail" - "testrunconfig" - "teststand" - "testswarm" - "testthat" - "testtrack" - "testunit" - "testwise" - "testwise-recorder" - "tether" - "tethering" - "tethne" - "tetrahedra" - "tetris" - "tex" - "tex-live" - "tex4ht" - "texas-instruments" - "texinfo" - "texlipse" - "texmacs" - "texmaker" - "texnic-center" - "texreg" - "text" - "text-align" - "text-alignment" - "text-analysis" - "text-based" - "text-capture" - "text-classification" - "text-coloring" - "text-comparison" - "text-compression" - "text-database" - "text-decoding" - "text-decorations" - "text-driver" - "text-editor" - "text-extraction" - "text-files" - "text-formatting" - "text-indent" - "text-justify" - "text-manipulation" - "text-mining" - "text-parsing" - "text-processing" - "text-recognition" - "text-rendering" - "text-rotating" - "text-search" - "text-segmentation" - "text-services-framework" - "text-size" - "text-styling" - "text-to-html" - "text-to-speech" - "text-widget" - "text-width" - "text-wrap" - "text2image" - "textarea" - "textblob" - "textblock" - "textbox" - "textboxextender" - "textboxlist" - "textbuffer" - "textchanged" - "textcolor" - "textcompositionmanager" - "textctrl" - "textdidchange" - "textdocumentproxy" - "textedit" - "textexpander" - "textfield" - "textfieldparser" - "textflow" - "textformat" - "texticle" - "textile" - "textinput" - "textkit" - "textlabel" - "textmatching" - "textmate" - "textmate-1.5" - "textmate2" - "textmatebundles" - "textnode" - "textout" - "textpad" - "textpattern" - "textrange" - "textreader" - "textrenderer" - "textscan" - "textselection" - "texttemplate" - "texttransform" - "texttrimming" - "texttt" - "texture-atlas" - "texture-mapping" - "texture-packing" - "texture1d" - "texture2d" - "texturepacker" - "textures" - "textureview" - "texturing" - "textutils" - "textview" - "textwatcher" - "textwrangler" - "textwrapping" - "textwriter" - "tf" - "tf-idf" - "tfhpple" - "tfield" - "tfignore" - "tfilestream" - "tform" - "tfpdf" - "tframe" - "tfs" - "tfs-alerts" - "tfs-api" - "tfs-azure" - "tfs-events" - "tfs-express" - "tfs-lab" - "tfs-migration" - "tfs-power-tools" - "tfs-process-template" - "tfs-reports" - "tfs-sdk" - "tfs-security" - "tfs-to-tfs-migration-tool" - "tfs-web-access" - "tfs-workflow" - "tfs-workitem" - "tfs11" - "tfs2005" - "tfs2008" - "tfs2010" - "tfs2012" - "tfs2013" - "tfs2014" - "tfsbuild" - "tfsintegrationplatform" - "tftp" - "tfvc" - "tga" - "tgifimage" - "tgmath" - "tgrid" - "tgridpanel" - "thai" - "thawte" - "the-little-schemer" - "theadid" - "theano" - "thejit" - "themeroller" - "themes" - "theming" - "themoviedb-api" - "theorem" - "theorem-proving" - "theory" - "theos" - "thermal-printer" - "therubyracer" - "thesaurus" - "thesis" - "thick-client" - "thickbox" - "thickness" - "thin" - "thin-client" - "thinfinity-ui" - "thinkful" - "thinking-sphinx" - "thinkorswim" - "thinkpad" - "thinkphp" - "thinkscript" - "thinktecture-ident-model" - "thinktecture-ident-server" - "thinkup" - "thinlet" - "third-normal-form" - "third-party" - "third-party-api" - "third-party-code" - "third-party-controls" - "third-party-cookie" - "this" - "this-keyword" - "this-pointer" - "thor" - "thorax.js" - "thoughtworks" - "thoughtworks-cruise" - "thoughtworks-go" - "thread-abort" - "thread-dump" - "thread-exceptions" - "thread-local" - "thread-local-storage" - "thread-priority" - "thread-safe" - "thread-safety" - "thread-sanitizer" - "thread-sleep" - "thread-specific-storage" - "thread-state" - "thread-static" - "thread-synchronization" - "thread-weaver" - "threadabortexception" - "threadcontext" - "threaded-comments" - "threadgroup" - "threadpool" - "threadpoolexecutor" - "threads-a-gogo" - "threads.h" - "threadscope" - "threadstatic" - "threadx" - "threat-model" - "thredds" - "three-tier" - "three-valued-logic" - "three-way-merge" - "three.js" - "three20" - "threecsg" - "threepenny-gui" - "threestate" - "threeten" - "threetenbp" - "threshold" - "thrift" - "thrift-protocol" - "throbber" - "throttle" - "throttling" - "throughput" - "throw" - "throwable" - "throwaway" - "throws" - "thrust" - "thruway" - "thttpd" - "thucydides" - "thumb" - "thumbnail-toolbar" - "thumbnails" - "thumbs-up" - "thunderbird" - "thunderbird-addon" - "thunderbird-lightning" - "thunk" - "thymeleaf" - "ti-83" - "ti-84" - "ti-basic" - "ti-dsp" - "ti-nspire" - "tibco" - "tibco-ems" - "tibco-gi" - "tibco-rv" - "tibco-topic" - "tibero" - "tic-tac-toe" - "ticker" - "ticket" - "ticket-system" - "ticket-tracking" - "ticoredatasync" - "tidal-scheduler" - "tiddlywiki" - "tidekit" - "tidesdk" - "tidy" - "tidyr" - "tie" - "tiers" - "tiff" - "tig" - "tigase" - "tiger" - "tiger-lines" - "tightly-coupled-code" - "tigra-calendar" - "tigris" - "tika" - "tiki-wiki" - "tikz" - "tilde" - "tilde-expansion" - "tile" - "tile-engine" - "tilecache" - "tiled" - "tilelist" - "tilemill" - "tilera" - "tiles" - "tiles-3" - "tiles-game" - "tiles2" - "tilestache" - "tiling" - "tilt" - "tilt-sensor" - "timage" - "timagelist" - "time" - "time-and-attendance" - "time-bomb" - "time-complexity" - "time-estimation" - "time-format" - "time-frequency" - "time-hires" - "time-limiting" - "time-management" - "time-measurement" - "time-precision" - "time-saving" - "time-select" - "time-series" - "time-t" - "time-tracking" - "time-travel" - "time-trial" - "time-wait" - "time.h" - "timeago" - "timecodes" - "timecop" - "timed" - "timed-events" - "timedelay" - "timedelta" - "timefield" - "timeit" - "timelapse" - "timeline" - "timeline.js" - "timelinemarkers" - "timemachine" - "timeofday" - "timeout" - "timeout-dialog.js" - "timeoutexception" - "timepicker" - "timer" - "timer-jobs" - "timertask" - "timeserieschart" - "timeslots" - "timespace" - "timespan" - "timespec" - "timestamp" - "timestamp-analysis" - "timestamp-with-timezone" - "timestamping" - "timesten" - "timetable" - "timeunit" - "timeval" - "timezone" - "timezoneoffset" - "timing" - "timing-diagram" - "timing-framework" - "timsort" - "timthumb" - "timtowtdi" - "timus-online-judge" - "tin-can-api" - "tingodb" - "tinkergraph" - "tinkerpop" - "tinkerpop-blueprint" - "tinkerpop-frames" - "tinkerpop3" - "tinn-r" - "tint" - "tintcolor" - "tinterfacedobject" - "tintobjecthashmap" - "tiny-carousel" - "tiny-tds" - "tinyalsa" - "tinybox2" - "tinybutstrong" - "tinycthread" - "tinydb" - "tinydoc" - "tinyeditor" - "tinyint" - "tinyioc" - "tinymce" - "tinymce-3" - "tinymce-4" - "tinymce-rails" - "tinymvc" - "tinyos" - "tinypg" - "tinyscrollbar" - "tinysort" - "tinytest" - "tinytext" - "tinyurl" - "tinyweb" - "tinyxml" - "tinyxml++" - "tinyxpath" - "tipc" - "tipfy" - "tips-and-tricks" - "tipsy" - "tiptip" - "tire" - "titan" - "titan-db" - "titanium" - "titanium-alloy" - "titanium-android" - "titanium-mobile" - "titanium-modules" - "titanium-proxy" - "titanium-widgets" - "title" - "title-case" - "titleareadialog" - "titlebar" - "titled-border" - "titleview" - "tivo" - "tivoli" - "tivoli-identity-manager" - "tix" - "tizen" - "tizen-emulator" - "tizen-wearable-sdk" - "tizen-web-app" - "tizen-web-simulator" - "tjws" - "tk" - "tkinter" - "tkinter-canvas" - "tkmessagebox" - "tkplot" - "tkx" - "tla+" - "tlabel" - "tlb" - "tlbexp" - "tlbimp" - "tld" - "tlf" - "tlindexpathtools" - "tlist" - "tlistbox" - "tlistview" - "tls" - "tlv" - "tlyshynavbar" - "tm" - "tmail" - "tmapiclient" - "tmemo" - "tmenuitem" - "tmonitor" - "tmp" - "tmpfile" - "tmpfs" - "tms" - "tmsh" - "tmux" - "tmuxinator" - "tmx" - "tnef" - "tns" - "tnsnames" - "tnsping" - "tnt4j" - "tntnet" - "to-char" - "to-date" - "to-json" - "to-timestamp" - "to-yaml" - "toad" - "toarray" - "toast" - "toastr" - "tobago" - "tobject" - "tobjectlist" - "toc" - "todataurl" - "today-extension" - "todictionary" - "todo" - "todos" - "toe.js" - "toeplitz" - "tofixed" - "togaf" - "togetherjs" - "toggle" - "togglebutton" - "togglebuttonbar" - "toggleclass" - "toggleswitch" - "togglz" - "tokbox" - "token" - "tokenautocomplete" - "tokend" - "tokenize" - "tokudb" - "tokumx" - "tokyo-cabinet" - "tokyo-tyrant" - "tolist" - "toll-free-bridging" - "tolog" - "tolower" - "tolua++" - "tomahawk" - "tomato-cms" - "tombstone" - "tombstoning" - "tomcat" - "tomcat-jdbc" - "tomcat-juli" - "tomcat-manager" - "tomcat-valve" - "tomcat5" - "tomcat5.5" - "tomcat6" - "tomcat7" - "tomcat8" - "tomee" - "tomography-reconstruction" - "tomtom" - "tone-generator" - "tonic" - "tool-rec" - "tool-uml" - "toolbar" - "toolbaritems" - "toolbarjs" - "toolbars" - "toolbox" - "toolchain" - "tooleap" - "tooling" - "toolkit" - "toolkitchen" - "toolkitscriptmanager" - "toolpart" - "toolrunner" - "tools.jar" - "toolsapi" - "toolstrip" - "toolstripbutton" - "toolstripcombobox" - "toolstripcontainer" - "toolstripcontrolhost" - "toolstripdropdown" - "toolstripitem" - "toolstripmenu" - "toolstrippanel" - "toolstripstatuslabel" - "tooltip" - "tooltipster" - "tooltwist" - "toopher" - "top-command" - "top-down" - "top-n" - "topaz-signatures" - "topbraid-composer" - "topcased" - "topcoat" - "topcoder" - "topdown" - "topendialog" - "topic-maps" - "topic-modeling" - "toplevel" - "toplink" - "toplink-essentials" - "topmost" - "topoedit" - "topographical-lines" - "topography" - "topojson" - "topological-sort" - "topology" - "topshelf" - "topsy" - "tor" - "tor-browser-bundle" - "tora" - "torch" - "torii" - "tornado" - "tornado-motor" - "torque" - "torque3d" - "torquebox" - "torrent" - "tortoisebzr" - "tortoisecvs" - "tortoisegit" - "tortoisehg" - "tortoisehg-2.0" - "tortoisemerge" - "tortoisesvn" - "toscawidgets" - "tostring" - "total-commander" - "total.js" - "totallylazy" - "totals" - "totalview" - "totem" - "toto" - "touch" - "touch-event" - "touch-events" - "touch-feedback" - "touch-id" - "touch-location" - "touch-punch" - "touch-typing" - "touch-up-inside" - "touch.unit" - "touchatag" - "touchdb" - "touchdevelop" - "touches" - "touches-canceled" - "touchesbegan" - "touchesmoved" - "touchimageview" - "touchjson" - "touchmove" - "touchpad" - "touchpanview" - "touchscreen" - "touchstart" - "touchxml" - "toupper" - "tournament" - "towerjs" - "towers-of-hanoi" - "townedcollection" - "tox" - "tpagecontrol" - "tpanel" - "tpersistent" - "tph" - "tpkeyboardavoiding" - "tpl-dataflow" - "tpm" - "tpngimagelist" - "tps" - "tput" - "tquery" - "tr" - "tr1" - "tr2" - "tr24731" - "trac" - "tracd" - "trace" - "trace-listener" - "trace32" - "traceability" - "traceback" - "tracekit" - "tracelistener" - "tracemonkey" - "traceroute" - "tracesource" - "traceswitch" - "traceur" - "traceur-compiler" - "tracing" - "track" - "trackback" - "trackball" - "trackbar" - "tracker" - "tracking" - "tracking-reference" - "trackpad" - "trackpopupmenu" - "traco" - "trademark" - "trademark-symbol" - "tradeoff" - "trading" - "traffic" - "traffic-measurement" - "traffic-simulation" - "trafficmanager" - "trafficshaping" - "trail" - "trailing" - "trailing-character" - "trailing-return-type" - "trailing-slash" - "training-data" - "trait" - "traits" - "traitsui" - "traminer" - "tramp" - "trampolines" - "transaction-isolation" - "transaction-log" - "transactional" - "transactional-database" - "transactional-email" - "transactional-memory" - "transactional-queue" - "transactional-replication" - "transactionloganalysis" - "transactionmanager" - "transactions" - "transactionscope" - "transbase" - "transclusion" - "transcode" - "transcoding" - "transcription" - "transducer" - "transducer-machines" - "transfer" - "transfer-encoding" - "transfer-function" - "transfer-orm" - "transferable" - "transform" - "transform-feedback" - "transform-origin" - "transformable" - "transformation" - "transformer" - "transformgroup" - "transformtovisual" - "transfuse" - "transient" - "transifex" - "transit" - "transition" - "transition-coordinator" - "transitional" - "transitioncontentcontrol" - "transitiondrawable" - "transitionend" - "transitions" - "transitive-closure" - "transitive-closure-table" - "transitive-dependency" - "transitivity" - "translate" - "translate-animation" - "translate-toolkit" - "translate3d" - "translation" - "translation-scheme" - "translation-unit" - "translators" - "transliteration" - "transloadit" - "translucency" - "translucentdecor" - "transmission" - "transmitfile" - "transmogrifier" - "transoft" - "transparency" - "transparency.js" - "transparent" - "transparent-control" - "transparentdataencryption" - "transparentproxy" - "transpiler" - "transplant" - "transport" - "transport-security" - "transport-stream" - "transpose" - "trap" - "trash" - "traveling-salesman" - "traversable" - "traversal" - "travis-ci" - "tray" - "trayicon" - "trdion2011" - "tre-library" - "treadpool" - "treap" - "treasure-data" - "tree" - "tree-balancing" - "tree-conflict" - "tree-grammar" - "tree-left-right" - "tree-nodes" - "tree-rotation" - "tree-search" - "tree-structure" - "tree-traversal" - "tree.io" - "treecellrenderer" - "treecontrol" - "treefield" - "treegrid" - "treeio-django" - "treelist" - "treelistview" - "treemap" - "treemaps" - "treemodel" - "treenode" - "treenodecollection" - "treepanel" - "treepath" - "treeset" - "treetable" - "treetablecelleditor" - "treetableview" - "treetagger" - "treetop" - "treeview" - "treeviewer" - "treeviewitem" - "treewidget" - "trellis" - "trello" - "trello.net" - "trend" - "trending" - "trendline" - "tri-state-logic" - "trial" - "trialware" - "triangle" - "triangle-count" - "triangle-generation" - "triangular" - "triangulation" - "tribool" - "trichedit" - "trickle" - "trident" - "tridion" - "tridion-2011" - "tridion-content-delivery" - "tridion-content-manager" - "tridion-core-services" - "tridion-deploy-extension" - "tridion-events" - "tridion-storage-extension" - "tridion-ui" - "tridion-worldserver" - "tridion2009" - "trie" - "trifecta" - "trigger.io" - "triggers" - "trigonometry" - "trigram" - "trigraphs" - "trilateration" - "trilinos" - "trim" - "trimming" - "trinidad" - "trinidad-gem" - "tripcode" - "triple-equals" - "tripledes" - "tripleplay" - "triples" - "triplestore" - "triplet" - "triplot" - "tritium" - "tritonus" - "trivia" - "trivial" - "trixbox" - "troff" - "trojan" - "trollop" - "tropo" - "troposphere" - "trotinet" - "trouble-tickets" - "trove4j" - "true-type-fonts" - "truecrypt" - "truelicense" - "truetype" - "truevault" - "truevfs" - "truezip" - "truncate" - "truncate-log" - "truncated" - "truncation" - "trunk" - "truss" - "trust" - "trust-zone" - "trusted" - "trusted-application" - "trusted-computing" - "trusted-sites" - "trusted-timestamp" - "trusted-vs-untrusted" - "trustedconnection" - "truststore" - "truthiness" - "truthtable" - "trx" - "try-catch" - "try-catch-finally" - "try-except" - "try-finally" - "try-with" - "try-with-resources" - "trygetvalue" - "tryinvokemember" - "tryparse" - "tryton" - "ts" - "tsavedialog" - "tsc" - "tsconfig" - "tscrollbox" - "tsd" - "tshark" - "tslint" - "tso" - "tspan" - "tsql" - "tsql-parser" - "tsqlt" - "tsqlunit" - "tsr" - "tss" - "tstream" - "tstringdynarray" - "tstringfield" - "tstringgrid" - "tstringlist" - "tsung" - "tsung-recorder" - "tsv" - "tsvector" - "tsvncache" - "tt-news" - "tt4j" - "ttabsheet" - "ttaskdialog" - "ttcn" - "ttcpserver" - "tthread" - "ttimer" - "ttk" - "ttl" - "ttlauncheritem" - "ttlauncherview" - "ttml" - "ttnavigator" - "ttphotoviewcontroller" - "ttreenodes" - "ttstyledtextlabel" - "tttattributedlabel" - "tttattritubedlabel" - "ttthumbsviewcontroller" - "tty" - "tuareg" - "tubepress" - "tuckey-urlrewrite-filter" - "tufte" - "tui" - "tuleap" - "tumbleweed" - "tumblr" - "tumblr-themes" - "tumult-hype" - "tun" - "tun-tap" - "tunein" - "tuner" - "tungsten-replicator" - "tuning" - "tunnel" - "tunneling" - "tup" - "tuple-packing" - "tuple-unpacking" - "tuples" - "tuplizer" - "tuprolog" - "turbine" - "turbo" - "turbo-c" - "turbo-pascal" - "turbo-prolog" - "turbobasic" - "turboc++" - "turbogears" - "turbogears2" - "turbojpeg" - "turbolinks" - "turbopower" - "turbulenz" - "turfjs" - "turing" - "turing-complete" - "turing-machines" - "turkey-test" - "turkish" - "turn" - "turnjs" - "turnkeylinux.org" - "turtle" - "turtle-graphics" - "turtle-mock" - "tutorials" - "tuxedo" - "tv" - "tv-tuner" - "tv4" - "tvalue" - "tvar" - "tvirtualstringtree" - "tvm" - "tvp" - "twain" - "twaindotnet" - "tweak" - "twebbrowser" - "tween" - "tween.js" - "tweener" - "tweenlite" - "tweenmax" - "tweepy" - "tweetinvi" - "tweetr" - "tweets" - "tweetsharp" - "tweetstream" - "twelvemonkeys" - "twemproxy" - "twenty-ten-theme" - "twiddle" - "twido-suite" - "twig" - "twig-extension" - "twiki" - "twilio" - "twilio-click-to-call" - "twill" - "twiml" - "twirl" - "twist" - "twistd" - "twisted" - "twisted.application" - "twisted.client" - "twisted.conch" - "twisted.internet" - "twisted.web" - "twisted.words" - "twitch" - "twitpic" - "twitter" - "twitter-anywhere" - "twitter-api" - "twitter-bootstrap" - "twitter-bootstrap-2" - "twitter-bootstrap-3" - "twitter-bootstrap-rails" - "twitter-bootstrap-tooltip" - "twitter-bootstrap-wizard" - "twitter-button" - "twitter-card" - "twitter-client" - "twitter-fabric" - "twitter-feed" - "twitter-finagle" - "twitter-flight" - "twitter-follow" - "twitter-gem" - "twitter-hbc" - "twitter-oauth" - "twitter-r" - "twitter-recess" - "twitter-search" - "twitter-streaming-api" - "twitter-typeahead" - "twitter-util" - "twitter-widget" - "twitter4j" - "twitterizer" - "two-column-layout" - "two-columns" - "two-connection-limit" - "two-factor-authentication" - "two-legged" - "two-way" - "two-way-encryption" - "two.js" - "twofish" - "twos-complement" - "twoway" - "twrequest" - "tws" - "twui" - "twython" - "tx-news" - "txf" - "txmldocument" - "txt2tags" - "txtextcontrol" - "tycho" - "tycho-surefire-plugin" - "tying-the-knot" - "tynamo" - "type-2-dimension" - "type-ahead" - "type-alias" - "type-annotation" - "type-assertion" - "type-bounds" - "type-coercion" - "type-constraints" - "type-constructor" - "type-conversion" - "type-declaration" - "type-deduction" - "type-equivalence" - "type-erasure" - "type-extension" - "type-families" - "type-hinting" - "type-inference" - "type-kinds" - "type-level-computation" - "type-library" - "type-members" - "type-mismatch" - "type-parameter" - "type-projection" - "type-promotion" - "type-providers" - "type-punning" - "type-resolution" - "type-roles" - "type-safety" - "type-signature" - "type-slicing" - "type-switch" - "type-systems" - "type-theory" - "type-variables" - "typeahead" - "typeahead.js" - "typebuilder" - "typecast-operator" - "typecasting-operator" - "typechecking" - "typeclass" - "typeconverter" - "typeconverting" - "typecs" - "typed" - "typed-arrays" - "typed-dataset" - "typed-factory-facility" - "typed-racket" - "typedactor" - "typedarray" - "typedef" - "typedescriptionprovider" - "typedescriptor" - "typedreference" - "typeerror" - "typeface" - "typeface.js" - "typeglob" - "typehandler" - "typeid" - "typeinfo" - "typeinitializeexception" - "typeinitializer" - "typekit" - "typelib" - "typelibrary" - "typelist" - "typelite" - "typeliteral" - "typeloadexception" - "typemock" - "typemock-isolator" - "typename" - "typeof" - "typepad" - "typerex" - "types" - "typesafe" - "typesafe-activator" - "typesafe-config" - "typesafe-console" - "typesafe-stack" - "typescript" - "typeset" - "typesetting" - "typetraits" - "typewatch" - "typhoeus" - "typhoon" - "typing" - "typo3" - "typo3-4.5" - "typo3-6.1.x" - "typo3-6.2.x" - "typo3-extensions" - "typo3-flow" - "typo3-installtool" - "typo3-neos" - "typo3-tca" - "typography" - "typolink" - "typoscript" - "typoscript2" - "typus" - "tyrus" - "tz" - "tz4net" - "tzinfo" - "u-boot" - "u2" - "u2netdk" - "u3d" - "u8glib" - "uaappreviewmanager" - "uac" - "uamodalpanel" - "uap" - "uaprof" - "uart" - "uat" - "uber-api" - "ubercart" - "uberjar" - "uberspace" - "uberspacify" - "ubertesters" - "ubifs" - "ubiquity" - "ublas" - "ubuntu" - "ubuntu-10.04" - "ubuntu-10.10" - "ubuntu-11.04" - "ubuntu-11.10" - "ubuntu-12.04" - "ubuntu-12.10" - "ubuntu-13.04" - "ubuntu-13.10" - "ubuntu-14.04" - "ubuntu-14.10" - "ubuntu-8.04" - "ubuntu-8.10" - "ubuntu-9.04" - "ubuntu-9.10" - "ubuntu-server" - "ubuntu-touch" - "ubuntu-unity" - "ucanaccess" - "ucb-logo" - "uccapi" - "ucd" - "ucf" - "ucfirst" - "uci" - "uclibc" - "uclinux" - "ucma" - "ucma2.0" - "ucontext" - "ucos" - "ucp" - "ucs" - "ucs2" - "ucwa" - "udb" - "uddi" - "udev" - "udid" - "udp" - "udpclient" - "udt" - "uefi" - "ufpdf" - "uframe" - "ugc" - "uglifycss" - "uglifyjs" - "uglifyjs2" - "ui-automation" - "ui-design" - "ui-guidelines" - "ui-helper" - "ui-patterns" - "ui-router" - "ui-select" - "ui-select2" - "ui-spy" - "ui-sref" - "ui-testing" - "ui-thread" - "ui-validate" - "ui-virtualization" - "uia" - "uiaccelerometer" - "uiaccessibility" - "uiaccessoryview" - "uiactionsheet" - "uiactionsheetdelegate" - "uiactivity" - "uiactivitycategory" - "uiactivityindicatorview" - "uiactivitytypeairdrop" - "uiactivityviewcontroller" - "uialertcontroller" - "uialertsheet" - "uialertview" - "uialertviewdelegate" - "uianimation" - "uiappearance" - "uiappfonts" - "uiapplication" - "uiapplicationdelegate" - "uiattachmentbehavior" - "uiautomator" - "uib" - "uibackgroundcolor" - "uibackgroundtask" - "uibarbuttonitem" - "uibarbuttonitemstyle" - "uibarbuttonsystemitem" - "uibaritem" - "uibarmetrics" - "uibezierpath" - "uibinder" - "uiblureffect" - "uibubbletableview" - "uibuilder" - "uibutton" - "uibuttonbaritem" - "uicollectionreusableview" - "uicollectionview" - "uicollectionviewcell" - "uicollectionviewdelegate" - "uicollectionviewlayout" - "uicollisionbehavior" - "uicolor" - "uicomponents" - "uicontainerview" - "uicontrol" - "uicontrolevents" - "uicontrolstate" - "uicontrolview" - "uiculture" - "uid" - "uidatepicker" - "uidatepickermodetime" - "uidefaults" - "uidevice" - "uidevicemotion" - "uideviceorientation" - "uidl" - "uidocument" - "uidocumentinteraction" - "uidocumentmenuvc" - "uidocumentpickervc" - "uidynamicanimator" - "uidynamicbehavior" - "uidynamicitembehavior" - "uidynamics" - "uiedgeinsets" - "uielement" - "uielementcollection" - "uievent" - "uifont" - "uifontdescriptor" - "uifontweighttrait" - "uigesturerecognizer" - "uiglassbutton" - "uigraphicscontext" - "uigravitybehavior" - "uiimage" - "uiimageasset" - "uiimagejpegrepresentation" - "uiimageorientation" - "uiimagepickercontroller" - "uiimagepngrepresentation" - "uiimageview" - "uiinclude" - "uiinputviewcontroller" - "uiinterfaceorientation" - "uikeyboard" - "uikeyboardtype" - "uikeycommand" - "uikeyinput" - "uikit" - "uikit-dynamics" - "uikit-state-preservation" - "uikit-transitions" - "uilabel" - "uilaunchimagefile" - "uilexicon" - "uiloader" - "uilocalizedcollation" - "uilocalnotification" - "uima" - "uimanageddocument" - "uimanager" - "uimapview" - "uimenucontroller" - "uimenuitem" - "uimodalpresentationcustom" - "uimodalpresentationformsh" - "uimodalpresentationstyle" - "uimodaltransitionstyle" - "uimotion" - "uimotioneffect" - "uinavigation" - "uinavigationbar" - "uinavigationcontroller" - "uinavigationitem" - "uinib" - "uinput" - "uint" - "uint16" - "uint32" - "uint32-t" - "uint64" - "uint8t" - "uipagecontrol" - "uipagesviewcontroller" - "uipageviewcontroller" - "uipangesturerecognizer" - "uipasteboard" - "uipi" - "uipicker" - "uipickerview" - "uipickerviewcontroller" - "uipickerviewdatasource" - "uipickerviewdelegate" - "uipinchgesturerecognizer" - "uipopover" - "uipopoverbackgroundview" - "uipopovercontroller" - "uipresentationcontroller" - "uiprintformatter" - "uiprintinfo" - "uiprintinteractioncntrler" - "uiprintpagerenderer" - "uiprogressbar" - "uiprogressview" - "uipushbehavior" - "uiq" - "uiq3" - "uirefreshcontrol" - "uirepeat" - "uiresponder" - "uiribbon" - "uiscreen" - "uiscrollview" - "uiscrollviewdelegate" - "uisearchbar" - "uisearchbardelegate" - "uisearchbardisplaycontrol" - "uisearchcontroller" - "uisearchdisplaycontroller" - "uisearchresultscontroller" - "uisegmentedcontrol" - "uislider" - "uisnapbehavior" - "uispec" - "uispec4j" - "uisplitview" - "uisplitviewcontroller" - "uisplitviewdelegate" - "uiss" - "uistatusbar" - "uistepper" - "uistoryboard" - "uistoryboardsegue" - "uiswipegesturerecognizer" - "uiswitch" - "uitabbar" - "uitabbarcontroller" - "uitabbarcustomizeview" - "uitabbaritem" - "uitabcontroller" - "uitableview" - "uitableviewautomaticdim" - "uitableviewcell" - "uitableviewcontroller" - "uitableviewrowaction" - "uitabview" - "uitapgesturerecognizer" - "uitextarea" - "uitextborderstyle" - "uitextchecker" - "uitextfield" - "uitextfielddelegate" - "uitextinput" - "uitextinputtraits" - "uitextposition" - "uitextrange" - "uitextview" - "uitextviewdelegate" - "uitoolbar" - "uitoolbaritem" - "uitoolbarposition" - "uitouch" - "uitouchdata" - "uitraitcollection" - "uitypeeditor" - "uivewcontroller" - "uivibrancyeffect" - "uivideoeditorcontroller" - "uiview" - "uiview-hierarchy" - "uiviewanimation" - "uiviewanimation-curve" - "uiviewanimationtransition" - "uiviewcontentmode" - "uiviewcontroller" - "uivisualeffectview" - "uiweb" - "uiwebview" - "uiwebviewdelegate" - "uiwindow" - "ujs" - "ujson" - "ulimit" - "ulong" - "uls" - "ultidev" - "ultidev-cassini" - "ultimategrid" - "ultisnips" - "ultracombo" - "ultraedit" - "ultragrid" - "ultralite" - "ultraseek" - "ultrasphinx" - "ultratree" - "ultrawebgrid" - "ultrawingrid" - "umalquracalendar" - "umask" - "umbraco" - "umbraco-blog" - "umbraco-contour" - "umbraco-hive" - "umbraco-mvc" - "umbraco-teacommerce" - "umbraco-ucommerce" - "umbraco-webforms" - "umbraco4" - "umbraco5" - "umbraco6" - "umbraco7" - "umdf" - "umdh" - "umfpack" - "uml" - "uml-modeling" - "umlet" - "umlgraph" - "umn" - "umn-mapserver" - "umodel" - "umount" - "umra" - "umts" - "unaccent" - "uname" - "unapply" - "unary-function" - "unary-operator" - "unassigned-variable" - "unattended-processing" - "unauthorized" - "unauthorizedaccessexcepti" - "unbind" - "unbounded-wildcard" - "unboundid-ldap-sdk" - "unboxing" - "unbuffered" - "unbuffered-output" - "unbuffered-queries" - "unc" - "uncaught-exception" - "uncaught-typeerror" - "uncaughtexceptionhandler" - "uncertainty" - "uncheck" - "unchecked" - "unchecked-cast" - "unchecked-conversion" - "unchecked-exception" - "uncompress" - "unconstrained-melody" - "uncrustify" - "uncss" - "undeclared-identifier" - "undef" - "undefined" - "undefined-behavior" - "undefined-function" - "undefined-index" - "undefined-reference" - "undefined-symbol" - "undelete" - "undeploy" - "underflow" - "underline" - "underscore.js" - "underscore.js-templating" - "underscore.php" - "underscore.string.js" - "underscores" - "underscores-wp" - "undertow" - "undo" - "undo-redo" - "undocumented-behavior" - "unexpectendoffile" - "unfiltered" - "unfold" - "unfuddle" - "ungetc" - "ungit" - "unhaddins" - "unhandled" - "unhandled-exception" - "unhookwindowshookex" - "unhosted" - "unichar" - "unicode" - "unicode-7" - "unicode-escapes" - "unicode-normalization" - "unicode-string" - "unicoins" - "unicorn" - "unidac" - "unidata" - "unidecoder" - "unifdef" - "unification" - "unified-diff" - "uniform" - "uniform-initialization" - "uniform-interface" - "uniformgrid" - "unify" - "unikernel" - "unimag" - "uninitialized" - "uninitialized-constant" - "uninstall" - "uninstaller" - "uninstallstring" - "uniobjects" - "union" - "union-all" - "union-find" - "union-subclass" - "unionfs" - "unions" - "uniplate" - "uniq" - "unique" - "unique-constraint" - "unique-id" - "unique-index" - "unique-key" - "unique-ptr" - "unique-values" - "uniqueidentifier" - "uniqueness-typing" - "uniquery" - "unirest" - "uniscribe" - "unison" - "unistd.h" - "unit-class-library" - "unit-conversion" - "unit-of-work" - "unit-testing" - "unit-type" - "unitdriven" - "unitils" - "unitofworkapplication" - "units-of-measurement" - "unittest" - "unittest++" - "unittest2" - "unity" - "unity-application-block" - "unity-game-engine" - "unity-interception" - "unity-test-framework" - "unity-web-player" - "unity2.0" - "unity3d" - "unity3d-2dtools" - "unity3d-editor" - "unity3d-gui" - "unityscript" - "unityvs" - "universal" - "universal-analytics" - "universal-binary" - "universal-code" - "universal-hashing" - "universal-image-loader" - "universal-provider" - "universal-reference" - "universal-storyboard" - "universal-time" - "universal-volume-control" - "universalindentgui" - "universalxpconnect" - "universe" - "unix" - "unix-domain-sockets" - "unix-socket" - "unix-time" - "unix-timestamp" - "unix-utils" - "unixodbc" - "unjar" - "unknown-host" - "unknown-publisher" - "unladen-swallow" - "unlink" - "unlock" - "unlocker" - "unmanaged" - "unmanaged-memory" - "unmanagedresources" - "unmarked-package" - "unmarshalling" - "unminify" - "unmodifiable" - "unmount" - "unnamed-namespace" - "unnest" - "uno" - "unobserved-exception" - "unobtrusive" - "unobtrusive-ajax" - "unobtrusive-javascript" - "unobtrusive-validation" - "unordered" - "unordered-map" - "unordered-multiset" - "unordered-set" - "unpack" - "unparseable" - "unpivot" - "unql" - "unqlite" - "unrar" - "unreachable-code" - "unreachable-statement" - "unreal-development-kit" - "unreal-engine4" - "unrealscript" - "unrecognized-selector" - "unreliable-connection" - "unresolved-external" - "unresponsive-progressbar" - "unroll" - "unsafe" - "unsafe-perform-io" - "unsafe-pointers" - "unsafe-unretained" - "unsatisfiedlinkerror" - "unselect" - "unset" - "unshelve" - "unsigned" - "unsigned-char" - "unsigned-integer" - "unsigned-long-long-int" - "unslider" - "unspecified" - "unspecified-behavior" - "unstage" - "unsubscribe" - "unsupervised-learning" - "unsupported-class-version" - "unsupportedoperation" - "untagged" - "untyped-variables" - "unused-variables" - "unwarp" - "unwind-segue" - "unzip" - "uomo" - "uos" - "up-button" - "up-casting" - "up-navigation" - "upc" - "upcase" - "updatable-views" - "update-all" - "update-attribute" - "update-attributes" - "update-site" - "update-statement" - "updatebatchsize" - "updatecheck" - "updatecommand" - "updated" - "updatedate" - "updateexception" - "updatemodel" - "updatepanel" - "updatepanel-progressbar" - "updatepanelanimationexte" - "updateprogress" - "updates" - "updatesourcetrigger" - "updatexml" - "updating" - "updown" - "upgrade" - "uplevel" - "upload" - "uploadcare" - "uploaddataasync" - "uploader" - "uploadifive" - "uploadify" - "uploading" - "uploadstring" - "upn" - "upnp" - "upnpx" - "upperbound" - "uppercase" - "ups" - "ups-api" - "ups-worldship" - "upsert" - "upshot" - "upsight" - "upsizing" - "upsource" - "upstart" - "uptime" - "uptime-monitoring" - "uptodate" - "upvar" - "upx" - "urbanairship.com" - "urchin" - "urdu" - "uri" - "uri-fragment" - "uri-scheme" - "uribuilder" - "uriencoding" - "uritemplate" - "url" - "url-action" - "url-design" - "url-encoding" - "url-for" - "url-helper" - "url-interception" - "url-link" - "url-mapping" - "url-masking" - "url-modification" - "url-obsfucation" - "url-parameters" - "url-parsing" - "url-pattern" - "url-protocol" - "url-redirection" - "url-rewrite-module" - "url-rewriting" - "url-routing" - "url-scheme" - "url-shortener" - "url-style" - "url-template" - "url-validation" - "url.action" - "urlaccess" - "urlbinding" - "urlclassloader" - "urlconf" - "urlconnection" - "urldecode" - "urldownloadtofile" - "urlencode" - "urlfetch" - "urlhacks" - "urlhelper" - "urlimageviewhelper" - "urlize" - "urllib" - "urllib2" - "urllib3" - "urlloader" - "urlmapping" - "urlmappings" - "urlmappings.groovy" - "urlmon" - "urlopen" - "urlparse" - "urlread" - "urlrequest" - "urlrewriter" - "urlrewriter.net" - "urlrewriting.net" - "urlscan" - "urlspan" - "urlsplit" - "urlstream" - "urlvariables" - "urn" - "urwid" - "usability" - "usability-testing" - "usage-message" - "usage-statistics" - "usage-tracking" - "usagepatterns" - "usart" - "usb" - "usb-debugging" - "usb-drive" - "usb-flash-drive" - "usb-hostcontroller" - "usb-mass-storage" - "usb-otg" - "usb-proxy" - "usb4java" - "usbserial" - "usdl" - "use" - "use-case" - "use-strict" - "usebean" - "usenet" - "user" - "user-acceptance-testing" - "user-accounts" - "user-activity" - "user-activties" - "user-administration" - "user-agent" - "user-agent-switcher" - "user-authentication" - "user-config" - "user-controls" - "user-customization" - "user-data" - "user-defined" - "user-defined-aggregate" - "user-defined-fields" - "user-defined-functions" - "user-defined-literals" - "user-defined-types" - "user-documentation" - "user-environment" - "user-experience" - "user-extensions.js" - "user-feedback" - "user-forums" - "user-friendly" - "user-generated-content" - "user-guide" - "user-identification" - "user-inactivity" - "user-information-list" - "user-input" - "user-instance" - "user-interaction" - "user-interface" - "user-location" - "user-management" - "user-manual" - "user-mode-linux" - "user-object" - "user-permissions" - "user-preferences" - "user-presence" - "user-profile" - "user-registration" - "user-roles" - "user-settings" - "user-stories" - "user-stylesheets" - "user-testing" - "user-thread" - "user-tracking" - "user-variables" - "user-warning" - "user.config" - "user32" - "userapp" - "userappdatapath" - "usercake" - "usercall" - "userdata" - "userdetailsservice" - "userform" - "usergrid" - "usergroups" - "userid" - "userinfo" - "userjs" - "userland" - "userlocation" - "usermanager" - "usermode" - "username" - "usernametoken" - "userpoints" - "userprincipal" - "userpurge" - "userscripts" - "usersession" - "usersettings" - "usersgroup" - "usersnap" - "userspace" - "userstyles" - "usertype" - "uservoice" - "uses" - "uses-clause" - "uses-feature" - "ushahidi" - "ushort" - "using" - "using-declaration" - "using-declarative" - "using-directives" - "using-statement" - "usleep" - "usn" - "usocket" - "usort" - "usps" - "usrp" - "uss" - "ussd" - "utc" - "utf" - "utf-16" - "utf-16le" - "utf-32" - "utf-7" - "utf-8" - "utf8-decode" - "utf8-unicode-ci" - "utf8mb4" - "utfcpp" - "utfgrids" - "uthash" - "uti" - "util" - "util.cmd" - "utilities" - "utility" - "utility-method" - "utilization" - "utils" - "utl-file" - "utl-mail" - "utm" - "utop" - "utorrent" - "uu-parsinglib" - "uudecode" - "uuencode" - "uuid" - "uv-mapping" - "uva-online-judge" - "uvc" - "uvm" - "uvw" - "uwamp" - "uwsgi" - "uxtheme" - "v4l" - "v4l2" - "v8" - "v8cgi" - "va-arg" - "va-list" - "vaadin" - "vaadin-charts" - "vaadin-navigator" - "vaadin-push" - "vaadin-refresher" - "vaadin-touchkit" - "vaadin-valo-theme" - "vaadin4spring" - "vaadin6" - "vaadin7" - "vaapi" - "vab" - "vacuum" - "vagrant" - "vagrant-gatling-rsync" - "vagrantfile" - "vala" - "valarray" - "valdr" - "valdr-bean-validation" - "valence" - "valgrind" - "valid-html" - "validate-request" - "validatelongrange" - "validates-associated" - "validates-uniqueness-of" - "validateset" - "validating" - "validating-event" - "validation" - "validation-application-bl" - "validation-controls" - "validationattribute" - "validationerror" - "validationframework" - "validationgroup" - "validationmessage" - "validationrule" - "validationrules" - "validationsummary" - "validator" - "validform" - "validity.js" - "valign" - "value-analysis" - "value-class" - "value-constructor" - "value-frequency" - "value-initialization" - "value-objects" - "value-of" - "value-provider" - "value-restriction" - "value-type" - "valuechangelistener" - "valueconverter" - "valueinjecter" - "valuemember" - "valuestack" - "valums-file-uploader" - "van-emde-boas-trees" - "vane" - "vanilla-forums" - "vanishing-point" - "vanity" - "vanity-url" - "vao" - "vapi" - "vapix" - "var" - "var-dump" - "varargs" - "varbinary" - "varbinarymax" - "varchar" - "varchar2" - "varcharmax" - "variable-address" - "variable-alias" - "variable-assignment" - "variable-caching" - "variable-declaration" - "variable-expansion" - "variable-initialization" - "variable-length" - "variable-length-arguments" - "variable-length-array" - "variable-names" - "variable-naming" - "variable-scope" - "variable-subsitution" - "variable-templates" - "variable-types" - "variable-variables" - "variable-width" - "variableargumentlists" - "variables" - "variablesizedwrapgrid" - "variadic" - "variadic-functions" - "variadic-macro" - "variadic-parameter" - "variadic-templates" - "variance" - "variant" - "variants" - "variation" - "variations" - "varnish" - "varnish-vcl" - "varray" - "vars" - "vary" - "varybyparam" - "varying" - "vash" - "vast" - "vault" - "vax" - "vb-power-pack" - "vb.net" - "vb.net-2010" - "vb.net-to-c#" - "vb4android" - "vb5" - "vb6" - "vb6-migration" - "vba" - "vbaccelerator" - "vbc" - "vbcodeprovider" - "vbe" - "vbo" - "vbox" - "vbp" - "vbscript" - "vbulletin" - "vbx" - "vc1" - "vc10" - "vc6" - "vc6-migration" - "vc8" - "vc90" - "vcal" - "vcalendar" - "vcard" - "vcbuild" - "vcdiff" - "vcenter" - "vcf" - "vcg" - "vcl" - "vcl-styles" - "vcl4php" - "vclick" - "vcloud-director-rest-api" - "vclzip" - "vcproj" - "vcr" - "vcredist" - "vcs-tags" - "vcscommand" - "vcxproj" - "vdf" - "vdi" - "vdkqueue" - "vdm++" - "vdproj" - "vds" - "vdsp" - "vecmath" - "vector" - "vector-clock" - "vector-graphics" - "vector-multiplication" - "vector-processing" - "vectordrawable" - "vectorization" - "vectormath" - "vectorwise" - "veewee" - "vega" - "vegan" - "velocis-rds" - "velocity" - "velocity.js" - "vendavo" - "vendor" - "vendor-branch" - "vendor-neutrality" - "vendor-prefix" - "vendors" - "venice" - "venkman" - "venmo" - "venn-diagram" - "vera++" - "veracity" - "veracode" - "verbatim" - "verbatim-string" - "verbose" - "verbosegc" - "verbosity" - "verifiable-c" - "verification" - "verificationexception" - "verify" - "verifyerror" - "verilog" - "verisign" - "verity" - "verizon-wireless" - "verlet-integration" - "verold" - "verp" - "versant-vod" - "version" - "version-compatibility" - "version-control" - "version-control-keywords" - "version-control-migration" - "version-detection" - "version-editor" - "version-numbering" - "version-range" - "version-sort" - "versioninfo" - "versioning" - "versionone" - "versions" - "versions-maven-plugin" - "vert.x" - "vertex" - "vertex-array" - "vertex-array-object" - "vertex-attributes" - "vertex-buffer" - "vertex-buffer-objects" - "vertex-cover" - "vertex-shader" - "vertexdata" - "vertica" - "vertical-alignment" - "vertical-partitioning" - "vertical-rhythm" - "vertical-scroll" - "vertical-scrolling" - "vertical-sync" - "vertical-text" - "vertices" - "vertx-mod-jersey" - "vertx.io" - "verysleepy" - "vesa" - "vestal-versions" - "vfd" - "vfork" - "vfp" - "vfr-reader" - "vfs" - "vfs-stream" - "vfw" - "vga" - "vgam" - "vgl" - "vh" - "vhd" - "vhdl" - "vhosts" - "vi" - "viadeo" - "vibed" - "viber" - "vibrate" - "vibration" - "vichuploaderbundle" - "vici" - "video" - "video-camera" - "video-capture" - "video-card" - "video-chapter" - "video-codecs" - "video-component" - "video-conferencing" - "video-conversion" - "video-editing" - "video-effects" - "video-embedding" - "video-encoding" - "video-gallery" - "video-game-consoles" - "video-library" - "video-memory" - "video-on-demand" - "video-processing" - "video-recording" - "video-streaming" - "video-thumbnails" - "video-tracking" - "video-watermarking" - "video.js" - "video4linux" - "videochat" - "videodisplay" - "videogular" - "videoplayer" - "videoquality" - "videotag" - "videoview" - "viemu" - "viennacl" - "view" - "view-bound" - "view-first" - "view-helpers" - "view-hierarchy" - "view-inheritance" - "view-model-pattern" - "view-path" - "view-scope" - "view-source" - "view-source-chart" - "view-templates" - "viewaction" - "viewanimator" - "viewbag" - "viewbox" - "viewcontext" - "viewcontroller" - "viewdata" - "viewdeck" - "viewdidappear" - "viewdidlayoutsubviews" - "viewdidload" - "viewdidunload" - "viewdraghelper" - "viewengine" - "viewer" - "viewexpiredexception" - "viewflipper" - "viewflow" - "viewgroup" - "viewhelper" - "viewing" - "viewlayout" - "viewlets" - "viewmodel" - "viewmodel-first" - "viewmodellocator" - "viewpage" - "viewpagerindicator" - "viewparams" - "viewport" - "viewport-units" - "viewport3d" - "viewrendering" - "viewresult" - "viewroot" - "views" - "views2" - "viewstack" - "viewstate" - "viewstub" - "viewswitcher" - "viewusercontrol" - "viewvc" - "viewwillappear" - "viewwilltransitiontosize" - "viewwithtag" - "vifm" - "vigenere" - "vignette" - "vim" - "vim-fugitive" - "vim-ipython" - "vim-macros" - "vim-perl" - "vim-plugin" - "vim-powerline" - "vim-r" - "vim-registers" - "vim-syntax-highlighting" - "vim-tabular" - "vim7.2" - "vim7.3" - "vimage" - "vimclojure" - "vimdiff" - "vimeo" - "vimeo-api" - "vimeo-player" - "vimgrep" - "vimoutliner" - "vimperator" - "vimpulse" - "vimrc" - "vimrunner" - "vimscript" - "vin" - "vincent" - "vine" - "vinstance" - "vintagejs" - "vinyl" - "viola-jones" - "violation" - "viper" - "viper-mode" - "virtex" - "virtocommerce" - "virtual" - "virtual-address-space" - "virtual-attribute" - "virtual-channel" - "virtual-copy" - "virtual-desktop" - "virtual-destructor" - "virtual-device-manager" - "virtual-directory" - "virtual-disk" - "virtual-drive" - "virtual-earth" - "virtual-file" - "virtual-functions" - "virtual-hosts" - "virtual-inheritance" - "virtual-ip-address" - "virtual-keyboard" - "virtual-machine" - "virtual-member-manager" - "virtual-memory" - "virtual-method" - "virtual-network" - "virtual-path" - "virtual-pc" - "virtual-pc-2007" - "virtual-printer" - "virtual-reality" - "virtual-screen" - "virtual-serial-port" - "virtual-server" - "virtual-tour" - "virtualalloc" - "virtualbox" - "virtualdub" - "virtualenv" - "virtualenv-commands" - "virtualenvwrapper" - "virtualfilesystem" - "virtualhost" - "virtualization" - "virtualizingstackpanel" - "virtualmode" - "virtualpathprovider" - "virtualquery" - "virtualstore" - "virtualtreeview" - "virtuemart" - "virtuoso" - "virtuozzo" - "virus" - "virus-definitions" - "virus-scanning" - "vis" - "visa" - "visad" - "visage" - "visibility" - "visible" - "visiblox" - "visifire" - "visio" - "visio-2010" - "visio-vba" - "visio2013" - "vision" - "visited" - "visitor" - "visitor-pattern" - "visitor-statistic" - "visitors" - "vispy" - "vista-security" - "vista64" - "vistadb" - "visual-age" - "visual-artifacts" - "visual-assist" - "visual-assist-x" - "visual-build-professional" - "visual-c#-express-2010" - "visual-c++" - "visual-c++-2002" - "visual-c++-2005" - "visual-c++-2008" - "visual-c++-2008-express" - "visual-c++-2010" - "visual-c++-2010-express" - "visual-c++-2012" - "visual-c++-2013" - "visual-c++-installer" - "visual-c++-runtime" - "visual-d" - "visual-diff" - "visual-documentation" - "visual-editor" - "visual-effects" - "visual-format-language" - "visual-foxpro" - "visual-glitch" - "visual-inheritance" - "visual-leak-detector" - "visual-modeler" - "visual-paradigm" - "visual-programming" - "visual-prolog" - "visual-refresh" - "visual-sourcesafe" - "visual-sourcesafe-2005" - "visual-sourcesafe-plugin" - "visual-studio" - "visual-studio-2003" - "visual-studio-2005" - "visual-studio-2008" - "visual-studio-2008-db" - "visual-studio-2008-sp1" - "visual-studio-2010" - "visual-studio-2010-beta-1" - "visual-studio-2010-beta-2" - "visual-studio-2010-rc" - "visual-studio-2010-sp1" - "visual-studio-2012" - "visual-studio-2013" - "visual-studio-2014" - "visual-studio-2014-ctp" - "visual-studio-2015" - "visual-studio-6" - "visual-studio-addins" - "visual-studio-cordova" - "visual-studio-dbpro" - "visual-studio-debugging" - "visual-studio-designer" - "visual-studio-express" - "visual-studio-extensions" - "visual-studio-gallery" - "visual-studio-help" - "visual-studio-lightswitch" - "visual-studio-macros" - "visual-studio-monaco" - "visual-studio-online" - "visual-studio-package" - "visual-studio-power-tools" - "visual-studio-project" - "visual-studio-sdk" - "visual-studio-setup" - "visual-studio-setup-proje" - "visual-studio-shell" - "visual-studio-team-system" - "visual-studio-templates" - "visual-studio-test-runner" - "visual-styles" - "visual-tree" - "visual-web-developer" - "visual-web-developer-2010" - "visual-web-gui" - "visual-website-optimizer" - "visualbrush" - "visualdesigner" - "visualforce" - "visualhaskell" - "visualhg" - "visualization" - "visualize" - "visualizer" - "visualizers" - "visualj#" - "visualrules" - "visualstategroup" - "visualstatemanager" - "visualstates" - "visualstyles" - "visualsvn" - "visualsvn-server" - "visualtreehelper" - "visualvm" - "visualworks" - "vitamio" - "viterbi" - "vivado" - "vivagraphjs" - "vix" - "vizard" - "vjet" - "vk" - "vk-sdk" - "vlab" - "vlad" - "vlan" - "vlc" - "vlc-qt" - "vlcj" - "vldb" - "vlfeat" - "vline" - "vliw" - "vlookup" - "vlsi" - "vmalloc" - "vmargs" - "vmat" - "vmc" - "vmdisconnectedexception" - "vmerge" - "vmid" - "vmime" - "vml" - "vmlite" - "vmmap" - "vmrun" - "vms" - "vmt" - "vmware" - "vmware-fusion" - "vmware-player" - "vmware-sdk" - "vmware-server" - "vmware-thinapp" - "vmware-tools" - "vmware-workstation" - "vmwaretasks" - "vnc" - "vnc-server" - "vnc-viewer" - "vnext" - "vob" - "vobject" - "vocabulary" - "voice" - "voice-comparison" - "voice-detection" - "voice-recognition" - "voice-recording" - "voicemail" - "voiceover" - "voicexml" - "void" - "void-pointers" - "voip" - "volatile" - "volatility" - "voldemort" - "volojs" - "volt" - "voltdb" - "voltrb" - "volume" - "volume-rendering" - "volume-shadow-service" - "volumes" - "voluptuous" - "volusion" - "von-neumann" - "vorbis" - "voronoi" - "vosao" - "vote" - "vote-up-buttons" - "voting" - "voting-system" - "votive" - "vowel" - "vowpalwabbit" - "vows" - "voxel" - "voxels" - "vp8" - "vpath" - "vpc" - "vpim" - "vpn" - "vps" - "vptr" - "vpython" - "vqmod" - "vr" - "vraptor" - "vrml" - "vrone" - "vs-2013-preview" - "vs-2013-update-2" - "vs-2015-preview" - "vs-android" - "vs-devserver" - "vs-error" - "vs-extensibility" - "vs-unit-testing-framework" - "vs.php" - "vs2010-express" - "vs2013-update-4" - "vsam" - "vsct" - "vsdb" - "vsdbcmd" - "vsdoc" - "vsewss" - "vsftpd" - "vshost.exe" - "vshost32" - "vsi" - "vsinstaller" - "vsip" - "vsix" - "vsixmanifest" - "vsm" - "vso-rest-api" - "vspackage" - "vsperfmon" - "vsphere" - "vsprops" - "vsql" - "vssconverter" - "vssettings" - "vssget" - "vst" - "vsta" - "vstest" - "vstesthost" - "vsto" - "vsts2005" - "vsts2008" - "vsts2010" - "vsunit" - "vsvim" - "vsx" - "vsync" - "vt100" - "vtable" - "vtd-xml" - "vte" - "vticker" - "vtiger" - "vtk" - "vtl" - "vtt" - "vtune" - "vudroid" - "vue.js" - "vuforia" - "vugen" - "vulcan" - "vundle" - "vungle-ads" - "vuze" - "vwdexpress" - "vwo" - "vxml" - "vxworks" - "w2ui" - "w3-total-cache" - "w32" - "w3c" - "w3c-geolocation" - "w3c-validation" - "w3m" - "w3wp" - "w3wp.exe" - "wab" - "wacom" - "wadl" - "waf" - "waf-framework-c#" - "waffle" - "wagon" - "wagtail" - "wai" - "wai-aria" - "wait" - "wait-fences" - "waitforexit" - "waitforimages" - "waitformultipleobjects" - "waitforsingleobject" - "waithandle" - "waitn" - "waitone" - "waitpid" - "waitress" - "wakanda" - "wake-on-lan" - "wakelock" - "wakeup" - "wal" - "walkthrough" - "wall-time" - "wallpaper" - "walltime-js" - "walrus" - "wamp" - "wampserver" - "wams" - "wan" - "wand" - "wap" - "wapiti" - "wapt" - "war" - "war-filedeployment" - "war-files" - "warbler" - "warc" - "warden" - "warehouse" - "warework" - "warm-up" - "warning-level" - "warnings" - "warp" - "warp-scheduler" - "warren-abstract-machine" - "was" - "wasabi" - "wasapi" - "wash-out" - "wasp" - "watch" - "watch-face-api" - "watch-window" - "watchapp" - "watchdog" - "watchify" - "watchkit" - "watchmaker" - "watchpoint" - "watchr" - "watchservice" - "watcom" - "water-jug-problem" - "waterfall" - "waterline" - "watermark" - "watershed" - "watij" - "watin" - "watir" - "watir-jquery" - "watir-webdriver" - "watirgrid" - "wattpad" - "wav" - "wave" - "waveform" - "wavefront" - "wavelet" - "wavelet-transform" - "wavemaker" - "waveout" - "waveoutwrite" - "wavmss" - "waxeye" - "way-generators" - "way2sms" - "wayfinder" - "wayland" - "wbem" - "wbr" - "wbxml" - "wc" - "wcag" - "wcag2.0" - "wcat" - "wce" - "wcf" - "wcf-4" - "wcf-authentication" - "wcf-behaviour" - "wcf-binding" - "wcf-callbacks" - "wcf-client" - "wcf-configuration" - "wcf-data-service" - "wcf-data-services" - "wcf-data-services-client" - "wcf-encryption" - "wcf-endpoint" - "wcf-extensions" - "wcf-faults" - "wcf-hosting" - "wcf-http" - "wcf-instancing" - "wcf-interoperability" - "wcf-library" - "wcf-lob-adapter" - "wcf-proxy" - "wcf-rest" - "wcf-rest-contrib" - "wcf-rest-starter-kit" - "wcf-rest-starting-guide" - "wcf-ria-services" - "wcf-routing" - "wcf-security" - "wcf-serialization" - "wcf-service" - "wcf-sessions" - "wcf-streaming" - "wcf-test-client" - "wcf-web-api" - "wcf-wshttpbinding" - "wcffacility" - "wcfserviceclient" - "wcftestclient" - "wchar" - "wchar-t" - "wcm" - "wcs" - "wcsdup" - "wcsf" - "wddatepicker" - "wddx" - "wdf" - "wdk" - "wdm" - "wdproj" - "wds" - "wdsl" - "weak" - "weak-events" - "weak-head-normal-form" - "weak-linking" - "weak-ptr" - "weak-references" - "weak-symbol" - "weak-typing" - "weakeventmanager" - "weakhashmap" - "weakly-typed" - "weakmap" - "weasyprint" - "weather" - "weather-api" - "web" - "web-access" - "web-admin" - "web-administration" - "web-analytics" - "web-analytics-tools" - "web-animations" - "web-api" - "web-api-contrib" - "web-application-design" - "web-application-project" - "web-applications" - "web-architecture" - "web-audio" - "web-based" - "web-browser" - "web-client" - "web-clips" - "web-component" - "web-config" - "web-config-encryption" - "web-config-transform" - "web-console" - "web-container" - "web-content" - "web-control" - "web-controls" - "web-crawler" - "web-database" - "web-debug-config" - "web-deployment" - "web-deployment-project" - "web-developer-toolbar" - "web-development-server" - "web-essentials" - "web-extensibility" - "web-farm" - "web-farm-framework" - "web-feature-service" - "web-folders" - "web-forms-for-marketers" - "web-frameworks" - "web-frontend" - "web-garden" - "web-hosting" - "web-ide" - "web-inf" - "web-inspector" - "web-interface" - "web-midi" - "web-mining" - "web-notifications" - "web-operating-system" - "web-optimization" - "web-parts" - "web-performance-test" - "web-platform-installer" - "web-platforms" - "web-project" - "web-publishing" - "web-reference" - "web-release-config" - "web-routes-boomerang" - "web-safe-colors" - "web-safe-fonts" - "web-scraping" - "web-scripting" - "web-search" - "web-security" - "web-services" - "web-services-enhancements" - "web-setup-project" - "web-site-project" - "web-slice" - "web-sql" - "web-standards" - "web-statistics" - "web-stomp" - "web-storage" - "web-technologies" - "web-testing" - "web-to-winforms" - "web-traffic" - "web-user-controls" - "web-widget" - "web-worker" - "web-wrapper" - "web.config-transform" - "web.py" - "web.sitemap" - "web.xml" - "web2.0" - "web2py" - "web2py-modules" - "web3.0" - "webactivator" - "webaddress" - "webaii" - "webalizer" - "webapp-net" - "webapp2" - "webapplicationstresstool" - "webarchive" - "webassets" - "webautomation" - "webbbs" - "webbroker" - "webbrowser-control" - "webby" - "webbynode" - "webcal" - "webcam" - "webcam-capture" - "webcam.js" - "webcenter" - "webcenter-sites" - "webchannelfactory" - "webchartcontrol" - "webchromeclient" - "webcl" - "webclient" - "webclient-download" - "webclient.uploaddata" - "webcombo" - "webconfigurationmanager" - "webcontent" - "webcontext" - "webcron" - "webcryptoapi" - "webdatagrid" - "webdav" - "webdav.net" - "webdb" - "webdeploy" - "webdeploy-3.5" - "webdev.webserver" - "webdis" - "webdna" - "webdriver" - "webdriver-io" - "webduino" - "webdynpro" - "webengine" - "weber" - "webex" - "webexception" - "webfaction" - "webfarm" - "webfinger" - "webfm-api" - "webfocus" - "webfont-loader" - "webfonts" - "webforms" - "webforms-routing" - "webforms-view-engine" - "webformsmvp" - "webget" - "webgl" - "webgl-extensions" - "webgrabber" - "webgrease" - "webgrid" - "webgrind" - "webharvest" - "webhdfs" - "webhooks" - "webhost" - "webhttp" - "webhttpbinding" - "webhttprelaybinding" - "webidl" - "webimage" - "webinar" - "webintents" - "webinvoke" - "webiopi" - "webistrano" - "webix" - "webjars" - "webkit" - "webkit-animation" - "webkit-appearance" - "webkit-mask" - "webkit-notifications" - "webkit-perspective" - "webkit-sharp" - "webkit-transform" - "webkit-transition" - "webkit.net" - "webkit2" - "webkitaudiocontext" - "webkitgtk" - "webloadui" - "weblog" - "weblogic" - "weblogic-10.x" - "weblogic-integration" - "weblogic-maven-plugin" - "weblogic11g" - "weblogic12c" - "weblogic12g" - "weblogic8.x" - "weblogic9.x" - "webm" - "webmachine" - "webmacro" - "webmail" - "webmatrix" - "webmatrix-2" - "webmethod" - "webmethods" - "webmethods-caf" - "webmin" - "webmin-module-development" - "webmock" - "webob" - "webobjects" - "webodf" - "weboperationcontext" - "weborb" - "webos" - "webots" - "webp" - "webpack" - "webpage" - "webpage-rendering" - "webpage-screenshot" - "webpagescraping" - "webpart-connection" - "webpartpage" - "webproject" - "webproxy" - "webradio" - "webrat" - "webrequest" - "webresource" - "webresource.axd" - "webresponse" - "webrick" - "webrole" - "webrtc" - "webscarab" - "webseal" - "websense" - "webserver" - "webservice-client" - "webservicehost" - "webservices-client" - "webservicetemplate" - "webservlet" - "websharper" - "webshim" - "webshop" - "webshperemq" - "website" - "website-admin" - "website-admin-tool" - "website-deployment" - "website-hosting" - "website-metrics" - "website-monitoring" - "website-payment-pro" - "websitebaker" - "websitespark" - "websmart" - "websocket" - "websocket++" - "websocket-sharp" - "websocket4net" - "websockify" - "websolr" - "webspec" - "webspeech-api" - "webspeed" - "websphere" - "websphere-6" - "websphere-6.1" - "websphere-7" - "websphere-8" - "websphere-ce" - "websphere-commerce" - "websphere-esb" - "websphere-liberty" - "websphere-mq" - "websphere-mq-ams" - "websphere-mq-fte" - "websphere-portal" - "websphere-process-server" - "websphinx" - "webstore" - "webstorm" - "websvn" - "websync" - "webtest" - "webtextedit" - "webtools" - "webtop" - "webtrends" - "webui" - "webusercontrol" - "webusercontrols" - "webview" - "webviewchromium" - "webviewclient" - "webviewdidfinishload" - "webviewrunonuithread" - "webvr" - "webvtt" - "webwork" - "weceem" - "wechat" - "wedge" - "weebly" - "weechat" - "weed-fs" - "week-number" - "weekday" - "weekend" - "weffc++" - "weibo" - "weibull" - "weight" - "weighted" - "weighted-average" - "weighting" - "weighttp" - "weinre" - "weixinjsbridge" - "weka" - "welcome-file" - "weld" - "weld-se" - "weld2" - "well-formed" - "wep" - "wepopover" - "wer" - "wercker" - "werkzeug" - "wescheme" - "westwind" - "wexitstatus" - "weyland" - "wfp" - "wget" - "wgl" - "wgs84" - "wh-keyboard-ll" - "whack" - "whatsapp" - "wheel" - "wheel-menu" - "when-js" - "whenever" - "whenever-capistrano" - "where" - "where-clause" - "where-in" - "which" - "while-loop" - "whiptail" - "whirlpool" - "whisper" - "white" - "white-box" - "white-box-testing" - "white-hat" - "white-labelling" - "white-screen-of-death" - "whiteboard" - "whitelist" - "whitespace" - "whitespace-language" - "whm" - "whmcs" - "whois" - "whois-ruby" - "whoops" - "whoosh" - "why3" - "wia" - "wic" - "wice-grid" - "wicked-gem" - "wicked-pdf" - "wicket" - "wicket-1.5" - "wicket-1.6" - "wicket-6" - "wicket-tester" - "wicketstuff" - "wid" - "wide-api" - "widechar" - "wideimage" - "widescreen" - "widestring" - "widevine" - "widget" - "widgetkit" - "width" - "wif" - "wife" - "wifi" - "wifi-direct" - "wificonfiguration" - "wifimanager" - "wifip2p" - "wifstream" - "wii" - "wii-balanceboard" - "wii-u" - "wiimote" - "wiiuse" - "wijgrid" - "wijit" - "wijmo" - "wiki" - "wiki-engine" - "wiki-markup" - "wikia" - "wikidata" - "wikimapia" - "wikimedia" - "wikimedia-commons" - "wikimedia-dumps" - "wikimedia-labs" - "wikipedia" - "wikipedia-api" - "wikitext" - "wikitude" - "wiktionary" - "wildcard" - "wildcard-expansion" - "wildcard-mapping" - "wildcard-subdomain" - "wildfly" - "wildfly-8" - "will-change" - "will-paginate" - "wimax" - "wimp" - "wimpy" - "win-bash" - "win-phone-silverlight-8.1" - "win-prolog" - "win-universal-app" - "win32-process" - "win32-service-gem" - "win32com" - "win32exception" - "win32gui" - "win32ole" - "win32serviceutil" - "win64" - "winamp" - "winapi" - "winapp" - "winavr" - "winbgi" - "winbinder" - "winbugs" - "winbugs14" - "wincache" - "wincrypt" - "wincvs" - "windb" - "windbg" - "winddk" - "windev" - "windmill" - "window" - "window-chrome" - "window-decoration" - "window-functions" - "window-handles" - "window-load" - "window-management" - "window-managers" - "window-managment" - "window-messages" - "window-object" - "window-position" - "window-resize" - "window-server" - "window-soft-input-mode" - "window-style" - "window-tester" - "window.closed" - "window.crypto" - "window.external" - "window.location" - "window.onunload" - "window.open" - "window.opener" - "window.parent" - "windowbuilder" - "windowed" - "windowing" - "windowless" - "windowlistener" - "windowmanager" - "windows" - "windows-10" - "windows-1252" - "windows-1255" - "windows-2000" - "windows-2003-webserver" - "windows-3.1" - "windows-7" - "windows-7-embedded" - "windows-7-x64" - "windows-8" - "windows-8-mail-app" - "windows-8.1" - "windows-95" - "windows-98" - "windows-administration" - "windows-api-code-pack" - "windows-applications" - "windows-authentication" - "windows-azure-blob" - "windows-azure-connect" - "windows-azure-diagnostics" - "windows-azure-networking" - "windows-azure-pack" - "windows-azure-queues" - "windows-azure-storage" - "windows-ce" - "windows-client" - "windows-clustering" - "windows-console" - "windows-controls" - "windows-desktop-gadgets" - "windows-embedded" - "windows-embedded-8" - "windows-embedded-8.1" - "windows-embedded-compact" - "windows-embedded-standard" - "windows-error-reporting" - "windows-explorer" - "windows-firewall" - "windows-firewall-api" - "windows-forms-designer" - "windows-forms-host" - "windows-gadgets" - "windows-hosting" - "windows-identity" - "windows-installer" - "windows-integrated-auth" - "windows-kernel" - "windows-key" - "windows-live" - "windows-live-id" - "windows-live-mail" - "windows-live-messenger" - "windows-live-writer" - "windows-look-and-feel" - "windows-mce" - "windows-media-center" - "windows-media-encoder" - "windows-media-format-sdk" - "windows-media-player" - "windows-media-server" - "windows-media-services" - "windows-messages" - "windows-mobile" - "windows-mobile-2003" - "windows-mobile-5.0" - "windows-mobile-6" - "windows-mobile-6.1" - "windows-mobile-6.5" - "windows-mobile-emulator" - "windows-mobile-gps" - "windows-networking" - "windows-nt" - "windows-pe" - "windows-phone" - "windows-phone-7" - "windows-phone-7-emulator" - "windows-phone-7.1" - "windows-phone-7.1.1" - "windows-phone-7.5" - "windows-phone-7.8" - "windows-phone-8" - "windows-phone-8-emulator" - "windows-phone-8-sdk" - "windows-phone-8.1" - "windows-phone-emulator" - "windows-phone-sl-8.1" - "windows-phone-store" - "windows-phone-toolkit" - "windows-phone-voip" - "windows-principal" - "windows-process" - "windows-ribbon-framework" - "windows-rt" - "windows-runtime" - "windows-sbs" - "windows-scheduler" - "windows-screensaver" - "windows-scripting" - "windows-sdk" - "windows-search" - "windows-security" - "windows-server" - "windows-server-2000" - "windows-server-2003" - "windows-server-2003-r2" - "windows-server-2008" - "windows-server-2008-r2" - "windows-server-2008-web" - "windows-server-2008-x64" - "windows-server-2012" - "windows-server-2012-r2" - "windows-services" - "windows-services-error" - "windows-share" - "windows-shell" - "windows-shortcut" - "windows-store" - "windows-store-apps" - "windows-style-flags" - "windows-taskbar" - "windows-themes" - "windows-universal" - "windows-update" - "windows-users" - "windows-virtual-pc" - "windows-vista" - "windows-vista-software" - "windows-xp" - "windows-xp-embedded" - "windows-xp-professional" - "windows-xp-servicepacks" - "windows-xp-sp2" - "windows-xp-sp3" - "windows-xp-x64" - "windows2012" - "windows64" - "windowsdomainaccount" - "windowserror" - "windowsformhost" - "windowsformshost" - "windowsformsintegration" - "windowsondevices" - "windowsphotogallery" - "windowstate" - "windowsversion" - "windowtoken" - "windres" - "windroy" - "windsor-3.0" - "windsor-facilities" - "windsor-nhfacility" - "windward" - "wine" - "winelib" - "winexe" - "winfax" - "winforms" - "winforms-interop" - "winforms-to-web" - "wing-ide" - "wingdings" - "winghci" - "wingide" - "winginx" - "wingrid" - "winhelp" - "winhttp" - "winhttpcertcfg" - "winhttprequest" - "wininet" - "winjs" - "winjs-promise" - "winless" - "winlogon" - "winmail.dat" - "winmain" - "winmd" - "winmerge" - "winmm" - "winmo" - "winnovative" - "winpcap" - "winpdb" - "winpe" - "winprt" - "winqual" - "winrar" - "winreg" - "winrm" - "winrs" - "winrt-async" - "winrt-component" - "winrt-httpclient" - "winrt-xaml" - "winrt-xaml-toolkit" - "winrttriggers" - "winrun4j" - "winscard" - "winscp" - "winscp-net" - "winsnmp" - "winsock" - "winsock-lsp" - "winsock2" - "winsockets" - "winsql" - "winston" - "winstone" - "winsxs" - "wintersmith" - "winusb" - "winverifytrust" - "winzip" - "wiql" - "wiquery" - "wirebox" - "wiredep" - "wireframe" - "wirejs" - "wireless" - "wireless-connection" - "wiremock" - "wireshark" - "wireshark-dissector" - "wisa" - "wisdom-framework" - "wise" - "wiselinks" - "wisper" - "wispr" - "wistia" - "with-clause" - "with-statement" - "withings" - "wix" - "wix-extension" - "wix-gui" - "wix-iisextension" - "wix2" - "wix3" - "wix3.5" - "wix3.6" - "wix3.7" - "wix3.8" - "wix3.9" - "wixlib" - "wixsharp" - "wizard" - "wizard-control" - "wkb" - "wkhtmltoimage" - "wkhtmltopdf" - "wkinterfacetable" - "wkt" - "wkusercontentcontroller" - "wkuserscript" - "wkwebview" - "wkwebviewconfiguration" - "wlan" - "wlanapi" - "wli" - "wlst" - "wm-command" - "wm-copydata" - "wm-paint" - "wm-syscommand" - "wm-touch" - "wm5" - "wma" - "wmain" - "wmd" - "wmd-editor" - "wmd-markdown" - "wmdc" - "wmf" - "wmi" - "wmi-query" - "wmi-service" - "wmic" - "wml" - "wmode" - "wmp" - "wmplib" - "wms" - "wmv" - "wnck" - "wndproc" - "wnet" - "woff" - "wofstream" - "wokkel" - "wolfram-cdf" - "wolfram-language" - "wolfram-mathematica" - "wolframalpha" - "wonderware" - "woocommerce" - "woodstock" - "woodstox" - "wookmark" - "woothemes" - "word" - "word-2003" - "word-2007" - "word-2010" - "word-2013" - "word-automation" - "word-automation-service" - "word-boundaries" - "word-boundary" - "word-break" - "word-cloud" - "word-completion" - "word-count" - "word-diff" - "word-field" - "word-frequency" - "word-interop" - "word-list" - "word-processor" - "word-sense-disambiguation" - "word-size" - "word-spacing" - "word-template" - "word-vba" - "word-vba-mac" - "word-wrap" - "word2vec" - "wordbreaker" - "wording" - "wordle" - "wordml" - "wordnet" - "wordnik" - "wordpad" - "wordperfect" - "wordpress" - "wordpress-3.5" - "wordpress-3.9" - "wordpress-3.9.1" - "wordpress-4.0" - "wordpress-ecommerce" - "wordpress-filter" - "wordpress-geo-mashup" - "wordpress-json-api" - "wordpress-login" - "wordpress-loop" - "wordpress-mu" - "wordpress-plugin" - "wordpress-plugin-dev" - "wordpress-theming" - "wordpress-widget" - "wordprocessingml" - "words" - "wordsearch" - "work-item" - "work-item-tracking" - "work-stealing" - "workbench" - "workbook" - "workday" - "worker" - "worker-pool" - "worker-process" - "worker-processes" - "worker-thread" - "workflow" - "workflow-activity" - "workflow-engine" - "workflow-foundation" - "workflow-foundation-3" - "workflow-foundation-4" - "workflow-foundation-4.5" - "workflow-manager-1.x" - "workflow-rehosting" - "workflow-services" - "workflowservice" - "workgroup" - "working-copy" - "working-directory" - "working-folder" - "working-remotely" - "working-set" - "workitem" - "worklight" - "worklight-adapters" - "worklight-analytics" - "worklight-appcenter" - "worklight-cli" - "worklight-console" - "worklight-deployment" - "worklight-geolocation" - "worklight-mbs" - "worklight-mtww" - "worklight-rpe" - "worklight-runtime" - "worklight-security" - "worklight-server" - "worklight-skins" - "worklight-studio" - "worklight-waf" - "workling" - "workload" - "workmanagers" - "worksheet" - "worksheet-function" - "worksite-sdk" - "workspace" - "world-domination" - "world-map" - "world-of-warcraft" - "worldpay" - "worldwind" - "wostringstream" - "wow64" - "wowjs" - "wowslider" - "wowza" - "wowza-transcoder" - "wp-editor" - "wp-list-categories" - "wp-query" - "wp7test" - "wpa" - "wpas" - "wpd" - "wpdb" - "wpf" - "wpf-4.0" - "wpf-4.5" - "wpf-animation" - "wpf-binding" - "wpf-brushes" - "wpf-controls" - "wpf-graphics" - "wpf-interop" - "wpf-positioning" - "wpfdatagrid" - "wpfstyle" - "wpftoolkit" - "wpk" - "wpl" - "wpm" - "wpml" - "wpmu" - "wpn-xm" - "wptoolkit" - "wql" - "wrap" - "wrap-function" - "wrapall" - "wrappanel" - "wrapper" - "wrapping" - "wraps" - "writable" - "writablebitmap" - "write-error" - "write-once" - "write-output" - "write-through" - "write.table" - "writeablebitmap" - "writeablebitmapex" - "writealltext" - "writedata" - "writeelementstring" - "writefile" - "writeonly" - "writer" - "writer-monad" - "writers" - "writetofile" - "writexml" - "writing" - "wrl" - "wro4j" - "ws-addressing" - "ws-atomic" - "ws-client" - "ws-discovery" - "ws-eventing" - "ws-ex-layered" - "ws-ex-transparent" - "ws-federation" - "ws-i" - "ws-reliablemessaging" - "ws-security" - "ws-trust" - "ws4py" - "wsaasyncselect" - "wsad5.1" - "wsadmin" - "wsapi" - "wsat" - "wsc" - "wscf" - "wscf.blue" - "wscript" - "wsd" - "wsdl" - "wsdl-2.0" - "wsdl.exe" - "wsdl2code" - "wsdl2java" - "wsdl2objc" - "wsdl2php" - "wsdl2ruby" - "wsdl4j" - "wsdlc" - "wsdualhttpbinding" - "wse" - "wse2.0" - "wse3.0" - "wsf" - "wsfederationhttpbinding" - "wsgen" - "wsgi" - "wsgiref" - "wsgiserver" - "wsh" - "wshttpbinding" - "wsimport" - "wsit" - "wsma" - "wsman" - "wso2" - "wso2-am" - "wso2-emm" - "wso2as" - "wso2bam" - "wso2carbon" - "wso2cep" - "wso2cloud" - "wso2developerstudio" - "wso2dss" - "wso2esb" - "wso2greg" - "wso2is" - "wso2php" - "wso2stratos" - "wso2wsas" - "wsod" - "wsp" - "wspbuilder" - "wsrp" - "wsrr" - "wss" - "wss-2.0" - "wss-3.0" - "wss-3.0-sp2" - "wss4j" - "wsse" - "wssf" - "wstring" - "wt" - "wtai" - "wtforms" - "wtforms-json" - "wtfpl" - "wtk" - "wtl" - "wtsapi32" - "wtx" - "wubi" - "wufoo" - "wunderground" - "wurfl" - "wvvm" - "wwan" - "wwdc" - "wwsapi" - "www-authenticate" - "www-mechanize" - "www-mechanize-firefox" - "wwwhisper" - "wwwidgets" - "wx" - "wx.html2" - "wx.textctrl" - "wx2" - "wxauitoolbar" - "wxerlang" - "wxformbuilder" - "wxglade" - "wxglcanvas" - "wxgrid" - "wxhaskell" - "wxhtmlwindow" - "wxhttp" - "wxlua" - "wxmathplot" - "wxmpl" - "wxnotebook" - "wxperl" - "wxpython" - "wxruby" - "wxstring" - "wxstyledtextctrl" - "wxtextctrl" - "wxwidgets" - "wymeditor" - "wysihat" - "wysihtml5" - "wysiwyg" - "wysiwym" - "x++" - "x-accel-redirect" - "x-callback-url" - "x-cart" - "x-editable" - "x-facebook-platform" - "x-fast-trie" - "x-frame-options" - "x-hive" - "x-http-method-override" - "x-macros" - "x-request-id" - "x-sampa" - "x-sendfile" - "x-tag" - "x-ua-compatible" - "x.509" - "x10" - "x10-language" - "x11" - "x11-forwarding" - "x12" - "x264" - "x3d" - "x3dom" - "x509" - "x509certificate" - "x509certificate2" - "x509securitytokenmanager" - "x64" - "x86" - "x86-16" - "x86-64" - "x87" - "xa" - "xacml" - "xacml2" - "xacml3" - "xact" - "xact-abort" - "xaction" - "xades4j" - "xadisk" - "xaf" - "xajax" - "xalan" - "xamairn" - "xamarin" - "xamarin-forms" - "xamarin-studio" - "xamarin.android" - "xamarin.auth" - "xamarin.forms" - "xamarin.ios" - "xamarin.mac" - "xamarin.mobile" - "xamarin.social" - "xamdatachart" - "xamdatagrid" - "xamgeographicmap" - "xamgrid" - "xaml" - "xaml-2009" - "xaml-binding" - "xaml-designer" - "xaml-resources" - "xaml-serialization" - "xaml-tools" - "xamlpad" - "xamlparseexception" - "xamlreader" - "xamlwriter" - "xamlx" - "xampp" - "xap" - "xapian" - "xar" - "xargs" - "xataface" - "xattr" - "xattribute" - "xaudio2" - "xauth" - "xbap" - "xbase" - "xbee" - "xbel" - "xbl" - "xbmc" - "xbox" - "xbox-music" - "xbox-one" - "xbox360" - "xbrl" - "xbuild" - "xc16" - "xc8" - "xcache" - "xcarchive" - "xcasset" - "xcb" - "xcconfig" - "xcdatamodel" - "xceed" - "xceed-datagrid" - "xcelsius" - "xcf" - "xcharts" - "xchat2" - "xclip" - "xcode" - "xcode-bots" - "xcode-git" - "xcode-instruments" - "xcode-organizer" - "xcode-playground" - "xcode-project" - "xcode-scheme" - "xcode-search-scope" - "xcode-server" - "xcode-service" - "xcode-storyboard" - "xcode-template" - "xcode-tools" - "xcode-workspace" - "xcode3" - "xcode3.1" - "xcode3.2" - "xcode3.2.3" - "xcode3to4" - "xcode4" - "xcode4.1" - "xcode4.2" - "xcode4.3" - "xcode4.4" - "xcode4.5" - "xcode4.6" - "xcode4.6.2" - "xcode4.6.3" - "xcode5" - "xcode5.0.1" - "xcode5.1" - "xcode5.1.1" - "xcode6" - "xcode6-beta4" - "xcode6-beta5" - "xcode6-beta6" - "xcode6-beta7" - "xcode6-framework" - "xcode6.0.1" - "xcode6.1" - "xcode6.1-gm-seed" - "xcode6gm" - "xcodebuild" - "xcopy" - "xcore" - "xcos" - "xcrun" - "xcsnapshots" - "xctest" - "xctestexpectation" - "xctool" - "xda" - "xdebug" - "xdebug-profiler" - "xdgutils" - "xdist" - "xdmcp" - "xdoc" - "xdoclet" - "xdocreport" - "xdocument" - "xdomainrequest" - "xdotool" - "xdp" - "xdr" - "xdr-schema" - "xdt" - "xdt-transform" - "xdv" - "xelatex" - "xelement" - "xemacs" - "xembed" - "xen" - "xenapp" - "xendesktop" - "xenforo" - "xenocode" - "xenomai" - "xenu" - "xeon-phi" - "xep-0198" - "xephem" - "xerces" - "xerces-c" - "xerces2-j" - "xeround" - "xetex" - "xfa" - "xfbml" - "xfce" - "xfdf" - "xfdl" - "xfermode" - "xfire" - "xfl" - "xflr5" - "xfn" - "xforms" - "xforms-betterform" - "xfs" - "xgettext" - "xgoogle" - "xgrabpointer" - "xgrid" - "xhp" - "xhprof" - "xhtml" - "xhtml-1.0-strict" - "xhtml-1.1" - "xhtml-mp" - "xhtml-transitional" - "xhtml2" - "xhtml2pdf" - "xhtmlrenderer" - "xib" - "xidel" - "xiff" - "xiki" - "xilinx" - "xilinx-edk" - "xilinx-ise" - "ximea" - "xinc" - "xinclude" - "xinetd" - "xing" - "xinha" - "xinput" - "xip.io" - "xirr" - "xively" - "xjb" - "xjc" - "xla" - "xlc" - "xlconnect" - "xlet" - "xlform" - "xlib" - "xliff" - "xlink" - "xlispstat" - "xll" - "xlocale" - "xlrd" - "xls" - "xlsb" - "xlslib" - "xlsm" - "xlsread" - "xlsx" - "xlsxwriter" - "xlutils" - "xlw" - "xlwings" - "xlwt" - "xmemcached" - "xmetal" - "xmgrace" - "xmi" - "xming" - "xml" - "xml-1.1" - "xml-attribute" - "xml-binding" - "xml-builder" - "xml-column" - "xml-comments" - "xml-conduit" - "xml-configuration" - "xml-data-island" - "xml-database" - "xml-declaration" - "xml-deserialization" - "xml-dml" - "xml-document-transform" - "xml-documentation" - "xml-drawable" - "xml-dsig" - "xml-dtd" - "xml-editor" - "xml-encoding" - "xml-encryption" - "xml-entities" - "xml-file" - "xml-formatting" - "xml-generation" - "xml-import" - "xml-layout" - "xml-libxml" - "xml-literals" - "xml-namespaces" - "xml-nil" - "xml-parsing" - "xml-rpc" - "xml-rpc.net" - "xml-schema" - "xml-schema-collection" - "xml-serialization" - "xml-signature" - "xml-simple" - "xml-sitemap" - "xml-spreadsheet" - "xml-swf-charts" - "xml-transform" - "xml-twig" - "xml-validation" - "xml-visualizer" - "xml.etree" - "xml.modify" - "xmla" - "xmladapter" - "xmlanyelement" - "xmlattributecollection" - "xmlbeans" - "xmlbeans-maven-plugin" - "xmlblaster" - "xmlcatalog" - "xmlconfigurator" - "xmlconvert" - "xmldataprovider" - "xmldataset" - "xmldatasource" - "xmldiff" - "xmldoc" - "xmldocument" - "xmldog" - "xmldom" - "xmldsig" - "xmlencoder" - "xmlexception" - "xmlformview" - "xmlhelper" - "xmlhttp" - "xmlhttp-vba" - "xmlhttprequest" - "xmlhttprequest-level2" - "xmlhttprequest-states" - "xmlignore" - "xmlinclude" - "xmlindex" - "xmllint" - "xmllist" - "xmllite" - "xmlmapper" - "xmlmassupdate" - "xmlnode" - "xmlnodelist" - "xmlns" - "xmlpoke" - "xmlproperty" - "xmlpullparser" - "xmlreader" - "xmlroot" - "xmlrpcclient" - "xmlrpclib" - "xmlschemaset" - "xmlsec" - "xmlsec1" - "xmlseclibs" - "xmlserializer" - "xmlservice" - "xmlslurper" - "xmlsocket" - "xmlspy" - "xmlstarlet" - "xmlstore" - "xmlstreamer" - "xmlstreamreader" - "xmlstreamwriter" - "xmltable" - "xmltask" - "xmltext" - "xmltextreader" - "xmltextwriter" - "xmltodict" - "xmltransient" - "xmltype" - "xmlunit" - "xmlupdate" - "xmlvend" - "xmlworker" - "xmlwriter" - "xmm" - "xmmatrix" - "xmobar" - "xmodem" - "xmodmap" - "xmonad" - "xmoov" - "xmos" - "xmp" - "xmpp" - "xmpp4r" - "xmppframework" - "xmpphp" - "xmpppy" - "xms" - "xna" - "xna-3.0" - "xna-4.0" - "xna-math-library" - "xnamath" - "xname" - "xnamespace" - "xnanimation" - "xnat" - "xnet" - "xnu" - "xobotos" - "xojo" - "xom" - "xoml" - "xoom" - "xop" - "xor" - "xor-drawing" - "xor-linkedlist" - "xorg" - "xp-cmdshell" - "xp-mode" - "xp-theme" - "xpages" - "xpages-extlib" - "xpages-ssjs" - "xpand" - "xpath" - "xpath-1.0" - "xpath-2.0" - "xpath-3.0" - "xpath-api" - "xpathdocument" - "xpathnavigator" - "xpathnodeiterator" - "xpathquery" - "xpc" - "xpc-target" - "xpce" - "xpcom" - "xpcshell" - "xpdf" - "xpdo" - "xperf" - "xpi" - "xpinc" - "xpo" - "xpointer" - "xppageselector" - "xpressive" - "xproc" - "xps" - "xps-generation" - "xpsdocument" - "xpsviewer" - "xptable" - "xqilla" - "xqj" - "xquartz" - "xquery" - "xquery-3.0" - "xquery-sql" - "xquery-update" - "xrandr" - "xrange" - "xrc" - "xrdp" - "xrds" - "xregexp" - "xri" - "xrm" - "xrmservicetoolkit" - "xs" - "xsb" - "xsbt" - "xsbt-proguard-plugin" - "xsbt-web-plugin" - "xscale" - "xsd" - "xsd-1.1" - "xsd-validation" - "xsd.exe" - "xsd2code" - "xsdobjectgen" - "xserver" - "xshell" - "xsi" - "xsitype" - "xsl-choose" - "xsl-fo" - "xsl-grouping" - "xsl-stylesheet" - "xsl-variable" - "xslcompiledtransform" - "xslkey" - "xslt" - "xslt-1.0" - "xslt-2.0" - "xslt-3.0" - "xslt-extension" - "xslt-grouping" - "xslt-tools" - "xsltc" - "xsltforms" - "xsocket" - "xsockets.net" - "xsom" - "xsp" - "xsp2" - "xsp4" - "xspace" - "xspf" - "xsql" - "xss" - "xss-prevention" - "xssf" - "xstream" - "xsuperobject" - "xt" - "xtable" - "xtea" - "xtemplate" - "xtend" - "xterm" - "xtext" - "xtify" - "xtk" - "xtrachart" - "xtradb" - "xtraeditors" - "xtragrid" - "xtrareport" - "xtratreelist" - "xtrf" - "xts" - "xtunit" - "xtuple" - "xtype" - "xubuntu" - "xuggle" - "xuggler" - "xui" - "xul" - "xulrunner" - "xunit" - "xunit.net" - "xv6" - "xval" - "xvalue" - "xvcg" - "xvfb" - "xwiki" - "xwindow" - "xwork" - "xwpf" - "xwt" - "xxd" - "xxtea" - "xypic" - "xz" - "y-combinator" - "y-fast-trie" - "y2k" - "y86" - "yacas" - "yacc" - "yadcf" - "yadis" - "yaf" - "yaf-php-framework" - "yag" - "yagarto" - "yagni" - "yahoo" - "yahoo-analytics" - "yahoo-api" - "yahoo-astra" - "yahoo-boss" - "yahoo-boss-api" - "yahoo-finance" - "yahoo-mail" - "yahoo-maps" - "yahoo-merchant-store" - "yahoo-messenger" - "yahoo-oauth" - "yahoo-pipes" - "yahoo-search" - "yahoo-weather-api" - "yahoo-widgets" - "yail" - "yajl" - "yajsw" - "yakuake" - "yaml" - "yaml-cpp" - "yaml-css" - "yamldotnet" - "yammer" - "yampa" - "yandex" - "yandex-api" - "yandex-maps" - "yandex-metrika" - "yank" - "yap" - "yapdatabase" - "yappi" - "yard" - "yardoc" - "yarn" - "yarv" - "yasm" - "yasnippet" - "yat" - "yaws" - "yaxlib" - "ycrcb" - "ycsb" - "ydn-db" - "ydn-db-fulltext" - "year2038" - "yecc" - "yellow-pages" - "yellow-screen-of-death" - "yelp" - "yeoman" - "yeoman-generator" - "yeoman-generator-angular" - "yepnope" - "yeppp" - "yesod" - "yesod-forms" - "yetanotherforum" - "yeti" - "yfrog" - "yguard" - "yi-editor" - "yield" - "yield-from" - "yield-keyword" - "yield-return" - "yii" - "yii-actions" - "yii-behaviour" - "yii-booster" - "yii-cactiverecord" - "yii-cform" - "yii-cformmodel" - "yii-chtml" - "yii-cmodel" - "yii-components" - "yii-db" - "yii-events" - "yii-extensions" - "yii-filters" - "yii-inheritance" - "yii-modules" - "yii-mvc" - "yii-relations" - "yii-routing" - "yii-url-manager" - "yii-validation" - "yii-widgets" - "yii-xupload" - "yii2" - "yii2-advanced-app" - "yii2-user" - "yiic" - "ymail" - "ynchronizationontext" - "yo" - "yocto" - "yodlee" - "yokozuna" - "yolk" - "yoothemes" - "yourkit" - "yourls" - "youtrack" - "youtrack-api" - "youtracksharp" - "youtube" - "youtube-analytics" - "youtube-api" - "youtube-channels" - "youtube-data-api" - "youtube-dl" - "youtube-iframe-api" - "youtube-javascript-api" - "youtube-livestreaming-api" - "youtube-v3-api" - "youtube.net-api" - "youwave" - "yowsup" - "yoxos" - "yoxview" - "yql" - "yslow" - "ysod" - "ytplayer" - "yuglify" - "yui" - "yui-autocomplete" - "yui-calendar" - "yui-charts" - "yui-compressor" - "yui-datasource" - "yui-datatable" - "yui-editor" - "yui-grids" - "yui-menu" - "yui-pure-css" - "yui-reset" - "yui-uploader" - "yui2" - "yui3" - "yuidoc" - "yum" - "yuv" - "z-axis" - "z-curve" - "z-index" - "z-machine" - "z-notation" - "z-order" - "z3" - "z39.50" - "z3c.form" - "z3py" - "z80" - "zabbix" - "zaber" - "zap" - "zapier" - "zappa" - "zbar" - "zbar-sdk" - "zbuffer" - "zcat" - "zclip" - "zcml" - "zebra" - "zebra-printers" - "zebra-puzzle" - "zebra-striping" - "zebus" - "zedattackproxy-zap" - "zedgraph" - "zeitgeist" - "zeke" - "zelle-graphics" - "zemanta" - "zen" - "zen-cart" - "zen-coding" - "zencoder" - "zend-acl" - "zend-amf" - "zend-app-bootstrap" - "zend-application" - "zend-auth" - "zend-autoloader" - "zend-cache" - "zend-certification" - "zend-config" - "zend-config-xml" - "zend-controller" - "zend-controller-plugin" - "zend-controller-router" - "zend-currency" - "zend-date" - "zend-db" - "zend-db-profiler" - "zend-db-select" - "zend-db-table" - "zend-debugger" - "zend-decorators" - "zend-dom-query" - "zend-feed" - "zend-file" - "zend-filter" - "zend-filter-strip-tags" - "zend-form" - "zend-form-element" - "zend-form-select" - "zend-form-sub-form" - "zend-form2" - "zend-framework" - "zend-framework-modules" - "zend-framework-mvc" - "zend-framework-routing" - "zend-framework2" - "zend-gdata" - "zend-guard" - "zend-http-client" - "zend-inputfilter" - "zend-layout" - "zend-loader" - "zend-locale" - "zend-log" - "zend-lucene" - "zend-mail" - "zend-navigation" - "zend-optimizer" - "zend-paginator" - "zend-pdf" - "zend-queue" - "zend-rest" - "zend-rest-route" - "zend-route" - "zend-router" - "zend-search-lucene" - "zend-server" - "zend-server-ce" - "zend-server-installation" - "zend-session" - "zend-session-namespace" - "zend-soap" - "zend-studio" - "zend-tag" - "zend-test" - "zend-tool" - "zend-translate" - "zend-validate" - "zend-view" - "zend-xmlrpc" - "zendesk" - "zendrive" - "zendx" - "zengge" - "zenity" - "zenoss" - "zenpen" - "zenphoto" - "zentest" - "zentyal" - "zeos" - "zephir" - "zepto" - "zerigo" - "zero" - "zero-copy" - "zero-pad" - "zerobrane" - "zeroclipboard" - "zeroclipboard-1.x" - "zerocloud" - "zeroconf" - "zeroes" - "zerofill" - "zeromq" - "zerorpc" - "zerovm" - "zest" - "zeta-components" - "zeus" - "zf-boilerplate" - "zfc-rbac" - "zfcuser" - "zfdatagrid" - "zfdoctrine" - "zfs" - "zftool2" - "zigbee" - "zigfu" - "zigzag" - "zigzag-encoding" - "zii-widgets" - "zikula" - "zillow" - "zimbra" - "zimlet" - "zinc-4" - "zingchart" - "zinnia" - "zip" - "zip-conduit" - "zip.js" - "zip4j" - "zipalign" - "ziparchive" - "zipcode" - "zipfile" - "zipinputstream" - "zipkin" - "zipline" - "zipmap" - "zipoutputstream" - "zipper" - "zipstorer" - "zipstream" - "zipunit" - "zk" - "zk-grid" - "zkcm" - "zlib" - "zlib-conduit" - "zmalloc" - "zmodem" - "znodes" - "zodb" - "zoho" - "zombie-connection" - "zombie-process" - "zombie.js" - "zone" - "zoneinfo" - "zones" - "zoo" - "zookeeper" - "zoom" - "zoomcharts" - "zoomify" - "zooming" - "zoomooz" - "zooz" - "zope" - "zope.component" - "zope.interface" - "zope3" - "zopeskel" - "zorba" - "zos" - "zotonic" - "zpanel" - "zpl" - "zpl-ii" - "zposition" - "zpt" - "zseries" - "zsh" - "zsh-completion" - "zshrc" - "zsi" - "zsync" - "ztree" - "zucchini" - "zui" - "zul" - "zumero" - "zune" - "zune-hd" - "zuora" - "zuora-soap" - "zurb-foundation" - "zurb-foundation-5" - "zurb-ink" - "zurb-joyride" - "zurb-reveal" - "zwoptex" - "zx81" - "zxing" - "zxspectrum" - "zynq" - "zypper") diff --git a/data/tags/startups.el b/data/tags/startups.el deleted file mode 100644 index 69475be..0000000 --- a/data/tags/startups.el +++ /dev/null @@ -1,249 +0,0 @@ -("83b" - "ab-testing" - "accelerators" - "accounting" - "accounts-recievable" - "acquiring" - "advertising" - "affiliate-marketing" - "agile" - "alaska" - "android-development" - "angel-investors" - "app-store-optimization" - "application" - "australia" - "b2b" - "baas" - "bank-loan" - "benefits" - "beta-testing" - "billing" - "bizspark" - "board" - "bootstrapping" - "bottlenecks" - "brand" - "bubble" - "buisness-model" - "business-capital" - "business-card" - "business-model" - "business-plan" - "business-proposal" - "business-registration" - "business-structure" - "c-corp" - "canada" - "cashflow" - "ceo" - "chicken-egg" - "china" - "cloud" - "colorado" - "common-stock" - "communication" - "company-culture" - "compensation" - "consulting" - "content" - "contractors" - "contracts" - "convertible-debt" - "copyright" - "corporation" - "crowd-funding" - "customer-development" - "customer-service" - "debt" - "debt-collection" - "delaware" - "design" - "difficult-client" - "dilution" - "director-duties" - "discounts" - "domain-name" - "downtime" - "e-commerce" - "earnings" - "economical" - "economics" - "employee-compensation" - "employees" - "employment" - "entrepreneurism-abroad" - "entrepreneurship" - "equity" - "errors" - "exit" - "expansion" - "facilities" - "factoring" - "family-business" - "farms" - "field-sales" - "filing" - "finance" - "financing" - "forecasting" - "founder" - "freelancing" - "front-end" - "funding" - "fundraising" - "game-studio" - "gaming" - "georgia" - "germany" - "giving-up" - "global" - "gmbh" - "goals" - "government" - "grants" - "growth" - "hardware" - "hiring" - "history" - "hours" - "human-resources" - "idaho" - "idea" - "incubators" - "india" - "insurance" - "intellectual-property" - "interest" - "international" - "internet" - "interns" - "investment" - "investors" - "israel" - "jurisdiction" - "kicking" - "landscaping" - "launch" - "law" - "lawyer" - "leadership" - "lean" - "lean-startup" - "legal" - "liability-insurance" - "linkedin" - "liquidation" - "llc" - "low-capital" - "ltd" - "management" - "market-research" - "marketing" - "maryland" - "massachusetts" - "merchant-services" - "metrics" - "minimum-viable-product" - "minimum-wage" - "mobile-app" - "mobile-apps" - "naming" - "nasdaq" - "negligence" - "negotiation" - "networking" - "new-hampshire" - "new-york" - "non-disclosure-agreement" - "non-profit" - "oklahoma" - "oregon" - "ownership" - "paperwork" - "parallel-entrepreneur" - "partners" - "partnership" - "patent" - "payment" - "peer-to-peer" - "pennsylvania" - "pitch" - "predictions" - "pricing" - "private-company" - "process" - "product" - "project-management" - "projections" - "public-company" - "quotations" - "registered-agent" - "relocate" - "remote" - "resources" - "restaurants" - "restricted-stock" - "retention" - "revenue" - "s-corp" - "s-corporation" - "saas" - "salary" - "sales" - "scrum" - "seasonal" - "security" - "seed" - "seo" - "separating" - "serbia" - "servers" - "service" - "silicon-valley" - "singapore" - "skills" - "slogan" - "social-networking" - "software" - "sole-proprietorship" - "spin-off" - "sri-lanka" - "startup-costs" - "statistics" - "stealth" - "stock" - "stock-options" - "structure" - "target-market" - "tax-structure" - "taxes" - "team" - "tech-company" - "telecommute" - "testing" - "texas" - "time-off" - "trademark" - "transportation" - "ukraine" - "umbrella" - "united-kingdom" - "united-states" - "us-government" - "ux" - "valuation" - "value" - "variable-team" - "venture-capital" - "vesting" - "vision" - "web-development" - "website" - "winter" - "work-for-hire" - "yc-how-to-start-a-startup" - "ycombinator" - "young-entrepreneurs" - "youth" - "zoho-books") diff --git a/data/tags/stats.el b/data/tags/stats.el deleted file mode 100644 index 14edba9..0000000 --- a/data/tags/stats.el +++ /dev/null @@ -1,1080 +0,0 @@ -("2sls" - "ab-test" - "abc" - "absolute-risk" - "academia" - "accuracy" - "adjustment" - "age" - "age-period-cohort" - "aggregation" - "agreement-statistics" - "aic" - "algorithms" - "amos" - "ancova" - "anderson-darling" - "anosim" - "anova" - "application" - "approximation" - "apriori" - "arch" - "arima" - "arithmetic" - "arma" - "artificial-intelligence" - "association-measure" - "association-rules" - "assumptions" - "astronomy" - "asymptotics" - "auc" - "augmented-dickey-fuller" - "autocorrelation" - "autoencoders" - "automatic-algorithms" - "autoregressive" - "average" - "average-precision" - "back-transformation" - "bagging" - "barplot" - "bart" - "basic-concepts" - "bayes" - "bayes-network" - "bayesian" - "bayesian-network" - "bayesian-score" - "belief" - "belief-propagation" - "benchmark" - "bernoulli-distribution" - "bernoulli-process" - "best-practices" - "bestglm" - "beta" - "beta-binomial" - "beta-distribution" - "beta-regression" - "bias" - "bic" - "big-data" - "big-list" - "binary" - "binary-data" - "binning" - "binomial" - "bioinformatics" - "biomarker" - "biostatistics" - "biplot" - "bivariate" - "blocking" - "blog" - "blue" - "blup" - "bonferroni" - "books" - "boosting" - "bootstrap" - "bounds" - "boxplot" - "bradley-terry-model" - "breusch-pagan" - "bugs" - "business-intelligence" - "c#" - "c++" - "calc" - "calibration" - "canonical-correlation" - "capture-mark-recapture" - "car" - "careers" - "caret" - "cart" - "case-cohort" - "case-control-study" - "categorical-data" - "cauchy" - "causal-inference" - "causality" - "cdf" - "censoring" - "census" - "centering" - "central-limit-theorem" - "change-point" - "change-scores" - "characteristic-function" - "checking" - "chemistry" - "chemometrics" - "chi-distribution" - "chi-squared" - "choice" - "cholesky" - "chow-test" - "churn" - "circular-statistics" - "clara" - "classification" - "classification-tree" - "climate" - "clinical-trials" - "clogit" - "clpc" - "cluster-sample" - "clustered-standard-errors" - "clustering" - "cochran-armitage-test" - "cochran-mantel-haenszel" - "cochran-q" - "coda" - "code" - "coefficient" - "coefficient-of-variation" - "cohens-d" - "cointegration" - "collecting-data" - "combination" - "combinatorics" - "communication" - "comorbidity" - "competing-risks" - "composite" - "compositional-data" - "compression" - "computational-statistics" - "computer-vision" - "computing" - "concordance" - "condition-number" - "conditional-expectation" - "conditional-probability" - "conditioning" - "conferences" - "confidence" - "confidence-distribution" - "confidence-interval" - "confirmatory-factor" - "confounding" - "confusion-matrix" - "conjoint-analysis" - "conjugate-prior" - "consistency" - "constrained-regression" - "consulting" - "contextual-bandit" - "contingency-tables" - "continuous" - "continuous-data" - "contrast" - "contrasts" - "control" - "control-chart" - "convergence" - "convex" - "convolution" - "copula" - "correlated-predictors" - "correlation" - "correspondence-analysis" - "cosine-distance" - "cost-maximization" - "count-data" - "counterbalancing" - "courses" - "covariance" - "covariate" - "coverage-probability" - "cox-model" - "cramers-v" - "credible-interval" - "cross-correlation" - "cross-section" - "cross-validation" - "crossover-study" - "crostons-method" - "csv-file" - "cumulants" - "curve-fitting" - "curves" - "cv.glm" - "dag" - "data-acquisition" - "data-association" - "data-cleaning" - "data-generating-process" - "data-imputation" - "data-management" - "data-mining" - "data-preprocessing" - "data-transformation" - "data-visualization" - "database" - "dataframe" - "dataset" - "decision-theory" - "deep-belief-networks" - "deep-learning" - "definition" - "degrees-of-freedom" - "delta-method" - "deming-regression" - "demography" - "dendrogram" - "density" - "density-function" - "dependence" - "derivative" - "descriptive-statistics" - "determinant" - "deviance" - "diagnostic" - "dice" - "difference-in-difference" - "differential-equations" - "dimensionality-reduction" - "directional-statistics" - "dirichlet-distribution" - "dirichlet-process" - "disaggregation" - "discontinuity" - "discrete-data" - "discrete-time" - "discriminant" - "discriminant-analysis" - "discussion" - "disease" - "dispersion" - "distance" - "distance-functions" - "distributions" - "dlm" - "double-blind" - "down-sample" - "duan-smearing" - "dummy-variables" - "dunn-test" - "dyadic-data" - "dynamic-regression" - "e-m" - "e1071" - "ecdf" - "ecm" - "ecology" - "econometrics" - "eda" - "education" - "effect-size" - "effects" - "efficiency" - "eigenvalues" - "elastic-net" - "elections" - "elicitation" - "em-algorithm" - "empirical" - "endogeneity" - "engineering-statistics" - "ensemble" - "entity-labeling" - "entropy" - "environmental-data" - "epidemiology" - "equivalence" - "equivalent-distributions" - "ergodic" - "error" - "error-in-variables" - "error-message" - "error-propagation" - "errors-in-variables" - "estimation" - "estimators" - "euclidean" - "eviews" - "ewma" - "exact-test" - "excel" - "expectation-maximization" - "expected-value" - "experiment-design" - "explanatory" - "explanatory-models" - "exploratory-analysis" - "exponential" - "exponential-family" - "exponential-smoothing" - "extremal-dependence" - "extreme-value" - "f-distribution" - "f-statistic" - "f-test" - "factor-analysis" - "factorisation-theorem" - "failure" - "familywise-error" - "fat-tails" - "fdr" - "feature-construction" - "feature-selection" - "fiducial" - "filter" - "finance" - "fine-tune" - "finite-population" - "fisher" - "fisher-information" - "fisher-transform" - "fishersexact" - "fitting" - "fixed-effects-model" - "forecast" - "forecasting" - "formula" - "fortran" - "fourier-transform" - "fractal" - "fractional-factorial" - "frailty" - "fraud" - "frequency" - "frequency-severity" - "frequentist" - "function" - "functional-data-analysis" - "funnel-plot" - "fuzzy" - "fuzzy-set" - "gam" - "gambling" - "gamboost" - "games" - "gamm4" - "gamma-distribution" - "garch" - "gaussian-mixture" - "gaussian-process" - "gbm" - "gee" - "general-additive-model" - "generalized-eta-squared" - "generalized-least-squares" - "generalized-linear-model" - "generalized-moments" - "generative-models" - "generator" - "generilzed-linear-model" - "genetic-algorithms" - "genetics" - "geomarketing" - "geometric-distribution" - "geometric-mean" - "geometry" - "geostatistics" - "ggplot" - "ggplot2" - "ghyp" - "gibbs" - "gini" - "gis" - "gllamm" - "glmer" - "glmm" - "glmmlasso" - "glmnet" - "gls" - "gmm" - "gmmboost" - "gnuplot" - "goodness-of-fit" - "google-spreadsheet" - "gpu" - "gradient" - "gradient-descent" - "granger-causality" - "graph-theory" - "graphical-model" - "gretl" - "group-differences" - "growth-mixture-model" - "growth-model" - "gui" - "gumbel" - "gwas" - "hac" - "hausman" - "hazard" - "heatmap" - "heavy-tailed" - "hessian" - "heterogeneity" - "heteroscedasticity" - "heuristic" - "hidden-markov-model" - "hierarchical" - "hierarchical-bayesian" - "hierarchical-clustering" - "high-dimensional" - "histogram" - "history" - "homogeneity" - "hotelling" - "humor" - "hypergeometric" - "hyperparameter" - "hypothesis-testing" - "ica" - "identifiability" - "igraph" - "iid" - "image" - "image-processing" - "importance" - "importance-sampling" - "impulse-response" - "imputation" - "in-sample" - "incidence-rate-ratio" - "independence" - "index-decomposition" - "indicator-variables" - "inference" - "inferential-statistics" - "information" - "information-geometry" - "information-retrieval" - "information-theory" - "instrumental-variables" - "integral" - "inter-rater" - "interaction" - "interactive-visualization" - "interarrival-time" - "intercept" - "internet" - "interpolation" - "interpretation" - "interquartile" - "interval" - "interval-censoring" - "intervention-analysis" - "intraclass-correlation" - "intuition" - "inverse-gamma" - "inverse-gaussian-distrib" - "irls" - "irt" - "jaccard-similarity" - "jackknife" - "jacobian" - "jags" - "java" - "javascript" - "jeffreys-prior" - "jmp" - "job" - "joint-distribution" - "journals" - "k-means" - "k-medoids" - "k-nearest-neighbour" - "kalman-filter" - "kaplan-meier" - "kappa" - "kde" - "kendall-tau" - "kernel" - "kernel-density-estimate" - "kernel-regression" - "kernel-trick" - "kmodes" - "knowledge-discovery" - "kolmogorov-smirnov" - "kriging" - "kruskal-wallis" - "kullback-leibler" - "kurtosis" - "lags" - "laplace-distribution" - "large-data" - "largest-value" - "lars" - "lasso" - "latent-class" - "latent-semantic-indexing" - "latent-variable" - "latex" - "latin-square" - "learning" - "least-squares" - "levenes-test" - "library" - "libsvm" - "life-expectancy" - "lifetable" - "likelihood" - "likelihood-function" - "likelihood-ratio" - "likert" - "lilliefors" - "linear" - "linear-algebra" - "linear-dynamical-system" - "linear-mixed-model" - "linear-model" - "link-function" - "lm" - "lme" - "lme4" - "lmer" - "local-statistics" - "loess" - "log-likelihood" - "log-linear" - "logarithm" - "logistic" - "logit" - "lognormal" - "logrank" - "longitudinal" - "lorenz-curve" - "loss-functions" - "lrt" - "lsa" - "lsmc" - "lsmeans" - "machine-learning" - "macroeconomics" - "mad" - "mancova" - "manifold-learning" - "mann-whitney-u-test" - "manova" - "marginal" - "marginal-effect" - "marginal-model" - "marketing" - "markov-chain" - "markov-process" - "mars" - "martingale" - "matching" - "mathematica" - "mathematical-statistics" - "mathematics" - "matlab" - "matplotlib" - "matrix" - "matrix-decomposition" - "matrix-inverse" - "max-margin" - "maximum" - "maximum-entropy" - "maximum-likelihood" - "mcmc" - "mcnemar-test" - "mean" - "measurement" - "measurement-error" - "media" - "median" - "mediation" - "medicine" - "meta-analysis" - "meta-regression" - "method-comparison" - "method-of-moments" - "methodology" - "metric" - "metropolis-hastings" - "mfcc" - "mgcv" - "mgf" - "mice" - "microarray" - "minimax" - "minimum" - "minimum-variance" - "minitab" - "missing" - "missing-data" - "mixed" - "mixed-design" - "mixed-distribution" - "mixed-effect" - "mixed-model" - "mixture" - "mlogit" - "mode" - "model" - "model-based-clustering" - "model-comparison" - "model-selection" - "modeling" - "moderator" - "moments" - "monitoring" - "monotone-likelihood-ratio" - "monte-carlo" - "mortality" - "moving-average" - "moving-window" - "mplus" - "mse" - "multi-class" - "multiarmed-bandit" - "multicollinearity" - "multicore" - "multidimensional-scaling" - "multilabel" - "multilevel-analysis" - "multinomial" - "multiple-comparisons" - "multiple-imputation" - "multiple-membership" - "multiple-regression" - "multivariable" - "multivariate" - "multivariate-analysis" - "multivariate-regression" - "musical-data-analysis" - "mutual-information" - "na" - "nadaraya-watson" - "naive-bayes" - "nakagami-distribution" - "natural-language" - "negative-binomial" - "nested" - "networks" - "neural-networks" - "neuroimaging" - "neuroscience" - "neweywest" - "neyman-pearson-lemma" - "nlme" - "nlmer" - "nlp" - "nls" - "nnet" - "nnt" - "noise" - "nominal" - "non-central" - "non-independent" - "non-inferiority" - "non-nested" - "non-response" - "non-stationary" - "nonlinear" - "nonlinear-regression" - "nonparametric" - "nonparametric-bayes" - "nonparametric-density" - "nonparametric-regression" - "normal" - "normal-distribution" - "normality" - "normalization" - "notation" - "novelty-detection" - "np" - "numerical-integration" - "numerics" - "numpy" - "observational-study" - "odds" - "odds-ratio" - "ode" - "offset" - "online" - "open-bugs" - "open-source" - "operations-research" - "optimal" - "optimal-scaling" - "optimal-stopping" - "optimization" - "order" - "order-statistics" - "ordered-logit" - "ordered-variables" - "ordinal" - "out-of-sample" - "outliers" - "overdispersion" - "overfitting" - "oversampling" - "p-value" - "pac" - "package" - "paired-comparisons" - "paired-data" - "panel-data" - "paradox" - "parallel-analysis" - "parallel-computing" - "parameterization" - "parametric" - "pareto-distribution" - "partial" - "partial-correlation" - "partial-plot" - "particle-filter" - "partitioning" - "path-model" - "pattern-recognition" - "pc-sas" - "pca" - "pca-regression" - "pcoa" - "pdf" - "pearson" - "penalized" - "percentage" - "performance" - "perl" - "permutation" - "personal-musings" - "pharmacy" - "phd" - "philosophical" - "php" - "pie-chart" - "piecewise-linear" - "pit" - "pitch-game" - "pivot" - "pivot-table" - "planned-comparisons-test" - "plm" - "pls" - "plyr" - "pmml" - "point-estimation" - "point-mass-at-zero" - "point-process" - "poisson" - "poisson-binomial" - "poisson-process" - "poisson-regression" - "poker" - "politics" - "polling" - "polr" - "polynomial" - "pooling" - "population" - "population-average" - "population-ecology" - "post-hoc" - "posterior" - "power" - "power-analysis" - "power-law" - "precision-recall" - "prediction" - "prediction-interval" - "prediction-limit" - "predictive-models" - "predictor" - "presentation" - "prior" - "probabilistic-programming" - "probability" - "probability-inequalities" - "probit" - "profile-likelihood" - "programming" - "project-management" - "projection" - "proof" - "propensity-scores" - "proportion" - "protovis" - "psychology" - "psychometrics" - "publication-bias" - "puzzle" - "pymc" - "python" - "qq-plot" - "qsar" - "quadratic-form" - "qualitative" - "quality-control" - "quantile-regression" - "quantiles" - "quasi-binomial" - "quasi-likelihood" - "quasi-monte-carlo" - "queueing" - "quotation" - "r" - "r-project" - "r-squared" - "rademacher" - "radial-basis" - "ram" - "random-effects-model" - "random-forest" - "random-generation" - "random-matrix" - "random-variable" - "random-walk" - "randomization" - "randomness" - "range" - "rank-correlation" - "ranking" - "ranks" - "rapidminer" - "rare-events" - "rasch" - "rating" - "ratio" - "rayleigh" - "rbm" - "real-time" - "recommender-system" - "record-linkage" - "recursive-model" - "referee" - "references" - "regression" - "regression-coefficients" - "regression-diagnostic" - "regression-strategies" - "regression-to-the-mean" - "regularization" - "reinforcement-learning" - "rejection-sampling" - "relative-risk" - "reliability" - "repeatability" - "repeated-measures" - "replication" - "reporting" - "representative" - "reproducible-research" - "resampling" - "residual-analysis" - "residuals" - "resources" - "rhadoop" - "ridge-regression" - "risk" - "risk-difference" - "rjags" - "rlm" - "rmr" - "rms" - "robust" - "robust-standard-error" - "roc" - "rocr" - "ronald-fisher" - "rotation" - "rpart" - "ruby" - "rule-of-thumb" - "run-length" - "runs" - "sample" - "sample-mean" - "sample-size" - "sampling" - "sandwich" - "sas" - "scalability" - "scale-estimator" - "scale-invariance" - "scales" - "scatterplot" - "schoenfeld-residuals" - "science" - "scikit-learn" - "scipy" - "scores" - "scoring" - "search-theory" - "seasonality" - "segmentation" - "segmented-regression" - "self-organizing-maps" - "self-study" - "sem" - "semi-supervised" - "semiparametric" - "sensitivity" - "sensitivity-analysis" - "sentiment-analysis" - "separability" - "sequence-analysis" - "sequential-analysis" - "shrinkage" - "sign-test" - "signal-detection" - "signal-processing" - "signed-rank-test" - "similarities" - "simpsons-paradox" - "simulation" - "singular" - "skew-normal" - "skewness" - "small-sample" - "smallareaestimation" - "smoothing" - "social-network" - "social-science" - "software" - "sources" - "sparse" - "spatial" - "spatial-interaction-model" - "spatio-temporal" - "spearman" - "spearman-rho" - "specificity" - "spectral-analysis" - "sphericity" - "splines" - "split-plot" - "splus" - "spss" - "sql" - "stacking" - "stan" - "standard" - "standard-deviation" - "standard-error" - "standardization" - "starting-values" - "stata" - "state-space-models" - "stationarity" - "statistical-bias" - "statistical-control" - "statistical-learning" - "statistical-significance" - "statsmodels" - "steins-phenomenon" - "stepwise-regression" - "stochastic-approximation" - "stochastic-ordering" - "stochastic-processes" - "stratification" - "structural-change" - "students-t" - "subject-specific" - "subset" - "sufficient-statistics" - "summary-statistics" - "summations" - "sums-of-squares" - "supervised-learning" - "suppressor" - "survey" - "survival" - "svd" - "svm" - "sweave" - "synthetic-data" - "systematic" - "t-distribution" - "t-test" - "tables" - "taylor-series" - "teaching" - "terminology" - "test-equating" - "test-for-trend" - "text-mining" - "theory" - "theta-method" - "threshold" - "time-complexity" - "time-series" - "time-varying-covariate" - "timelines" - "tobit-regression" - "toeplitz" - "tolerance-interval" - "topic-models" - "topologies" - "tost" - "train" - "traminer" - "transportation" - "treatment-effect" - "trend" - "trimmed-mean" - "truncation" - "tukey-hsd" - "tweedie-distribution" - "twin" - "two-step-estimation" - "type-i-errors" - "type-ii-errors" - "umvue" - "unbalanced-classes" - "unbiased-estimator" - "uncertainty" - "underdetermined" - "underdispersion" - "uniform" - "uninformative-prior" - "unit-information-prior" - "unit-root" - "units" - "univariate" - "unsupervised-learning" - "untagged" - "updating" - "validation" - "validity" - "valuation" - "value-of-information" - "var" - "variability" - "variance" - "variance-covariance" - "variance-decomposition" - "variance-test" - "variational-bayes" - "variogram" - "vecm" - "vector-fields" - "vif" - "visual-summary" - "volatility-forecasting" - "vowpal-wabbit" - "ward" - "wavelet" - "web" - "weibull" - "weighted-data" - "weighted-mean" - "weighted-regression" - "weighted-sampling" - "weka" - "white-noise" - "whitening" - "wilcoxon" - "winbugs" - "wishart" - "within-subjects" - "wlln" - "xorshift" - "yates-correction" - "z-statistic" - "z-test" - "zero-inflated" - "zero-inflation" - "zipf") diff --git a/data/tags/superuser.el b/data/tags/superuser.el deleted file mode 100644 index c291715..0000000 --- a/data/tags/superuser.el +++ /dev/null @@ -1,5053 +0,0 @@ -(".bash-profile" - ".ds-store" - ".net-2.0" - ".net-3.5" - ".net-4.0" - ".net-4.5" - ".net-framework" - ".profile" - ".xpi" - "1080p" - "120hz" - "16-bit" - "1password" - "2wire" - "3.5mm" - "32-bit" - "32-vs-64-bit" - "3d" - "3d-graphics" - "3d-modeling" - "3d-multimedia" - "3d-ready" - "3d-vision" - "3dmark" - "3ds-max" - "3g" - "3gp" - "3ware" - "4k-resolution" - "5.1" - "64-bit" - "6to4" - "7-zip" - "7za" - "802.11" - "802.11ac" - "802.11g" - "802.11n" - "802.1x" - "a2dp" - "aac" - "abandonware" - "abbyy" - "abiword" - "ableton-live" - "about-config" - "ac-adapter" - "ac3" - "acceleration" - "accelerator" - "accelerometer" - "access-connections" - "access-control" - "access-point" - "accessibility" - "accessories" - "accounting" - "acer-aspire" - "acer-aspire-one" - "acer-revo" - "acer-travelmate" - "ack" - "acl" - "acpi" - "acronis" - "acronis-trueimage" - "acronym" - "action-center" - "actionscript" - "actionscript-3" - "active-directory" - "active-directory-explorer" - "activesync" - "activex" - "ad-hoc-network" - "adaptec" - "adapter" - "adblock" - "adblock-list" - "addons" - "address-bar" - "address-book" - "address-space-exhaustion" - "adium" - "adk" - "admin-tools" - "administration" - "administrator" - "adobe" - "adobe-acrobat" - "adobe-after-effects" - "adobe-air" - "adobe-audition" - "adobe-bridge" - "adobe-connect" - "adobe-creative-cloud" - "adobe-creative-suite" - "adobe-cs3" - "adobe-cs4" - "adobe-cs5" - "adobe-cs6" - "adobe-fireworks" - "adobe-flash" - "adobe-illustrator" - "adobe-indesign" - "adobe-lightroom" - "adobe-media-encoder" - "adobe-photoshop" - "adobe-premiere" - "adobe-reader" - "adsense" - "adsl" - "adsl-router" - "adsl2+" - "advanced-format" - "advertisements" - "adware" - "aero" - "aero-peek" - "aero-snap" - "aerofs" - "aes" - "affinity" - "afloat" - "afp" - "afs" - "agent-ransack" - "aggregation" - "agp" - "ahci" - "aim" - "aircard" - "aircrack-ng" - "airfoil" - "airplay" - "airport" - "airport-express" - "airport-extreme" - "airtunes" - "aix" - "alac" - "alarm" - "alarm-clock" - "album-art" - "alert" - "alfred" - "alfresco" - "algorithm" - "alias" - "alien" - "alignment" - "all-in-one" - "alpha-channel" - "alpine" - "alsa" - "alt" - "alt-code" - "alt-tab" - "alt-text" - "alternate-data-stream" - "alternate-instalation" - "altiris-svs" - "always-on-top" - "am2+" - "am3" - "amarok" - "amavis" - "amazon" - "amazon-ec2" - "amazon-glacier" - "amazon-rds" - "amazon-s3" - "amazon-web-services" - "amd" - "amd-athlon" - "amd-catalyst" - "amd-cpu" - "amd-graphics-card" - "amd-phenom" - "amd-radeon" - "amd-vision" - "amiga" - "amplification" - "ampps" - "amr" - "analog" - "analysis" - "android" - "android-x86" - "animated-gif" - "animation" - "annotations" - "announcer" - "ansi" - "answerfile" - "ant" - "antec" - "antenna" - "anti-aliasing" - "anti-glare" - "anti-malware" - "anti-spyware" - "anti-theft" - "anti-virus" - "anytime-upgrade" - "aol" - "apache" - "apacheds" - "apc" - "ape" - "aperture" - "api" - "appearance" - "append" - "apple" - "apple-id" - "apple-mail" - "apple-remote" - "apple-remote-desktop" - "applescript" - "applet" - "appletv" - "appleworks" - "appliance" - "application-error" - "application-launch" - "applications" - "appointments" - "appwiz.cpl" - "apt" - "apt-cache" - "apt-get" - "aptana" - "aptana-studio" - "aptitude" - "aquamacs" - "arabic" - "arch-linux" - "architecture" - "archiving" - "arcsoft" - "arduino" - "arguments" - "arm" - "arp" - "array" - "ascii" - "ascii-art" - "asio" - "ask-toolbar" - "asl" - "asp" - "asp.net" - "aspect-ratio" - "aspell" - "asrock" - "assembly" - "asterisk" - "asus" - "at" - "ata" - "atapi" - "atheros" - "ati" - "ati-mobility-firegl" - "ati-mobility-radeon" - "atlassian-crowd" - "atlassian-stash" - "atom-editor" - "atom-feed" - "atpdraw" - "atrac" - "attachments" - "attack-vector" - "attributes" - "atx" - "auctex" - "audacity" - "audible" - "audio" - "audio-cd" - "audio-conversion" - "audio-output" - "audio-processing" - "audio-recording" - "audio-streaming" - "audiobook" - "audit" - "authentication" - "authoring" - "authorization" - "authorized-keys" - "auto-detect" - "auto-form-fill" - "auto-login" - "auto-reply" - "auto-updates" - "autoarchive" - "autocad" - "autocomplete" - "autoconf" - "autocorrect" - "autodesk-inventor" - "autofs" - "autohotkey" - "autoindent" - "autoit" - "autologon" - "automated-builds" - "automatic-logon" - "automatic-maintenance" - "automatic-update" - "automation" - "automator" - "automount" - "autoplay" - "autoproxy" - "autorun" - "autosave" - "autostart" - "autotools" - "autotune" - "av-cable" - "av-definitions" - "av-receiver" - "avahi" - "avast" - "avatar" - "avchd" - "avg-antivirus" - "avi" - "avidemux" - "avira" - "avisynth" - "awesome-wm" - "awesomebar" - "awk" - "axis" - "axure" - "azure" - "babylon" - "background" - "background-image" - "backlight" - "backspace" - "backticks" - "backtrack" - "backup" - "backup-exec" - "backup-exec-2010" - "backup-strategies" - "bad-blocks" - "bad-sectors" - "badbios" - "badges" - "bamboo" - "bandwidth" - "bandwidth-caps" - "banner" - "banshee" - "barcode" - "barcode-scanner" - "bare-metal" - "barebone" - "bartpe" - "base64" - "bash" - "bash-alias" - "bash-scripting" - "bashrc" - "basic" - "basic-disk" - "batch" - "batch-file" - "batch-rename" - "battery" - "battery-life" - "bazaar" - "bbedit" - "bbs" - "bc" - "bcc" - "bcd" - "bcdboot" - "bcdedit" - "beagleboard" - "beaglebone" - "beamer" - "beat-detection" - "beets" - "belkin" - "bell" - "benchmarking" - "beos" - "berkshelf" - "beyondcompare" - "bgp" - "bibliography" - "bibtex" - "billion" - "bin-cue-image" - "binary" - "binary-files" - "bind" - "bindings" - "bing" - "bing-maps" - "binwalk" - "biometrics" - "bios" - "bit-order" - "bitbucket.org" - "bitcoin" - "bitcoind" - "bitdefender" - "bitlocker" - "bitmaps" - "bitrate" - "bittorrent" - "bittorrent-sync" - "bkf" - "black-screen-of-death" - "blackberry" - "blacklist" - "blade" - "blank-screen" - "blend" - "blender" - "blink1" - "blinking" - "bloatware" - "block-device" - "blocking" - "blogging" - "blu-ray" - "bluefish" - "bluestacks" - "bluetooth" - "bluetooth-3.0" - "bmp" - "bochs" - "boinc" - "bom" - "bonding" - "bonjour" - "bookmarklet" - "bookmarks" - "booster" - "boot" - "boot-camp" - "boot-cd" - "boot-manager" - "boot-partition" - "boot-to-vhd" - "boot.ini" - "bootable-media" - "bootloader" - "bootmgr" - "bootrepair" - "bootsector" - "border" - "bots" - "bottleneck" - "box.com" - "boxee" - "bpm" - "braces" - "bracket" - "brackets" - "branch" - "bricked" - "bridge" - "bridge-router" - "bridged" - "bridging" - "brightness" - "broadband" - "broadcast" - "broadcom" - "brother" - "brother-printer" - "browser" - "browser-addons" - "browser-cache" - "browser-plugin" - "browser-tabs" - "browsing" - "brute-force" - "bsd" - "bsdiff" - "bsod" - "bt-infinity" - "btrfs" - "btx" - "buddy-list" - "buffalo-nas" - "buffalo-router" - "buffer" - "bufferbloat" - "bug-tracking" - "bugcheck" - "bugzilla" - "build" - "bulk" - "bullets" - "bundle" - "burn-in" - "burning" - "bus" - "business" - "business-contact-manager" - "business-software" - "busybox" - "button-remapping" - "byobu" - "bypass" - "bz2" - "bzip2" - "bzr" - "c" - "c#" - "c++" - "cab" - "cabal" - "cabinet-maker" - "cable" - "cable-modem" - "cable-tester" - "cabling" - "cache" - "cached-exchange-mode" - "cacls" - "cad" - "caja" - "calculator" - "caldav" - "calendar" - "calendar-management" - "calendar.app" - "calibration" - "calibre" - "call" - "caller-id" - "camcorder" - "camera" - "camera-raw" - "camstudio" - "camtasia" - "can-bus" - "canon" - "canon-lide" - "canon-pixma" - "canvas" - "canyon" - "capacitor" - "capslock" - "captcha" - "caption" - "captive-portal" - "capture" - "carbonite" - "card-reader" - "carddav" - "carriage-return" - "cartoon" - "cartoonize" - "cartridge" - "cas" - "case" - "case-mods" - "cassette" - "cat" - "cat5" - "cat5e" - "cat6" - "catalog" - "cataloging" - "cbr" - "ccleaner" - "cctv" - "cd" - "cd-burning" - "cd-drive" - "cd-r" - "cd-rw" - "cdex" - "cdn" - "cells" - "cellular" - "cellular-internet" - "centos" - "centos-5" - "centos-6" - "centos-7" - "centos6.5" - "certificate" - "certutil" - "cgi" - "change-tracking" - "channel" - "chapters" - "character-encoding" - "character-set" - "characters" - "charger" - "charging" - "charms-bar" - "charset" - "charts" - "chassis" - "chat" - "chatzilla" - "cheat-sheet" - "check-disk" - "checkinstall" - "checklist" - "checkout" - "checkpoint" - "checksum" - "chef" - "chickenvnc" - "chinese" - "chipset" - "chkdsk" - "chm" - "chmod" - "chocolatey" - "chown" - "chroma-key" - "chrome-remote-desktop" - "chromebook" - "chromecast" - "chromium" - "chroot" - "chroot-jail" - "chsh" - "cifs" - "cinema4d" - "cinnamon" - "cisco" - "cisco-vpn-client" - "citations" - "citrix" - "citrix-receiver" - "clamav" - "clamshell" - "clang" - "classic-start-menu" - "classpath" - "claws-mail" - "cleaning" - "clearos" - "clearscan" - "cleartype" - "clicking-sound" - "clickonce" - "client-certificate" - "client-server" - "clink" - "clipboard" - "clock" - "clockspeed" - "clojure" - "clone" - "clonezilla" - "cloning" - "cloud" - "cloud-computing" - "cloud-storage" - "cluster" - "clustering" - "cmake" - "cmd.exe" - "cmder" - "cmis" - "cmos" - "cms" - "cmus" - "cmyk" - "cname" - "cntlm" - "coaxial" - "cobian-backup" - "cocoa" - "cocoadialog" - "coda" - "code" - "code-blocks" - "code-folding" - "code-page" - "code-signing" - "codec" - "coffeescript" - "coldfusion" - "colemak" - "collaboration" - "collecting" - "collision-detection" - "colloquy" - "color-depth" - "color-printer" - "color-profiles" - "color-theme" - "colors" - "columns" - "com" - "com-port" - "combine" - "comics" - "command-history" - "command-line" - "command-line-arguments" - "command-line-tool" - "command-tab" - "comments" - "commit" - "commit-charge" - "commodore" - "communicator" - "community" - "community-faq" - "community-faq-proposed" - "comodo-firewall" - "compact-disc" - "compact-flash" - "compaq" - "comparison" - "compatibility" - "compile" - "compiz" - "components" - "compose-key" - "composite-video" - "compositing" - "compression" - "computer-architecture" - "computer-behavior" - "computer-building" - "computer-buying" - "computer-name" - "computer-parts" - "computer-science" - "computing" - "computing-environment" - "concatenation" - "conditional-formatting" - "conditional-statements" - "conemu" - "conferencing" - "config-files" - "configure" - "confluence" - "conhost" - "conkeror" - "conky" - "connectify" - "connection" - "connection-sharing" - "connector" - "console" - "console.app" - "console2" - "contacts" - "container" - "content-type-association" - "context" - "context-menu" - "continuous-operation" - "contrast" - "control-characters" - "control-panel" - "controller" - "convergence" - "conversion" - "cookies" - "cool-n-quiet" - "cooling" - "cooling-pad" - "coordinates" - "copssh" - "copy" - "copy-paste" - "copy-protection" - "copyright" - "core" - "core-unlock" - "coreavc" - "coreldraw" - "coreutils" - "corruption" - "cosmos" - "couchdb" - "counter" - "countif" - "courier" - "cp" - "cpan" - "cpanel" - "cpio" - "cpu" - "cpu-architecture" - "cpu-cache" - "cpu-cooler" - "cpu-cores" - "cpu-speed" - "cpu-temperature" - "cpu-throttling" - "cpu-usage" - "cpu-z" - "cpufreq" - "cr-48" - "cr2" - "crack" - "craigslist" - "crash" - "crashplan" - "crashplan-central" - "crc" - "creative" - "creative-commons" - "credentials" - "credentials-manager" - "crlf" - "crm" - "cron" - "cronjob" - "crontab" - "crop" - "cross-browser" - "cross-platform" - "cross-reference" - "crossfire" - "crossover" - "crossover-cable" - "crt" - "cruisecontrol" - "cruisecontrol.net" - "crunchbang" - "cryptography" - "crystal-reports" - "csc" - "csh" - "csrss.exe" - "css" - "csv" - "ctags" - "ctrl" - "ctrl-alt-delete" - "cubby" - "cuda" - "cue" - "cue-sheet" - "cups" - "curl" - "curlftpfs" - "currency-format" - "cursor" - "cut" - "cut-and-paste" - "cutepdf" - "cvs" - "cwrsync" - "cyberduck" - "cygwin" - "cygwin-x" - "d-link" - "daemon" - "daisychaining" - "dameware" - "damn-small-linux" - "dart" - "darwin" - "darwine" - "dasblog" - "dashboard" - "data-backup" - "data-dump" - "data-execution-prevention" - "data-integrity" - "data-loss-preservation" - "data-loss-prevention" - "data-migration" - "data-mining" - "data-recovery" - "data-transfer" - "data-validation" - "data-visualization" - "database" - "database-administration" - "date" - "date-format" - "date-modified" - "date-time" - "davfs2" - "dax" - "daz-3d" - "db2" - "db9" - "dban" - "dbf" - "dbus" - "dc++" - "dcim" - "dcl" - "dcom" - "dd" - "dd-wrt" - "dde" - "ddns" - "ddr" - "ddr2" - "ddr3" - "ddrescue" - "dds" - "deactivation" - "dead-keys" - "dead-pixel" - "deb" - "debian" - "debian-jessie" - "debian-lenny" - "debian-squeeze" - "debian-wheezy" - "debootstrap" - "debug" - "debugger" - "decoding" - "decompile" - "decrypt" - "decryption" - "dedicated-server" - "deduplication" - "deep-freeze" - "default-profile" - "default-settings" - "defective-hardware" - "definition" - "defragment" - "deinterlace" - "delay" - "delayed-execution" - "delete" - "delicious" - "dell" - "dell-dimension" - "dell-inspiron" - "dell-latitude" - "dell-optiplex" - "dell-poweredge" - "dell-precision" - "dell-studio" - "dell-vostro" - "dell-xps" - "delock" - "delphi" - "delphi-2007" - "deluge" - "demo" - "denial-of-service" - "dep" - "dependencies" - "deployment" - "design" - "deskpins" - "desktop" - "desktop-computer" - "desktop-customization" - "desktop-effects" - "desktop-environments" - "desktop-gadget" - "desktop-icons" - "desktop-management" - "desktop-search" - "desktop-toolbar" - "desktop.ini" - "dev" - "developer-tools" - "development" - "device-manager" - "device-mapper" - "df" - "dfs" - "dhcp" - "dhcp-server" - "dia" - "diacritics" - "diagnostic" - "diagrams" - "dial-up" - "dialog" - "dictionary" - "diff" - "difftool" - "dig" - "digest" - "digikam" - "digital-audio" - "digital-pen" - "digital-signature" - "digitization" - "digsby" - "dimensions" - "dir" - "dir-300" - "dir-655" - "direct3d" - "directory-junction" - "directory-listing" - "directoryopus" - "directshow" - "directx" - "directx-11" - "directx-9" - "dired" - "dirty" - "disassembly" - "disc" - "discrete-graphics" - "disk-activity" - "disk-cleanup" - "disk-cloning" - "disk-controller" - "disk-drive" - "disk-encryption" - "disk-image" - "disk-management" - "disk-monitoring" - "disk-operating-system" - "disk-protection" - "disk-space" - "disk-utility" - "disk2vhd" - "diskonkey" - "diskpart" - "dism" - "display" - "display-adapter" - "display-driver" - "display-manager" - "display-rotation" - "display-settings" - "displayfusion" - "displaylink" - "displayport" - "distortion" - "distributed-computing" - "distribution" - "distribution-list" - "ditto" - "divx" - "diy" - "dj" - "django" - "djvu" - "dkim" - "dll" - "dlna" - "dm-crypt" - "dma" - "dmesg" - "dmg-image" - "dmi" - "dmz" - "dns" - "dnsmasq" - "docbook" - "dock" - "docker" - "docking" - "docking-station" - "docky" - "document-automation" - "document-management" - "document-scanning" - "documentation" - "documents" - "docx" - "dokan" - "dokuwiki" - "dolby-pro-logic" - "dolbydigital" - "dolphin" - "domain" - "domain-name" - "domain-security" - "dongle" - "dosbox" - "dot-matrix-printer" - "dotfiles" - "double-click" - "dovecot" - "downgrade" - "download" - "download-manager" - "downloader" - "downloading" - "dpc" - "dpi" - "dpkg" - "dpms" - "drag-and-drop" - "dragon-naturally-speaking" - "dram" - "drawing" - "draytek" - "dreamspark" - "dreamweaver" - "drive-bay" - "drive-letter" - "driveimagexml" - "drivers" - "drm" - "drobo" - "drobo-fs" - "droboshare" - "dropbox" - "dropdownlist" - "dropout" - "drupal" - "dsa" - "dsdt" - "dsl" - "dsl-modem" - "dsn" - "dtd" - "dtp" - "du" - "dual" - "dual-band" - "dual-channel" - "dual-connections" - "dual-core" - "dual-gpu" - "dump" - "duplex" - "duplicate" - "duplicity" - "dv" - "dvb-t" - "dvd" - "dvd-burning" - "dvdauthor" - "dvdfab" - "dvi" - "dvipng" - "dvorak" - "dvr" - "dvr-ms" - "dwb" - "dwell-clicker" - "dwg" - "dwm" - "dynamic" - "dynamic-disk" - "dynamic-dns" - "dynamic-ip" - "dynamics-crm" - "e-ink" - "e-texteditor" - "e6410" - "eap-mschapv2" - "ear-piece" - "earbuds" - "ease-of-access" - "easeus" - "easeus-partition-manager" - "easter-eggs" - "easy-install" - "easy-transfer" - "easybcd" - "easyphp" - "ebook" - "ecc" - "echo" - "eclipse" - "ecryptfs" - "edible-ink-printing" - "edid" - "edimax" - "ediscovery" - "editing" - "editor" - "edt" - "eee-pc" - "eeebox" - "eeebuntu" - "eeprom" - "efax" - "effective-permissions" - "efi" - "efs" - "egit" - "egrep" - "eject" - "ektron" - "electric-shock" - "elementaryos" - "elevated" - "elevation" - "elilo" - "elisp" - "elpa" - "emachines" - "emacs" - "emacsclient" - "emacsw32" - "email" - "email-bounces" - "email-client" - "email-filter" - "email-integration" - "email-signature" - "embedded" - "embedded-fonts" - "embedded-linux" - "embedding" - "emet" - "emf" - "emoticons" - "empathy" - "employment" - "emulation" - "emulator" - "emule" - "encfs" - "enclosures" - "encoding" - "encryption" - "endnote" - "energy" - "energy-saving" - "english" - "enigmail" - "enlightenment" - "enterprise-architect" - "enterprisedb" - "enterpriseone" - "entourage" - "envelope-printer" - "environment-variables" - "eof" - "eps" - "epub" - "equalizer" - "equation-editor" - "equations" - "eraser" - "erd" - "ereader" - "ergonomics" - "erlang" - "erp" - "error-logging" - "esata" - "escape-characters" - "escape-sequences" - "escaping" - "esd" - "eset" - "espeak" - "esxi" - "etcpasswd" - "ethernet" - "eudora" - "europe" - "evaluation" - "event-log" - "event-request" - "event-viewer" - "events" - "evernote" - "everything" - "evil" - "evince" - "evolution" - "exact-audio-copy" - "exceed" - "exceptions" - "exchange" - "exchange-2003" - "exchange-2007" - "exchange-2010" - "exchange-2013" - "exclude" - "exec" - "exfat" - "exif" - "exiftool" - "exim" - "exit" - "exit-code" - "expansion" - "expansion-cards" - "expect" - "expired-key" - "exploit" - "export" - "expose" - "express-gate" - "expresscard" - "ext" - "ext2" - "ext3" - "ext4" - "extended-desktop" - "extended-display" - "extension" - "external" - "external-data" - "external-display" - "external-drive" - "external-hard-drive" - "extract" - "eye-strain" - "eyefinity" - "f.lux" - "face-recognition" - "facebook" - "facebook-chat" - "facetime" - "factory-defaults" - "failover" - "fakeraid" - "faketime" - "family-safety" - "fan" - "far-manager" - "farsi" - "fast-forward" - "fast-user-switching" - "fastcgi" - "fat16" - "fat32" - "fatal-error" - "favicon" - "favorites" - "fax" - "fbcmd" - "fbterm" - "fde" - "fdisk" - "feature-regression" - "fedora" - "fedora-10" - "fedora-11" - "fedora-12" - "fedora-13" - "fedora-14" - "fedora-15" - "fedora-16" - "fedora-17" - "fedora-18" - "fedora-19" - "fedora-20" - "fedora-21" - "feed" - "feed-reader" - "feeling-lucky" - "fences" - "festival" - "fetch" - "fetchmail" - "ffdshow" - "ffmpeg" - "ffprobe" - "ffserver" - "fglrx" - "fiber" - "fiddler" - "field-codes" - "fifo" - "file-archiver" - "file-association" - "file-attributes" - "file-chooser" - "file-compare" - "file-comparison" - "file-conversion" - "file-corruption" - "file-descriptors" - "file-download" - "file-extension" - "file-filter" - "file-format" - "file-history" - "file-io" - "file-location" - "file-management" - "file-monitoring" - "file-organization" - "file-permissions" - "file-recovery" - "file-search" - "file-server" - "file-sharing" - "file-shortcut" - "file-shredding" - "file-transfer" - "file-types" - "file-unlocking" - "filemaker" - "filenames" - "filesystem-corruption" - "filesystems" - "filetype" - "filevault" - "filezilla" - "film" - "final-cut-pro" - "finance" - "finch" - "find" - "find-and-replace" - "find-in-files" - "finder" - "findstr" - "fineprint" - "finger" - "fingerprint" - "fink" - "fios" - "firebird" - "firebug" - "firefox" - "firefox-3.6" - "firefox-developer-edition" - "firefox-developer-tools" - "firefox-extensions" - "firefox-os" - "firefox-profile" - "firefox-sync" - "firestarter" - "firewall" - "firewire" - "firmware" - "fish" - "fit-pc" - "fixed-width" - "flac" - "flag" - "flash" - "flash-cs6" - "flash-player" - "flash-video" - "flashing" - "flatfile" - "flex" - "flexbuilder" - "flickr" - "flip" - "flip-mino" - "floppy" - "flowchart" - "fluid" - "fluxbox" - "flv" - "flyspell" - "fn-key" - "focus" - "fog" - "folder-lock" - "folder-redirection" - "folding-at-home" - "folksonomy" - "font-faces" - "font-smoothing" - "fontconfig" - "fontforge" - "fonts" - "foobar2000" - "footers" - "footnote" - "fop" - "forensics" - "forking" - "form-factor" - "form-fill" - "format" - "formatting" - "forms" - "forum" - "forwarding" - "foursquare" - "foxit-reader" - "fps" - "fractal" - "frame" - "framebuffer" - "framerate" - "fraps" - "freebsd" - "freecommander" - "freedos" - "freemind" - "freenas" - "freenet" - "freenode" - "freenx" - "freeradius" - "freeswitch" - "freeware" - "freeze" - "fresh-install" - "fritzbox" - "front-panel" - "front-row" - "frontend" - "frontpage" - "fsb" - "fsck" - "fstab" - "fsutil" - "ftp" - "ftps" - "full-version" - "fullscreen" - "funambol" - "function" - "function-keys" - "fuse" - "fusion-drive" - "fvwm" - "g++" - "g4" - "gacutil" - "gadgets" - "galaxy-s3" - "game-controller" - "gaming" - "gamma" - "gantt" - "garageband" - "garmin" - "gateway" - "gcc" - "gconf" - "gdb" - "gdi" - "gdisk" - "gdm" - "geany" - "gedit" - "geektool" - "geforce" - "gem" - "genealogy" - "generator" - "genius" - "gentoo" - "geogebra" - "geoip" - "geolocation" - "geotagging" - "german" - "gestures" - "get-iplayer" - "gettext" - "ghc" - "ghost" - "ghost-image" - "ghostery" - "ghostscript" - "ghostview" - "ghz" - "gif" - "gigabit-ethernet" - "gigabyte" - "gimp" - "gis" - "git" - "git-annex" - "git-bash" - "git-shell" - "git-svn" - "gitg" - "github" - "gitlab" - "gitolite" - "gksudo" - "glassfish" - "glib" - "glibc" - "glitch" - "global" - "globbing" - "glusterfs" - "gma" - "gmail" - "gmail-contacts" - "gmail-imap" - "gnome" - "gnome-do" - "gnome-keyring" - "gnome-panel" - "gnome-session" - "gnome-shell" - "gnome-terminal" - "gnome2" - "gnome3" - "gnu" - "gnu-linux" - "gnu-parallel" - "gnu-screen" - "gnucash" - "gnumeric" - "gnupg" - "gnuplot" - "gnus" - "gnuwin32" - "goalseek" - "godaddy" - "godmode" - "gom-player" - "google" - "google-accounts" - "google-analytics" - "google-app-engine" - "google-apps" - "google-authenticator" - "google-bookmarks" - "google-buzz" - "google-calendar" - "google-chrome" - "google-chrome-beta" - "google-chrome-canary" - "google-chrome-devtools" - "google-chrome-extensions" - "google-chrome-os" - "google-cloud-print" - "google-cloud-storage" - "google-code" - "google-compute-engine" - "google-contacts" - "google-desktop-search" - "google-dns" - "google-docs" - "google-drive" - "google-earth" - "google-gears" - "google-glass" - "google-groups" - "google-hangouts" - "google-inbox" - "google-maps" - "google-music" - "google-notifier" - "google-plus" - "google-public-dns" - "google-search" - "google-sites" - "google-sketchup" - "google-spreadsheets" - "google-sync" - "google-talk" - "google-toolbar" - "google-tv" - "google-updates" - "google-video" - "google-voice" - "google-wave" - "gopro" - "gopro-wifi" - "gotomeeting" - "gotomypc" - "gparted" - "gpedit" - "gpg4win" - "gpgpu" - "gprs" - "gps" - "gpt" - "gpu" - "grab" - "gradient" - "grammar" - "granola" - "graphics" - "graphics-card" - "graphics-design" - "graphics-editing" - "graphics-tablet" - "graphicsmagick" - "graphviz" - "gravatar" - "grayscale" - "greasemonkey" - "greek" - "green-computing" - "greenhopper" - "greenplum" - "grep" - "grid" - "gridengine" - "griffin-powermate" - "grindstone" - "groovy" - "ground" - "group-policy" - "groupwise" - "growl" - "grub" - "grub2" - "grub4dos" - "gsm" - "gstreamer" - "gtd" - "gtk" - "gtk-windows" - "guest" - "guest-additions" - "gui" - "guid" - "guitar" - "gunzip" - "gvfs" - "gvim" - "gvimrc" - "gz" - "gzip" - "h-sphere" - "h.264" - "h.265" - "h2" - "hadoop" - "haiku" - "hal" - "halts" - "hamachi" - "handbrake" - "handle" - "handwriting" - "handwriting-recognition" - "hangouts" - "hard-drive" - "hard-drive-cache" - "hard-drive-failure" - "hard-drive-image" - "hard-drive-recovery" - "hardlink" - "hardware-acceleration" - "hardware-combination" - "hardware-detection" - "hardware-failure" - "hardware-raid" - "hardware-rec" - "hardware-selection" - "hardware-virtualization" - "hashcat" - "hashing" - "haskell" - "haswell" - "hauppauge" - "hci" - "hd-tune" - "hd5770" - "hdcp" - "hdiutil" - "hdmi" - "hdparm" - "hdr" - "hdtv" - "hdvideo" - "head" - "headers" - "headless" - "headphone-jack" - "headphones" - "headset" - "health" - "heartbleed" - "heatmap" - "heatsink" - "hebrew" - "helios" - "help-files" - "hex-editor" - "hexadecimal" - "hexdump" - "hfs" - "hfs+" - "hg" - "hibernate" - "hid" - "hierarchy" - "high-cpu-usage" - "high-definition" - "high-dpi" - "high-resolution" - "highlighting" - "hijack" - "hiren" - "history" - "hitachi" - "hls" - "home-directory" - "home-folder" - "home-hub" - "home-networking" - "home-office" - "home-server" - "home-sharing" - "home-surveillance" - "home-theater" - "homebrew" - "homegroup" - "homepage" - "honeypot" - "hook" - "hostadapter" - "hostapd" - "hosting" - "hostname" - "hosts" - "hosts-file" - "hot-corner" - "hotfix" - "hotkeys" - "hotmail" - "hotplug" - "hotspot" - "hotspot-shield" - "hotswapping" - "hp" - "hp-cartridge" - "hp-deskjet" - "hp-elitebook" - "hp-envy" - "hp-laserjet" - "hp-mediasmart" - "hp-mini" - "hp-officejet" - "hp-pavilion" - "hp-photosmart" - "hp-ux" - "hpc" - "hplip" - "hsdpa" - "htaccess" - "htc" - "htc-hero" - "html" - "html-files" - "html-mail" - "html5" - "htop" - "htpc" - "http" - "http-proxy" - "http-referrer" - "http-status-code-404" - "http-status-code-500" - "http-status-codes" - "httpd" - "https" - "https-everywhere" - "httrack" - "huawei" - "hub" - "hudson" - "hugin" - "hulu" - "human-resources" - "humax" - "hung" - "hunspell" - "hurd" - "hybrid-boot" - "hybrid-mbr" - "hybrid-sleep" - "hybrid-storage" - "hyper-threading" - "hyper-v" - "hyperlink" - "hyperterminal" - "hypervisor" - "i18n" - "i3-window-manager" - "ibm" - "ibm-ps2" - "ibook" - "icacls" - "icalendar" - "icann" - "icc" - "icedove" - "iceweasel" - "ichat" - "icicles" - "icloud" - "icmp" - "icons" - "icq" - "ics" - "id" - "id3" - "ide" - "ide-cable" - "ide-controller" - "ident.ca" - "identity-management" - "idvd" - "ie-extensions" - "ieee802.1x" - "ietab" - "ifconfig" - "iframe" - "iftop" - "ignore" - "igp" - "iis" - "iis-6" - "iis-7" - "iis-7.5" - "iis-8" - "ilife" - "illegal" - "illustrator-cs6" - "imac" - "imacros" - "image-conversion" - "image-editing" - "image-filter" - "image-formats" - "image-gallery" - "image-hosting" - "image-manipulation" - "image-processing" - "image-sprites" - "image-transparency" - "image-viewer" - "imagealpha" - "imagemagick" - "imagemap" - "images" - "imagex" - "imaging" - "imap" - "ime" - "imesh" - "img" - "imgburn" - "imgur" - "immersion" - "imovie" - "import" - "import-mail" - "impulse" - "inbox" - "incremental-backup" - "indent" - "indentation" - "indicator" - "inf" - "infection" - "infinite-loop" - "infrared" - "infrastructure" - "init" - "init-script" - "init.rc" - "initramfs-tools" - "initrd" - "ink" - "inkjet-printer" - "inkscape" - "innodb" - "inode" - "inotify" - "input" - "input-device" - "input-director" - "input-languages" - "inputrc" - "installation" - "installation-media" - "installation-package" - "installer" - "installshield" - "instances" - "instant-messaging" - "integrated-camera" - "integrated-graphics" - "integration" - "intel" - "intel-486" - "intel-amt" - "intel-atom" - "intel-celeron" - "intel-centrino" - "intel-core-i3" - "intel-core-i5" - "intel-core-i7" - "intel-core2" - "intel-gma" - "intel-graphics" - "intel-itanium" - "intel-mac" - "intel-matrix-storage" - "intel-pentium" - "intel-rst" - "intel-x25-m" - "intellij-idea" - "intellimouse" - "intellisense" - "intellitype" - "interaction" - "interactive" - "interference" - "interix" - "intermittent" - "international" - "internet" - "internet-connection" - "internet-explorer" - "internet-explorer-10" - "internet-explorer-11" - "internet-explorer-6" - "internet-explorer-7" - "internet-explorer-8" - "internet-explorer-9" - "internet-explorer-dev" - "internet-filter" - "internet-radio" - "internet-security" - "internet-sharing" - "internet-speed" - "interrupts" - "intranet" - "intune" - "inventory-software" - "inverse" - "invoicing" - "io" - "ioctl" - "iogear" - "iomega" - "ion3" - "ios" - "iowait" - "ip" - "ip-address" - "ip-camera" - "ip6tables" - "ipad" - "ipad-3" - "ipconfig" - "iperf" - "ipfw" - "iphone" - "iphone-4" - "iphoto" - "ipkg" - "iplayer" - "ipmi" - "ipmsg" - "ipod" - "ipod-nano" - "ipod-touch" - "iproute2" - "ipsec" - "iptables" - "iptv" - "ipv4" - "ipv6" - "ipython" - "ir" - "irc" - "irc-bouncer" - "ircd" - "irda" - "irfanview" - "irq" - "irssi" - "isa" - "iscsi" - "isight" - "iso-image" - "isolinux" - "isp" - "issue-tracking" - "iterm" - "iterm2" - "its" - "itunes" - "itunes-10" - "itunes-11" - "itunes-match" - "itunes-store" - "itunesconnect" - "iv50" - "ivy-bridge" - "iweb" - "iwork" - "iwork-09" - "iwork-keynote" - "iwork-numbers" - "iwork-pages" - "j2me" - "jabber" - "jackd" - "jailbreak" - "japanese" - "jar" - "java" - "java-applet" - "java-web-start" - "javascript" - "jbod" - "jboss" - "jdbc" - "jdk" - "jdownloader" - "jedit" - "jekyll" - "jenkins" - "jetsql" - "jfs" - "jira" - "jira-agile" - "jitter" - "jmeter" - "jnlp" - "job-control" - "join" - "jolicloud" - "joomla" - "journaled" - "journaling" - "jpeg" - "jquery" - "jre" - "json" - "jucheck" - "jukebox" - "jumper" - "jumplist" - "junction" - "jungledisk" - "juniper" - "jvm" - "k3b" - "kakaotalk" - "kali-linux" - "karaoke" - "karbon" - "karma" - "kaseya" - "kaspersky" - "kate" - "kde" - "kde-4" - "kde-plasma-workspace" - "kdenlive" - "kdm" - "keepalive" - "keepass" - "kensington-lock" - "kerberos" - "kerio" - "kermit" - "kernel" - "kernel-extension" - "kernel-messages" - "kernel-module" - "kernel-panic" - "kext" - "key-binding" - "keyboard" - "keyboard-layout" - "keyboard-navigation" - "keyboard-sharing" - "keyboard-shortcuts" - "keychain" - "keychain-access" - "keylogger" - "keymap" - "keypad" - "keyremap4macbook" - "keystrokes" - "keyword" - "kickstart" - "kies" - "kill" - "kindle" - "kinect" - "kinesis" - "kingston" - "kiosk" - "kitty" - "kmail" - "kmix" - "kml" - "kmplayer" - "kmscon" - "knoppix" - "knowledge-base" - "knowledge-management" - "known-hosts" - "koffice" - "komodo" - "komodo-edit" - "komodo-ide" - "konica" - "konqueror" - "konsole" - "kopete" - "korean" - "ksh" - "ktorrent" - "kubuntu" - "kvm-switch" - "kwin" - "l2tp" - "label" - "label-printer" - "labview" - "lacie" - "lacp" - "lag" - "lame" - "lamp" - "lan" - "landscape" - "language" - "language-bar" - "language-pack" - "laptop" - "laptop-cooler" - "laptop-display" - "laptop-mode" - "laptop-repair" - "laptop-stands" - "laser" - "laser-printer" - "laserjet" - "last.fm" - "lastpass" - "latency" - "latex" - "latin1" - "launchctl" - "launchd" - "launcher" - "launchpad" - "launchy" - "layers" - "layout" - "lcd" - "ldap" - "ldif" - "learning" - "led" - "legal" - "lenovo" - "lenovo-laptop" - "leo-editor" - "less" - "lexmark" - "lftp" - "lg" - "lga775" - "libav" - "libdvdcss" - "libraries" - "libreoffice" - "libreoffice-base" - "libreoffice-calc" - "libreoffice-draw" - "libreoffice-impress" - "libreoffice-math" - "libreoffice-writer" - "libsvm" - "libusb" - "libvirt" - "libxml" - "license" - "license-key" - "licensing" - "lid" - "lifespan" - "light" - "lightning" - "lightpeak" - "lightscribe" - "lighttable" - "lighttpd" - "lightweight" - "lightworks" - "lilo" - "limited-access" - "limited-user-account" - "line-spacing" - "linebreaks" - "linewrap" - "linkedin" - "links" - "linksys" - "linode" - "linux" - "linux-device-driver" - "linux-distributions" - "linux-kernel" - "linux-kvm" - "linux-mint" - "linux-server" - "linux-terminal" - "liquidsoap" - "lirc" - "lisp" - "lithium-ion" - "little-snitch" - "live-backup" - "live-broadcast" - "live-cycle" - "live-meeting" - "live-tiles" - "live-video" - "livecd" - "liveusb" - "llvm" - "lm-sensors" - "ln" - "lnav" - "load" - "load-balancer" - "local" - "local-groups" - "local-storage" - "locale" - "localhost" - "localization" - "locate" - "location" - "location-services" - "lock" - "lock-screen" - "locked-files" - "logcheck" - "logfiles" - "logging" - "logic-pro" - "logic-studio" - "logical-drive" - "logical-processor" - "login" - "login-items" - "login-retrictions" - "login-screen" - "login-script" - "logitech-gamepad" - "logitech-headset" - "logitech-keyboard" - "logitech-mouse" - "logitech-presenter" - "logitech-speakers" - "logitech-touchpad" - "logitech-universal-remote" - "logitech-webcam" - "logmein" - "logoff" - "logout" - "logrotate" - "logwatch" - "lookout" - "lookup" - "loopback" - "lossless" - "lotus-approach" - "lotus-notes" - "lotus-sametime" - "lotus-symphony" - "low-level" - "low-power" - "low-profile" - "lpr" - "lpt" - "ls" - "lsass" - "lsof" - "lsusb" - "lua" - "lubuntu" - "luks" - "lvm" - "lvm2" - "lxc" - "lxde" - "lync" - "lync-2010" - "lync-2013" - "lynx" - "lyrics" - "lyx" - "m-audio" - "m0n0wall" - "m2ts" - "m4a" - "m4b" - "m4v" - "m6500" - "mac" - "mac-address" - "mac-app-store" - "mac-mini" - "mac-os-classic" - "mac-pro" - "macbook" - "macbook-air" - "macbook-pro" - "macbook-pro-retina" - "macfuse" - "machine-check-exception" - "macports" - "macrium" - "macros" - "mactex" - "macvim" - "magento" - "magic-mouse" - "magic-packet" - "magic-trackpad" - "magicjack" - "magnet" - "magnet-links" - "magnifier" - "magsafe" - "mail-merge" - "mail-rule" - "mail-server" - "mailbox" - "maildir" - "mailing-lists" - "mailman" - "mailto" - "mailutils" - "mailx" - "mainframe" - "maintenance" - "make" - "makefile" - "malware" - "malware-detection" - "malware-removal" - "malwarebytes" - "mamp" - "man" - "man-in-the-middle" - "managed" - "management" - "mandriva" - "manipulation" - "manjaro" - "manpages" - "manual" - "maple" - "mapped-drive" - "marble" - "margins" - "mariadb" - "markdown" - "marketing" - "markup" - "mask" - "master" - "master-slave" - "mastering" - "mate" - "math-input-panel" - "mathematica" - "mathematica-notebook" - "mathjax" - "mathtype" - "matlab" - "matplotlib" - "matroska" - "maven" - "maverick" - "maya" - "mbox" - "mbr" - "mcafee" - "md5" - "md5sum" - "mdadm" - "mdb" - "mdfind" - "mdns" - "mds" - "meaning" - "measurement" - "media" - "media-center" - "media-center-extender" - "media-info" - "media-keys" - "media-player" - "media-player-classic" - "media-server" - "mediamonkey" - "mediaportal" - "mediawiki" - "mediawiki-extension" - "medical" - "meego" - "meeting-request" - "meetings" - "mega" - "megaraid" - "megaupload" - "megui" - "meld" - "melt" - "memory" - "memory-card" - "memory-error" - "memory-leaks" - "memory-limit" - "memory-management" - "memory-speed" - "memory-timings" - "memory-usage" - "memorystick" - "memtest" - "memtest86+" - "mencoder" - "mendeley" - "mercurial" - "merge" - "messaging" - "metacity" - "metadata" - "metasploit" - "mfp" - "mft" - "mht" - "micro-atx" - "micro-sd-card" - "microarchitecture" - "microcontroller" - "microphone" - "microsoft" - "microsoft-access" - "microsoft-access-2002" - "microsoft-access-2003" - "microsoft-access-2007" - "microsoft-access-2010" - "microsoft-access-2013" - "microsoft-account" - "microsoft-dynamics" - "microsoft-excel" - "microsoft-excel-2000" - "microsoft-excel-2002" - "microsoft-excel-2003" - "microsoft-excel-2007" - "microsoft-excel-2008" - "microsoft-excel-2010" - "microsoft-excel-2011" - "microsoft-excel-2013" - "microsoft-expression" - "microsoft-infopath" - "microsoft-klc" - "microsoft-money" - "microsoft-office" - "microsoft-office-2003" - "microsoft-office-2007" - "microsoft-office-2008" - "microsoft-office-2010" - "microsoft-office-2011" - "microsoft-office-2013" - "microsoft-office-starter" - "microsoft-onenote" - "microsoft-onenote-2007" - "microsoft-onenote-2010" - "microsoft-onenote-2013" - "microsoft-outlook" - "microsoft-outlook-2002" - "microsoft-outlook-2003" - "microsoft-outlook-2007" - "microsoft-outlook-2010" - "microsoft-outlook-2011" - "microsoft-outlook-2013" - "microsoft-paint" - "microsoft-powerpoint" - "microsoft-powerpoint-2003" - "microsoft-powerpoint-2007" - "microsoft-powerpoint-2010" - "microsoft-powerpoint-2011" - "microsoft-powerpoint-2013" - "microsoft-project" - "microsoft-project-2007" - "microsoft-project-2010" - "microsoft-project-2013" - "microsoft-publisher" - "microsoft-surface" - "microsoft-surface-pro" - "microsoft-surface-pro-3" - "microsoft-sync" - "microsoft-technet" - "microsoft-virtual-pc" - "microsoft-visio" - "microsoft-visio-2003" - "microsoft-visio-2007" - "microsoft-visio-2010" - "microsoft-visio-2013" - "microsoft-word" - "microsoft-word-2003" - "microsoft-word-2007" - "microsoft-word-2008" - "microsoft-word-2010" - "microsoft-word-2011" - "microsoft-word-2013" - "microsoft-works" - "midi" - "midi-virtual-keyboard" - "midnight-commander" - "mifi" - "mighty-mouse" - "migration" - "migration-assistant" - "mikrotik" - "miktex" - "milewideback" - "millisecond" - "mime-headers" - "mime-types" - "mind-mapping" - "minecraft" - "mingw" - "mini-displayport" - "mini-dv" - "mini-dvi" - "mini-itx" - "minibuffer" - "minidumps" - "minimum" - "minipci" - "minitab" - "minix" - "minix3" - "mintty" - "mips" - "miracast" - "miranda-im" - "mirc" - "mirroring" - "mission-control" - "mitro" - "mixer" - "mixing" - "mjpeg" - "mkdir" - "mklink" - "mmc" - "mms" - "mms-streaming" - "mnemonics" - "mobaxterm" - "mobi" - "mobile" - "mobile-broadband" - "mobile-phone" - "mobileme" - "mod" - "mod-rewrite" - "mod-wsgi" - "modding" - "mode" - "modeline" - "modeling" - "modem" - "modern-ui" - "modern-ui-snapping" - "modifier-keys" - "modprobe" - "mods" - "modules" - "mogrify" - "moinmoin" - "moire" - "molex" - "mongo" - "mongodb" - "monit" - "monitor-settings" - "monitoring" - "mono" - "mono-framework" - "monodevelop" - "montage" - "moonlight" - "more" - "moss" - "motherboard" - "motion" - "motion-detection" - "motorola" - "motorola-droid" - "mount" - "mouse" - "mouse-acceleration" - "mouse-buttons" - "mouse-click" - "mouse-cursor" - "mouse-gestures" - "mouse-wheel" - "mouseless" - "movies" - "mozilla-prism" - "mozy" - "mp3" - "mp3-player" - "mp4" - "mp4box" - "mpd" - "mpeg" - "mpeg2" - "mpeg4" - "mpg" - "mplayer" - "mremote" - "mrtg" - "ms-dos" - "ms-office-communicator" - "ms-security-essentials" - "ms-sql" - "msata" - "msconfig" - "msdn" - "msiexec" - "msmq" - "msmtp" - "msp" - "msxml" - "msxml-6" - "msys" - "msysgit" - "mta" - "mtbf" - "mtp" - "mts" - "mtu" - "multi-boot" - "multi-channel" - "multi-core" - "multi-homed" - "multi-processor" - "multi-threaded" - "multi-wan" - "multicast" - "multics" - "multilingual" - "multimarkdown" - "multimedia" - "multiple-browsers" - "multiple-computers" - "multiple-desktop" - "multiple-instances" - "multiple-monitors" - "multiple-users" - "multiplexing" - "multiplier" - "multipoint-server-2011" - "multiseat" - "multitasking" - "multiuser" - "mumble" - "munin" - "mup.sys" - "music" - "music-management" - "music-streaming" - "mute" - "mutt" - "mv" - "mvc" - "my-documents" - "mybook" - "mydefrag" - "myisam" - "mylyn" - "mysql" - "mysql-workbench" - "mysql5" - "mysqld-safe" - "mysqldump" - "mythbuntu" - "mythtv" - "nagios" - "named-pipe" - "named-ranges" - "nameserver" - "naming" - "nano" - "narrator" - "nas" - "nat" - "native" - "nautilus" - "navigation" - "nconvert" - "ncurses" - "nehalem" - "neighbor" - "nemo" - "neooffice" - "nepomuk" - "nerdtree" - "nero" - "net-use" - "netatalk" - "netbeans" - "netbeans-7.2" - "netbeans-7.3" - "netbios" - "netbook" - "netboot" - "netbsd" - "netcat" - "netdiscover" - "netflix" - "netgear" - "netlimiter" - "netmask" - "netmeeting" - "netmon" - "netscreen" - "netsend" - "netsh" - "netstat" - "nettop" - "network-adapter" - "network-camera" - "network-discovery" - "network-drive" - "network-interface" - "network-location" - "network-monitoring" - "network-policy-server" - "network-printer" - "network-profiles" - "network-protocols" - "network-shares" - "network-traffic" - "networking" - "networkmanager" - "newlines" - "news" - "newsgroups" - "newsletters" - "newsreader" - "nexus-5" - "nexus-7" - "nfc" - "nforce" - "nfs" - "ngen" - "nginx" - "nice" - "ninite" - "nircmd" - "nlite" - "nmap" - "nnoremap" - "nntp" - "nod32" - "node.js" - "nodes" - "nohup" - "noip" - "noise" - "noise-cancelling" - "nokia" - "nokia-e-series" - "nokia-n-series" - "nokia-ovi-suite" - "nokia-pc-suite" - "nomachine" - "non-admin" - "non-ascii" - "normal-mode" - "northbridge" - "norton-360" - "norton-antivirus" - "norton-commander" - "norton-ghost" - "norton-goback" - "norton-internet-security" - "norton-removal-tool" - "norton-security" - "noscript" - "nostalgia" - "notation" - "notational-velocity" - "note-taking" - "notepad" - "notepad++" - "notepad2" - "notes" - "notification-area" - "notifications" - "notify-osd" - "novabackup" - "novell" - "npapi" - "nppexec" - "nsis" - "nslookup" - "ntbackup" - "ntfs" - "ntfs-3g" - "ntfs-junction" - "ntfs4dos" - "ntfsresize" - "ntldr" - "ntlm" - "ntoskrnl.exe" - "ntp" - "ntpd" - "ntpdate" - "ntvdm" - "null" - "null-modem" - "numa" - "numbering" - "numlock" - "numpad" - "nvidia" - "nvidia-geforce" - "nvidia-graphics-card" - "nvidia-ion" - "nvidia-nforce" - "nvidia-quadro" - "nvidia-settings" - "nx" - "nx-client" - "nx-server" - "obfuscate" - "object" - "objective-c" - "ocr" - "octave" - "octopress" - "odbc" - "odt" - "oem" - "off-screen" - "office-2000" - "office-2010-beta" - "office-2013-preview" - "office-communicator-2007" - "office-equipment" - "office-for-mac" - "office-live" - "office-on-demand" - "office-suite" - "office365" - "offline-files" - "offlineimap" - "ogg" - "oh-my-zsh" - "oil" - "okular" - "ole" - "omnibox" - "omnifocus" - "omnigraffle" - "omnioutliner" - "omniwriter" - "on-board-peripheral" - "on-demand" - "on-screen-keyboard" - "on-the-fly" - "one-way-sync" - "onedrive" - "online-backup" - "online-radio" - "online-storage" - "oom" - "opacity" - "open" - "open-source" - "openbox" - "openbsd" - "opencl" - "opencryptoki" - "opencv" - "opendns" - "openerp" - "openfiler" - "opengl" - "openid" - "openindiana" - "openjdk" - "openldap" - "openoffice-base" - "openoffice-calc" - "openoffice-draw" - "openoffice-impress" - "openoffice-writer" - "openoffice.org" - "openpgp" - "openrefine" - "openscad" - "openshot" - "opensolaris" - "openssh" - "openssl" - "openstack" - "opensuse" - "opensuse-11.2" - "opensuse-11.3" - "opensuse-11.4" - "opensuse-12.1" - "opensuse-12.2" - "opensuse-13.1" - "opensuse-13.2" - "opentype" - "openvms" - "openvpn" - "openvz" - "openwrt" - "opera" - "opera-10" - "opera-11" - "opera-blink" - "opera-mail" - "opera-next" - "operating-systems" - "ophcrack" - "opkg" - "opml" - "optical" - "optical-cable" - "optical-drive" - "optical-media" - "optimize" - "optimus" - "options" - "optiplex" - "oracle" - "oracle-10g" - "oracle-linux" - "orca" - "ordering" - "org-mode" - "organization" - "organizer-software" - "organizing" - "orientation" - "origins" - "os2" - "osascript" - "osd" - "osx" - "osx-leopard" - "osx-lion" - "osx-mavericks" - "osx-mountain-lion" - "osx-panther" - "osx-server" - "osx-snow-leopard" - "osx-tiger" - "osx-yosemite" - "otf" - "out-of-memory" - "out-of-office" - "outdoor" - "outliers" - "outline" - "outlook-addin" - "outlook-archive" - "outlook-express" - "outlook-form" - "outlook-web-access" - "outlook.com" - "overclocking" - "overheating" - "overlay" - "overscan" - "overwrite" - "owncloud" - "ownership" - "p2p" - "p2v" - "package-maker" - "package-management" - "packages" - "packer" - "packet" - "packet-injection" - "packet-loss" - "pae" - "page-layout-view" - "page-numbers" - "pageant" - "pagefile" - "pager" - "paging" - "paint-shop-pro" - "paint.net" - "pal" - "palm" - "palm-desktop" - "palm-pre" - "pam" - "pam-mount" - "pam-time" - "pan" - "panasonic-toughbook" - "pandoc" - "pandora" - "panel" - "panic-transmit" - "panorama" - "paper" - "paper-tray" - "paperless" - "para-virtualization" - "paragon" - "paragraphs" - "parallel-port" - "parallel-processing" - "parallels" - "parameters" - "parental-controls" - "parley" - "parser" - "parsing" - "parted" - "partition-copy" - "partition-magic" - "partition-recovery" - "partitioning" - "party" - "passenger" - "passive-cooling" - "passphrase" - "passport" - "passwd" - "password-generation" - "password-management" - "password-protection" - "password-recovery" - "passwords" - "paste" - "pata" - "patch" - "path" - "pathfinder" - "pathinfo" - "pause" - "paypal" - "pbx" - "pc-bsd" - "pc-suite" - "pcanywhere" - "pcap" - "pci" - "pci-express" - "pci-x" - "pcl" - "pclinuxos" - "pcm" - "pcmcia" - "pcoip" - "pda" - "pdf" - "pdf-reader" - "pdf-unlocking" - "pdfcreator" - "pdfedit" - "pdflatex" - "pdftex" - "pdftk" - "pdt" - "peap" - "pear" - "pecl" - "peer-to-peer" - "pen" - "pentadactyl" - "people" - "perfmon" - "perforce" - "performance" - "performance-monitor" - "performance-tuning" - "peripherals" - "perl" - "permalink" - "permissions" - "persistence" - "persistent" - "personal-block-list" - "personal-data" - "personas" - "pf" - "pfsense" - "pgadmin" - "pgadmin3" - "pgp" - "pgp-desktop" - "phishing" - "phoenix" - "phone" - "photivo" - "photo-editing" - "photo-stitching" - "photos" - "photoshop-7" - "photoshop-action" - "photoshop-cs3" - "photoshop-cs4" - "photoshop-cs5" - "photoshop-cs6" - "photoshop-elements" - "php" - "php-cli" - "php-extensions" - "php.ini" - "php5" - "phpbb" - "phpmyadmin" - "phpstorm" - "phpunit" - "phraseexpress" - "physical-environment" - "physical-security" - "physical-wear" - "physics" - "physx" - "picasa" - "picasa-web" - "pico" - "pico-projector" - "picture-import-wizard" - "pictures" - "pid" - "pidgin" - "pim" - "pin" - "ping" - "pinnacle-studio" - "pinning" - "pinta" - "pip" - "pipe" - "pipelining" - "piracy" - "piratebrowser" - "pivot-table" - "pixaria" - "pixelformer" - "pixelmator" - "pixels" - "pkcs" - "pki" - "pkzip" - "placeholder" - "places.sqlite" - "plaintext" - "planning" - "plasma-tv" - "platform" - "play-to" - "playback" - "player" - "playlists" - "playstation" - "plesk" - "plex" - "plink" - "plist" - "plone" - "pls" - "plug-and-play" - "plugins" - "png" - "pnp" - "pocket-pc" - "podcasts" - "podcatcher" - "poedit" - "policy" - "polycom" - "pomodoro" - "pop" - "pop3" - "popups" - "port" - "port-forwarding" - "port-redirection" - "portable" - "portable-apps" - "portable-harddrive" - "portable-ubuntu-remix" - "portage" - "portege-m400" - "portrait" - "ports" - "position" - "positional-parameter" - "posix" - "post" - "postbox" - "postfix" - "postgresql" - "postscript" - "potplayer" - "power" - "power-conditioning" - "power-consumption" - "power-jack" - "power-management" - "power-options" - "power-over-ethernet" - "power-supply" - "powerbook" - "powercfg" - "powerdvd" - "poweredge" - "powerline-networking" - "poweroff" - "powerpc" - "powerpivot" - "powersave" - "powershell" - "powershell-2.0" - "powershell-3.0" - "powershell-4.0" - "powershell-ise" - "powerstrip" - "powertop" - "powertoys" - "ppc" - "ppk" - "ppp" - "pppd" - "pppoe" - "pptp" - "pre-pidded" - "prefetch" - "prefix" - "preseed" - "presentations" - "preview" - "preview.app" - "previous-versions" - "primavera" - "prime95" - "print-drivers" - "print-preview" - "print-screen" - "print-server" - "print-spooler" - "print-to-pdf" - "printer" - "printer-scanner" - "printing" - "printing-software" - "priority" - "privacy" - "privacy-extensions" - "privacy-protection" - "private-browsing" - "private-data" - "private-key" - "private-network" - "privileges" - "privoxy" - "pro-tools" - "problem-step-recorder" - "proc" - "process" - "process-explorer" - "process-monitor" - "process-monitoring" - "processing" - "processing-ide" - "processor-socket" - "procmail" - "procmon" - "procrastination" - "product-id" - "product-key" - "product-rec" - "productivity" - "profile" - "profiling" - "proftpd" - "programmers-notepad" - "progress" - "progress-bar" - "project-management" - "projector" - "prolog" - "prompt" - "proofing" - "properties" - "proprietary" - "protected" - "protected-mode" - "protocol" - "provider" - "proxy" - "proxy-server" - "ps" - "ps1" - "ps2" - "ps2-keyboard" - "ps3" - "ps3-media-server" - "pscp" - "psd" - "psexec" - "psftp" - "pspad" - "psql" - "pst" - "public-folders" - "public-key" - "public-key-encryption" - "publishing" - "pull" - "pulse-audio" - "puppet" - "puppylinux" - "purge" - "push" - "put" - "putty" - "pwd" - "pxe" - "pycharm" - "pyqt" - "python" - "python-gui" - "python3" - "python3.2" - "qa" - "qdir" - "qemu" - "qmail" - "qnap" - "qos" - "qr-code" - "qt" - "qt4" - "quad-core" - "quad-hd" - "quantum" - "quarantine" - "quark" - "query" - "queue" - "queue-management" - "quick-access-toolbar" - "quickbooks" - "quicken" - "quicklaunch" - "quicklook" - "quicksilver" - "quicktime" - "quiz" - "quod-libet" - "quota" - "qwerty" - "r" - "rabbitvcs" - "rack" - "radio" - "radius" - "radvd" - "raid" - "raid-0" - "raid-1" - "raid-10" - "raid-5" - "raid-z" - "raid6" - "rails" - "raindrop" - "rainmeter" - "ramdisk" - "random-number-generator" - "range" - "range-extender" - "rapidshare" - "rar" - "raspberry-pi" - "raspbian" - "raspbmc" - "rate-limits" - "rating" - "raw" - "razer-keyboard" - "razer-mouse" - "rca" - "rdc-manager" - "rdesktop" - "rdiff-backup" - "rdns" - "rds" - "reactos" - "read-only" - "read-write" - "readability" - "readitlater" - "readline" - "readyboost" - "readynas" - "real-time" - "realmedia" - "realplayer" - "realtek" - "realvnc" - "rearrange" - "rebol" - "reboot" - "rebuild" - "recipient" - "recording" - "recovery" - "recovery-console" - "recursion" - "recursive" - "recycle-bin" - "recycling" - "red5" - "redhat" - "redirection" - "redistributable" - "redmine" - "redshift" - "redundancy" - "reference-book" - "refit" - "refresh" - "refresh-rate" - "refs" - "refund" - "regedit" - "regex" - "regional-settings" - "register" - "registrar" - "regression" - "regsvr32" - "reinstall" - "reiserfs" - "relay" - "releases" - "reloadevery" - "remapping" - "remastersys" - "rememberthemilk" - "reminder" - "remmina" - "remote" - "remote-access" - "remote-assistance" - "remote-connection" - "remote-control" - "remote-desktop" - "remote-execution" - "remote-installation" - "remote-login" - "remote-shutdown" - "remoteapp" - "remotefx" - "removable" - "removable-media" - "rename" - "rendering" - "reopen" - "repair" - "repair-install" - "reparse-points" - "repeat-rate" - "repeater" - "replaygain" - "replicate" - "replication" - "reply" - "report" - "reporting" - "repository" - "requirements" - "resampling" - "rescue" - "rescue-disk" - "reset" - "resharper" - "resizing" - "resolution" - "resource-management" - "resource-monitor" - "resource-usage" - "resources" - "restore" - "restrictions" - "restructuredtext" - "results" - "resync" - "retail" - "reverse-dns" - "reverse-engineer" - "reverse-proxy" - "reverse-tunnel" - "review" - "revision-control" - "revit" - "revo-uninstaller" - "rewrite" - "rgb" - "rhel" - "rhel-5" - "rhel-6" - "rhythmbox" - "ribbon" - "right-click" - "right-ctrl" - "right-to-left" - "ripping" - "risk" - "rj-11" - "rj-45" - "rm" - "rmvb" - "roaming-profiles" - "robocopy" - "roboform" - "robots.txt" - "rockbox" - "rocketdock" - "rockmelt" - "rogue" - "rogue-security-software" - "roles" - "rom" - "root" - "rootkit" - "rosetta-stone" - "rotate" - "router" - "routing" - "rows" - "rpc" - "rpm" - "rpmbuild" - "rs232" - "rsa" - "rsi" - "rsnapshot" - "rss" - "rsync" - "rtf" - "rtm" - "rtmp" - "rtorrent" - "rtsp" - "ruby" - "ruby-on-rails" - "ruby1.9" - "rubygems" - "rubymine" - "rugged" - "ruler" - "rules" - "run-dialog" - "runas" - "rundll" - "rundll32.exe" - "runlevel" - "runtime" - "runtime-error" - "rvm" - "rxvt" - "s-video" - "s3cmd" - "s60" - "saas" - "safari" - "safari-5" - "safari-extensions" - "safe-browsing" - "safe-mode" - "safe-sleep" - "safely-remove-hardware" - "safety" - "sage" - "salesforce" - "samba" - "same-state" - "samsung" - "samurize" - "san" - "sandbox" - "sandboxie" - "sandy-bridge" - "sansa" - "sap" - "sas" - "sasl" - "sata" - "sata-cable" - "sata-to-usb" - "satellite" - "save-as" - "say" - "scala" - "scalability" - "scaling" - "scan-disk" - "scanner" - "scanning" - "sccm" - "scheduled-tasks" - "scheduling" - "schematic" - "scientific-linux" - "scite" - "sco-unix" - "scp" - "scratch" - "screen-capture" - "screen-reader" - "screen-real-estate" - "screen-recorder" - "screen-scraping" - "screen-sharing" - "screen-tearing" - "screencasts" - "screensaver" - "screenshot" - "screws" - "scribus" - "script" - "scroll-lock" - "scroll-wheel" - "scrollbar" - "scrolling" - "scselect" - "scsi" - "sd-audio" - "sd-card" - "sdhc" - "sdio" - "sdk" - "sdl" - "sdram" - "sdxc" - "seagate" - "seamless" - "seamonkey" - "search" - "search-engines" - "search-folder" - "search-indexing" - "sectors" - "secure-boot" - "secure-desktop" - "secure-erase" - "securecrt" - "security" - "security-center" - "security-groups" - "security-policy" - "security-warning" - "sed" - "segmentation-fault" - "selection" - "self-encrypting" - "self-extracting" - "self-hosting" - "selfcontrol" - "selinux" - "send-to" - "sendmail" - "sensors" - "sent-items" - "sep" - "sequel-pro" - "serial" - "serial-number" - "serial-port" - "server-security" - "service-pack" - "services" - "session" - "session-hijacking" - "session-manager" - "session-restore" - "setacl" - "setuid" - "setup" - "setxkbmap" - "sfc" - "sfs" - "sftp" - "sh" - "sha-2" - "sha1" - "shadow-copy" - "shapes" - "share-credentials" - "shared-access" - "shared-folders" - "shared-hosting" - "shared-libraries" - "shared-mailbox" - "sharepoint" - "sharepoint-2003" - "sharepoint-2007" - "sharepoint-2010" - "sharepoint-2013" - "shebang" - "sheevaplug" - "shell" - "shell-extensions" - "shell-script" - "shell32.dll" - "shellshock" - "shift" - "shift-jis" - "shipping" - "shockwave" - "shorewall" - "shortcuts" - "shoutcast" - "shred" - "shrew" - "shuffle" - "shutdown" - "shutter" - "shuttle" - "side-loading" - "sidebar" - "sigil" - "sigint" - "sigmatel" - "sign-out" - "signal" - "signal-strength" - "signature" - "silent-cooling" - "silent-install" - "silverlight" - "sim" - "simulation" - "simulator" - "single-board" - "single-channel" - "single-instance" - "single-sign-on" - "sip" - "site" - "sitemap" - "sketch-up" - "skin" - "skipping" - "skype" - "skype-metro" - "skype-out" - "slackware" - "slate" - "slax" - "sled" - "sleep" - "sli" - "slideshow" - "slime" - "slipstream" - "small-business" - "small-business-server" - "smart" - "smart-playlist" - "smart-quotes" - "smart-response" - "smart-tv" - "smartcard" - "smartd" - "smartdraw" - "smartnav" - "smartphone" - "smartsvn" - "smb" - "smb2" - "smbfs" - "smc" - "smiles" - "smime" - "smoothing" - "smoothwall" - "smp" - "sms" - "smtp" - "snapshot" - "sniffing" - "snippets" - "snipping" - "snmp" - "snmpwalk" - "snort" - "snow-leopard-server" - "socat" - "social" - "social-networking" - "sockets" - "socks" - "socks-proxy" - "socks5" - "sodimm" - "softphone" - "software-activation" - "software-as-a-service" - "software-bundling" - "software-conflict" - "software-raid" - "software-rec" - "software-update" - "soho" - "solaris" - "solaris-10" - "solarized" - "soldering" - "solidworks" - "soluto" - "songbird" - "sonicwall" - "sony" - "sony-ericsson" - "sony-vaio" - "sony-vegas" - "sophos" - "sorting" - "sound-card" - "sound-editing" - "sound-font" - "source-code" - "source-control" - "source-routing" - "sourceforge" - "southbridge" - "sox" - "sp2" - "sp3" - "spaces" - "spam-prevention" - "spamassassin" - "spanish" - "spare-parts" - "sparkleshare" - "sparrow" - "sparsebundle" - "sparsefile" - "sparseimage" - "spdif" - "speakers" - "special-characters" - "special-locations" - "specifications" - "speech" - "speech-recognition" - "speech-to-text" - "speed" - "speed-dial" - "speedfan" - "speedstep" - "speedtest" - "spell-check" - "spf" - "sphinx" - "spinrite" - "spinup" - "splash" - "split" - "split-tunnel" - "split-window" - "splitter" - "spoofing" - "spotify" - "spotlight" - "spreadsheet" - "spybot-sd" - "spyware" - "sql" - "sql-management-studio" - "sql-server" - "sql-server-2000" - "sql-server-2005" - "sql-server-2008" - "sql-server-2008-r2" - "sql-server-2012" - "sql-server-express" - "sqldeveloper" - "sqlite" - "sqoop" - "squashfs" - "squeeze" - "squeezebox" - "squeezecenter" - "squid" - "srware-iron" - "ssd" - "ssh" - "ssh-agent" - "ssh-keys" - "ssh-tunnel" - "sshd" - "sshfs" - "sshuttle" - "ssid" - "ssis" - "ssl" - "ssl-certificate" - "ssl-vpn" - "ssms" - "stack" - "stacks" - "stall" - "standard-user" - "standards" - "standby" - "starcraft2" - "stardock" - "start-menu" - "start-screen" - "stat" - "static-discharge" - "static-ip" - "static-routes" - "stationery" - "statistics" - "status" - "statusbar" - "stderr" - "stdin" - "stdout" - "steadystate" - "steam" - "steam-os" - "steganography" - "stereo" - "stickies" - "sticky-notes" - "stock-market" - "stopwatch" - "storage" - "storage-pool" - "storage-spaces" - "strace" - "streaming" - "streamripper32" - "stretch" - "string" - "string-manipulation" - "strip" - "stripe" - "stroke" - "strongswan" - "stty" - "stuck-pixel" - "stumbleupon" - "stunnel" - "styles" - "stylish" - "stylus" - "su" - "sua" - "subclipse" - "subdomain" - "sublime-text" - "sublime-text-2" - "sublime-text-3" - "submodule" - "subnet" - "subscription" - "subsonic" - "subst" - "subtitles" - "sudo" - "sudoers" - "sudosh" - "sugarcrm" - "sugarsync" - "sun" - "sun-java6-jdk" - "sunbird" - "superbar" - "superblock" - "supercomputer" - "superduper" - "superfetch" - "supergenpass" - "supergrubdisk" - "supermicro" - "superputty" - "surface-2" - "surfraw" - "surge-protection" - "suricata" - "surround-sound" - "surveillance" - "survey" - "suse" - "suspend" - "svchost" - "svg" - "svn" - "svn-server" - "swap" - "swap-file" - "swappiness" - "swf" - "swing" - "switch" - "switchable-graphics" - "switching" - "sybase" - "symantec" - "symantec-gho-explorer" - "symbian" - "symbolic-link" - "symbols" - "synaptics" - "sync" - "sync-center" - "syncback" - "synctoy" - "synergy" - "synergy-plus" - "synology" - "syntax" - "syntax-highlighting" - "synthesis" - "sysadmin" - "sysinternals" - "syslinux" - "syslog" - "syslogd" - "sysprep" - "sysrq" - "sysstat" - "system-backup" - "system-calls" - "system-date" - "system-file" - "system-info" - "system-monitoring" - "system-preferences" - "system-profile" - "system-recovery" - "system-repair-disc" - "system-reserved-partition" - "system-restore" - "system-sounds" - "systemctl" - "systemd" - "sysvinit" - "t-mobile" - "t1" - "tab" - "tab-completion" - "tab-groups" - "tab-key" - "tabbed-browsing" - "table-of-contents" - "table-styles" - "tableau" - "tablet" - "tablet-pc" - "tabs" - "tagcloud" - "tags" - "tail" - "tails" - "tampering" - "tampermonkey" - "tape" - "tar" - "tarsnap" - "task-management" - "task-manager" - "task-scheduler" - "task-switching" - "taskbar" - "tasklist" - "tasks" - "tcp" - "tcpdump" - "tcpip" - "tcpreplay" - "tcsh" - "teaching" - "team-foundation-server" - "teamcity" - "teamspeak" - "teamviewer" - "technical-writing" - "tee" - "telecommunication" - "telephony" - "telnet" - "temperature" - "templates" - "temporary-files" - "temporary-internet-files" - "teracopy" - "teredo" - "terminal" - "terminal-emulator" - "terminal-multiplexer" - "terminal-server" - "terminal-services" - "terminal.app" - "terminator" - "terminology" - "tesseract-ocr" - "testdisk" - "tethering" - "tex" - "texlive" - "texmaker" - "texshop" - "text" - "text-cursor" - "text-editing" - "text-editors" - "text-formatting" - "text-manipulation" - "text-messaging" - "text-mode" - "text-processors" - "text-to-speech" - "text-to-speech-voices" - "text-wrapping" - "textbox" - "textedit" - "textexpander" - "textfiles" - "textmate" - "textmate-2" - "textpad" - "textual" - "textwrangler" - "tft" - "tftp" - "tga" - "themes" - "theora" - "theory" - "thermal-pads" - "thermal-paste" - "thesaurus" - "thin-client" - "things-for-mac" - "thinkcentre" - "thinkpad" - "thinkpad-x220-tablet" - "third-party" - "thrashing" - "threading" - "threads" - "throttling" - "throughput" - "thumbnail-generator" - "thumbnails" - "thumbs" - "thumbs.db" - "thunar" - "thunderbird" - "thunderbird-addon" - "thunderbolt" - "ticket-system" - "tiddlywiki" - "tif" - "tiff" - "tig" - "tightvnc" - "tiles" - "time" - "time-capsule" - "time-machine" - "time-management" - "time-tracking" - "time-zone" - "time.conf" - "timelapse" - "timeline" - "timeout" - "timer" - "timestamp" - "timing" - "title" - "title-bar" - "tivo" - "tld" - "tls" - "tmpfs" - "tmux" - "to-do" - "toad" - "token" - "tomato" - "tomboy" - "tomcat" - "tomtom" - "toner" - "toolbar" - "tooltip" - "top" - "tor" - "torque" - "tortoise-git" - "tortoise-hg" - "tortoise-svn" - "toshiba-hard-drive" - "toshiba-laptop" - "toshiba-scanner" - "toshiba-stack" - "toshiba-tablet" - "total-commander" - "totem" - "touch" - "touch-keyboard" - "touch-pc" - "touch-typing" - "touchpad" - "touchscreen" - "touchsmart" - "tp-link" - "tpm" - "trac" - "traceroute" - "tracing" - "trackball" - "tracking" - "trackpoint" - "traffic" - "traffic-filtering" - "traffic-shaping" - "traktor" - "tramp" - "transaction" - "transcode" - "transcription" - "transfer" - "transfer-rate" - "transform" - "translation" - "transmission" - "transparency" - "transparent" - "transparentproxy" - "transporting" - "transpose" - "trash" - "travel" - "tree" - "tree-view" - "trello" - "trendlines" - "trial" - "trillian" - "trim" - "triple-channel" - "trojan" - "troubleshooting" - "true-type-fonts" - "truecrypt" - "truetype" - "trust" - "trusted-root-ca" - "trusted-root-certificates" - "tsig" - "ttf" - "ttls" - "tts" - "tty" - "tuleap" - "tumblr" - "tuner-card" - "tunnel" - "turbo" - "turbo-boost" - "turbo-c++-2006-explorer" - "tutorial" - "tv" - "tv-out" - "twain" - "tweetdeck" - "twiki" - "twinview" - "twisted-pair" - "twitter" - "twm" - "two-factor-authentication" - "txt" - "typeface" - "typing" - "typing-speed" - "typo3" - "typography" - "u3" - "uac" - "ubcd" - "ubuntu" - "ubuntu-10.04" - "ubuntu-10.10" - "ubuntu-11.04" - "ubuntu-11.10" - "ubuntu-12.04" - "ubuntu-12.10" - "ubuntu-13.04" - "ubuntu-13.10" - "ubuntu-14.04" - "ubuntu-8.04" - "ubuntu-8.10" - "ubuntu-9.04" - "ubuntu-9.10" - "ubuntu-gnome" - "ubuntu-netbook-remix" - "ubuntu-server" - "ubuntu-unity" - "udev" - "udf" - "udisks" - "udp" - "uefi" - "ufs" - "ufw" - "uhs" - "uid" - "ulimit" - "ultrabook" - "ultraedit" - "ultramon" - "ultravnc" - "umask" - "uml" - "umount" - "umts" - "unattended" - "unc" - "underclock" - "underlining" - "undervolting" - "undo" - "unetbootin" - "unicode" - "unifying-receiver" - "uninstall" - "uniq" - "unison" - "unity3d" - "universal-remote" - "universe" - "unix" - "unix-utils" - "unmount" - "unmounting" - "unrar" - "unread-mail" - "unresponsive" - "untagged" - "untangle" - "unzip" - "updates" - "upgrade" - "upload" - "upnp" - "ups" - "upstart" - "uptime" - "upx" - "uri" - "url" - "url-rewriting" - "url-shortening" - "urxvt" - "usability" - "usb" - "usb-2" - "usb-3" - "usb-audio" - "usb-boot" - "usb-data-card" - "usb-flash-drive" - "usb-headset" - "usb-hub" - "usb-keyboard" - "usb-modem" - "usb-network-adapter" - "usb-storage" - "usb-to-sata" - "usenet" - "user" - "user-accounts" - "user-agent" - "user-experience" - "user-folders" - "user-groups" - "user-interface" - "user-management" - "user-profiles" - "user-switching" - "username" - "users" - "userscripts" - "usmt" - "utc" - "utf-8" - "utilization" - "utils" - "utorrent" - "utserver" - "uuid" - "ux" - "uzbl" - "v-studio-2011-preview" - "v4l2" - "v8" - "vagrant" - "valgrind" - "validation" - "vamt" - "vax" - "vb.net" - "vb6" - "vba" - "vbscript" - "vc++" - "vcard" - "vcd" - "vcenter" - "vdi" - "vdpau" - "vdsl" - "vector-graphics" - "vectorworks" - "vendor-id" - "ventilation" - "ventrilo" - "veriface" - "verification" - "veriton" - "version" - "version-control" - "versioning" - "vertex-3" - "vesa" - "vfat" - "vga" - "vhd" - "vhs" - "vi" - "via" - "viber" - "video" - "video-capture" - "video-chat" - "video-codecs" - "video-conversion" - "video-editing" - "video-encoding" - "video-playback" - "video-streaming" - "viewer" - "viewport" - "vifm" - "vim" - "vim-plugins" - "vimdiff" - "vimeo" - "vimperator" - "vimrc" - "vimscript" - "vimtutor" - "virtio" - "virtual-address-space" - "virtual-console" - "virtual-desktop" - "virtual-desktop-manager" - "virtual-disk" - "virtual-drive" - "virtual-host" - "virtual-keyboard" - "virtual-machine" - "virtual-machine-manager" - "virtual-memory" - "virtual-server-2005-r2" - "virtual-terminal" - "virtual-webcam" - "virtual-wifi" - "virtualbox" - "virtualdub" - "virtualenv" - "virtualization" - "virtualmin" - "virtuawin" - "virus" - "virus-removal" - "visual-artifacts" - "visual-basic" - "visual-c++" - "visual-effects" - "visual-foxpro" - "visual-mode" - "visual-studio" - "visual-studio-2005" - "visual-studio-2008" - "visual-studio-2010" - "visual-studio-2012" - "visual-studio-2013" - "visual-styles" - "visual-web-developer" - "visualization" - "visualsvn" - "visualsvn-server" - "vlan" - "vlc-media-player" - "vlite" - "vlookup" - "vmdk" - "vms" - "vmware" - "vmware-converter" - "vmware-fusion" - "vmware-player" - "vmware-server" - "vmware-tools" - "vmware-unity" - "vmware-workstation" - "vnc" - "vnc-viewer" - "vncserver" - "vob" - "voice" - "voice-chat" - "voice-command" - "voiceover" - "voip" - "voltage" - "volume-license" - "volume-mixer" - "volume-shadow-copy" - "vorbis" - "vpn" - "vpnc" - "vpro" - "vps" - "vram" - "vsftpd" - "vsphere" - "vss" - "vst" - "vt" - "vt-d" - "vt-x" - "vt100" - "vtune" - "vulnerabilities" - "vuze" - "w3c-markup-validator" - "w3m" - "wacom" - "waik" - "wait" - "wake-on-lan" - "wake-up" - "wallpaper" - "wamp" - "wan" - "wanderlust" - "wanem" - "warranty" - "watch" - "water-cooling" - "water-damage" - "waterfox" - "watermark" - "wav" - "waveform" - "wcf" - "wds" - "wdtv" - "weather" - "web" - "web-application" - "web-crawler" - "web-design" - "web-development" - "web-filtering" - "web-hosting" - "web-platform-installer" - "web-services" - "web-sharing" - "webarchive" - "webcam" - "webcast" - "webclient" - "webdav" - "webex" - "webforms" - "webgl" - "webgui" - "webkit" - "webm" - "webmail" - "webmin" - "webpage" - "webserver" - "website" - "websphere" - "webstorm" - "weechat" - "wep" - "western-digital" - "wfp" - "wga" - "wget" - "whatpulse" - "whatsapp" - "which" - "white-screen" - "whiteboard" - "whitelist" - "whitespace" - "whm" - "whois" - "wicd" - "widescreen" - "widgets" - "widi" - "wifi-configuration" - "wifi-driver" - "wifi-transfer" - "wii" - "wii-u" - "wiki" - "wikipedia" - "wildcards" - "wim" - "wimax" - "wimboot" - "win32" - "winamp" - "winapi" - "windbg" - "windirstat" - "window" - "window-focus" - "window-manager" - "window-restore" - "windowing" - "windows" - "windows-10-preview" - "windows-2000" - "windows-2003" - "windows-2003-server" - "windows-2012" - "windows-3.1" - "windows-7" - "windows-7-backup" - "windows-7-restore" - "windows-8" - "windows-8-apps" - "windows-8-calendar-app" - "windows-8-desktop" - "windows-8-fonts" - "windows-8-games" - "windows-8-mail-app" - "windows-8-messaging-app" - "windows-8-people-app" - "windows-8-photos-app" - "windows-8-preview" - "windows-8-refresh" - "windows-8-upgrade" - "windows-8-x64" - "windows-8.1" - "windows-8.1-preview" - "windows-8.1-upgrade" - "windows-95" - "windows-98" - "windows-activation" - "windows-authentication" - "windows-backup" - "windows-ce" - "windows-defender" - "windows-desktop-search" - "windows-domain" - "windows-easy-transfer" - "windows-edition" - "windows-embedded-7" - "windows-embedded-8" - "windows-error-reporting" - "windows-experience-index" - "windows-explorer" - "windows-features" - "windows-firewall" - "windows-genuine-advantage" - "windows-home-server" - "windows-ics" - "windows-installation" - "windows-installer" - "windows-key" - "windows-libraries" - "windows-live" - "windows-live-mail" - "windows-live-mesh" - "windows-live-messenger" - "windows-live-movie-maker" - "windows-live-photo" - "windows-live-sync" - "windows-live-writer" - "windows-mail" - "windows-media-center" - "windows-media-player" - "windows-mobile" - "windows-mobile-6" - "windows-movie-maker" - "windows-networking" - "windows-nt-4" - "windows-pe" - "windows-phone" - "windows-phone-8" - "windows-photo-gallery" - "windows-photo-viewer" - "windows-registry" - "windows-rt" - "windows-sbs" - "windows-search" - "windows-server" - "windows-server-2000" - "windows-server-2003" - "windows-server-2008" - "windows-server-2008-r2" - "windows-server-2012" - "windows-server-2012-r2" - "windows-services" - "windows-shell" - "windows-storage-server" - "windows-store" - "windows-store-app" - "windows-tabletpc" - "windows-task-scheduler" - "windows-to-go" - "windows-update" - "windows-vista" - "windows-xp" - "windows-xp-embedded" - "windows-xp-mode" - "windows.old" - "wine" - "winetricks" - "winforms" - "winlogon.exe" - "winmerge" - "winpcap" - "winpe" - "winrar" - "wins-server" - "winsat" - "winscp" - "winswitch" - "winsxs" - "winzip" - "wipe" - "wired" - "wired-networking" - "wireless-access-point" - "wireless-adapter" - "wireless-bridge" - "wireless-card" - "wireless-extender" - "wireless-headset" - "wireless-keyboard" - "wireless-mouse" - "wireless-networking" - "wireless-roaming" - "wireless-router" - "wireshark" - "wiring" - "wma" - "wmctrl" - "wmf" - "wmi" - "wmic" - "wmv" - "wnr3500" - "wolfram-alpha" - "word-2004" - "word-2013-preview" - "word-count" - "word-processing" - "word-realms" - "word-wrap" - "wordpad" - "wordperfect" - "wordpress" - "words" - "wordstar" - "work-environment" - "workflow" - "workgroup" - "working-directory" - "worksheet-function" - "workspace" - "workstation" - "worm" - "worm-media" - "wpa" - "wpa-supplicant" - "wpa2" - "wpa2-psk" - "wpf" - "wps" - "write-blocker" - "write-protect" - "writer" - "writing" - "wrt54g" - "wrt54gl" - "wscc" - "wsh" - "wsus" - "wtmp" - "wuala" - "wubi" - "wvdial" - "wwan" - "www" - "wysiwyg" - "x-server" - "x-windows" - "x11-forwarding" - "x201" - "x230" - "x264" - "x509" - "x58" - "x86" - "xampp" - "xandros" - "xargs" - "xauth" - "xbindkeys" - "xbmc" - "xbox-music" - "xbox-one" - "xbox-video" - "xbox360" - "xchat" - "xcode" - "xcopy" - "xdebug" - "xdg" - "xdmx" - "xdotools" - "xen" - "xenserver" - "xeon" - "xephyr" - "xetex" - "xfce" - "xfce4" - "xforwarding" - "xfs" - "xhost" - "xhtml" - "xine" - "xinerama" - "xinetd" - "xkb" - "xlite" - "xlock" - "xls" - "xlsx" - "xmarks" - "xming" - "xml" - "xml-schema-validation" - "xml-serialization" - "xmodmap" - "xmonad" - "xmouse" - "xmpp" - "xna" - "xorg" - "xorg.conf" - "xpdf" - "xperf" - "xps" - "xps-viewer" - "xquartz" - "xrandr" - "xsane" - "xscreensaver" - "xsd" - "xserve" - "xslt" - "xss" - "xte" - "xterm" - "xubuntu" - "xubuntu-11.04" - "xul" - "xulrunner" - "xvesa" - "xvfb" - "xvid" - "xxcopy" - "xxd" - "xz" - "yahoo" - "yahoo-mail" - "yahoo-messenger" - "yahoo-pipes" - "yaml" - "yank" - "yast" - "yellow-tint" - "youtube" - "youtube-api" - "youtube-dl" - "yslow" - "ytd-video-downloader" - "yum" - "yuv" - "zabbix" - "zebra" - "zenbook" - "zend" - "zend-server" - "zend-studio" - "zenity" - "zenoss" - "zeroconf" - "zfs" - "zimbra" - "zip" - "zip-drive" - "zonealarm" - "zoneminder" - "zoom" - "zorin" - "zotero" - "zsh" - "zune" - "zune-hd" - "zune-software" - "zypper") diff --git a/data/tags/sustainability.el b/data/tags/sustainability.el deleted file mode 100644 index c61bfd7..0000000 --- a/data/tags/sustainability.el +++ /dev/null @@ -1,185 +0,0 @@ -("air-conditioning" - "algae" - "alternatives" - "animals" - "apartment" - "aquaponics" - "aquarium" - "bags" - "balanced-ecosystems" - "balcony" - "batteries" - "battery-charging" - "biodegradable-waste" - "biodiesel" - "biofuels" - "biogas" - "biomass" - "biosecurity" - "bokashi" - "building" - "building-materials" - "building-physics" - "carbon-footprint" - "carbon-sequestration" - "cardboard" - "carpet" - "cars" - "chickens" - "city-living" - "cleaning" - "clothing" - "cold-climate" - "compostable-plastic" - "composting" - "computing" - "construction" - "consumption" - "cooking" - "cooling" - "craft" - "crop" - "cs" - "csr" - "decarbonisation" - "defining-sustainability" - "disposal" - "diy" - "durability" - "ecolabel" - "ecological-footprint" - "economics" - "economy" - "ecovillage" - "electricity" - "electricity-generation" - "embodied-energy" - "energy" - "energy-efficiency" - "energy-management" - "energy-use" - "externalities" - "fabric" - "family" - "fermentation" - "fertilizer" - "filtration" - "fireplace" - "firewood" - "fish" - "fodder" - "food" - "food-storage" - "forestry" - "fuel-efficiency" - "funeral" - "fungal-innoculation" - "furniture" - "gardening" - "gases" - "glass" - "glazing" - "green-construction" - "green-it" - "green-roof" - "greenhouse" - "greenhouse-gas-emissions" - "greywater" - "grocery" - "health" - "heating" - "home" - "housing" - "husbandry" - "hybrid-vehicles" - "hygiene" - "insects" - "insulation" - "law" - "leed-certification" - "life-cycle-analysis" - "lifestyle" - "light" - "localisation" - "manufacturing" - "materials" - "meat" - "medicine" - "mining" - "mollusca" - "mushrooms" - "natural-gas" - "nature" - "oil" - "packaging" - "paper" - "permaculture" - "pest-management" - "pesticides" - "pets" - "photovoltaics" - "pipeline" - "planning" - "plants" - "plastic" - "plastic-alternatives" - "plastic-bottles" - "pollution" - "ponds" - "population" - "prepping" - "preservation" - "printing" - "product-design" - "pump-capacity" - "recording" - "recycling" - "reduce" - "renewables" - "renting" - "repair" - "resource-usage" - "reuse" - "rural-living" - "safe-chemicals" - "safety" - "seawater" - "self-sufficiency" - "software" - "solar-power" - "solar-thermal" - "space-heating" - "statistics" - "storage" - "survival" - "technology" - "thermal-mass" - "thermal-regulation" - "toilet" - "toxic-chemicals" - "transport" - "treatment" - "uk" - "untagged" - "upcycling" - "usa" - "vegetable-oil" - "vegetables" - "vegetarianism" - "vehicle" - "ventilation" - "vermicomposting" - "vertical-gardening" - "virtual-water" - "waste" - "waste-minimisation" - "waste-water" - "water" - "water-conservation" - "water-heating" - "water-management" - "weeds" - "wind-power" - "woodstove" - "woodwork" - "zero-energy") diff --git a/data/tags/tex.el b/data/tags/tex.el deleted file mode 100644 index b27c2fe..0000000 --- a/data/tags/tex.el +++ /dev/null @@ -1,1179 +0,0 @@ -("3d" - "a0poster" - "aastex" - "abstract" - "accents" - "accessibility" - "accsupp" - "achemso" - "acm" - "acro" - "acrobat" - "acronyms" - "acrotex" - "addresses" - "adjmulticol" - "adjustbox" - "adobe" - "advdate" - "affiliation" - "afterpage" - "agutex" - "algorithm2e" - "algorithmic" - "algorithmicx" - "algorithms" - "alias" - "aliasing" - "align" - "alignat" - "alphabet" - "ampersand" - "amsart" - "amsbook" - "amsfonts" - "amsmath" - "amsproc" - "amsrefs" - "amssymb" - "amsthm" - "android" - "angle" - "animate" - "animations" - "answers" - "apa-style" - "apa6" - "appendices" - "aquamacs" - "arabic" - "arara" - "arc" - "archiving" - "arithmetic" - "arrays" - "arrows" - "article" - "arxiv" - "arydshln" - "aspect-ratio" - "assoccnt" - "asymptote" - "atbegshi" - "attachfile" - "auctex" - "audio" - "authblk" - "author-number" - "authorindex" - "auto-completion" - "auto-pst-pdf" - "automata" - "automation" - "autonum" - "auxiliary-files" - "awk" - "axodraw4j" - "babel" - "back-referencing" - "backgrounds" - "badness" - "bakoma" - "baposter" - "bar-chart" - "barcodes" - "baseline" - "bash" - "bashful" - "beamer" - "beamerarticle" - "beamerposter" - "beramono" - "berry" - "best-practices" - "bibdesk" - "bibentry" - "biber" - "biblatex" - "biblatex-chem" - "biblatex-dw" - "bibliographies" - "bibtex" - "bibtool" - "bibunits" - "bidi" - "big-list" - "bigdelim" - "bigfoot" - "biography" - "bitmap" - "blackboard" - "blank-page" - "blindtext" - "block" - "blur" - "bm" - "bodegraph" - "bold" - "book-design" - "booklet" - "bookmarks" - "books" - "booktabs" - "bordermatrix" - "bounding-box" - "boxes" - "boxplot" - "bpchem" - "braces" - "brackets" - "breqn" - "build-system" - "bytefield" - "calculations" - "calendar" - "callback" - "calligraphy" - "callout" - "cals" - "cancel" - "capitalization" - "captions" - "cards" - "cases" - "catchfile" - "catcodes" - "cats" - "cgloss4e" - "changebar" - "changes" - "chapters" - "chapterthumb" - "characters" - "charts" - "chemfig" - "chemistry" - "chemmacros" - "chemnum" - "chemstyle" - "chess" - "chessboard" - "chicago-style" - "chngcntr" - "chronology" - "circles" - "circuitikz" - "circuits" - "cite-package" - "citing" - "cjk" - "class-options" - "classics" - "classicthesis" - "cleanup" - "cleveref" - "code" - "code-folding" - "code-review" - "collaboration" - "collcell" - "color" - "color-profile" - "colortbl" - "columns" - "combine" - "comma-separated-list" - "comments" - "comparison" - "compiling" - "computer-modern" - "conditionals" - "content-replication" - "context" - "context-mkii" - "context-mkiv" - "contribute" - "conversion" - "coordinates" - "copy-paste" - "copyright" - "counters" - "counts" - "covers" - "covington" - "cpssp" - "crop" - "cross-referencing" - "crosswords" - "csplain" - "csquotes" - "css" - "csv" - "csvsimple" - "ctable" - "ctan" - "currfile" - "curve-fitting" - "custom-bib" - "cuted" - "cweb" - "cygwin" - "cyrillic" - "data-structures" - "database" - "datatool" - "datetime" - "dcolumn" - "debian" - "debugging" - "decorations" - "degrees" - "delimiters" - "dependencies" - "description" - "detex" - "detokenize" - "diagbox" - "diagrams" - "dialogue" - "dictionaries" - "dimension-expressions" - "dimensions" - "dinbrief" - "directory" - "dirtree" - "displaystyle" - "distributions" - "djvu" - "docstrip" - "document-classes" - "document-configuration" - "documentation" - "documentclass-writing" - "doi" - "dot2tex" - "dot2texi" - "double-sided" - "dpfloat" - "draft" - "draftwatermark" - "dramatist" - "drm" - "drop-cap" - "dropbox" - "dtx" - "dvi" - "dvi-mode" - "dvipdf" - "dvipdfmx" - "dvips" - "e-tex" - "easylist" - "ebgaramond" - "ebook" - "eclipse" - "ecv" - "editors" - "eemeir" - "eledmac" - "eledpar" - "elisp" - "ellipsis" - "elsart" - "elsarticle" - "emacs" - "embedding" - "embedfile" - "emp" - "emphasis" - "empheq" - "endfloat" - "endnotes" - "engineering" - "enumerate" - "enumitem" - "environment-variables" - "environments" - "envlab" - "epigraphs" - "eplain" - "eps" - "epslatex" - "epstool" - "epstopdf" - "epub" - "equations" - "errors" - "esami" - "esint" - "eso-pic" - "esvect" - "etextools" - "etoc" - "etoolbox" - "euler" - "eulervm" - "europecv" - "everypage" - "everyshi" - "evince" - "exam" - "examplep" - "examples" - "excel" - "excel2latex" - "exceltex" - "exercises" - "expansion" - "expex" - "expl3" - "export" - "exsheets" - "extended-characters" - "external-files" - "fancybox" - "fancyhdr" - "fancyref" - "fancytabs" - "fancytooltips" - "fancyvrb" - "feynmf" - "feynmp-auto" - "file-lookup" - "file-size" - "filecontents" - "files" - "filesystem-access" - "fillbetween" - "fit" - "fixme" - "flashcards" - "float-like" - "floating-point" - "floatrow" - "floats" - "flowfram" - "flyers" - "flyspell" - "fmtcount" - "fmtutil" - "fncychap" - "folders" - "font-encodings" - "font-expansion" - "font-metrics" - "fontawesome" - "fontforge" - "fontinst" - "fontmap" - "fonts" - "fontsize" - "fontspec" - "footbib" - "footmisc" - "footnotes" - "foreach" - "forest" - "format-files" - "formatting" - "forms" - "forward-inverse-search" - "fourier" - "fp" - "fpu" - "fractals" - "fractions" - "frame-title" - "framed" - "french" - "frenchspacing" - "front-matter" - "fullwidth" - "fun" - "garamondx" - "gb4e" - "gedit" - "geometry" - "german" - "getnonfreefonts" - "ghostscript" - "gif" - "git" - "gitinfo" - "gloss" - "glossaries" - "gnuplot" - "gradetable" - "gradient" - "grammar" - "graphics" - "graphs" - "greek" - "gregorio" - "grid-typesetting" - "grids" - "grouping" - "groupplots" - "gummi" - "harvard-style" - "he-she" - "header-footer" - "hebrew" - "height" - "hepthesis" - "hevea" - "hex" - "hf-tikz" - "highlighting" - "hobby" - "hoefler" - "hooks" - "horizontal-alignment" - "htlatex" - "html" - "hypdvips" - "hyperref" - "hyphenation" - "icomma" - "ide" - "idxlayout" - "ieee-style" - "ieeetran" - "ifplatform" - "ifthen" - "illustrator" - "imakeidx" - "implicit-braces" - "import" - "include" - "includeonlyframes" - "incompatibility" - "indentation" - "indexing" - "indic" - "inkscape" - "inlage" - "inline" - "input" - "input-encodings" - "installing" - "interaction" - "interfaces" - "intersections" - "invoice" - "ipad" - "ipe" - "iso" - "isodate" - "isomath" - "italic" - "italic-correction" - "itemize" - "jabref" - "java" - "javascript" - "jobname" - "journal" - "journal-publishing" - "jpeg" - "julia" - "jurabib" - "karnaugh" - "kerning" - "key-value" - "keyboard" - "keywords" - "kile" - "kindle" - "knitr" - "knuth" - "koma-script" - "kotex" - "kpathsea" - "kpfonts" - "ktikz" - "kvoptions" - "l3fp" - "l3keys" - "l3prop" - "l3regex" - "labels" - "lacheck" - "landscape" - "languages" - "lastpage" - "latex-kernel" - "latex-project" - "latex-suite" - "latex-to-word" - "latex2html" - "latex2rtf" - "latex3" - "latexdiff" - "latexian" - "latexindent" - "latexit" - "latexmk" - "latexml" - "latin-modern" - "latvian" - "leaflet" - "learning" - "led-editor" - "ledmac" - "legend" - "lengths" - "letterhead" - "letters" - "letterspacing" - "lettre" - "lettrine" - "lhs2tex" - "libertine" - "licensing" - "ligatures" - "lilypond" - "line-breaking" - "line-numbering" - "line-spacing" - "linguex" - "linguistics" - "links" - "linux" - "lipsum" - "listings" - "listingsutf8" - "lists" - "literate-programming" - "live-preview" - "lncs" - "logging" - "logic" - "logicpuzzle" - "logos" - "lollipop" - "longtable" - "longtabu" - "loops" - "lscape" - "ltablex" - "ltxgrid" - "ltxtable" - "lua" - "lua-visual-debug" - "luamplib" - "luaotfload" - "luatex" - "lyx" - "lyx-layouts" - "mac" - "macports" - "macros" - "mactex" - "makecell" - "makefile" - "maple2e" - "mapping" - "marginnote" - "marginpar" - "margins" - "markdown" - "markup" - "marvosym" - "math-mode" - "math-operators" - "math-table" - "mathabx" - "mathastext" - "mathcal" - "mathcode" - "mathdesign" - "mathematica" - "mathjax" - "mathml" - "mathpazo" - "mathptmx" - "mathspec" - "mathtools" - "matlab" - "matlab2tikz" - "matplotlib" - "matrices" - "mdframed" - "mdsymbol" - "mdwtools" - "meaning" - "media9" - "memoir" - "memory" - "menukeys" - "mercurial" - "metadata" - "metafont" - "metafun" - "metapost" - "metauml" - "mhchem" - "microtype" - "miktex" - "mindmaps" - "mini-frames" - "minimal" - "minion" - "minipage" - "minitoc" - "minted" - "mla-style" - "mnsymbol" - "moderncv" - "moderntimeline" - "modiagram" - "modules" - "movie15" - "msword" - "mtpro" - "multibib" - "multicol" - "multicolumn" - "multido" - "multimedia" - "multiple-files" - "multirow" - "multline" - "music" - "musixtex" - "mwcls" - "mwe" - "nag" - "nameauth" - "naming" - "natbib" - "nath" - "navigation" - "nccmath" - "nesting" - "newlfm" - "newspaper" - "newtx" - "newtxmath" - "nicefrac" - "node-connections" - "nodes" - "nomenclature" - "notepad++" - "notes" - "ntheorem" - "numbering" - "obsolete" - "ocg" - "ocg-p" - "octave" - "offline" - "okular" - "oldstylenums" - "online" - "open-office" - "openbsd" - "opentype" - "opmac" - "optical" - "option-clash" - "optional-arguments" - "options" - "org-mode" - "organisation" - "osx" - "otftotfm" - "output" - "output-driver" - "output-routine" - "overlays" - "overpic" - "package-options" - "package-writing" - "packages" - "page-breaking" - "page-numbering" - "pagenote" - "pandoc" - "paper-size" - "paracol" - "paragraphs" - "paralist" - "parallel" - "parameters" - "parcolumns" - "parnotes" - "parshape" - "parsing" - "parskip" - "parts" - "patching" - "patgen" - "path-clipping" - "paths" - "pattern" - "pause" - "pax" - "pdf" - "pdf-a" - "pdfbook" - "pdfcomment" - "pdfcrop" - "pdflscape" - "pdfmark" - "pdfpages" - "pdfscreen" - "pdfsync" - "pdftex" - "pdftops" - "pdftricks" - "pdfx" - "performance" - "perl" - "persian" - "pgf-2.10" - "pgf-3.0.0" - "pgf-blur" - "pgf-core" - "pgf-decorations" - "pgf-pie" - "pgf-umlcd" - "pgffor" - "pgfgantt" - "pgfkeys" - "pgflayers" - "pgfmath" - "pgfornament" - "pgfpages" - "pgfplots" - "pgfplotstable" - "physics" - "picinpar" - "picins" - "pifont" - "pixelated" - "placeins" - "plain-tex" - "plot" - "pmx" - "png" - "poetry" - "polarplot" - "polyglossia" - "polynom" - "polyomino" - "portability" - "positioning" - "posters" - "postscript" - "powerdot" - "powerpoint" - "preamble" - "prelim2e" - "presentations" - "preview" - "primitives" - "printing" - "privacy" - "probsoln" - "profiling" - "program" - "programming" - "programming-tools" - "pronunciation" - "proof-package" - "proofreading" - "protext" - "protrusion" - "ps" - "ps2pdf" - "pseudocode" - "psfrag" - "psmatrix" - "pspicture" - "pst-3dplot" - "pst-abspos" - "pst-asr" - "pst-barcode" - "pst-circ" - "pst-coil" - "pst-eucl" - "pst-func" - "pst-geo" - "pst-grad" - "pst-node" - "pst-optexp" - "pst-optic" - "pst-plot" - "pst-poly" - "pst-solides3d" - "pst-tree" - "pstool" - "pstricks" - "pstricks-add" - "ptex" - "publishing" - "punctuation" - "puzzle" - "pygments" - "python" - "qstest" - "qtree" - "quality-system" - "questionnaire" - "quotchap" - "quoting" - "r" - "ragged2e" - "raise" - "random" - "random-numbers" - "recursion" - "refcheck" - "reflection" - "reftex" - "registers" - "relation-symbols" - "remember" - "remote" - "rendering" - "report" - "repositories" - "research" - "resolution" - "resources" - "restructured-text" - "resume" - "revision-control" - "revtex" - "right-to-left" - "rivers" - "rnw" - "robust-commands" - "roman" - "roman-numerals" - "rotating" - "rounded-corners" - "rowcolor" - "rstudio" - "rubber" - "rules" - "russian" - "sagetex" - "sans-serif" - "savetrees" - "scaling" - "scantokens" - "scientific-workplace" - "sciposter" - "scoping" - "scrbook" - "screen" - "scripts" - "scrlayer-scrpage" - "scrlttr2" - "scrpage2" - "sectioning" - "sections-paragraphs" - "sectsty" - "security" - "selnolig" - "semantics" - "setspace" - "shading" - "shadows" - "shapepar" - "shapes" - "sharelatex" - "shell-escape" - "shipout" - "shorthands" - "shorttoc" - "showexpl" - "showkeys" - "showlabels" - "sidecap" - "sidenotes" - "siunits" - "siunitx" - "skak" - "sketch" - "slanted" - "small-caps" - "smartdiagram" - "songs" - "sorting" - "soul" - "source" - "sourcecode" - "sourcesanspro" - "spacing" - "spanish" - "spelling" - "sphinx" - "splitbib" - "spreadtab" - "spy" - "srcltx" - "stack" - "stackengine" - "stacking-symbols" - "standalone" - "starred-version" - "statistics" - "statweave" - "stix" - "stmaryrd" - "storage" - "strikeout" - "strings" - "stringstrings" - "strut" - "subcaption" - "subdividing" - "subequations" - "subfiles" - "subfloats" - "subjective" - "sublime-text" - "subscripts" - "substitution" - "subversion" - "sudoku" - "sumatrapdf" - "superscripts" - "supertabular" - "sv-classes" - "svg" - "svmono" - "svn-multi" - "sweave" - "swf" - "symbols" - "syntax" - "syntax-checker" - "syriac" - "systeme" - "tabbing" - "table-of-contents" - "tables" - "tablet" - "tabls" - "tabto" - "tabu" - "tabularx" - "tabulary" - "tagged-pdf" - "tamil" - "tasks" - "tcolorbox" - "tdclock" - "tds" - "teaching" - "technical-drawing" - "technical-environment" - "tei" - "templates" - "tensor" - "terminal-output" - "tetris" - "tex-core" - "tex-general" - "tex-gyre-math" - "tex-history" - "tex4ebook" - "tex4ht" - "texcount" - "texdef" - "texdoc" - "texi2dvi" - "texify" - "texinfo" - "texinputs" - "texlipse" - "texlive" - "texmacs" - "texmaker" - "texmf" - "texniccenter" - "texnicle" - "texpad" - "texshop" - "texstudio" - "text-decorations" - "text-manipulation" - "text-mode" - "text-only" - "textcomp" - "textmate" - "textpos" - "texworks" - "tfrupee" - "themes" - "theorems" - "thesis" - "thmbox" - "thmtools" - "threeparttable" - "threeparttablex" - "thumb-index" - "ticks" - "tiff" - "tikz-3dplot" - "tikz-angles" - "tikz-arrows" - "tikz-calendar" - "tikz-cd" - "tikz-chains" - "tikz-circuit-lib" - "tikz-datavisualization" - "tikz-external" - "tikz-graphs" - "tikz-matrix" - "tikz-pgf" - "tikz-pic" - "tikz-qtree" - "tikz-shape" - "tikz-styles" - "tikz-timing" - "tikz-trees" - "tikz-uml" - "tikzdevice" - "tikzedt" - "tikzlibrary" - "tikzmark" - "tikzmath" - "tikzpagenodes" - "tikzposter" - "tikzscale" - "tilde" - "times" - "timing-diagrams" - "tipa" - "titleps" - "titles" - "titlesec" - "titletoc" - "titling" - "tkz-collection" - "tkz-euclide" - "tkz-fct" - "tkz-graph" - "tocbibind" - "tocloft" - "tocstyle" - "todonotes" - "token-lists" - "tools" - "tortoisesvn" - "tqft" - "trackchanges" - "transformation" - "transition" - "translator" - "transparency" - "trapezium" - "trees" - "triskaidekaphobia" - "truetype" - "tufte" - "tugboat" - "turkish" - "turnstile" - "tutorials" - "two-column" - "txfonts" - "type1" - "typearea" - "typefaces" - "typein" - "typewriter" - "typography" - "ubuntu" - "ucharclasses" - "ulem" - "unicode" - "unicode-math" - "unit-of-measure" - "units" - "unix" - "untagged" - "updating" - "uplatex" - "uppercase" - "upquote" - "urlbst" - "urls" - "varioref" - "varwidth" - "vector" - "venn-diagrams" - "venturis" - "verbatim" - "verbments" - "verse" - "versions" - "vertical-alignment" - "viewers" - "vim" - "vim-latex" - "wallpaper" - "warnings" - "watermark" - "web" - "welsh" - "whatsit" - "widows-orphans" - "width" - "windows" - "winedt" - "word-count" - "word-to-latex" - "workflow" - "wrap" - "wrapfigure" - "write" - "write-file" - "writelatex" - "wysiwyg" - "xcoffins" - "xcookybooky" - "xdvi" - "xdvipdfmx" - "xecjk" - "xepersian" - "xesearch" - "xetex" - "xfig" - "xfrac" - "xifthen" - "xindy" - "xint" - "xkeyval" - "xkvltxp" - "xlop" - "xml" - "xmltex" - "xmp" - "xparse" - "xpatch" - "xpinyin" - "xr" - "xskak" - "xspace" - "xstring" - "xtab" - "xtable" - "xtemplate" - "xwatermark" - "xy-pic" - "xymtex" - "yap" - "yhmath" - "ytableau" - "zathura" - "zooming" - "zotero" - "zref" - "zwpagelayout") diff --git a/data/tags/tor.el b/data/tags/tor.el deleted file mode 100644 index 8966608..0000000 --- a/data/tags/tor.el +++ /dev/null @@ -1,194 +0,0 @@ -("abuse" - "add-on" - "address" - "anonymity" - "arm" - "atlas" - "attacks" - "authentication" - "back-door" - "bandwidth" - "benchmarks" - "binaries" - "birdge" - "bittorrent" - "blocked" - "blocked-services" - "bootstrapping" - "botnet" - "bridge" - "browsers" - "build" - "censorship" - "certificate" - "chat" - "chrome" - "chrome-os" - "circuit" - "circumvention" - "clear-net" - "client" - "configuration" - "consensus" - "contribution" - "darknet" - "deanonymization" - "debian" - "density" - "development" - "diagnostics" - "directory" - "distribution" - "dns" - "dos" - "ec2" - "email" - "encryption" - "end-to-end-correlation" - "entry-node" - "error" - "exit-node" - "exit-policies" - "exit-relays" - "fedora" - "fingerprinting" - "firefox" - "flags" - "flash" - "freebsd" - "freedom-hosting" - "geoip" - "git" - "global-adversary" - "gnupg" - "google" - "guard" - "help" - "hidden-services" - "hops" - "https" - "i2p" - "implementations" - "information-leaks" - "ios" - "iptables" - "ipv6" - "isolation" - "java" - "javascript" - "jondonym" - "latency" - "legal" - "linux" - "load-balance" - "log" - "login" - "malware" - "metrics" - "middle" - "mirrors" - "mix" - "mobile" - "myfamily" - "netcat" - "network-adversary" - "network-configuration" - "network-health" - "noscript" - "ntp" - "obfsproxy" - "one-hop" - "onion" - "onion-routing" - "onioncat" - "openvpn" - "option" - "orbot" - "orchid" - "orweb" - "osx" - "outreach" - "packages" - "performance" - "persistent" - "ping" - "platform" - "pluggable-transports" - "plugin" - "polipo" - "pre-tor-proxy" - "private" - "private-key" - "protocol" - "proxy-leaks" - "pseudo-random" - "python" - "qubes" - "random" - "raspberry-pi" - "raspbian" - "relay-adversary" - "relays" - "research" - "safari" - "secure-drop" - "security" - "server" - "server-administration" - "session" - "settings" - "silk-road" - "socks" - "source-code" - "spam" - "speed" - "spoofing" - "ssh" - "ssl" - "startup" - "stats" - "stem" - "stream-isolation" - "subgraph" - "support" - "surveillance" - "tails" - "threat-models" - "threats" - "time" - "tls" - "tor-browser-bundle" - "tor-button" - "tor-cloud" - "torbirdy" - "torcheck" - "torproject.org" - "torrc" - "torsocks" - "torvm" - "traffic-analysis" - "transparent-proxy" - "troubleshooting" - "truly-random" - "tunnel" - "tunneldirconns" - "ubuntu" - "unlinkability" - "update" - "url" - "v0.2.3.25" - "v0.2.4.20" - "verification" - "vidalia" - "virtual-machine" - "virtualisation" - "vpn" - "vps" - "vulnerability" - "web-hosting" - "web-proxy" - "webcam" - "website" - "whois" - "whonix" - "windows") diff --git a/data/tags/travel.el b/data/tags/travel.el deleted file mode 100644 index 390a29e..0000000 --- a/data/tags/travel.el +++ /dev/null @@ -1,1334 +0,0 @@ -("90-180-visa-rules" - "abu-dhabi" - "accessibility" - "accommodation" - "acre" - "activities" - "adapters" - "addis-ababa" - "adventure" - "aep" - "aeroflot" - "aerolineas-argentinas" - "afghanistan" - "afghanistan-citizens" - "africa" - "agra" - "air-asia" - "air-baltic" - "air-canada" - "air-france" - "air-india" - "air-new-zealand" - "air-quality" - "air-travel" - "airbnb" - "airbus" - "aircraft" - "airline-alliances" - "airlines" - "airport-link" - "airport-security" - "airport-transfer" - "airports" - "akl" - "aktau" - "alaska" - "alaska-airlines" - "albania" - "alberta" - "alcohol" - "algeria" - "almaty" - "alps" - "altitude" - "amazon-jungle" - "amazon-river" - "american-airlines" - "american-english" - "amritsar" - "ams" - "amsterdam" - "amtrak" - "amur" - "amusement-parks" - "ana" - "andalusia" - "andaman-nicobar-islands" - "andorra" - "animal-riding" - "ankara" - "anr" - "antalya" - "antarctica" - "apec" - "aqaba" - "arabic-language" - "archaeology" - "architecture" - "arctic" - "argentina" - "arizona" - "armenia" - "arn" - "around-the-world" - "art" - "asia" - "asiana-airlines" - "asr" - "astana" - "astrakhan" - "asuncion" - "asylum" - "athens" - "atl" - "atlanta" - "atlantic-ocean" - "atms" - "auckland" - "auroras" - "auschwitz" - "austin" - "australia" - "australian-citizens" - "australian-english" - "austria" - "automobiles" - "avv" - "ayuttahaya" - "azerbaijan" - "azores" - "b1-b2-visas" - "backpacking" - "backpacks" - "bad-weather" - "bahamas" - "baikal" - "baku" - "bali" - "balkans" - "baltic-sea" - "baltics" - "baltimore" - "bangalore" - "bangkok" - "bangladesh" - "bangladesh-citizens" - "banks" - "barbados" - "barcelona" - "barefoot" - "basel" - "basque-country" - "bath-england" - "batumi" - "bavaria" - "beaches" - "bed-bugs" - "beds" - "beggars" - "beijing" - "belarus" - "belgium" - "belgrade" - "belize" - "berat" - "bergamo" - "bergen" - "berlin" - "bhutan" - "bicycles" - "birdwatching" - "bishkek" - "bkk" - "black-sea" - "bne" - "boa" - "boarding-passes" - "bodrum" - "boeing" - "bolivia" - "bolivian-citizens" - "bom" - "bookings" - "borders" - "borneo" - "bosnia" - "boston" - "bratislava" - "brazil" - "brazilian-citizens" - "brazzaville" - "brisbane" - "bristol" - "british-airways" - "british-columbia" - "british-virgin-islands" - "brittany" - "bru" - "bruges" - "brussels" - "bsl" - "bucharest" - "budapest" - "budget" - "buenos-aires" - "buffalo" - "bukhara" - "bulgaria" - "bulgarian-citizens" - "burning-man" - "buses" - "business-travel" - "busking" - "byron-bay" - "cafe" - "cai" - "cairns" - "cairo" - "calgary" - "california" - "cambodia" - "cambridge" - "cameroon" - "cameroon-citizens" - "campers" - "camping" - "can" - "canada" - "canadian-citizens" - "canary-islands" - "cancellations" - "cancun" - "cannes" - "cape-town" - "cappadocia" - "car-pooling" - "car-rental" - "caribbean" - "carnet-de-passage" - "carnival-mardi-gras" - "casablanca" - "castles" - "catalan-language" - "cathay-pacific" - "caucasus" - "cayman-islands" - "cbg" - "cdg" - "cellphones" - "central-america" - "central-asia" - "central-europe" - "cgn" - "channel-islands" - "charter" - "chennai" - "chernobyl" - "chiang-mai" - "chicago" - "children" - "chile" - "chilean-citizens" - "china" - "china-eastern" - "china-southern-airlines" - "chinese-citizens" - "christchurch" - "christmas-island" - "churchill" - "cia" - "cid" - "citadels" - "cities" - "cju" - "closures" - "clothing" - "cns" - "coahuila" - "code-share" - "coffee" - "cologne" - "colombia" - "colombian-citizens" - "colombo" - "colorado" - "common-travel-area" - "communication" - "compensation" - "conferences" - "congo" - "connecticut" - "consulates" - "copenhagen" - "corruption" - "corsica" - "costa-rica" - "couchsurfing" - "countries" - "cozumel" - "cph" - "crater-lake" - "crete" - "crk" - "crl" - "croatia" - "cruising" - "cuba" - "cuban-citizens" - "cultural-awareness" - "culture" - "curonian-spit" - "cusco" - "custom-tours" - "customs-and-immigration" - "cyprus" - "czech-republic" - "daintree" - "dakar" - "damaged-luggage" - "dangerous-goods" - "danube" - "data-plans" - "datv" - "day-trips" - "dead-sea" - "death" - "death-valley" - "del" - "delays" - "delta-airlines" - "democratic-republic-congo" - "den" - "denial-of-entry" - "denmark" - "denver" - "deportation" - "deserts" - "destinations" - "detroit" - "dfw" - "dietary-restrictions" - "discrimination" - "disney" - "disputed-territories" - "diving" - "dmk" - "doh" - "doha" - "dolomites" - "domestic-travel" - "dominican-republic" - "douala" - "downgrades" - "driving" - "driving-licenses" - "drugs" - "dtw" - "dual-nationality" - "dub" - "dubai" - "dublin" - "dubrovnik" - "dundee" - "dunes" - "dus" - "dushanbe" - "dusseldorf" - "dutch-citizens" - "dutch-language" - "duty-free" - "dxb" - "e-cigarettes" - "e-tickets" - "e-visas" - "east-asia" - "easter-island" - "eastern-europe" - "eastern-usa" - "easyjet" - "eclipses" - "ecotourism" - "ecuador" - "ecuador-citizens" - "edi" - "edinburgh" - "egypt" - "egyptian-citizens" - "ein" - "eindhoven" - "el-calafate" - "electronic-items" - "electronics" - "embassies" - "emergencies" - "emirates" - "england" - "english-language" - "entertainment" - "essaouira" - "esta" - "estonia" - "eta" - "ethical-travel" - "ethiopia" - "ethiopian-citizens" - "etihad" - "etiquette" - "eu" - "eu-citizens" - "eurail" - "euronight" - "europe" - "eurostar" - "eurozone" - "event-based-effects" - "event-travel" - "events" - "everglades" - "evn" - "ewr" - "exchange" - "exit-visas" - "extreme-sports" - "extreme-tourism" - "eze" - "f1-visas" - "factoids" - "falkland-islands" - "family" - "fares" - "faroe-islands" - "fco" - "fees-and-charges" - "female-travellers" - "ferries" - "festivals" - "fiji" - "fijian-citizens" - "filipino-citizens" - "finland" - "finnair" - "firearms" - "fjords" - "flight-search-engines" - "flight-status" - "florence" - "florida" - "food-and-drink" - "football" - "footwear" - "formula-one" - "fortresses" - "fra" - "fragile-luggage" - "france" - "frankfurt" - "fraud" - "freighter-travel" - "french-citizens" - "french-guiana" - "french-language" - "french-polynesia" - "french-riviera" - "gabon" - "gadgets" - "galapagos-islands" - "gdansk" - "gds" - "gear" - "geek-travel" - "geneva" - "genoa" - "geocaching" - "geography" - "georgia-country" - "georgia-usa" - "georgian-citizens" - "georgian-language" - "german-citizens" - "german-language" - "germany" - "ghana" - "ghanaian-citizens" - "ghent" - "gibraltar" - "gifts" - "glaciers" - "glasgow" - "global-entry" - "goa" - "goair" - "gondolas-and-cable-cars" - "got" - "government-buildings" - "gpa" - "gps-navigation" - "gran-canaria" - "grand-canyon" - "grand-prix" - "great-barrier-reef" - "great-plains" - "great-salt-lake" - "great-wall-of-china" - "greece" - "greek-citizens" - "greenland" - "grenoble" - "greyhound" - "gro" - "group-travel" - "gru" - "gsm" - "guam" - "guangzhou" - "guatemala" - "guatemalan-citizens" - "guayaquil" - "guernsey" - "guest-houses" - "guidebooks" - "guides" - "gva" - "gyd" - "gye" - "h1b-visas" - "haggling" - "haiti" - "haitian-citizens" - "hamburg" - "hand-luggage" - "hanoi" - "hanover" - "havana" - "hawaii" - "health" - "heilongjiang" - "hel" - "helicopters" - "helsinki" - "hhn" - "high-speed-rail" - "hiking" - "himalayas" - "hiroshima" - "history" - "hitchhiking" - "hkg" - "hnd" - "ho-chi-minh-city" - "hohhot" - "hokkaido" - "homestay" - "honduran-citizens" - "honduras" - "hong-kong" - "hong-kong-citizens" - "honolulu" - "hostels" - "hostelworld" - "hot-springs" - "hotels" - "houston" - "hungary" - "hunting" - "hunza-valley" - "hygiene" - "i-80" - "i-94" - "iad" - "iah" - "iberia" - "iceland" - "icelandair" - "icn" - "idaho" - "identify-this" - "identity-cards" - "iguazu-falls" - "import-tax" - "india" - "indian-citizens" - "indian-railways" - "indigenous-peoples" - "indonesia" - "indonesian-citizens" - "inner-mongolia" - "insects" - "insurance" - "international-calls" - "international-travel" - "internet" - "interrail" - "invitation-letter" - "iowa" - "iran" - "iran-citizens" - "iraq" - "iraq-citizens" - "ireland" - "irish-citizens" - "irkutsk" - "isg" - "ishigaki" - "islam" - "islands" - "isle-of-man" - "israel" - "israeli-citizens" - "ist" - "istanbul" - "italian-citizens" - "italy" - "itineraries" - "j1-visas" - "jakarta" - "jal" - "jamaica" - "jamaican-citizen" - "japan" - "japan-rail" - "japanese-citizens" - "japanese-language" - "japanese-visitors" - "jeju" - "jerusalem" - "jetlag" - "jetstar" - "jfk" - "jnb" - "jodhpur" - "jonkoping" - "jordan" - "jordanian-citizens" - "jr-pass" - "kaliningrad" - "kansas" - "kashmir" - "kathmandu" - "kazakhstan" - "kef" - "kenya" - "kenyan-citizens" - "kerala" - "khiva" - "kiev" - "kilimanjaro" - "kingfisher-airlines" - "kiribati" - "kix" - "klm" - "ko-phi-phi" - "korean-air" - "kortrijk" - "kosovo" - "kosovo-citizens" - "krakow" - "kuala-lumpur" - "kul" - "kuwait" - "kyoto" - "kyrgyzstan" - "kyushu" - "la-paz" - "labrador" - "lake-constance" - "lake-district" - "lake-victoria" - "lakes" - "land-transit" - "landmarks" - "language-barrier" - "languages" - "laos" - "las" - "las-vegas" - "late-arrival" - "latvia" - "laundry" - "lax" - "layovers" - "lcy" - "lebanese-citizens" - "lebanon" - "legal" - "leh" - "leipzig" - "lej" - "leuven" - "lga" - "lgb" - "lgw" - "lhr" - "liberian-citizens" - "libya" - "libyan-citizens" - "liechtenstein" - "lille" - "lima" - "lis" - "lisbon" - "literature" - "lithuania" - "liverpool" - "livorno" - "ljubljana" - "local-cuisine" - "local-customs" - "local-knowledge" - "locate-this" - "loire-valley" - "london" - "london-underground" - "long-haul" - "long-stay-visas" - "long-term" - "los-angeles" - "lost-luggage" - "louisiana" - "lounges" - "louvre" - "low-cost-carriers" - "loyalty-programs" - "lpb" - "ltn" - "lucerne" - "lufthansa" - "luggage" - "luggage-storage" - "lusaka" - "luxembourg" - "luxembourg-city" - "luxury" - "lyon" - "maa" - "maastricht" - "macau" - "macedonia" - "machu-picchu" - "mad" - "madagascar" - "madrid" - "mail" - "malacca" - "malawi" - "malay-language" - "malaysia" - "malaysian-airlines" - "malaysian-citizens" - "maldives" - "mali" - "malta" - "malta-citizens" - "man" - "manchester" - "manhattan" - "manila" - "manitoba" - "mantova" - "maps" - "marijuana" - "marrakech" - "marriages" - "marshrutkas" - "maryland" - "massachusetts" - "maui" - "mauritius" - "mayan-languages" - "mecca" - "medical-tourism" - "mediterranean" - "mel" - "melbourne" - "metro" - "mex" - "mexican-citizens" - "mexico" - "mexico-city" - "miami" - "michigan" - "middle-east" - "milan" - "miles-and-more" - "military" - "minneapolis" - "minors" - "missed-flights" - "mnl" - "mobile-apps" - "mobile-internet" - "mobile-operators" - "moldova" - "monaco" - "money" - "mongolia" - "montenegro" - "montevideo" - "montreal" - "moroccan-citizens" - "morocco" - "moscow" - "motorcycles" - "mount-everest" - "mount-fuji" - "mountain-climbing" - "mountains" - "mozambique" - "msp" - "mst" - "muc" - "multiple-entry" - "mumbai" - "munich" - "museums" - "music" - "myanmar" - "myanmar-citizens" - "namibia" - "national-parks" - "natural-disasters" - "nature-and-wildlife" - "nav" - "nce" - "nederlandse-spoorwegen" - "negombo" - "nepal" - "netherlands" - "nevada" - "new-brunswick" - "new-caledonia" - "new-delhi" - "new-england" - "new-jersey" - "new-mexico" - "new-orleans" - "new-south-wales" - "new-york-city" - "new-york-state" - "new-zealand" - "new-zealand-citizens" - "newfoundland" - "nexus" - "niagara-falls" - "nicaragua" - "nicaraguan-citizens" - "nice" - "nigeria" - "nigerian-citizens" - "night-transport" - "nightlife" - "nikko" - "no-advance-plans" - "no-costs" - "nordic-countries" - "north-africa" - "north-america" - "north-carolina" - "north-dakota" - "north-india" - "north-island" - "north-korea" - "north-sea" - "northeast-china" - "northern-california" - "northern-ireland" - "northern-territory" - "northwest-territories" - "norway" - "norwegian-air-shuttle" - "norwegian-citizens" - "nou" - "nova-scotia" - "novosibirsk" - "nrn" - "nrt" - "nudism" - "nuremberg" - "nz-citizens" - "oak" - "oakland" - "oaxaca" - "oceania" - "officials" - "offroad" - "ofii" - "ohio" - "okinawa" - "okinawan-language" - "oklahoma" - "olympics" - "oman" - "one-way" - "oneworld" - "online-resources" - "ontario" - "opaque-provider" - "open-jaw" - "opening-hours" - "ord" - "oregon" - "orlando" - "ory" - "osaka" - "oslo" - "outdoor-activities" - "overland" - "overstaying" - "oxford" - "pacific-ocean" - "pakistan" - "pakistani-citizens" - "pakse" - "palawan" - "palestine" - "pamir-highway" - "panama" - "paperwork" - "parachutes-skydiving" - "paraguay" - "paris" - "parking" - "parks-and-gardens" - "passenger-rights" - "passport-stamps" - "passports" - "patagonia" - "payment-cards" - "pbc" - "pbm" - "peak-district" - "pek" - "pennsylvania" - "permits" - "perperikon" - "perth" - "peru" - "peruvian-citizens" - "petra" - "pets" - "philadelphia" - "philippine-airlines" - "philippine-citizens" - "philippines" - "phl" - "phoenix" - "photography" - "phuket" - "pilgrimages" - "pittsburgh" - "plane-spotting" - "planning" - "pnq" - "poland" - "polish-citizens" - "politics" - "portland" - "portugal" - "portuguese-language" - "postage" - "power" - "prague" - "pre-pay" - "pregnancy" - "premium-economy" - "price" - "privacy" - "prohibited-items" - "proof-of-funds" - "proof-of-onward-travel" - "protocol" - "provence" - "pty" - "public-holidays" - "public-transport" - "pudong" - "puebla" - "puerto-rico" - "pune" - "puno" - "punta-arenas" - "pvg" - "pyrenees" - "qantas" - "qatar" - "qatar-airways" - "quebec" - "queensland" - "queenstown" - "rabat" - "radiation" - "railway-station" - "rajasthan" - "ramadan" - "recommendations" - "red-sea" - "refunds" - "registration" - "regulations" - "religion" - "remote-locations" - "rental" - "residency" - "resorts" - "restaurants" - "reu" - "reviews" - "reykjavik" - "rhine" - "ride-sharing" - "riga" - "rio-branco" - "rio-de-janeiro" - "riverboats" - "rivers" - "rix" - "road-trips" - "roads" - "roaming" - "roc" - "romance" - "romania" - "rome" - "rotterdam" - "routes" - "royal-jordanian" - "ruins" - "rural" - "russia" - "russian-citizens" - "russian-language" - "rvs" - "ryanair" - "ryokans" - "safari" - "safety" - "sailing" - "saint-lucia" - "saint-petersburg" - "salar-de-uyuni" - "salt-lake-city" - "salt-lakes" - "salzburg" - "samoa" - "san-diego" - "san-francisco" - "san-francisco-bay-area" - "san-jose" - "san-jose-california" - "san-sebastian" - "santiago-de-chile" - "sapporo" - "sardinia" - "saudi-airlines" - "saudi-arabia" - "saudi-citizens" - "savannakhet" - "saw" - "scams" - "scandinavia" - "scenic-routes" - "schengen" - "school-holidays" - "scl" - "scooters" - "scotland" - "sea-travel" - "search" - "seasonal" - "seating" - "seattle" - "security" - "self-guided" - "sen" - "senegal" - "senior-travel" - "seoul" - "serbia" - "services" - "seville" - "sex" - "sfo" - "sha" - "shanghai" - "sharjah" - "sheffield" - "shenzhen" - "shinkansen" - "shipping" - "ships" - "shkoder" - "shopping" - "shore-excursions" - "short-haul" - "short-notice" - "siberia" - "sicily" - "siem-reap" - "sierra-leonian-citizens" - "sightseeing" - "silicon-valley" - "simcards" - "sin" - "singapore" - "singapore-airlines" - "singapore-citizens" - "sjc" - "sjo" - "skyteam" - "sleeping" - "slovak-citizens" - "slovakia" - "slovenia" - "smoking" - "sna" - "sncf" - "snow" - "social-norms" - "socializing" - "sofia" - "software" - "solo-travel" - "south-africa" - "south-african-citizens" - "south-america" - "south-asia" - "south-carolina" - "south-dakota" - "south-india" - "south-korea" - "south-korean-citizens" - "southeast-asia" - "southeast-europe" - "southern-california" - "southwest-airlines" - "souvenirs" - "space" - "spain" - "spanish-citizens" - "spanish-language" - "spicejet" - "spirit-airlines" - "split" - "sports-events" - "spouses" - "sri-lanka" - "sri-lankan-citizens" - "star-alliance" - "stateless-persons" - "statistics" - "stn" - "stockholm" - "stonehenge" - "stop-overs" - "study" - "stuttgart" - "submarine" - "sudan" - "sudanese-citizens" - "summer" - "sunbathing" - "sunshine-coast" - "surfing" - "suriname" - "svo" - "swaziland" - "sweden" - "sweden-citizens" - "swimming" - "swiss" - "swiss-citizens" - "switzerland" - "syd" - "sydney" - "syracuse" - "syrian-citizens" - "syx" - "tahiti" - "taipei" - "taiwan" - "taiwanese-citizens" - "tajik-citizens" - "tajikistan" - "tallinn" - "tamil-nadu" - "tangier" - "tanzania" - "tap-water" - "tasmania" - "tatkal" - "tatras" - "tax-refunds" - "taxes" - "taxis" - "tbilisi" - "technical-stops" - "tehran" - "tel-aviv" - "temples" - "tenerife" - "terminology" - "texas" - "tfs" - "thai-citizens" - "thailand" - "thalys" - "thanksgiving" - "the-grenadines" - "the-hippie-trail" - "thessaloniki" - "tibet" - "tickets" - "tikal" - "timbuktu" - "timezones" - "tipping" - "tips-and-tricks" - "tirana" - "tiraspol" - "tohoku" - "tokyo" - "tokyo-haneda" - "tokyo-narita" - "tolls" - "toronto" - "torres-del-paine" - "tos" - "tourist-traps" - "tours" - "towels" - "tpe" - "traffic" - "train-stations" - "trains" - "trans-siberian" - "transit" - "transportation" - "trash" - "travel-agents" - "travel-companions" - "travel-obstructions" - "travel-tools" - "trd" - "trekking" - "trinidad-and-tobago" - "tromso" - "tropical-destinations" - "tsa" - "tse" - "tsf" - "tunisia" - "tunisian-citizens" - "turin" - "turkey" - "turkish-airlines" - "turkish-citizens" - "turkmenistan" - "tuscany" - "tuva" - "txl" - "tyo" - "uae" - "udr" - "uganda" - "uip" - "uk" - "uk-citizens" - "ukraine" - "ukrainian-citizens" - "ukrainian-language" - "ulan-bator" - "united-airlines" - "universal-studios" - "upgrades" - "urgench" - "uruguay" - "us-airways" - "us-citizens" - "us-virgin-islands" - "us-visa-waiver-program" - "usa" - "utah" - "uzbek-citizens" - "uzbekistan" - "vacation" - "valencia" - "vancouver" - "vantage-points" - "vanuatu" - "vaping" - "vatican-city" - "vayama" - "vce" - "venezuela" - "venice" - "victoria-falls" - "vie" - "vienna" - "vientiane" - "vietnam" - "vietnam-citizens" - "vilnius" - "virgin-australia" - "virginia" - "visa-extensions" - "visa-free-entry" - "visa-on-arrival" - "visa-rejection" - "visa-runs" - "visas" - "vlc" - "vno" - "volcanoes" - "volunteering" - "vouchers" - "wakayama" - "wales" - "walking" - "war-zones" - "warsaw" - "washington-dc" - "washington-state" - "water-sports" - "waterfalls" - "weather-and-climate" - "weekends" - "wellington" - "welsh-language" - "west-bank" - "western-europe" - "western-usa" - "whalewatching" - "where-on-earth" - "wifi" - "winnipeg" - "winter" - "winter-sports" - "work" - "working-holiday" - "working-visa" - "world-cup" - "world-war-ii" - "worldwide" - "wrecks" - "wroclaw" - "wwoof" - "wyoming" - "xian" - "xinjiang" - "yamagata" - "yellowstone" - "yemen" - "yerevan" - "york" - "yosemite" - "yunnan" - "yvr" - "yyz" - "zad" - "zagreb" - "zambia" - "zimbabwe" - "zqn" - "zrh" - "zurich") diff --git a/data/tags/tridion.el b/data/tags/tridion.el deleted file mode 100644 index d06a842..0000000 --- a/data/tags/tridion.el +++ /dev/null @@ -1,175 +0,0 @@ -("2009" - "2011" - "2011-sp1" - "2013" - "2013-sp1" - "5.2" - "5.3" - "ambient-data-framework" - "api" - "architecture" - "archival" - "audience-manager" - "authorization" - "automatic-activity" - "binary" - "blueprint" - "broker" - "browser" - "bundles" - "business-connector" - "c#" - "cache-channel-service" - "certification" - "chrome" - "classnotfoundexception" - "clustering" - "cme" - "com" - "component" - "componentpresentation" - "configuration" - "content-delivery" - "content-manager" - "content-modeling" - "content-porter" - "content-porter-2009" - "content-porter-2013" - "context-engine" - "contextual-image-delivery" - "core-service" - "custom-page" - "custom-resolver" - "custom-url" - "cwa" - "database" - "dd4t" - "deployer" - "directory-services" - "documentation" - "dwt" - "dynamic-linking" - "dynamic-publishing" - "ecl" - "embedded-items" - "event" - "event-system" - "experience-manager" - "extension-errors" - "extension-model" - "external-integrations" - "favorites" - "filesystem" - "filtering-xslt" - "format-area-styles" - "framework" - "fredhopper" - "gui-extensions" - "hr2" - "https" - "httpupload" - "iframe" - "iis-and-asp.net" - "iis7" - "image" - "infrastructure" - "installation" - "itemselector" - "java" - "javascript" - "jms" - "jsp" - "keyword" - "ldap" - "legacy-pack" - "licensing" - "link-info" - "link-resolver" - "linking" - "linux" - "localization" - "lock-type" - "log4net" - "logging" - "mailing" - "media-manager" - "metadata" - "migration" - "mmc" - "monitoring" - "multi-processors" - "multi-value-fields" - "multimedia" - "navigation" - "network" - "objects" - "odata" - "oracle" - "outbound-email" - "pagelink" - "performance" - "permissions" - "personalization" - "powershell" - "powertools" - "preview" - "processhistory" - "profiling" - "publishing" - "publishingfailed" - "publishtransaction" - "purgetool" - "queries" - "query" - "r5" - "razormediator" - "reference-implementation" - "rel" - "release-process" - "rendered" - "rest" - "rtf" - "saving" - "schema" - "search" - "search-engine" - "security" - "service" - "session" - "session-preview" - "si4t" - "siteedit" - "siteedit-2009" - "smart-target" - "sql" - "sso" - "storage-extensions" - "structuregroups" - "svg" - "targetted-mailing" - "taxonomy" - "tcdl" - "template-builder" - "templating" - "tms" - "tom" - "tom.net" - "tracking" - "translation-manager" - "transport" - "tridionui2012" - "ugc" - "upgrade" - "user-management" - "user-rights" - "users-base-dn" - "vbscript" - "wai" - "wcf" - "webdav" - "webforms" - "workflow" - "worldserver" - "xml" - "xslt" - "xslt-mediator") diff --git a/data/tags/unix.el b/data/tags/unix.el deleted file mode 100644 index 5435ced..0000000 --- a/data/tags/unix.el +++ /dev/null @@ -1,2000 +0,0 @@ -(".desktop" - ".net" - ".netrc" - "32bit" - "3d" - "3g" - "64bit" - "7z" - "802.1x" - "a2ps" - "access-control" - "access-control-lists" - "access-point" - "account-restrictions" - "accounts" - "acer" - "ack" - "acl" - "acpi" - "acpid" - "activedirectory" - "activemq" - "activex" - "adb" - "adblock" - "administration" - "adobe-flash" - "afs" - "agrep" - "aide" - "airmon-ng" - "aix" - "algorithms" - "alias" - "alien" - "alpine" - "alsa" - "alt-tab" - "alternatives" - "amarok" - "amavis" - "amazon" - "amazon-ec2" - "amazon-s3" - "amd" - "amd-graphics" - "anaconda" - "android" - "angstrom" - "animation" - "ansi-term" - "ansible" - "ant" - "apache" - "apache-httpd" - "api" - "apparmor" - "appearance" - "apple" - "applescript" - "application" - "applications-database" - "apt" - "apt-cacher-ng" - "apt-listbugs" - "apt-mirror" - "aptitude" - "arch-linux" - "archbang" - "architecture" - "archive" - "arduino" - "arguments" - "aria2" - "arithmetic" - "arm" - "arp" - "array" - "ascii" - "ascii-art" - "asciidoc" - "ash" - "asp.net" - "aspell" - "assignment" - "asterisk" - "asus" - "async" - "at" - "atd" - "ati" - "atime" - "atom" - "atop" - "audacious" - "audacity" - "audio" - "audio-cd" - "audit" - "auditd" - "aufs" - "authbind" - "authentication" - "authorization" - "autocmd" - "autocomplete" - "autoconf" - "autocorrection" - "autofs" - "autojump" - "autologin" - "automake" - "automounting" - "autoplay" - "autoreconf" - "autorepeat" - "autotools" - "avahi" - "avconv" - "avfs" - "avi" - "avidemux" - "awesome" - "awk" - "aws" - "axel" - "axi" - "ba" - "background" - "backlight" - "backports" - "backtrack" - "backup" - "bacula" - "badblocks" - "bandwidth" - "base64" - "basename" - "bash" - "bash-script" - "bashrc" - "batch-jobs" - "battery" - "bazaar" - "bc" - "bcache" - "bell" - "benchmark" - "binary" - "bind" - "bind9" - "binfmt" - "bioinformatics" - "bios" - "bitchx" - "bittorrent" - "block-comment" - "block-device" - "blu-ray" - "bluetooth" - "bluez" - "bodhi" - "bonding" - "books" - "boost" - "boot" - "boot-loader" - "boot-menu" - "boot-process" - "bootable" - "bootsplash" - "bourne-shell" - "brace-expansion" - "bridge" - "brightness" - "broadcast" - "broadcom" - "browser" - "bsd" - "bsd-ports" - "btrfs" - "buffer" - "bug-workaround" - "bugs" - "bugzilla" - "buildroot" - "built-in" - "bumblebee" - "bup" - "burning" - "busybox" - "byobu" - "byte" - "bzip2" - "c" - "c#" - "c++" - "cabal" - "cache" - "caching" - "cacti" - "caja" - "cal" - "calculator" - "calendar" - "calibre" - "calligra" - "camera" - "capabilities" - "capistrano" - "capslock" - "career" - "case" - "case-sensitivity" - "cat" - "cd" - "cdpath" - "centos" - "cern-root" - "certificates" - "cfdisk" - "cgi" - "cgroups" - "character-encoding" - "chat" - "checkinstall" - "checksum" - "chef" - "chkconfig" - "chkrootkit" - "chmod" - "chown" - "chrome" - "chrome-book" - "chrome-os" - "chromecast" - "chromium-os" - "chroot" - "chrubuntu" - "cifs" - "cinnamon" - "cisco" - "citrix" - "clipboard" - "clock" - "clonezilla" - "cloning" - "cloud" - "cluster" - "cluster-ssh" - "cmake" - "cobbler" - "codec" - "color-management" - "colordiff" - "colors" - "columns" - "comm" - "command" - "command-history" - "command-line" - "command-names" - "command-not-found" - "command-substitution" - "command-switch" - "compatibility" - "compgen" - "compiler" - "compiling" - "compiz" - "completion" - "compose-key" - "composite" - "compression" - "concurrency" - "configuration" - "configure" - "conky" - "connection-sharing" - "conque" - "console" - "consolekit" - "container" - "containers" - "control-flow" - "conventions" - "conversion" - "coproc" - "copy" - "copy-paste" - "core-dump" - "coreutils" - "corruption" - "couchbase" - "courier" - "cowbuilder" - "cowsay" - "cp" - "cpack" - "cpan" - "cpanel" - "cpio" - "cpu" - "cpu-architecture" - "cpu-frequency" - "cracklib" - "crash" - "cron" - "cross-compilation" - "crunchbang" - "crux" - "cryptkeeper" - "cryptography" - "cryptsetup" - "csh" - "csv" - "ctags" - "cubian" - "cubieboard" - "cups" - "curl" - "cursor" - "cut" - "cutycapt" - "cvlc" - "cvs" - "cwd" - "cygwin" - "daemon" - "daemontools" - "darwin" - "dash" - "data" - "data-cd" - "data-recovery" - "database" - "date" - "davfs2" - "db2" - "dbus" - "dbus-send" - "dconf" - "dcp2icc" - "dd" - "dd-wrt" - "ddrescue" - "dead-keys" - "deadbeef" - "deadlock" - "deb" - "debconf" - "debian" - "debian-installer" - "debootstrap" - "debugging" - "decimal" - "deduplication" - "defaults" - "defragmentation" - "delay" - "deleted-files" - "denyhosts" - "dependencies" - "deployment" - "desktop" - "desktop-environment" - "desktop-file" - "desktop-publishing" - "destruction" - "development" - "device-mapper" - "devices" - "devilspie" - "df" - "dhcp" - "dialog" - "dictionary" - "diff" - "dig" - "directory" - "directory-structure" - "directx" - "disk" - "disk-cleanup" - "disk-encryption" - "disk-image" - "disk-usage" - "display" - "display-manager" - "display-settings" - "displaylink" - "displayport" - "distributed-filesystem" - "distribution-choice" - "distribution-media" - "distributions" - "distros" - "django" - "djvu" - "dkms" - "dlna" - "dm-cache" - "dm-crypt" - "dmenu" - "dmesg" - "dmidecode" - "dmz" - "dns" - "dnsmasq" - "dnssec" - "dock" - "docker" - "docky" - "documentation" - "documents" - "dokuwiki" - "dolphin" - "domain" - "door" - "dot-files" - "dovecot" - "download" - "dpkg" - "dpms" - "drag-and-drop" - "drbd" - "drivers" - "drm" - "dropbear" - "dropbox" - "drupal" - "dsl" - "dsp" - "dtach" - "dtrace" - "dual-boot" - "dual-monitor" - "dualhead" - "dump" - "duplicate" - "duplicity" - "duply" - "dvb" - "dvd" - "dwm" - "dynamic-dns" - "dynamic-linking" - "dynamic-loading" - "dyndns" - "e2fsck" - "ebcdic" - "ebooks" - "ec2" - "ecc" - "echo" - "eclipse" - "ecryptfs" - "ed" - "edid" - "edirectory" - "editors" - "effective-group" - "effective-user" - "efficiency" - "efi" - "ejabberd" - "eject" - "ekiga" - "elementary-os" - "elf" - "elinks" - "elisp" - "elliptic-curve-crypto" - "elvis" - "emacs" - "email" - "embedded" - "emerge" - "empathy" - "emulation" - "encfs" - "encryption" - "enlightenment" - "enscript" - "env" - "environment-variables" - "epub" - "error" - "error-handling" - "escape-characters" - "etc" - "ethernet" - "events" - "evince" - "evolution" - "ex" - "exchange" - "exec" - "executable" - "exif" - "exim" - "exit" - "expect" - "ext2" - "ext2fsd" - "ext3" - "ext4" - "external-hdd" - "extundelete" - "facebook" - "fail2ban" - "failover" - "failure" - "failure-resistance" - "fakeraid" - "fan" - "fast-streams" - "fastcgi" - "fastq" - "fat" - "fat32" - "fbi" - "fdisk" - "fdupes" - "fedora" - "feh" - "festival" - "fetchmail" - "ffmpeg" - "ffs" - "fglrx" - "fhs" - "fifo" - "file-browser" - "file-command" - "file-comparison" - "file-copy" - "file-descriptors" - "file-format" - "file-management" - "file-manager" - "file-metadata" - "file-opening" - "file-roller" - "file-search" - "file-server" - "file-sharing" - "file-transfer" - "filechooser" - "filenames" - "files" - "filesystems" - "filezilla" - "filter" - "finance" - "find" - "finder" - "finger" - "firefox" - "firewall" - "firewalld" - "firewire" - "firmware" - "fish" - "fish-protocol" - "flac" - "flash-memory" - "floating-point" - "floppy" - "fluxbox" - "focus" - "fontconfig" - "fonts" - "for" - "forensics" - "fork" - "forwarding" - "fpga" - "framebuffer" - "free-software" - "freebsd" - "freedesktop" - "freenas" - "freerdp" - "freeze" - "fsarchiver" - "fsck" - "fsfreeze" - "fstab" - "ftp" - "fullscreen" - "function" - "funtoo" - "fuse" - "fuser" - "fvwm" - "g++" - "gajim" - "games" - "gargoyle" - "gateway" - "gawk" - "gcc" - "gdb" - "gdm" - "gdm3" - "geany" - "gedit" - "gem" - "gentoo" - "geolocation" - "geom" - "getent" - "getopts" - "getty" - "gfs" - "ghostscript" - "gif" - "gimp" - "gis" - "git" - "git-annex" - "github" - "gksu" - "glib" - "glibc" - "glob" - "glusterfs" - "gnome" - "gnome-3.6" - "gnome-3.8" - "gnome-classic" - "gnome-keyring" - "gnome-panel" - "gnome-shell" - "gnome-terminal" - "gnome2" - "gnome3" - "gnu" - "gnu-install" - "gnu-make" - "gnu-parallel" - "gnuclad" - "gnuclient" - "gnuplot" - "gnustep" - "gnutls" - "google-drive" - "gparted" - "gpg" - "gpg-agent" - "gpio" - "gpl" - "gpsd" - "gpt" - "gpu" - "graph" - "graphic-card" - "graphicmagick" - "graphics" - "grc" - "grep" - "greyhole" - "gridengine" - "grml" - "groff" - "group" - "grsecurity" - "grub" - "grub-legacy" - "grub2" - "gsettings" - "gsm" - "gstreamer" - "gtk" - "gtk2" - "gtk3" - "gtkpod" - "guake" - "guest-account" - "gui" - "gummiboot" - "gvfs" - "gvim" - "gzip" - "hadoop" - "handbrake" - "handshake" - "haproxy" - "hard-disk" - "hard-link" - "hardening" - "hardware" - "hardware-compatibility" - "hashsum" - "haskell" - "hdmi" - "hdparm" - "head" - "header-file" - "headless" - "heartbeat" - "helm" - "here-document" - "here-string" - "heroku" - "hex" - "hexdump" - "hfs+" - "hibernate" - "hid" - "high-performance" - "highlighting" - "history" - "history-expansion" - "home" - "homebrew" - "hook" - "hostapd" - "hosting-services" - "hostname" - "hosts" - "hot-plug" - "hp-ux" - "hplip" - "htaccess" - "html" - "htop" - "http" - "http-logging" - "http-proxy" - "httpd" - "https" - "httrack" - "humor" - "hurd" - "hybrid-graphics" - "hydra" - "hyper-v" - "hypertext" - "hyperthreading" - "i18n" - "i3" - "i386" - "i915" - "ibm-unix-system-services" - "ibus" - "iceweasel" - "icewm" - "icmp" - "icons" - "id3" - "ide" - "ifconfig" - "ikiwiki" - "image-editor" - "image-manipulation" - "imagemagick" - "images" - "imap" - "indentation" - "indexing" - "inetd" - "info" - "init" - "init-script" - "init.d" - "initramfs" - "initrd" - "inkscape" - "inode" - "inotify" - "input" - "input-method" - "inputrc" - "install" - "integrity" - "intel" - "intel-gma" - "intel-graphics" - "intellij" - "interactive" - "interface" - "internet" - "interpreter" - "interrupt" - "io" - "io-redirection" - "ioctl" - "ionice" - "ios" - "iostat" - "iozone" - "ip" - "ip6tables" - "ipc" - "ipcop" - "ipfw" - "iphone" - "ipkg" - "ipod" - "ipp" - "iproute" - "ipsec" - "ipset" - "iptables" - "iptables-persistent" - "ipv4" - "ipv6" - "iraf" - "irc" - "ircd" - "irssi" - "isc-dhcpd" - "iscsi" - "iso" - "iterm" - "itunes" - "iwlwifi" - "jabber" - "jack" - "jails" - "java" - "javascript" - "jboss" - "jdk" - "jenkins" - "jfs" - "job-control" - "jobs" - "joe" - "join" - "journald" - "journaling" - "jpeg" - "json" - "kali-linux" - "kate" - "kde" - "kde-activities" - "kde4" - "kdm" - "kerberos" - "kermit" - "kernel" - "kernel-modules" - "kernel-panic" - "kexec" - "key-authentication" - "key-mapping" - "key-server" - "keyboard" - "keyboard-layout" - "keyboard-shortcuts" - "kgdb" - "kickstart" - "kile" - "kill" - "kiosk" - "kjournald" - "kmail" - "kmix" - "kms" - "knoppix" - "konqueror" - "konsole" - "kopete" - "ksh" - "kubuntu" - "kvm" - "kwallet" - "kwin" - "kwrite" - "lacp" - "lan" - "laptop" - "laptop-mode" - "large-files" - "last" - "latex" - "ld-flags" - "ldap" - "learning" - "less" - "lfs" - "lftp" - "libata" - "libcontainer" - "libedit" - "libnotify" - "libraries" - "libreoffice" - "libvirtd" - "licenses" - "liferay" - "lightdm" - "lighttpd" - "lightweight" - "lilo" - "limit" - "line-editor" - "linker" - "links" - "lintian" - "linux" - "linux-kernel" - "linux-libre" - "linux-mint" - "linux-virtual-server" - "lisp" - "live-usb" - "livecd" - "llvm" - "lmde" - "ln" - "load" - "load-average" - "load-balancing" - "locale" - "locate" - "lock" - "logger" - "login" - "login-manager" - "logind" - "logoff" - "logout" - "logrotate" - "logs" - "logwatch" - "loop-device" - "lost-found" - "lp" - "lpd" - "lpr" - "ls" - "lsb" - "lsm" - "lsof" - "ltrace" - "ltsp" - "lua" - "lubuntu" - "luks" - "lvm" - "lvm2" - "lvreduce" - "lvresize" - "lxc" - "lxde" - "lxterminal" - "lynx" - "m4" - "mac-address" - "macintosh" - "macro" - "maemo" - "mageia" - "magic-sysrq" - "mail-command" - "mail-transport-agent" - "mail-user-agent" - "maildir" - "maildrop" - "mailman" - "mailx" - "maintenance" - "make" - "makepkg" - "malware" - "man" - "management" - "mandriva" - "manjaro" - "mariadb" - "markdown" - "match" - "mate" - "math" - "matlab" - "maven" - "mawk" - "mbr" - "mc" - "mcelog" - "md" - "md5sum" - "mdadm" - "mdm" - "measure" - "media" - "mediaplayer" - "mediatomb" - "medit" - "meminfo" - "memory" - "memory-leaks" - "memory-management" - "mencoder" - "menu" - "mercurial" - "merge" - "message-passing" - "messaging" - "metacity" - "metasploit" - "metric" - "microcode" - "microphone" - "microsoft-word" - "midi" - "migration" - "mime-types" - "minecraft" - "mingw" - "minicom" - "minix" - "mips" - "mirror" - "mkdir" - "mkfs" - "mkinitcpio" - "mkisofs" - "mksh" - "mmap" - "mmv" - "mobile" - "mod-rewrite" - "modem" - "modprobe" - "mogrify" - "monit" - "monitoring" - "monitors" - "mono" - "moonlight" - "more" - "moreutils-parallel" - "mork" - "mosh" - "most" - "motd" - "motion" - "mount" - "mouse" - "move" - "mp3" - "mpd" - "mpi" - "mplayer" - "mpv" - "mrtg" - "msys" - "mta" - "mtp" - "multi-monitor" - "multi-touch" - "multiarch" - "multicast" - "multimedia" - "multipath-storage" - "multiple-machines" - "multiprocessor" - "multiseat" - "multitail" - "multithreading" - "multiuser" - "munin" - "music" - "music-player" - "mutt" - "mutter" - "mv" - "mysql" - "mysql-connection" - "nagios" - "named" - "namespace" - "nano" - "nas" - "nat" - "natural-language" - "nautilus" - "ncdu" - "ncftp" - "ncurses" - "ndiswrappers" - "nemo" - "nested-virtualization" - "netbios" - "netbook" - "netboot" - "netbsd" - "netcat" - "netcfg" - "netctl" - "netfilter" - "netpbm" - "netstat" - "network-interface" - "network-namespaces" - "networkcard" - "networking" - "networkmanager" - "newlines" - "nexenta" - "nfs" - "nginx" - "nice" - "nis" - "nixos" - "nmap" - "nmcli" - "node.js" - "nohup" - "nommu" - "non-gnu" - "non-interactive" - "not-root-user" - "notes" - "notifications" - "nouveau" - "npm" - "nrpe" - "nslookup" - "nsswitch" - "ntfs" - "ntfs-3g" - "ntp" - "ntpd" - "null" - "numa" - "numbering" - "numeric-data" - "nvi" - "nvidia" - "nx" - "nxt" - "ocr" - "od" - "ogg" - "oh-my-zsh" - "okular" - "open-files" - "openbox" - "openbsd" - "openbsd-httpd" - "opencv" - "openelec" - "opengl" - "openindiana" - "openldap" - "openoffice" - "openrc" - "openserver" - "opensolaris" - "opensource" - "opensource-projects" - "openssh" - "openssl" - "openstack" - "openstreetmap" - "opensuse" - "openswan" - "openvms" - "openvpn" - "openvz" - "openwrt" - "optimization" - "options" - "oracle-database" - "oracle-linux" - "oracle-vm-server" - "org-mode" - "os390" - "oss" - "osx" - "osx-finder" - "out-of-memory" - "output" - "overlayfs" - "ovirt" - "owshell" - "pacemaker" - "package-management" - "packagekit" - "packages" - "packaging" - "packet" - "packet-analyzer" - "pacman" - "pae" - "pager" - "pam" - "pandoc" - "panel" - "pantheon" - "parabola" - "parallel" - "parallel-port" - "parallelism" - "parallels" - "parameter" - "parted" - "parted-magic" - "partimage" - "partition" - "pash" - "passwd" - "password" - "paste" - "pata" - "patch" - "path" - "patterns" - "pax" - "pc-bsd" - "pcap" - "pci" - "pcmanfm" - "pcregrep" - "pdf" - "pdftk" - "pdsh" - "pecl" - "perf" - "perf-event" - "performance" - "perl" - "permissions" - "persistence" - "petalinux" - "pf" - "pfsense" - "pgp" - "pgrep" - "php" - "php5" - "phpmyadmin" - "pid" - "pidfile" - "pidgin" - "pidof" - "ping" - "pip" - "pipe" - "pkg-config" - "pkgsrc" - "plan9" - "plasma" - "platform-lsf" - "plesk" - "plotting" - "plugin" - "plymouth" - "pm-utils" - "pnfs" - "png" - "policykit" - "polipo" - "poodle" - "port-forwarding" - "portability" - "portable" - "posix" - "postfix" - "postgresql" - "postscript" - "power-management" - "powerpc" - "powertop" - "ppa" - "ppd" - "ppp" - "pppd" - "pptp" - "preseed" - "print" - "printer" - "printf" - "printing" - "priority" - "privacy" - "private-network" - "privileges" - "privoxy" - "proc" - "process" - "process-groups" - "process-management" - "process-substitution" - "processes" - "procmail" - "productivity" - "profile" - "profiling" - "proftpd" - "programming" - "programs" - "progress-information" - "prompt" - "proprietary-drivers" - "protocols" - "proxmox" - "proxy" - "proxychains" - "ps" - "ps2" - "psad" - "pty" - "public-key-authentication" - "pulseaudio" - "puppet" - "puppy-linux" - "pure-ftpd" - "pushd" - "putty" - "puttygen" - "pv" - "pvr" - "pwd" - "pxe" - "pyajam" - "python" - "python3" - "qemu" - "qmail" - "qnx" - "qos" - "qt" - "qt4" - "qtcreator" - "qtile" - "quicktime" - "quilt" - "quota" - "quoting" - "r" - "radeon" - "radio" - "radius" - "raid" - "raid0" - "raid1" - "raid5" - "rake" - "ram" - "ramdisk" - "random" - "ranger" - "rapidio" - "rar" - "rasbian" - "raspberry-pi" - "raspbian" - "raspbmc" - "ratpoison" - "razor-qt" - "rc" - "rc.d" - "rcp" - "rdesktop" - "rdiff-backup" - "read" - "read-write" - "readline" - "readonly" - "real-time" - "realtek" - "reboot" - "recoll" - "recording" - "recursive" - "red5-server" - "redmine" - "redundancy" - "reference" - "refind" - "refit" - "regular-expression" - "reinstall" - "reiser" - "reiserfs" - "remind" - "remmina" - "remnux" - "remote" - "remote-control" - "remote-desktop" - "remote-management" - "removable-storage" - "rename" - "replace" - "replication" - "repository" - "reprepro" - "reptyr" - "rescue" - "resize2fs" - "resolution" - "resolvconf" - "resources" - "restore" - "restricted-shell" - "return-status" - "rev" - "reverse-engineering" - "rewrite" - "rhel" - "rhev" - "rhythmbox" - "right-to-left" - "ripping" - "rm" - "rmail" - "rndc" - "roff" - "rolling-release" - "root" - "root-filesystem" - "route" - "router" - "routing" - "rpm" - "rpmbuild" - "rpmlint" - "rrdtool" - "rsh" - "rsnapshot" - "rspec" - "rss-aggregator" - "rsync" - "rsyslog" - "rtorrent" - "rtos" - "ruby" - "run-dialog" - "runit" - "runlevel" - "rvm" - "rxvt" - "s-lang" - "s3fs" - "s3ql" - "sabayon" - "safecopy" - "safety" - "sakura" - "samba" - "samba4" - "samsung" - "sandbox" - "sane" - "sansa" - "sar" - "sasl" - "sata" - "sawfish" - "scanner" - "scapy" - "scheduling" - "schroot" - "scientific-linux" - "scim" - "scite" - "sco" - "scp" - "screen" - "screen-energy-saving" - "screen-lock" - "screencast" - "screencasting" - "screensaver" - "screenshot" - "scripting" - "scrollback" - "scrolling" - "scrot" - "scsi" - "sd-card" - "seahorse" - "search" - "secure-boot" - "security" - "sed" - "segmentation-fault" - "select" - "selection" - "selenium" - "selinux" - "semaphore" - "sendmail" - "sensors" - "seq" - "serial-console" - "serial-port" - "servicemenu" - "services" - "session" - "setcap" - "setgid" - "settings" - "setuid" - "setuptools" - "sfdisk" - "sftp" - "sha256sum" - "shadow" - "shared-disk" - "shared-folders" - "shared-library" - "shared-memory" - "shebang" - "shell" - "shell-builtin" - "shell-script" - "shellshock" - "shopt" - "shortcuts" - "showkey" - "shred" - "shutdown" - "signals" - "signature" - "sigtrap" - "sip" - "sipwitch" - "size" - "skype" - "slackbuilds" - "slackware" - "slash" - "sleep" - "sles" - "slingshot-launcher" - "slitaz" - "slock" - "slurm" - "small-distribution" - "smart" - "smartcard" - "smartctl" - "smb" - "smbios" - "sme-server" - "smf" - "smp" - "smtp" - "snapshot" - "snmp" - "snort" - "socat" - "socket" - "socks" - "software-distribution" - "software-installation" - "software-raid" - "software-rec" - "solaris" - "sort" - "source" - "source-code" - "source-highlight" - "sox" - "spacewalk" - "spamassasin" - "sparse-files" - "special-characters" - "speech-recognition" - "spell-checking" - "spice" - "spinlock" - "split" - "spreadsheet" - "sql" - "sqlite" - "sqlserver" - "squashfs" - "squid" - "ssd" - "ssd-hdd-hybrid" - "ssh" - "ssh-agent" - "ssh-config" - "ssh-keygen" - "ssh-tunneling" - "ssh2" - "sshd" - "sshfs" - "ssl" - "ssmtp" - "sssd" - "stability" - "stack" - "standard" - "start-stop-daemon" - "startproc" - "startup" - "startx" - "stat" - "static-analysis" - "static-linking" - "statistics" - "stderr" - "stdin" - "stdio" - "stdout" - "steam" - "storage" - "stow" - "strace" - "streaming" - "streams" - "string" - "strip" - "stty" - "stunnel" - "su" - "subshell" - "subversion" - "sudo" - "sudoedit" - "superblock" - "supervisord" - "support-cycle" - "surface" - "suse" - "susestudio" - "suspend" - "svg" - "swap" - "swf" - "symfony" - "symlink" - "synapse" - "synaptic" - "synchronization" - "synclient" - "synergy" - "syntax-highlighting" - "sysctl" - "sysfs" - "syslinux" - "syslog" - "syslog-ng" - "sysstat" - "system-calls" - "system-information" - "system-installation" - "system-programming" - "system-recovery" - "system-v" - "systemd" - "systemd-networkd" - "sysvinit" - "table" - "tablet" - "tabs" - "tabulation" - "tacacs+" - "tacas" - "tagging" - "tail" - "tails-os" - "tap" - "tape" - "tar" - "taskwarrior" - "tc" - "tcl" - "tcp" - "tcp-ip" - "tcp-wrappers" - "tcpdump" - "tcsh" - "teamspeak" - "teamviewer" - "tee" - "telephony" - "telnet" - "temperature" - "tendenci" - "termcap" - "terminal" - "terminal-emulator" - "terminal-multiplexer" - "terminal.app" - "terminator" - "terminfo" - "terminology" - "test" - "testdisk" - "testing" - "tethering" - "texstudio" - "text" - "text-formatting" - "text-processing" - "text-to-speech" - "text-user-interface" - "tftp" - "thc-hydra" - "theme" - "thinkpad" - "thompson-shell" - "thread" - "thumbnails" - "thunar" - "thunar-volman" - "thunderbird" - "tilda" - "tiling-wm" - "time" - "timeout" - "timestamps" - "timezone" - "tinycore" - "tkinter" - "tls" - "tmp" - "tmpfs" - "tmux" - "tomcat" - "toolchain" - "top" - "tor" - "torque" - "toshiba" - "touch" - "touch-screen" - "touchpad" - "tpm" - "tput" - "tr" - "trac" - "trace" - "traceroute" - "traffic" - "transmission" - "trap" - "trash" - "tray" - "tree" - "trim" - "tripwire" - "trisquel" - "troubleshooting" - "tru64" - "truecrypt" - "truss" - "tshark" - "tsocks" - "ttf" - "tty" - "tuning" - "tunneling" - "turnkey" - "twinview" - "twm" - "typescript" - "typeset" - "typing-break" - "u-boot" - "ubiquity" - "ubuntu" - "uclinux" - "ude" - "udev" - "udf" - "udhcpc" - "udisks" - "udp" - "uefi" - "ufs" - "ufw" - "uhttpd" - "ulimit" - "umask" - "unicode" - "uninstall" - "uninterruptible-sleep" - "unionfs" - "uniq" - "unison" - "units" - "unity" - "unix" - "unix-philosophy" - "unmounting" - "untagged" - "updatedb" - "upgrade" - "upnp" - "ups" - "upstart" - "uptime" - "url" - "urxvt" - "usability" - "usb" - "usb-audio" - "usb-drive" - "usb-otg" - "usenet" - "user-default" - "user-input" - "user-interface" - "user-mode-linux" - "useradd" - "userns" - "users" - "util-linux" - "utilities" - "uucp" - "uuid" - "uwsgi" - "v4l" - "vagrant" - "variable" - "variable-substitution" - "varnish" - "vax" - "vcards" - "verification" - "version" - "version-control" - "vfat" - "vfork" - "vfs" - "vga-cable" - "vhost" - "vi" - "vi-mode" - "video" - "video-editing" - "video-encoding" - "video-subtitles" - "viewport" - "vifm" - "vim" - "vim-navigation" - "vimdiff" - "vimrc" - "virsh" - "virt-manager" - "virtual-desktop" - "virtual-host" - "virtual-machine" - "virtual-memory" - "virtualbox" - "virtualization" - "vlan" - "vlc" - "vmware" - "vnc" - "voip" - "volume" - "vorbis" - "vpn" - "vps" - "vsftp" - "vsftpd" - "vulnerability" - "vxworks" - "w" - "w3m" - "wake-on-lan" - "wallpaper" - "watch" - "watchdog" - "wav" - "wayland" - "wc" - "web" - "webalizer" - "webdav" - "webkit" - "weblogic" - "webmail" - "webmin" - "webos" - "webserver" - "weechat" - "wget" - "which" - "whiptail" - "whitespace" - "who" - "whoami" - "whois" - "whonix" - "wicd" - "wifi" - "wifi-hotspot" - "wiki" - "wildcards" - "winbind" - "window" - "window-decorations" - "window-geometry" - "window-maker" - "window-management" - "window-manager" - "window-switching" - "window-title" - "windows" - "wine" - "wireshark" - "wlan" - "wmctrl" - "word-processing" - "wordpress" - "workspaces" - "wpa" - "wpa-supplicant" - "wpa2-eap" - "write" - "wtmp" - "wubi" - "wvdial" - "www" - "x-resources" - "x-server" - "x11" - "x509" - "x86" - "xampp" - "xargs" - "xattr" - "xauth" - "xautolock" - "xbindkeys" - "xbmc" - "xcape" - "xcb" - "xchat" - "xclip" - "xcursor" - "xdg" - "xdg-open" - "xdmcp" - "xdotool" - "xemacs" - "xen" - "xenomai" - "xephyr" - "xfce" - "xfce4-terminal" - "xforwarding" - "xfreerdp" - "xfs" - "xft" - "xinerama" - "xinetd" - "xinit" - "xinput" - "xkb" - "xl2tpd" - "xlc" - "xming" - "xml" - "xmllint" - "xmlstarlet" - "xmms2" - "xmodmap" - "xmonad" - "xmp" - "xmpp" - "xorg" - "xpra" - "xrandr" - "xscreensaver" - "xsel" - "xte" - "xterm" - "xubuntu" - "xvfb" - "xvideo" - "xxd" - "xymon" - "xz" - "yaourt" - "yast" - "yate" - "yocto" - "youtube" - "youtube-dl" - "yum" - "zathura" - "zeitgeist" - "zenity" - "zentyal-linux" - "zfs" - "zip" - "zle" - "zombie-process" - "zorin" - "zram" - "zsh" - "zypper") diff --git a/data/tags/ux.el b/data/tags/ux.el deleted file mode 100644 index 5d77c3e..0000000 --- a/data/tags/ux.el +++ /dev/null @@ -1,863 +0,0 @@ -("ab-testing" - "accessibility" - "accordion" - "accounts" - "accuracy" - "action" - "actions" - "activity" - "activity-feed" - "adaptive-content" - "adaptive-design" - "addresses" - "admin" - "administration" - "adult" - "advanced" - "advancedsearch" - "advertisement" - "aesthetics" - "affordance" - "aggregation" - "agile" - "agile-development" - "ajax" - "alerts" - "alignment" - "alternatives" - "analytics" - "anchors" - "android" - "animation" - "anti-patterns" - "aoda" - "api" - "app" - "apple" - "application-state" - "applications" - "architecture" - "architecure" - "aspect-ratio" - "association" - "asynchronous" - "audience" - "audio" - "audio-interface" - "augmented-reality" - "authentication" - "auto-correct" - "autocomplete" - "autofocus" - "automation" - "aviation" - "axis" - "axure" - "b2b" - "back" - "back-button" - "background" - "background-images" - "badge" - "banking" - "behavior-design" - "behavioral-economics" - "best-practice" - "beta" - "bi-directional" - "bias" - "billing" - "blog" - "booking" - "booking-software" - "booking-system" - "bookmarklet" - "books" - "bootstrap" - "branding" - "breadcrumbs" - "browser" - "business-application" - "button" - "buttons" - "calendar" - "call-to-action" - "cancel" - "capitalization" - "captcha" - "card-sorting" - "cards" - "career" - "career-development" - "carousel" - "cars" - "case-studies" - "catalog" - "categories" - "categorization" - "censure" - "certification" - "changelog" - "changes" - "charts" - "chat" - "checkboxes" - "checkout" - "child" - "children" - "choices" - "chrome" - "click" - "click-path" - "client" - "close" - "cloud" - "cms" - "code" - "cognition" - "cognitive-load" - "collaboration" - "collapsible-panels" - "collapsing" - "color" - "color-blindness" - "color-combination" - "color-perception" - "color-scheme" - "colours" - "column" - "column-headers" - "combobox" - "command" - "command-line" - "comments" - "community" - "compare" - "comparison" - "component" - "concept" - "conferences" - "confirmation" - "connection" - "connectivity" - "consistency" - "constraints-indication" - "consultant" - "contact-us" - "content" - "content-audit" - "content-management" - "content-strategy" - "context-sensitive-help" - "contextual-menu" - "contrast" - "controlled-vocabulary" - "controls" - "conventions" - "conversion" - "conversion-rate" - "cookies" - "copy-paste" - "copyright" - "copywriting" - "countdown" - "counter" - "country" - "credit-cards" - "crm" - "cross-media" - "crowd-sourcing" - "css" - "culture" - "currency" - "cursor" - "custom-control" - "customer" - "customer-support" - "customisation" - "customizable" - "dark-patterns" - "dashboard" - "data" - "data-analysis" - "data-collection" - "data-entry" - "data-frequency" - "data-mapping" - "data-tables" - "data-tree" - "data-visualisation" - "dates" - "datetimepicker" - "default" - "delay" - "delete" - "deletion" - "deliverables" - "design" - "design-patterns" - "design-principles" - "design-process" - "design-theory" - "designing" - "desktop" - "desktop-application" - "device-rotation" - "diagram" - "diagramming" - "dialog" - "diary-studies" - "direct-manipulation" - "directory" - "disability" - "disable" - "discovery" - "displays" - "document" - "documentation" - "doors" - "download" - "drag-n-drop" - "drawer" - "drilldown" - "drop-down-list" - "dropdown" - "dynamic-ui" - "e-commerce" - "e-learning" - "easy" - "edit-in-place" - "editor" - "education" - "efficiency" - "email" - "embodied-agent" - "emotion" - "empty" - "end-user-training" - "engagement" - "enter-key" - "enterprise" - "environment" - "ergonomics" - "error-message" - "error-prevention" - "errors" - "ethics" - "ethnography" - "evangelizing-ux" - "examples" - "exit" - "experience" - "expert-review" - "exploration" - "export" - "eye-tracking" - "facebook" - "facebook-connect" - "faceted-search" - "failure" - "faq" - "features" - "feedback" - "fields" - "file-extension" - "file-input" - "files" - "filter" - "filtering" - "financial" - "finger" - "firefox" - "first-impression" - "fittslaw" - "fixed-header" - "fixed-height" - "flash" - "flashcards" - "flat-design" - "flipping" - "flow" - "flowcharts" - "fluid-layout" - "focus" - "focus-groups" - "folders" - "font" - "font-sizes" - "font-weight" - "footers" - "form" - "formatting" - "forms" - "forum" - "frontend-development" - "fullscreen" - "game-mechanics" - "games" - "gamification" - "gender" - "geolocation" - "gestures" - "glass" - "globalization" - "google" - "google+" - "google-glass" - "government" - "graceful-degradation" - "grammar" - "graphic-design" - "graphics" - "graphs" - "grid" - "grouped-list" - "gui" - "gui-design" - "guidance" - "guidelines" - "haptics" - "hardware" - "hash-tag" - "hci" - "hcir" - "header" - "health" - "heatmaps" - "help" - "heuristics" - "hidden" - "hierarchy" - "hig" - "high-volume" - "highlight" - "hints" - "hiring" - "history" - "homepage" - "honeypot-captcha" - "hotels" - "household" - "hover" - "html" - "html5" - "hud" - "human-eye" - "human-interface-guideline" - "hyperlinks" - "iconography" - "icons" - "idioms" - "image" - "image-format" - "incentives" - "indexing" - "indicator" - "industrial-design" - "infinite-scroll" - "info" - "info-visualisation" - "infographic" - "information" - "information-architecture" - "information-design" - "information-retrieval" - "inline-edit" - "input" - "input-fields" - "inspiration" - "installation" - "instructions" - "interaction" - "interaction-design" - "interactive-ui" - "interface" - "internationalisation" - "internationalization" - "interstitial" - "interview" - "intranet" - "intuition" - "intuitive" - "inventory" - "invoice" - "ios" - "ipad" - "iphone" - "iso-9241" - "javascript" - "jaws" - "jobs" - "journey-map" - "jquery" - "jquerymobile" - "kano-model" - "keyboard" - "keyboard-layout" - "keyboard-shortcuts" - "keypad" - "kiosk" - "kitchen" - "labeling" - "labels" - "landing-page" - "language" - "large-screen" - "layout" - "lean-ux" - "learnability" - "learning" - "legal" - "legibility" - "letter-case" - "library" - "light" - "lightbox" - "link" - "lists" - "listview" - "loading" - "localization" - "location" - "location-service" - "logging" - "logic" - "login" - "logos" - "logout" - "long" - "lookandfeel" - "mac-os-x" - "management" - "mandatory" - "many-options" - "map" - "map-ui" - "maps" - "marketing" - "markup" - "master-details" - "material-design" - "math" - "measuring" - "media-queries" - "mega-menu" - "memory" - "mental-models" - "menu" - "messagebox" - "messages" - "metaphor" - "methodology" - "metrics" - "metro" - "microcopy" - "minimalist" - "mircoformat" - "mobile" - "mobile-application" - "mobile-first" - "mobile-text-entry" - "mobile-web" - "mockup" - "modal-dialog" - "modal-view" - "modal-windows" - "moderation" - "monetization" - "money" - "monospaced-font" - "motivation" - "mouse" - "multi-channel" - "multi-column" - "multi-selection" - "multi-step" - "multiple-data" - "multiple-devices" - "multiple-products" - "multiple-screens" - "multitasking" - "music" - "names" - "naming" - "native-app" - "natural-language" - "navigation" - "new-experience" - "newsletter" - "no-data-available" - "notification" - "novice-users" - "nps" - "nudges" - "nui" - "numbers" - "objects" - "off-canvas" - "office" - "older-users" - "onboarding" - "onepager" - "online-banking" - "open-source" - "openid" - "operating-systems" - "optimisation" - "options" - "order" - "ordering" - "organisations" - "organization" - "original" - "output" - "overflow" - "overlay" - "packaging" - "page" - "page-control" - "page-layout" - "pagination" - "panel" - "panning" - "paper" - "parallax" - "parent" - "password" - "password-reminder" - "pattern-library" - "pattern-recognition" - "patterns" - "payment" - "pdf" - "people" - "perception" - "performance" - "personalisation" - "personas" - "phone-numbers" - "physical" - "placeholder" - "placement" - "planning" - "point-of-sale" - "poll" - "popup" - "portfolio" - "position" - "predictive-text" - "preloader" - "presentation" - "preview" - "price-range" - "pricing" - "print" - "printing" - "privacy" - "process" - "processes" - "product-design" - "product-management" - "product-placement" - "professionalism" - "profile" - "programming" - "progress" - "progress-bar" - "progressive-disclosure" - "progressive-reduction" - "project" - "prompt" - "properties" - "prototype" - "prototyping" - "psychology" - "purchase" - "pyschology" - "qr-codes" - "qualitative-analysis" - "quality-assurance" - "quantitative-analysis" - "question-answer" - "quiz" - "radial-menu" - "radio-buttons" - "range" - "ranking" - "ratings" - "readability" - "real-time-updates" - "rearranging" - "recommendations" - "recruitment" - "redesign" - "redirect" - "redo" - "refresh" - "registration" - "relations" - "reliability" - "remember-me" - "remote-control" - "rendering" - "reports" - "representation" - "reputation" - "requirements" - "research" - "reset" - "resizing" - "resources" - "response-time" - "responsive" - "responsive-design" - "revisioning" - "ribbon" - "right-click" - "roles" - "rtl" - "rule-of-thumb" - "safety" - "sales-techniques" - "sankey" - "save" - "scaling" - "scenarios" - "scope" - "screen-orientation" - "screen-reader" - "screen-real-estate" - "screen-resolution" - "screenmap" - "scrollbars" - "scrolling" - "search" - "search-results" - "search-suggestion" - "security" - "segmented" - "select" - "selection" - "selling-ux" - "semantics" - "semiotics" - "sensitivity" - "seo" - "serious-game" - "server-errors" - "service-design" - "settings" - "shape" - "sharing" - "shipping" - "shopping-cart" - "shorthand" - "sidebar" - "sign-in" - "signifier" - "signs" - "signup-signon" - "silverlight" - "simple" - "simplicity" - "single" - "single-sign-on" - "site-objectives" - "sitemap" - "size" - "sketching" - "skeuomorphism" - "skills" - "skinning" - "sliders" - "slideshow" - "small" - "smartphone" - "sms" - "social" - "social-interfaces" - "social-media" - "software" - "software-engineering" - "sort" - "sorting" - "sound" - "sound-effects" - "space" - "space-bar" - "space-constraints" - "spacing" - "spam" - "spatial-memory" - "special-characters" - "speech-input" - "speed" - "spell-checking" - "spinner" - "splash-screen" - "stackexchange" - "stakeholder-management" - "standards" - "states" - "statistics" - "status" - "storyboard" - "storytelling" - "stream" - "structure" - "style" - "style-gude" - "style-guide" - "submit" - "surveys" - "sus" - "swipe" - "switch" - "symbols" - "system-response" - "tab" - "tab-bar" - "tabindex" - "tables" - "tablet" - "tabs" - "tag-cloud" - "tag-hierarchy" - "tagging" - "tags" - "tap" - "target-users" - "task-completion" - "task-flow" - "taxonomy" - "team" - "team-building" - "telephone" - "telepone" - "templates" - "terminology" - "terms-of-service" - "testimonials" - "text" - "text-editor" - "textbox" - "themes" - "thumb" - "tiles" - "time" - "time-zones" - "timeline" - "timeout" - "title" - "toggle" - "tone-of-voice" - "toolbar" - "tools" - "tooltips" - "touch" - "touch-screen" - "traffic" - "training" - "transactions" - "transit" - "transitions" - "transparency" - "transport" - "travel" - "tree" - "trend" - "trial-period" - "truncating" - "truncation" - "trust" - "tutorial" - "twitter" - "type" - "typing" - "typography" - "ucd" - "under-construction" - "undo" - "updating" - "upload" - "uploading" - "upsell" - "urinal" - "urls" - "usability" - "usability-engineering" - "usability-study" - "usability-testing" - "use-cases" - "user" - "user-attention" - "user-awareness" - "user-behavior" - "user-centered-design" - "user-communication" - "user-engagement" - "user-expectation" - "user-feedback" - "user-generated-content" - "user-habit" - "user-journey" - "user-perception" - "user-preferences" - "user-research" - "user-story" - "user-testing" - "user-tracking" - "username" - "users" - "utility" - "ux-designer" - "ux-field" - "ux-myth" - "validation" - "value" - "verb" - "verification" - "version-control" - "versioning" - "video" - "viewer" - "viewport" - "viewport-orientation" - "virtual-reality" - "visibility" - "visitors" - "visual-cues" - "visual-design" - "visual-vocabulary" - "visualization" - "voice-browser" - "voting" - "vouchers" - "waiting" - "walkthrough" - "warnings" - "wcag" - "wearables" - "web" - "web-app" - "website-design" - "white-space" - "wifi" - "window" - "window-management" - "windows-8" - "windows-os" - "windows-phone-7" - "winforms" - "wireframe" - "wireframing" - "wizard" - "wording" - "wordpress" - "workflow" - "workshop" - "wpf" - "wrapping" - "writing-direction" - "wysiwyg" - "zooming") diff --git a/data/tags/video.el b/data/tags/video.el deleted file mode 100644 index e6f0ab9..0000000 --- a/data/tags/video.el +++ /dev/null @@ -1,228 +0,0 @@ -("10-bit" - "3d" - "ableton-live" - "action-cam" - "adapter" - "adobe" - "adobe-premiere" - "after-effects" - "after-effects-expressions" - "analog" - "animation" - "animation-rendering" - "aspect" - "audio" - "audio-cd" - "audio-quality" - "audio-recording" - "audition" - "automation" - "avchd" - "avconv" - "avid" - "blender" - "bluescreen" - "bluray" - "bmcc" - "boom-pole" - "broadcasting" - "budget" - "cable" - "calculation" - "camcorder" - "camera" - "canon" - "capturing" - "cc-2014" - "chromakey" - "cinema4d" - "cleaning" - "clipping" - "codec" - "color-correction" - "composing" - "compression" - "compression-data" - "compression-dynamics" - "connectors" - "conversion" - "copyright" - "cs4" - "cs5" - "cs6" - "davinci-resolve" - "delay" - "depth-of-field" - "depth-of-focus" - "digital" - "digital-recording" - "distortion" - "diy" - "dslr" - "editing" - "effects" - "electronics" - "encoding" - "encore" - "engineering" - "equalization" - "ffmpeg" - "field-recording" - "file-formats" - "filming" - "filter" - "final-cut-express" - "final-cut-pro" - "final-cut-pro-x" - "firewire" - "focus" - "formats" - "framerate" - "freeware" - "full-hd" - "gear" - "greenscreen" - "grip" - "h.264" - "h.265" - "handbrake" - "hardware" - "hdcp" - "hdmi" - "home-studio" - "image-sensors" - "imovie" - "intermediate" - "ios" - "ipad" - "iphone" - "javascript" - "keyframes" - "laptop" - "latency" - "learning-resources" - "legal" - "lenses" - "libav" - "libx264" - "lighting" - "linux" - "live" - "live-performance" - "live-recording" - "m4v" - "mac" - "magic-lantern" - "matroska" - "maya" - "melt" - "memory" - "microphone" - "mixer" - "mixing" - "mkv" - "mlt-framework" - "monitoring" - "monitors" - "motion" - "mp4" - "mpeg" - "multi-cam" - "multi-camera" - "music" - "nikon" - "noise" - "noise-reduction" - "nuke" - "osx" - "output" - "pdf" - "performance" - "photos" - "playback" - "playlist" - "plugins" - "podcast" - "post-production" - "premiere" - "premiere-elements" - "presentation" - "presets" - "preview" - "producing" - "production" - "programming" - "projector" - "prores" - "quality" - "quartz-composer" - "quicktime" - "rack-focus" - "radio" - "recommendation" - "recording" - "red" - "replace-clips" - "revisions" - "rotate" - "rtmp" - "sampling-frequency" - "scale" - "screen-casting" - "sd-card" - "sdi" - "sequence-settings" - "setup" - "shooting" - "shutter-speed" - "signal-processing" - "slowmotion" - "software" - "software-recommendation" - "sony-vegas" - "special-effects" - "specifications" - "ssd" - "stabilisation" - "standard-zoom" - "standards-converter" - "stereo" - "stop-motion" - "storage" - "streaming" - "studio" - "subtitles" - "sync" - "tamron" - "tape" - "terminology" - "theater" - "thunderbolt" - "time-lapse" - "timebase" - "timecode" - "tracking" - "tracks" - "transcoding" - "transitions" - "tutorial" - "twixtor" - "untagged" - "usb" - "version-control" - "video" - "video-capture" - "video-editor" - "video-game" - "video-quality" - "video-recording" - "video-standards" - "virtualdub" - "vocal" - "webvideos" - "windows" - "windows-movie-maker" - "wireless" - "workflow" - "x264" - "youtube") diff --git a/data/tags/webapps.el b/data/tags/webapps.el deleted file mode 100644 index bf9ccfe..0000000 --- a/data/tags/webapps.el +++ /dev/null @@ -1,938 +0,0 @@ -("37signals" - "3d" - "3d-objects" - "500px" - "about-me" - "access-control" - "accessibility" - "account-management" - "address" - "adoramapix" - "ads" - "adverts" - "aggregation" - "ajax" - "album" - "alexa" - "amazon" - "amazon-cloud-drive" - "amazon-ec2" - "amazon-instant" - "amazon-music" - "amazon-s3" - "amazon-web-services" - "analytics" - "ancestry.com" - "android" - "animations" - "annotations" - "anonymous" - "anti-spam" - "any.do" - "aol.com" - "api" - "apple" - "apple-notes" - "archive" - "archive.org" - "archiving" - "arxiv" - "asana" - "asp.net" - "astrid" - "atlassian" - "atom" - "attachment" - "audio" - "authentication" - "auto-awesome" - "auto-forwarding" - "automation" - "avatar" - "avi" - "azure" - "background" - "backup" - "badoo" - "bandwidth" - "bank" - "banner" - "barcode" - "barisco" - "basecamp" - "bbc" - "beeminder" - "bing" - "bing-maps" - "birthday" - "bit.ly" - "bitbucket" - "bittorrent" - "blacklist" - "blip.tv" - "block" - "blocking-access" - "blog" - "blogengine.net" - "blogger" - "blogspot" - "bookmarklet" - "bookmarklet-rec" - "bookmarks" - "books" - "bot" - "box" - "boxee" - "browser" - "browser-addons" - "buffer" - "bug-trackers" - "bulk-download" - "bulk-email" - "bundle" - "business" - "cache" - "cached-webpages" - "calculator" - "calendar" - "captcha" - "captions" - "channel" - "charts" - "chat" - "chrome-bookmarks" - "chrome-web-store" - "citymapper" - "clone" - "cloud" - "cloud9" - "cms" - "code" - "code-conversion" - "codecademy" - "codepage" - "codeplex" - "coderbyte" - "coderwall" - "cognito-forms" - "collaboration" - "collection" - "comic" - "command-line" - "comments" - "commons" - "communication" - "community" - "comparison" - "compression" - "conditional-formatting" - "conferencing" - "configuration" - "confirmations" - "confluence" - "connections" - "contact-address" - "contacts" - "contacts-group" - "continuous-integration" - "conversations" - "conversion" - "converter" - "cookies" - "copy-paste" - "copyright" - "corporate-network" - "coursesites" - "cpanel" - "craigslist" - "create" - "creation-date" - "credentials" - "crm" - "css" - "csv" - "custom-map" - "customer-support" - "customization" - "dailymile" - "dailymotion" - "data" - "data-integrity" - "data-liberation" - "data-validation" - "data-visualization" - "database" - "date" - "date-parsing" - "deduplication" - "deezer" - "defaults" - "definition" - "delay-time" - "delete" - "delicious" - "design" - "desktop" - "deviant-art" - "diagrams" - "diaspora" - "dictionary" - "diffs" - "digg" - "digital-signature" - "diigo" - "direct-message" - "directory-listing" - "disqus" - "dns" - "document-management" - "documentation" - "documents" - "dokuwiki" - "domain" - "domain-name" - "doodle.com" - "doubleclick" - "download" - "drag-and-drop" - "draw.io" - "drawing" - "dropbox" - "dropbox-photos" - "drupal" - "duckduckgo" - "duplicate" - "dvds" - "ebay" - "ebooks" - "ecommerce" - "editing" - "editors" - "education" - "email" - "email-bounces" - "email-client" - "email-forwarding" - "email-management" - "email-rules" - "email-signature" - "email-threads" - "embed" - "embedded" - "encryption" - "event-planning" - "events" - "evernote" - "exchange-server" - "expand" - "expense" - "experts-exchange" - "export" - "extensions" - "facebook" - "facebook-account" - "facebook-ads" - "facebook-apps" - "facebook-chat" - "facebook-developers" - "facebook-events" - "facebook-friend-request" - "facebook-games" - "facebook-graph-search" - "facebook-groups" - "facebook-insights" - "facebook-integration" - "facebook-like" - "facebook-lookback" - "facebook-messages" - "facebook-pages" - "facebook-photos" - "facebook-profile" - "facebook-questions" - "facebook-search" - "facebook-subscriptions" - "facebook-tagging" - "facebook-tags" - "facebook-timeline" - "facebook-username" - "facial-recognition" - "faq" - "favorites" - "fax" - "features" - "feedburner" - "feedly" - "feeds" - "ffffound.com" - "file-conversion" - "file-exchange" - "file-management" - "file-send" - "file-sharing" - "file-size" - "file-transfer" - "files" - "films" - "filter" - "finance" - "firefox" - "firefox-extensions" - "firewall" - "fitbit" - "fitocracy" - "flash" - "flashcards" - "flattr" - "flickr" - "flipboard" - "flippa" - "fogbugz" - "follow" - "followers" - "font" - "foodspotting" - "formatting" - "formulas" - "forum" - "forums" - "forward" - "forwarding" - "foursquare" - "friend-list" - "friendconnect" - "friendfeed" - "friends" - "full-screen" - "gadget" - "games" - "geeklist" - "genealogy" - "generate" - "geni.com" - "geocoding" - "geolocation" - "getglue" - "git" - "github" - "github-issues" - "github-pages" - "gmail" - "gmail-attachments" - "gmail-categories" - "gmail-chat" - "gmail-contacts" - "gmail-conversations" - "gmail-filters" - "gmail-imap" - "gmail-labels" - "gmail-search" - "gmx" - "gojee" - "goo.gl" - "goodreads" - "google" - "google-account" - "google-account-chooser" - "google-account-profile" - "google-adsense" - "google-adwords" - "google-alerts" - "google-analytics" - "google-answers" - "google-api" - "google-app-engine" - "google-apps" - "google-apps-email" - "google-apps-for-work" - "google-apps-script" - "google-apps-sync" - "google-authenticator" - "google-bookmarks" - "google-books" - "google-calculator" - "google-calendar" - "google-calendar-reminders" - "google-chart-api" - "google-checkout" - "google-chrome" - "google-chrome-extensions" - "google-code" - "google-contacts" - "google-custom-search" - "google-desktop" - "google-developer-console" - "google-dictionary" - "google-documents" - "google-drawing" - "google-drive" - "google-earth" - "google-feedback" - "google-forms" - "google-fusion-tables" - "google-groups" - "google-image-search" - "google-insights" - "google-instant" - "google-keep" - "google-labs" - "google-latitude" - "google-local" - "google-maps" - "google-movies" - "google-music" - "google-news" - "google-notebook" - "google-now" - "google-photos" - "google-places" - "google-play" - "google-play-music" - "google-play-store" - "google-plus" - "google-plus-1" - "google-plus-circles" - "google-plus-communities" - "google-plus-events" - "google-plus-games" - "google-plus-hangouts" - "google-plus-pages" - "google-plus-photos" - "google-presentations" - "google-reader" - "google-scholar" - "google-scribe" - "google-search" - "google-shopping" - "google-sites" - "google-spreadsheets" - "google-survey" - "google-takeout" - "google-talk" - "google-tasks" - "google-toolbar" - "google-transit" - "google-translate" - "google-trends" - "google-visualization" - "google-voice" - "google-wallet" - "google-wave" - "gowalla" - "gps" - "graph" - "graphics" - "gravatar" - "greasemonkey" - "grooveshark" - "groupon" - "gtd" - "guides.co" - "hack" - "hacked" - "hackernews" - "hackerrank.com" - "hacking" - "harvest" - "hd" - "headers" - "health" - "hidden-features" - "hide" - "highlight" - "highrise" - "hipchat" - "history" - "hootsuite" - "hosted" - "hosting" - "hotkey" - "household" - "housing-apps" - "html" - "html5" - "http-404" - "https" - "hulu" - "hyperlinks" - "ical" - "icloud" - "icons" - "identi-ca" - "identity" - "if-this-then-that" - "iframe" - "igoogle" - "image-manipulation" - "image-storage" - "images" - "imap" - "imdb" - "imgur" - "import" - "inbox-by-gmail" - "indexing" - "information-management" - "instagram" - "instant-messaging" - "instapaper" - "integration" - "intel" - "international" - "internet" - "internet-explorer" - "internet-explorer-8" - "internet-radio" - "inventory" - "invite" - "invoicing" - "ios" - "ip-address" - "ip-addresses" - "ipad" - "iphone" - "iplayer" - "ipod-touch" - "irc" - "issue-tracking" - "itunes" - "jabber" - "javascript" - "jira" - "jobs" - "jsfiddle" - "keeeb" - "keyboard-shortcuts" - "keyword" - "kickstarter" - "kindle" - "kiwi-irc" - "kml" - "labels" - "language-learning" - "last.fm" - "lastpass" - "latex" - "legal" - "letterboxd" - "library" - "limit" - "linkedin" - "linkedin-groups" - "links" - "linux" - "linuxfr.org" - "list" - "litmus" - "livejournal" - "localization" - "location" - "location-specific" - "logging" - "login" - "logout" - "loop" - "lyrics" - "mac" - "mail-merge" - "mailbox" - "mailchimp" - "mailing-list" - "mailto" - "maintenance" - "malware" - "management" - "management-system" - "maps" - "markdown" - "marketing" - "mashup" - "math" - "measurements" - "media" - "media-player" - "mediawiki" - "medium" - "meebo" - "meetup" - "mega" - "mendeley" - "messages" - "messaging" - "metacafe" - "metacpan" - "microsoft" - "microsoft-excel" - "microsoft-excel-live" - "microsoft-word" - "migrate-data" - "migration" - "mind-mapping" - "mint.com" - "mitro" - "mobile" - "mobileme" - "model" - "money" - "monitoring" - "movies" - "mp3" - "ms-money" - "multi-factor-auth" - "multiple-sign-in" - "music" - "music-streaming" - "mute" - "myspace" - "name" - "naukri" - "navigation" - "netflix" - "netvibes" - "news" - "news-feed" - "newsgroups" - "newsletter" - "ning" - "nntp" - "notes" - "notifications" - "oauth" - "ocr" - "odesk" - "office" - "office-365" - "office-web-apps" - "offline" - "okcupid" - "onedrive" - "onenote" - "online-backup" - "online-shop" - "online-storage" - "open-source" - "openid" - "openstreetmap" - "orangedox" - "order" - "orkut" - "osx" - "outliner" - "outlook" - "outlook-web-access" - "outlook.com" - "outlook.com-calendar" - "owncloud" - "pandora" - "panoramio" - "parental-controls" - "password-recovery" - "passwords" - "paste" - "pastebin" - "payment" - "paypal" - "pdf" - "performance" - "permissions" - "personal-finance" - "personal-site" - "personal-wiki" - "phishing" - "phone" - "phone-number" - "photo-sharing" - "photo-tagging" - "photobucket" - "photos" - "piazza" - "picasa" - "pictures" - "pinboard" - "ping-o-matic" - "pinterest" - "pivotal-tracker" - "player" - "playlist" - "plotting" - "plugin" - "plunker" - "pocket" - "podcasts" - "polls" - "pop3" - "post" - "posterous" - "posting" - "postini" - "prezi" - "pricing" - "prime-instant-video" - "printing" - "priority-inbox" - "privacy" - "private-network" - "productivity" - "profile" - "profile-picture" - "project" - "project-management" - "proxy" - "publicize" - "publicly-visible" - "publishing" - "python" - "qr-code" - "quality" - "quizzes" - "quora" - "quotev.com" - "radio" - "rapportive" - "rating" - "rdio" - "readability" - "reading" - "recaptcha" - "recommendations" - "reddit" - "regex" - "registration" - "remember-the-milk" - "reminder" - "remote-desktop" - "reporting" - "research-gate" - "resolution" - "retweet" - "reviews" - "rotten-tomatoes" - "rss" - "rss-reader" - "runkeeper" - "saas" - "safari-5" - "safari-iphone" - "safesearch" - "save" - "scheduling" - "screencasts" - "screenshot" - "scribd" - "scripts" - "search" - "search-engine" - "security" - "self-hosted" - "seo" - "service-rec" - "share" - "sharepoint" - "sharing" - "shopping" - "shortcut" - "sign-out" - "signature" - "signup" - "silverlight" - "simplenote" - "site" - "skrill" - "skype" - "slack" - "slashdot" - "slideshare" - "sms" - "smtp" - "snopes.com" - "social" - "social-graph" - "social-media" - "social-networking" - "social-networks" - "software" - "software-rec" - "sort" - "sorting" - "sound" - "soundcloud" - "sourceforge" - "spam" - "spam-prevention" - "spamcop" - "special-characters" - "speed" - "spell-check" - "sports" - "spotify" - "spreadsheet" - "springpad" - "sprout" - "sqlfiddle" - "ssl" - "stack-exchange" - "stackoverflow" - "standards" - "startpage.com" - "startup" - "statistics" - "stats" - "status" - "sticky-notes" - "storage" - "stream" - "streaming" - "street-view" - "stumbleupon" - "subscription" - "support" - "survey" - "surveymonkey" - "svn" - "sync" - "synchronization" - "syntax" - "tables" - "tagging" - "tags" - "tasks" - "team" - "templates" - "testing" - "text" - "text-analysis" - "text-formatting" - "text-to-speech" - "tfs" - "the-old-reader" - "themes" - "thesaurus" - "threading" - "thumbnail" - "thunderbird" - "tiddlywiki" - "time-tracker" - "time-zone" - "todo" - "tools" - "tor" - "touch-typing" - "tracking" - "traffic" - "transcription" - "transfer" - "transifex" - "translation" - "trash" - "travel" - "trello" - "trello-boards" - "trello-cards" - "trello-labels" - "trello-lists" - "trello-organization" - "trello-stickers" - "trello-workflow" - "tripit" - "trust" - "tumblr" - "tumblr-themes" - "tutorials" - "tv" - "tweet" - "tweetdeck" - "twitch.tv" - "twitpic" - "twitter" - "twitter-api" - "twitter-card" - "twitter-images" - "twitter-integration" - "twitter-profile" - "twitter-search" - "twitterfeed" - "typepad" - "udacity" - "uml" - "unfollow" - "unicode" - "unsubscribe" - "untagged" - "upload" - "url" - "url-shortening" - "usability" - "usenet" - "user-accounts" - "user-interface" - "username" - "userscripts" - "utm" - "venmo" - "verification" - "version-control" - "video" - "video-chat" - "video-download" - "video-editing" - "video-streaming" - "viewer" - "vimeo" - "vine" - "visio" - "visualization" - "voice" - "voip" - "volume" - "warning" - "watchlist" - "weather" - "web" - "web-history" - "web-hosting" - "webapp-rec" - "webcam" - "webmail" - "webservice" - "website" - "weebly" - "weibo" - "wetransfer" - "whiteboard" - "widgets" - "wiki" - "wikipedia" - "windows" - "windows-7" - "windows-live" - "windows-live-mail" - "windows-live-messenger" - "wish-list" - "wolfram-alpha" - "wordpress" - "wordpress.com" - "worksheet-function" - "writeboard" - "wufoo-forms" - "xmarks" - "xml" - "xmpp" - "yahoo" - "yahoo-answers" - "yahoo-fantasy-sports" - "yahoo-groups" - "yahoo-mail" - "yahoo-messenger" - "yahoo-pipes" - "yahoo-profile" - "yammer" - "yandex-mail" - "yandex-search" - "yelp.com" - "yesware" - "youtube" - "youtube-watch-later" - "zapier" - "zimbra" - "zipcar" - "zippyshare" - "zoho") diff --git a/data/tags/webmasters.el b/data/tags/webmasters.el deleted file mode 100644 index e69286e..0000000 --- a/data/tags/webmasters.el +++ /dev/null @@ -1,872 +0,0 @@ -(".net" - "1and1" - "301-redirect" - "302-redirect" - "303-redirect" - "401" - "403-forbidden" - "404" - "410-gone" - "a-b-testing" - "access-control" - "accessibility" - "ad-server" - "ad-targeting" - "adblock" - "add-on-domain" - "address" - "addthis" - "administration" - "adobe-marketing-cloud" - "adult-content" - "advanced-segments" - "advertising" - "adwords-value-track" - "affiliate" - "aggregators" - "ajax" - "alexa" - "alt-attribute" - "alternative" - "amazon" - "amazon-aws" - "amazon-cloudfront" - "amazon-ec2" - "amazon-rds" - "amazon-s3" - "analytics" - "analytics-api" - "analytics-events" - "anchor" - "android" - "animated" - "apache" - "apache-log-files" - "apache2" - "api" - "app-pool" - "apple" - "apple-store" - "application" - "architecture" - "archiva" - "archive.org" - "articles" - "asp" - "asp.net" - "asp.net-mvc" - "aspx" - "audio" - "authentication" - "author" - "authorize.net" - "automation" - "availability" - "aws" - "awstats" - "azure" - "background-image" - "backlinks" - "backups" - "baidu" - "bandwidth" - "banners" - "behavior-flow" - "best-practices" - "bing" - "bing-webmaster-tools" - "bingbot" - "bitly" - "blackhat" - "blacklist" - "blog" - "blogger" - "blogroll" - "blogspot" - "books" - "bootstrap" - "botattack" - "bounce" - "bounce-rate" - "branding" - "breadcrumbs" - "broken-links" - "browser-detecting" - "browser-support" - "browsers" - "bugs" - "bulk-email" - "business" - "business-models" - "button" - "c#" - "cache" - "cache-control" - "calendar" - "campaigns" - "canonical" - "canonical-url" - "capacity" - "captcha" - "case-sensitive" - "catch-all" - "categories" - "cdn" - "centos" - "certificate-authority" - "certificate-generation" - "change-frequency" - "change-management" - "character-set" - "chat" - "cheap" - "checkout" - "chitika" - "chmod" - "clean-urls" - "click-tracking" - "clicks" - "clients" - "cloaking" - "cloud" - "cloud-hosting" - "cloudflare" - "cms" - "cname" - "code" - "code-quality" - "codeigniter" - "colors" - "colour-depth" - "comments" - "community" - "community-management" - "company" - "comparison" - "compatibility" - "competitors" - "compliance" - "compression" - "concurrent-users" - "configuration" - "confluence" - "connections" - "construction" - "contact-page" - "content" - "content-encoding" - "content-type" - "contract" - "contribute" - "control-panel" - "conversions" - "cookie" - "copy" - "copyright" - "cost" - "country-codes" - "country-specific" - "cpa-ads" - "cpanel" - "cpc-ads" - "cpm" - "cpu" - "crawl-errors" - "crawl-rate" - "crawlable-ajax" - "creative-commons" - "creditcard" - "crm" - "cron" - "cross-browser" - "cross-origin" - "cross-platform" - "css" - "css-framework" - "css3" - "csv" - "ctr" - "custom-short-url" - "custom-software" - "custom-variables" - "customer-service" - "dash" - "data" - "database" - "datastorage" - "date-format" - "dates" - "dead-links" - "debian" - "debug" - "dedicated-hosting" - "definition" - "demographics" - "design" - "desktop" - "detection" - "development" - "directory" - "directory-listing" - "disaster-recovery" - "disavow-links" - "disqus" - "django" - "dmca" - "dmoz" - "dns" - "dns-servers" - "dofollow" - "dokuwiki" - "domain-extension" - "domain-forwarding" - "domain-grabbing" - "domain-hacks" - "domain-parking" - "domain-registrar" - "domain-registration" - "domain-transfer" - "domains" - "domjudge" - "doubleclick-ad-exchange" - "download" - "downtime" - "dreamhost" - "dreamweaver" - "dropbox" - "drupal" - "drupal-6" - "duplicate-content" - "dynamic" - "dynamic-dns" - "ebay" - "ecommerce" - "editing" - "education" - "email" - "email-address" - "embed" - "embedded-control" - "engines" - "error" - "error-code" - "error-reporting" - "escaped-fragment" - "event-tracking" - "event-trackinggoogle" - "exit-pages" - "expires" - "facebook" - "facebook-application" - "facebook-graph" - "favicon" - "features" - "feedburner" - "feeds" - "file-extension" - "file-manger" - "file-size" - "filenames" - "files" - "filtering" - "firebug" - "firefox" - "flash" - "flash-builder" - "flex" - "flickr" - "folder" - "fonts" - "footer" - "forms" - "forum" - "frameset" - "fraud-detection" - "free" - "freelancer" - "ftp" - "geolocation" - "geotagging" - "geotargeting" - "ghost-blog" - "gif" - "git" - "github" - "gmail" - "goal-tracking" - "goals" - "godaddy" - "google" - "google-adsense" - "google-adsense-policies" - "google-adwords" - "google-algorithm" - "google-analytics" - "google-app-engine" - "google-apps" - "google-authorship" - "google-cache" - "google-checkout" - "google-chrome" - "google-custom-search" - "google-dfp" - "google-image-search" - "google-index" - "google-keyword-tool" - "google-local-search" - "google-maps" - "google-news" - "google-pagespeed" - "google-panda-algorithm" - "google-penguin-algorithm" - "google-places" - "google-plus" - "google-plus-one" - "google-plus-pages" - "google-ranking" - "google-rich-snippets-tool" - "google-sandbox" - "google-scholar" - "google-search" - "google-search-api" - "google-sites" - "google-tag-manager" - "google-toolbar" - "google-translate" - "google-webmaster-tools" - "google-website-optimizer" - "googlebot" - "googlebot-mobile" - "gov" - "graphics" - "gravatar" - "grid" - "gui" - "guide" - "gzip" - "hacking" - "handler" - "hash" - "headers" - "heading" - "heroku" - "hidden-text" - "high-traffic" - "hijacked" - "hiring" - "homepage" - "honeypots" - "hosted-service" - "hosted-svn" - "hostgator" - "hotlinking" - "hotmail" - "hreflang" - "htaccess" - "html" - "html-attributes" - "html5" - "htpasswd" - "http" - "http-code-400" - "http-code-429" - "http-code-500" - "http-code-503" - "http-headers" - "http-server" - "httpd" - "httpd.conf" - "https" - "hyperlink" - "iaas" - "icann" - "icon" - "idea" - "idn" - "ids" - "iframe" - "iis" - "iis6" - "iis7" - "iis8" - "image-hosting" - "image-search" - "images" - "imdb" - "import" - "impressions" - "indexing" - "individual" - "infinite-scroll" - "information-retrieval" - "infringement" - "insecure-content-warning" - "instagram" - "installation" - "integration" - "international" - "internationalization" - "internet-explorer" - "internet-explorer-10" - "internet-explorer-6" - "internet-explorer-7" - "internet-explorer-8" - "internet-explorer-9" - "intranet" - "ios" - "ip-address" - "ipad" - "iphone" - "iptables" - "ipv6" - "isapi-rewrite" - "isolation" - "isp" - "issue-trackers" - "java" - "javascript" - "jboss" - "jekyll" - "joomla" - "joomla3" - "jpeg" - "jplayer" - "jquery" - "json" - "jsp" - "jwplayer" - "keepalive" - "keyword-stuffing" - "keywords" - "kiting" - "knowledge-graph" - "kohana" - "lamp" - "landing-page" - "language" - "language-agnostic" - "laravel" - "latency" - "launch" - "layout" - "ldap" - "learning" - "legal" - "library" - "licenses" - "lighttpd" - "like" - "line-items" - "link-building" - "link-submission" - "linkedin" - "links" - "linode" - "linux" - "live" - "load" - "load-balance" - "load-testing" - "load-time" - "local-seo" - "localhost" - "logging" - "logs" - "looking-for-a-script" - "looking-for-hosting" - "looking-for-similar" - "loopback" - "mac" - "magento" - "mail" - "mailchimp" - "mailing-list" - "mailto" - "malware" - "mamp" - "management" - "map" - "markdown" - "market-share" - "marketing" - "markup" - "masking" - "measure" - "media" - "media-queries" - "mediatemple" - "mediawiki" - "memcached" - "menu" - "merge" - "meta-description" - "meta-keywords" - "meta-tags" - "metrics" - "microdata" - "microsite" - "microsoft" - "migration" - "mime-types" - "mirror" - "mobile" - "mod-rewrite" - "mod-security" - "moderation" - "modx" - "monetize" - "money" - "mongodb" - "monitoring" - "mono" - "moodle" - "movabletype" - "multi-subdomains" - "multilingual" - "multiple-domains" - "multiple-servers" - "music" - "mvc" - "mx" - "mysql" - "name" - "namecheap" - "named-anchor" - "nameserver" - "navigation" - "negative-seo" - "networking" - "newsletter" - "nginx" - "no-www" - "node-js" - "nofollow" - "noindex" - "non-profit" - "noscript" - "not-provided" - "notification" - "obfuscation" - "online" - "open-graph-protocol" - "open-source" - "openid" - "openssl" - "openx" - "operating-system" - "optimization" - "optimize" - "oscommerce" - "ownership" - "paas" - "page" - "page-size" - "page-speed" - "page-views" - "pagerank" - "pagination" - "parameters" - "parking" - "password" - "path" - "payment-gateway" - "payments" - "paypal" - "pci-compliance" - "pdf" - "penalty" - "performance" - "permalinks" - "permissions" - "personal-website" - "photo" - "photo-gallery" - "photobucket" - "photoshop" - "php" - "phpbb" - "phpmyadmin" - "ping" - "piwik" - "planning" - "plesk" - "plone" - "plugin" - "png" - "podcast" - "port-number" - "post" - "ppc" - "prefetch" - "press-releases" - "prestashop" - "pricing" - "print" - "privacy" - "privacy-policy" - "private-registration" - "problem" - "process" - "profiling" - "protection" - "proxy" - "psd" - "publishing" - "punycode" - "purchase" - "python" - "qa" - "quantcast" - "query-string" - "question-2-answer" - "quirks-mode" - "rackspace" - "random" - "rank-checkers" - "ranking" - "rdfa" - "real-time" - "recommendations" - "redirects" - "referrer" - "refresh" - "registration" - "regular-expression" - "rel" - "rel-alternate" - "rel-canonical" - "rel-dns-prefetch" - "relative-urls" - "remarketing" - "reporting" - "reputation" - "research" - "reseller" - "resolution" - "resources" - "responsive-webdesign" - "restful" - "revenue" - "reverse-proxy" - "rich-snippets" - "robots.txt" - "route53" - "rss" - "ruby-on-rails" - "saas" - "safari" - "save" - "scalability" - "scraper-sites" - "screen-size" - "screenshot" - "script" - "search" - "search-engines" - "search-results" - "search-terms" - "section" - "security" - "security-certificate" - "sem" - "semalt" - "semantic-web" - "seo" - "seo-audit" - "seo-software" - "serps" - "server" - "server-side-scripting" - "service" - "session" - "share-this" - "shared-hosting" - "sharepoint" - "sharing" - "shopping" - "shopping-cart" - "silverlight" - "single-page-application" - "single-sign-on" - "site-deployment" - "site-maintenance" - "site-search" - "site-structure" - "site-verification" - "sitelinks" - "sitemap" - "skills" - "sms" - "smtp" - "social-login" - "social-media" - "social-networking" - "social-networks" - "social-sharing-buttons" - "soft-404" - "software" - "sound" - "spam" - "spam-blocker" - "spam-prevention" - "spamming" - "spdy" - "spellcheck" - "spelling" - "spf" - "split-testing" - "sprite" - "sql" - "sql-server" - "squarespace" - "standards" - "startup" - "statcounter" - "static" - "static-content" - "static-ip" - "statistics" - "storage" - "strategy" - "streaming" - "structured" - "structured-data" - "studies" - "subdirectory" - "subdomain" - "subresource" - "subscription" - "subversion" - "suggestions" - "surveys" - "svg" - "svn" - "symbols" - "symlinks" - "sync" - "syndication" - "system" - "table" - "tableless" - "tag-manager" - "tags" - "teamcity" - "template" - "terms-of-use" - "testing" - "text" - "text-editor" - "theme" - "throttling" - "thumbnail" - "ticket-system" - "title" - "title-attribute" - "titles" - "tomcat" - "tools" - "top-level-domains" - "tracking" - "trademark" - "traffic" - "traffic-sources" - "trailing-slash" - "transfer" - "translation" - "transparency" - "trojan" - "tumblr" - "twitter" - "twitter-analytics" - "twitter-card" - "twitter-integration" - "typo3" - "typography" - "ubuntu" - "ucc-certificate" - "unicode" - "universal-analytics" - "untagged" - "upgrade" - "uploading" - "uptime" - "url" - "url-encoding" - "url-keywords" - "url-parameters" - "url-rewriting" - "url-shorteners" - "url-slug" - "usability" - "usage-data" - "useability" - "user-agent" - "user-engagement" - "user-friendly" - "user-generated-content" - "user-input" - "user-preferences" - "user-reviews" - "users" - "ux" - "validation" - "value" - "vbulletin" - "video" - "video-hosting" - "video-sitemap" - "viral-marketing" - "virtualhost" - "virus" - "visitors" - "vpn" - "vps" - "vs" - "w3c-validation" - "wamp" - "wampserver" - "web-applications" - "web-crawlers" - "web-design" - "web-development" - "web-hosting" - "web-platform-installer" - "web-services" - "web-traffic" - "webfarm" - "webmail" - "webmin" - "webserver" - "webshop" - "website-deployment" - "website-design" - "website-features" - "website-promotion" - "website-review" - "webtrends" - "weebly" - "whm" - "whmcs" - "whois" - "widgets" - "wiki" - "windows" - "windows-7" - "windows-8" - "windows-server-2003" - "windows-server-2008" - "woocommerce" - "wordpress" - "writing" - "wysiwyg" - "xampp" - "xhtml" - "xml" - "xml-sitemap" - "xss" - "yahoo" - "yandex" - "yandex-webmaster-tools" - "youtube" - "zen-cart" - "zoho") diff --git a/data/tags/windowsphone.el b/data/tags/windowsphone.el deleted file mode 100644 index 5cf20a7..0000000 --- a/data/tags/windowsphone.el +++ /dev/null @@ -1,244 +0,0 @@ -("3g" - "7.5" - "7.8" - "7.x" - "8.0" - "8.1" - "8.1-update-1" - "accessibility" - "accessories" - "accounts" - "action-center" - "alarms" - "alert" - "amber-update" - "android" - "app-corner" - "app-review" - "app-update" - "apps" - "attachments" - "audio" - "autocorrect" - "background-tasks" - "backup" - "battery" - "battery-saver" - "beta" - "bing" - "blu" - "bluetooth" - "brightness" - "browser" - "buttons" - "calculator" - "calendars" - "call-sms-filter" - "calls" - "camera" - "carddav" - "cellular" - "cellular-data" - "certificate" - "charging" - "chat" - "cleaning" - "company-hub" - "compatibility" - "contacts" - "cortana" - "custom-rom" - "data-usage" - "datasense" - "deezer" - "dell-venue-pro" - "demo-mode" - "developer-preview" - "device-comparison" - "diagnostics" - "dialer" - "dictionary" - "display" - "download-mode" - "driving-mode" - "email" - "error" - "exchange" - "exif" - "facebook" - "family-room" - "file-format" - "file-transfer" - "find-my-phone" - "flash-memory" - "flash-player" - "flights" - "foursquare" - "ftp" - "functionality" - "games" - "gdr-2" - "gdr-3" - "glance" - "gmail" - "google" - "here" - "history" - "homebrew" - "htc" - "htc-8s" - "htc-8x" - "htc-one" - "icons" - "instagram" - "internet" - "internet-explorer" - "internet-sharing" - "intranet" - "keyboard" - "kids-corner" - "language-setting" - "line" - "linked-accounts" - "linux" - "live-tiles" - "local-scout" - "location-services" - "lock-screen" - "low-end-devices" - "lumia-amber" - "lumia-black-update" - "lumia-cyan-update" - "lumia-denim-update" - "maps" - "mediaplayer" - "messaging" - "messenger" - "metering" - "micro-sd" - "microsoft-account" - "mixradio" - "mms" - "multi-tasking" - "music" - "mute" - "narrator" - "networking" - "nfc" - "nokia-lumia" - "nokia-lumia-1020" - "nokia-lumia-1320" - "nokia-lumia-1520" - "nokia-lumia-520" - "nokia-lumia-525" - "nokia-lumia-620" - "nokia-lumia-625" - "nokia-lumia-630" - "nokia-lumia-720" - "nokia-lumia-730" - "nokia-lumia-800" - "nokia-lumia-820" - "nokia-lumia-900" - "nokia-lumia-920" - "nokia-lumia-925" - "nokia-lumia-930" - "notifications" - "office" - "office-hub" - "office-lens" - "onedrive" - "onenote" - "organization" - "orientation" - "osx" - "outlook" - "parental-control" - "password" - "pc" - "pdf" - "people" - "people-hub" - "performance" - "personalization" - "phone-connector-mac" - "photos" - "pictures" - "pin" - "pin-to-start" - "podcast" - "printer" - "privacy" - "project-my-screen" - "proxy" - "push-notifications" - "radio" - "reminders" - "reset" - "ringtone" - "rooting" - "samsung-ativ-s" - "samsung-focus" - "screen" - "screenshot" - "scrobbling" - "sd-card" - "search" - "security" - "settings" - "sharepoint" - "sharing" - "side-loading" - "signal" - "silent" - "sim" - "skype" - "sms" - "soft-reset" - "sound" - "speech" - "spinning-gears" - "ssl-certificate" - "storage" - "storage-check" - "store" - "streaming" - "sync" - "synchronization" - "system-apps" - "system-tray" - "tap-to-pay" - "tethering" - "tiles" - "touch" - "transfer" - "treasure-tag" - "twitter" - "unlocking" - "untagged" - "update" - "uploading" - "usb" - "user-experience" - "vibration" - "video" - "voicemail" - "volume" - "vpn" - "wallet" - "whatsapp" - "wifi" - "windows-7" - "windows-8" - "windows-live" - "windows-mobile" - "winhd" - "wireless-sync" - "word" - "wordflow" - "wpdm" - "xbox-360" - "xbox-live" - "xbox-music" - "yahoo" - "zune" - "zune-player") diff --git a/data/tags/wordpress.el b/data/tags/wordpress.el deleted file mode 100644 index b39c1ec..0000000 --- a/data/tags/wordpress.el +++ /dev/null @@ -1,807 +0,0 @@ -("3.0" - "404-error" - "500-internal-error" - "access" - "accessibility" - "account" - "actions" - "activation" - "add-cap" - "add-editor-style" - "add-feed" - "add-image-size" - "add-menu-page" - "add-options" - "add-rewrite-rule" - "add-settings-field" - "add-settings-section" - "add-submenu-page" - "add-theme-support" - "admin" - "admin-bar" - "admin-css" - "admin-init" - "admin-menu" - "admin-ui" - "ads" - "adsense" - "advanced-custom-fields" - "advanced-taxonomy-queries" - "ajax" - "akismet" - "allowedtags" - "amazon" - "android" - "apache" - "apc" - "api" - "archive-template" - "archives" - "array" - "attachment-fields-to-edit" - "attachments" - "attribute" - "audio" - "authentication" - "author" - "author-template" - "authorization" - "auto-update" - "autocomplete" - "automate" - "automatic-updates" - "automation" - "autosave" - "avatar" - "backbone" - "backup" - "bbpress" - "best-practices" - "blog" - "blog-id" - "blog-page" - "blogger" - "blogging" - "bloginfo" - "blogroll" - "bookmark" - "books" - "breadcrumb" - "browser-compatibility" - "buddypress" - "bug" - "bug-tracking" - "bulk" - "bulk-import" - "buttons" - "cache" - "caching" - "calendar" - "callbacks" - "capabilities" - "captcha" - "captions" - "categories" - "category-description" - "cdn" - "challenge" - "characters" - "child-pages" - "child-theme" - "children" - "cleanup" - "clone-site" - "cloud" - "cms" - "code" - "codex" - "coding-standards" - "collapse" - "collation" - "color-picker" - "columns" - "command-line" - "comment-form" - "comment-meta" - "comments" - "comments-template" - "community" - "comparison" - "compatibility" - "composer" - "compression" - "conditional-content" - "conditional-tags" - "configuration" - "constants" - "contact" - "content" - "content-restriction" - "content-width" - "contextual-help" - "cookies" - "copyright" - "core" - "core-modifications" - "count" - "crm" - "cron" - "cropping" - "css" - "csv" - "cubepoints" - "curl" - "custom-background" - "custom-content" - "custom-field" - "custom-header" - "custom-post-type-archives" - "custom-post-types" - "custom-roles" - "custom-taxonomy" - "custom-write-panel" - "customization" - "dashboard" - "database" - "date" - "date-time" - "datepicker" - "dbdelta" - "deactivated-plugin" - "deactivation" - "debug" - "default" - "deleted" - "deleting" - "deployment" - "deprecation" - "description" - "design" - "development" - "development-strategy" - "directory" - "disqus" - "dns" - "documentation" - "domain" - "domain-mapping" - "draft" - "drag-drop" - "dropdown" - "duplicates" - "e-commerce" - "eclipse" - "editor" - "email" - "email-verification" - "embed" - "enclosure" - "encoding" - "encryption" - "endpoints" - "error-handling" - "errors" - "esc-textarea" - "escaping" - "events" - "excerpt" - "exclude" - "export" - "extend" - "facebook" - "faq" - "fatal-error" - "favicon" - "featured-post" - "features" - "feed" - "feedburner" - "feedwordpress" - "fetch-feed" - "file-manager" - "filesystem" - "filesystem-api" - "filters" - "flash" - "flickr" - "flutter" - "footer" - "foreach" - "formatting" - "forms" - "forum" - "fragment" - "framework" - "front-end" - "frontpage" - "ftp" - "function-exists" - "functions" - "gallery" - "genesis-theme-framework" - "geo-data" - "get-bookmarks" - "get-categories" - "get-children" - "get-comments" - "get-option" - "get-page" - "get-plugin-data" - "get-post" - "get-post-meta" - "get-posts" - "get-row" - "get-template-part" - "get-terms" - "get-the-category" - "get-the-id" - "get-the-tags" - "get-the-term-list" - "get-the-title" - "get-theme-mod" - "get-user-count" - "get-users" - "git" - "github" - "globals" - "google" - "google-analytics" - "google-chrome" - "google-docs" - "google-maps" - "google-plus" - "google-search" - "google-translate" - "google-xml-sitemaps" - "gravatar" - "groupby" - "guids" - "hacked" - "hacks" - "header-image" - "headers" - "heartbeat-api" - "hierarchical" - "home-url" - "homepage" - "hooks" - "hosting" - "hosting-recommendation" - "htaccess" - "html" - "html-editor" - "html-email" - "html5" - "htmlspecialchars-decode" - "http" - "http-api" - "https" - "hyperdb" - "icon" - "id" - "ide" - "iis" - "image-editor" - "image-resize" - "image-size" - "images" - "import" - "include" - "infinite-scroll" - "init" - "innodb" - "input" - "installation" - "integration" - "internal-server-error" - "ios" - "ip" - "iphone" - "javascript" - "jigoshop" - "jobboard" - "join-tables" - "jquery" - "jquery-ui" - "json" - "jwplayer" - "l10n" - "labels" - "language" - "latex" - "library" - "licensing" - "lifetime" - "limit" - "line-breaks" - "link-category" - "linking" - "links" - "linux" - "list" - "list-authors" - "listing" - "lists" - "local-installation" - "localhost" - "localization" - "location-search" - "lockdown" - "logging" - "login" - "logo" - "logout" - "loop" - "lost-password" - "mac" - "magento" - "mailing-list" - "maintenance" - "management" - "map" - "markdown" - "markup" - "mash-up" - "masonry" - "maximized-width" - "media" - "media-library" - "media-modal" - "media-model" - "media-settings" - "members" - "membership" - "memory" - "menu-order" - "menus" - "mercurial" - "merging" - "meta-query" - "meta-value" - "metabox" - "microsoft" - "migration" - "mo" - "mobile" - "mod-rewrite" - "moderation" - "mssql" - "mu-plugins" - "multi-author" - "multi-language" - "multi-taxonomy-query" - "multisite" - "multisite-user-management" - "mvc" - "mysql" - "navigation" - "navigation-bar" - "netbeans" - "network-admin" - "newsletter" - "next" - "next-post-link" - "nextpage" - "nginx" - "nofollow" - "noindex" - "nonce" - "notices" - "notifications" - "oauth" - "object" - "oembed" - "offline" - "offsets" - "oop" - "open-graph" - "openid" - "optimization" - "options" - "order" - "outside-wordpress" - "page-attributes" - "page-specific-settings" - "page-template" - "paged" - "pages" - "paginate-comments-links" - "paginate-links" - "pagination" - "paid-plugins" - "parameter" - "parent-theme" - "parse" - "password" - "patch" - "paths" - "paypal" - "pdf" - "pdo" - "performance" - "permalinks" - "permissions" - "php" - "php.ini" - "phpmailer" - "phpmyadmin" - "pingbacks" - "pluggable" - "plugin-add-this" - "plugin-all-in-one-cufon" - "plugin-all-in-one-seo" - "plugin-cforms" - "plugin-chat" - "plugin-contact-form-7" - "plugin-custom-permalinks" - "plugin-development" - "plugin-event-organiser" - "plugin-events-calendar" - "plugin-gd-star-rating" - "plugin-gravity-forms" - "plugin-iframe-reloaded" - "plugin-jetpack" - "plugin-json-api" - "plugin-list-category-post" - "plugin-magic-fields" - "plugin-mailchimp" - "plugin-mailchimp-sts" - "plugin-mathjax" - "plugin-members" - "plugin-more-fields" - "plugin-nextgen-gallery" - "plugin-ninja-forms" - "plugin-option-tree" - "plugin-options" - "plugin-polylang" - "plugin-posts-to-posts" - "plugin-qtranslate" - "plugin-random-redirect" - "plugin-recommendation" - "plugin-redirection" - "plugin-repository" - "plugin-search-engine" - "plugin-shopp" - "plugin-simple-fields" - "plugin-stats" - "plugin-syntaxhighlighter" - "plugin-tinymce" - "plugin-tpc-memory-usage" - "plugin-types" - "plugin-user-role-editor" - "plugin-w3-total-cache" - "plugin-wp-e-commerce" - "plugin-wp-mobile-detect" - "plugin-wp-pagenavi" - "plugin-wp-postratings" - "plugin-wp-seo-yoast" - "plugin-wp-supercache" - "plugin-wpml" - "plugin-wptouch" - "plugins" - "plugins-url" - "plupload" - "po" - "podcasting" - "pods-framework" - "poll" - "popular-posts" - "post-class" - "post-content" - "post-duplication" - "post-editor" - "post-formats" - "post-installation" - "post-meta" - "post-status" - "post-thumbnails" - "post-type" - "post-type-support" - "posting" - "posts" - "posts-where" - "pre" - "pre-get-posts" - "pre-sale" - "premium" - "prepare-statement" - "previews" - "previous" - "previous-post-link" - "privacy" - "private" - "privileges" - "production" - "profiles" - "profiling" - "proxy" - "publish" - "query" - "query-posts" - "query-string" - "query-variable" - "quick-edit" - "quicktag" - "radio" - "rating" - "read-more" - "readme" - "recent-posts" - "recursive" - "redirect" - "references" - "regex" - "register" - "register-sidebar" - "register-taxonomy" - "registered" - "registration" - "rel-canonical" - "release-process" - "remote" - "remote-login" - "removal" - "replace" - "reporting" - "repository" - "request-filter" - "reset" - "responsive" - "restful" - "retina" - "review" - "revisions" - "rewrite-rules" - "rewrite-tag" - "robots.txt" - "rounded-corners" - "routing" - "row-actions" - "rss" - "s2member" - "sandbox" - "sanitization" - "sass" - "save" - "save-post" - "scale" - "scheduled-posts" - "screen-columns" - "screen-layout" - "screen-options" - "scripts" - "search" - "search-engines" - "security" - "select" - "semiologic" - "seo" - "server" - "server-load" - "services" - "session" - "set-post-thumbnail-size" - "settings" - "settings-api" - "setup" - "shared-hosting" - "shared-user-tables" - "sharing" - "shortcode" - "shortlink" - "showcase" - "sidebar" - "signup" - "simplepie" - "single" - "single-sign-on" - "site-url" - "sitemap" - "slideshow" - "slug" - "sms" - "smtp" - "soap" - "social-connect" - "social-sharing" - "sort" - "spam" - "split" - "sql" - "ssh" - "ssl" - "stackoverflow" - "staging" - "static" - "static-website" - "statistics" - "stats" - "status" - "sticky-post" - "store-locator" - "styles" - "stylesheet" - "sub-menu" - "subdomains" - "subscription" - "support" - "survey" - "svg" - "svn" - "switch" - "switch-theme" - "switch-to-blog" - "symlink" - "sync" - "syntax-highlighting" - "table" - "tabs" - "tags" - "tax-query" - "taxonomy" - "taxonomy-meta" - "teaser" - "template-hierarchy" - "template-include" - "template-redirect" - "template-tags" - "templates" - "terms" - "testing" - "text" - "textdomain" - "the-content" - "the-events-calendar" - "the-excerpt" - "the-tags" - "the-taxonomies" - "theme-customizer" - "theme-development" - "theme-headway" - "theme-options" - "theme-p2" - "theme-recommendation" - "theme-review" - "theme-roots" - "theme-starkers" - "theme-thesis" - "theme-twenty-eleven" - "theme-twenty-fifteen" - "theme-twenty-fourteen" - "theme-twenty-ten" - "theme-twenty-thirteen" - "theme-twenty-twelve" - "themes" - "theory" - "thickbox" - "third-party-applications" - "threading" - "thumbnails" - "timestamp" - "timezones" - "timthumb" - "tinymce" - "title" - "tooltip" - "transfer" - "transient" - "translation" - "trash" - "troubleshooting" - "tumblr" - "twig" - "twitter" - "twitter-bootstrap" - "type" - "ui" - "underscore" - "uninstallation" - "unit-tests" - "untagged" - "update-option" - "update-post-meta" - "updates" - "upgrade" - "upload-dir" - "uploads" - "url-rewriting" - "urls" - "user-access" - "user-interface" - "user-meta" - "user-register" - "user-registration" - "user-roles" - "username" - "users" - "vagrant" - "validation" - "variables" - "varnish" - "verification" - "version-control" - "video-player" - "videos" - "views" - "vimeo" - "virtual-hosts" - "virus" - "visual-editor" - "voting-plugin" - "vps" - "walker" - "warnings" - "web-services" - "webmaster" - "white-screen-of-death" - "widget-text" - "widgets" - "wiki" - "windows" - "windows-live-writer" - "woocommerce" - "wordpress-version" - "wordpress.com" - "wordpress.org" - "workflow" - "wp-admin" - "wp-api" - "wp-autop" - "wp-blog-header.php" - "wp-cli" - "wp-config" - "wp-create-user" - "wp-cron" - "wp-debug" - "wp-dependencies" - "wp-editor" - "wp-enqueue-script" - "wp-enqueue-style" - "wp-error" - "wp-filesystem" - "wp-get-archives" - "wp-get-attachment-image" - "wp-get-object-terms" - "wp-get-theme" - "wp-handle-upload" - "wp-head" - "wp-insert-post" - "wp-insert-term" - "wp-kses" - "wp-link-pages" - "wp-list-categories" - "wp-list-comments" - "wp-list-pages" - "wp-list-table" - "wp-load.php" - "wp-localize-script" - "wp-login-form" - "wp-mail" - "wp-options" - "wp-parse-args" - "wp-query" - "wp-redirect" - "wp-register-script" - "wp-register-style" - "wp-remote-get" - "wp-remote-post" - "wp-remote-request" - "wp-reset-postdata" - "wp-reset-query" - "wp-set-object-terms" - "wp-settings.php" - "wp-signup" - "wp-title" - "wp-update-post" - "wp-user-query" - "wpalchemy" - "wpdb" - "wpse-plugin" - "writing" - "wysiwyg" - "xampp" - "xgettext" - "xml" - "xml-rpc" - "youtube" - "ziparchive") diff --git a/data/tags/workplace.el b/data/tags/workplace.el deleted file mode 100644 index f919cab..0000000 --- a/data/tags/workplace.el +++ /dev/null @@ -1,280 +0,0 @@ -("acquisition" - "anxiety" - "appearance" - "applications" - "appraisal" - "asia" - "aspergers" - "at-will" - "australia" - "austria" - "background-check" - "bangladesh" - "behavior" - "benefits" - "billing" - "birthday" - "blogging" - "bonus" - "brazil" - "break-time" - "bullying" - "burnout" - "business-cards" - "canada" - "cards" - "career-development" - "career-switch" - "careers" - "certification" - "change-agency" - "china" - "citizenship" - "clients" - "colleagues" - "communication" - "company-culture" - "company-policy" - "compensation" - "complaint" - "conferences" - "conflict" - "conflict-resolution" - "consultants" - "consulting" - "cont" - "contract-extension" - "contracting" - "contractors" - "contracts" - "conversation" - "corporate-culture" - "correspondence" - "cost-of-living" - "cover-letter" - "coworking" - "cubicles" - "culture" - "customer-service" - "cv" - "damage" - "deadlines" - "demotion" - "developer" - "disability" - "discipline" - "discrimination" - "distractions" - "diversity" - "documentation" - "dress-code" - "education" - "efficiency" - "egypt" - "email" - "employees" - "employer" - "employer-relations" - "employment-agreement" - "employment-gaps" - "english" - "entry-level" - "equity" - "ergonomics" - "ethics" - "eu" - "europass" - "events" - "exit-interview" - "expenses" - "failure" - "farewell" - "feedback" - "first-job" - "follow-up" - "france" - "freelancing" - "fresher" - "fulltime" - "furlough" - "gender" - "germany" - "glassdoor" - "government" - "grooming" - "harassment" - "health" - "helping" - "hierarchy" - "hiring" - "hiring-process" - "hours" - "human-resources" - "hungary" - "india" - "inside-information" - "international" - "internship" - "intervention" - "interview" - "interviewing" - "invoices" - "ireland" - "italy" - "japan" - "jargon" - "job-acceptance" - "job-change" - "job-description" - "job-listing" - "job-offer" - "job-satisfaction" - "job-search" - "knowledge-transfer" - "layoff" - "leadership" - "learning" - "leave" - "leave-of-absence" - "leaving" - "linkedin" - "location" - "lunch" - "management" - "manager" - "masters" - "maternity-leave" - "meetings" - "mentoring" - "micro-management" - "morale" - "motivation" - "negotiation" - "nepotism" - "netherlands" - "networking" - "new-hires" - "new-job" - "non-disclosure-agreement" - "non-profit" - "non-work-activities" - "notice-period" - "off-site-events" - "office-layout" - "offices" - "online" - "online-presence" - "onsite" - "open-door-policy" - "overtime" - "pakistan" - "part-time" - "patent" - "pay" - "payment" - "people-management" - "performance" - "performance-reviews" - "philippines" - "phone" - "planning" - "politics" - "portfolio" - "position" - "pre-screening" - "presentations" - "privacy" - "probation" - "productivity" - "professionalism" - "proficiency" - "project-management" - "projects" - "promotion" - "psychology" - "qualification" - "quitting" - "raise" - "recommendation-letter" - "recruiter" - "recruitment" - "redundancy" - "references" - "reimbursement" - "reinterviewing" - "relationships" - "relieving-letter" - "relocation" - "remote" - "replacement" - "resignation" - "resume" - "retail" - "salaried-pay" - "salary" - "scheduling" - "scrum" - "secrecy" - "security" - "security-clearance" - "self-direction" - "self-employment" - "sexual-harassment" - "sickness" - "skills" - "skunkworks" - "social-media" - "socializing" - "software" - "software-industry" - "south-korea" - "spain" - "srilanka" - "start-date" - "startup" - "stress" - "student" - "switzerland" - "task-management" - "taxes" - "team" - "team-building" - "team-role" - "teamwork" - "tech-industry" - "technology" - "telecommute" - "termination" - "terminology" - "time-management" - "time-off" - "time-recording" - "title" - "training" - "transition" - "travel" - "turkey" - "uae" - "uk" - "unions" - "united-kingdom" - "united-states" - "unprofessional-behavior" - "untagged" - "usa" - "vacation" - "venezuela" - "vesting" - "visa" - "volunteering" - "websites" - "whistle-blowing" - "women" - "work-environment" - "work-experience" - "work-life-balance" - "work-time" - "working-conditions" - "workload" - "workload-distribution" - "workplace-rhythm") diff --git a/data/tags/worldbuilding.el b/data/tags/worldbuilding.el deleted file mode 100644 index 5a776df..0000000 --- a/data/tags/worldbuilding.el +++ /dev/null @@ -1,221 +0,0 @@ -("adaptability" - "agriculture" - "algorithm" - "alien" - "alternate-history" - "alternate-world" - "altitude" - "ancient-history" - "animals" - "apocalypse" - "artificial-intelligence" - "assimilation" - "astronomy" - "atmosphere" - "avian" - "biology" - "body-armor" - "boom-town" - "calendar" - "cartography" - "caves" - "city-design" - "civilization" - "climate" - "collaborative" - "colonization" - "colony" - "commerce" - "communciation" - "communication" - "communism" - "computers" - "construction" - "contact" - "contamination" - "control" - "cosmology" - "creature-design" - "crime" - "culture" - "currents" - "cybernetics" - "day-night" - "death" - "demographics" - "dining" - "diplomacy" - "disease" - "domestication" - "dyson-sphere" - "earth" - "earth-like" - "economy" - "ecosystems" - "electricity" - "elevation-map" - "energy" - "environment" - "erosion" - "esoterism" - "ethics" - "evolution" - "exploration" - "extraterrestrial" - "extreme-terrain" - "fantasy-based" - "fashion" - "faster-than-light" - "fauna" - "flight" - "flora" - "flying" - "food" - "forestry" - "foundation" - "fundamentals" - "futurology" - "gender" - "genetic-engineering" - "genetics" - "geography" - "geology" - "government" - "gravity" - "habitation" - "harmonics" - "herd" - "history" - "humans" - "hydrodynamics" - "immortality" - "insectoid" - "intelligence" - "internet" - "interspecies-diplomacy" - "invisibility" - "isolation" - "language" - "law" - "lightning" - "linguistics" - "logistics" - "magic" - "map-making" - "mars" - "medieval" - "medieval-europe" - "megastructure" - "merfolk" - "message" - "metals" - "meteorology" - "military-defense" - "mine" - "modern-age" - "moons" - "mountain" - "mounts" - "music" - "mythic-creatures" - "nanotechnology" - "natural-disaster" - "natural-growth" - "natural-resources" - "natural-weapons" - "nature" - "navigation" - "no-ftl" - "nomenclature" - "north-pole" - "orbital-mechanics" - "orbits" - "order" - "organic-design" - "origin-of-life" - "oxygen" - "people" - "pets" - "physics" - "physiology" - "planets" - "plants" - "politics" - "population" - "post-scarcity" - "power-sources" - "pre-industrial" - "prehistory" - "psychology" - "races" - "radiation" - "reality-check" - "relativity" - "religion" - "renaissance" - "reproduction" - "reptiles" - "riddle" - "rogue-planet" - "roguelike" - "royalty" - "rpg" - "scaling" - "science-based" - "scientific-development" - "sea" - "sea-ice" - "secret-society" - "senses" - "shapeshifter" - "ship" - "shipbuilding" - "simulated-world" - "society" - "sociology" - "software-recomendation" - "solar-system" - "space" - "space-construct" - "space-station" - "space-travel" - "spaceflight" - "spaceship" - "sports" - "stars" - "steampunk" - "super-nova" - "super-powers" - "survival" - "technological-development" - "technology" - "telepathy" - "teleportation" - "terminology" - "terraforming" - "time" - "time-travel" - "tools" - "trade" - "travel" - "underground" - "underwater" - "universe" - "urban" - "usage" - "vampires" - "verifying" - "visualization" - "vortex" - "warfare" - "water-bodies" - "water-vessel-design" - "watershed" - "weapon-design" - "weapon-mass-destruction" - "weather" - "wild-west" - "worldbuilding-process" - "worldbuilding-resources" - "zero-g" - "zombies") diff --git a/data/tags/writers.el b/data/tags/writers.el deleted file mode 100644 index 433ff66..0000000 --- a/data/tags/writers.el +++ /dev/null @@ -1,236 +0,0 @@ -("academic-writing" - "accessibility" - "agent" - "ambiguity" - "antagonist" - "ap-style" - "apa" - "api-documentation" - "atmosphere" - "attention" - "audience" - "audiobook" - "authorship" - "beginner" - "beta-readers" - "biography" - "blog" - "book" - "book-length" - "book-rec" - "bookbinding" - "brainstorming" - "business-writing" - "career" - "categories" - "character-development" - "characters" - "chicago-manual-of-style" - "children" - "citation" - "citations" - "clarity" - "cliches" - "collaboration" - "comedy" - "comics" - "community" - "concept" - "constructed-language" - "contests" - "conventions" - "copyright" - "copywriting" - "creative-commons" - "creative-writing" - "crime" - "criticism" - "daily" - "degree" - "description" - "development" - "dialogue" - "dictionary" - "discipline" - "dramatic-writing" - "ebook" - "editing" - "education" - "electronic-publishing" - "ellipsis" - "email" - "ending" - "erotica" - "essay" - "exercises" - "exposition" - "fair-use" - "fan-fiction" - "fantasy" - "fiction" - "first-draft" - "first-line" - "first-person" - "flare" - "flash-fiction" - "flashback" - "flow" - "footnotes" - "formatting" - "free-lance" - "gender" - "genre" - "getting-started" - "goal" - "grammatical-person" - "habits" - "handwriting" - "happy-ending" - "hardware" - "headlines" - "historical" - "horror" - "humor" - "ideas" - "ieee-style" - "illustrations" - "images" - "indexing" - "inspiration" - "international" - "introduction" - "isbn" - "jobs" - "journalism" - "kindle" - "language" - "latex" - "legal" - "letter" - "literary-tools" - "lyrics" - "magazines" - "marketing" - "marketing-strategy" - "medium" - "memoir" - "metaphor" - "methods" - "metrics" - "mfa" - "mla" - "mobile" - "money" - "motivation" - "multilingual" - "mystery" - "naming" - "nanowrimo" - "narrative" - "narrator" - "non-fiction" - "notes" - "novel" - "novella" - "opening" - "openings" - "organization" - "originality" - "outline" - "pacing" - "pages" - "paper" - "passive-voice" - "perspective" - "philosophy" - "plagiarism" - "planning" - "playwriting" - "plot" - "poetry" - "preparation" - "press-release" - "printing" - "process" - "prologues" - "proofreading" - "pseudonym" - "publication" - "publisher" - "publishing" - "punctuation" - "queries" - "quotes" - "readers" - "research" - "resources" - "resume" - "reviews" - "revision" - "rhythm" - "romance" - "rules" - "sales" - "scene" - "science" - "science-fiction" - "scientific-publishing" - "screenplay" - "screenwriting" - "script" - "scriptwriting" - "scrivener" - "self-preservation" - "self-publishing" - "series" - "setting" - "sex" - "shared" - "short-fiction" - "short-story" - "smla" - "software" - "songwriting" - "storyline" - "structure" - "style" - "submission-tracking" - "submitting-work" - "suspense" - "symbolism" - "synopsis" - "table-of-contents" - "tablets" - "target" - "technical-writing" - "technique" - "tenses" - "terminology" - "text-analysis" - "theme" - "thesaurus" - "third-person" - "thriller" - "time" - "titles" - "tone" - "tools" - "trademark" - "translation" - "tropes" - "turning-point" - "typing" - "untagged" - "verse" - "version-control" - "videogame" - "viewpoint" - "vocabulary" - "websites" - "word-choice" - "wordcount" - "world-building" - "writers-block" - "writing-groups" - "writing-programs" - "young-adult") -- cgit v1.2.3