A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

93 lines
4.2 KiB

  1. = extends "layout.html"
  2. = block title
  3. about
  4. = endblock
  5. = block head
  6. {{ assets.tag("lib/jquery.min.js") }}
  7. {{ assets.tag("main.css") }}
  8. {{ assets.tag("about.css") }}
  9. = endblock
  10. = block after_body
  11. <div id="img-1" class="bg" speed="-1.25"></div>
  12. <div id="img-2" class="bg" speed="1.4"></div>
  13. <div id="img-3" class="bg" speed="1.4"></div>
  14. <div id="img-4" class="bg" speed="1.4"></div>
  15. <div id="top" class="section">
  16. <div class="centered">
  17. <h1><span>&raquo;</span> What</h1>
  18. <span id="title">bitshift</span> is an <a href="https://github.com/earwig/bitshift">open-source</a>
  19. online source-code search engine, developed by programmers, for programmers. The engine currently aggregates
  20. publicly-available code from two online frameworks &#8211; <a href="https://github.com/">GitHub</a> and <a
  21. href="https://bitbucket.org/">Bitbucket</a> &#8211; but has the necessary infrastructure to quickly incorporate
  22. others, like <a href="http://stackoverflow.com/">StackOverflow</a> and
  23. <a href="https://gitorious.org/">Gitorious</a>. <span id="title">bitshift</span> supports a robust query
  24. language, which allows users to search for specific languages, files, dates of creation and last modifcation,
  25. and symbols (function, class, and variable names), amongst other attributes.
  26. Watch our introductory video:
  27. <div id="wrap">
  28. <iframe id="vimeo" src="//player.vimeo.com/video/98697078" width="100%" height="100%" frameborder="0"
  29. webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
  30. </div>
  31. </div>
  32. </div>
  33. <div class="section">
  34. <div id="how" class="centered">
  35. <h1><span>&raquo;</span> How</h1>
  36. <span id="title">bitshift</span> has an extensive back-end, roughly divided into three sections:
  37. <ul>
  38. <li><span>indexer</span> : finds and downloads code from online frameworks</li>
  39. <li><span>parser</span> : parses newly crawled code, identifying its symbols</li>
  40. <li><span>database</span> : interprets and compiles user searches into database queries</li>
  41. </ul>
  42. The engine was developed over the span of four months, and is primarily implemented in <b>Python</b>, but has
  43. parsers in <b>Ruby</b>, <b>Java</b>, and a number of other languages.
  44. </div>
  45. </div>
  46. <div class="section">
  47. <div class="centered">
  48. <h1><span>&raquo;</span> Who</h1>
  49. <span id="title">bitshift</span> was developed by three seniors from New York City's Stuyvesant High School.
  50. <div id="top" class="person">
  51. <div class="photo">
  52. <a href="https://github.com/breuckelen"><img src="img/about/bio1.jpg" alt="Benjamin Attal's photo."></a>
  53. </div>
  54. <div class="bio">
  55. <h1><a href="https://github.com/breuckelen">Benjamin Attal</a></h1>
  56. Benjamin Attal hacked together <span id="title">bitshift</span>'s parsers and is working on
  57. data-visualization for bitshift's statistics page. He is a software developer and entrepreneur who enjoys
  58. listening to and playing country music, as well as working with smart people.
  59. </div>
  60. </div>
  61. <div class="person">
  62. <div class="photo">
  63. <a href="https://github.com/earwig"><img src="img/about/bio2.jpg" alt="Ben Kurtovic's photo."></a>
  64. </div>
  65. <div class="bio">
  66. <h1><a href="https://github.com/earwig">Ben Kurtovic</a></h1> Ben Kurtovic designed <span
  67. id="title">bitshift</span>’s database and acts as its server admin. In his free time, he edits Wikipedia
  68. and invents new ways of confusing the hell out of people through source code obfuscation.
  69. </div>
  70. </div>
  71. <div class="person">
  72. <div class="photo">
  73. <a href="https://github.com/sevko"><img src="img/about/bio3.jpg" alt="Severyn Kozak's photo."></a>
  74. </div>
  75. <div class="bio">
  76. <h1><a href="https://github.com/sevko">Severyn Kozak</a></h1>
  77. Severyn developed <span id="title">bitshift</span>'s crawlers and its front-end. He loves skiing, mathematics
  78. that he doesn't understand, and the art of good software development.
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. {{ assets.tag("about.js") }}
  84. = endblock