stopwords.go 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487
  1. package rules
  2. // TODO introduce skiplists:
  3. // https://github.com/danielmiessler/SecLists/blob/master/Miscellaneous/wordlist-skipfish.fuzz.txt
  4. // https://github.com/e3b0c442/keywords
  5. // https://gist.github.com/maxtruxa/b2ca551e42d3aead2b3d
  6. // https://github.com/HChakraborty/projects/commit/e860cb863ee9585c38db8360814b04ef9fa1bdce
  7. // https://github.com/UraniumX92/Discord-Bot-using-py/tree/224b2b71a58c25f420ce980f2ea49627b4b646f1/Data%20Files
  8. // https://github.com/Meen11/BSBI-Indexing/blob/63032017aa24f3111f18468607cd0db5997bb891/datasets/citeseer/11/10.1.1.27.6385.txt
  9. var DefaultStopWords = []string{
  10. "client",
  11. "endpoint",
  12. "vpn",
  13. "_ec2_",
  14. "aws_",
  15. "authorize",
  16. "author",
  17. "define",
  18. "config",
  19. "credential",
  20. "setting",
  21. "sample",
  22. "xxxxxx",
  23. "000000",
  24. "buffer",
  25. "delete",
  26. "aaaaaa",
  27. "fewfwef",
  28. "getenv",
  29. "env_",
  30. "system",
  31. "example",
  32. "ecdsa",
  33. "sha256",
  34. "sha1",
  35. "sha2",
  36. "md5",
  37. "alert",
  38. "wizard",
  39. "target",
  40. "onboard",
  41. "welcome",
  42. "page",
  43. "exploit",
  44. "experiment",
  45. "expire",
  46. "rabbitmq",
  47. "scraper",
  48. "widget",
  49. "music",
  50. "dns_",
  51. "dns-",
  52. "yahoo",
  53. "want",
  54. "json",
  55. "action",
  56. "script",
  57. "fix_",
  58. "fix-",
  59. "develop",
  60. "compas",
  61. "stripe",
  62. "service",
  63. "master",
  64. "metric",
  65. "tech",
  66. "gitignore",
  67. "rich",
  68. "open",
  69. "stack",
  70. "irc_",
  71. "irc-",
  72. "sublime",
  73. "kohana",
  74. "has_",
  75. "has-",
  76. "fabric",
  77. "wordpres",
  78. "role",
  79. "osx_",
  80. "osx-",
  81. "boost",
  82. "addres",
  83. "queue",
  84. "working",
  85. "sandbox",
  86. "internet",
  87. "print",
  88. "vision",
  89. "tracking",
  90. "being",
  91. "generator",
  92. "traffic",
  93. "world",
  94. "pull",
  95. "rust",
  96. "watcher",
  97. "small",
  98. "auth",
  99. "full",
  100. "hash",
  101. "more",
  102. "install",
  103. "auto",
  104. "complete",
  105. "learn",
  106. "paper",
  107. "installer",
  108. "research",
  109. "acces",
  110. "last",
  111. "binding",
  112. "spine",
  113. "into",
  114. "chat",
  115. "algorithm",
  116. "resource",
  117. "uploader",
  118. "video",
  119. "maker",
  120. "next",
  121. "proc",
  122. "lock",
  123. "robot",
  124. "snake",
  125. "patch",
  126. "matrix",
  127. "drill",
  128. "terminal",
  129. "term",
  130. "stuff",
  131. "genetic",
  132. "generic",
  133. "identity",
  134. "audit",
  135. "pattern",
  136. "audio",
  137. "web_",
  138. "web-",
  139. "crud",
  140. "problem",
  141. "statu",
  142. "cms-",
  143. "cms_",
  144. "arch",
  145. "coffee",
  146. "workflow",
  147. "changelog",
  148. "another",
  149. "uiview",
  150. "content",
  151. "kitchen",
  152. "gnu_",
  153. "gnu-",
  154. "gnu.",
  155. "conf",
  156. "couchdb",
  157. "client",
  158. "opencv",
  159. "rendering",
  160. "update",
  161. "concept",
  162. "varnish",
  163. "gui_",
  164. "gui-",
  165. "gui.",
  166. "version",
  167. "shared",
  168. "extra",
  169. "product",
  170. "still",
  171. "not_",
  172. "not-",
  173. "not.",
  174. "drop",
  175. "ring",
  176. "png_",
  177. "png-",
  178. "png.",
  179. "actively",
  180. "import",
  181. "output",
  182. "backup",
  183. "start",
  184. "embedded",
  185. "registry",
  186. "pool",
  187. "semantic",
  188. "instagram",
  189. "bash",
  190. "system",
  191. "ninja",
  192. "drupal",
  193. "jquery",
  194. "polyfill",
  195. "physic",
  196. "league",
  197. "guide",
  198. "pack",
  199. "synopsi",
  200. "sketch",
  201. "injection",
  202. "svg_",
  203. "svg-",
  204. "svg.",
  205. "friendly",
  206. "wave",
  207. "convert",
  208. "manage",
  209. "camera",
  210. "link",
  211. "slide",
  212. "timer",
  213. "wrapper",
  214. "gallery",
  215. "url_",
  216. "url-",
  217. "url.",
  218. "todomvc",
  219. "requirej",
  220. "party",
  221. "http",
  222. "payment",
  223. "async",
  224. "library",
  225. "home",
  226. "coco",
  227. "gaia",
  228. "display",
  229. "universal",
  230. "function",
  231. "metadata",
  232. "hipchat",
  233. "under",
  234. "room",
  235. "config",
  236. "personal",
  237. "realtime",
  238. "resume",
  239. "database",
  240. "testing",
  241. "tiny",
  242. "basic",
  243. "forum",
  244. "meetup",
  245. "yet_",
  246. "yet-",
  247. "yet.",
  248. "cento",
  249. "dead",
  250. "fluentd",
  251. "editor",
  252. "utilitie",
  253. "run_",
  254. "run-",
  255. "run.",
  256. "box_",
  257. "box-",
  258. "box.",
  259. "bot_",
  260. "bot-",
  261. "bot.",
  262. "making",
  263. "sample",
  264. "group",
  265. "monitor",
  266. "ajax",
  267. "parallel",
  268. "cassandra",
  269. "ultimate",
  270. "site",
  271. "get_",
  272. "get-",
  273. "get.",
  274. "gen_",
  275. "gen-",
  276. "gen.",
  277. "gem_",
  278. "gem-",
  279. "gem.",
  280. "extended",
  281. "image",
  282. "knife",
  283. "asset",
  284. "nested",
  285. "zero",
  286. "plugin",
  287. "bracket",
  288. "mule",
  289. "mozilla",
  290. "number",
  291. "act_",
  292. "act-",
  293. "act.",
  294. "map_",
  295. "map-",
  296. "map.",
  297. "micro",
  298. "debug",
  299. "openshift",
  300. "chart",
  301. "expres",
  302. "backend",
  303. "task",
  304. "source",
  305. "translate",
  306. "jbos",
  307. "composer",
  308. "sqlite",
  309. "profile",
  310. "mustache",
  311. "mqtt",
  312. "yeoman",
  313. "have",
  314. "builder",
  315. "smart",
  316. "like",
  317. "oauth",
  318. "school",
  319. "guideline",
  320. "captcha",
  321. "filter",
  322. "bitcoin",
  323. "bridge",
  324. "color",
  325. "toolbox",
  326. "discovery",
  327. "new_",
  328. "new-",
  329. "new.",
  330. "dashboard",
  331. "when",
  332. "setting",
  333. "level",
  334. "post",
  335. "standard",
  336. "port",
  337. "platform",
  338. "yui_",
  339. "yui-",
  340. "yui.",
  341. "grunt",
  342. "animation",
  343. "haskell",
  344. "icon",
  345. "latex",
  346. "cheat",
  347. "lua_",
  348. "lua-",
  349. "lua.",
  350. "gulp",
  351. "case",
  352. "author",
  353. "without",
  354. "simulator",
  355. "wifi",
  356. "directory",
  357. "lisp",
  358. "list",
  359. "flat",
  360. "adventure",
  361. "story",
  362. "storm",
  363. "gpu_",
  364. "gpu-",
  365. "gpu.",
  366. "store",
  367. "caching",
  368. "attention",
  369. "solr",
  370. "logger",
  371. "demo",
  372. "shortener",
  373. "hadoop",
  374. "finder",
  375. "phone",
  376. "pipeline",
  377. "range",
  378. "textmate",
  379. "showcase",
  380. "app_",
  381. "app-",
  382. "app.",
  383. "idiomatic",
  384. "edit",
  385. "our_",
  386. "our-",
  387. "our.",
  388. "out_",
  389. "out-",
  390. "out.",
  391. "sentiment",
  392. "linked",
  393. "why_",
  394. "why-",
  395. "why.",
  396. "local",
  397. "cube",
  398. "gmail",
  399. "job_",
  400. "job-",
  401. "job.",
  402. "rpc_",
  403. "rpc-",
  404. "rpc.",
  405. "contest",
  406. "tcp_",
  407. "tcp-",
  408. "tcp.",
  409. "usage",
  410. "buildout",
  411. "weather",
  412. "transfer",
  413. "automated",
  414. "sphinx",
  415. "issue",
  416. "sas_",
  417. "sas-",
  418. "sas.",
  419. "parallax",
  420. "jasmine",
  421. "addon",
  422. "machine",
  423. "solution",
  424. "dsl_",
  425. "dsl-",
  426. "dsl.",
  427. "episode",
  428. "menu",
  429. "theme",
  430. "best",
  431. "adapter",
  432. "debugger",
  433. "chrome",
  434. "tutorial",
  435. "life",
  436. "step",
  437. "people",
  438. "joomla",
  439. "paypal",
  440. "developer",
  441. "solver",
  442. "team",
  443. "current",
  444. "love",
  445. "visual",
  446. "date",
  447. "data",
  448. "canva",
  449. "container",
  450. "future",
  451. "xml_",
  452. "xml-",
  453. "xml.",
  454. "twig",
  455. "nagio",
  456. "spatial",
  457. "original",
  458. "sync",
  459. "archived",
  460. "refinery",
  461. "science",
  462. "mapping",
  463. "gitlab",
  464. "play",
  465. "ext_",
  466. "ext-",
  467. "ext.",
  468. "session",
  469. "impact",
  470. "set_",
  471. "set-",
  472. "set.",
  473. "see_",
  474. "see-",
  475. "see.",
  476. "migration",
  477. "commit",
  478. "community",
  479. "shopify",
  480. "what'",
  481. "cucumber",
  482. "statamic",
  483. "mysql",
  484. "location",
  485. "tower",
  486. "line",
  487. "code",
  488. "amqp",
  489. "hello",
  490. "send",
  491. "index",
  492. "high",
  493. "notebook",
  494. "alloy",
  495. "python",
  496. "field",
  497. "document",
  498. "soap",
  499. "edition",
  500. "email",
  501. "php_",
  502. "php-",
  503. "php.",
  504. "command",
  505. "transport",
  506. "official",
  507. "upload",
  508. "study",
  509. "secure",
  510. "angularj",
  511. "akka",
  512. "scalable",
  513. "package",
  514. "request",
  515. "con_",
  516. "con-",
  517. "con.",
  518. "flexible",
  519. "security",
  520. "comment",
  521. "module",
  522. "flask",
  523. "graph",
  524. "flash",
  525. "apache",
  526. "change",
  527. "window",
  528. "space",
  529. "lambda",
  530. "sheet",
  531. "bookmark",
  532. "carousel",
  533. "friend",
  534. "objective",
  535. "jekyll",
  536. "bootstrap",
  537. "first",
  538. "article",
  539. "gwt_",
  540. "gwt-",
  541. "gwt.",
  542. "classic",
  543. "media",
  544. "websocket",
  545. "touch",
  546. "desktop",
  547. "real",
  548. "read",
  549. "recorder",
  550. "moved",
  551. "storage",
  552. "validator",
  553. "add-on",
  554. "pusher",
  555. "scs_",
  556. "scs-",
  557. "scs.",
  558. "inline",
  559. "asp_",
  560. "asp-",
  561. "asp.",
  562. "timeline",
  563. "base",
  564. "encoding",
  565. "ffmpeg",
  566. "kindle",
  567. "tinymce",
  568. "pretty",
  569. "jpa_",
  570. "jpa-",
  571. "jpa.",
  572. "used",
  573. "user",
  574. "required",
  575. "webhook",
  576. "download",
  577. "resque",
  578. "espresso",
  579. "cloud",
  580. "mongo",
  581. "benchmark",
  582. "pure",
  583. "cakephp",
  584. "modx",
  585. "mode",
  586. "reactive",
  587. "fuel",
  588. "written",
  589. "flickr",
  590. "mail",
  591. "brunch",
  592. "meteor",
  593. "dynamic",
  594. "neo_",
  595. "neo-",
  596. "neo.",
  597. "new_",
  598. "new-",
  599. "new.",
  600. "net_",
  601. "net-",
  602. "net.",
  603. "typo",
  604. "type",
  605. "keyboard",
  606. "erlang",
  607. "adobe",
  608. "logging",
  609. "ckeditor",
  610. "message",
  611. "iso_",
  612. "iso-",
  613. "iso.",
  614. "hook",
  615. "ldap",
  616. "folder",
  617. "reference",
  618. "railscast",
  619. "www_",
  620. "www-",
  621. "www.",
  622. "tracker",
  623. "azure",
  624. "fork",
  625. "form",
  626. "digital",
  627. "exporter",
  628. "skin",
  629. "string",
  630. "template",
  631. "designer",
  632. "gollum",
  633. "fluent",
  634. "entity",
  635. "language",
  636. "alfred",
  637. "summary",
  638. "wiki",
  639. "kernel",
  640. "calendar",
  641. "plupload",
  642. "symfony",
  643. "foundry",
  644. "remote",
  645. "talk",
  646. "search",
  647. "dev_",
  648. "dev-",
  649. "dev.",
  650. "del_",
  651. "del-",
  652. "del.",
  653. "token",
  654. "idea",
  655. "sencha",
  656. "selector",
  657. "interface",
  658. "create",
  659. "fun_",
  660. "fun-",
  661. "fun.",
  662. "groovy",
  663. "query",
  664. "grail",
  665. "red_",
  666. "red-",
  667. "red.",
  668. "laravel",
  669. "monkey",
  670. "slack",
  671. "supported",
  672. "instant",
  673. "value",
  674. "center",
  675. "latest",
  676. "work",
  677. "but_",
  678. "but-",
  679. "but.",
  680. "bug_",
  681. "bug-",
  682. "bug.",
  683. "virtual",
  684. "tweet",
  685. "statsd",
  686. "studio",
  687. "path",
  688. "real-time",
  689. "frontend",
  690. "notifier",
  691. "coding",
  692. "tool",
  693. "firmware",
  694. "flow",
  695. "random",
  696. "mediawiki",
  697. "bosh",
  698. "been",
  699. "beer",
  700. "lightbox",
  701. "theory",
  702. "origin",
  703. "redmine",
  704. "hub_",
  705. "hub-",
  706. "hub.",
  707. "require",
  708. "pro_",
  709. "pro-",
  710. "pro.",
  711. "ant_",
  712. "ant-",
  713. "ant.",
  714. "any_",
  715. "any-",
  716. "any.",
  717. "recipe",
  718. "closure",
  719. "mapper",
  720. "event",
  721. "todo",
  722. "model",
  723. "redi",
  724. "provider",
  725. "rvm_",
  726. "rvm-",
  727. "rvm.",
  728. "program",
  729. "memcached",
  730. "rail",
  731. "silex",
  732. "foreman",
  733. "activity",
  734. "license",
  735. "strategy",
  736. "batch",
  737. "streaming",
  738. "fast",
  739. "use_",
  740. "use-",
  741. "use.",
  742. "usb_",
  743. "usb-",
  744. "usb.",
  745. "impres",
  746. "academy",
  747. "slider",
  748. "please",
  749. "layer",
  750. "cros",
  751. "now_",
  752. "now-",
  753. "now.",
  754. "miner",
  755. "extension",
  756. "own_",
  757. "own-",
  758. "own.",
  759. "app_",
  760. "app-",
  761. "app.",
  762. "debian",
  763. "symphony",
  764. "example",
  765. "feature",
  766. "serie",
  767. "tree",
  768. "project",
  769. "runner",
  770. "entry",
  771. "leetcode",
  772. "layout",
  773. "webrtc",
  774. "logic",
  775. "login",
  776. "worker",
  777. "toolkit",
  778. "mocha",
  779. "support",
  780. "back",
  781. "inside",
  782. "device",
  783. "jenkin",
  784. "contact",
  785. "fake",
  786. "awesome",
  787. "ocaml",
  788. "bit_",
  789. "bit-",
  790. "bit.",
  791. "drive",
  792. "screen",
  793. "prototype",
  794. "gist",
  795. "binary",
  796. "nosql",
  797. "rest",
  798. "overview",
  799. "dart",
  800. "dark",
  801. "emac",
  802. "mongoid",
  803. "solarized",
  804. "homepage",
  805. "emulator",
  806. "commander",
  807. "django",
  808. "yandex",
  809. "gradle",
  810. "xcode",
  811. "writer",
  812. "crm_",
  813. "crm-",
  814. "crm.",
  815. "jade",
  816. "startup",
  817. "error",
  818. "using",
  819. "format",
  820. "name",
  821. "spring",
  822. "parser",
  823. "scratch",
  824. "magic",
  825. "try_",
  826. "try-",
  827. "try.",
  828. "rack",
  829. "directive",
  830. "challenge",
  831. "slim",
  832. "counter",
  833. "element",
  834. "chosen",
  835. "doc_",
  836. "doc-",
  837. "doc.",
  838. "meta",
  839. "should",
  840. "button",
  841. "packet",
  842. "stream",
  843. "hardware",
  844. "android",
  845. "infinite",
  846. "password",
  847. "software",
  848. "ghost",
  849. "xamarin",
  850. "spec",
  851. "chef",
  852. "interview",
  853. "hubot",
  854. "mvc_",
  855. "mvc-",
  856. "mvc.",
  857. "exercise",
  858. "leaflet",
  859. "launcher",
  860. "air_",
  861. "air-",
  862. "air.",
  863. "photo",
  864. "board",
  865. "boxen",
  866. "way_",
  867. "way-",
  868. "way.",
  869. "computing",
  870. "welcome",
  871. "notepad",
  872. "portfolio",
  873. "cat_",
  874. "cat-",
  875. "cat.",
  876. "can_",
  877. "can-",
  878. "can.",
  879. "magento",
  880. "yaml",
  881. "domain",
  882. "card",
  883. "yii_",
  884. "yii-",
  885. "yii.",
  886. "checker",
  887. "browser",
  888. "upgrade",
  889. "only",
  890. "progres",
  891. "aura",
  892. "ruby_",
  893. "ruby-",
  894. "ruby.",
  895. "polymer",
  896. "util",
  897. "lite",
  898. "hackathon",
  899. "rule",
  900. "log_",
  901. "log-",
  902. "log.",
  903. "opengl",
  904. "stanford",
  905. "skeleton",
  906. "history",
  907. "inspector",
  908. "help",
  909. "soon",
  910. "selenium",
  911. "lab_",
  912. "lab-",
  913. "lab.",
  914. "scheme",
  915. "schema",
  916. "look",
  917. "ready",
  918. "leveldb",
  919. "docker",
  920. "game",
  921. "minimal",
  922. "logstash",
  923. "messaging",
  924. "within",
  925. "heroku",
  926. "mongodb",
  927. "kata",
  928. "suite",
  929. "picker",
  930. "win_",
  931. "win-",
  932. "win.",
  933. "wip_",
  934. "wip-",
  935. "wip.",
  936. "panel",
  937. "started",
  938. "starter",
  939. "front-end",
  940. "detector",
  941. "deploy",
  942. "editing",
  943. "based",
  944. "admin",
  945. "capture",
  946. "spree",
  947. "page",
  948. "bundle",
  949. "goal",
  950. "rpg_",
  951. "rpg-",
  952. "rpg.",
  953. "setup",
  954. "side",
  955. "mean",
  956. "reader",
  957. "cookbook",
  958. "mini",
  959. "modern",
  960. "seed",
  961. "dom_",
  962. "dom-",
  963. "dom.",
  964. "doc_",
  965. "doc-",
  966. "doc.",
  967. "dot_",
  968. "dot-",
  969. "dot.",
  970. "syntax",
  971. "sugar",
  972. "loader",
  973. "website",
  974. "make",
  975. "kit_",
  976. "kit-",
  977. "kit.",
  978. "protocol",
  979. "human",
  980. "daemon",
  981. "golang",
  982. "manager",
  983. "countdown",
  984. "connector",
  985. "swagger",
  986. "map_",
  987. "map-",
  988. "map.",
  989. "mac_",
  990. "mac-",
  991. "mac.",
  992. "man_",
  993. "man-",
  994. "man.",
  995. "orm_",
  996. "orm-",
  997. "orm.",
  998. "org_",
  999. "org-",
  1000. "org.",
  1001. "little",
  1002. "zsh_",
  1003. "zsh-",
  1004. "zsh.",
  1005. "shop",
  1006. "show",
  1007. "workshop",
  1008. "money",
  1009. "grid",
  1010. "server",
  1011. "octopres",
  1012. "svn_",
  1013. "svn-",
  1014. "svn.",
  1015. "ember",
  1016. "embed",
  1017. "general",
  1018. "file",
  1019. "important",
  1020. "dropbox",
  1021. "portable",
  1022. "public",
  1023. "docpad",
  1024. "fish",
  1025. "sbt_",
  1026. "sbt-",
  1027. "sbt.",
  1028. "done",
  1029. "para",
  1030. "network",
  1031. "common",
  1032. "readme",
  1033. "popup",
  1034. "simple",
  1035. "purpose",
  1036. "mirror",
  1037. "single",
  1038. "cordova",
  1039. "exchange",
  1040. "object",
  1041. "design",
  1042. "gateway",
  1043. "account",
  1044. "lamp",
  1045. "intellij",
  1046. "math",
  1047. "mit_",
  1048. "mit-",
  1049. "mit.",
  1050. "control",
  1051. "enhanced",
  1052. "emitter",
  1053. "multi",
  1054. "add_",
  1055. "add-",
  1056. "add.",
  1057. "about",
  1058. "socket",
  1059. "preview",
  1060. "vagrant",
  1061. "cli_",
  1062. "cli-",
  1063. "cli.",
  1064. "powerful",
  1065. "top_",
  1066. "top-",
  1067. "top.",
  1068. "radio",
  1069. "watch",
  1070. "fluid",
  1071. "amazon",
  1072. "report",
  1073. "couchbase",
  1074. "automatic",
  1075. "detection",
  1076. "sprite",
  1077. "pyramid",
  1078. "portal",
  1079. "advanced",
  1080. "plu_",
  1081. "plu-",
  1082. "plu.",
  1083. "runtime",
  1084. "git_",
  1085. "git-",
  1086. "git.",
  1087. "uri_",
  1088. "uri-",
  1089. "uri.",
  1090. "haml",
  1091. "node",
  1092. "sql_",
  1093. "sql-",
  1094. "sql.",
  1095. "cool",
  1096. "core",
  1097. "obsolete",
  1098. "handler",
  1099. "iphone",
  1100. "extractor",
  1101. "array",
  1102. "copy",
  1103. "nlp_",
  1104. "nlp-",
  1105. "nlp.",
  1106. "reveal",
  1107. "pop_",
  1108. "pop-",
  1109. "pop.",
  1110. "engine",
  1111. "parse",
  1112. "check",
  1113. "html",
  1114. "nest",
  1115. "all_",
  1116. "all-",
  1117. "all.",
  1118. "chinese",
  1119. "buildpack",
  1120. "what",
  1121. "tag_",
  1122. "tag-",
  1123. "tag.",
  1124. "proxy",
  1125. "style",
  1126. "cookie",
  1127. "feed",
  1128. "restful",
  1129. "compiler",
  1130. "creating",
  1131. "prelude",
  1132. "context",
  1133. "java",
  1134. "rspec",
  1135. "mock",
  1136. "backbone",
  1137. "light",
  1138. "spotify",
  1139. "flex",
  1140. "related",
  1141. "shell",
  1142. "which",
  1143. "clas",
  1144. "webapp",
  1145. "swift",
  1146. "ansible",
  1147. "unity",
  1148. "console",
  1149. "tumblr",
  1150. "export",
  1151. "campfire",
  1152. "conway'",
  1153. "made",
  1154. "riak",
  1155. "hero",
  1156. "here",
  1157. "unix",
  1158. "unit",
  1159. "glas",
  1160. "smtp",
  1161. "how_",
  1162. "how-",
  1163. "how.",
  1164. "hot_",
  1165. "hot-",
  1166. "hot.",
  1167. "debug",
  1168. "release",
  1169. "diff",
  1170. "player",
  1171. "easy",
  1172. "right",
  1173. "old_",
  1174. "old-",
  1175. "old.",
  1176. "animate",
  1177. "time",
  1178. "push",
  1179. "explorer",
  1180. "course",
  1181. "training",
  1182. "nette",
  1183. "router",
  1184. "draft",
  1185. "structure",
  1186. "note",
  1187. "salt",
  1188. "where",
  1189. "spark",
  1190. "trello",
  1191. "power",
  1192. "method",
  1193. "social",
  1194. "via_",
  1195. "via-",
  1196. "via.",
  1197. "vim_",
  1198. "vim-",
  1199. "vim.",
  1200. "select",
  1201. "webkit",
  1202. "github",
  1203. "ftp_",
  1204. "ftp-",
  1205. "ftp.",
  1206. "creator",
  1207. "mongoose",
  1208. "led_",
  1209. "led-",
  1210. "led.",
  1211. "movie",
  1212. "currently",
  1213. "pdf_",
  1214. "pdf-",
  1215. "pdf.",
  1216. "load",
  1217. "markdown",
  1218. "phalcon",
  1219. "input",
  1220. "custom",
  1221. "atom",
  1222. "oracle",
  1223. "phonegap",
  1224. "ubuntu",
  1225. "great",
  1226. "rdf_",
  1227. "rdf-",
  1228. "rdf.",
  1229. "popcorn",
  1230. "firefox",
  1231. "zip_",
  1232. "zip-",
  1233. "zip.",
  1234. "cuda",
  1235. "dotfile",
  1236. "static",
  1237. "openwrt",
  1238. "viewer",
  1239. "powered",
  1240. "graphic",
  1241. "les_",
  1242. "les-",
  1243. "les.",
  1244. "doe_",
  1245. "doe-",
  1246. "doe.",
  1247. "maven",
  1248. "word",
  1249. "eclipse",
  1250. "lab_",
  1251. "lab-",
  1252. "lab.",
  1253. "hacking",
  1254. "steam",
  1255. "analytic",
  1256. "option",
  1257. "abstract",
  1258. "archive",
  1259. "reality",
  1260. "switcher",
  1261. "club",
  1262. "write",
  1263. "kafka",
  1264. "arduino",
  1265. "angular",
  1266. "online",
  1267. "title",
  1268. "don't",
  1269. "contao",
  1270. "notice",
  1271. "analyzer",
  1272. "learning",
  1273. "zend",
  1274. "external",
  1275. "staging",
  1276. "busines",
  1277. "tdd_",
  1278. "tdd-",
  1279. "tdd.",
  1280. "scanner",
  1281. "building",
  1282. "snippet",
  1283. "modular",
  1284. "bower",
  1285. "stm_",
  1286. "stm-",
  1287. "stm.",
  1288. "lib_",
  1289. "lib-",
  1290. "lib.",
  1291. "alpha",
  1292. "mobile",
  1293. "clean",
  1294. "linux",
  1295. "nginx",
  1296. "manifest",
  1297. "some",
  1298. "raspberry",
  1299. "gnome",
  1300. "ide_",
  1301. "ide-",
  1302. "ide.",
  1303. "block",
  1304. "statistic",
  1305. "info",
  1306. "drag",
  1307. "youtube",
  1308. "koan",
  1309. "facebook",
  1310. "paperclip",
  1311. "art_",
  1312. "art-",
  1313. "art.",
  1314. "quality",
  1315. "tab_",
  1316. "tab-",
  1317. "tab.",
  1318. "need",
  1319. "dojo",
  1320. "shield",
  1321. "computer",
  1322. "stat",
  1323. "state",
  1324. "twitter",
  1325. "utility",
  1326. "converter",
  1327. "hosting",
  1328. "devise",
  1329. "liferay",
  1330. "updated",
  1331. "force",
  1332. "tip_",
  1333. "tip-",
  1334. "tip.",
  1335. "behavior",
  1336. "active",
  1337. "call",
  1338. "answer",
  1339. "deck",
  1340. "better",
  1341. "principle",
  1342. "ches",
  1343. "bar_",
  1344. "bar-",
  1345. "bar.",
  1346. "reddit",
  1347. "three",
  1348. "haxe",
  1349. "just",
  1350. "plug-in",
  1351. "agile",
  1352. "manual",
  1353. "tetri",
  1354. "super",
  1355. "beta",
  1356. "parsing",
  1357. "doctrine",
  1358. "minecraft",
  1359. "useful",
  1360. "perl",
  1361. "sharing",
  1362. "agent",
  1363. "switch",
  1364. "view",
  1365. "dash",
  1366. "channel",
  1367. "repo",
  1368. "pebble",
  1369. "profiler",
  1370. "warning",
  1371. "cluster",
  1372. "running",
  1373. "markup",
  1374. "evented",
  1375. "mod_",
  1376. "mod-",
  1377. "mod.",
  1378. // "api_", lin_api_ is used for linear
  1379. // "api-",
  1380. // "api.",
  1381. "share",
  1382. "csv_",
  1383. "csv-",
  1384. "csv.",
  1385. "response",
  1386. "good",
  1387. "house",
  1388. "connect",
  1389. "built",
  1390. "build",
  1391. "find",
  1392. "ipython",
  1393. "webgl",
  1394. "big_",
  1395. "big-",
  1396. "big.",
  1397. "google",
  1398. "scala",
  1399. "sdl_",
  1400. "sdl-",
  1401. "sdl.",
  1402. "sdk_",
  1403. "sdk-",
  1404. "sdk.",
  1405. "native",
  1406. "day_",
  1407. "day-",
  1408. "day.",
  1409. "puppet",
  1410. "text",
  1411. "routing",
  1412. "helper",
  1413. "linkedin",
  1414. "crawler",
  1415. "host",
  1416. "guard",
  1417. "merchant",
  1418. "poker",
  1419. "over",
  1420. "writing",
  1421. "free",
  1422. "classe",
  1423. "component",
  1424. "craft",
  1425. "nodej",
  1426. "phoenix",
  1427. "longer",
  1428. "quick",
  1429. "lazy",
  1430. "memory",
  1431. "clone",
  1432. "hacker",
  1433. "middleman",
  1434. "factory",
  1435. "motion",
  1436. "multiple",
  1437. "tornado",
  1438. "hack",
  1439. "ssh_",
  1440. "ssh-",
  1441. "ssh.",
  1442. "review",
  1443. "vimrc",
  1444. "driver",
  1445. "driven",
  1446. "blog",
  1447. "particle",
  1448. "table",
  1449. "intro",
  1450. "importer",
  1451. "thrift",
  1452. "xmpp",
  1453. "framework",
  1454. "refresh",
  1455. "react",
  1456. "font",
  1457. "librarie",
  1458. "variou",
  1459. "formatter",
  1460. "analysi",
  1461. "karma",
  1462. "scroll",
  1463. "tut_",
  1464. "tut-",
  1465. "tut.",
  1466. "apple",
  1467. "tag_",
  1468. "tag-",
  1469. "tag.",
  1470. "tab_",
  1471. "tab-",
  1472. "tab.",
  1473. "category",
  1474. "ionic",
  1475. "cache",
  1476. "homebrew",
  1477. "reverse",
  1478. "english",
  1479. "getting",
  1480. "shipping",
  1481. "clojure",
  1482. "boot",
  1483. "book",
  1484. "branch",
  1485. }