├── .gitattributes
├── Application
├── .gitignore
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── README.md
├── README.rdoc
├── Rakefile
├── app
│ ├── assets
│ │ ├── images
│ │ │ ├── .keep
│ │ │ ├── a.gif
│ │ │ ├── b1.png
│ │ │ ├── b2.png
│ │ │ ├── b3.png
│ │ │ ├── b4.png
│ │ │ ├── b5.png
│ │ │ ├── b7.png
│ │ │ └── loader.gif
│ │ ├── javascripts
│ │ │ ├── app.js
│ │ │ ├── app2.js
│ │ │ ├── application.js
│ │ │ ├── jquery-1.10.2.min.js
│ │ │ ├── pages.coffee
│ │ │ ├── scraper.js
│ │ │ └── scraper2.js
│ │ └── stylesheets
│ │ │ ├── application.css
│ │ │ ├── foundation.css
│ │ │ ├── foundation.min.css
│ │ │ ├── pages.scss
│ │ │ ├── style.css
│ │ │ └── styles.css
│ ├── controllers
│ │ ├── application_controller.rb
│ │ ├── believes_controller.rb
│ │ ├── compares_controller.rb
│ │ ├── concerns
│ │ │ └── .keep
│ │ ├── contributions_controller.rb
│ │ ├── funfacts_controller.rb
│ │ └── pages_controller.rb
│ ├── helpers
│ │ ├── application_helper.rb
│ │ └── pages_helper.rb
│ ├── mailers
│ │ └── .keep
│ ├── models
│ │ ├── .keep
│ │ └── concerns
│ │ │ └── .keep
│ └── views
│ │ ├── believes
│ │ └── home.html.erb
│ │ ├── compares
│ │ ├── home_v1_2.html.erb
│ │ └── org.html.erb
│ │ ├── contributions
│ │ └── home.html.erb
│ │ ├── funfacts
│ │ ├── new_issues.html.erb
│ │ ├── new_users.html.erb
│ │ └── oldest_issues.html.erb
│ │ ├── layouts
│ │ ├── _battle.html.erb
│ │ ├── _head.html.erb
│ │ ├── _org.html.erb
│ │ └── application.html.erb
│ │ └── pages
│ │ └── home.html.erb
├── bin
│ ├── bundle
│ ├── rails
│ ├── rake
│ └── setup
├── config.ru
├── config
│ ├── application.rb
│ ├── boot.rb
│ ├── database.yml
│ ├── environment.rb
│ ├── environments
│ │ ├── development.rb
│ │ ├── production.rb
│ │ └── test.rb
│ ├── initializers
│ │ ├── assets.rb
│ │ ├── backtrace_silencers.rb
│ │ ├── cookies_serializer.rb
│ │ ├── filter_parameter_logging.rb
│ │ ├── inflections.rb
│ │ ├── mime_types.rb
│ │ ├── session_store.rb
│ │ └── wrap_parameters.rb
│ ├── locales
│ │ └── en.yml
│ ├── routes.rb
│ └── secrets.yml
├── db
│ └── seeds.rb
├── lib
│ ├── assets
│ │ └── .keep
│ └── tasks
│ │ └── .keep
├── log
│ └── .keep
├── public
│ ├── 404.html
│ ├── 422.html
│ ├── 500.html
│ ├── favicon.ico
│ └── robots.txt
├── test
│ ├── controllers
│ │ ├── .keep
│ │ └── pages_controller_test.rb
│ ├── fixtures
│ │ └── .keep
│ ├── helpers
│ │ └── .keep
│ ├── integration
│ │ └── .keep
│ ├── mailers
│ │ └── .keep
│ ├── models
│ │ └── .keep
│ └── test_helper.rb
└── vendor
│ └── assets
│ ├── javascripts
│ └── .keep
│ └── stylesheets
│ └── .keep
├── LICENSE
├── Preview
├── adichat.jpg
├── adichat.svg
├── github_compare.gif
├── preview_1.2.0.gif
├── repository-hunter.gif
└── repository_hunter_1.3.gif
└── README.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.html linguist-language=Ruby
2 | *.erb linguist-language=Ruby
--------------------------------------------------------------------------------
/Application/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2 | #
3 | # If you find yourself ignoring temporary files generated by your text editor
4 | # or operating system, you probably want to add a global ignore instead:
5 | # git config --global core.excludesfile '~/.gitignore_global'
6 |
7 | # Ignore bundler config.
8 | /.bundle
9 |
10 | # Ignore the default SQLite database.
11 | /db/*.sqlite3
12 | /db/*.sqlite3-journal
13 |
14 | # Ignore all logfiles and tempfiles.
15 | /config/secrets.yml
16 | /log/*
17 | !/log/.keep
18 | /tmp
19 |
--------------------------------------------------------------------------------
/Application/Gemfile:
--------------------------------------------------------------------------------
1 | source 'http://rubygems.org'
2 |
3 |
4 | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5 | gem 'rails', '4.2.4'
6 | # Use sqlite3 as the database for Active Record
7 | group :development, :test do
8 | gem 'sqlite3'
9 | end
10 | group :production do
11 | gem 'pg', '~> 0.19'
12 | end
13 | # Use SCSS for stylesheets
14 | gem 'sass-rails', '~> 5.0'
15 | # Use Uglifier as compressor for JavaScript assets
16 | gem 'uglifier', '>= 1.3.0'
17 | # Use CoffeeScript for .coffee assets and views
18 | gem 'coffee-rails', '~> 4.1.0'
19 | # See https://github.com/rails/execjs#readme for more supported runtimes
20 | # gem 'therubyracer', platforms: :ruby
21 | #Contribution graph feature
22 | gem 'githubchart', '1.0.1'
23 | # Use jquery as the JavaScript library
24 | gem 'jquery-rails'
25 | # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
26 | gem 'turbolinks'
27 | # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
28 | gem 'jbuilder', '~> 2.0'
29 | # bundle exec rake doc:rails generates the API under doc/api.
30 | gem 'sdoc', '~> 0.4.0', group: :doc
31 |
32 | # Use ActiveModel has_secure_password
33 | # gem 'bcrypt', '~> 3.1.7'
34 |
35 | # Use Unicorn as the app server
36 | # gem 'unicorn'
37 |
38 | # Use Capistrano for deployment
39 | # gem 'capistrano-rails', group: :development
40 |
41 | group :development, :test do
42 | # Call 'byebug' anywhere in the code to stop execution and get a debugger console
43 | gem 'byebug'
44 | end
45 |
46 | group :development do
47 | # Access an IRB console on exception pages or by using <%= console %> in views
48 | gem 'web-console', '~> 2.0'
49 | end
--------------------------------------------------------------------------------
/Application/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | actionmailer (4.2.4)
5 | actionpack (= 4.2.4)
6 | actionview (= 4.2.4)
7 | activejob (= 4.2.4)
8 | mail (~> 2.5, >= 2.5.4)
9 | rails-dom-testing (~> 1.0, >= 1.0.5)
10 | actionpack (4.2.4)
11 | actionview (= 4.2.4)
12 | activesupport (= 4.2.4)
13 | rack (~> 1.6)
14 | rack-test (~> 0.6.2)
15 | rails-dom-testing (~> 1.0, >= 1.0.5)
16 | rails-html-sanitizer (~> 1.0, >= 1.0.2)
17 | actionview (4.2.4)
18 | activesupport (= 4.2.4)
19 | builder (~> 3.1)
20 | erubis (~> 2.7.0)
21 | rails-dom-testing (~> 1.0, >= 1.0.5)
22 | rails-html-sanitizer (~> 1.0, >= 1.0.2)
23 | activejob (4.2.4)
24 | activesupport (= 4.2.4)
25 | globalid (>= 0.3.0)
26 | activemodel (4.2.4)
27 | activesupport (= 4.2.4)
28 | builder (~> 3.1)
29 | activerecord (4.2.4)
30 | activemodel (= 4.2.4)
31 | activesupport (= 4.2.4)
32 | arel (~> 6.0)
33 | activesupport (4.2.4)
34 | i18n (~> 0.7)
35 | json (~> 1.7, >= 1.7.7)
36 | minitest (~> 5.1)
37 | thread_safe (~> 0.3, >= 0.3.4)
38 | tzinfo (~> 1.1)
39 | arel (6.0.3)
40 | binding_of_caller (0.7.2)
41 | debug_inspector (>= 0.0.1)
42 | builder (3.2.2)
43 | byebug (8.2.1)
44 | coffee-rails (4.1.0)
45 | coffee-script (>= 2.2.0)
46 | railties (>= 4.0.0, < 5.0)
47 | coffee-script (2.4.1)
48 | coffee-script-source
49 | execjs
50 | coffee-script-source (1.10.0)
51 | concurrent-ruby (1.0.0)
52 | debug_inspector (0.0.2)
53 | erubis (2.7.0)
54 | execjs (2.6.0)
55 | globalid (0.3.6)
56 | activesupport (>= 4.1.0)
57 | i18n (0.7.0)
58 | jbuilder (2.3.2)
59 | activesupport (>= 3.0.0, < 5)
60 | multi_json (~> 1.2)
61 | jquery-rails (4.0.5)
62 | rails-dom-testing (~> 1.0)
63 | railties (>= 4.2.0)
64 | thor (>= 0.14, < 2.0)
65 | json (1.8.3)
66 | loofah (2.0.3)
67 | nokogiri (>= 1.5.9)
68 | mail (2.6.3)
69 | mime-types (>= 1.16, < 3)
70 | mime-types (2.99)
71 | mini_portile2 (2.0.0)
72 | minitest (5.8.3)
73 | multi_json (1.11.2)
74 | nokogiri (1.6.7-x86-mingw32)
75 | mini_portile2 (~> 2.0.0.rc2)
76 | pg (0.18.4-x86-mingw32)
77 | rack (1.6.4)
78 | rack-test (0.6.3)
79 | rack (>= 1.0)
80 | rails (4.2.4)
81 | actionmailer (= 4.2.4)
82 | actionpack (= 4.2.4)
83 | actionview (= 4.2.4)
84 | activejob (= 4.2.4)
85 | activemodel (= 4.2.4)
86 | activerecord (= 4.2.4)
87 | activesupport (= 4.2.4)
88 | bundler (>= 1.3.0, < 2.0)
89 | railties (= 4.2.4)
90 | sprockets-rails
91 | rails-deprecated_sanitizer (1.0.3)
92 | activesupport (>= 4.2.0.alpha)
93 | rails-dom-testing (1.0.7)
94 | activesupport (>= 4.2.0.beta, < 5.0)
95 | nokogiri (~> 1.6.0)
96 | rails-deprecated_sanitizer (>= 1.0.1)
97 | rails-html-sanitizer (1.0.2)
98 | loofah (~> 2.0)
99 | railties (4.2.4)
100 | actionpack (= 4.2.4)
101 | activesupport (= 4.2.4)
102 | rake (>= 0.8.7)
103 | thor (>= 0.18.1, < 2.0)
104 | rake (10.4.2)
105 | rdoc (4.2.0)
106 | json (~> 1.4)
107 | sass (3.4.20)
108 | sass-rails (5.0.4)
109 | railties (>= 4.0.0, < 5.0)
110 | sass (~> 3.1)
111 | sprockets (>= 2.8, < 4.0)
112 | sprockets-rails (>= 2.0, < 4.0)
113 | tilt (>= 1.1, < 3)
114 | sdoc (0.4.1)
115 | json (~> 1.7, >= 1.7.7)
116 | rdoc (~> 4.0)
117 | sprockets (3.5.2)
118 | concurrent-ruby (~> 1.0)
119 | rack (> 1, < 3)
120 | sprockets-rails (2.3.3)
121 | actionpack (>= 3.0)
122 | activesupport (>= 3.0)
123 | sprockets (>= 2.8, < 4.0)
124 | sqlite3 (1.3.11-x86-mingw32)
125 | thor (0.19.1)
126 | thread_safe (0.3.5)
127 | tilt (2.0.1)
128 | turbolinks (2.5.3)
129 | coffee-rails
130 | tzinfo (1.2.2)
131 | thread_safe (~> 0.1)
132 | tzinfo-data (1.2015.7)
133 | tzinfo (>= 1.0.0)
134 | uglifier (2.7.2)
135 | execjs (>= 0.3.0)
136 | json (>= 1.8.0)
137 | web-console (2.2.1)
138 | activemodel (>= 4.0)
139 | binding_of_caller (>= 0.7.2)
140 | railties (>= 4.0)
141 | sprockets-rails (>= 2.0, < 4.0)
142 |
143 | PLATFORMS
144 | x86-mingw32
145 |
146 | DEPENDENCIES
147 | byebug
148 | coffee-rails (~> 4.1.0)
149 | jbuilder (~> 2.0)
150 | jquery-rails
151 | pg
152 | rails (= 4.2.4)
153 | sass-rails (~> 5.0)
154 | sdoc (~> 0.4.0)
155 | sqlite3
156 | turbolinks
157 | tzinfo-data
158 | uglifier (>= 1.3.0)
159 | web-console (~> 2.0)
160 |
--------------------------------------------------------------------------------
/Application/LICENSE:
--------------------------------------------------------------------------------
1 | CC0 1.0 Universal
2 |
3 | Statement of Purpose
4 |
5 | The laws of most jurisdictions throughout the world automatically confer
6 | exclusive Copyright and Related Rights (defined below) upon the creator and
7 | subsequent owner(s) (each and all, an "owner") of an original work of
8 | authorship and/or a database (each, a "Work").
9 |
10 | Certain owners wish to permanently relinquish those rights to a Work for the
11 | purpose of contributing to a commons of creative, cultural and scientific
12 | works ("Commons") that the public can reliably and without fear of later
13 | claims of infringement build upon, modify, incorporate in other works, reuse
14 | and redistribute as freely as possible in any form whatsoever and for any
15 | purposes, including without limitation commercial purposes. These owners may
16 | contribute to the Commons to promote the ideal of a free culture and the
17 | further production of creative, cultural and scientific works, or to gain
18 | reputation or greater distribution for their Work in part through the use and
19 | efforts of others.
20 |
21 | For these and/or other purposes and motivations, and without any expectation
22 | of additional consideration or compensation, the person associating CC0 with a
23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
25 | and publicly distribute the Work under its terms, with knowledge of his or her
26 | Copyright and Related Rights in the Work and the meaning and intended legal
27 | effect of CC0 on those rights.
28 |
29 | 1. Copyright and Related Rights. A Work made available under CC0 may be
30 | protected by copyright and related or neighboring rights ("Copyright and
31 | Related Rights"). Copyright and Related Rights include, but are not limited
32 | to, the following:
33 |
34 | i. the right to reproduce, adapt, distribute, perform, display, communicate,
35 | and translate a Work;
36 |
37 | ii. moral rights retained by the original author(s) and/or performer(s);
38 |
39 | iii. publicity and privacy rights pertaining to a person's image or likeness
40 | depicted in a Work;
41 |
42 | iv. rights protecting against unfair competition in regards to a Work,
43 | subject to the limitations in paragraph 4(a), below;
44 |
45 | v. rights protecting the extraction, dissemination, use and reuse of data in
46 | a Work;
47 |
48 | vi. database rights (such as those arising under Directive 96/9/EC of the
49 | European Parliament and of the Council of 11 March 1996 on the legal
50 | protection of databases, and under any national implementation thereof,
51 | including any amended or successor version of such directive); and
52 |
53 | vii. other similar, equivalent or corresponding rights throughout the world
54 | based on applicable law or treaty, and any national implementations thereof.
55 |
56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of,
57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
59 | and Related Rights and associated claims and causes of action, whether now
60 | known or unknown (including existing as well as future claims and causes of
61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum
62 | duration provided by applicable law or treaty (including future time
63 | extensions), (iii) in any current or future medium and for any number of
64 | copies, and (iv) for any purpose whatsoever, including without limitation
65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
66 | the Waiver for the benefit of each member of the public at large and to the
67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver
68 | shall not be subject to revocation, rescission, cancellation, termination, or
69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work
70 | by the public as contemplated by Affirmer's express Statement of Purpose.
71 |
72 | 3. Public License Fallback. Should any part of the Waiver for any reason be
73 | judged legally invalid or ineffective under applicable law, then the Waiver
74 | shall be preserved to the maximum extent permitted taking into account
75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
76 | is so judged Affirmer hereby grants to each affected person a royalty-free,
77 | non transferable, non sublicensable, non exclusive, irrevocable and
78 | unconditional license to exercise Affirmer's Copyright and Related Rights in
79 | the Work (i) in all territories worldwide, (ii) for the maximum duration
80 | provided by applicable law or treaty (including future time extensions), (iii)
81 | in any current or future medium and for any number of copies, and (iv) for any
82 | purpose whatsoever, including without limitation commercial, advertising or
83 | promotional purposes (the "License"). The License shall be deemed effective as
84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the
85 | License for any reason be judged legally invalid or ineffective under
86 | applicable law, such partial invalidity or ineffectiveness shall not
87 | invalidate the remainder of the License, and in such case Affirmer hereby
88 | affirms that he or she will not (i) exercise any of his or her remaining
89 | Copyright and Related Rights in the Work or (ii) assert any associated claims
90 | and causes of action with respect to the Work, in either case contrary to
91 | Affirmer's express Statement of Purpose.
92 |
93 | 4. Limitations and Disclaimers.
94 |
95 | a. No trademark or patent rights held by Affirmer are waived, abandoned,
96 | surrendered, licensed or otherwise affected by this document.
97 |
98 | b. Affirmer offers the Work as-is and makes no representations or warranties
99 | of any kind concerning the Work, express, implied, statutory or otherwise,
100 | including without limitation warranties of title, merchantability, fitness
101 | for a particular purpose, non infringement, or the absence of latent or
102 | other defects, accuracy, or the present or absence of errors, whether or not
103 | discoverable, all to the greatest extent permissible under applicable law.
104 |
105 | c. Affirmer disclaims responsibility for clearing rights of other persons
106 | that may apply to the Work or any use thereof, including without limitation
107 | any person's Copyright and Related Rights in the Work. Further, Affirmer
108 | disclaims responsibility for obtaining any necessary consents, permissions
109 | or other rights required for any use of the Work.
110 |
111 | d. Affirmer understands and acknowledges that Creative Commons is not a
112 | party to this document and has no duty or obligation with respect to this
113 | CC0 or use of the Work.
114 |
115 | For more information, please see
116 |
117 |
118 |
--------------------------------------------------------------------------------
/Application/README.md:
--------------------------------------------------------------------------------
1 | # Repository-Hunter
2 | This is an application that is build upon the GitHub API. It is used to gain public information regarding a particular github account.
3 | The user has to enter the username of a GitHub account and this application will present all the available information. One will also be able to navigate to the user profile by clicking on the username and can also go to a particular repository of the user by clicking on the repository name.
4 | This application comes in handy when the user is concerned about the actual information and particular repositories.
5 | This is a preview of the application :
6 | 
7 |
--------------------------------------------------------------------------------
/Application/README.rdoc:
--------------------------------------------------------------------------------
1 | == README
2 |
3 | This README would normally document whatever steps are necessary to get the
4 | application up and running.
5 |
6 | Things you may want to cover:
7 |
8 | * Ruby version
9 |
10 | * System dependencies
11 |
12 | * Configuration
13 |
14 | * Database creation
15 |
16 | * Database initialization
17 |
18 | * How to run the test suite
19 |
20 | * Services (job queues, cache servers, search engines, etc.)
21 |
22 | * Deployment instructions
23 |
24 | * ...
25 |
26 |
27 | Please feel free to use a different markup language if you do not plan to run
28 | rake doc:app.
29 |
--------------------------------------------------------------------------------
/Application/Rakefile:
--------------------------------------------------------------------------------
1 | # Add your own tasks in files placed in lib/tasks ending in .rake,
2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3 |
4 | require File.expand_path('../config/application', __FILE__)
5 |
6 | Rails.application.load_tasks
7 |
--------------------------------------------------------------------------------
/Application/app/assets/images/.keep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/.keep
--------------------------------------------------------------------------------
/Application/app/assets/images/a.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/a.gif
--------------------------------------------------------------------------------
/Application/app/assets/images/b1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/b1.png
--------------------------------------------------------------------------------
/Application/app/assets/images/b2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/b2.png
--------------------------------------------------------------------------------
/Application/app/assets/images/b3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/b3.png
--------------------------------------------------------------------------------
/Application/app/assets/images/b4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/b4.png
--------------------------------------------------------------------------------
/Application/app/assets/images/b5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/b5.png
--------------------------------------------------------------------------------
/Application/app/assets/images/b7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/b7.png
--------------------------------------------------------------------------------
/Application/app/assets/images/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AdiChat/Repository-Hunter/245e900f1a38fefb737641efc49938b6de38ffb9/Application/app/assets/images/loader.gif
--------------------------------------------------------------------------------
/Application/app/assets/javascripts/app.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | var stats = ['age', 'stars', 'forks', 'repositories', 'gists', 'followers'],
4 | users = [];
5 |
6 | $(document).ready(function() {
7 |
8 | $('#submit').click(visualize);
9 |
10 | });
11 |
12 | function visualize(e) {
13 |
14 | var scraper = new Scraper();
15 | var $this = $(this);
16 | var $graphsContainer = $('.graphs-container');
17 | var form = document.forms[0],
18 | promises = [],
19 | valid = true;
20 |
21 | var fail = false;
22 | var storage = typeof(Storage)!=="undefined";
23 |
24 | users.push($(form['user_1']).val());
25 | users.push($(form['user_2']).val());
26 |
27 | for(var i = 0; i < users.length; i++)
28 | {
29 | if(users[i] == "")
30 | {
31 | $(form['user_' + (i + 1)]).css('border', '5px solid rgb(186, 0,0)');
32 | valid = false;
33 | $('#submit').text('INVALID');
34 | }
35 | else
36 | {
37 | promises.push($.Deferred(function(def) {
38 | var key = i + 1;
39 | $.ajax({
40 | url: GITHUB + 'users/' + users[i]
41 | + IDENTITY + '&callback=?',
42 | success: function(data) {
43 | if (data.data && data.data.message == "Not Found") {
44 | $(form['user_' + key]).css('border', '5px solid rgb(186, 0,0)');
45 | fail = true;
46 | } else {
47 | // #6 - Use the login for all future requests
48 | users[key-1] = data.data.login;
49 | }
50 | def.resolve();
51 | },
52 | dataType: 'jsonp'
53 | });
54 | }));
55 | }
56 | }
57 |
58 | if(!valid) {
59 | users = [];
60 | return false;
61 | }
62 |
63 | $.when.apply(null, promises).done(function () {
64 | if(fail) {
65 | users = [];
66 | $('#submit').text('INVALID');
67 | return false;
68 | } else {
69 | $('input').css('border', 'none');
70 | promises = [];
71 | $('#submit').unbind('click');
72 | $('.user2 input, .user1 input').unbind('keypress');
73 | $this.css('cursor', 'default');
74 |
75 | var $fight = $('#submit'),
76 | count = 0;
77 | $fight.html("Processing...
16 year-old issue found in 9 year-old GitHub using 12 year-old Git.
12 |
13 |
An issue has been found which was formed even before GitHub was established or Git was released. Take a look at it here
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
A man who had been committing on GitHub continuously for 100 years.
23 |
24 |
Ciro Santilli, a humble man has been commiting on GitHub for over 100 years. Unfortunately, his dedication was not preceived well by others and GitHub decided to hide his contributions. Take a look at his profile here
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
A man who has lost his GitHub contribution graph.
34 |
35 |
Ciro Santilli has lost his contribution graph. Take a look at his mysterious profile here Luckily, you can take a look at how his graph would look like now using this feature of Repository Hunter
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
An username extending vertically indefinitely.
45 |
46 |
Usernames can extend vertically infinitely as well. Take a look at his mysterious profile here
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
A man has been on GitHub since 1991 with the highest number of followers.
You can make a commit on a date before your birth!
69 |
70 |
Try out the following command: git commit --date="Wed Feb 16 14:00 2011 +0100"
71 |
72 |
73 |
74 |
75 |
76 |
GitHub, Inc. was originally known as Logical Awesome LLC
77 |
78 |
Check out the present Logical Awesome LLC site
79 | here
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
Once, GitHub was a victim.
90 |
91 |
On 26 March 2015, GitHub fell victim to a massive distributed denial-of-service (DDOS) attack that lasted for more than 118 hours. The attack, which appeared to originate from China, primarily targeted GitHub-hosted user content describing methods of circumventing Internet censorship.
92 |
93 |
94 |
95 |
96 |
97 |
Links to Alleged NSA Data on GitHub
98 |
99 |
Researchers had pored over dumped data allegedly belonging to a group associated with the NSA. The data, which contains a number of working exploits, was distributed via Dropbox, MEGA, and other file sharing platforms. The files were also linked to from a page on Github, but the company removed it despite having hosted plenty of hacked material in the past. It turns out that removal was not due to government pressure, but because the hacker or hackers behind the supposed breach were asking for cash to release more data.
100 |
101 |
102 |
103 |
104 |
105 |
10,000 AWS secret access keys publically available
106 |
107 |
Anyone who has your access key has the same level of access to your AWS resources that you do. Consequently, we go to significant lengths to protect your access keys, and in keeping with our shared-responsibility model, you should as well.
108 | Read the article here
109 |
110 |
111 |
112 |
113 |
114 |
Over 600 private keys on GitHub for you to see.
115 |
116 |
Github has killed its search function to safeguard users who were caught out storing keys and passwords in public repositories. 'Users found that quite a large number of users who had added private keys to their repositories and then pushed the files up to GitHub. Searching on id_rsa, a file which contains the private key for SSH logins, returned over 600 results. Projects had live configuration files from cloud services such as Amazon Web Services and Azure with the encryption keys still included. Configuration and private key files are intended to be kept secret, since if it falls into wrong hands, that person can impersonate the user (or at least, the user's machine) and easily connect to that remote machine.' Search links popped up throughout Twitter pointing to stored keys, including what was reportedly account credentials for the Google Chrome source code repository. The keys can still be found using search engines, so check your repositories.
117 | Read the article here
118 |