Graph database Analysis of the Steam Network
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.

283 lines
13 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Jrtechs Steam Friend Graph Project</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  8. <link rel="stylesheet" href="css/bootstrap.css" media="screen">
  9. <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  10. <link rel="apple-touch-icon" sizes="180x180" href="./img/favicon/apple-touch-icon.png">
  11. <link rel="icon" type="image/png" sizes="32x32" href="./img/favicon/favicon-32x32.png">
  12. <link rel="icon" type="image/png" sizes="16x16" href="./img/favicon/favicon-16x16.png">
  13. <link rel="manifest" href="./img/favicon/site.webmanifest">
  14. <link rel="mask-icon" href="./img/favicon/safari-pinned-tab.svg" color="#5bbad5">
  15. <meta name="msapplication-TileColor" content="#da532c">
  16. <meta name="theme-color" content="#498FBE">
  17. </head>
  18. <body>
  19. <div class="navbar navbar-expand-lg fixed-top navbar-dark bg-primary">
  20. <div class="container">
  21. <a class="navbar-brand" href="#">Steam Graph Project</a>
  22. <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
  23. <span class="navbar-toggler-icon"></span>
  24. </button>
  25. <div class="collapse navbar-collapse" id="navbarSupportedContent">
  26. <ul class="navbar-nav mr-auto">
  27. <li class="nav-item">
  28. <a class="nav-link" href="index.html">Home</a>
  29. </li>
  30. <li class="nav-item">
  31. <a class="nav-link" href="graphs.html">Graphs<span class="sr-only">(current)</span></a>
  32. </li>
  33. <!--<li class="nav-item">-->
  34. <!--<a class="nav-link" href="profile.html">Profile Look-Up</a>-->
  35. <!--</li>-->
  36. <li class="nav-item">
  37. <a class="nav-link active" href="faq.html">FAQ</a>
  38. </li>
  39. </ul>
  40. <ul class="nav navbar-nav navbar-right">
  41. <li>
  42. <a class="nav-link" href="https://jrtechs.net">Blog</a>
  43. </li>
  44. <li>
  45. <a class="nav-link" href="https://jrtechs.me">Resume</a>
  46. </li>
  47. <li>
  48. <a class="nav-link" href="https://github.com/jrtechs">Github</a>
  49. </li>
  50. </ul>
  51. </div>
  52. </div>
  53. </div>
  54. <div class="container">
  55. <br><br><br>
  56. <h1 class="align-content-center">Frequently asked questions</h1>
  57. <div class="card-group" id="faqAccordion">
  58. <div class="row w-100">
  59. <div class="card card-body ">
  60. <div class="panel-heading accordion-toggle question-toggle collapsed" data-toggle="collapse" data-parent="#faqAccordion" data-target="#question0">
  61. <h4 class="panel-title">
  62. <a href="#" class="ing">Q: How do I get my Steam ID?</a>
  63. </h4>
  64. </div>
  65. <div id="question0" class="panel-collapse collapse" style="height: 0px;">
  66. <div class="panel-body">
  67. <h5><span class="label label-primary">Answer</span>
  68. </h5>
  69. <p>
  70. Option 1:<br>
  71. If you have steam open, simply click on the profile which you would like to view
  72. from your friends list. The steam ID will be in the url that appears in the steam
  73. browser.
  74. <img src="img/faq/steamIdOption2.png">
  75. </p>
  76. <p>
  77. Option 2:<br>
  78. If you only know the steam username, you can use steam ID look up sites like
  79. <a href="https://steamid.io/">STEAMID I/O</a>. For this website, you will want
  80. to use the steamID64 number.
  81. <img src="img/faq/steamId.png">
  82. </p>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. <div class="row w-100">
  88. <div class="card card-body ">
  89. <div class="panel-heading accordion-toggle collapsed question-toggle" data-toggle="collapse" data-parent="#faqAccordion" data-target="#question1">
  90. <h4 class="panel-title">
  91. <a href="#" class="ing">Q: Why did you make this?</a>
  92. </h4>
  93. </div>
  94. <div id="question1" class="panel-collapse collapse" style="height: 0px;">
  95. <div class="panel-body">
  96. <h5><span class="label label-primary">Answer</span></h5>
  97. <p>Great question, I will get back to you on that one.</p>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="row w-100">
  103. <div class="card card-body ">
  104. <div class="panel-heading accordion-toggle collapsed question-toggle" data-toggle="collapse" data-parent="#faqAccordion" data-target="#question2">
  105. <h4 class="panel-title">
  106. <a href="#" class="ing">Q: Why is the back end written in Java?</a>
  107. </h4>
  108. </div>
  109. <div id="question2" class="panel-collapse collapse" style="height: 0px;">
  110. <div class="panel-body">
  111. <h5><span class="label label-primary">Answer</span></h5>
  112. <p>Contrary to popular belief, Java is not a <i>terrible</i> language. For this project
  113. I needed something that was easy to work with a Gremlin database -- the tinkerpop framework makes
  114. this very convenient. Overall, I needed a backend because I cannot dish out my steam api key to users.
  115. Plus, this way I can cache steam friends making graph creation times faster.</p>
  116. <img src="img/faq/java.png">
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. <div class="row w-100">
  122. <div class="card card-body ">
  123. <div class="panel-heading accordion-toggle collapsed question-toggle" data-toggle="collapse" data-parent="#faqAccordion" data-target="#question3">
  124. <h4 class="panel-title">
  125. <a href="#" class="ing">Q: Does steam really allow you to do this?</a>
  126. </h4>
  127. </div>
  128. <div id="question3" class="panel-collapse collapse" style="height: 0px;">
  129. <div class="panel-body">
  130. <h5><span class="label label-primary">Answer</span></h5>
  131. <p>Yes. You can read all about Steam's API usage <a href="https://steamcommunity.com/dev/apiterms">here</a>.</p>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="row w-100">
  137. <div class="card card-body ">
  138. <div class="panel-heading accordion-toggle collapsed question-toggle" data-toggle="collapse" data-parent="#faqAccordion" data-target="#question5">
  139. <h4 class="panel-title">
  140. <a href="#" class="ing">Q: Can I run my own Steam friend graph server?</a>
  141. </h4>
  142. </div>
  143. <div id="question5" class="panel-collapse collapse" style="height: 0px;">
  144. <div class="panel-body">
  145. <h5><span class="label label-primary">Answer</span></h5>
  146. <p>Go for it, all the code is on <a href="https://github.com/jrtechs/SteamFriendsGraph">GitHub</a>. I am going to be making a "comprehensive" docs which
  147. should explain how to run this.</p>
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. <div class="row w-100">
  153. <div class="card card-body ">
  154. <div class="panel-heading accordion-toggle collapsed question-toggle" data-toggle="collapse" data-parent="#faqAccordion" data-target="#question6">
  155. <h4 class="panel-title">
  156. <a href="#" class="ing">Q: Why do I not see all my friends?</a>
  157. </h4>
  158. </div>
  159. <div id="question6" class="panel-collapse collapse" style="height: 0px;">
  160. <div class="panel-body">
  161. <h5><span class="label label-primary">Answer</span></h5>
  162. <p>Since the server caches all the friend requests in a local graph database, it is possible to
  163. not see all your friends if you recently added them. I am working on a solution to this,
  164. however, I don't want to excessively hammer the steam API if I don't have to.</p>
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. <br>
  171. <center><img class="w-50" src="img/faq/faqGraph.png" /></center>
  172. <br>
  173. </div>
  174. <!-
  175. ┈┈╱▔▔▔▔▔╲┈┈┈HM┈HM
  176. ┈╱┈┈╱▔╲╲╲▏┈┈┈HMMM
  177. ╱┈┈╱━╱▔▔▔▔▔╲━╮┈┈
  178. ▏┈▕┃▕╱▔╲╱▔╲▕╮┃┈┈
  179. ▏┈▕╰━▏▊▕▕▋▕▕━╯┈┈
  180. ╲┈┈╲╱▔╭╮▔▔┳╲╲┈┈┈
  181. ┈╲┈┈▏╭━━━━╯▕▕┈┈┈
  182. ┈┈╲┈╲▂▂▂▂▂▂╱╱┈┈┈
  183. ┈┈┈┈▏┊┈┈┈┈┊┈┈┈╲┈
  184. ┈┈┈┈▏┊┈┈┈┈┊▕╲┈┈╲
  185. ┈╱▔╲▏┊┈┈┈┈┊▕╱▔╲▕
  186. ┈▏ ┈┈┈╰┈┈┈┈╯┈┈┈▕▕
  187. ┈╲┈┈┈╲┈┈┈┈╱┈┈┈╱┈╲
  188. ┈┈╲┈┈▕▔▔▔▔▏┈┈╱╲╲╲▏
  189. ┈╱▔┈┈▕┈┈┈┈▏┈┈▔╲▔▔
  190. ┈╲▂▂▂╱┈┈┈┈╲▂▂▂╱┈
  191. If you are seeing this monkey that means that you are interested in my
  192. code. Yay!! If you are not here to hack me ... you should really consider
  193. contributing to some of my public projects on github.
  194. https://github.com/jrtechs
  195. -->
  196. <!-- Footer -->
  197. <footer class="text-center">
  198. <div class="footer-above">
  199. <div class="container">
  200. <div class="row">
  201. <div class="footer-col col-md-4">
  202. <h3>Location</h3>
  203. <p>Rochester Institute of Technology
  204. <br>1 Lomb Memorial Dr, Rochester, NY 14623</p>
  205. </div>
  206. <div class="footer-col col-md-4">
  207. <h3>Around the Web</h3>
  208. <ul class="list-inline">
  209. <li class="list-inline-item">
  210. <a class="btn-social btn-outline" href="https://www.youtube.com/c/JrtechsNet">
  211. <i class="fa fa-fw fa-youtube"></i>
  212. </a>
  213. </li>
  214. <li class="list-inline-item">
  215. <a class="btn-social btn-outline" href="https://github.com/jrtechs">
  216. <i class="fa fa-fw fa-github"></i>
  217. </a>
  218. </li>
  219. <li class="list-inline-item">
  220. <a class="btn-social btn-outline" href="http://jrtechs.net">
  221. <i class="fa fa-fw fa-wordpress"></i>
  222. </a>
  223. </li>
  224. </ul>
  225. </div>
  226. <div class="footer-col col-md-4">
  227. <h3>About This Website</h3>
  228. <p>Check out the source code for this website on my
  229. <a href="https://github.com/jrtechs">github</a>.</p>
  230. </div>
  231. </div>
  232. </div>
  233. </div>
  234. <div class="footer-below">
  235. <div class="container">
  236. <div class="row">
  237. <div class="col-lg-12">
  238. <p class="m-0 text-center text-white"><a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">CC-BY-SA 4.0</a> <script type="text/javascript">
  239. document.write(new Date().getFullYear());
  240. </script> Jrtechs</p>
  241. </div>
  242. </div>
  243. </div>
  244. </div>
  245. </footer>
  246. <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
  247. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
  248. <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
  249. </body>
  250. </html>