git-trend 1.0.2 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,16 +2,16 @@ include GitTrend
2
2
  RSpec.describe GitTrend::Scraper do
3
3
  let(:scraper) { Scraper.new }
4
4
 
5
- describe 'settings' do
5
+ describe "settings" do
6
6
  before do
7
- allow(ENV).to receive(:[]).with('http_proxy').and_return("http://#{proxy_user}:#{proxy_pass}@#{proxy_addr}:#{proxy_port}")
7
+ allow(ENV).to receive(:[]).with("http_proxy").and_return("http://#{proxy_user}:#{proxy_pass}@#{proxy_addr}:#{proxy_port}")
8
8
  end
9
- let(:proxy_addr) { '192.168.1.99' }
9
+ let(:proxy_addr) { "192.168.1.99" }
10
10
  let(:proxy_port) { 9999 }
11
- let(:proxy_user) { 'proxy_user' }
12
- let(:proxy_pass) { 'proxy_pass' }
11
+ let(:proxy_user) { "proxy_user" }
12
+ let(:proxy_pass) { "proxy_pass" }
13
13
  subject { scraper.instance_variable_get(:@agent) }
14
- it 'should use proxy settings of ENV' do
14
+ it "should use proxy settings of ENV" do
15
15
  aggregate_failures do
16
16
  expect(subject.proxy_addr).to eq proxy_addr
17
17
  expect(subject.proxy_user).to eq proxy_user
@@ -22,19 +22,19 @@ RSpec.describe GitTrend::Scraper do
22
22
  end
23
23
  end
24
24
 
25
- describe '#get' do
26
- context 'when a network error occurred' do
25
+ describe "#get" do
26
+ context "when a network error occurred" do
27
27
  before do
28
28
  stub_request(:get, Scraper::BASE_URL)
29
- .to_return(status: 500, body: '[]')
29
+ .to_return(status: 500, body: "[]")
30
30
  end
31
31
  it { expect { scraper.get }.to raise_error(Exception) }
32
32
  end
33
33
 
34
- context 'when a scraping error occurred' do
34
+ context "when a scraping error occurred" do
35
35
  before do
36
36
  stub_request(:get, Scraper::BASE_URL)
37
- .to_return(status: 200, headers: { content_type: 'text/html' }, body: '')
37
+ .to_return(status: 200, headers: { content_type: "text/html" }, body: "")
38
38
  end
39
39
  it { expect { scraper.get }.to raise_error(ScrapeException) }
40
40
  end
@@ -1,12 +1,12 @@
1
1
  RSpec.describe GitTrend do
2
2
  before do
3
3
  stub_request(:get, /.*/)
4
- .to_return(status: 200, headers: { content_type: 'text/html' }, body: load_http_stub('trending'))
4
+ .to_return(status: 200, headers: { content_type: "text/html" }, body: load_http_stub("trending"))
5
5
  end
6
6
 
7
- describe '#get' do
8
- context 'without options' do
9
- it 'Scraper#get call without options' do
7
+ describe "#get" do
8
+ context "without options" do
9
+ it "Scraper#get call without options" do
10
10
  expect_any_instance_of(Scraper).to receive(:get).with(no_args)
11
11
  GitTrend.get
12
12
  end
@@ -14,34 +14,34 @@ RSpec.describe GitTrend do
14
14
 
15
15
  context "parameter is 'ruby'" do
16
16
  it "Scraper#get call with 'ruby'" do
17
- expect_any_instance_of(Scraper).to receive(:get).with('ruby')
18
- GitTrend.get('ruby')
17
+ expect_any_instance_of(Scraper).to receive(:get).with("ruby")
18
+ GitTrend.get("ruby")
19
19
  end
20
20
  end
21
21
 
22
- context 'parameter is :ruby' do
23
- it 'Scraper#get call with :ruby' do
22
+ context "parameter is :ruby" do
23
+ it "Scraper#get call with :ruby" do
24
24
  expect_any_instance_of(Scraper).to receive(:get).with(:ruby)
25
25
  GitTrend.get(:ruby)
26
26
  end
27
27
  end
28
28
 
29
- context 'parameter is since: :weekly' do
30
- it 'Scraper#get call with [nil, :weekly]' do
29
+ context "parameter is since: :weekly" do
30
+ it "Scraper#get call with [nil, :weekly]" do
31
31
  expect_any_instance_of(Scraper).to receive(:get).with(nil, :weekly)
32
32
  GitTrend.get(since: :weekly)
33
33
  end
34
34
  end
35
35
 
36
- context 'parameter is since: :week' do
37
- it 'Scraper#get call with [nil, :week]' do
36
+ context "parameter is since: :week" do
37
+ it "Scraper#get call with [nil, :week]" do
38
38
  expect_any_instance_of(Scraper).to receive(:get).with(nil, :week)
39
39
  GitTrend.get(since: :week)
40
40
  end
41
41
  end
42
42
 
43
- context 'parameter is since: :w' do
44
- it 'Scraper#get call with [nil, :w]' do
43
+ context "parameter is since: :w" do
44
+ it "Scraper#get call with [nil, :w]" do
45
45
  expect_any_instance_of(Scraper).to receive(:get).with(nil, :w)
46
46
  GitTrend.get(since: :w)
47
47
  end
@@ -49,31 +49,31 @@ RSpec.describe GitTrend do
49
49
 
50
50
  context "parameters are 'ruby', 'weekly'" do
51
51
  it "Scraper#get call with ['ruby', 'weekly']" do
52
- expect_any_instance_of(Scraper).to receive(:get).with('ruby', 'weekly')
53
- GitTrend.get('ruby', 'weekly')
52
+ expect_any_instance_of(Scraper).to receive(:get).with("ruby", "weekly")
53
+ GitTrend.get("ruby", "weekly")
54
54
  end
55
55
  end
56
56
 
57
- context 'parameters are :ruby, :weekly' do
58
- it 'Scraper#get call with [:ruby, :weekly]' do
57
+ context "parameters are :ruby, :weekly" do
58
+ it "Scraper#get call with [:ruby, :weekly]" do
59
59
  expect_any_instance_of(Scraper).to receive(:get).with(:ruby, :weekly)
60
60
  GitTrend.get(:ruby, :weekly)
61
61
  end
62
62
  end
63
63
 
64
- context 'parameters are language: :ruby, since: :weekly' do
65
- it 'Scraper#get call with [:ruby, :weekly]' do
64
+ context "parameters are language: :ruby, since: :weekly" do
65
+ it "Scraper#get call with [:ruby, :weekly]" do
66
66
  expect_any_instance_of(Scraper).to receive(:get).with(:ruby, :weekly)
67
67
  GitTrend.get(language: :ruby, since: :weekly)
68
68
  end
69
69
  end
70
70
 
71
- context 'when too many parameters' do
72
- it { expect { GitTrend.get('ruby', 'weekly', 'many_params') }.to raise_error(Exception) }
71
+ context "when too many parameters" do
72
+ it { expect { GitTrend.get("ruby", "weekly", "many_params") }.to raise_error(Exception) }
73
73
  end
74
74
 
75
- describe '#languages' do
76
- it 'Scraper#languages call' do
75
+ describe "#languages" do
76
+ it "Scraper#languages call" do
77
77
  expect_any_instance_of(Scraper).to receive(:languages).with(no_args)
78
78
  GitTrend.languages
79
79
  end
data/spec/spec_helper.rb CHANGED
@@ -14,26 +14,25 @@
14
14
  # users commonly want.
15
15
  #
16
16
  # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
17
- require 'coveralls'
17
+ require "coveralls"
18
18
  Coveralls.wear!
19
19
 
20
- require 'simplecov'
21
- require 'codeclimate-test-reporter'
22
- dir = File.join(ENV['CIRCLE_ARTIFACTS'] || 'coverage')
20
+ require "simplecov"
21
+ # require "codeclimate-test-reporter"
22
+ dir = File.join(ENV["CIRCLE_ARTIFACTS"] || "coverage")
23
23
  SimpleCov.coverage_dir(dir)
24
24
  SimpleCov.start do
25
- add_filter '/spec/'
25
+ add_filter "/spec/"
26
26
 
27
27
  formatter SimpleCov::Formatter::MultiFormatter.new([
28
28
  SimpleCov::Formatter::HTMLFormatter,
29
- CodeClimate::TestReporter::Formatter,
30
29
  Coveralls::SimpleCov::Formatter
31
30
  ])
32
31
  end
33
32
 
34
- require 'webmock/rspec'
33
+ require "webmock/rspec"
35
34
 
36
- require 'git_trend'
35
+ require "git_trend"
37
36
  SimpleCov.start
38
37
 
39
38
  RSpec.configure do |config|
@@ -50,7 +49,7 @@ RSpec.configure do |config|
50
49
  config.run_all_when_everything_filtered = true
51
50
  config.expose_dsl_globally = false
52
51
 
53
- config.example_status_persistence_file_path = 'spec/examples.txt'
52
+ config.example_status_persistence_file_path = "spec/examples.txt"
54
53
  config.order = :random
55
54
  Kernel.srand config.seed
56
55
  # The settings below are suggested to provide a good initial experience
@@ -116,12 +115,13 @@ RSpec.configure do |config|
116
115
  end
117
116
 
118
117
  def load_http_stub(file_name)
119
- file_path = File.join(File.dirname(__FILE__), 'fixtures', file_name)
118
+ file_path = File.join(File.dirname(__FILE__), "fixtures", file_name)
119
+ file_path = File.join(file_path, "index") if File.directory? file_path
120
120
  File.read(file_path)
121
121
  end
122
122
 
123
123
  class String
124
124
  def unindent
125
- gsub(/^\s+\|/, '')
125
+ gsub(/^\s+\|/, "")
126
126
  end
127
127
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-trend
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - rochefort
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-31 00:00:00.000000000 Z
11
+ date: 2016-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.6
33
+ version: 0.1.7
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.6
40
+ version: 0.1.7
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mechanize
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 1.0.3
75
+ version: 1.1.1
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 1.0.3
82
+ version: 1.1.1
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -100,42 +100,42 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 11.1.2
103
+ version: 11.3.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 11.1.2
110
+ version: 11.3.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rspec
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 3.4.0
117
+ version: 3.5.0
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 3.4.0
124
+ version: 3.5.0
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: simplecov
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: 0.11.2
131
+ version: 0.12.0
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: 0.11.2
138
+ version: 0.12.0
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: safe_yaml
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -156,42 +156,42 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: 1.24.2
159
+ version: 2.1.0
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: 1.24.2
166
+ version: 2.1.0
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: coveralls
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ">="
171
+ - - "~>"
172
172
  - !ruby/object:Gem::Version
173
- version: '0'
173
+ version: 0.8.15
174
174
  type: :development
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - ">="
178
+ - - "~>"
179
179
  - !ruby/object:Gem::Version
180
- version: '0'
180
+ version: 0.8.15
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: codeclimate-test-reporter
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - ">="
185
+ - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: '0'
187
+ version: 1.0.0
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - ">="
192
+ - - "~>"
193
193
  - !ruby/object:Gem::Version
194
- version: '0'
194
+ version: 1.0.0
195
195
  description: CLI-Based tool that show Trending repository on github
196
196
  email:
197
197
  - terasawan@gmail.com
@@ -203,6 +203,7 @@ files:
203
203
  - ".coveralls.yml"
204
204
  - ".gitignore"
205
205
  - ".rspec"
206
+ - ".rubocop.yml"
206
207
  - ".travis.yml"
207
208
  - CHANGELOG.md
208
209
  - Gemfile
@@ -221,15 +222,13 @@ files:
221
222
  - lib/git_trend/scraper.rb
222
223
  - lib/git_trend/version.rb
223
224
  - note.txt
224
- - spec/fixtures/trending
225
- - spec/fixtures/trending?l=objective-c%2B%2B
226
- - spec/fixtures/trending?l=ruby
227
- - spec/fixtures/trending?l=ruby&since=weekly
225
+ - spec/fixtures/trending/index
226
+ - spec/fixtures/trending/ruby
227
+ - spec/fixtures/trending/ruby?since=weekly
228
228
  - spec/fixtures/trending?since=
229
229
  - spec/fixtures/trending?since=daily
230
230
  - spec/fixtures/trending?since=monthly
231
231
  - spec/fixtures/trending?since=weekly
232
- - spec/fixtures/trending_including_multibyte_characters
233
232
  - spec/git_trend/cli_spec.rb
234
233
  - spec/git_trend/scraper_spec.rb
235
234
  - spec/git_trend_spec.rb
@@ -254,20 +253,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
254
253
  version: '0'
255
254
  requirements: []
256
255
  rubyforge_project:
257
- rubygems_version: 2.5.1
256
+ rubygems_version: 2.6.6
258
257
  signing_key:
259
258
  specification_version: 4
260
259
  summary: CLI-Based tool that show Trending repository on github
261
260
  test_files:
262
- - spec/fixtures/trending
263
- - spec/fixtures/trending?l=objective-c%2B%2B
264
- - spec/fixtures/trending?l=ruby
265
- - spec/fixtures/trending?l=ruby&since=weekly
261
+ - spec/fixtures/trending/index
262
+ - spec/fixtures/trending/ruby
263
+ - spec/fixtures/trending/ruby?since=weekly
266
264
  - spec/fixtures/trending?since=
267
265
  - spec/fixtures/trending?since=daily
268
266
  - spec/fixtures/trending?since=monthly
269
267
  - spec/fixtures/trending?since=weekly
270
- - spec/fixtures/trending_including_multibyte_characters
271
268
  - spec/git_trend/cli_spec.rb
272
269
  - spec/git_trend/scraper_spec.rb
273
270
  - spec/git_trend_spec.rb
@@ -1,2334 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en" class="">
3
- <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
4
- <meta charset='utf-8'>
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta http-equiv="Content-Language" content="en">
7
- <meta name="viewport" content="width=1020">
8
-
9
-
10
- <title>Trending repositories on GitHub today · GitHub</title>
11
- <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
12
- <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
13
- <link rel="apple-touch-icon" href="/apple-touch-icon.png">
14
- <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
15
- <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
16
- <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
17
- <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
18
- <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
19
- <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
20
- <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
21
- <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
22
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
23
- <meta property="fb:app_id" content="1401488693436528">
24
-
25
- <meta property="og:url" content="https://github.com">
26
- <meta property="og:site_name" content="GitHub">
27
- <meta property="og:title" content="Build software better, together">
28
- <meta property="og:description" content="GitHub is where people build software. More than 12 million people use GitHub to discover, fork, and contribute to over 31 million projects.">
29
- <meta property="og:image" content="https://assets-cdn.github.com/images/modules/open_graph/github-logo.png">
30
- <meta property="og:image:type" content="image/png">
31
- <meta property="og:image:width" content="1200">
32
- <meta property="og:image:height" content="1200">
33
- <meta property="og:image" content="https://assets-cdn.github.com/images/modules/open_graph/github-mark.png">
34
- <meta property="og:image:type" content="image/png">
35
- <meta property="og:image:width" content="1200">
36
- <meta property="og:image:height" content="620">
37
- <meta property="og:image" content="https://assets-cdn.github.com/images/modules/open_graph/github-octocat.png">
38
- <meta property="og:image:type" content="image/png">
39
- <meta property="og:image:width" content="1200">
40
- <meta property="og:image:height" content="620">
41
- <meta property="twitter:site" content="github">
42
- <meta property="twitter:site:id" content="13334762">
43
- <meta property="twitter:creator" content="github">
44
- <meta property="twitter:creator:id" content="13334762">
45
- <meta property="twitter:card" content="summary_large_image">
46
- <meta property="twitter:title" content="GitHub">
47
- <meta property="twitter:description" content="GitHub is where people build software. More than 12 million people use GitHub to discover, fork, and contribute to over 31 million projects.">
48
- <meta property="twitter:image:src" content="https://assets-cdn.github.com/images/modules/open_graph/github-logo.png">
49
- <meta property="twitter:image:width" content="1200">
50
- <meta property="twitter:image:height" content="1200">
51
- <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
52
- <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
53
- <link rel="assets" href="https://assets-cdn.github.com/">
54
-
55
- <meta name="pjax-timeout" content="1000">
56
-
57
-
58
- <meta name="msapplication-TileImage" content="/windows-tile.png">
59
- <meta name="msapplication-TileColor" content="#ffffff">
60
- <meta name="selected-link" value="trending_repositories" data-pjax-transient>
61
-
62
- <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
63
- <meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
64
- <meta name="google-analytics" content="UA-3769691-2">
65
-
66
- <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="3A9D7ECD:3B68:12EA5E2:56AA3AC3" name="octolytics-dimension-request_id" />
67
-
68
-
69
-
70
-
71
- <meta class="js-ga-set" name="dimension1" content="Logged Out">
72
-
73
-
74
-
75
- <meta name="hostname" content="github.com">
76
- <meta name="user-login" content="">
77
-
78
- <meta name="expected-hostname" content="github.com">
79
-
80
- <link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#4078c0">
81
- <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
82
-
83
- <meta content="4be09e87f830133c2147903118b2fda3bc4b9ac3" name="form-nonce" />
84
-
85
- <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-f1103d0eef17ce809ed95fd364cdc221a8e1a0242938d180acc2bc61d9c6bbc2.css" media="all" rel="stylesheet" />
86
- <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github2-a1e3d999397ef97d1507335f8e9ac5c4c687a8ccbc6f8195ecf8b179f356c002.css" media="all" rel="stylesheet" />
87
-
88
-
89
-
90
-
91
- <meta http-equiv="x-pjax-version" content="edab79734c985bbed8c800c439587edd">
92
-
93
- <meta name="description" content="GitHub is where people build software. More than 12 million people use GitHub to discover, fork, and contribute to over 31 million projects.">
94
-
95
- <link rel="canonical" href="https://github.com/trending" data-pjax-transient>
96
- </head>
97
-
98
-
99
- <body class="logged_out env-production">
100
- <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
101
-
102
-
103
-
104
-
105
-
106
-
107
-
108
-
109
- <div class="header header-logged-out" role="banner">
110
- <div class="container clearfix">
111
-
112
- <a class="header-logo-wordmark" href="https://github.com/" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
113
- <span aria-hidden="true" class="mega-octicon octicon-logo-github"></span>
114
- </a>
115
-
116
- <div class="header-actions" role="navigation">
117
- <a class="btn btn-primary" href="/join?source=header" data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">Sign up</a>
118
- <a class="btn" href="/login?return_to=%2Ftrending" data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">Sign in</a>
119
- </div>
120
-
121
- <div class="site-search js-site-search" role="search">
122
- <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/search" class="js-site-search-form" data-global-search-url="/search" data-repo-search-url="" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
123
- <label class="js-chromeless-input-container form-control">
124
- <div class="scope-badge">This repository</div>
125
- <input type="text"
126
- class="js-site-search-focus chromeless-input"
127
- data-hotkey="s"
128
- name="q"
129
- placeholder="Search GitHub"
130
- aria-label="Search GitHub"
131
- data-global-scope-placeholder="Search GitHub"
132
- data-repo-scope-placeholder="Search"
133
- tabindex="1"
134
- autocapitalize="off">
135
- </label>
136
- </form>
137
- </div>
138
-
139
- <ul class="header-nav left" role="navigation">
140
- <li class="header-nav-item">
141
- <a class="header-nav-link" href="/explore" data-ga-click="(Logged out) Header, go to explore, text:explore">Explore</a>
142
- </li>
143
- <li class="header-nav-item">
144
- <a class="header-nav-link" href="/features" data-ga-click="(Logged out) Header, go to features, text:features">Features</a>
145
- </li>
146
- <li class="header-nav-item">
147
- <a class="header-nav-link" href="https://enterprise.github.com/" data-ga-click="(Logged out) Header, go to enterprise, text:enterprise">Enterprise</a>
148
- </li>
149
- <li class="header-nav-item">
150
- <a class="header-nav-link" href="/pricing" data-ga-click="(Logged out) Header, go to pricing, text:pricing">Pricing</a>
151
- </li>
152
- </ul>
153
-
154
- </div>
155
- </div>
156
-
157
-
158
-
159
- <div id="start-of-content" class="accessibility-aid"></div>
160
-
161
- <div id="js-flash-container">
162
- </div>
163
-
164
-
165
- <div role="main" class="main-content">
166
-
167
- <div id="js-pjax-container" class="context-loader-container" data-pjax-container>
168
-
169
- <div class="pagehead explore-head">
170
- <div class="container">
171
- <nav class="pagehead-nav" role="navigation" data-pjax>
172
- <a href="/explore" class="js-selected-navigation-item pagehead-nav-item" data-selected-links="explore_main /explore">
173
- <span aria-hidden="true" class="octicon octicon-home"></span> All
174
- </a> <a href="/showcases" class="js-selected-navigation-item pagehead-nav-item" data-selected-links="showcases showcases_search showcases_landing /showcases">
175
- <span aria-hidden="true" class="octicon octicon-megaphone"></span> Showcases
176
- </a> <a href="/trending" aria-selected="true" class="js-selected-navigation-item selected pagehead-nav-item" data-selected-links="trending_developers trending_repositories /trending">
177
- <span aria-hidden="true" class="octicon octicon-flame"></span> Trending
178
- </a></nav>
179
-
180
- <h1>Explore GitHub</h1>
181
- </div>
182
- </div><!-- /.pagehead -->
183
-
184
-
185
- <div class="explore-pjax-container container explore-page">
186
- <div class="explore-marketing-header is-animating">
187
- <h2>Trending repositories</h2>
188
- <p class="lead">Find what repositories the GitHub community is most excited about today.</p>
189
- <p class="explore-signup-cta">
190
- <a href="/join?return_to=https%3A%2F%2Fgithub.com%2Ftrending" class="btn btn-sm btn-primary" rel="nofollow">Sign up for free</a> to get started
191
- </p>
192
- </div>
193
- <div class="columns">
194
- <div class="column three-fourths">
195
- <div class="tabnav">
196
- <div class="right">
197
- <div class="select-menu js-menu-container js-select-menu right select-menu-modal-right">
198
- <button class="btn btn-sm select-menu-button js-menu-target" type="button" aria-haspopup="true">
199
- <i>Trending:</i>
200
- <span class="js-select-button">today</span>
201
- </button>
202
- <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
203
- <div class="select-menu-modal">
204
- <div class="select-menu-header">
205
- <span aria-label="Close" class="octicon octicon-x js-menu-close" role="button"></span>
206
- <span class="select-menu-title">Adjust time span</span>
207
- </div>
208
-
209
- <div class="select-menu-list" role="menu">
210
- <div>
211
- <a class="select-menu-item js-navigation-item selected" href="https://github.com/trending?since=daily" data-pjax>
212
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
213
- <span class="select-menu-item-text js-select-button-text">today</span>
214
- </a>
215
- <a class="select-menu-item js-navigation-item " href="https://github.com/trending?since=weekly" data-pjax>
216
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
217
- <span class="select-menu-item-text js-select-button-text">this week</span>
218
- </a>
219
- <a class="select-menu-item js-navigation-item " href="https://github.com/trending?since=monthly" data-pjax>
220
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
221
- <span class="select-menu-item-text js-select-button-text">this month</span>
222
- </a>
223
- </div>
224
- </div>
225
- </div>
226
- </div>
227
- </div>
228
-
229
- </div>
230
- <nav class="tabnav-tabs" data-pjax>
231
- <a href="https://github.com/trending" aria-selected="true" class="js-selected-navigation-item selected tabnav-tab" data-selected-links="trending_repositories https://github.com/trending">Repositories</a>
232
- <a href="https://github.com/trending/developers" class="js-selected-navigation-item tabnav-tab" data-selected-links="trending_developers https://github.com/trending/developers">Developers</a>
233
- </nav>
234
-
235
- </div>
236
- <div class="explore-content">
237
- <ol class="repo-list">
238
- <li class="repo-list-item" id="pa-voxel.css">
239
- <div class="repo-list-stats">
240
- <a href="/login?return_to=%2FHunterLarco%2Fvoxel.css"
241
- class="btn btn-sm tooltipped tooltipped-n"
242
- aria-label="You must be signed in to star a repository" rel="nofollow">
243
- <span aria-hidden="true" class="octicon octicon-star"></span>
244
- Star
245
- </a>
246
-
247
-
248
- </div>
249
-
250
- <h3 class="repo-list-name">
251
- <a href="/HunterLarco/voxel.css">
252
- <span class="prefix">HunterLarco</span>
253
- <span class="slash">/</span>
254
- voxel.css
255
- </a> </h3>
256
-
257
- <p class="repo-list-description">
258
- A lightweight 3D CSS voxel library.
259
- </p>
260
-
261
- <p class="repo-list-meta">
262
- CSS
263
-
264
- &#8226;
265
-
266
- 941 stars today
267
-
268
-
269
- &#8226;
270
- Built by
271
- <a href="/HunterLarco/voxel.css/graphs/contributors">
272
- <img alt="@HunterLarco" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/2695807?v=3&amp;s=40" title="HunterLarco" width="20" />
273
- <img alt="@bpartridge83" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/126483?v=3&amp;s=40" title="bpartridge83" width="20" />
274
- <img alt="@wesbos" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/176013?v=3&amp;s=40" title="wesbos" width="20" />
275
- </a>
276
- </p>
277
- </li>
278
-
279
- <li class="repo-list-item" id="pa-viewerjs">
280
- <div class="repo-list-stats">
281
- <a href="/login?return_to=%2Ffengyuanchen%2Fviewerjs"
282
- class="btn btn-sm tooltipped tooltipped-n"
283
- aria-label="You must be signed in to star a repository" rel="nofollow">
284
- <span aria-hidden="true" class="octicon octicon-star"></span>
285
- Star
286
- </a>
287
-
288
-
289
- </div>
290
-
291
- <h3 class="repo-list-name">
292
- <a href="/fengyuanchen/viewerjs">
293
- <span class="prefix">fengyuanchen</span>
294
- <span class="slash">/</span>
295
- viewerjs
296
- </a> </h3>
297
-
298
- <p class="repo-list-description">
299
- JavaScript image viewer.
300
- </p>
301
-
302
- <p class="repo-list-meta">
303
- JavaScript
304
-
305
- &#8226;
306
-
307
- 716 stars today
308
-
309
-
310
- &#8226;
311
- Built by
312
- <a href="/fengyuanchen/viewerjs/graphs/contributors">
313
- <img alt="@fengyuanchen" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/3456749?v=3&amp;s=40" title="fengyuanchen" width="20" />
314
- <img alt="@joelg236" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/1429994?v=3&amp;s=40" title="joelg236" width="20" />
315
- </a>
316
- </p>
317
- </li>
318
-
319
- <li class="repo-list-item" id="pa-FreeCodeCamp">
320
- <div class="repo-list-stats">
321
- <a href="/login?return_to=%2FFreeCodeCamp%2FFreeCodeCamp"
322
- class="btn btn-sm tooltipped tooltipped-n"
323
- aria-label="You must be signed in to star a repository" rel="nofollow">
324
- <span aria-hidden="true" class="octicon octicon-star"></span>
325
- Star
326
- </a>
327
-
328
-
329
- </div>
330
-
331
- <h3 class="repo-list-name">
332
- <a href="/FreeCodeCamp/FreeCodeCamp">
333
- <span class="prefix">FreeCodeCamp</span>
334
- <span class="slash">/</span>
335
- FreeCodeCamp
336
- </a> </h3>
337
-
338
- <p class="repo-list-description">
339
- The <a href="http://FreeCodeCamp.com">http://FreeCodeCamp.com</a> open source codebase and curriculum. Learn to code and help nonprofits.
340
- </p>
341
-
342
- <p class="repo-list-meta">
343
- JavaScript
344
-
345
- &#8226;
346
-
347
- 614 stars today
348
-
349
-
350
- &#8226;
351
- Built by
352
- <a href="/FreeCodeCamp/FreeCodeCamp/graphs/contributors">
353
- <img alt="@QuincyLarson" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/985197?v=3&amp;s=40" title="QuincyLarson" width="20" />
354
- <img alt="@sahat" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/544954?v=3&amp;s=40" title="sahat" width="20" />
355
- <img alt="@BerkeleyTrue" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/6775919?v=3&amp;s=40" title="BerkeleyTrue" width="20" />
356
- <img alt="@terakilobyte" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/1911390?v=3&amp;s=40" title="terakilobyte" width="20" />
357
- <img alt="@benmcmahon100" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/10749142?v=3&amp;s=40" title="benmcmahon100" width="20" />
358
- </a>
359
- </p>
360
- </li>
361
-
362
- <li class="repo-list-item" id="pa-CNTK">
363
- <div class="repo-list-stats">
364
- <a href="/login?return_to=%2FMicrosoft%2FCNTK"
365
- class="btn btn-sm tooltipped tooltipped-n"
366
- aria-label="You must be signed in to star a repository" rel="nofollow">
367
- <span aria-hidden="true" class="octicon octicon-star"></span>
368
- Star
369
- </a>
370
-
371
-
372
- </div>
373
-
374
- <h3 class="repo-list-name">
375
- <a href="/Microsoft/CNTK">
376
- <span class="prefix">Microsoft</span>
377
- <span class="slash">/</span>
378
- CNTK
379
- </a> </h3>
380
-
381
- <p class="repo-list-description">
382
- Computational Network Toolkit (CNTK)
383
- </p>
384
-
385
- <p class="repo-list-meta">
386
- C++
387
-
388
- &#8226;
389
-
390
- 378 stars today
391
-
392
-
393
- &#8226;
394
- Built by
395
- <a href="/Microsoft/CNTK/graphs/contributors">
396
- <img alt="@frankseide" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/16671126?v=3&amp;s=40" title="frankseide" width="20" />
397
- <img alt="@amitaga" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/16528882?v=3&amp;s=40" title="amitaga" width="20" />
398
- <img alt="@kaisheng" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/1399852?v=3&amp;s=40" title="kaisheng" width="20" />
399
- <img alt="@dongyu888" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/12472179?v=3&amp;s=40" title="dongyu888" width="20" />
400
- <img alt="@yzhang87" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/4911770?v=3&amp;s=40" title="yzhang87" width="20" />
401
- </a>
402
- </p>
403
- </li>
404
-
405
- <li class="repo-list-item" id="pa-You-Dont-Need-Lodash-Underscore">
406
- <div class="repo-list-stats">
407
- <a href="/login?return_to=%2Fcht8687%2FYou-Dont-Need-Lodash-Underscore"
408
- class="btn btn-sm tooltipped tooltipped-n"
409
- aria-label="You must be signed in to star a repository" rel="nofollow">
410
- <span aria-hidden="true" class="octicon octicon-star"></span>
411
- Star
412
- </a>
413
-
414
-
415
- </div>
416
-
417
- <h3 class="repo-list-name">
418
- <a href="/cht8687/You-Dont-Need-Lodash-Underscore">
419
- <span class="prefix">cht8687</span>
420
- <span class="slash">/</span>
421
- You-Dont-Need-Lodash-Underscore
422
- </a> </h3>
423
-
424
- <p class="repo-list-description">
425
- Lists of Javascript methods which you can use natively
426
- </p>
427
-
428
- <p class="repo-list-meta">
429
- JavaScript
430
-
431
- &#8226;
432
-
433
- 333 stars today
434
-
435
-
436
- &#8226;
437
- Built by
438
- <a href="/cht8687/You-Dont-Need-Lodash-Underscore/graphs/contributors">
439
- <img alt="@cht8687" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/4587603?v=3&amp;s=40" title="cht8687" width="20" />
440
- <img alt="@stevemao" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/6316590?v=3&amp;s=40" title="stevemao" width="20" />
441
- <img alt="@JonMcPartland" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/2131911?v=3&amp;s=40" title="JonMcPartland" width="20" />
442
- <img alt="@benjamingr" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/1315533?v=3&amp;s=40" title="benjamingr" width="20" />
443
- <img alt="@Hermanya" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/2906365?v=3&amp;s=40" title="Hermanya" width="20" />
444
- </a>
445
- </p>
446
- </li>
447
-
448
- <li class="repo-list-item" id="pa-bulma">
449
- <div class="repo-list-stats">
450
- <a href="/login?return_to=%2Fjgthms%2Fbulma"
451
- class="btn btn-sm tooltipped tooltipped-n"
452
- aria-label="You must be signed in to star a repository" rel="nofollow">
453
- <span aria-hidden="true" class="octicon octicon-star"></span>
454
- Star
455
- </a>
456
-
457
-
458
- </div>
459
-
460
- <h3 class="repo-list-name">
461
- <a href="/jgthms/bulma">
462
- <span class="prefix">jgthms</span>
463
- <span class="slash">/</span>
464
- bulma
465
- </a> </h3>
466
-
467
- <p class="repo-list-description">
468
- Modern CSS framework based on Flexbox
469
- </p>
470
-
471
- <p class="repo-list-meta">
472
- CSS
473
-
474
- &#8226;
475
-
476
- 334 stars today
477
-
478
-
479
- &#8226;
480
- Built by
481
- <a href="/jgthms/bulma/graphs/contributors">
482
- <img alt="@jgthms" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/1254808?v=3&amp;s=40" title="jgthms" width="20" />
483
- <img alt="@hummlas" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/830794?v=3&amp;s=40" title="hummlas" width="20" />
484
- </a>
485
- </p>
486
- </li>
487
-
488
- <li class="repo-list-item" id="pa-preact">
489
- <div class="repo-list-stats">
490
- <a href="/login?return_to=%2Fdevelopit%2Fpreact"
491
- class="btn btn-sm tooltipped tooltipped-n"
492
- aria-label="You must be signed in to star a repository" rel="nofollow">
493
- <span aria-hidden="true" class="octicon octicon-star"></span>
494
- Star
495
- </a>
496
-
497
-
498
- </div>
499
-
500
- <h3 class="repo-list-name">
501
- <a href="/developit/preact">
502
- <span class="prefix">developit</span>
503
- <span class="slash">/</span>
504
- preact
505
- </a> </h3>
506
-
507
- <p class="repo-list-description">
508
-
509
- <img class="emoji" title=":zap:" alt=":zap:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/26a1.png" height="20" width="20" align="absmiddle"> Fast 3kb React alternative with the same ES6 API. Components &amp; Virtual DOM.
510
- </p>
511
-
512
- <p class="repo-list-meta">
513
- JavaScript
514
-
515
- &#8226;
516
-
517
- 322 stars today
518
-
519
-
520
- &#8226;
521
- Built by
522
- <a href="/developit/preact/graphs/contributors">
523
- <img alt="@developit" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/105127?v=3&amp;s=40" title="developit" width="20" />
524
- <img alt="@sheepsteak" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/1379888?v=3&amp;s=40" title="sheepsteak" width="20" />
525
- <img alt="@darrenscerri" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/729230?v=3&amp;s=40" title="darrenscerri" width="20" />
526
- </a>
527
- </p>
528
- </li>
529
-
530
- <li class="repo-list-item" id="pa-furni-ios">
531
- <div class="repo-list-stats">
532
- <a href="/login?return_to=%2Ftwitterdev%2Ffurni-ios"
533
- class="btn btn-sm tooltipped tooltipped-n"
534
- aria-label="You must be signed in to star a repository" rel="nofollow">
535
- <span aria-hidden="true" class="octicon octicon-star"></span>
536
- Star
537
- </a>
538
-
539
-
540
- </div>
541
-
542
- <h3 class="repo-list-name">
543
- <a href="/twitterdev/furni-ios">
544
- <span class="prefix">twitterdev</span>
545
- <span class="slash">/</span>
546
- furni-ios
547
- </a> </h3>
548
-
549
- <p class="repo-list-description">
550
- Furni for iOS is a furniture store demo app presented at the Twitter Flight conference on October 21st, 2015, showing the power of the Fabric platform.
551
- </p>
552
-
553
- <p class="repo-list-meta">
554
- Swift
555
-
556
- &#8226;
557
-
558
- 303 stars today
559
-
560
-
561
- &#8226;
562
- Built by
563
- <a href="/twitterdev/furni-ios/graphs/contributors">
564
- <img alt="@romainhuet" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/27232?v=3&amp;s=40" title="romainhuet" width="20" />
565
- <img alt="@garethpaul" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/918117?v=3&amp;s=40" title="garethpaul" width="20" />
566
- </a>
567
- </p>
568
- </li>
569
-
570
- <li class="repo-list-item" id="pa-es6-cheatsheet">
571
- <div class="repo-list-stats">
572
- <a href="/login?return_to=%2FDrkSephy%2Fes6-cheatsheet"
573
- class="btn btn-sm tooltipped tooltipped-n"
574
- aria-label="You must be signed in to star a repository" rel="nofollow">
575
- <span aria-hidden="true" class="octicon octicon-star"></span>
576
- Star
577
- </a>
578
-
579
-
580
- </div>
581
-
582
- <h3 class="repo-list-name">
583
- <a href="/DrkSephy/es6-cheatsheet">
584
- <span class="prefix">DrkSephy</span>
585
- <span class="slash">/</span>
586
- es6-cheatsheet
587
- </a> </h3>
588
-
589
- <p class="repo-list-description">
590
- ES2015 [ES6] cheatsheet containing tips, tricks, best practices and code snippets
591
- </p>
592
-
593
- <p class="repo-list-meta">
594
- JavaScript
595
-
596
- &#8226;
597
-
598
- 278 stars today
599
-
600
-
601
- &#8226;
602
- Built by
603
- <a href="/DrkSephy/es6-cheatsheet/graphs/contributors">
604
- <img alt="@DrkSephy" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/1226900?v=3&amp;s=40" title="DrkSephy" width="20" />
605
- <img alt="@battaglr" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/1921409?v=3&amp;s=40" title="battaglr" width="20" />
606
- <img alt="@Canop" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/617006?v=3&amp;s=40" title="Canop" width="20" />
607
- <img alt="@bulatb" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/748752?v=3&amp;s=40" title="bulatb" width="20" />
608
- <img alt="@andreieftimie" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/449683?v=3&amp;s=40" title="andreieftimie" width="20" />
609
- </a>
610
- </p>
611
- </li>
612
-
613
- <li class="repo-list-item" id="pa-hint.css">
614
- <div class="repo-list-stats">
615
- <a href="/login?return_to=%2Fchinchang%2Fhint.css"
616
- class="btn btn-sm tooltipped tooltipped-n"
617
- aria-label="You must be signed in to star a repository" rel="nofollow">
618
- <span aria-hidden="true" class="octicon octicon-star"></span>
619
- Star
620
- </a>
621
-
622
-
623
- </div>
624
-
625
- <h3 class="repo-list-name">
626
- <a href="/chinchang/hint.css">
627
- <span class="prefix">chinchang</span>
628
- <span class="slash">/</span>
629
- hint.css
630
- </a> </h3>
631
-
632
- <p class="repo-list-description">
633
- A CSS only tooltip library for your lovely websites.
634
- </p>
635
-
636
- <p class="repo-list-meta">
637
- CSS
638
-
639
- &#8226;
640
-
641
- 242 stars today
642
-
643
-
644
- &#8226;
645
- Built by
646
- <a href="/chinchang/hint.css/graphs/contributors">
647
- <img alt="@chinchang" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/379918?v=3&amp;s=40" title="chinchang" width="20" />
648
- <img alt="@pra85" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/829526?v=3&amp;s=40" title="pra85" width="20" />
649
- <img alt="@nathggns" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/719814?v=3&amp;s=40" title="nathggns" width="20" />
650
- <img alt="@nixme" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/4344?v=3&amp;s=40" title="nixme" width="20" />
651
- <img alt="@bitdeli-chef" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/3092978?v=3&amp;s=40" title="bitdeli-chef" width="20" />
652
- </a>
653
- </p>
654
- </li>
655
-
656
- <li class="repo-list-item" id="pa-bash-handbook">
657
- <div class="repo-list-stats">
658
- <a href="/login?return_to=%2Fdenysdovhan%2Fbash-handbook"
659
- class="btn btn-sm tooltipped tooltipped-n"
660
- aria-label="You must be signed in to star a repository" rel="nofollow">
661
- <span aria-hidden="true" class="octicon octicon-star"></span>
662
- Star
663
- </a>
664
-
665
-
666
- </div>
667
-
668
- <h3 class="repo-list-name">
669
- <a href="/denysdovhan/bash-handbook">
670
- <span class="prefix">denysdovhan</span>
671
- <span class="slash">/</span>
672
- bash-handbook
673
- </a> </h3>
674
-
675
- <p class="repo-list-description">
676
- For those who wanna learn Bash
677
- </p>
678
-
679
- <p class="repo-list-meta">
680
- JavaScript
681
-
682
- &#8226;
683
-
684
- 201 stars today
685
-
686
-
687
- &#8226;
688
- Built by
689
- <a href="/denysdovhan/bash-handbook/graphs/contributors">
690
- <img alt="@denysdovhan" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/3459374?v=3&amp;s=40" title="denysdovhan" width="20" />
691
- <img alt="@bucaran" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/8317250?v=3&amp;s=40" title="bucaran" width="20" />
692
- <img alt="@andrepolischuk" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/8956796?v=3&amp;s=40" title="andrepolischuk" width="20" />
693
- <img alt="@CarlMungazi" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/8584475?v=3&amp;s=40" title="CarlMungazi" width="20" />
694
- <img alt="@alebelcor" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/856838?v=3&amp;s=40" title="alebelcor" width="20" />
695
- </a>
696
- </p>
697
- </li>
698
-
699
- <li class="repo-list-item" id="pa-medium-editor">
700
- <div class="repo-list-stats">
701
- <a href="/login?return_to=%2Fyabwe%2Fmedium-editor"
702
- class="btn btn-sm tooltipped tooltipped-n"
703
- aria-label="You must be signed in to star a repository" rel="nofollow">
704
- <span aria-hidden="true" class="octicon octicon-star"></span>
705
- Star
706
- </a>
707
-
708
-
709
- </div>
710
-
711
- <h3 class="repo-list-name">
712
- <a href="/yabwe/medium-editor">
713
- <span class="prefix">yabwe</span>
714
- <span class="slash">/</span>
715
- medium-editor
716
- </a> </h3>
717
-
718
- <p class="repo-list-description">
719
- Medium.com WYSIWYG editor clone. Uses contenteditable API to implement a rich text solution.
720
- </p>
721
-
722
- <p class="repo-list-meta">
723
- JavaScript
724
-
725
- &#8226;
726
-
727
- 192 stars today
728
-
729
-
730
- &#8226;
731
- Built by
732
- <a href="/yabwe/medium-editor/graphs/contributors">
733
- <img alt="@daviferreira" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/38787?v=3&amp;s=40" title="daviferreira" width="20" />
734
- <img alt="@nmielnik" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/2444240?v=3&amp;s=40" title="nmielnik" width="20" />
735
- <img alt="@j0k3r" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/62333?v=3&amp;s=40" title="j0k3r" width="20" />
736
- <img alt="@patrick-webs" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/10403580?v=3&amp;s=40" title="patrick-webs" width="20" />
737
- <img alt="@nchase" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/197309?v=3&amp;s=40" title="nchase" width="20" />
738
- </a>
739
- </p>
740
- </li>
741
-
742
- <li class="repo-list-item" id="pa-dlite">
743
- <div class="repo-list-stats">
744
- <a href="/login?return_to=%2Fnlf%2Fdlite"
745
- class="btn btn-sm tooltipped tooltipped-n"
746
- aria-label="You must be signed in to star a repository" rel="nofollow">
747
- <span aria-hidden="true" class="octicon octicon-star"></span>
748
- Star
749
- </a>
750
-
751
-
752
- </div>
753
-
754
- <h3 class="repo-list-name">
755
- <a href="/nlf/dlite">
756
- <span class="prefix">nlf</span>
757
- <span class="slash">/</span>
758
- dlite
759
- </a> </h3>
760
-
761
- <p class="repo-list-description">
762
- The simplest way to use Docker on OS X
763
- </p>
764
-
765
- <p class="repo-list-meta">
766
- Go
767
-
768
- &#8226;
769
-
770
- 187 stars today
771
-
772
-
773
- &#8226;
774
- Built by
775
- <a href="/nlf/dlite/graphs/contributors">
776
- <img alt="@nlf" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/424045?v=3&amp;s=40" title="nlf" width="20" />
777
- <img alt="@kylebrandt" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/1692624?v=3&amp;s=40" title="kylebrandt" width="20" />
778
- <img alt="@jgeiger" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/10274?v=3&amp;s=40" title="jgeiger" width="20" />
779
- <img alt="@stengaard" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/1597744?v=3&amp;s=40" title="stengaard" width="20" />
780
- <img alt="@leipert" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/2906107?v=3&amp;s=40" title="leipert" width="20" />
781
- </a>
782
- </p>
783
- </li>
784
-
785
- <li class="repo-list-item" id="pa-swift-algorithm-club">
786
- <div class="repo-list-stats">
787
- <a href="/login?return_to=%2Fhollance%2Fswift-algorithm-club"
788
- class="btn btn-sm tooltipped tooltipped-n"
789
- aria-label="You must be signed in to star a repository" rel="nofollow">
790
- <span aria-hidden="true" class="octicon octicon-star"></span>
791
- Star
792
- </a>
793
-
794
-
795
- </div>
796
-
797
- <h3 class="repo-list-name">
798
- <a href="/hollance/swift-algorithm-club">
799
- <span class="prefix">hollance</span>
800
- <span class="slash">/</span>
801
- swift-algorithm-club
802
- </a> </h3>
803
-
804
- <p class="repo-list-description">
805
- Algorithms and data structures in Swift, with explanations!
806
- </p>
807
-
808
- <p class="repo-list-meta">
809
- Swift
810
-
811
- &#8226;
812
-
813
- 173 stars today
814
-
815
-
816
- &#8226;
817
- Built by
818
- <a href="/hollance/swift-algorithm-club/graphs/contributors">
819
- <img alt="@hollance" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/346853?v=3&amp;s=40" title="hollance" width="20" />
820
- <img alt="@JovannyEspinal" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/8995840?v=3&amp;s=40" title="JovannyEspinal" width="20" />
821
- </a>
822
- </p>
823
- </li>
824
-
825
- <li class="repo-list-item" id="pa-nativefier">
826
- <div class="repo-list-stats">
827
- <a href="/login?return_to=%2Fjiahaog%2Fnativefier"
828
- class="btn btn-sm tooltipped tooltipped-n"
829
- aria-label="You must be signed in to star a repository" rel="nofollow">
830
- <span aria-hidden="true" class="octicon octicon-star"></span>
831
- Star
832
- </a>
833
-
834
-
835
- </div>
836
-
837
- <h3 class="repo-list-name">
838
- <a href="/jiahaog/nativefier">
839
- <span class="prefix">jiahaog</span>
840
- <span class="slash">/</span>
841
- nativefier
842
- </a> </h3>
843
-
844
- <p class="repo-list-description">
845
- Wrap any web page natively without even thinking, across Windows, OSX and Linux
846
- </p>
847
-
848
- <p class="repo-list-meta">
849
- JavaScript
850
-
851
- &#8226;
852
-
853
- 163 stars today
854
-
855
-
856
- &#8226;
857
- Built by
858
- <a href="/jiahaog/nativefier/graphs/contributors">
859
- <img alt="@jiahaog" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/7111741?v=3&amp;s=40" title="jiahaog" width="20" />
860
- <img alt="@maxogden" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/39759?v=3&amp;s=40" title="maxogden" width="20" />
861
- <img alt="@malept" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/11417?v=3&amp;s=40" title="malept" width="20" />
862
- <img alt="@zweicoder" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/3684550?v=3&amp;s=40" title="zweicoder" width="20" />
863
- <img alt="@jden" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/1106489?v=3&amp;s=40" title="jden" width="20" />
864
- </a>
865
- </p>
866
- </li>
867
-
868
- <li class="repo-list-item" id="pa-login-flow">
869
- <div class="repo-list-stats">
870
- <a href="/login?return_to=%2Fmxstbr%2Flogin-flow"
871
- class="btn btn-sm tooltipped tooltipped-n"
872
- aria-label="You must be signed in to star a repository" rel="nofollow">
873
- <span aria-hidden="true" class="octicon octicon-star"></span>
874
- Star
875
- </a>
876
-
877
-
878
- </div>
879
-
880
- <h3 class="repo-list-name">
881
- <a href="/mxstbr/login-flow">
882
- <span class="prefix">mxstbr</span>
883
- <span class="slash">/</span>
884
- login-flow
885
- </a> </h3>
886
-
887
- <p class="repo-list-description">
888
-
889
- <img class="emoji" title=":key:" alt=":key:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f511.png" height="20" width="20" align="absmiddle"> A login/register flow built with React&amp;Redux
890
- </p>
891
-
892
- <p class="repo-list-meta">
893
- JavaScript
894
-
895
- &#8226;
896
-
897
- 159 stars today
898
-
899
-
900
- &#8226;
901
- Built by
902
- <a href="/mxstbr/login-flow/graphs/contributors">
903
- <img alt="@mxstbr" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/7525670?v=3&amp;s=40" title="mxstbr" width="20" />
904
- <img alt="@CarlMungazi" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/8584475?v=3&amp;s=40" title="CarlMungazi" width="20" />
905
- <img alt="@ReadmeCritic" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/15367484?v=3&amp;s=40" title="ReadmeCritic" width="20" />
906
- </a>
907
- </p>
908
- </li>
909
-
910
- <li class="repo-list-item" id="pa-soundnode-app">
911
- <div class="repo-list-stats">
912
- <a href="/login?return_to=%2FSoundnode%2Fsoundnode-app"
913
- class="btn btn-sm tooltipped tooltipped-n"
914
- aria-label="You must be signed in to star a repository" rel="nofollow">
915
- <span aria-hidden="true" class="octicon octicon-star"></span>
916
- Star
917
- </a>
918
-
919
-
920
- </div>
921
-
922
- <h3 class="repo-list-name">
923
- <a href="/Soundnode/soundnode-app">
924
- <span class="prefix">Soundnode</span>
925
- <span class="slash">/</span>
926
- soundnode-app
927
- </a> </h3>
928
-
929
- <p class="repo-list-description">
930
- Soundnode App is the Soundcloud for desktop. Built with NW.js, Angular.js and Soundcloud API.
931
- </p>
932
-
933
- <p class="repo-list-meta">
934
- JavaScript
935
-
936
- &#8226;
937
-
938
- 146 stars today
939
-
940
-
941
- &#8226;
942
- Built by
943
- <a href="/Soundnode/soundnode-app/graphs/contributors">
944
- <img alt="@weblancaster" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/549394?v=3&amp;s=40" title="weblancaster" width="20" />
945
- <img alt="@Pitros" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/6910670?v=3&amp;s=40" title="Pitros" width="20" />
946
- <img alt="@jakejarrett" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/5661105?v=3&amp;s=40" title="jakejarrett" width="20" />
947
- <img alt="@mradionov" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/2007370?v=3&amp;s=40" title="mradionov" width="20" />
948
- <img alt="@MichielDeMey" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/793406?v=3&amp;s=40" title="MichielDeMey" width="20" />
949
- </a>
950
- </p>
951
- </li>
952
-
953
- <li class="repo-list-item" id="pa-prestissimo">
954
- <div class="repo-list-stats">
955
- <a href="/login?return_to=%2Fhirak%2Fprestissimo"
956
- class="btn btn-sm tooltipped tooltipped-n"
957
- aria-label="You must be signed in to star a repository" rel="nofollow">
958
- <span aria-hidden="true" class="octicon octicon-star"></span>
959
- Star
960
- </a>
961
-
962
-
963
- </div>
964
-
965
- <h3 class="repo-list-name">
966
- <a href="/hirak/prestissimo">
967
- <span class="prefix">hirak</span>
968
- <span class="slash">/</span>
969
- prestissimo
970
- </a> </h3>
971
-
972
- <p class="repo-list-description">
973
- composer parallel install plugin
974
- </p>
975
-
976
- <p class="repo-list-meta">
977
- PHP
978
-
979
- &#8226;
980
-
981
- 149 stars today
982
-
983
-
984
- &#8226;
985
- Built by
986
- <a href="/hirak/prestissimo/graphs/contributors">
987
- <img alt="@hirak" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/835251?v=3&amp;s=40" title="hirak" width="20" />
988
- <img alt="@brunoric" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/526125?v=3&amp;s=40" title="brunoric" width="20" />
989
- <img alt="@DQNEO" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/188741?v=3&amp;s=40" title="DQNEO" width="20" />
990
- <img alt="@hhamon" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/235550?v=3&amp;s=40" title="hhamon" width="20" />
991
- </a>
992
- </p>
993
- </li>
994
-
995
- <li class="repo-list-item" id="pa-sliding-deck">
996
- <div class="repo-list-stats">
997
- <a href="/login?return_to=%2Ftxusballesteros%2Fsliding-deck"
998
- class="btn btn-sm tooltipped tooltipped-n"
999
- aria-label="You must be signed in to star a repository" rel="nofollow">
1000
- <span aria-hidden="true" class="octicon octicon-star"></span>
1001
- Star
1002
- </a>
1003
-
1004
-
1005
- </div>
1006
-
1007
- <h3 class="repo-list-name">
1008
- <a href="/txusballesteros/sliding-deck">
1009
- <span class="prefix">txusballesteros</span>
1010
- <span class="slash">/</span>
1011
- sliding-deck
1012
- </a> </h3>
1013
-
1014
- <p class="repo-list-description">
1015
- SlidingDeck View for Android
1016
- </p>
1017
-
1018
- <p class="repo-list-meta">
1019
- Java
1020
-
1021
- &#8226;
1022
-
1023
- 140 stars today
1024
-
1025
-
1026
- &#8226;
1027
- Built by
1028
- <a href="/txusballesteros/sliding-deck/graphs/contributors">
1029
- <img alt="@txusballesteros" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/8314542?v=3&amp;s=40" title="txusballesteros" width="20" />
1030
- <img alt="@CarlMungazi" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/8584475?v=3&amp;s=40" title="CarlMungazi" width="20" />
1031
- </a>
1032
- </p>
1033
- </li>
1034
-
1035
- <li class="repo-list-item" id="pa-tensorflow">
1036
- <div class="repo-list-stats">
1037
- <a href="/login?return_to=%2Ftensorflow%2Ftensorflow"
1038
- class="btn btn-sm tooltipped tooltipped-n"
1039
- aria-label="You must be signed in to star a repository" rel="nofollow">
1040
- <span aria-hidden="true" class="octicon octicon-star"></span>
1041
- Star
1042
- </a>
1043
-
1044
-
1045
- </div>
1046
-
1047
- <h3 class="repo-list-name">
1048
- <a href="/tensorflow/tensorflow">
1049
- <span class="prefix">tensorflow</span>
1050
- <span class="slash">/</span>
1051
- tensorflow
1052
- </a> </h3>
1053
-
1054
- <p class="repo-list-description">
1055
- Computation using data flow graphs for scalable machine learning
1056
- </p>
1057
-
1058
- <p class="repo-list-meta">
1059
- C++
1060
-
1061
- &#8226;
1062
-
1063
- 86 stars today
1064
-
1065
-
1066
- &#8226;
1067
- Built by
1068
- <a href="/tensorflow/tensorflow/graphs/contributors">
1069
- <img alt="@vrv" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/463737?v=3&amp;s=40" title="vrv" width="20" />
1070
- <img alt="@keveman" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/229914?v=3&amp;s=40" title="keveman" width="20" />
1071
- <img alt="@josh11b" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/15258583?v=3&amp;s=40" title="josh11b" width="20" />
1072
- <img alt="@martinwicke" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/577277?v=3&amp;s=40" title="martinwicke" width="20" />
1073
- <img alt="@mrry" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/192142?v=3&amp;s=40" title="mrry" width="20" />
1074
- </a>
1075
- </p>
1076
- </li>
1077
-
1078
- <li class="repo-list-item" id="pa-milligram">
1079
- <div class="repo-list-stats">
1080
- <a href="/login?return_to=%2Fmilligram%2Fmilligram"
1081
- class="btn btn-sm tooltipped tooltipped-n"
1082
- aria-label="You must be signed in to star a repository" rel="nofollow">
1083
- <span aria-hidden="true" class="octicon octicon-star"></span>
1084
- Star
1085
- </a>
1086
-
1087
-
1088
- </div>
1089
-
1090
- <h3 class="repo-list-name">
1091
- <a href="/milligram/milligram">
1092
- <span class="prefix">milligram</span>
1093
- <span class="slash">/</span>
1094
- milligram
1095
- </a> </h3>
1096
-
1097
- <p class="repo-list-description">
1098
- A minimalist CSS framework.
1099
- </p>
1100
-
1101
- <p class="repo-list-meta">
1102
- CSS
1103
-
1104
- &#8226;
1105
-
1106
- 113 stars today
1107
-
1108
-
1109
- &#8226;
1110
- Built by
1111
- <a href="/milligram/milligram/graphs/contributors">
1112
- <img alt="@cjpatoilo" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/1542831?v=3&amp;s=40" title="cjpatoilo" width="20" />
1113
- <img alt="@HugoGiraudel" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/1889710?v=3&amp;s=40" title="HugoGiraudel" width="20" />
1114
- <img alt="@joaobarbosa" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/189579?v=3&amp;s=40" title="joaobarbosa" width="20" />
1115
- <img alt="@fredericodietz" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/1359344?v=3&amp;s=40" title="fredericodietz" width="20" />
1116
- <img alt="@rodrigoddalmeida" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/143738?v=3&amp;s=40" title="rodrigoddalmeida" width="20" />
1117
- </a>
1118
- </p>
1119
- </li>
1120
-
1121
- <li class="repo-list-item" id="pa-conspeech">
1122
- <div class="repo-list-stats">
1123
- <a href="/login?return_to=%2Fvalentin012%2Fconspeech"
1124
- class="btn btn-sm tooltipped tooltipped-n"
1125
- aria-label="You must be signed in to star a repository" rel="nofollow">
1126
- <span aria-hidden="true" class="octicon octicon-star"></span>
1127
- Star
1128
- </a>
1129
-
1130
-
1131
- </div>
1132
-
1133
- <h3 class="repo-list-name">
1134
- <a href="/valentin012/conspeech">
1135
- <span class="prefix">valentin012</span>
1136
- <span class="slash">/</span>
1137
- conspeech
1138
- </a> </h3>
1139
-
1140
- <p class="repo-list-description">
1141
- Political Speech Generator
1142
- </p>
1143
-
1144
- <p class="repo-list-meta">
1145
- OpenEdge ABL
1146
-
1147
- &#8226;
1148
-
1149
- 108 stars today
1150
-
1151
-
1152
- &#8226;
1153
- Built by
1154
- <a href="/valentin012/conspeech/graphs/contributors">
1155
- <img alt="@valentin012" class="avatar" height="20" src="https://avatars3.githubusercontent.com/u/11520910?v=3&amp;s=40" title="valentin012" width="20" />
1156
- <img alt="@stuartpb" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/572196?v=3&amp;s=40" title="stuartpb" width="20" />
1157
- </a>
1158
- </p>
1159
- </li>
1160
-
1161
- <li class="repo-list-item" id="pa-goad">
1162
- <div class="repo-list-stats">
1163
- <a href="/login?return_to=%2Fgophergala2016%2Fgoad"
1164
- class="btn btn-sm tooltipped tooltipped-n"
1165
- aria-label="You must be signed in to star a repository" rel="nofollow">
1166
- <span aria-hidden="true" class="octicon octicon-star"></span>
1167
- Star
1168
- </a>
1169
-
1170
-
1171
- </div>
1172
-
1173
- <h3 class="repo-list-name">
1174
- <a href="/gophergala2016/goad">
1175
- <span class="prefix">gophergala2016</span>
1176
- <span class="slash">/</span>
1177
- goad
1178
- </a> </h3>
1179
-
1180
- <p class="repo-list-description">
1181
- Goad is an AWS Lambda powered, highly distributed, load testing tool
1182
- </p>
1183
-
1184
- <p class="repo-list-meta">
1185
- CSS
1186
-
1187
- &#8226;
1188
-
1189
- 108 stars today
1190
-
1191
-
1192
- &#8226;
1193
- Built by
1194
- <a href="/gophergala2016/goad/graphs/contributors">
1195
- <img alt="@matiaskorhonen" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/43314?v=3&amp;s=40" title="matiaskorhonen" width="20" />
1196
- <img alt="@pajp" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/68399?v=3&amp;s=40" title="pajp" width="20" />
1197
- <img alt="@sdsykes" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/32757?v=3&amp;s=40" title="sdsykes" width="20" />
1198
- <img alt="@jcxplorer" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/42855?v=3&amp;s=40" title="jcxplorer" width="20" />
1199
- </a>
1200
- </p>
1201
- </li>
1202
-
1203
- <li class="repo-list-item" id="pa-uCrop">
1204
- <div class="repo-list-stats">
1205
- <a href="/login?return_to=%2FYalantis%2FuCrop"
1206
- class="btn btn-sm tooltipped tooltipped-n"
1207
- aria-label="You must be signed in to star a repository" rel="nofollow">
1208
- <span aria-hidden="true" class="octicon octicon-star"></span>
1209
- Star
1210
- </a>
1211
-
1212
-
1213
- </div>
1214
-
1215
- <h3 class="repo-list-name">
1216
- <a href="/Yalantis/uCrop">
1217
- <span class="prefix">Yalantis</span>
1218
- <span class="slash">/</span>
1219
- uCrop
1220
- </a> </h3>
1221
-
1222
- <p class="repo-list-description">
1223
- Image Cropping Library for Android
1224
- </p>
1225
-
1226
- <p class="repo-list-meta">
1227
- Java
1228
-
1229
- &#8226;
1230
-
1231
- 103 stars today
1232
-
1233
-
1234
- &#8226;
1235
- Built by
1236
- <a href="/Yalantis/uCrop/graphs/contributors">
1237
- <img alt="@shliama" class="avatar" height="20" src="https://avatars0.githubusercontent.com/u/2311626?v=3&amp;s=40" title="shliama" width="20" />
1238
- </a>
1239
- </p>
1240
- </li>
1241
-
1242
- <li class="repo-list-item" id="pa-whiteboard">
1243
- <div class="repo-list-stats">
1244
- <a href="/login?return_to=%2Fmpociot%2Fwhiteboard"
1245
- class="btn btn-sm tooltipped tooltipped-n"
1246
- aria-label="You must be signed in to star a repository" rel="nofollow">
1247
- <span aria-hidden="true" class="octicon octicon-star"></span>
1248
- Star
1249
- </a>
1250
-
1251
-
1252
- </div>
1253
-
1254
- <h3 class="repo-list-name">
1255
- <a href="/mpociot/whiteboard">
1256
- <span class="prefix">mpociot</span>
1257
- <span class="slash">/</span>
1258
- whiteboard
1259
- </a> </h3>
1260
-
1261
- <p class="repo-list-description">
1262
- Simply write beautiful API documentation.
1263
- </p>
1264
-
1265
- <p class="repo-list-meta">
1266
- JavaScript
1267
-
1268
- &#8226;
1269
-
1270
- 97 stars today
1271
-
1272
-
1273
- &#8226;
1274
- Built by
1275
- <a href="/mpociot/whiteboard/graphs/contributors">
1276
- <img alt="@TuckerWhitehouse" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/360595?v=3&amp;s=40" title="TuckerWhitehouse" width="20" />
1277
- <img alt="@mpociot" class="avatar" height="20" src="https://avatars2.githubusercontent.com/u/804684?v=3&amp;s=40" title="mpociot" width="20" />
1278
- </a>
1279
- </p>
1280
- </li>
1281
-
1282
- </ol>
1283
- <div class="context-loader large-format-loader">
1284
- <p><img alt="" height="64" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-128.gif" width="64" /></p>
1285
- <p>Loading…</p>
1286
- </div>
1287
-
1288
- </div>
1289
- </div>
1290
- <div class="column one-fourth">
1291
- <ul class="filter-list small language-filter-list" data-pjax>
1292
- <li>
1293
- <a href="https://github.com/trending" class="filter-item selected">All languages</a>
1294
- </li>
1295
- <li>
1296
- <a href="https://github.com/trending?l=unknown" class="filter-item ">Unknown languages</a>
1297
- </li>
1298
- <li>
1299
- <a href="https://github.com/trending?l=cpp" class="filter-item ">C++</a>
1300
- </li>
1301
- <li>
1302
- <a href="https://github.com/trending?l=css" class="filter-item ">CSS</a>
1303
- </li>
1304
- <li>
1305
- <a href="https://github.com/trending?l=java" class="filter-item ">Java</a>
1306
- </li>
1307
- <li>
1308
- <a href="https://github.com/trending?l=javascript" class="filter-item ">JavaScript</a>
1309
- </li>
1310
- <li>
1311
- <a href="https://github.com/trending?l=php" class="filter-item ">PHP</a>
1312
- </li>
1313
- <li>
1314
- <a href="https://github.com/trending?l=python" class="filter-item ">Python</a>
1315
- </li>
1316
- <li>
1317
- <a href="https://github.com/trending?l=ruby" class="filter-item ">Ruby</a>
1318
- </li>
1319
- </ul>
1320
-
1321
- <div class="select-menu js-menu-container js-select-menu">
1322
- <button class="btn btn-sm select-menu-button js-menu-target" type="button" aria-haspopup="true">
1323
- <span aria-hidden="true" class="octicon octicon-list-unordered"></span>
1324
- <i>Other:</i>
1325
- <span class="js-select-button">Languages</span>
1326
- </button>
1327
-
1328
- <div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
1329
- <div class="select-menu-modal">
1330
- <div class="select-menu-header">
1331
- <span aria-label="Close" class="octicon octicon-x js-menu-close" role="button"></span>
1332
- <span class="select-menu-title">Other Languages</span>
1333
- </div>
1334
-
1335
- <div class="select-menu-filters">
1336
- <div class="select-menu-text-filter">
1337
- <input type="text" id="text-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter Languages" aria-label="Type or choose a language">
1338
- </div>
1339
- </div>
1340
-
1341
- <div class="select-menu-list" data-pjax role="menu">
1342
-
1343
-
1344
- <div data-filterable-for="text-filter-field" data-filterable-type="substring">
1345
- <a href="https://github.com/trending?l=abap" class="select-menu-item js-navigation-item " role="menuitem">
1346
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1347
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ABAP</span>
1348
- </a> <a href="https://github.com/trending?l=as3" class="select-menu-item js-navigation-item " role="menuitem">
1349
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1350
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ActionScript</span>
1351
- </a> <a href="https://github.com/trending?l=ada" class="select-menu-item js-navigation-item " role="menuitem">
1352
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1353
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Ada</span>
1354
- </a> <a href="https://github.com/trending?l=agda" class="select-menu-item js-navigation-item " role="menuitem">
1355
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1356
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Agda</span>
1357
- </a> <a href="https://github.com/trending?l=ags-script" class="select-menu-item js-navigation-item " role="menuitem">
1358
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1359
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>AGS Script</span>
1360
- </a> <a href="https://github.com/trending?l=alloy" class="select-menu-item js-navigation-item " role="menuitem">
1361
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1362
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Alloy</span>
1363
- </a> <a href="https://github.com/trending?l=ampl" class="select-menu-item js-navigation-item " role="menuitem">
1364
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1365
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>AMPL</span>
1366
- </a> <a href="https://github.com/trending?l=antlr" class="select-menu-item js-navigation-item " role="menuitem">
1367
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1368
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ANTLR</span>
1369
- </a> <a href="https://github.com/trending?l=apacheconf" class="select-menu-item js-navigation-item " role="menuitem">
1370
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1371
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ApacheConf</span>
1372
- </a> <a href="https://github.com/trending?l=apex" class="select-menu-item js-navigation-item " role="menuitem">
1373
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1374
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Apex</span>
1375
- </a> <a href="https://github.com/trending?l=api-blueprint" class="select-menu-item js-navigation-item " role="menuitem">
1376
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1377
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>API Blueprint</span>
1378
- </a> <a href="https://github.com/trending?l=apl" class="select-menu-item js-navigation-item " role="menuitem">
1379
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1380
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>APL</span>
1381
- </a> <a href="https://github.com/trending?l=applescript" class="select-menu-item js-navigation-item " role="menuitem">
1382
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1383
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>AppleScript</span>
1384
- </a> <a href="https://github.com/trending?l=arc" class="select-menu-item js-navigation-item " role="menuitem">
1385
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1386
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Arc</span>
1387
- </a> <a href="https://github.com/trending?l=arduino" class="select-menu-item js-navigation-item " role="menuitem">
1388
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1389
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Arduino</span>
1390
- </a> <a href="https://github.com/trending?l=aspx-vb" class="select-menu-item js-navigation-item " role="menuitem">
1391
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1392
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ASP</span>
1393
- </a> <a href="https://github.com/trending?l=aspectj" class="select-menu-item js-navigation-item " role="menuitem">
1394
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1395
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>AspectJ</span>
1396
- </a> <a href="https://github.com/trending?l=nasm" class="select-menu-item js-navigation-item " role="menuitem">
1397
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1398
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Assembly</span>
1399
- </a> <a href="https://github.com/trending?l=ats" class="select-menu-item js-navigation-item " role="menuitem">
1400
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1401
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ATS</span>
1402
- </a> <a href="https://github.com/trending?l=augeas" class="select-menu-item js-navigation-item " role="menuitem">
1403
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1404
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Augeas</span>
1405
- </a> <a href="https://github.com/trending?l=autohotkey" class="select-menu-item js-navigation-item " role="menuitem">
1406
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1407
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>AutoHotkey</span>
1408
- </a> <a href="https://github.com/trending?l=autoit" class="select-menu-item js-navigation-item " role="menuitem">
1409
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1410
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>AutoIt</span>
1411
- </a> <a href="https://github.com/trending?l=awk" class="select-menu-item js-navigation-item " role="menuitem">
1412
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1413
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Awk</span>
1414
- </a> <a href="https://github.com/trending?l=bat" class="select-menu-item js-navigation-item " role="menuitem">
1415
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1416
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Batchfile</span>
1417
- </a> <a href="https://github.com/trending?l=befunge" class="select-menu-item js-navigation-item " role="menuitem">
1418
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1419
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Befunge</span>
1420
- </a> <a href="https://github.com/trending?l=bison" class="select-menu-item js-navigation-item " role="menuitem">
1421
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1422
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Bison</span>
1423
- </a> <a href="https://github.com/trending?l=bitbake" class="select-menu-item js-navigation-item " role="menuitem">
1424
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1425
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>BitBake</span>
1426
- </a> <a href="https://github.com/trending?l=blitzbasic" class="select-menu-item js-navigation-item " role="menuitem">
1427
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1428
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>BlitzBasic</span>
1429
- </a> <a href="https://github.com/trending?l=blitzmax" class="select-menu-item js-navigation-item " role="menuitem">
1430
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1431
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>BlitzMax</span>
1432
- </a> <a href="https://github.com/trending?l=bluespec" class="select-menu-item js-navigation-item " role="menuitem">
1433
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1434
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Bluespec</span>
1435
- </a> <a href="https://github.com/trending?l=boo" class="select-menu-item js-navigation-item " role="menuitem">
1436
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1437
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Boo</span>
1438
- </a> <a href="https://github.com/trending?l=brainfuck" class="select-menu-item js-navigation-item " role="menuitem">
1439
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1440
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Brainfuck</span>
1441
- </a> <a href="https://github.com/trending?l=brightscript" class="select-menu-item js-navigation-item " role="menuitem">
1442
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1443
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Brightscript</span>
1444
- </a> <a href="https://github.com/trending?l=bro" class="select-menu-item js-navigation-item " role="menuitem">
1445
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1446
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Bro</span>
1447
- </a> <a href="https://github.com/trending?l=c" class="select-menu-item js-navigation-item " role="menuitem">
1448
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1449
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>C</span>
1450
- </a> <a href="https://github.com/trending?l=csharp" class="select-menu-item js-navigation-item " role="menuitem">
1451
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1452
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>C#</span>
1453
- </a> <a href="https://github.com/trending?l=cpp" class="select-menu-item js-navigation-item " role="menuitem">
1454
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1455
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>C++</span>
1456
- </a> <a href="https://github.com/trending?l=cap%27n-proto" class="select-menu-item js-navigation-item " role="menuitem">
1457
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1458
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Cap&#39;n Proto</span>
1459
- </a> <a href="https://github.com/trending?l=cartocss" class="select-menu-item js-navigation-item " role="menuitem">
1460
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1461
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>CartoCSS</span>
1462
- </a> <a href="https://github.com/trending?l=ceylon" class="select-menu-item js-navigation-item " role="menuitem">
1463
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1464
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Ceylon</span>
1465
- </a> <a href="https://github.com/trending?l=chapel" class="select-menu-item js-navigation-item " role="menuitem">
1466
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1467
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Chapel</span>
1468
- </a> <a href="https://github.com/trending?l=charity" class="select-menu-item js-navigation-item " role="menuitem">
1469
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1470
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Charity</span>
1471
- </a> <a href="https://github.com/trending?l=chuck" class="select-menu-item js-navigation-item " role="menuitem">
1472
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1473
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ChucK</span>
1474
- </a> <a href="https://github.com/trending?l=cirru" class="select-menu-item js-navigation-item " role="menuitem">
1475
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1476
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Cirru</span>
1477
- </a> <a href="https://github.com/trending?l=clarion" class="select-menu-item js-navigation-item " role="menuitem">
1478
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1479
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Clarion</span>
1480
- </a> <a href="https://github.com/trending?l=clean" class="select-menu-item js-navigation-item " role="menuitem">
1481
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1482
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Clean</span>
1483
- </a> <a href="https://github.com/trending?l=click" class="select-menu-item js-navigation-item " role="menuitem">
1484
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1485
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Click</span>
1486
- </a> <a href="https://github.com/trending?l=clips" class="select-menu-item js-navigation-item " role="menuitem">
1487
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1488
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>CLIPS</span>
1489
- </a> <a href="https://github.com/trending?l=clojure" class="select-menu-item js-navigation-item " role="menuitem">
1490
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1491
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Clojure</span>
1492
- </a> <a href="https://github.com/trending?l=cmake" class="select-menu-item js-navigation-item " role="menuitem">
1493
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1494
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>CMake</span>
1495
- </a> <a href="https://github.com/trending?l=cobol" class="select-menu-item js-navigation-item " role="menuitem">
1496
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1497
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>COBOL</span>
1498
- </a> <a href="https://github.com/trending?l=coffeescript" class="select-menu-item js-navigation-item " role="menuitem">
1499
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1500
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>CoffeeScript</span>
1501
- </a> <a href="https://github.com/trending?l=cfm" class="select-menu-item js-navigation-item " role="menuitem">
1502
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1503
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ColdFusion</span>
1504
- </a> <a href="https://github.com/trending?l=common-lisp" class="select-menu-item js-navigation-item " role="menuitem">
1505
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1506
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Common Lisp</span>
1507
- </a> <a href="https://github.com/trending?l=component-pascal" class="select-menu-item js-navigation-item " role="menuitem">
1508
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1509
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Component Pascal</span>
1510
- </a> <a href="https://github.com/trending?l=cool" class="select-menu-item js-navigation-item " role="menuitem">
1511
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1512
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Cool</span>
1513
- </a> <a href="https://github.com/trending?l=coq" class="select-menu-item js-navigation-item " role="menuitem">
1514
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1515
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Coq</span>
1516
- </a> <a href="https://github.com/trending?l=crystal" class="select-menu-item js-navigation-item " role="menuitem">
1517
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1518
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Crystal</span>
1519
- </a> <a href="https://github.com/trending?l=css" class="select-menu-item js-navigation-item " role="menuitem">
1520
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1521
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>CSS</span>
1522
- </a> <a href="https://github.com/trending?l=cucumber" class="select-menu-item js-navigation-item " role="menuitem">
1523
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1524
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Cucumber</span>
1525
- </a> <a href="https://github.com/trending?l=cuda" class="select-menu-item js-navigation-item " role="menuitem">
1526
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1527
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Cuda</span>
1528
- </a> <a href="https://github.com/trending?l=cycript" class="select-menu-item js-navigation-item " role="menuitem">
1529
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1530
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Cycript</span>
1531
- </a> <a href="https://github.com/trending?l=d" class="select-menu-item js-navigation-item " role="menuitem">
1532
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1533
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>D</span>
1534
- </a> <a href="https://github.com/trending?l=dpatch" class="select-menu-item js-navigation-item " role="menuitem">
1535
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1536
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Darcs Patch</span>
1537
- </a> <a href="https://github.com/trending?l=dart" class="select-menu-item js-navigation-item " role="menuitem">
1538
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1539
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Dart</span>
1540
- </a> <a href="https://github.com/trending?l=diff" class="select-menu-item js-navigation-item " role="menuitem">
1541
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1542
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Diff</span>
1543
- </a> <a href="https://github.com/trending?l=digital-command-language" class="select-menu-item js-navigation-item " role="menuitem">
1544
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1545
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>DIGITAL Command Language</span>
1546
- </a> <a href="https://github.com/trending?l=dm" class="select-menu-item js-navigation-item " role="menuitem">
1547
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1548
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>DM</span>
1549
- </a> <a href="https://github.com/trending?l=dogescript" class="select-menu-item js-navigation-item " role="menuitem">
1550
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1551
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Dogescript</span>
1552
- </a> <a href="https://github.com/trending?l=dtrace" class="select-menu-item js-navigation-item " role="menuitem">
1553
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1554
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>DTrace</span>
1555
- </a> <a href="https://github.com/trending?l=dylan" class="select-menu-item js-navigation-item " role="menuitem">
1556
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1557
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Dylan</span>
1558
- </a> <a href="https://github.com/trending?l=e" class="select-menu-item js-navigation-item " role="menuitem">
1559
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1560
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>E</span>
1561
- </a> <a href="https://github.com/trending?l=eagle" class="select-menu-item js-navigation-item " role="menuitem">
1562
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1563
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Eagle</span>
1564
- </a> <a href="https://github.com/trending?l=ec" class="select-menu-item js-navigation-item " role="menuitem">
1565
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1566
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>eC</span>
1567
- </a> <a href="https://github.com/trending?l=ecl" class="select-menu-item js-navigation-item " role="menuitem">
1568
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1569
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ECL</span>
1570
- </a> <a href="https://github.com/trending?l=eiffel" class="select-menu-item js-navigation-item " role="menuitem">
1571
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1572
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Eiffel</span>
1573
- </a> <a href="https://github.com/trending?l=elixir" class="select-menu-item js-navigation-item " role="menuitem">
1574
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1575
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Elixir</span>
1576
- </a> <a href="https://github.com/trending?l=elm" class="select-menu-item js-navigation-item " role="menuitem">
1577
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1578
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Elm</span>
1579
- </a> <a href="https://github.com/trending?l=emacs-lisp" class="select-menu-item js-navigation-item " role="menuitem">
1580
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1581
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Emacs Lisp</span>
1582
- </a> <a href="https://github.com/trending?l=emberscript" class="select-menu-item js-navigation-item " role="menuitem">
1583
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1584
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>EmberScript</span>
1585
- </a> <a href="https://github.com/trending?l=erlang" class="select-menu-item js-navigation-item " role="menuitem">
1586
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1587
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Erlang</span>
1588
- </a> <a href="https://github.com/trending?l=fsharp" class="select-menu-item js-navigation-item " role="menuitem">
1589
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1590
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>F#</span>
1591
- </a> <a href="https://github.com/trending?l=factor" class="select-menu-item js-navigation-item " role="menuitem">
1592
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1593
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Factor</span>
1594
- </a> <a href="https://github.com/trending?l=fancy" class="select-menu-item js-navigation-item " role="menuitem">
1595
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1596
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Fancy</span>
1597
- </a> <a href="https://github.com/trending?l=fantom" class="select-menu-item js-navigation-item " role="menuitem">
1598
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1599
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Fantom</span>
1600
- </a> <a href="https://github.com/trending?l=flux" class="select-menu-item js-navigation-item " role="menuitem">
1601
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1602
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>FLUX</span>
1603
- </a> <a href="https://github.com/trending?l=forth" class="select-menu-item js-navigation-item " role="menuitem">
1604
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1605
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Forth</span>
1606
- </a> <a href="https://github.com/trending?l=fortran" class="select-menu-item js-navigation-item " role="menuitem">
1607
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1608
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>FORTRAN</span>
1609
- </a> <a href="https://github.com/trending?l=freemarker" class="select-menu-item js-navigation-item " role="menuitem">
1610
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1611
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>FreeMarker</span>
1612
- </a> <a href="https://github.com/trending?l=frege" class="select-menu-item js-navigation-item " role="menuitem">
1613
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1614
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Frege</span>
1615
- </a> <a href="https://github.com/trending?l=game-maker-language" class="select-menu-item js-navigation-item " role="menuitem">
1616
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1617
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Game Maker Language</span>
1618
- </a> <a href="https://github.com/trending?l=gams" class="select-menu-item js-navigation-item " role="menuitem">
1619
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1620
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>GAMS</span>
1621
- </a> <a href="https://github.com/trending?l=gap" class="select-menu-item js-navigation-item " role="menuitem">
1622
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1623
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>GAP</span>
1624
- </a> <a href="https://github.com/trending?l=gdscript" class="select-menu-item js-navigation-item " role="menuitem">
1625
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1626
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>GDScript</span>
1627
- </a> <a href="https://github.com/trending?l=genshi" class="select-menu-item js-navigation-item " role="menuitem">
1628
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1629
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Genshi</span>
1630
- </a> <a href="https://github.com/trending?l=pot" class="select-menu-item js-navigation-item " role="menuitem">
1631
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1632
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Gettext Catalog</span>
1633
- </a> <a href="https://github.com/trending?l=glsl" class="select-menu-item js-navigation-item " role="menuitem">
1634
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1635
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>GLSL</span>
1636
- </a> <a href="https://github.com/trending?l=glyph" class="select-menu-item js-navigation-item " role="menuitem">
1637
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1638
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Glyph</span>
1639
- </a> <a href="https://github.com/trending?l=gnuplot" class="select-menu-item js-navigation-item " role="menuitem">
1640
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1641
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Gnuplot</span>
1642
- </a> <a href="https://github.com/trending?l=go" class="select-menu-item js-navigation-item " role="menuitem">
1643
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1644
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Go</span>
1645
- </a> <a href="https://github.com/trending?l=golo" class="select-menu-item js-navigation-item " role="menuitem">
1646
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1647
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Golo</span>
1648
- </a> <a href="https://github.com/trending?l=gosu" class="select-menu-item js-navigation-item " role="menuitem">
1649
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1650
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Gosu</span>
1651
- </a> <a href="https://github.com/trending?l=grace" class="select-menu-item js-navigation-item " role="menuitem">
1652
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1653
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Grace</span>
1654
- </a> <a href="https://github.com/trending?l=grammatical-framework" class="select-menu-item js-navigation-item " role="menuitem">
1655
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1656
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Grammatical Framework</span>
1657
- </a> <a href="https://github.com/trending?l=groff" class="select-menu-item js-navigation-item " role="menuitem">
1658
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1659
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Groff</span>
1660
- </a> <a href="https://github.com/trending?l=groovy" class="select-menu-item js-navigation-item " role="menuitem">
1661
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1662
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Groovy</span>
1663
- </a> <a href="https://github.com/trending?l=hack" class="select-menu-item js-navigation-item " role="menuitem">
1664
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1665
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Hack</span>
1666
- </a> <a href="https://github.com/trending?l=handlebars" class="select-menu-item js-navigation-item " role="menuitem">
1667
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1668
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Handlebars</span>
1669
- </a> <a href="https://github.com/trending?l=harbour" class="select-menu-item js-navigation-item " role="menuitem">
1670
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1671
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Harbour</span>
1672
- </a> <a href="https://github.com/trending?l=haskell" class="select-menu-item js-navigation-item " role="menuitem">
1673
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1674
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Haskell</span>
1675
- </a> <a href="https://github.com/trending?l=haxe" class="select-menu-item js-navigation-item " role="menuitem">
1676
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1677
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Haxe</span>
1678
- </a> <a href="https://github.com/trending?l=hcl" class="select-menu-item js-navigation-item " role="menuitem">
1679
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1680
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>HCL</span>
1681
- </a> <a href="https://github.com/trending?l=html" class="select-menu-item js-navigation-item " role="menuitem">
1682
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1683
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>HTML</span>
1684
- </a> <a href="https://github.com/trending?l=hy" class="select-menu-item js-navigation-item " role="menuitem">
1685
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1686
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Hy</span>
1687
- </a> <a href="https://github.com/trending?l=hyphy" class="select-menu-item js-navigation-item " role="menuitem">
1688
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1689
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>HyPhy</span>
1690
- </a> <a href="https://github.com/trending?l=idl" class="select-menu-item js-navigation-item " role="menuitem">
1691
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1692
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>IDL</span>
1693
- </a> <a href="https://github.com/trending?l=idris" class="select-menu-item js-navigation-item " role="menuitem">
1694
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1695
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Idris</span>
1696
- </a> <a href="https://github.com/trending?l=igor-pro" class="select-menu-item js-navigation-item " role="menuitem">
1697
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1698
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>IGOR Pro</span>
1699
- </a> <a href="https://github.com/trending?l=inform-7" class="select-menu-item js-navigation-item " role="menuitem">
1700
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1701
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Inform 7</span>
1702
- </a> <a href="https://github.com/trending?l=inno-setup" class="select-menu-item js-navigation-item " role="menuitem">
1703
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1704
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Inno Setup</span>
1705
- </a> <a href="https://github.com/trending?l=io" class="select-menu-item js-navigation-item " role="menuitem">
1706
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1707
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Io</span>
1708
- </a> <a href="https://github.com/trending?l=ioke" class="select-menu-item js-navigation-item " role="menuitem">
1709
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1710
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Ioke</span>
1711
- </a> <a href="https://github.com/trending?l=isabelle" class="select-menu-item js-navigation-item " role="menuitem">
1712
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1713
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Isabelle</span>
1714
- </a> <a href="https://github.com/trending?l=j" class="select-menu-item js-navigation-item " role="menuitem">
1715
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1716
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>J</span>
1717
- </a> <a href="https://github.com/trending?l=jasmin" class="select-menu-item js-navigation-item " role="menuitem">
1718
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1719
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Jasmin</span>
1720
- </a> <a href="https://github.com/trending?l=java" class="select-menu-item js-navigation-item " role="menuitem">
1721
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1722
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Java</span>
1723
- </a> <a href="https://github.com/trending?l=javascript" class="select-menu-item js-navigation-item " role="menuitem">
1724
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1725
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>JavaScript</span>
1726
- </a> <a href="https://github.com/trending?l=jflex" class="select-menu-item js-navigation-item " role="menuitem">
1727
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1728
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>JFlex</span>
1729
- </a> <a href="https://github.com/trending?l=jsoniq" class="select-menu-item js-navigation-item " role="menuitem">
1730
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1731
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>JSONiq</span>
1732
- </a> <a href="https://github.com/trending?l=julia" class="select-menu-item js-navigation-item " role="menuitem">
1733
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1734
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Julia</span>
1735
- </a> <a href="https://github.com/trending?l=jupyter-notebook" class="select-menu-item js-navigation-item " role="menuitem">
1736
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1737
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Jupyter Notebook</span>
1738
- </a> <a href="https://github.com/trending?l=kicad" class="select-menu-item js-navigation-item " role="menuitem">
1739
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1740
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>KiCad</span>
1741
- </a> <a href="https://github.com/trending?l=kit" class="select-menu-item js-navigation-item " role="menuitem">
1742
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1743
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Kit</span>
1744
- </a> <a href="https://github.com/trending?l=kotlin" class="select-menu-item js-navigation-item " role="menuitem">
1745
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1746
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Kotlin</span>
1747
- </a> <a href="https://github.com/trending?l=krl" class="select-menu-item js-navigation-item " role="menuitem">
1748
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1749
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>KRL</span>
1750
- </a> <a href="https://github.com/trending?l=labview" class="select-menu-item js-navigation-item " role="menuitem">
1751
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1752
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LabVIEW</span>
1753
- </a> <a href="https://github.com/trending?l=lasso" class="select-menu-item js-navigation-item " role="menuitem">
1754
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1755
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Lasso</span>
1756
- </a> <a href="https://github.com/trending?l=lean" class="select-menu-item js-navigation-item " role="menuitem">
1757
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1758
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Lean</span>
1759
- </a> <a href="https://github.com/trending?l=lex" class="select-menu-item js-navigation-item " role="menuitem">
1760
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1761
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Lex</span>
1762
- </a> <a href="https://github.com/trending?l=lilypond" class="select-menu-item js-navigation-item " role="menuitem">
1763
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1764
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LilyPond</span>
1765
- </a> <a href="https://github.com/trending?l=limbo" class="select-menu-item js-navigation-item " role="menuitem">
1766
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1767
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Limbo</span>
1768
- </a> <a href="https://github.com/trending?l=liquid" class="select-menu-item js-navigation-item " role="menuitem">
1769
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1770
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Liquid</span>
1771
- </a> <a href="https://github.com/trending?l=livescript" class="select-menu-item js-navigation-item " role="menuitem">
1772
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1773
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LiveScript</span>
1774
- </a> <a href="https://github.com/trending?l=llvm" class="select-menu-item js-navigation-item " role="menuitem">
1775
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1776
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LLVM</span>
1777
- </a> <a href="https://github.com/trending?l=logos" class="select-menu-item js-navigation-item " role="menuitem">
1778
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1779
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Logos</span>
1780
- </a> <a href="https://github.com/trending?l=logtalk" class="select-menu-item js-navigation-item " role="menuitem">
1781
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1782
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Logtalk</span>
1783
- </a> <a href="https://github.com/trending?l=lolcode" class="select-menu-item js-navigation-item " role="menuitem">
1784
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1785
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LOLCODE</span>
1786
- </a> <a href="https://github.com/trending?l=lookml" class="select-menu-item js-navigation-item " role="menuitem">
1787
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1788
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LookML</span>
1789
- </a> <a href="https://github.com/trending?l=loomscript" class="select-menu-item js-navigation-item " role="menuitem">
1790
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1791
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LoomScript</span>
1792
- </a> <a href="https://github.com/trending?l=lsl" class="select-menu-item js-navigation-item " role="menuitem">
1793
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1794
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>LSL</span>
1795
- </a> <a href="https://github.com/trending?l=lua" class="select-menu-item js-navigation-item " role="menuitem">
1796
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1797
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Lua</span>
1798
- </a> <a href="https://github.com/trending?l=m" class="select-menu-item js-navigation-item " role="menuitem">
1799
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1800
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>M</span>
1801
- </a> <a href="https://github.com/trending?l=makefile" class="select-menu-item js-navigation-item " role="menuitem">
1802
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1803
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Makefile</span>
1804
- </a> <a href="https://github.com/trending?l=mako" class="select-menu-item js-navigation-item " role="menuitem">
1805
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1806
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Mako</span>
1807
- </a> <a href="https://github.com/trending?l=markdown" class="select-menu-item js-navigation-item " role="menuitem">
1808
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1809
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Markdown</span>
1810
- </a> <a href="https://github.com/trending?l=mask" class="select-menu-item js-navigation-item " role="menuitem">
1811
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1812
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Mask</span>
1813
- </a> <a href="https://github.com/trending?l=mathematica" class="select-menu-item js-navigation-item " role="menuitem">
1814
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1815
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Mathematica</span>
1816
- </a> <a href="https://github.com/trending?l=matlab" class="select-menu-item js-navigation-item " role="menuitem">
1817
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1818
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Matlab</span>
1819
- </a> <a href="https://github.com/trending?l=max%2Fmsp" class="select-menu-item js-navigation-item " role="menuitem">
1820
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1821
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Max</span>
1822
- </a> <a href="https://github.com/trending?l=maxscript" class="select-menu-item js-navigation-item " role="menuitem">
1823
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1824
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>MAXScript</span>
1825
- </a> <a href="https://github.com/trending?l=mercury" class="select-menu-item js-navigation-item " role="menuitem">
1826
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1827
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Mercury</span>
1828
- </a> <a href="https://github.com/trending?l=metal" class="select-menu-item js-navigation-item " role="menuitem">
1829
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1830
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Metal</span>
1831
- </a> <a href="https://github.com/trending?l=minid" class="select-menu-item js-navigation-item " role="menuitem">
1832
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1833
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>MiniD</span>
1834
- </a> <a href="https://github.com/trending?l=mirah" class="select-menu-item js-navigation-item " role="menuitem">
1835
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1836
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Mirah</span>
1837
- </a> <a href="https://github.com/trending?l=modelica" class="select-menu-item js-navigation-item " role="menuitem">
1838
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1839
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Modelica</span>
1840
- </a> <a href="https://github.com/trending?l=modula-2" class="select-menu-item js-navigation-item " role="menuitem">
1841
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1842
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Modula-2</span>
1843
- </a> <a href="https://github.com/trending?l=module-management-system" class="select-menu-item js-navigation-item " role="menuitem">
1844
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1845
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Module Management System</span>
1846
- </a> <a href="https://github.com/trending?l=monkey" class="select-menu-item js-navigation-item " role="menuitem">
1847
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1848
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Monkey</span>
1849
- </a> <a href="https://github.com/trending?l=moocode" class="select-menu-item js-navigation-item " role="menuitem">
1850
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1851
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Moocode</span>
1852
- </a> <a href="https://github.com/trending?l=moonscript" class="select-menu-item js-navigation-item " role="menuitem">
1853
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1854
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>MoonScript</span>
1855
- </a> <a href="https://github.com/trending?l=mtml" class="select-menu-item js-navigation-item " role="menuitem">
1856
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1857
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>MTML</span>
1858
- </a> <a href="https://github.com/trending?l=mupad" class="select-menu-item js-navigation-item " role="menuitem">
1859
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1860
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>mupad</span>
1861
- </a> <a href="https://github.com/trending?l=myghty" class="select-menu-item js-navigation-item " role="menuitem">
1862
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1863
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Myghty</span>
1864
- </a> <a href="https://github.com/trending?l=ncl" class="select-menu-item js-navigation-item " role="menuitem">
1865
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1866
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>NCL</span>
1867
- </a> <a href="https://github.com/trending?l=nemerle" class="select-menu-item js-navigation-item " role="menuitem">
1868
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1869
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Nemerle</span>
1870
- </a> <a href="https://github.com/trending?l=nesc" class="select-menu-item js-navigation-item " role="menuitem">
1871
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1872
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>nesC</span>
1873
- </a> <a href="https://github.com/trending?l=netlinx" class="select-menu-item js-navigation-item " role="menuitem">
1874
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1875
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>NetLinx</span>
1876
- </a> <a href="https://github.com/trending?l=netlinx%2Berb" class="select-menu-item js-navigation-item " role="menuitem">
1877
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1878
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>NetLinx+ERB</span>
1879
- </a> <a href="https://github.com/trending?l=netlogo" class="select-menu-item js-navigation-item " role="menuitem">
1880
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1881
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>NetLogo</span>
1882
- </a> <a href="https://github.com/trending?l=newlisp" class="select-menu-item js-navigation-item " role="menuitem">
1883
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1884
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>NewLisp</span>
1885
- </a> <a href="https://github.com/trending?l=nginx" class="select-menu-item js-navigation-item " role="menuitem">
1886
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1887
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Nginx</span>
1888
- </a> <a href="https://github.com/trending?l=nimrod" class="select-menu-item js-navigation-item " role="menuitem">
1889
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1890
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Nimrod</span>
1891
- </a> <a href="https://github.com/trending?l=nit" class="select-menu-item js-navigation-item " role="menuitem">
1892
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1893
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Nit</span>
1894
- </a> <a href="https://github.com/trending?l=nix" class="select-menu-item js-navigation-item " role="menuitem">
1895
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1896
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Nix</span>
1897
- </a> <a href="https://github.com/trending?l=nsis" class="select-menu-item js-navigation-item " role="menuitem">
1898
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1899
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>NSIS</span>
1900
- </a> <a href="https://github.com/trending?l=nu" class="select-menu-item js-navigation-item " role="menuitem">
1901
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1902
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Nu</span>
1903
- </a> <a href="https://github.com/trending?l=objective-c" class="select-menu-item js-navigation-item " role="menuitem">
1904
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1905
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Objective-C</span>
1906
- </a> <a href="https://github.com/trending?l=objective-c%2B%2B" class="select-menu-item js-navigation-item " role="menuitem">
1907
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1908
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Objective-C++</span>
1909
- </a> <a href="https://github.com/trending?l=objective-j" class="select-menu-item js-navigation-item " role="menuitem">
1910
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1911
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Objective-J</span>
1912
- </a> <a href="https://github.com/trending?l=ocaml" class="select-menu-item js-navigation-item " role="menuitem">
1913
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1914
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>OCaml</span>
1915
- </a> <a href="https://github.com/trending?l=omgrofl" class="select-menu-item js-navigation-item " role="menuitem">
1916
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1917
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Omgrofl</span>
1918
- </a> <a href="https://github.com/trending?l=ooc" class="select-menu-item js-navigation-item " role="menuitem">
1919
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1920
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ooc</span>
1921
- </a> <a href="https://github.com/trending?l=opa" class="select-menu-item js-navigation-item " role="menuitem">
1922
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1923
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Opa</span>
1924
- </a> <a href="https://github.com/trending?l=opal" class="select-menu-item js-navigation-item " role="menuitem">
1925
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1926
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Opal</span>
1927
- </a> <a href="https://github.com/trending?l=openedge-abl" class="select-menu-item js-navigation-item " role="menuitem">
1928
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1929
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>OpenEdge ABL</span>
1930
- </a> <a href="https://github.com/trending?l=openscad" class="select-menu-item js-navigation-item " role="menuitem">
1931
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1932
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>OpenSCAD</span>
1933
- </a> <a href="https://github.com/trending?l=ox" class="select-menu-item js-navigation-item " role="menuitem">
1934
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1935
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Ox</span>
1936
- </a> <a href="https://github.com/trending?l=oxygene" class="select-menu-item js-navigation-item " role="menuitem">
1937
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1938
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Oxygene</span>
1939
- </a> <a href="https://github.com/trending?l=oz" class="select-menu-item js-navigation-item " role="menuitem">
1940
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1941
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Oz</span>
1942
- </a> <a href="https://github.com/trending?l=pan" class="select-menu-item js-navigation-item " role="menuitem">
1943
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1944
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Pan</span>
1945
- </a> <a href="https://github.com/trending?l=papyrus" class="select-menu-item js-navigation-item " role="menuitem">
1946
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1947
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Papyrus</span>
1948
- </a> <a href="https://github.com/trending?l=parrot" class="select-menu-item js-navigation-item " role="menuitem">
1949
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1950
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Parrot</span>
1951
- </a> <a href="https://github.com/trending?l=pascal" class="select-menu-item js-navigation-item " role="menuitem">
1952
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1953
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Pascal</span>
1954
- </a> <a href="https://github.com/trending?l=pawn" class="select-menu-item js-navigation-item " role="menuitem">
1955
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1956
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PAWN</span>
1957
- </a> <a href="https://github.com/trending?l=perl" class="select-menu-item js-navigation-item " role="menuitem">
1958
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1959
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Perl</span>
1960
- </a> <a href="https://github.com/trending?l=perl6" class="select-menu-item js-navigation-item " role="menuitem">
1961
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1962
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Perl6</span>
1963
- </a> <a href="https://github.com/trending?l=php" class="select-menu-item js-navigation-item " role="menuitem">
1964
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1965
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PHP</span>
1966
- </a> <a href="https://github.com/trending?l=picolisp" class="select-menu-item js-navigation-item " role="menuitem">
1967
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1968
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PicoLisp</span>
1969
- </a> <a href="https://github.com/trending?l=piglatin" class="select-menu-item js-navigation-item " role="menuitem">
1970
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1971
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PigLatin</span>
1972
- </a> <a href="https://github.com/trending?l=pike" class="select-menu-item js-navigation-item " role="menuitem">
1973
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1974
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Pike</span>
1975
- </a> <a href="https://github.com/trending?l=plpgsql" class="select-menu-item js-navigation-item " role="menuitem">
1976
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1977
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PLpgSQL</span>
1978
- </a> <a href="https://github.com/trending?l=plsql" class="select-menu-item js-navigation-item " role="menuitem">
1979
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1980
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PLSQL</span>
1981
- </a> <a href="https://github.com/trending?l=pogoscript" class="select-menu-item js-navigation-item " role="menuitem">
1982
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1983
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PogoScript</span>
1984
- </a> <a href="https://github.com/trending?l=pony" class="select-menu-item js-navigation-item " role="menuitem">
1985
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1986
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Pony</span>
1987
- </a> <a href="https://github.com/trending?l=postscript" class="select-menu-item js-navigation-item " role="menuitem">
1988
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1989
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PostScript</span>
1990
- </a> <a href="https://github.com/trending?l=powershell" class="select-menu-item js-navigation-item " role="menuitem">
1991
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1992
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PowerShell</span>
1993
- </a> <a href="https://github.com/trending?l=processing" class="select-menu-item js-navigation-item " role="menuitem">
1994
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1995
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Processing</span>
1996
- </a> <a href="https://github.com/trending?l=prolog" class="select-menu-item js-navigation-item " role="menuitem">
1997
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
1998
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Prolog</span>
1999
- </a> <a href="https://github.com/trending?l=propeller-spin" class="select-menu-item js-navigation-item " role="menuitem">
2000
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2001
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Propeller Spin</span>
2002
- </a> <a href="https://github.com/trending?l=protocol-buffer" class="select-menu-item js-navigation-item " role="menuitem">
2003
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2004
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Protocol Buffer</span>
2005
- </a> <a href="https://github.com/trending?l=puppet" class="select-menu-item js-navigation-item " role="menuitem">
2006
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2007
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Puppet</span>
2008
- </a> <a href="https://github.com/trending?l=pure-data" class="select-menu-item js-navigation-item " role="menuitem">
2009
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2010
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Pure Data</span>
2011
- </a> <a href="https://github.com/trending?l=purebasic" class="select-menu-item js-navigation-item " role="menuitem">
2012
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2013
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PureBasic</span>
2014
- </a> <a href="https://github.com/trending?l=purescript" class="select-menu-item js-navigation-item " role="menuitem">
2015
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2016
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>PureScript</span>
2017
- </a> <a href="https://github.com/trending?l=python" class="select-menu-item js-navigation-item " role="menuitem">
2018
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2019
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Python</span>
2020
- </a> <a href="https://github.com/trending?l=qmake" class="select-menu-item js-navigation-item " role="menuitem">
2021
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2022
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>QMake</span>
2023
- </a> <a href="https://github.com/trending?l=qml" class="select-menu-item js-navigation-item " role="menuitem">
2024
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2025
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>QML</span>
2026
- </a> <a href="https://github.com/trending?l=r" class="select-menu-item js-navigation-item " role="menuitem">
2027
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2028
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>R</span>
2029
- </a> <a href="https://github.com/trending?l=racket" class="select-menu-item js-navigation-item " role="menuitem">
2030
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2031
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Racket</span>
2032
- </a> <a href="https://github.com/trending?l=ragel-in-ruby-host" class="select-menu-item js-navigation-item " role="menuitem">
2033
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2034
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Ragel in Ruby Host</span>
2035
- </a> <a href="https://github.com/trending?l=raml" class="select-menu-item js-navigation-item " role="menuitem">
2036
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2037
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>RAML</span>
2038
- </a> <a href="https://github.com/trending?l=rdoc" class="select-menu-item js-navigation-item " role="menuitem">
2039
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2040
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>RDoc</span>
2041
- </a> <a href="https://github.com/trending?l=realbasic" class="select-menu-item js-navigation-item " role="menuitem">
2042
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2043
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>REALbasic</span>
2044
- </a> <a href="https://github.com/trending?l=rebol" class="select-menu-item js-navigation-item " role="menuitem">
2045
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2046
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Rebol</span>
2047
- </a> <a href="https://github.com/trending?l=red" class="select-menu-item js-navigation-item " role="menuitem">
2048
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2049
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Red</span>
2050
- </a> <a href="https://github.com/trending?l=redcode" class="select-menu-item js-navigation-item " role="menuitem">
2051
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2052
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Redcode</span>
2053
- </a> <a href="https://github.com/trending?l=renderscript" class="select-menu-item js-navigation-item " role="menuitem">
2054
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2055
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>RenderScript</span>
2056
- </a> <a href="https://github.com/trending?l=robotframework" class="select-menu-item js-navigation-item " role="menuitem">
2057
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2058
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>RobotFramework</span>
2059
- </a> <a href="https://github.com/trending?l=rouge" class="select-menu-item js-navigation-item " role="menuitem">
2060
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2061
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Rouge</span>
2062
- </a> <a href="https://github.com/trending?l=ruby" class="select-menu-item js-navigation-item " role="menuitem">
2063
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2064
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Ruby</span>
2065
- </a> <a href="https://github.com/trending?l=rust" class="select-menu-item js-navigation-item " role="menuitem">
2066
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2067
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Rust</span>
2068
- </a> <a href="https://github.com/trending?l=saltstack" class="select-menu-item js-navigation-item " role="menuitem">
2069
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2070
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SaltStack</span>
2071
- </a> <a href="https://github.com/trending?l=sas" class="select-menu-item js-navigation-item " role="menuitem">
2072
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2073
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SAS</span>
2074
- </a> <a href="https://github.com/trending?l=scala" class="select-menu-item js-navigation-item " role="menuitem">
2075
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2076
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Scala</span>
2077
- </a> <a href="https://github.com/trending?l=scheme" class="select-menu-item js-navigation-item " role="menuitem">
2078
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2079
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Scheme</span>
2080
- </a> <a href="https://github.com/trending?l=scilab" class="select-menu-item js-navigation-item " role="menuitem">
2081
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2082
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Scilab</span>
2083
- </a> <a href="https://github.com/trending?l=self" class="select-menu-item js-navigation-item " role="menuitem">
2084
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2085
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Self</span>
2086
- </a> <a href="https://github.com/trending?l=bash" class="select-menu-item js-navigation-item " role="menuitem">
2087
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2088
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Shell</span>
2089
- </a> <a href="https://github.com/trending?l=shellsession" class="select-menu-item js-navigation-item " role="menuitem">
2090
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2091
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>ShellSession</span>
2092
- </a> <a href="https://github.com/trending?l=shen" class="select-menu-item js-navigation-item " role="menuitem">
2093
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2094
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Shen</span>
2095
- </a> <a href="https://github.com/trending?l=slash" class="select-menu-item js-navigation-item " role="menuitem">
2096
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2097
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Slash</span>
2098
- </a> <a href="https://github.com/trending?l=smali" class="select-menu-item js-navigation-item " role="menuitem">
2099
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2100
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Smali</span>
2101
- </a> <a href="https://github.com/trending?l=smalltalk" class="select-menu-item js-navigation-item " role="menuitem">
2102
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2103
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Smalltalk</span>
2104
- </a> <a href="https://github.com/trending?l=smarty" class="select-menu-item js-navigation-item " role="menuitem">
2105
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2106
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Smarty</span>
2107
- </a> <a href="https://github.com/trending?l=smt" class="select-menu-item js-navigation-item " role="menuitem">
2108
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2109
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SMT</span>
2110
- </a> <a href="https://github.com/trending?l=sourcepawn" class="select-menu-item js-navigation-item " role="menuitem">
2111
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2112
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SourcePawn</span>
2113
- </a> <a href="https://github.com/trending?l=sqf" class="select-menu-item js-navigation-item " role="menuitem">
2114
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2115
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SQF</span>
2116
- </a> <a href="https://github.com/trending?l=sql" class="select-menu-item js-navigation-item " role="menuitem">
2117
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2118
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SQL</span>
2119
- </a> <a href="https://github.com/trending?l=sqlpl" class="select-menu-item js-navigation-item " role="menuitem">
2120
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2121
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SQLPL</span>
2122
- </a> <a href="https://github.com/trending?l=squirrel" class="select-menu-item js-navigation-item " role="menuitem">
2123
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2124
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Squirrel</span>
2125
- </a> <a href="https://github.com/trending?l=stan" class="select-menu-item js-navigation-item " role="menuitem">
2126
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2127
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Stan</span>
2128
- </a> <a href="https://github.com/trending?l=standard-ml" class="select-menu-item js-navigation-item " role="menuitem">
2129
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2130
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Standard ML</span>
2131
- </a> <a href="https://github.com/trending?l=stata" class="select-menu-item js-navigation-item " role="menuitem">
2132
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2133
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Stata</span>
2134
- </a> <a href="https://github.com/trending?l=supercollider" class="select-menu-item js-navigation-item " role="menuitem">
2135
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2136
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SuperCollider</span>
2137
- </a> <a href="https://github.com/trending?l=swift" class="select-menu-item js-navigation-item " role="menuitem">
2138
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2139
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Swift</span>
2140
- </a> <a href="https://github.com/trending?l=systemverilog" class="select-menu-item js-navigation-item " role="menuitem">
2141
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2142
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>SystemVerilog</span>
2143
- </a> <a href="https://github.com/trending?l=tcl" class="select-menu-item js-navigation-item " role="menuitem">
2144
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2145
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Tcl</span>
2146
- </a> <a href="https://github.com/trending?l=tea" class="select-menu-item js-navigation-item " role="menuitem">
2147
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2148
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Tea</span>
2149
- </a> <a href="https://github.com/trending?l=tex" class="select-menu-item js-navigation-item " role="menuitem">
2150
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2151
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>TeX</span>
2152
- </a> <a href="https://github.com/trending?l=thrift" class="select-menu-item js-navigation-item " role="menuitem">
2153
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2154
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Thrift</span>
2155
- </a> <a href="https://github.com/trending?l=turing" class="select-menu-item js-navigation-item " role="menuitem">
2156
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2157
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Turing</span>
2158
- </a> <a href="https://github.com/trending?l=txl" class="select-menu-item js-navigation-item " role="menuitem">
2159
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2160
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>TXL</span>
2161
- </a> <a href="https://github.com/trending?l=typescript" class="select-menu-item js-navigation-item " role="menuitem">
2162
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2163
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>TypeScript</span>
2164
- </a> <a href="https://github.com/trending?l=unrealscript" class="select-menu-item js-navigation-item " role="menuitem">
2165
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2166
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>UnrealScript</span>
2167
- </a> <a href="https://github.com/trending?l=urweb" class="select-menu-item js-navigation-item " role="menuitem">
2168
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2169
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>UrWeb</span>
2170
- </a> <a href="https://github.com/trending?l=vala" class="select-menu-item js-navigation-item " role="menuitem">
2171
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2172
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Vala</span>
2173
- </a> <a href="https://github.com/trending?l=vcl" class="select-menu-item js-navigation-item " role="menuitem">
2174
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2175
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>VCL</span>
2176
- </a> <a href="https://github.com/trending?l=verilog" class="select-menu-item js-navigation-item " role="menuitem">
2177
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2178
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Verilog</span>
2179
- </a> <a href="https://github.com/trending?l=vhdl" class="select-menu-item js-navigation-item " role="menuitem">
2180
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2181
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>VHDL</span>
2182
- </a> <a href="https://github.com/trending?l=vim" class="select-menu-item js-navigation-item " role="menuitem">
2183
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2184
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>VimL</span>
2185
- </a> <a href="https://github.com/trending?l=visual-basic" class="select-menu-item js-navigation-item " role="menuitem">
2186
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2187
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Visual Basic</span>
2188
- </a> <a href="https://github.com/trending?l=volt" class="select-menu-item js-navigation-item " role="menuitem">
2189
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2190
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Volt</span>
2191
- </a> <a href="https://github.com/trending?l=vue" class="select-menu-item js-navigation-item " role="menuitem">
2192
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2193
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Vue</span>
2194
- </a> <a href="https://github.com/trending?l=web-ontology-language" class="select-menu-item js-navigation-item " role="menuitem">
2195
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2196
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Web Ontology Language</span>
2197
- </a> <a href="https://github.com/trending?l=webidl" class="select-menu-item js-navigation-item " role="menuitem">
2198
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2199
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>WebIDL</span>
2200
- </a> <a href="https://github.com/trending?l=wisp" class="select-menu-item js-navigation-item " role="menuitem">
2201
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2202
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>wisp</span>
2203
- </a> <a href="https://github.com/trending?l=x10" class="select-menu-item js-navigation-item " role="menuitem">
2204
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2205
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>X10</span>
2206
- </a> <a href="https://github.com/trending?l=xbase" class="select-menu-item js-navigation-item " role="menuitem">
2207
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2208
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>xBase</span>
2209
- </a> <a href="https://github.com/trending?l=xc" class="select-menu-item js-navigation-item " role="menuitem">
2210
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2211
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XC</span>
2212
- </a> <a href="https://github.com/trending?l=xml" class="select-menu-item js-navigation-item " role="menuitem">
2213
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2214
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XML</span>
2215
- </a> <a href="https://github.com/trending?l=xojo" class="select-menu-item js-navigation-item " role="menuitem">
2216
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2217
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Xojo</span>
2218
- </a> <a href="https://github.com/trending?l=xpages" class="select-menu-item js-navigation-item " role="menuitem">
2219
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2220
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XPages</span>
2221
- </a> <a href="https://github.com/trending?l=xproc" class="select-menu-item js-navigation-item " role="menuitem">
2222
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2223
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XProc</span>
2224
- </a> <a href="https://github.com/trending?l=xquery" class="select-menu-item js-navigation-item " role="menuitem">
2225
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2226
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XQuery</span>
2227
- </a> <a href="https://github.com/trending?l=xs" class="select-menu-item js-navigation-item " role="menuitem">
2228
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2229
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XS</span>
2230
- </a> <a href="https://github.com/trending?l=xslt" class="select-menu-item js-navigation-item " role="menuitem">
2231
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2232
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>XSLT</span>
2233
- </a> <a href="https://github.com/trending?l=xtend" class="select-menu-item js-navigation-item " role="menuitem">
2234
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2235
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Xtend</span>
2236
- </a> <a href="https://github.com/trending?l=yacc" class="select-menu-item js-navigation-item " role="menuitem">
2237
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2238
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Yacc</span>
2239
- </a> <a href="https://github.com/trending?l=zephir" class="select-menu-item js-navigation-item " role="menuitem">
2240
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2241
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Zephir</span>
2242
- </a> <a href="https://github.com/trending?l=zimpl" class="select-menu-item js-navigation-item " role="menuitem">
2243
- <span aria-hidden="true" class="octicon octicon-check select-menu-item-icon"></span>
2244
- <span class='select-menu-item-text js-select-button-text js-navigation-open'>Zimpl</span>
2245
- </a> </div>
2246
-
2247
- </div>
2248
-
2249
- <div class="select-menu-loading-overlay">
2250
- <span aria-hidden="true" class="mega-octicon octicon-octoface"></span>
2251
- </div>
2252
- </div>
2253
- </div>
2254
- </div>
2255
-
2256
- <div class="protip protip-callout">
2257
- <strong class="protip">ProTip!</strong>
2258
- Looking for most forked repositories?
2259
- <a href="/search?q=stars%3A%3E1&amp;s=forked&amp;type=Repositories">Try this search</a>
2260
- </div>
2261
-
2262
- </div>
2263
- </div>
2264
- </div>
2265
-
2266
- </div>
2267
- <div class="modal-backdrop"></div>
2268
- </div>
2269
-
2270
- <div class="container">
2271
- <div class="site-footer" role="contentinfo">
2272
- <ul class="site-footer-links right">
2273
- <li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
2274
- <li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
2275
- <li><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
2276
- <li><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
2277
- <li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
2278
- <li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
2279
- <li><a href="https://github.com/pricing" data-ga-click="Footer, go to pricing, text:pricing">Pricing</a></li>
2280
-
2281
- </ul>
2282
-
2283
- <a href="https://github.com" aria-label="Homepage">
2284
- <span aria-hidden="true" class="mega-octicon octicon-mark-github" title="GitHub "></span>
2285
- </a>
2286
- <ul class="site-footer-links">
2287
- <li>&copy; 2016 <span title="0.46841s from github-fe130-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
2288
- <li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
2289
- <li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
2290
- <li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
2291
- <li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact</a></li>
2292
- <li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>
2293
- </ul>
2294
- </div>
2295
- </div>
2296
-
2297
-
2298
-
2299
-
2300
-
2301
-
2302
-
2303
- <div id="ajax-error-message" class="flash flash-error">
2304
- <span aria-hidden="true" class="octicon octicon-alert"></span>
2305
- <button type="button" class="flash-close js-flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
2306
- <span aria-hidden="true" class="octicon octicon-x"></span>
2307
- </button>
2308
- Something went wrong with that request. Please try again.
2309
- </div>
2310
-
2311
-
2312
- <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/compat-a0cee5d8d4fb535c0f41971d037b32e852a56ddca5bf67bb2124e426a2d813a5.js"></script>
2313
- <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-9ee55ceaf87fc34dc86334249fef6cbece88e815478e0fbe81642d57ed0fff89.js"></script>
2314
- <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-b9df2b2d10e6d77f9ea1ed87e9e1a0e8f63890999545405bba0dbdd5c08da9ef.js"></script>
2315
-
2316
-
2317
-
2318
- <div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden">
2319
- <span aria-hidden="true" class="octicon octicon-alert"></span>
2320
- <span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
2321
- <span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
2322
- </div>
2323
- <div class="facebox" id="facebox" style="display:none;">
2324
- <div class="facebox-popup">
2325
- <div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">
2326
- </div>
2327
- <button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">
2328
- <span aria-hidden="true" class="octicon octicon-x"></span>
2329
- </button>
2330
- </div>
2331
- </div>
2332
-
2333
- </body>
2334
- </html>