gh-trend 0.0.3 → 0.0.4
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/gh-trend/trend.rb +19 -35
- data/lib/gh-trend/version.rb +1 -1
- data/spec/fixtures/gh_trend.html +2447 -1281
- data/spec/trend_spec.rb +4 -4
- metadata +25 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a2eb7ad695be43c0a71ac7da051f3396caf8c05
|
4
|
+
data.tar.gz: 2ee2e0b5440157abdf59003530b5ad95ab870919
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0eb4ead118f4a4774c2b58525f080b1d39f298fb956245d67c76ce34507f390b3f9ee363d425c5ca041926d070ec5ae054f99c861cb2b698868deb24e15e2c5b
|
7
|
+
data.tar.gz: 94479d0f59c0f4368453c413da42ab7cdce40362fce054b01a65d209e523e9fec18b701b7abf3a9f0c13662fe901ce8e41ab19a7d5221e3caee5b7ca59e4fa20
|
data/.gitignore
CHANGED
data/lib/gh-trend/trend.rb
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
|
3
2
|
require "nokogiri"
|
4
3
|
require "launchy"
|
5
4
|
require "httparty"
|
6
5
|
|
7
6
|
module GhTrend
|
8
|
-
|
9
7
|
class Trend
|
10
8
|
BASE_URL = "https://github.com/trending"
|
11
9
|
DSP_POS = 50
|
@@ -49,39 +47,33 @@ module GhTrend
|
|
49
47
|
end
|
50
48
|
|
51
49
|
def brows?
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
else
|
56
|
-
false
|
57
|
-
end
|
50
|
+
return false unless @options[:brows]
|
51
|
+
Launchy.open "https://github.com" + @repo_url[@options[:brows].to_i - 1]
|
52
|
+
true
|
58
53
|
end
|
59
54
|
|
60
55
|
def star?
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
false
|
66
|
-
end
|
56
|
+
return false unless @options[:star]
|
57
|
+
@client.star(@repo_nm[@options[:star].to_i - 1])
|
58
|
+
@repo_nm[@options[:star].to_i - 1]
|
59
|
+
true
|
67
60
|
end
|
68
61
|
|
69
62
|
def unstar?
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
false
|
75
|
-
end
|
63
|
+
return false unless @options[:unstar]
|
64
|
+
@client.unstar(@repo_nm[@options[:unstar].to_i - 1])
|
65
|
+
@repo_nm[@options[:unstar].to_i - 1]
|
66
|
+
true
|
76
67
|
end
|
77
68
|
|
78
69
|
def get_trend
|
79
|
-
# doc = Nokogiri::HTML(open(geturl))
|
80
70
|
doc = Nokogiri::HTML(HTTParty.get(geturl))
|
81
|
-
doc.css('
|
82
|
-
|
83
|
-
|
84
|
-
@
|
71
|
+
doc.css('li[class="repo-list-item"]').each do |html|
|
72
|
+
repo_url = html.css('h3 > a').attribute('href').value
|
73
|
+
m = repo_url.match(/\/(.+)\/(.+)/)
|
74
|
+
@repo_nm << m[1] + "/" + m[2]
|
75
|
+
@repo_url << repo_url
|
76
|
+
@repo_desc << html.css('p[class="repo-list-description"]').text.strip
|
85
77
|
end
|
86
78
|
end
|
87
79
|
|
@@ -91,11 +83,7 @@ module GhTrend
|
|
91
83
|
end
|
92
84
|
|
93
85
|
def make_spaces(n)
|
94
|
-
|
95
|
-
" " * 3
|
96
|
-
else
|
97
|
-
" " * 4
|
98
|
-
end
|
86
|
+
n < 10 ? " " * 3 : " " * 4
|
99
87
|
end
|
100
88
|
|
101
89
|
def limit_number?(n)
|
@@ -104,11 +92,7 @@ module GhTrend
|
|
104
92
|
end
|
105
93
|
|
106
94
|
def make_pos(cnt, len)
|
107
|
-
|
108
|
-
DSP_POS - (3 + len)
|
109
|
-
else
|
110
|
-
DSP_POS - (4 + len)
|
111
|
-
end
|
95
|
+
cnt < 10 ? DSP_POS - (3 + len) : DSP_POS - (4 + len)
|
112
96
|
end
|
113
97
|
|
114
98
|
def title_dsp
|
data/lib/gh-trend/version.rb
CHANGED
data/spec/fixtures/gh_trend.html
CHANGED
@@ -1,1655 +1,2812 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#
|
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
4
|
<meta charset='utf-8'>
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6
|
-
|
7
|
-
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
|
8
|
-
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
|
9
|
-
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" />
|
10
|
-
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
|
11
|
-
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" />
|
12
|
-
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
|
13
|
-
<link rel="logo" type="image/svg" href="https://github-media-downloads.s3.amazonaws.com/github-logo.svg" />
|
14
|
-
<meta property="og:image" content="https://github.global.ssl.fastly.net/images/modules/logos_page/Octocat.png">
|
15
|
-
<meta name="hostname" content="github-fe123-cp1-prd.iad.github.net">
|
16
|
-
<meta name="ruby" content="ruby 1.9.3p194-tcs-github-tcmalloc (0e75de19f8) [x86_64-linux]">
|
17
|
-
<link rel="assets" href="https://github.global.ssl.fastly.net/">
|
18
|
-
<link rel="conduit-xhr" href="https://ghconduit.com:25035/">
|
19
|
-
<link rel="xhr-socket" href="/_sockets" />
|
6
|
+
<meta http-equiv="Content-Language" content="en">
|
20
7
|
|
8
|
+
|
9
|
+
<title>Trending Ruby repositories on GitHub today</title>
|
10
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
|
11
|
+
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
|
12
|
+
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png">
|
13
|
+
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png">
|
14
|
+
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png">
|
15
|
+
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png">
|
16
|
+
<meta property="fb:app_id" content="1401488693436528">
|
17
|
+
|
18
|
+
<meta property="og:url" content="https://github.com">
|
19
|
+
<meta property="og:site_name" content="GitHub">
|
20
|
+
<meta property="og:title" content="Build software better, together">
|
21
|
+
<meta property="og:description" content="GitHub is the best place to build software together. Over 4 million people use GitHub to share code.">
|
22
|
+
<meta property="og:image" content="https://assets-cdn.github.com/images/modules/open_graph/github-logo.png">
|
23
|
+
<meta property="og:image:type" content="image/png">
|
24
|
+
<meta property="og:image:width" content="1200">
|
25
|
+
<meta property="og:image:height" content="1200">
|
26
|
+
<meta property="og:image" content="https://assets-cdn.github.com/images/modules/open_graph/github-mark.png">
|
27
|
+
<meta property="og:image:type" content="image/png">
|
28
|
+
<meta property="og:image:width" content="1200">
|
29
|
+
<meta property="og:image:height" content="620">
|
30
|
+
<meta property="og:image" content="https://assets-cdn.github.com/images/modules/open_graph/github-octocat.png">
|
31
|
+
<meta property="og:image:type" content="image/png">
|
32
|
+
<meta property="og:image:width" content="1200">
|
33
|
+
<meta property="og:image:height" content="620">
|
34
|
+
<meta property="twitter:site" content="github">
|
35
|
+
<meta property="twitter:site:id" content="13334762">
|
36
|
+
<meta property="twitter:creator" content="github">
|
37
|
+
<meta property="twitter:creator:id" content="13334762">
|
38
|
+
<meta property="twitter:card" content="summary_large_image">
|
39
|
+
<meta property="twitter:title" content="GitHub">
|
40
|
+
<meta property="twitter:description" content="GitHub is the best place to build software together. Over 4 million people use GitHub to share code.">
|
41
|
+
<meta property="twitter:image:src" content="https://assets-cdn.github.com/images/modules/open_graph/github-logo.png">
|
42
|
+
<meta property="twitter:image:width" content="1200">
|
43
|
+
<meta property="twitter:image:height" content="1200">
|
44
|
+
<meta name="browser-stats-url" content="/_stats">
|
45
|
+
<link rel="assets" href="https://assets-cdn.github.com/">
|
46
|
+
<link rel="conduit-xhr" href="https://ghconduit.com:25035">
|
47
|
+
<link rel="xhr-socket" href="/_sockets">
|
48
|
+
<meta name="pjax-timeout" content="1000">
|
49
|
+
<link rel="sudo-modal" href="/sessions/sudo_modal">
|
50
|
+
|
51
|
+
<meta name="msapplication-TileImage" content="/windows-tile.png">
|
52
|
+
<meta name="msapplication-TileColor" content="#ffffff">
|
53
|
+
<meta name="selected-link" value="trending_repositories" data-pjax-transient>
|
54
|
+
<meta name="google-analytics" content="UA-3769691-2">
|
55
|
+
|
56
|
+
<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="73A3AF63:525F:4868750:54F9F17D" name="octolytics-dimension-request_id" /><meta content="458986" name="octolytics-actor-id" /><meta content="ramtiga" name="octolytics-actor-login" /><meta content="f2cd71d84d6bcce02d098b97f7f71bf342f88ff5e41e20081b62fe4b2d3d782f" name="octolytics-actor-hash" />
|
57
|
+
|
58
|
+
<meta content="Rails, view, trending#index" name="analytics-event" />
|
59
|
+
|
60
|
+
|
61
|
+
<link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
|
62
|
+
|
63
|
+
|
64
|
+
<meta content="authenticity_token" name="csrf-param" />
|
65
|
+
<meta content="/LJ3JChOCZYElowYtDxd+rhAOO3RISO1USM++984l71VtZzxAN7R5FAPSkwOk7dQetImeBvFK2NdBjqAksJQNg==" name="csrf-token" />
|
66
|
+
|
67
|
+
<link href="https://assets-cdn.github.com/assets/github-da80844bda1ebe3db6f5d239fc67589443ee7174bb2f224e6b9879a6f4c9f0a4.css" media="all" rel="stylesheet" />
|
68
|
+
<link href="https://assets-cdn.github.com/assets/github2-ade0148a562b52311cf36a8e5f019126eb5ef7054bf2a0463ea00c536a358d33.css" media="all" rel="stylesheet" />
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<meta http-equiv="x-pjax-version" content="bd242553cfdb6482212ea4e7d2459983">
|
74
|
+
|
75
|
+
<meta name="description" content="Build software better, together.">
|
76
|
+
</head>
|
77
|
+
|
78
|
+
|
79
|
+
<body class="logged_in env-production macintosh">
|
80
|
+
<a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
|
81
|
+
<div class="wrapper">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
<div class="header header-logged-in true" role="banner">
|
89
|
+
<div class="container clearfix">
|
90
|
+
|
91
|
+
<a class="header-logo-invertocat" href="https://github.com/" data-hotkey="g d" aria-label="Homepage" data-ga-click="Header, go to dashboard, icon:logo">
|
92
|
+
<span class="mega-octicon octicon-mark-github"></span>
|
93
|
+
</a>
|
94
|
+
|
95
|
+
|
96
|
+
<div class="site-search js-site-search" role="search">
|
97
|
+
<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="✓" /></div>
|
98
|
+
<input type="text"
|
99
|
+
class=""
|
100
|
+
data-hotkey="s"
|
101
|
+
name="q"
|
102
|
+
placeholder="Search GitHub"
|
103
|
+
data-global-scope-placeholder="Search GitHub"
|
104
|
+
data-repo-scope-placeholder="Search"
|
105
|
+
tabindex="1"
|
106
|
+
autocapitalize="off">
|
107
|
+
<div class="scope-badge">This repository</div>
|
108
|
+
</form>
|
109
|
+
</div>
|
110
|
+
<ul class="header-nav left" role="navigation">
|
111
|
+
<li class="header-nav-item explore">
|
112
|
+
<a class="header-nav-link" href="/explore" data-ga-click="Header, go to explore, text:explore">Explore</a>
|
113
|
+
</li>
|
114
|
+
<li class="header-nav-item">
|
115
|
+
<a class="header-nav-link" href="https://gist.github.com" data-ga-click="Header, go to gist, text:gist">Gist</a>
|
116
|
+
</li>
|
117
|
+
<li class="header-nav-item">
|
118
|
+
<a class="header-nav-link" href="/blog" data-ga-click="Header, go to blog, text:blog">Blog</a>
|
119
|
+
</li>
|
120
|
+
<li class="header-nav-item">
|
121
|
+
<a class="header-nav-link" href="https://help.github.com" data-ga-click="Header, go to help, text:help">Help</a>
|
122
|
+
</li>
|
123
|
+
</ul>
|
124
|
+
|
125
|
+
|
126
|
+
<ul class="header-nav user-nav right" id="user-links">
|
127
|
+
<li class="header-nav-item dropdown js-menu-container">
|
128
|
+
<a class="header-nav-link name" href="/ramtiga" data-ga-click="Header, go to profile, text:username">
|
129
|
+
<img alt="ramtiga" class="avatar" data-user="458986" height="20" src="https://avatars0.githubusercontent.com/u/458986?v=3&s=40" width="20" />
|
130
|
+
<span class="css-truncate">
|
131
|
+
<span class="css-truncate-target">ramtiga</span>
|
132
|
+
</span>
|
133
|
+
</a>
|
134
|
+
</li>
|
135
|
+
|
136
|
+
<li class="header-nav-item dropdown js-menu-container">
|
137
|
+
<a class="header-nav-link js-menu-target tooltipped tooltipped-s" href="#" aria-label="Create new..." data-ga-click="Header, create new, icon:add">
|
138
|
+
<span class="octicon octicon-plus"></span>
|
139
|
+
<span class="dropdown-caret"></span>
|
140
|
+
</a>
|
141
|
+
|
142
|
+
<div class="dropdown-menu-content js-menu-content">
|
143
|
+
|
144
|
+
<ul class="dropdown-menu">
|
145
|
+
<li>
|
146
|
+
<a href="/new" data-ga-click="Header, create new repository, icon:repo"><span class="octicon octicon-repo"></span> New repository</a>
|
147
|
+
</li>
|
148
|
+
<li>
|
149
|
+
<a href="/organizations/new" data-ga-click="Header, create new organization, icon:organization"><span class="octicon octicon-organization"></span> New organization</a>
|
150
|
+
</li>
|
151
|
+
|
152
|
+
|
153
|
+
</ul>
|
154
|
+
|
155
|
+
</div>
|
156
|
+
</li>
|
157
|
+
|
158
|
+
<li class="header-nav-item">
|
159
|
+
<a href="/notifications" aria-label="You have no unread notifications" class="header-nav-link notification-indicator tooltipped tooltipped-s" data-ga-click="Header, go to notifications, icon:read" data-hotkey="g n">
|
160
|
+
<span class="mail-status all-read"></span>
|
161
|
+
<span class="octicon octicon-inbox"></span>
|
162
|
+
</a>
|
163
|
+
</li>
|
164
|
+
|
165
|
+
<li class="header-nav-item">
|
166
|
+
<a class="header-nav-link tooltipped tooltipped-s" href="/settings/profile" id="account_settings" aria-label="Settings" data-ga-click="Header, go to settings, icon:settings">
|
167
|
+
<span class="octicon octicon-gear"></span>
|
168
|
+
</a>
|
169
|
+
</li>
|
170
|
+
|
171
|
+
<li class="header-nav-item">
|
172
|
+
<form accept-charset="UTF-8" action="/logout" class="logout-form" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="bDy0MARGAL8RoKfS5Kd8/BiyO0azC9QAltyYypySZVMvA3gL/XkjgTKQ1rDO/jwVHPCnHsiKDfFrNMAVDqUDkQ==" /></div>
|
173
|
+
<button class="header-nav-link sign-out-button tooltipped tooltipped-s" aria-label="Sign out" data-ga-click="Header, sign out, icon:logout">
|
174
|
+
<span class="octicon octicon-sign-out"></span>
|
175
|
+
</button>
|
176
|
+
</form> </li>
|
177
|
+
|
178
|
+
</ul>
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
</div>
|
183
|
+
</div>
|
184
|
+
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
<div id="start-of-content" class="accessibility-aid"></div>
|
191
|
+
<div class="site clearfix" role="main">
|
192
|
+
|
193
|
+
<div id="site-container" class="context-loader-container" data-pjax-container>
|
194
|
+
|
195
|
+
|
196
|
+
<div class="pagehead explore-head">
|
197
|
+
<div class="container">
|
198
|
+
<nav class="pagehead-nav" role="navigation" data-pjax>
|
199
|
+
<a href="/explore" class="js-selected-navigation-item pagehead-nav-item" data-selected-links="explore_main /explore">
|
200
|
+
<span class="octicon octicon-home"></span> All
|
201
|
+
</a> <a href="/showcases" class="js-selected-navigation-item pagehead-nav-item" data-selected-links="showcases showcases_search showcases_landing /showcases">
|
202
|
+
<span class="octicon octicon-megaphone"></span> Showcases
|
203
|
+
</a> <a href="/trending" class="selected js-selected-navigation-item pagehead-nav-item" data-selected-links="trending_developers trending_repositories /trending">
|
204
|
+
<span class="octicon octicon-flame"></span> Trending
|
205
|
+
</a> <a href="/stars" class="js-selected-navigation-item pagehead-nav-item" data-selected-links="stars_highlight users_stars_highlight /stars">
|
206
|
+
<span class="octicon octicon-star"></span> Stars
|
207
|
+
</a></nav>
|
208
|
+
|
209
|
+
<h1>Explore GitHub</h1>
|
210
|
+
</div>
|
211
|
+
</div><!-- /.pagehead -->
|
212
|
+
|
213
|
+
|
214
|
+
<div class="explore-pjax-container container explore-page js-explore-page">
|
215
|
+
<div class="explore-marketing-header ">
|
216
|
+
<h2>Trending repositories</h2>
|
217
|
+
<p class="lead">Find what repositories the GitHub community is most excited about today.</p>
|
218
|
+
|
219
|
+
</div>
|
220
|
+
<div class="columns">
|
221
|
+
<div class="column three-fourths">
|
222
|
+
<div class="tabnav">
|
223
|
+
<div class="tabnav-right">
|
224
|
+
<div class="tabnav-widget">
|
225
|
+
<div class="select-menu js-menu-container js-select-menu right-aligned">
|
226
|
+
<span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
|
227
|
+
<i>Trending:</i>
|
228
|
+
<span class="js-select-button">today</span>
|
229
|
+
</span>
|
230
|
+
<div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
|
231
|
+
<div class="select-menu-modal">
|
232
|
+
<div class="select-menu-header">
|
233
|
+
<span class="select-menu-title">Adjust time span</span>
|
234
|
+
<span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
|
235
|
+
</div>
|
236
|
+
|
237
|
+
<div class="select-menu-list" role="menu">
|
238
|
+
<div>
|
239
|
+
<a class="select-menu-item js-navigation-item selected" href="https://github.com/trending?l=ruby&since=daily" data-pjax>
|
240
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
241
|
+
<span class="select-menu-item-text js-select-button-text">today</span>
|
242
|
+
</a>
|
243
|
+
<a class="select-menu-item js-navigation-item " href="https://github.com/trending?l=ruby&since=weekly" data-pjax>
|
244
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
245
|
+
<span class="select-menu-item-text js-select-button-text">this week</span>
|
246
|
+
</a>
|
247
|
+
<a class="select-menu-item js-navigation-item " href="https://github.com/trending?l=ruby&since=monthly" data-pjax>
|
248
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
249
|
+
<span class="select-menu-item-text js-select-button-text">this month</span>
|
250
|
+
</a>
|
251
|
+
</div>
|
252
|
+
</div>
|
253
|
+
</div>
|
254
|
+
</div>
|
255
|
+
</div>
|
256
|
+
|
257
|
+
</div>
|
258
|
+
</div>
|
259
|
+
<ul class="tabnav-tabs" data-pjax>
|
260
|
+
<li><a href="https://github.com/trending?l=ruby" class="selected js-selected-navigation-item tabnav-tab" data-selected-links="trending_repositories https://github.com/trending?l=ruby">Repositories</a></li>
|
261
|
+
<li><a href="https://github.com/trending/developers?l=ruby" class="js-selected-navigation-item tabnav-tab" data-selected-links="trending_developers https://github.com/trending/developers?l=ruby">Developers</a></li>
|
262
|
+
</ul>
|
263
|
+
|
264
|
+
</div>
|
265
|
+
<div class="explore-content">
|
266
|
+
<ol class="repo-list">
|
267
|
+
<li class="repo-list-item" id="pa-regexp-examples">
|
268
|
+
<div class="repo-list-stats">
|
269
|
+
|
270
|
+
<div class="js-toggler-container js-social-container starring-container on">
|
271
|
+
|
272
|
+
<form accept-charset="UTF-8" action="/tom-lord/regexp-examples/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="E2O7Gyqi4BRKVJa87FD0c3sLWL32r+FOaWA/HP78P3tfClUHnbscGg7DGLXF+yCnmQM3Hr0PLMxj9jjbA0w0fQ==" /></div>
|
273
|
+
<button
|
274
|
+
class="minibutton js-toggler-target"
|
275
|
+
aria-label="Unstar this repository" title="Unstar tom-lord/regexp-examples">
|
276
|
+
<span class="octicon octicon-star"></span>
|
277
|
+
Unstar
|
278
|
+
</button>
|
279
|
+
</form>
|
280
|
+
<form accept-charset="UTF-8" action="/tom-lord/regexp-examples/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="tX2PjkdBMZEfnC1nfUN/eRH3iluuaGjYeJMmWnASB3nF93+Rl8Y6egoGVkMveYVZIsPaOibBhFCFSA7vDGoHjg==" /></div>
|
281
|
+
<button
|
282
|
+
class="minibutton js-toggler-target"
|
283
|
+
aria-label="Star this repository" title="Star tom-lord/regexp-examples">
|
284
|
+
<span class="octicon octicon-star"></span>
|
285
|
+
Star
|
286
|
+
</button>
|
287
|
+
</form> </div>
|
288
|
+
|
289
|
+
</div>
|
290
|
+
|
291
|
+
<h3 class="repo-list-name">
|
292
|
+
<a href="/tom-lord/regexp-examples">
|
293
|
+
<span class="prefix">tom-lord</span>
|
294
|
+
<span class="slash">/</span>
|
295
|
+
regexp-examples
|
296
|
+
</a> </h3>
|
297
|
+
|
298
|
+
<p class="repo-list-description">
|
299
|
+
Generate strings that match a given regular expression
|
300
|
+
</p>
|
301
|
+
|
302
|
+
<p class="repo-list-meta">
|
303
|
+
Ruby
|
304
|
+
|
305
|
+
•
|
306
|
+
|
307
|
+
48 stars today
|
308
|
+
|
309
|
+
|
310
|
+
•
|
311
|
+
Built by
|
312
|
+
<a href="/tom-lord/regexp-examples/graphs/contributors">
|
313
|
+
<img alt="Tom Lord" class="avatar" data-user="7573396" height="20" src="https://avatars1.githubusercontent.com/u/7573396?v=3&s=40" title="tom-lord" width="20" />
|
314
|
+
<img alt="Thomas Shafer" class="avatar" data-user="135461" height="20" src="https://avatars2.githubusercontent.com/u/135461?v=3&s=40" title="growlsworth" width="20" />
|
315
|
+
</a>
|
316
|
+
</p>
|
317
|
+
</li>
|
318
|
+
|
319
|
+
<li class="repo-list-item" id="pa-homebrew">
|
320
|
+
<div class="repo-list-stats">
|
321
|
+
|
322
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
323
|
+
|
324
|
+
<form accept-charset="UTF-8" action="/Homebrew/homebrew/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="YlcFTpF8fnd5na4jyiqasqo7Z0wa9XFjUyFVNAYlCjaaM+4mYjUlkWjHkR58ZQLwcUjV8KFmA6AOU4iPqugO4A==" /></div>
|
325
|
+
<button
|
326
|
+
class="minibutton js-toggler-target"
|
327
|
+
aria-label="Unstar this repository" title="Unstar Homebrew/homebrew">
|
328
|
+
<span class="octicon octicon-star"></span>
|
329
|
+
Unstar
|
330
|
+
</button>
|
331
|
+
</form>
|
332
|
+
<form accept-charset="UTF-8" action="/Homebrew/homebrew/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="sro0vAfpxkWeZDgxM7HPr/GvEzMqLcbYxSlTocwLKwDdZD06jr1dpKGgZEDFQ9JSMtS9QRXFuIS/zgGnKYytFQ==" /></div>
|
333
|
+
<button
|
334
|
+
class="minibutton js-toggler-target"
|
335
|
+
aria-label="Star this repository" title="Star Homebrew/homebrew">
|
336
|
+
<span class="octicon octicon-star"></span>
|
337
|
+
Star
|
338
|
+
</button>
|
339
|
+
</form> </div>
|
340
|
+
|
341
|
+
</div>
|
342
|
+
|
343
|
+
<h3 class="repo-list-name">
|
344
|
+
<a href="/Homebrew/homebrew">
|
345
|
+
<span class="prefix">Homebrew</span>
|
346
|
+
<span class="slash">/</span>
|
347
|
+
homebrew
|
348
|
+
</a> </h3>
|
349
|
+
|
350
|
+
<p class="repo-list-description">
|
351
|
+
The missing package manager for OS X.
|
352
|
+
</p>
|
353
|
+
|
354
|
+
<p class="repo-list-meta">
|
355
|
+
Ruby
|
356
|
+
|
357
|
+
•
|
358
|
+
|
359
|
+
21 stars today
|
360
|
+
|
361
|
+
|
362
|
+
•
|
363
|
+
Built by
|
364
|
+
<a href="/Homebrew/homebrew/graphs/contributors">
|
365
|
+
<img alt="Jack Nagel" class="avatar" data-user="568243" height="20" src="https://avatars2.githubusercontent.com/u/568243?v=3&s=40" title="jacknagel" width="20" />
|
366
|
+
<img alt="Adam Vandenberg" class="avatar" data-user="3566" height="20" src="https://avatars1.githubusercontent.com/u/3566?v=3&s=40" title="adamv" width="20" />
|
367
|
+
<img alt="BrewTestBot" class="avatar" data-user="1589480" height="20" src="https://avatars1.githubusercontent.com/u/1589480?v=3&s=40" title="BrewTestBot" width="20" />
|
368
|
+
<img alt="Mike McQuaid" class="avatar" data-user="125011" height="20" src="https://avatars0.githubusercontent.com/u/125011?v=3&s=40" title="mikemcquaid" width="20" />
|
369
|
+
<img alt="Brett Koonce" class="avatar" data-user="518607" height="20" src="https://avatars1.githubusercontent.com/u/518607?v=3&s=40" title="asparagui" width="20" />
|
370
|
+
</a>
|
371
|
+
</p>
|
372
|
+
</li>
|
373
|
+
|
374
|
+
<li class="repo-list-item" id="pa-airbrussh">
|
375
|
+
<div class="repo-list-stats">
|
376
|
+
|
377
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
378
|
+
|
379
|
+
<form accept-charset="UTF-8" action="/mattbrictson/airbrussh/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="MrAXDXgNt1Po1gG74EBhtY3Cdq1AwkGE9huGkPUvavJudvOoUACVrglvYqEWktO+QP/AbZ8jgJxFf4S5anlgpQ==" /></div>
|
380
|
+
<button
|
381
|
+
class="minibutton js-toggler-target"
|
382
|
+
aria-label="Unstar this repository" title="Unstar mattbrictson/airbrussh">
|
383
|
+
<span class="octicon octicon-star"></span>
|
384
|
+
Unstar
|
385
|
+
</button>
|
386
|
+
</form>
|
387
|
+
<form accept-charset="UTF-8" action="/mattbrictson/airbrussh/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="AVT3umiaQxGV62RQQv/lC97O/ILXjTv8N/PP8jLIe/DLeNsI+FSX40aKKq4j02odmjVS0tbf/hGCmc23jwQYAA==" /></div>
|
388
|
+
<button
|
389
|
+
class="minibutton js-toggler-target"
|
390
|
+
aria-label="Star this repository" title="Star mattbrictson/airbrussh">
|
391
|
+
<span class="octicon octicon-star"></span>
|
392
|
+
Star
|
393
|
+
</button>
|
394
|
+
</form> </div>
|
395
|
+
|
396
|
+
</div>
|
397
|
+
|
398
|
+
<h3 class="repo-list-name">
|
399
|
+
<a href="/mattbrictson/airbrussh">
|
400
|
+
<span class="prefix">mattbrictson</span>
|
401
|
+
<span class="slash">/</span>
|
402
|
+
airbrussh
|
403
|
+
</a> </h3>
|
404
|
+
|
405
|
+
<p class="repo-list-description">
|
406
|
+
Airbrussh pretties up your SSHKit and Capistrano output
|
407
|
+
</p>
|
408
|
+
|
409
|
+
<p class="repo-list-meta">
|
410
|
+
Ruby
|
411
|
+
|
412
|
+
•
|
413
|
+
|
414
|
+
25 stars today
|
415
|
+
|
416
|
+
|
417
|
+
•
|
418
|
+
Built by
|
419
|
+
<a href="/mattbrictson/airbrussh/graphs/contributors">
|
420
|
+
<img alt="Matt Brictson" class="avatar" data-user="189693" height="20" src="https://avatars0.githubusercontent.com/u/189693?v=3&s=40" title="mattbrictson" width="20" />
|
421
|
+
</a>
|
422
|
+
</p>
|
423
|
+
</li>
|
424
|
+
|
425
|
+
<li class="repo-list-item" id="pa-tunemygc">
|
426
|
+
<div class="repo-list-stats">
|
427
|
+
|
428
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
429
|
+
|
430
|
+
<form accept-charset="UTF-8" action="/bear-metal/tunemygc/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="cWNR/rwEl8Gfqg9igYgGyl+7mQf6oO51O2SLfmONM8kBoEC8A1Km/s6uD8ayH6v0DuMlFBVgTpGABt5tVtvc6w==" /></div>
|
431
|
+
<button
|
432
|
+
class="minibutton js-toggler-target"
|
433
|
+
aria-label="Unstar this repository" title="Unstar bear-metal/tunemygc">
|
434
|
+
<span class="octicon octicon-star"></span>
|
435
|
+
Unstar
|
436
|
+
</button>
|
437
|
+
</form>
|
438
|
+
<form accept-charset="UTF-8" action="/bear-metal/tunemygc/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="S2L43k2VXQQJ4i7VMkbwWexCebfYcBbKecyT16/bhcS3M7SGwK5zm6ld+YGQFWFCHp5M3Ftz01yF/zfytncQbQ==" /></div>
|
439
|
+
<button
|
440
|
+
class="minibutton js-toggler-target"
|
441
|
+
aria-label="Star this repository" title="Star bear-metal/tunemygc">
|
442
|
+
<span class="octicon octicon-star"></span>
|
443
|
+
Star
|
444
|
+
</button>
|
445
|
+
</form> </div>
|
446
|
+
|
447
|
+
</div>
|
448
|
+
|
449
|
+
<h3 class="repo-list-name">
|
450
|
+
<a href="/bear-metal/tunemygc">
|
451
|
+
<span class="prefix">bear-metal</span>
|
452
|
+
<span class="slash">/</span>
|
453
|
+
tunemygc
|
454
|
+
</a> </h3>
|
455
|
+
|
456
|
+
<p class="repo-list-description">
|
457
|
+
TuneMyGC - optimal MRI Ruby 2.1+ Garbage Collection
|
458
|
+
</p>
|
459
|
+
|
460
|
+
<p class="repo-list-meta">
|
461
|
+
Ruby
|
462
|
+
|
463
|
+
•
|
464
|
+
|
465
|
+
22 stars today
|
466
|
+
|
467
|
+
|
468
|
+
•
|
469
|
+
Built by
|
470
|
+
<a href="/bear-metal/tunemygc/graphs/contributors">
|
471
|
+
<img alt="Lourens Naudé" class="avatar" data-user="379" height="20" src="https://avatars2.githubusercontent.com/u/379?v=3&s=40" title="methodmissing" width="20" />
|
472
|
+
<img alt="Chris Grigg" class="avatar" data-user="4097271" height="20" src="https://avatars2.githubusercontent.com/u/4097271?v=3&s=40" title="subvertallchris" width="20" />
|
473
|
+
</a>
|
474
|
+
</p>
|
475
|
+
</li>
|
476
|
+
|
477
|
+
<li class="repo-list-item" id="pa-alaska">
|
478
|
+
<div class="repo-list-stats">
|
479
|
+
|
480
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
481
|
+
|
482
|
+
<form accept-charset="UTF-8" action="/mavenlink/alaska/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="4Qd/1EB9wmjFreLySzPxICidA6isIl7w7MPJj4mt5E9SF7vuJEKOTlqJeplDzirFPRU/EOrrnEOzVMxKmP2Byg==" /></div>
|
483
|
+
<button
|
484
|
+
class="minibutton js-toggler-target"
|
485
|
+
aria-label="Unstar this repository" title="Unstar mavenlink/alaska">
|
486
|
+
<span class="octicon octicon-star"></span>
|
487
|
+
Unstar
|
488
|
+
</button>
|
489
|
+
</form>
|
490
|
+
<form accept-charset="UTF-8" action="/mavenlink/alaska/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="YfRgxpVEAXcXsPZBz/xTKZ8rLMd+nejavHZhxky2IKH8tpKu+UAO/54J1LX2wOXoytSGRic4t1WZsqjBQdy0tQ==" /></div>
|
491
|
+
<button
|
492
|
+
class="minibutton js-toggler-target"
|
493
|
+
aria-label="Star this repository" title="Star mavenlink/alaska">
|
494
|
+
<span class="octicon octicon-star"></span>
|
495
|
+
Star
|
496
|
+
</button>
|
497
|
+
</form> </div>
|
498
|
+
|
499
|
+
</div>
|
500
|
+
|
501
|
+
<h3 class="repo-list-name">
|
502
|
+
<a href="/mavenlink/alaska">
|
503
|
+
<span class="prefix">mavenlink</span>
|
504
|
+
<span class="slash">/</span>
|
505
|
+
alaska
|
506
|
+
</a> </h3>
|
507
|
+
|
508
|
+
<p class="repo-list-description">
|
509
|
+
ExecJS runtime with persistent connection to nodejs
|
510
|
+
</p>
|
511
|
+
|
512
|
+
<p class="repo-list-meta">
|
513
|
+
Ruby
|
514
|
+
|
515
|
+
•
|
516
|
+
|
517
|
+
20 stars today
|
518
|
+
|
519
|
+
|
520
|
+
•
|
521
|
+
Built by
|
522
|
+
<a href="/mavenlink/alaska/graphs/contributors">
|
523
|
+
<img alt="Jon Bardin" class="avatar" data-user="10122" height="20" src="https://avatars3.githubusercontent.com/u/10122?v=3&s=40" title="diclophis" width="20" />
|
524
|
+
<img alt="Ville Lautanala" class="avatar" data-user="19264" height="20" src="https://avatars2.githubusercontent.com/u/19264?v=3&s=40" title="lautis" width="20" />
|
525
|
+
</a>
|
526
|
+
</p>
|
527
|
+
</li>
|
528
|
+
|
529
|
+
<li class="repo-list-item" id="pa-discourse">
|
530
|
+
<div class="repo-list-stats">
|
531
|
+
|
532
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
533
|
+
|
534
|
+
<form accept-charset="UTF-8" action="/discourse/discourse/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="AVr0ccQEFza6q89C286VEE/K5mZUuvM9YImXW3VC7RgDDEr4WpTpF9ay2QlRbaV/QFznmb0JBpsMZMHsFuQfiQ==" /></div>
|
535
|
+
<button
|
536
|
+
class="minibutton js-toggler-target"
|
537
|
+
aria-label="Unstar this repository" title="Unstar discourse/discourse">
|
538
|
+
<span class="octicon octicon-star"></span>
|
539
|
+
Unstar
|
540
|
+
</button>
|
541
|
+
</form>
|
542
|
+
<form accept-charset="UTF-8" action="/discourse/discourse/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="5voUIN1BlNKBwohaGDgswMQt6fidaym238q60F6wGWhNpCk68kfzMAqrp4fJqSZxZ0GhY3aHbtUgq2SAXYwRGA==" /></div>
|
543
|
+
<button
|
544
|
+
class="minibutton js-toggler-target"
|
545
|
+
aria-label="Star this repository" title="Star discourse/discourse">
|
546
|
+
<span class="octicon octicon-star"></span>
|
547
|
+
Star
|
548
|
+
</button>
|
549
|
+
</form> </div>
|
550
|
+
|
551
|
+
</div>
|
552
|
+
|
553
|
+
<h3 class="repo-list-name">
|
554
|
+
<a href="/discourse/discourse">
|
555
|
+
<span class="prefix">discourse</span>
|
556
|
+
<span class="slash">/</span>
|
557
|
+
discourse
|
558
|
+
</a> </h3>
|
559
|
+
|
560
|
+
<p class="repo-list-description">
|
561
|
+
A platform for community discussion. Free, open, simple.
|
562
|
+
</p>
|
563
|
+
|
564
|
+
<p class="repo-list-meta">
|
565
|
+
Ruby
|
566
|
+
|
567
|
+
•
|
568
|
+
|
569
|
+
18 stars today
|
570
|
+
|
571
|
+
|
572
|
+
•
|
573
|
+
Built by
|
574
|
+
<a href="/discourse/discourse/graphs/contributors">
|
575
|
+
<img alt="Robin Ward" class="avatar" data-user="17538" height="20" src="https://avatars1.githubusercontent.com/u/17538?v=3&s=40" title="eviltrout" width="20" />
|
576
|
+
<img alt="Sam" class="avatar" data-user="5213" height="20" src="https://avatars0.githubusercontent.com/u/5213?v=3&s=40" title="SamSaffron" width="20" />
|
577
|
+
<img alt="Régis Hanol" class="avatar" data-user="362783" height="20" src="https://avatars1.githubusercontent.com/u/362783?v=3&s=40" title="ZogStriP" width="20" />
|
578
|
+
<img alt="Neil Lalonde" class="avatar" data-user="151885" height="20" src="https://avatars3.githubusercontent.com/u/151885?v=3&s=40" title="nlalonde" width="20" />
|
579
|
+
<img alt="Jeff Atwood" class="avatar" data-user="1522517" height="20" src="https://avatars2.githubusercontent.com/u/1522517?v=3&s=40" title="coding-horror" width="20" />
|
580
|
+
</a>
|
581
|
+
</p>
|
582
|
+
</li>
|
583
|
+
|
584
|
+
<li class="repo-list-item" id="pa-mutant">
|
585
|
+
<div class="repo-list-stats">
|
586
|
+
|
587
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
588
|
+
|
589
|
+
<form accept-charset="UTF-8" action="/mbj/mutant/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="DIAKGWjvpCD+ew3mDGHlEAvoxt8Zw//a4cAOhvDyhTmbKiEXTXhUy2J+IqGB6J6SUpfcWAmWu6T6ny8h39SRmQ==" /></div>
|
590
|
+
<button
|
591
|
+
class="minibutton js-toggler-target"
|
592
|
+
aria-label="Unstar this repository" title="Unstar mbj/mutant">
|
593
|
+
<span class="octicon octicon-star"></span>
|
594
|
+
Unstar
|
595
|
+
</button>
|
596
|
+
</form>
|
597
|
+
<form accept-charset="UTF-8" action="/mbj/mutant/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="2V+Z2a8GbCLGrF+TfDuHgzGThg4rr7Y6nUIzB4nPFFssjQeFCk1OgvtIdKlcRiN4zevm1B/cprZLXjWrbldJvA==" /></div>
|
598
|
+
<button
|
599
|
+
class="minibutton js-toggler-target"
|
600
|
+
aria-label="Star this repository" title="Star mbj/mutant">
|
601
|
+
<span class="octicon octicon-star"></span>
|
602
|
+
Star
|
603
|
+
</button>
|
604
|
+
</form> </div>
|
605
|
+
|
606
|
+
</div>
|
607
|
+
|
608
|
+
<h3 class="repo-list-name">
|
609
|
+
<a href="/mbj/mutant">
|
610
|
+
<span class="prefix">mbj</span>
|
611
|
+
<span class="slash">/</span>
|
612
|
+
mutant
|
613
|
+
</a> </h3>
|
614
|
+
|
615
|
+
<p class="repo-list-description">
|
616
|
+
Mutation testing for Ruby
|
617
|
+
</p>
|
618
|
+
|
619
|
+
<p class="repo-list-meta">
|
620
|
+
Ruby
|
621
|
+
|
622
|
+
•
|
623
|
+
|
624
|
+
19 stars today
|
625
|
+
|
626
|
+
|
627
|
+
•
|
628
|
+
Built by
|
629
|
+
<a href="/mbj/mutant/graphs/contributors">
|
630
|
+
<img alt="Markus Schirp" class="avatar" data-user="117966" height="20" src="https://avatars3.githubusercontent.com/u/117966?v=3&s=40" title="mbj" width="20" />
|
631
|
+
<img alt="Dan Kubb" class="avatar" data-user="133" height="20" src="https://avatars2.githubusercontent.com/u/133?v=3&s=40" title="dkubb" width="20" />
|
632
|
+
<img alt="Tim Chambers" class="avatar" data-user="103654" height="20" src="https://avatars2.githubusercontent.com/u/103654?v=3&s=40" title="tjchambers" width="20" />
|
633
|
+
<img alt="Andriy Savchenko" class="avatar" data-user="69933" height="20" src="https://avatars3.githubusercontent.com/u/69933?v=3&s=40" title="Ptico" width="20" />
|
634
|
+
<img alt="Piotr Solnica" class="avatar" data-user="1066" height="20" src="https://avatars2.githubusercontent.com/u/1066?v=3&s=40" title="solnic" width="20" />
|
635
|
+
</a>
|
636
|
+
</p>
|
637
|
+
</li>
|
638
|
+
|
639
|
+
<li class="repo-list-item" id="pa-mamiya">
|
640
|
+
<div class="repo-list-stats">
|
641
|
+
|
642
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
643
|
+
|
644
|
+
<form accept-charset="UTF-8" action="/sorah/mamiya/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="6a/z1UKt9q2WJfV6D8chBgtqmC4KXARoUImy8mYSWwwGlzC8o0KwceiOTf0WgbTEDY1tHBlDtdVUtgRTITZo3w==" /></div>
|
645
|
+
<button
|
646
|
+
class="minibutton js-toggler-target"
|
647
|
+
aria-label="Unstar this repository" title="Unstar sorah/mamiya">
|
648
|
+
<span class="octicon octicon-star"></span>
|
649
|
+
Unstar
|
650
|
+
</button>
|
651
|
+
</form>
|
652
|
+
<form accept-charset="UTF-8" action="/sorah/mamiya/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="nK9t/XjMJ++QoRFrkQZP+w2ABdcXFZqQb0dAV83UuePoGm+YakhsTAETlk1N27BtwOWc4cXCjM3fNsTatffyVQ==" /></div>
|
653
|
+
<button
|
654
|
+
class="minibutton js-toggler-target"
|
655
|
+
aria-label="Star this repository" title="Star sorah/mamiya">
|
656
|
+
<span class="octicon octicon-star"></span>
|
657
|
+
Star
|
658
|
+
</button>
|
659
|
+
</form> </div>
|
660
|
+
|
661
|
+
</div>
|
662
|
+
|
663
|
+
<h3 class="repo-list-name">
|
664
|
+
<a href="/sorah/mamiya">
|
665
|
+
<span class="prefix">sorah</span>
|
666
|
+
<span class="slash">/</span>
|
667
|
+
mamiya
|
668
|
+
</a> </h3>
|
669
|
+
|
670
|
+
<p class="repo-list-description">
|
671
|
+
Faster deploy tool using tarballs and serf
|
672
|
+
</p>
|
673
|
+
|
674
|
+
<p class="repo-list-meta">
|
675
|
+
Ruby
|
676
|
+
|
677
|
+
•
|
678
|
+
|
679
|
+
18 stars today
|
680
|
+
|
681
|
+
|
682
|
+
•
|
683
|
+
Built by
|
684
|
+
<a href="/sorah/mamiya/graphs/contributors">
|
685
|
+
<img alt="Shota Fukumori" class="avatar" data-user="29440" height="20" src="https://avatars2.githubusercontent.com/u/29440?v=3&s=40" title="sorah" width="20" />
|
686
|
+
<img alt="Claudio B." class="avatar" data-user="10076" height="20" src="https://avatars0.githubusercontent.com/u/10076?v=3&s=40" title="claudiob" width="20" />
|
687
|
+
<img alt="Kohei Suzuki" class="avatar" data-user="69755" height="20" src="https://avatars1.githubusercontent.com/u/69755?v=3&s=40" title="eagletmt" width="20" />
|
688
|
+
</a>
|
689
|
+
</p>
|
690
|
+
</li>
|
691
|
+
|
692
|
+
<li class="repo-list-item" id="pa-jekyll">
|
693
|
+
<div class="repo-list-stats">
|
694
|
+
|
695
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
696
|
+
|
697
|
+
<form accept-charset="UTF-8" action="/jekyll/jekyll/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="MAh8PsfDfT8CkwVAmiQowOAaGhzC1jCigd9QvBeH0pdDVS9S766dDYeOzUEOoVgzmfXVi8lg7BqONmKSUEL9jw==" /></div>
|
698
|
+
<button
|
699
|
+
class="minibutton js-toggler-target"
|
700
|
+
aria-label="Unstar this repository" title="Unstar jekyll/jekyll">
|
701
|
+
<span class="octicon octicon-star"></span>
|
702
|
+
Unstar
|
703
|
+
</button>
|
704
|
+
</form>
|
705
|
+
<form accept-charset="UTF-8" action="/jekyll/jekyll/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="nVpUMCBRyNE37bLIBMbFqIhgwGOtW3rRoeR/nTYQ9qaROQhBAJ/aj+nK9RKIMtYDvkPKQKgW9FMt8/54Zq6TGg==" /></div>
|
706
|
+
<button
|
707
|
+
class="minibutton js-toggler-target"
|
708
|
+
aria-label="Star this repository" title="Star jekyll/jekyll">
|
709
|
+
<span class="octicon octicon-star"></span>
|
710
|
+
Star
|
711
|
+
</button>
|
712
|
+
</form> </div>
|
713
|
+
|
714
|
+
</div>
|
715
|
+
|
716
|
+
<h3 class="repo-list-name">
|
717
|
+
<a href="/jekyll/jekyll">
|
718
|
+
<span class="prefix">jekyll</span>
|
719
|
+
<span class="slash">/</span>
|
720
|
+
jekyll
|
721
|
+
</a> </h3>
|
722
|
+
|
723
|
+
<p class="repo-list-description">
|
724
|
+
Jekyll is a blog-aware, static site generator in Ruby
|
725
|
+
</p>
|
726
|
+
|
727
|
+
<p class="repo-list-meta">
|
728
|
+
Ruby
|
729
|
+
|
730
|
+
•
|
731
|
+
|
732
|
+
16 stars today
|
733
|
+
|
734
|
+
|
735
|
+
•
|
736
|
+
Built by
|
737
|
+
<a href="/jekyll/jekyll/graphs/contributors">
|
738
|
+
<img alt="Parker Moore" class="avatar" data-user="237985" height="20" src="https://avatars2.githubusercontent.com/u/237985?v=3&s=40" title="parkr" width="20" />
|
739
|
+
<img alt="Matt Rogers" class="avatar" data-user="77174" height="20" src="https://avatars0.githubusercontent.com/u/77174?v=3&s=40" title="mattr-" width="20" />
|
740
|
+
<img alt="Tom Preston-Werner" class="avatar" data-user="1" height="20" src="https://avatars2.githubusercontent.com/u/1?v=3&s=40" title="mojombo" width="20" />
|
741
|
+
<img alt="maul.esel" class="avatar" data-user="800556" height="20" src="https://avatars2.githubusercontent.com/u/800556?v=3&s=40" title="maul-esel" width="20" />
|
742
|
+
<img alt="Anatol Broder" class="avatar" data-user="3617307" height="20" src="https://avatars0.githubusercontent.com/u/3617307?v=3&s=40" title="penibelst" width="20" />
|
743
|
+
</a>
|
744
|
+
</p>
|
745
|
+
</li>
|
746
|
+
|
747
|
+
<li class="repo-list-item" id="pa-bulk_cache_fetcher">
|
748
|
+
<div class="repo-list-stats">
|
749
|
+
|
750
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
751
|
+
|
752
|
+
<form accept-charset="UTF-8" action="/justinweiss/bulk_cache_fetcher/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="+ovtKtHL0w/EWFuiMRBe73gAQNndF5o0vqaCk8X+StpPh8Qr1ktsaoilrOlFHEjIrHtTOGxNROtpiFeuInGFdA==" /></div>
|
753
|
+
<button
|
754
|
+
class="minibutton js-toggler-target"
|
755
|
+
aria-label="Unstar this repository" title="Unstar justinweiss/bulk_cache_fetcher">
|
756
|
+
<span class="octicon octicon-star"></span>
|
757
|
+
Unstar
|
758
|
+
</button>
|
759
|
+
</form>
|
760
|
+
<form accept-charset="UTF-8" action="/justinweiss/bulk_cache_fetcher/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="elPR/NXqPT5niwMMWK0usK2aJQk6zCY5b9wvVWOMdOhA8I6/x+uiRpH1Ev+NKfCdCDcW1BEa7nVp0HayYEH9ZA==" /></div>
|
761
|
+
<button
|
762
|
+
class="minibutton js-toggler-target"
|
763
|
+
aria-label="Star this repository" title="Star justinweiss/bulk_cache_fetcher">
|
764
|
+
<span class="octicon octicon-star"></span>
|
765
|
+
Star
|
766
|
+
</button>
|
767
|
+
</form> </div>
|
768
|
+
|
769
|
+
</div>
|
770
|
+
|
771
|
+
<h3 class="repo-list-name">
|
772
|
+
<a href="/justinweiss/bulk_cache_fetcher">
|
773
|
+
<span class="prefix">justinweiss</span>
|
774
|
+
<span class="slash">/</span>
|
775
|
+
bulk_cache_fetcher
|
776
|
+
</a> </h3>
|
777
|
+
|
778
|
+
<p class="repo-list-description">
|
779
|
+
Fills the gap between nested caching and the n+1 queries problem
|
780
|
+
</p>
|
781
|
+
|
782
|
+
<p class="repo-list-meta">
|
783
|
+
Ruby
|
784
|
+
|
785
|
+
•
|
786
|
+
|
787
|
+
16 stars today
|
788
|
+
|
789
|
+
|
790
|
+
•
|
791
|
+
Built by
|
792
|
+
<a href="/justinweiss/bulk_cache_fetcher/graphs/contributors">
|
793
|
+
<img alt="Justin Weiss" class="avatar" data-user="1020" height="20" src="https://avatars3.githubusercontent.com/u/1020?v=3&s=40" title="justinweiss" width="20" />
|
794
|
+
</a>
|
795
|
+
</p>
|
796
|
+
</li>
|
797
|
+
|
798
|
+
<li class="repo-list-item" id="pa-ruby">
|
799
|
+
<div class="repo-list-stats">
|
800
|
+
|
801
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
802
|
+
|
803
|
+
<form accept-charset="UTF-8" action="/ruby/ruby/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="7Lv1L0OTWUsGopWFG36KChfvf6PU6HEhLneZTvNVMSVsyRnd0MKgFH/FrhQAIRhn3+WG+0H1k+1SifPywS8mHQ==" /></div>
|
804
|
+
<button
|
805
|
+
class="minibutton js-toggler-target"
|
806
|
+
aria-label="Unstar this repository" title="Unstar ruby/ruby">
|
807
|
+
<span class="octicon octicon-star"></span>
|
808
|
+
Unstar
|
809
|
+
</button>
|
810
|
+
</form>
|
811
|
+
<form accept-charset="UTF-8" action="/ruby/ruby/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="Fu3z2zTrYK15xPyMmEUyS/YUwRj/rY/OhbUd6V+xHGuEiYKIaGuMeNDYMHDc5Y13UzclrzsGZmBQdoQKAus7fg==" /></div>
|
812
|
+
<button
|
813
|
+
class="minibutton js-toggler-target"
|
814
|
+
aria-label="Star this repository" title="Star ruby/ruby">
|
815
|
+
<span class="octicon octicon-star"></span>
|
816
|
+
Star
|
817
|
+
</button>
|
818
|
+
</form> </div>
|
819
|
+
|
820
|
+
</div>
|
821
|
+
|
822
|
+
<h3 class="repo-list-name">
|
823
|
+
<a href="/ruby/ruby">
|
824
|
+
<span class="prefix">ruby</span>
|
825
|
+
<span class="slash">/</span>
|
826
|
+
ruby
|
827
|
+
</a> </h3>
|
828
|
+
|
829
|
+
<p class="repo-list-description">
|
830
|
+
The Ruby Programming Language
|
831
|
+
</p>
|
832
|
+
|
833
|
+
<p class="repo-list-meta">
|
834
|
+
Ruby
|
835
|
+
|
836
|
+
•
|
837
|
+
|
838
|
+
13 stars today
|
839
|
+
|
840
|
+
|
841
|
+
•
|
842
|
+
Built by
|
843
|
+
<a href="/ruby/ruby/graphs/contributors">
|
844
|
+
<img alt="Nobuyoshi Nakada" class="avatar" data-user="16700" height="20" src="https://avatars2.githubusercontent.com/u/16700?v=3&s=40" title="nobu" width="20" />
|
845
|
+
<img alt="akr" class="avatar" data-user="10538" height="20" src="https://avatars1.githubusercontent.com/u/10538?v=3&s=40" title="akr" width="20" />
|
846
|
+
<img alt="NARUSE, Yui" class="avatar" data-user="13423" height="20" src="https://avatars3.githubusercontent.com/u/13423?v=3&s=40" title="nurse" width="20" />
|
847
|
+
<img alt="unak" class="avatar" data-user="17790" height="20" src="https://avatars2.githubusercontent.com/u/17790?v=3&s=40" title="unak" width="20" />
|
848
|
+
<img alt="Koichi Sasada" class="avatar" data-user="9558" height="20" src="https://avatars1.githubusercontent.com/u/9558?v=3&s=40" title="ko1" width="20" />
|
849
|
+
</a>
|
850
|
+
</p>
|
851
|
+
</li>
|
852
|
+
|
853
|
+
<li class="repo-list-item" id="pa-gli">
|
854
|
+
<div class="repo-list-stats">
|
855
|
+
|
856
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
857
|
+
|
858
|
+
<form accept-charset="UTF-8" action="/davetron5000/gli/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="44GaoWLjbzWu1BnIPd8TdxZSU5wCz2J0hCfs/0yLcgorp2hU/p/WvCIc7mnm8W90KookGbHRuIGaldt7oHWTTA==" /></div>
|
859
|
+
<button
|
860
|
+
class="minibutton js-toggler-target"
|
861
|
+
aria-label="Unstar this repository" title="Unstar davetron5000/gli">
|
862
|
+
<span class="octicon octicon-star"></span>
|
863
|
+
Unstar
|
864
|
+
</button>
|
865
|
+
</form>
|
866
|
+
<form accept-charset="UTF-8" action="/davetron5000/gli/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="vyO/pC0JoU/NFQVUwai+bwTFs1zDahs/0k1maAl3Mgu+QIv8Wcdm/CqPaNbx7OZE3Fn5L8w7h6jTqUjqFekMLQ==" /></div>
|
867
|
+
<button
|
868
|
+
class="minibutton js-toggler-target"
|
869
|
+
aria-label="Star this repository" title="Star davetron5000/gli">
|
870
|
+
<span class="octicon octicon-star"></span>
|
871
|
+
Star
|
872
|
+
</button>
|
873
|
+
</form> </div>
|
874
|
+
|
875
|
+
</div>
|
876
|
+
|
877
|
+
<h3 class="repo-list-name">
|
878
|
+
<a href="/davetron5000/gli">
|
879
|
+
<span class="prefix">davetron5000</span>
|
880
|
+
<span class="slash">/</span>
|
881
|
+
gli
|
882
|
+
</a> </h3>
|
883
|
+
|
884
|
+
<p class="repo-list-description">
|
885
|
+
Make awesome command-line applications the easy way
|
886
|
+
</p>
|
887
|
+
|
888
|
+
<p class="repo-list-meta">
|
889
|
+
Ruby
|
890
|
+
|
891
|
+
•
|
892
|
+
|
893
|
+
13 stars today
|
894
|
+
|
895
|
+
|
896
|
+
•
|
897
|
+
Built by
|
898
|
+
<a href="/davetron5000/gli/graphs/contributors">
|
899
|
+
<img alt="David Copeland" class="avatar" data-user="22282" height="20" src="https://avatars3.githubusercontent.com/u/22282?v=3&s=40" title="davetron5000" width="20" />
|
900
|
+
<img alt="Jean-Sebastien Gelinas" class="avatar" data-user="388096" height="20" src="https://avatars0.githubusercontent.com/u/388096?v=3&s=40" title="calestar" width="20" />
|
901
|
+
<img alt="Chris Arcand" class="avatar" data-user="2430490" height="20" src="https://avatars2.githubusercontent.com/u/2430490?v=3&s=40" title="ChrisArcand" width="20" />
|
902
|
+
<img alt="Bernd Jünger" class="avatar" data-user="14903" height="20" src="https://avatars0.githubusercontent.com/u/14903?v=3&s=40" title="blindgaenger" width="20" />
|
903
|
+
<img alt="Wynn Netherland" class="avatar" data-user="865" height="20" src="https://avatars2.githubusercontent.com/u/865?v=3&s=40" title="pengwynn" width="20" />
|
904
|
+
</a>
|
905
|
+
</p>
|
906
|
+
</li>
|
907
|
+
|
908
|
+
<li class="repo-list-item" id="pa-fast-ruby">
|
909
|
+
<div class="repo-list-stats">
|
910
|
+
|
911
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
912
|
+
|
913
|
+
<form accept-charset="UTF-8" action="/JuanitoFatas/fast-ruby/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="DfEkgRscsz3TBAF3ZlHoctAfHyDXV697HCcPSj9Ndrf8s+zdgRzRobF1iIW5YX0WRRuM5c+3wUO/DFynSps2Qw==" /></div>
|
914
|
+
<button
|
915
|
+
class="minibutton js-toggler-target"
|
916
|
+
aria-label="Unstar this repository" title="Unstar JuanitoFatas/fast-ruby">
|
917
|
+
<span class="octicon octicon-star"></span>
|
918
|
+
Unstar
|
919
|
+
</button>
|
920
|
+
</form>
|
921
|
+
<form accept-charset="UTF-8" action="/JuanitoFatas/fast-ruby/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="/2B42LNlEtobPjJW2JyysJO3A+ECiUiGT0krSsC9pIsGp1YpFDFB7X4oJ6EIe1hTDZRExy1psMJ/fUoTDlSGzQ==" /></div>
|
922
|
+
<button
|
923
|
+
class="minibutton js-toggler-target"
|
924
|
+
aria-label="Star this repository" title="Star JuanitoFatas/fast-ruby">
|
925
|
+
<span class="octicon octicon-star"></span>
|
926
|
+
Star
|
927
|
+
</button>
|
928
|
+
</form> </div>
|
929
|
+
|
930
|
+
</div>
|
931
|
+
|
932
|
+
<h3 class="repo-list-name">
|
933
|
+
<a href="/JuanitoFatas/fast-ruby">
|
934
|
+
<span class="prefix">JuanitoFatas</span>
|
935
|
+
<span class="slash">/</span>
|
936
|
+
fast-ruby
|
937
|
+
</a> </h3>
|
938
|
+
|
939
|
+
<p class="repo-list-description">
|
940
|
+
|
941
|
+
<img class="emoji" title=":dash:" alt=":dash:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f4a8.png" height="20" width="20" align="absmiddle"> Writing Fast Ruby <img class="emoji" title=":heart_eyes:" alt=":heart_eyes:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f60d.png" height="20" width="20" align="absmiddle"> —— Collect Common Ruby idioms.
|
942
|
+
</p>
|
943
|
+
|
944
|
+
<p class="repo-list-meta">
|
945
|
+
Ruby
|
946
|
+
|
947
|
+
•
|
948
|
+
|
949
|
+
12 stars today
|
21
950
|
|
951
|
+
|
952
|
+
•
|
953
|
+
Built by
|
954
|
+
<a href="/JuanitoFatas/fast-ruby/graphs/contributors">
|
955
|
+
<img alt="Juanito Fatas" class="avatar" data-user="1000669" height="20" src="https://avatars3.githubusercontent.com/u/1000669?v=3&s=40" title="JuanitoFatas" width="20" />
|
956
|
+
<img alt="Nicolas Meylan" class="avatar" data-user="1909074" height="20" src="https://avatars0.githubusercontent.com/u/1909074?v=3&s=40" title="nmeylan" width="20" />
|
957
|
+
<img alt="DamirSvrtan" class="avatar" data-user="1437202" height="20" src="https://avatars0.githubusercontent.com/u/1437202?v=3&s=40" title="DamirSvrtan" width="20" />
|
958
|
+
<img alt="Skye Shaw" class="avatar" data-user="17570" height="20" src="https://avatars3.githubusercontent.com/u/17570?v=3&s=40" title="sshaw" width="20" />
|
959
|
+
<img alt="Mathias Jean Johansen" class="avatar" data-user="233988" height="20" src="https://avatars0.githubusercontent.com/u/233988?v=3&s=40" title="majjoha" width="20" />
|
960
|
+
</a>
|
961
|
+
</p>
|
962
|
+
</li>
|
22
963
|
|
23
|
-
|
24
|
-
|
25
|
-
<meta name="selected-link" value="trending_repositories" data-pjax-transient />
|
26
|
-
<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="collector-cdn.github.com" name="octolytics-script-host" /><meta content="github" name="octolytics-app-id" /><meta content="7967E51B:1FA6:26E1E3AC:526AB450" name="octolytics-dimension-request_id" /><meta content="458986" name="octolytics-actor-id" /><meta content="ramtiga" name="octolytics-actor-login" /><meta content="49b58180f657152773733fd724173d935ff09b37191560734c24ade5ca527a1a" name="octolytics-actor-hash" />
|
964
|
+
<li class="repo-list-item" id="pa-github-awards">
|
965
|
+
<div class="repo-list-stats">
|
27
966
|
|
967
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
968
|
+
|
969
|
+
<form accept-charset="UTF-8" action="/vdaubry/github-awards/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="5j0/yZDm4mj1E5eDKKcroyeGmGMGhRQtuZHO8cAN2cCzZTMeODGNSddO4cD2xBX4RInuFipXTB6y6oDuHiRWMg==" /></div>
|
970
|
+
<button
|
971
|
+
class="minibutton js-toggler-target"
|
972
|
+
aria-label="Unstar this repository" title="Unstar vdaubry/github-awards">
|
973
|
+
<span class="octicon octicon-star"></span>
|
974
|
+
Unstar
|
975
|
+
</button>
|
976
|
+
</form>
|
977
|
+
<form accept-charset="UTF-8" action="/vdaubry/github-awards/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="7KrGmGJwjOD19qCMn1EoJdclNETAqiOSC+sdquigAYVM3C9HZ48g82jG8TrimdtLcrWLlsOshz5z1WoxTeIT5A==" /></div>
|
978
|
+
<button
|
979
|
+
class="minibutton js-toggler-target"
|
980
|
+
aria-label="Star this repository" title="Star vdaubry/github-awards">
|
981
|
+
<span class="octicon octicon-star"></span>
|
982
|
+
Star
|
983
|
+
</button>
|
984
|
+
</form> </div>
|
985
|
+
|
986
|
+
</div>
|
987
|
+
|
988
|
+
<h3 class="repo-list-name">
|
989
|
+
<a href="/vdaubry/github-awards">
|
990
|
+
<span class="prefix">vdaubry</span>
|
991
|
+
<span class="slash">/</span>
|
992
|
+
github-awards
|
993
|
+
</a> </h3>
|
994
|
+
|
995
|
+
<p class="repo-list-description">
|
996
|
+
Discover your ranking on github :
|
997
|
+
</p>
|
998
|
+
|
999
|
+
<p class="repo-list-meta">
|
1000
|
+
Ruby
|
1001
|
+
|
1002
|
+
•
|
1003
|
+
|
1004
|
+
13 stars today
|
28
1005
|
|
29
1006
|
|
1007
|
+
•
|
1008
|
+
Built by
|
1009
|
+
<a href="/vdaubry/github-awards/graphs/contributors">
|
1010
|
+
<img alt="vincent daubry" class="avatar" data-user="498298" height="20" src="https://avatars0.githubusercontent.com/u/498298?v=3&s=40" title="vdaubry" width="20" />
|
1011
|
+
<img alt="Nat Zimmermann" class="avatar" data-user="3888578" height="20" src="https://avatars2.githubusercontent.com/u/3888578?v=3&s=40" title="natzim" width="20" />
|
1012
|
+
<img alt="Dennis Heckman" class="avatar" data-user="235116" height="20" src="https://avatars1.githubusercontent.com/u/235116?v=3&s=40" title="denheck" width="20" />
|
1013
|
+
<img alt="Chris Missal" class="avatar" data-user="67798" height="20" src="https://avatars2.githubusercontent.com/u/67798?v=3&s=40" title="ChrisMissal" width="20" />
|
1014
|
+
<img alt="David Leuliette" class="avatar" data-user="360936" height="20" src="https://avatars0.githubusercontent.com/u/360936?v=3&s=40" title="flexbox" width="20" />
|
1015
|
+
</a>
|
1016
|
+
</p>
|
1017
|
+
</li>
|
1018
|
+
|
1019
|
+
<li class="repo-list-item" id="pa-react-rails">
|
1020
|
+
<div class="repo-list-stats">
|
30
1021
|
|
31
|
-
|
1022
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1023
|
+
|
1024
|
+
<form accept-charset="UTF-8" action="/reactjs/react-rails/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="CJ7ZG8XsW2+ZoB3TPV87lP2C7x0z9E8Kf2rTBK5UYpqbRtO2FmiZ0fCN10Xwgf67+Nt3LZaMbIUHTA3VxEdopw==" /></div>
|
1025
|
+
<button
|
1026
|
+
class="minibutton js-toggler-target"
|
1027
|
+
aria-label="Unstar this repository" title="Unstar reactjs/react-rails">
|
1028
|
+
<span class="octicon octicon-star"></span>
|
1029
|
+
Unstar
|
1030
|
+
</button>
|
1031
|
+
</form>
|
1032
|
+
<form accept-charset="UTF-8" action="/reactjs/react-rails/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="B6vHCNiTVilP68nHa/4SECumw2ErKv6LZx+XrUW8u/mhW1xDR6e4nkt6Y0jk7VJW37UN1UzLlTka7CmIpmuqrA==" /></div>
|
1033
|
+
<button
|
1034
|
+
class="minibutton js-toggler-target"
|
1035
|
+
aria-label="Star this repository" title="Star reactjs/react-rails">
|
1036
|
+
<span class="octicon octicon-star"></span>
|
1037
|
+
Star
|
1038
|
+
</button>
|
1039
|
+
</form> </div>
|
32
1040
|
|
33
|
-
|
34
|
-
|
1041
|
+
</div>
|
1042
|
+
|
1043
|
+
<h3 class="repo-list-name">
|
1044
|
+
<a href="/reactjs/react-rails">
|
1045
|
+
<span class="prefix">reactjs</span>
|
1046
|
+
<span class="slash">/</span>
|
1047
|
+
react-rails
|
1048
|
+
</a> </h3>
|
1049
|
+
|
1050
|
+
<p class="repo-list-description">
|
1051
|
+
Ruby gem for automatically transforming JSX and using React in Rails.
|
1052
|
+
</p>
|
1053
|
+
|
1054
|
+
<p class="repo-list-meta">
|
1055
|
+
Ruby
|
1056
|
+
|
1057
|
+
•
|
1058
|
+
|
1059
|
+
13 stars today
|
35
1060
|
|
36
|
-
<link href="https://github.global.ssl.fastly.net/assets/github-dfcee7b927f1abff62f05bf200dc06f74af4151e.css" media="all" rel="stylesheet" type="text/css" />
|
37
|
-
<link href="https://github.global.ssl.fastly.net/assets/github2-f2c706d8f7f5150d85930657a814320eea559d92.css" media="all" rel="stylesheet" type="text/css" />
|
38
1061
|
|
1062
|
+
•
|
1063
|
+
Built by
|
1064
|
+
<a href="/reactjs/react-rails/graphs/contributors">
|
1065
|
+
<img alt="Paul O’Shannessy" class="avatar" data-user="8445" height="20" src="https://avatars3.githubusercontent.com/u/8445?v=3&s=40" title="zpao" width="20" />
|
1066
|
+
<img alt="Jakub Malinowski" class="avatar" data-user="645127" height="20" src="https://avatars1.githubusercontent.com/u/645127?v=3&s=40" title="jakubmal" width="20" />
|
1067
|
+
<img alt="Alec Hipshear" class="avatar" data-user="2135" height="20" src="https://avatars2.githubusercontent.com/u/2135?v=3&s=40" title="xionon" width="20" />
|
1068
|
+
<img alt="Robert Mosolgo" class="avatar" data-user="2231765" height="20" src="https://avatars3.githubusercontent.com/u/2231765?v=3&s=40" title="rmosolgo" width="20" />
|
1069
|
+
<img alt="William Meleyal" class="avatar" data-user="15045" height="20" src="https://avatars1.githubusercontent.com/u/15045?v=3&s=40" title="meleyal" width="20" />
|
1070
|
+
</a>
|
1071
|
+
</p>
|
1072
|
+
</li>
|
39
1073
|
|
1074
|
+
<li class="repo-list-item" id="pa-rails">
|
1075
|
+
<div class="repo-list-stats">
|
40
1076
|
|
1077
|
+
<div class="js-toggler-container js-social-container starring-container on">
|
1078
|
+
|
1079
|
+
<form accept-charset="UTF-8" action="/rails/rails/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="uwui9Taa1vjjd2U0nxrTNoqz7/hTnOmLmvqAkeYCu4g0nJaFpXUgGnOBWxxOEGlRRbl9kyKfUyvZpAwz7L+xuA==" /></div>
|
1080
|
+
<button
|
1081
|
+
class="minibutton js-toggler-target"
|
1082
|
+
aria-label="Unstar this repository" title="Unstar rails/rails">
|
1083
|
+
<span class="octicon octicon-star"></span>
|
1084
|
+
Unstar
|
1085
|
+
</button>
|
1086
|
+
</form>
|
1087
|
+
<form accept-charset="UTF-8" action="/rails/rails/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="ns5ddpftNxG/TMXULugT+myjK1IEmXCtVU1vArFz8FuSaieN+Xq93v2jnnFy6c2Tt5pchp/+K07sJjY6F1NSHw==" /></div>
|
1088
|
+
<button
|
1089
|
+
class="minibutton js-toggler-target"
|
1090
|
+
aria-label="Star this repository" title="Star rails/rails">
|
1091
|
+
<span class="octicon octicon-star"></span>
|
1092
|
+
Star
|
1093
|
+
</button>
|
1094
|
+
</form> </div>
|
41
1095
|
|
42
|
-
|
43
|
-
<script src="https://github.global.ssl.fastly.net/assets/github-b95719cc70778f3aa390bac0733a59cde989c286.js" type="text/javascript"></script>
|
44
|
-
|
45
|
-
<meta http-equiv="x-pjax-version" content="5142cb1d095437dc03e2ef3b28150048">
|
1096
|
+
</div>
|
46
1097
|
|
47
|
-
|
48
|
-
|
1098
|
+
<h3 class="repo-list-name">
|
1099
|
+
<a href="/rails/rails">
|
1100
|
+
<span class="prefix">rails</span>
|
1101
|
+
<span class="slash">/</span>
|
1102
|
+
rails
|
1103
|
+
</a> </h3>
|
49
1104
|
|
1105
|
+
<p class="repo-list-description">
|
1106
|
+
Ruby on Rails
|
1107
|
+
</p>
|
50
1108
|
|
51
|
-
<
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
1109
|
+
<p class="repo-list-meta">
|
1110
|
+
Ruby
|
56
1111
|
|
1112
|
+
•
|
57
1113
|
|
58
|
-
|
59
|
-
<div class="container clearfix">
|
1114
|
+
10 stars today
|
60
1115
|
|
61
|
-
|
62
|
-
|
63
|
-
|
1116
|
+
|
1117
|
+
•
|
1118
|
+
Built by
|
1119
|
+
<a href="/rails/rails/graphs/contributors">
|
1120
|
+
<img alt="Aaron Patterson" class="avatar" data-user="3124" height="20" src="https://avatars1.githubusercontent.com/u/3124?v=3&s=40" title="tenderlove" width="20" />
|
1121
|
+
<img alt="David Heinemeier Hansson" class="avatar" data-user="2741" height="20" src="https://avatars3.githubusercontent.com/u/2741?v=3&s=40" title="dhh" width="20" />
|
1122
|
+
<img alt="Jeremy Kemper" class="avatar" data-user="199" height="20" src="https://avatars3.githubusercontent.com/u/199?v=3&s=40" title="jeremy" width="20" />
|
1123
|
+
<img alt="Rafael Mendonça França" class="avatar" data-user="47848" height="20" src="https://avatars1.githubusercontent.com/u/47848?v=3&s=40" title="rafaelfranca" width="20" />
|
1124
|
+
<img alt="José Valim" class="avatar" data-user="9582" height="20" src="https://avatars3.githubusercontent.com/u/9582?v=3&s=40" title="josevalim" width="20" />
|
1125
|
+
</a>
|
1126
|
+
</p>
|
1127
|
+
</li>
|
64
1128
|
|
1129
|
+
<li class="repo-list-item" id="pa-spree">
|
1130
|
+
<div class="repo-list-stats">
|
65
1131
|
|
66
|
-
|
67
|
-
|
68
|
-
|
1132
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1133
|
+
|
1134
|
+
<form accept-charset="UTF-8" action="/spree/spree/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="J2mQcVzh4JfiplzoqupecCDqsdzM+OXGB2NcSxNcMIFYoy60Dl5+cMCfnARtlbuZz9aj0NP/VBftB840LIpxRg==" /></div>
|
1135
|
+
<button
|
1136
|
+
class="minibutton js-toggler-target"
|
1137
|
+
aria-label="Unstar this repository" title="Unstar spree/spree">
|
1138
|
+
<span class="octicon octicon-star"></span>
|
1139
|
+
Unstar
|
1140
|
+
</button>
|
1141
|
+
</form>
|
1142
|
+
<form accept-charset="UTF-8" action="/spree/spree/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="7UhHXTu9y9fs5b/JHWfFfnPcfgm7WKaGsVM4Md1t0SjkqVMvy3FfICF0vk4KdEDir272Z2nYkxfysacGu4aIOg==" /></div>
|
1143
|
+
<button
|
1144
|
+
class="minibutton js-toggler-target"
|
1145
|
+
aria-label="Star this repository" title="Star spree/spree">
|
1146
|
+
<span class="octicon octicon-star"></span>
|
1147
|
+
Star
|
1148
|
+
</button>
|
1149
|
+
</form> </div>
|
69
1150
|
|
70
|
-
|
71
|
-
<form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get">
|
1151
|
+
</div>
|
72
1152
|
|
73
|
-
<
|
74
|
-
|
75
|
-
|
76
|
-
|
1153
|
+
<h3 class="repo-list-name">
|
1154
|
+
<a href="/spree/spree">
|
1155
|
+
<span class="prefix">spree</span>
|
1156
|
+
<span class="slash">/</span>
|
1157
|
+
spree
|
1158
|
+
</a> </h3>
|
77
1159
|
|
1160
|
+
<p class="repo-list-description">
|
1161
|
+
Spree is a complete open source e-commerce solution for Ruby on Rails.
|
1162
|
+
</p>
|
78
1163
|
|
79
|
-
<
|
80
|
-
|
81
|
-
|
1164
|
+
<p class="repo-list-meta">
|
1165
|
+
Ruby
|
1166
|
+
|
1167
|
+
•
|
82
1168
|
|
1169
|
+
6 stars today
|
83
1170
|
|
84
|
-
|
1171
|
+
|
1172
|
+
•
|
1173
|
+
Built by
|
1174
|
+
<a href="/spree/spree/graphs/contributors">
|
1175
|
+
<img alt="Ryan Bigg" class="avatar" data-user="2687" height="20" src="https://avatars0.githubusercontent.com/u/2687?v=3&s=40" title="radar" width="20" />
|
1176
|
+
<img alt="Sean Schofield" class="avatar" data-user="85518" height="20" src="https://avatars3.githubusercontent.com/u/85518?v=3&s=40" title="schof" width="20" />
|
1177
|
+
<img alt="Trung Lê" class="avatar" data-user="135605" height="20" src="https://avatars0.githubusercontent.com/u/135605?v=3&s=40" title="joneslee85" width="20" />
|
1178
|
+
<img alt="Jeff Dutil" class="avatar" data-user="25104" height="20" src="https://avatars1.githubusercontent.com/u/25104?v=3&s=40" title="JDutil" width="20" />
|
1179
|
+
<img alt="Brian Quinn" class="avatar" data-user="22470" height="20" src="https://avatars0.githubusercontent.com/u/22470?v=3&s=40" title="BDQ" width="20" />
|
1180
|
+
</a>
|
1181
|
+
</p>
|
1182
|
+
</li>
|
85
1183
|
|
1184
|
+
<li class="repo-list-item" id="pa-switch_point">
|
1185
|
+
<div class="repo-list-stats">
|
1186
|
+
|
1187
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1188
|
+
|
1189
|
+
<form accept-charset="UTF-8" action="/eagletmt/switch_point/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="Tk15LbTkIYJmp/QYR0poBrNkzNfNhU7ZONrGxos+0ZPH/Ep/9rGGoXI1C1tK5N4k3gLqf9L46f/G/EnubxLt4Q==" /></div>
|
1190
|
+
<button
|
1191
|
+
class="minibutton js-toggler-target"
|
1192
|
+
aria-label="Unstar this repository" title="Unstar eagletmt/switch_point">
|
1193
|
+
<span class="octicon octicon-star"></span>
|
1194
|
+
Unstar
|
1195
|
+
</button>
|
86
1196
|
</form>
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
</
|
1197
|
+
<form accept-charset="UTF-8" action="/eagletmt/switch_point/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="k3UA6G5zAU+p4Hsq+gQlfm0N63m7OrXht8LSVJtZGEYhAH1uS1vt/LaIiaF5DIjUqci1t2vp4ZfhxIgObVn/ww==" /></div>
|
1198
|
+
<button
|
1199
|
+
class="minibutton js-toggler-target"
|
1200
|
+
aria-label="Star this repository" title="Star eagletmt/switch_point">
|
1201
|
+
<span class="octicon octicon-star"></span>
|
1202
|
+
Star
|
1203
|
+
</button>
|
1204
|
+
</form> </div>
|
1205
|
+
|
1206
|
+
</div>
|
94
1207
|
|
1208
|
+
<h3 class="repo-list-name">
|
1209
|
+
<a href="/eagletmt/switch_point">
|
1210
|
+
<span class="prefix">eagletmt</span>
|
1211
|
+
<span class="slash">/</span>
|
1212
|
+
switch_point
|
1213
|
+
</a> </h3>
|
1214
|
+
|
1215
|
+
<p class="repo-list-description">
|
1216
|
+
Switching database connection between readonly one and writable one
|
1217
|
+
</p>
|
1218
|
+
|
1219
|
+
<p class="repo-list-meta">
|
1220
|
+
Ruby
|
1221
|
+
|
1222
|
+
•
|
1223
|
+
|
1224
|
+
11 stars today
|
1225
|
+
|
1226
|
+
|
1227
|
+
•
|
1228
|
+
Built by
|
1229
|
+
<a href="/eagletmt/switch_point/graphs/contributors">
|
1230
|
+
<img alt="Kohei Suzuki" class="avatar" data-user="69755" height="20" src="https://avatars1.githubusercontent.com/u/69755?v=3&s=40" title="eagletmt" width="20" />
|
1231
|
+
<img alt="Ryoichi SEKIGUCHI" class="avatar" data-user="192008" height="20" src="https://avatars3.githubusercontent.com/u/192008?v=3&s=40" title="ryopeko" width="20" />
|
1232
|
+
<img alt="Shota Fukumori" class="avatar" data-user="29440" height="20" src="https://avatars2.githubusercontent.com/u/29440?v=3&s=40" title="sorah" width="20" />
|
1233
|
+
</a>
|
1234
|
+
</p>
|
1235
|
+
</li>
|
1236
|
+
|
1237
|
+
<li class="repo-list-item" id="pa-grape">
|
1238
|
+
<div class="repo-list-stats">
|
95
1239
|
|
1240
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1241
|
+
|
1242
|
+
<form accept-charset="UTF-8" action="/intridea/grape/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="KfTHSPsHX+S8XcwQKVnmqzXt9L1jOORz6l6aSZha1ZWSxtHXDs8vZT6UiCWUX3MFOxTZwgtCFtqu5GYXi0vH+A==" /></div>
|
1243
|
+
<button
|
1244
|
+
class="minibutton js-toggler-target"
|
1245
|
+
aria-label="Unstar this repository" title="Unstar intridea/grape">
|
1246
|
+
<span class="octicon octicon-star"></span>
|
1247
|
+
Unstar
|
1248
|
+
</button>
|
1249
|
+
</form>
|
1250
|
+
<form accept-charset="UTF-8" action="/intridea/grape/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="sS5dx1bgjCTIbenuhCMSDCQiqV8QhdlCO2pJLpHX+AOtKG7rhj8HsziPBWofQ3KK4eS2LlicFNpD4OFo91QSng==" /></div>
|
1251
|
+
<button
|
1252
|
+
class="minibutton js-toggler-target"
|
1253
|
+
aria-label="Star this repository" title="Star intridea/grape">
|
1254
|
+
<span class="octicon octicon-star"></span>
|
1255
|
+
Star
|
1256
|
+
</button>
|
1257
|
+
</form> </div>
|
96
1258
|
|
1259
|
+
</div>
|
97
1260
|
|
98
|
-
<
|
99
|
-
<
|
100
|
-
<
|
101
|
-
|
102
|
-
|
103
|
-
|
1261
|
+
<h3 class="repo-list-name">
|
1262
|
+
<a href="/intridea/grape">
|
1263
|
+
<span class="prefix">intridea</span>
|
1264
|
+
<span class="slash">/</span>
|
1265
|
+
grape
|
1266
|
+
</a> </h3>
|
1267
|
+
|
1268
|
+
<p class="repo-list-description">
|
1269
|
+
An opinionated micro-framework for creating REST-like APIs in Ruby.
|
1270
|
+
</p>
|
1271
|
+
|
1272
|
+
<p class="repo-list-meta">
|
1273
|
+
Ruby
|
1274
|
+
|
1275
|
+
•
|
1276
|
+
|
1277
|
+
10 stars today
|
104
1278
|
|
105
|
-
|
106
|
-
|
107
|
-
|
1279
|
+
|
1280
|
+
•
|
1281
|
+
Built by
|
1282
|
+
<a href="/intridea/grape/graphs/contributors">
|
1283
|
+
<img alt="Daniel Doubrovkine (dB.) @dblockdotorg" class="avatar" data-user="542335" height="20" src="https://avatars2.githubusercontent.com/u/542335?v=3&s=40" title="dblock" width="20" />
|
1284
|
+
<img alt="Michael Bleigh" class="avatar" data-user="1022" height="20" src="https://avatars2.githubusercontent.com/u/1022?v=3&s=40" title="mbleigh" width="20" />
|
1285
|
+
<img alt="Jerry Cheung" class="avatar" data-user="19874" height="20" src="https://avatars3.githubusercontent.com/u/19874?v=3&s=40" title="jch" width="20" />
|
1286
|
+
<img alt="niedhui" class="avatar" data-user="66329" height="20" src="https://avatars2.githubusercontent.com/u/66329?v=3&s=40" title="niedhui" width="20" />
|
1287
|
+
<img alt="Adam Gotterer" class="avatar" data-user="223498" height="20" src="https://avatars0.githubusercontent.com/u/223498?v=3&s=40" title="adamgotterer" width="20" />
|
108
1288
|
</a>
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
1289
|
+
</p>
|
1290
|
+
</li>
|
1291
|
+
|
1292
|
+
<li class="repo-list-item" id="pa-metasploit-framework">
|
1293
|
+
<div class="repo-list-stats">
|
1294
|
+
|
1295
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1296
|
+
|
1297
|
+
<form accept-charset="UTF-8" action="/rapid7/metasploit-framework/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="92Q62ngNtWUaYZ8pcwznai4Cjy2u8vmL+sMqhnQcAZHsow9M3N9iiSBYCRBhgjsnq1LH/uy83kNvn3jCEU4s5Q==" /></div>
|
1298
|
+
<button
|
1299
|
+
class="minibutton js-toggler-target"
|
1300
|
+
aria-label="Unstar this repository" title="Unstar rapid7/metasploit-framework">
|
1301
|
+
<span class="octicon octicon-star"></span>
|
1302
|
+
Unstar
|
1303
|
+
</button>
|
1304
|
+
</form>
|
1305
|
+
<form accept-charset="UTF-8" action="/rapid7/metasploit-framework/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="JHmaDpQPez/m2FtiWOG64aTmJoZ42FgvOUtp9Fx1nkn6a7acorC2+KY1pATXvgaCFTOSNff7KDsJv57RHpmzBA==" /></div>
|
1306
|
+
<button
|
1307
|
+
class="minibutton js-toggler-target"
|
1308
|
+
aria-label="Star this repository" title="Star rapid7/metasploit-framework">
|
1309
|
+
<span class="octicon octicon-star"></span>
|
1310
|
+
Star
|
1311
|
+
</button>
|
1312
|
+
</form> </div>
|
1313
|
+
|
1314
|
+
</div>
|
1315
|
+
|
1316
|
+
<h3 class="repo-list-name">
|
1317
|
+
<a href="/rapid7/metasploit-framework">
|
1318
|
+
<span class="prefix">rapid7</span>
|
1319
|
+
<span class="slash">/</span>
|
1320
|
+
metasploit-framework
|
1321
|
+
</a> </h3>
|
1322
|
+
|
1323
|
+
<p class="repo-list-description">
|
1324
|
+
Metasploit Framework
|
1325
|
+
</p>
|
1326
|
+
|
1327
|
+
<p class="repo-list-meta">
|
1328
|
+
Ruby
|
1329
|
+
|
1330
|
+
•
|
1331
|
+
|
1332
|
+
7 stars today
|
1333
|
+
|
1334
|
+
|
1335
|
+
•
|
1336
|
+
Built by
|
1337
|
+
<a href="/rapid7/metasploit-framework/graphs/contributors">
|
1338
|
+
<img alt="Patrick Webster" class="avatar" data-user="1175434" height="20" src="https://avatars1.githubusercontent.com/u/1175434?v=3&s=40" title="aushack" width="20" />
|
1339
|
+
<img alt="Stephen Fewer" class="avatar" data-user="1172185" height="20" src="https://avatars3.githubusercontent.com/u/1172185?v=3&s=40" title="stephenfewer" width="20" />
|
1340
|
+
<img alt="Ramon de C Valle" class="avatar" data-user="3988004" height="20" src="https://avatars3.githubusercontent.com/u/3988004?v=3&s=40" title="rcvalle" width="20" />
|
1341
|
+
<img alt="Tab Assassin" class="avatar" data-user="4990957" height="20" src="https://avatars1.githubusercontent.com/u/4990957?v=3&s=40" title="tabassassin" width="20" />
|
1342
|
+
<img alt="Meatballs1" class="avatar" data-user="1854557" height="20" src="https://avatars1.githubusercontent.com/u/1854557?v=3&s=40" title="Meatballs1" width="20" />
|
117
1343
|
</a>
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
1344
|
+
</p>
|
1345
|
+
</li>
|
1346
|
+
|
1347
|
+
<li class="repo-list-item" id="pa-gitlabhq">
|
1348
|
+
<div class="repo-list-stats">
|
1349
|
+
|
1350
|
+
<div class="js-toggler-container js-social-container starring-container on">
|
1351
|
+
|
1352
|
+
<form accept-charset="UTF-8" action="/gitlabhq/gitlabhq/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="rTuTo4SuquokAfOSQ1VC4C76coRl8NHekKgWGphQ1wPhTEB4v+SD1KcFKkzI0yGgE6T2v0ANO1COOnNynmFvjQ==" /></div>
|
1353
|
+
<button
|
1354
|
+
class="minibutton js-toggler-target"
|
1355
|
+
aria-label="Unstar this repository" title="Unstar gitlabhq/gitlabhq">
|
1356
|
+
<span class="octicon octicon-star"></span>
|
1357
|
+
Unstar
|
1358
|
+
</button>
|
1359
|
+
</form>
|
1360
|
+
<form accept-charset="UTF-8" action="/gitlabhq/gitlabhq/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="3+onth6ESRXYsN4ndPHiRV/L34EqV4sDTdbDcCvjDPy7QVjilhE+RP16SGaVbH7OFxn10YwYCI6/rkgbUjo1Sg==" /></div>
|
1361
|
+
<button
|
1362
|
+
class="minibutton js-toggler-target"
|
1363
|
+
aria-label="Star this repository" title="Star gitlabhq/gitlabhq">
|
1364
|
+
<span class="octicon octicon-star"></span>
|
1365
|
+
Star
|
1366
|
+
</button>
|
1367
|
+
</form> </div>
|
1368
|
+
|
1369
|
+
</div>
|
1370
|
+
|
1371
|
+
<h3 class="repo-list-name">
|
1372
|
+
<a href="/gitlabhq/gitlabhq">
|
1373
|
+
<span class="prefix">gitlabhq</span>
|
1374
|
+
<span class="slash">/</span>
|
1375
|
+
gitlabhq
|
1376
|
+
</a> </h3>
|
1377
|
+
|
1378
|
+
<p class="repo-list-description">
|
1379
|
+
GitLab is version control for your server
|
1380
|
+
</p>
|
1381
|
+
|
1382
|
+
<p class="repo-list-meta">
|
1383
|
+
Ruby
|
1384
|
+
|
1385
|
+
•
|
1386
|
+
|
1387
|
+
8 stars today
|
1388
|
+
|
1389
|
+
|
1390
|
+
•
|
1391
|
+
Built by
|
1392
|
+
<a href="/gitlabhq/gitlabhq/graphs/contributors">
|
1393
|
+
<img alt="Dmitriy Zaporozhets" class="avatar" data-user="305940" height="20" src="https://avatars1.githubusercontent.com/u/305940?v=3&s=40" title="randx" width="20" />
|
1394
|
+
<img alt="Sytse Sijbrandij" class="avatar" data-user="22061" height="20" src="https://avatars1.githubusercontent.com/u/22061?v=3&s=40" title="dosire" width="20" />
|
1395
|
+
<img alt="Marin Jankovski" class="avatar" data-user="819559" height="20" src="https://avatars1.githubusercontent.com/u/819559?v=3&s=40" title="maxlazio" width="20" />
|
1396
|
+
<img alt="Jacob Vosmaer" class="avatar" data-user="1336311" height="20" src="https://avatars3.githubusercontent.com/u/1336311?v=3&s=40" title="jacobvosmaer" width="20" />
|
1397
|
+
<img alt="Valeriy Sizov" class="avatar" data-user="417636" height="20" src="https://avatars3.githubusercontent.com/u/417636?v=3&s=40" title="vsizov" width="20" />
|
122
1398
|
</a>
|
123
|
-
|
1399
|
+
</p>
|
1400
|
+
</li>
|
124
1401
|
|
125
|
-
|
1402
|
+
<li class="repo-list-item" id="pa-devise">
|
1403
|
+
<div class="repo-list-stats">
|
1404
|
+
|
1405
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1406
|
+
|
1407
|
+
<form accept-charset="UTF-8" action="/plataformatec/devise/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="E/I+IwukRfPyqukD5wYLapjbuJ60AMLGEa78ZSD2HVXJbLPRAckljxZJbovMh+la25tmb5hTtNlk9C2qB+fyYg==" /></div>
|
1408
|
+
<button
|
1409
|
+
class="minibutton js-toggler-target"
|
1410
|
+
aria-label="Unstar this repository" title="Unstar plataformatec/devise">
|
1411
|
+
<span class="octicon octicon-star"></span>
|
1412
|
+
Unstar
|
1413
|
+
</button>
|
1414
|
+
</form>
|
1415
|
+
<form accept-charset="UTF-8" action="/plataformatec/devise/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="qAFxr531yKrk3LJxvpDLfE6zJglrgmvc7jm1HglfV1M013EISlR43hhbQITCz6doHENAUhHM9euZNEVZ+7sOfQ==" /></div>
|
1416
|
+
<button
|
1417
|
+
class="minibutton js-toggler-target"
|
1418
|
+
aria-label="Star this repository" title="Star plataformatec/devise">
|
1419
|
+
<span class="octicon octicon-star"></span>
|
1420
|
+
Star
|
1421
|
+
</button>
|
1422
|
+
</form> </div>
|
126
1423
|
|
127
|
-
|
128
|
-
|
1424
|
+
</div>
|
129
1425
|
|
130
|
-
<
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
</li>
|
1426
|
+
<h3 class="repo-list-name">
|
1427
|
+
<a href="/plataformatec/devise">
|
1428
|
+
<span class="prefix">plataformatec</span>
|
1429
|
+
<span class="slash">/</span>
|
1430
|
+
devise
|
1431
|
+
</a> </h3>
|
137
1432
|
|
1433
|
+
<p class="repo-list-description">
|
1434
|
+
Flexible authentication solution for Rails with Warden.
|
1435
|
+
</p>
|
138
1436
|
|
1437
|
+
<p class="repo-list-meta">
|
1438
|
+
Ruby
|
139
1439
|
|
140
|
-
|
1440
|
+
•
|
141
1441
|
|
142
|
-
|
1442
|
+
8 stars today
|
143
1443
|
|
1444
|
+
|
1445
|
+
•
|
1446
|
+
Built by
|
1447
|
+
<a href="/plataformatec/devise/graphs/contributors">
|
1448
|
+
<img alt="José Valim" class="avatar" data-user="9582" height="20" src="https://avatars3.githubusercontent.com/u/9582?v=3&s=40" title="josevalim" width="20" />
|
1449
|
+
<img alt="Carlos Antonio da Silva" class="avatar" data-user="26328" height="20" src="https://avatars3.githubusercontent.com/u/26328?v=3&s=40" title="carlosantoniodasilva" width="20" />
|
1450
|
+
<img alt="Lucas Mazza" class="avatar" data-user="80978" height="20" src="https://avatars2.githubusercontent.com/u/80978?v=3&s=40" title="lucasmazza" width="20" />
|
1451
|
+
<img alt="Vasiliy Ermolovich" class="avatar" data-user="200500" height="20" src="https://avatars1.githubusercontent.com/u/200500?v=3&s=40" title="nashby" width="20" />
|
1452
|
+
<img alt="Rafael Mendonça França" class="avatar" data-user="47848" height="20" src="https://avatars1.githubusercontent.com/u/47848?v=3&s=40" title="rafaelfranca" width="20" />
|
1453
|
+
</a>
|
1454
|
+
</p>
|
1455
|
+
</li>
|
144
1456
|
|
1457
|
+
<li class="repo-list-item" id="pa-devdocs">
|
1458
|
+
<div class="repo-list-stats">
|
145
1459
|
|
1460
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1461
|
+
|
1462
|
+
<form accept-charset="UTF-8" action="/Thibaut/devdocs/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="7xHcD8Hrmezrb3DS2NVS4LrIZL0Uu1q17AwTJNYHpAHc4D/tJ+2Tz6QXZwfmmjwHA4napozXzCINuP7SK+ZIIQ==" /></div>
|
1463
|
+
<button
|
1464
|
+
class="minibutton js-toggler-target"
|
1465
|
+
aria-label="Unstar this repository" title="Unstar Thibaut/devdocs">
|
1466
|
+
<span class="octicon octicon-star"></span>
|
1467
|
+
Unstar
|
1468
|
+
</button>
|
1469
|
+
</form>
|
1470
|
+
<form accept-charset="UTF-8" action="/Thibaut/devdocs/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="kfjWMvcuFyIx8ktG0FVdrfWWLA0R27eP1ceZfjjWe2V3bhy8LOHtV1e5e7InY9LZ3cXgL5O5v/5iXfgQF9OixA==" /></div>
|
1471
|
+
<button
|
1472
|
+
class="minibutton js-toggler-target"
|
1473
|
+
aria-label="Star this repository" title="Star Thibaut/devdocs">
|
1474
|
+
<span class="octicon octicon-star"></span>
|
1475
|
+
Star
|
1476
|
+
</button>
|
1477
|
+
</form> </div>
|
1478
|
+
|
146
1479
|
</div>
|
147
|
-
</div>
|
148
1480
|
|
149
|
-
|
1481
|
+
<h3 class="repo-list-name">
|
1482
|
+
<a href="/Thibaut/devdocs">
|
1483
|
+
<span class="prefix">Thibaut</span>
|
1484
|
+
<span class="slash">/</span>
|
1485
|
+
devdocs
|
1486
|
+
</a> </h3>
|
150
1487
|
|
151
|
-
|
1488
|
+
<p class="repo-list-description">
|
1489
|
+
API Documentation Browser
|
1490
|
+
</p>
|
152
1491
|
|
1492
|
+
<p class="repo-list-meta">
|
1493
|
+
Ruby
|
153
1494
|
|
1495
|
+
•
|
154
1496
|
|
1497
|
+
9 stars today
|
155
1498
|
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
1499
|
+
|
1500
|
+
•
|
1501
|
+
Built by
|
1502
|
+
<a href="/Thibaut/devdocs/graphs/contributors">
|
1503
|
+
<img alt="Thibaut Courouble" class="avatar" data-user="17579" height="20" src="https://avatars1.githubusercontent.com/u/17579?v=3&s=40" title="Thibaut" width="20" />
|
1504
|
+
<img alt="Romeo Van Snick" class="avatar" data-user="1250185" height="20" src="https://avatars0.githubusercontent.com/u/1250185?v=3&s=40" title="romeovs" width="20" />
|
1505
|
+
<img alt="Semenyk Dmitriy" class="avatar" data-user="964084" height="20" src="https://avatars0.githubusercontent.com/u/964084?v=3&s=40" title="semenyukdmitriy" width="20" />
|
1506
|
+
<img alt="Deryck" class="avatar" data-user="6307088" height="20" src="https://avatars3.githubusercontent.com/u/6307088?v=3&s=40" title="dhenson02" width="20" />
|
1507
|
+
<img alt="Glandos" class="avatar" data-user="297578" height="20" src="https://avatars2.githubusercontent.com/u/297578?v=3&s=40" title="Glandos" width="20" />
|
1508
|
+
</a>
|
1509
|
+
</p>
|
1510
|
+
</li>
|
1511
|
+
|
1512
|
+
<li class="repo-list-item" id="pa-xcpretty">
|
1513
|
+
<div class="repo-list-stats">
|
1514
|
+
|
1515
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1516
|
+
|
1517
|
+
<form accept-charset="UTF-8" action="/supermarin/xcpretty/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="HQswgtzrjMhU1ufjjKFWcBx/SX1Q3FL/iMJlPS56V8aRYLC9qFcgKzABU6wBhX4iUA3kRGSOLqNXh3L1BtKzkg==" /></div>
|
1518
|
+
<button
|
1519
|
+
class="minibutton js-toggler-target"
|
1520
|
+
aria-label="Unstar this repository" title="Unstar supermarin/xcpretty">
|
1521
|
+
<span class="octicon octicon-star"></span>
|
1522
|
+
Unstar
|
1523
|
+
</button>
|
1524
|
+
</form>
|
1525
|
+
<form accept-charset="UTF-8" action="/supermarin/xcpretty/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="1nhrFrKk3L+Q7Da4b4tsZhxLuTN/ETi2ERyJlPbbHZAJwDi2wtdsl+kSDlgC8hJrQXYHfV+2N4K766Hneh59Tw==" /></div>
|
1526
|
+
<button
|
1527
|
+
class="minibutton js-toggler-target"
|
1528
|
+
aria-label="Star this repository" title="Star supermarin/xcpretty">
|
1529
|
+
<span class="octicon octicon-star"></span>
|
1530
|
+
Star
|
1531
|
+
</button>
|
1532
|
+
</form> </div>
|
160
1533
|
|
1534
|
+
</div>
|
161
1535
|
|
162
|
-
<
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
1536
|
+
<h3 class="repo-list-name">
|
1537
|
+
<a href="/supermarin/xcpretty">
|
1538
|
+
<span class="prefix">supermarin</span>
|
1539
|
+
<span class="slash">/</span>
|
1540
|
+
xcpretty
|
1541
|
+
</a> </h3>
|
1542
|
+
|
1543
|
+
<p class="repo-list-description">
|
1544
|
+
Flexible and fast xcodebuild formatter
|
1545
|
+
</p>
|
1546
|
+
|
1547
|
+
<p class="repo-list-meta">
|
1548
|
+
Ruby
|
1549
|
+
|
1550
|
+
•
|
1551
|
+
|
1552
|
+
9 stars today
|
1553
|
+
|
1554
|
+
|
1555
|
+
•
|
1556
|
+
Built by
|
1557
|
+
<a href="/supermarin/xcpretty/graphs/contributors">
|
1558
|
+
<img alt="Marin Usalj" class="avatar" data-user="627285" height="20" src="https://avatars1.githubusercontent.com/u/627285?v=3&s=40" title="supermarin" width="20" />
|
1559
|
+
<img alt="Delisa Mason" class="avatar" data-user="333454" height="20" src="https://avatars3.githubusercontent.com/u/333454?v=3&s=40" title="kattrali" width="20" />
|
1560
|
+
<img alt="Boris Bügling" class="avatar" data-user="118992" height="20" src="https://avatars2.githubusercontent.com/u/118992?v=3&s=40" title="neonichu" width="20" />
|
1561
|
+
<img alt="Norio Nomura" class="avatar" data-user="33430" height="20" src="https://avatars1.githubusercontent.com/u/33430?v=3&s=40" title="norio-nomura" width="20" />
|
1562
|
+
<img alt="Eloy Durán" class="avatar" data-user="2320" height="20" src="https://avatars1.githubusercontent.com/u/2320?v=3&s=40" title="alloy" width="20" />
|
1563
|
+
</a>
|
1564
|
+
</p>
|
1565
|
+
</li>
|
1566
|
+
|
1567
|
+
<li class="repo-list-item" id="pa-fpm">
|
1568
|
+
<div class="repo-list-stats">
|
169
1569
|
|
170
|
-
|
171
|
-
|
172
|
-
<
|
1570
|
+
<div class="js-toggler-container js-social-container starring-container ">
|
1571
|
+
|
1572
|
+
<form accept-charset="UTF-8" action="/jordansissel/fpm/unstar" class="js-toggler-form starred js-unstar-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="DLdPHiH0QPiKSKUCwU4HKa8wyQTUpXk/s688iY85hK1CkUYNaJLmsgcftzm4ii1aOnoq0HCgqTfjF+kD+m2nmA==" /></div>
|
1573
|
+
<button
|
1574
|
+
class="minibutton js-toggler-target"
|
1575
|
+
aria-label="Unstar this repository" title="Unstar jordansissel/fpm">
|
1576
|
+
<span class="octicon octicon-star"></span>
|
1577
|
+
Unstar
|
1578
|
+
</button>
|
1579
|
+
</form>
|
1580
|
+
<form accept-charset="UTF-8" action="/jordansissel/fpm/star" class="js-toggler-form unstarred js-star-button" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓" /><input name="authenticity_token" type="hidden" value="ZCu/fzXqWsY7n3cti25uJzCnaY0O8rlnOyE0MjcmwxPa/VuBemMDl6OT6OMIofcy7BT71YSc1pjyRRWzUqFYPA==" /></div>
|
1581
|
+
<button
|
1582
|
+
class="minibutton js-toggler-target"
|
1583
|
+
aria-label="Star this repository" title="Star jordansissel/fpm">
|
1584
|
+
<span class="octicon octicon-star"></span>
|
1585
|
+
Star
|
1586
|
+
</button>
|
1587
|
+
</form> </div>
|
1588
|
+
|
173
1589
|
</div>
|
174
|
-
</div><!-- /.pagehead -->
|
175
1590
|
|
176
|
-
<
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
1591
|
+
<h3 class="repo-list-name">
|
1592
|
+
<a href="/jordansissel/fpm">
|
1593
|
+
<span class="prefix">jordansissel</span>
|
1594
|
+
<span class="slash">/</span>
|
1595
|
+
fpm
|
1596
|
+
</a> </h3>
|
1597
|
+
|
1598
|
+
<p class="repo-list-description">
|
1599
|
+
Effing package management! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity.
|
1600
|
+
</p>
|
1601
|
+
|
1602
|
+
<p class="repo-list-meta">
|
1603
|
+
Ruby
|
1604
|
+
|
1605
|
+
•
|
1606
|
+
|
1607
|
+
7 stars today
|
1608
|
+
|
1609
|
+
|
1610
|
+
•
|
1611
|
+
Built by
|
1612
|
+
<a href="/jordansissel/fpm/graphs/contributors">
|
1613
|
+
<img alt="Jordan Sissel" class="avatar" data-user="131818" height="20" src="https://avatars0.githubusercontent.com/u/131818?v=3&s=40" title="jordansissel" width="20" />
|
1614
|
+
<img alt="Pranay Kanwar" class="avatar" data-user="629631" height="20" src="https://avatars0.githubusercontent.com/u/629631?v=3&s=40" title="r4um" width="20" />
|
1615
|
+
<img alt="Jeanine Adkisson" class="avatar" data-user="225017" height="20" src="https://avatars2.githubusercontent.com/u/225017?v=3&s=40" title="jneen" width="20" />
|
1616
|
+
<img alt="Jan Vansteenkiste" class="avatar" data-user="356719" height="20" src="https://avatars0.githubusercontent.com/u/356719?v=3&s=40" title="vStone" width="20" />
|
1617
|
+
<img alt="Aman Gupta" class="avatar" data-user="2567" height="20" src="https://avatars2.githubusercontent.com/u/2567?v=3&s=40" title="tmm1" width="20" />
|
1618
|
+
</a>
|
1619
|
+
</p>
|
1620
|
+
</li>
|
1621
|
+
|
1622
|
+
</ol>
|
1623
|
+
<div class="context-loader large-format-loader">
|
1624
|
+
<p><img alt="" height="64" src="https://assets-cdn.github.com/assets/spinners/octocat-spinner-128-338974454bb5c32803e82f601beb051d373744b024fe8742a76009700fd7e033.gif" width="64" /></p>
|
1625
|
+
<p>Loading…</p>
|
1626
|
+
</div>
|
1627
|
+
|
1628
|
+
</div>
|
1629
|
+
</div>
|
1630
|
+
<div class="column one-fourth">
|
1631
|
+
<ul class="filter-list small language-filter-list" data-pjax>
|
181
1632
|
<li>
|
182
|
-
|
1633
|
+
<a href="https://github.com/trending" class="filter-item ">All languages</a>
|
183
1634
|
</li>
|
184
1635
|
<li>
|
185
|
-
|
1636
|
+
<a href="https://github.com/trending?l=unknown" class="filter-item ">Unknown languages</a>
|
186
1637
|
</li>
|
187
1638
|
<li>
|
188
|
-
|
1639
|
+
<a href="https://github.com/trending?l=go" class="filter-item ">Go</a>
|
189
1640
|
</li>
|
190
1641
|
<li>
|
191
|
-
|
1642
|
+
<a href="https://github.com/trending?l=javascript" class="filter-item ">JavaScript</a>
|
192
1643
|
</li>
|
193
1644
|
<li>
|
194
|
-
|
1645
|
+
<a href="https://github.com/trending?l=perl" class="filter-item ">Perl</a>
|
195
1646
|
</li>
|
196
1647
|
<li>
|
197
|
-
|
1648
|
+
<a href="https://github.com/trending?l=python" class="filter-item ">Python</a>
|
198
1649
|
</li>
|
199
1650
|
<li>
|
200
|
-
|
201
|
-
|
202
|
-
</a> </li>
|
1651
|
+
<a href="https://github.com/trending" class="filter-item selected">Ruby</a>
|
1652
|
+
</li>
|
203
1653
|
<li>
|
204
|
-
|
1654
|
+
<a href="https://github.com/trending?l=bash" class="filter-item ">Shell</a>
|
205
1655
|
</li>
|
206
1656
|
<li>
|
207
|
-
|
1657
|
+
<a href="https://github.com/trending?l=vim" class="filter-item ">VimL</a>
|
208
1658
|
</li>
|
209
1659
|
</ul>
|
210
1660
|
|
211
|
-
<div class="select-menu js-menu-container js-select-menu
|
212
|
-
<span class="minibutton select-menu-button js-menu-target">
|
1661
|
+
<div class="select-menu js-menu-container js-select-menu">
|
1662
|
+
<span class="minibutton select-menu-button js-menu-target" role="button" aria-haspopup="true">
|
213
1663
|
<span class="octicon octicon-list-unordered"></span>
|
214
1664
|
<i>Other:</i>
|
215
1665
|
<span class="js-select-button">Languages</span>
|
216
1666
|
</span>
|
217
1667
|
|
218
|
-
<div class="select-menu-modal-holder js-menu-content js-navigation-container">
|
1668
|
+
<div class="select-menu-modal-holder js-menu-content js-navigation-container" aria-hidden="true">
|
219
1669
|
<div class="select-menu-modal">
|
220
1670
|
<div class="select-menu-header">
|
221
1671
|
<span class="select-menu-title">Other Languages</span>
|
222
|
-
<span class="octicon octicon-
|
223
|
-
</div> <!-- /.select-menu-header -->
|
224
|
-
|
225
|
-
<div class="select-menu-error-shell">
|
226
|
-
<span class="select-menu-error js-select-menu-error">Whoops, there was an error</span>
|
1672
|
+
<span class="octicon octicon-x js-menu-close" role="button" aria-label="Close"></span>
|
227
1673
|
</div>
|
228
1674
|
|
229
1675
|
<div class="select-menu-filters">
|
230
1676
|
<div class="select-menu-text-filter">
|
231
1677
|
<input type="text" id="text-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter Languages">
|
232
1678
|
</div>
|
233
|
-
</div>
|
1679
|
+
</div>
|
234
1680
|
|
235
|
-
<div class="select-menu-list" data-pjax>
|
1681
|
+
<div class="select-menu-list" data-pjax role="menu">
|
236
1682
|
|
237
|
-
<div class="select-menu-clear-item select-menu-item js-navigation-item">
|
238
|
-
<span class="select-menu-item-icon octicon octicon-remove-close"></span>
|
239
|
-
<a href="https://github.com/trending" class="select-menu-item-text">Clear Language</a>
|
240
|
-
</div> <!-- /.select-menu-item -->
|
241
1683
|
|
242
1684
|
<div data-filterable-for="text-filter-field" data-filterable-type="substring">
|
243
|
-
<div class="select-menu-item js-navigation-item ">
|
1685
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
244
1686
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
245
1687
|
<a href="https://github.com/trending?l=abap" class="select-menu-item-text js-select-button-text js-navigation-open">ABAP</a>
|
246
|
-
</div>
|
247
|
-
<div class="select-menu-item js-navigation-item ">
|
1688
|
+
</div>
|
1689
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
248
1690
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
249
1691
|
<a href="https://github.com/trending?l=as3" class="select-menu-item-text js-select-button-text js-navigation-open">ActionScript</a>
|
250
|
-
</div>
|
251
|
-
<div class="select-menu-item js-navigation-item ">
|
1692
|
+
</div>
|
1693
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
252
1694
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
253
1695
|
<a href="https://github.com/trending?l=ada" class="select-menu-item-text js-select-button-text js-navigation-open">Ada</a>
|
254
|
-
</div>
|
255
|
-
<div class="select-menu-item js-navigation-item ">
|
1696
|
+
</div>
|
1697
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1698
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1699
|
+
<a href="https://github.com/trending?l=agda" class="select-menu-item-text js-select-button-text js-navigation-open">Agda</a>
|
1700
|
+
</div>
|
1701
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1702
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1703
|
+
<a href="https://github.com/trending?l=ags-script" class="select-menu-item-text js-select-button-text js-navigation-open">AGS Script</a>
|
1704
|
+
</div>
|
1705
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1706
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1707
|
+
<a href="https://github.com/trending?l=alloy" class="select-menu-item-text js-select-button-text js-navigation-open">Alloy</a>
|
1708
|
+
</div>
|
1709
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1710
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1711
|
+
<a href="https://github.com/trending?l=ampl" class="select-menu-item-text js-select-button-text js-navigation-open">AMPL</a>
|
1712
|
+
</div>
|
1713
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1714
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1715
|
+
<a href="https://github.com/trending?l=antlr" class="select-menu-item-text js-select-button-text js-navigation-open">ANTLR</a>
|
1716
|
+
</div>
|
1717
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1718
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1719
|
+
<a href="https://github.com/trending?l=apacheconf" class="select-menu-item-text js-select-button-text js-navigation-open">ApacheConf</a>
|
1720
|
+
</div>
|
1721
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
256
1722
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
257
1723
|
<a href="https://github.com/trending?l=apex" class="select-menu-item-text js-select-button-text js-navigation-open">Apex</a>
|
258
|
-
</div>
|
259
|
-
<div class="select-menu-item js-navigation-item ">
|
1724
|
+
</div>
|
1725
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1726
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1727
|
+
<a href="https://github.com/trending?l=apl" class="select-menu-item-text js-select-button-text js-navigation-open">APL</a>
|
1728
|
+
</div>
|
1729
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
260
1730
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
261
1731
|
<a href="https://github.com/trending?l=applescript" class="select-menu-item-text js-select-button-text js-navigation-open">AppleScript</a>
|
262
|
-
</div>
|
263
|
-
<div class="select-menu-item js-navigation-item ">
|
1732
|
+
</div>
|
1733
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
264
1734
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
265
1735
|
<a href="https://github.com/trending?l=arc" class="select-menu-item-text js-select-button-text js-navigation-open">Arc</a>
|
266
|
-
</div>
|
267
|
-
<div class="select-menu-item js-navigation-item ">
|
1736
|
+
</div>
|
1737
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
268
1738
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
269
1739
|
<a href="https://github.com/trending?l=arduino" class="select-menu-item-text js-select-button-text js-navigation-open">Arduino</a>
|
270
|
-
</div>
|
271
|
-
<div class="select-menu-item js-navigation-item ">
|
1740
|
+
</div>
|
1741
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
272
1742
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
273
1743
|
<a href="https://github.com/trending?l=aspx-vb" class="select-menu-item-text js-select-button-text js-navigation-open">ASP</a>
|
274
|
-
</div>
|
275
|
-
<div class="select-menu-item js-navigation-item ">
|
1744
|
+
</div>
|
1745
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1746
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1747
|
+
<a href="https://github.com/trending?l=aspectj" class="select-menu-item-text js-select-button-text js-navigation-open">AspectJ</a>
|
1748
|
+
</div>
|
1749
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
276
1750
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
277
1751
|
<a href="https://github.com/trending?l=nasm" class="select-menu-item-text js-select-button-text js-navigation-open">Assembly</a>
|
278
|
-
</div>
|
279
|
-
<div class="select-menu-item js-navigation-item ">
|
1752
|
+
</div>
|
1753
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1754
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1755
|
+
<a href="https://github.com/trending?l=ats" class="select-menu-item-text js-select-button-text js-navigation-open">ATS</a>
|
1756
|
+
</div>
|
1757
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
280
1758
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
281
1759
|
<a href="https://github.com/trending?l=augeas" class="select-menu-item-text js-select-button-text js-navigation-open">Augeas</a>
|
282
|
-
</div>
|
283
|
-
<div class="select-menu-item js-navigation-item ">
|
1760
|
+
</div>
|
1761
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
284
1762
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
285
1763
|
<a href="https://github.com/trending?l=autohotkey" class="select-menu-item-text js-select-button-text js-navigation-open">AutoHotkey</a>
|
286
|
-
</div>
|
287
|
-
<div class="select-menu-item js-navigation-item ">
|
1764
|
+
</div>
|
1765
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1766
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1767
|
+
<a href="https://github.com/trending?l=autoit" class="select-menu-item-text js-select-button-text js-navigation-open">AutoIt</a>
|
1768
|
+
</div>
|
1769
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
288
1770
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
289
1771
|
<a href="https://github.com/trending?l=awk" class="select-menu-item-text js-select-button-text js-navigation-open">Awk</a>
|
290
|
-
</div>
|
291
|
-
<div class="select-menu-item js-navigation-item ">
|
1772
|
+
</div>
|
1773
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1774
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1775
|
+
<a href="https://github.com/trending?l=befunge" class="select-menu-item-text js-select-button-text js-navigation-open">Befunge</a>
|
1776
|
+
</div>
|
1777
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1778
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1779
|
+
<a href="https://github.com/trending?l=bison" class="select-menu-item-text js-select-button-text js-navigation-open">Bison</a>
|
1780
|
+
</div>
|
1781
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1782
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1783
|
+
<a href="https://github.com/trending?l=bitbake" class="select-menu-item-text js-select-button-text js-navigation-open">BitBake</a>
|
1784
|
+
</div>
|
1785
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1786
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1787
|
+
<a href="https://github.com/trending?l=blitzbasic" class="select-menu-item-text js-select-button-text js-navigation-open">BlitzBasic</a>
|
1788
|
+
</div>
|
1789
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1790
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1791
|
+
<a href="https://github.com/trending?l=blitzmax" class="select-menu-item-text js-select-button-text js-navigation-open">BlitzMax</a>
|
1792
|
+
</div>
|
1793
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1794
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1795
|
+
<a href="https://github.com/trending?l=bluespec" class="select-menu-item-text js-select-button-text js-navigation-open">Bluespec</a>
|
1796
|
+
</div>
|
1797
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
292
1798
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
293
1799
|
<a href="https://github.com/trending?l=boo" class="select-menu-item-text js-select-button-text js-navigation-open">Boo</a>
|
294
|
-
</div>
|
295
|
-
<div class="select-menu-item js-navigation-item ">
|
1800
|
+
</div>
|
1801
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1802
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1803
|
+
<a href="https://github.com/trending?l=brainfuck" class="select-menu-item-text js-select-button-text js-navigation-open">Brainfuck</a>
|
1804
|
+
</div>
|
1805
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1806
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1807
|
+
<a href="https://github.com/trending?l=brightscript" class="select-menu-item-text js-select-button-text js-navigation-open">Brightscript</a>
|
1808
|
+
</div>
|
1809
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
296
1810
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
297
1811
|
<a href="https://github.com/trending?l=bro" class="select-menu-item-text js-select-button-text js-navigation-open">Bro</a>
|
298
|
-
</div>
|
299
|
-
<div class="select-menu-item js-navigation-item ">
|
1812
|
+
</div>
|
1813
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
300
1814
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
301
1815
|
<a href="https://github.com/trending?l=c" class="select-menu-item-text js-select-button-text js-navigation-open">C</a>
|
302
|
-
</div>
|
303
|
-
<div class="select-menu-item js-navigation-item ">
|
1816
|
+
</div>
|
1817
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
304
1818
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
305
1819
|
<a href="https://github.com/trending?l=csharp" class="select-menu-item-text js-select-button-text js-navigation-open">C#</a>
|
306
|
-
</div>
|
307
|
-
<div class="select-menu-item js-navigation-item ">
|
1820
|
+
</div>
|
1821
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
308
1822
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
309
1823
|
<a href="https://github.com/trending?l=cpp" class="select-menu-item-text js-select-button-text js-navigation-open">C++</a>
|
310
|
-
</div>
|
311
|
-
<div class="select-menu-item js-navigation-item ">
|
1824
|
+
</div>
|
1825
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1826
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1827
|
+
<a href="https://github.com/trending?l=cap%27n-proto" class="select-menu-item-text js-select-button-text js-navigation-open">Cap'n Proto</a>
|
1828
|
+
</div>
|
1829
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1830
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1831
|
+
<a href="https://github.com/trending?l=cartocss" class="select-menu-item-text js-select-button-text js-navigation-open">CartoCSS</a>
|
1832
|
+
</div>
|
1833
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
312
1834
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
313
1835
|
<a href="https://github.com/trending?l=ceylon" class="select-menu-item-text js-select-button-text js-navigation-open">Ceylon</a>
|
314
|
-
</div>
|
315
|
-
<div class="select-menu-item js-navigation-item ">
|
1836
|
+
</div>
|
1837
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1838
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1839
|
+
<a href="https://github.com/trending?l=chapel" class="select-menu-item-text js-select-button-text js-navigation-open">Chapel</a>
|
1840
|
+
</div>
|
1841
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1842
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1843
|
+
<a href="https://github.com/trending?l=chuck" class="select-menu-item-text js-select-button-text js-navigation-open">ChucK</a>
|
1844
|
+
</div>
|
1845
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1846
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1847
|
+
<a href="https://github.com/trending?l=cirru" class="select-menu-item-text js-select-button-text js-navigation-open">Cirru</a>
|
1848
|
+
</div>
|
1849
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1850
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1851
|
+
<a href="https://github.com/trending?l=clean" class="select-menu-item-text js-select-button-text js-navigation-open">Clean</a>
|
1852
|
+
</div>
|
1853
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
316
1854
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
317
1855
|
<a href="https://github.com/trending?l=clips" class="select-menu-item-text js-select-button-text js-navigation-open">CLIPS</a>
|
318
|
-
</div>
|
319
|
-
<div class="select-menu-item js-navigation-item ">
|
1856
|
+
</div>
|
1857
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
320
1858
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
321
1859
|
<a href="https://github.com/trending?l=clojure" class="select-menu-item-text js-select-button-text js-navigation-open">Clojure</a>
|
322
|
-
</div>
|
323
|
-
<div class="select-menu-item js-navigation-item ">
|
1860
|
+
</div>
|
1861
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1862
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1863
|
+
<a href="https://github.com/trending?l=cmake" class="select-menu-item-text js-select-button-text js-navigation-open">CMake</a>
|
1864
|
+
</div>
|
1865
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
324
1866
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
325
1867
|
<a href="https://github.com/trending?l=cobol" class="select-menu-item-text js-select-button-text js-navigation-open">COBOL</a>
|
326
|
-
</div>
|
327
|
-
<div class="select-menu-item js-navigation-item ">
|
1868
|
+
</div>
|
1869
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
328
1870
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
329
1871
|
<a href="https://github.com/trending?l=coffeescript" class="select-menu-item-text js-select-button-text js-navigation-open">CoffeeScript</a>
|
330
|
-
</div>
|
331
|
-
<div class="select-menu-item js-navigation-item ">
|
1872
|
+
</div>
|
1873
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
332
1874
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
333
1875
|
<a href="https://github.com/trending?l=cfm" class="select-menu-item-text js-select-button-text js-navigation-open">ColdFusion</a>
|
334
|
-
</div>
|
335
|
-
<div class="select-menu-item js-navigation-item ">
|
1876
|
+
</div>
|
1877
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
336
1878
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
337
1879
|
<a href="https://github.com/trending?l=common-lisp" class="select-menu-item-text js-select-button-text js-navigation-open">Common Lisp</a>
|
338
|
-
</div>
|
339
|
-
<div class="select-menu-item js-navigation-item ">
|
1880
|
+
</div>
|
1881
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1882
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1883
|
+
<a href="https://github.com/trending?l=component-pascal" class="select-menu-item-text js-select-button-text js-navigation-open">Component Pascal</a>
|
1884
|
+
</div>
|
1885
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1886
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1887
|
+
<a href="https://github.com/trending?l=cool" class="select-menu-item-text js-select-button-text js-navigation-open">Cool</a>
|
1888
|
+
</div>
|
1889
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
340
1890
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
341
1891
|
<a href="https://github.com/trending?l=coq" class="select-menu-item-text js-select-button-text js-navigation-open">Coq</a>
|
342
|
-
</div>
|
343
|
-
<div class="select-menu-item js-navigation-item ">
|
1892
|
+
</div>
|
1893
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1894
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1895
|
+
<a href="https://github.com/trending?l=crystal" class="select-menu-item-text js-select-button-text js-navigation-open">Crystal</a>
|
1896
|
+
</div>
|
1897
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
344
1898
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
345
1899
|
<a href="https://github.com/trending?l=css" class="select-menu-item-text js-select-button-text js-navigation-open">CSS</a>
|
346
|
-
</div>
|
347
|
-
<div class="select-menu-item js-navigation-item ">
|
1900
|
+
</div>
|
1901
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1902
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1903
|
+
<a href="https://github.com/trending?l=cucumber" class="select-menu-item-text js-select-button-text js-navigation-open">Cucumber</a>
|
1904
|
+
</div>
|
1905
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1906
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1907
|
+
<a href="https://github.com/trending?l=cuda" class="select-menu-item-text js-select-button-text js-navigation-open">Cuda</a>
|
1908
|
+
</div>
|
1909
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1910
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1911
|
+
<a href="https://github.com/trending?l=cycript" class="select-menu-item-text js-select-button-text js-navigation-open">Cycript</a>
|
1912
|
+
</div>
|
1913
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
348
1914
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
349
1915
|
<a href="https://github.com/trending?l=d" class="select-menu-item-text js-select-button-text js-navigation-open">D</a>
|
350
|
-
</div>
|
351
|
-
<div class="select-menu-item js-navigation-item ">
|
1916
|
+
</div>
|
1917
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1918
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1919
|
+
<a href="https://github.com/trending?l=dpatch" class="select-menu-item-text js-select-button-text js-navigation-open">Darcs Patch</a>
|
1920
|
+
</div>
|
1921
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
352
1922
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
353
1923
|
<a href="https://github.com/trending?l=dart" class="select-menu-item-text js-select-button-text js-navigation-open">Dart</a>
|
354
|
-
</div>
|
355
|
-
<div class="select-menu-item js-navigation-item ">
|
1924
|
+
</div>
|
1925
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1926
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1927
|
+
<a href="https://github.com/trending?l=diff" class="select-menu-item-text js-select-button-text js-navigation-open">Diff</a>
|
1928
|
+
</div>
|
1929
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
356
1930
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
357
|
-
<a href="https://github.com/trending?l=
|
358
|
-
</div>
|
359
|
-
<div class="select-menu-item js-navigation-item ">
|
1931
|
+
<a href="https://github.com/trending?l=dm" class="select-menu-item-text js-select-button-text js-navigation-open">DM</a>
|
1932
|
+
</div>
|
1933
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
360
1934
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
361
|
-
<a href="https://github.com/trending?l=
|
362
|
-
</div>
|
363
|
-
<div class="select-menu-item js-navigation-item ">
|
1935
|
+
<a href="https://github.com/trending?l=dogescript" class="select-menu-item-text js-select-button-text js-navigation-open">Dogescript</a>
|
1936
|
+
</div>
|
1937
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1938
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1939
|
+
<a href="https://github.com/trending?l=dtrace" class="select-menu-item-text js-select-button-text js-navigation-open">DTrace</a>
|
1940
|
+
</div>
|
1941
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
364
1942
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
365
1943
|
<a href="https://github.com/trending?l=dylan" class="select-menu-item-text js-select-button-text js-navigation-open">Dylan</a>
|
366
|
-
</div>
|
367
|
-
<div class="select-menu-item js-navigation-item ">
|
1944
|
+
</div>
|
1945
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1946
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1947
|
+
<a href="https://github.com/trending?l=e" class="select-menu-item-text js-select-button-text js-navigation-open">E</a>
|
1948
|
+
</div>
|
1949
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1950
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1951
|
+
<a href="https://github.com/trending?l=eagle" class="select-menu-item-text js-select-button-text js-navigation-open">Eagle</a>
|
1952
|
+
</div>
|
1953
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
368
1954
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
369
1955
|
<a href="https://github.com/trending?l=ec" class="select-menu-item-text js-select-button-text js-navigation-open">eC</a>
|
370
|
-
</div>
|
371
|
-
<div class="select-menu-item js-navigation-item ">
|
1956
|
+
</div>
|
1957
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
372
1958
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
373
|
-
<a href="https://github.com/trending?l=ecl" class="select-menu-item-text js-select-button-text js-navigation-open">
|
374
|
-
</div>
|
375
|
-
<div class="select-menu-item js-navigation-item ">
|
1959
|
+
<a href="https://github.com/trending?l=ecl" class="select-menu-item-text js-select-button-text js-navigation-open">ECL</a>
|
1960
|
+
</div>
|
1961
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
376
1962
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
377
1963
|
<a href="https://github.com/trending?l=eiffel" class="select-menu-item-text js-select-button-text js-navigation-open">Eiffel</a>
|
378
|
-
</div>
|
379
|
-
<div class="select-menu-item js-navigation-item ">
|
1964
|
+
</div>
|
1965
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
380
1966
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
381
1967
|
<a href="https://github.com/trending?l=elixir" class="select-menu-item-text js-select-button-text js-navigation-open">Elixir</a>
|
382
|
-
</div>
|
383
|
-
<div class="select-menu-item js-navigation-item ">
|
1968
|
+
</div>
|
1969
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1970
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1971
|
+
<a href="https://github.com/trending?l=elm" class="select-menu-item-text js-select-button-text js-navigation-open">Elm</a>
|
1972
|
+
</div>
|
1973
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
384
1974
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
385
1975
|
<a href="https://github.com/trending?l=emacs-lisp" class="select-menu-item-text js-select-button-text js-navigation-open">Emacs Lisp</a>
|
386
|
-
</div>
|
387
|
-
<div class="select-menu-item js-navigation-item ">
|
1976
|
+
</div>
|
1977
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
1978
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
1979
|
+
<a href="https://github.com/trending?l=emberscript" class="select-menu-item-text js-select-button-text js-navigation-open">EmberScript</a>
|
1980
|
+
</div>
|
1981
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
388
1982
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
389
1983
|
<a href="https://github.com/trending?l=erlang" class="select-menu-item-text js-select-button-text js-navigation-open">Erlang</a>
|
390
|
-
</div>
|
391
|
-
<div class="select-menu-item js-navigation-item ">
|
1984
|
+
</div>
|
1985
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
392
1986
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
393
1987
|
<a href="https://github.com/trending?l=fsharp" class="select-menu-item-text js-select-button-text js-navigation-open">F#</a>
|
394
|
-
</div>
|
395
|
-
<div class="select-menu-item js-navigation-item ">
|
1988
|
+
</div>
|
1989
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
396
1990
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
397
1991
|
<a href="https://github.com/trending?l=factor" class="select-menu-item-text js-select-button-text js-navigation-open">Factor</a>
|
398
|
-
</div>
|
399
|
-
<div class="select-menu-item js-navigation-item ">
|
1992
|
+
</div>
|
1993
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
400
1994
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
401
1995
|
<a href="https://github.com/trending?l=fancy" class="select-menu-item-text js-select-button-text js-navigation-open">Fancy</a>
|
402
|
-
</div>
|
403
|
-
<div class="select-menu-item js-navigation-item ">
|
1996
|
+
</div>
|
1997
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
404
1998
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
405
1999
|
<a href="https://github.com/trending?l=fantom" class="select-menu-item-text js-select-button-text js-navigation-open">Fantom</a>
|
406
|
-
</div>
|
407
|
-
<div class="select-menu-item js-navigation-item ">
|
2000
|
+
</div>
|
2001
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2002
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2003
|
+
<a href="https://github.com/trending?l=flux" class="select-menu-item-text js-select-button-text js-navigation-open">FLUX</a>
|
2004
|
+
</div>
|
2005
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
408
2006
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
409
2007
|
<a href="https://github.com/trending?l=forth" class="select-menu-item-text js-select-button-text js-navigation-open">Forth</a>
|
410
|
-
</div>
|
411
|
-
<div class="select-menu-item js-navigation-item ">
|
2008
|
+
</div>
|
2009
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
412
2010
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
413
2011
|
<a href="https://github.com/trending?l=fortran" class="select-menu-item-text js-select-button-text js-navigation-open">FORTRAN</a>
|
414
|
-
</div>
|
415
|
-
<div class="select-menu-item js-navigation-item ">
|
2012
|
+
</div>
|
2013
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2014
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2015
|
+
<a href="https://github.com/trending?l=frege" class="select-menu-item-text js-select-button-text js-navigation-open">Frege</a>
|
2016
|
+
</div>
|
2017
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2018
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2019
|
+
<a href="https://github.com/trending?l=game-maker-language" class="select-menu-item-text js-select-button-text js-navigation-open">Game Maker Language</a>
|
2020
|
+
</div>
|
2021
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2022
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2023
|
+
<a href="https://github.com/trending?l=gams" class="select-menu-item-text js-select-button-text js-navigation-open">GAMS</a>
|
2024
|
+
</div>
|
2025
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2026
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2027
|
+
<a href="https://github.com/trending?l=gap" class="select-menu-item-text js-select-button-text js-navigation-open">GAP</a>
|
2028
|
+
</div>
|
2029
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2030
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2031
|
+
<a href="https://github.com/trending?l=gdscript" class="select-menu-item-text js-select-button-text js-navigation-open">GDScript</a>
|
2032
|
+
</div>
|
2033
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2034
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2035
|
+
<a href="https://github.com/trending?l=genshi" class="select-menu-item-text js-select-button-text js-navigation-open">Genshi</a>
|
2036
|
+
</div>
|
2037
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2038
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2039
|
+
<a href="https://github.com/trending?l=pot" class="select-menu-item-text js-select-button-text js-navigation-open">Gettext Catalog</a>
|
2040
|
+
</div>
|
2041
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2042
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2043
|
+
<a href="https://github.com/trending?l=glsl" class="select-menu-item-text js-select-button-text js-navigation-open">GLSL</a>
|
2044
|
+
</div>
|
2045
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2046
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2047
|
+
<a href="https://github.com/trending?l=glyph" class="select-menu-item-text js-select-button-text js-navigation-open">Glyph</a>
|
2048
|
+
</div>
|
2049
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2050
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2051
|
+
<a href="https://github.com/trending?l=gnuplot" class="select-menu-item-text js-select-button-text js-navigation-open">Gnuplot</a>
|
2052
|
+
</div>
|
2053
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
416
2054
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
417
2055
|
<a href="https://github.com/trending?l=go" class="select-menu-item-text js-select-button-text js-navigation-open">Go</a>
|
418
|
-
</div>
|
419
|
-
<div class="select-menu-item js-navigation-item ">
|
2056
|
+
</div>
|
2057
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2058
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2059
|
+
<a href="https://github.com/trending?l=golo" class="select-menu-item-text js-select-button-text js-navigation-open">Golo</a>
|
2060
|
+
</div>
|
2061
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
420
2062
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
421
2063
|
<a href="https://github.com/trending?l=gosu" class="select-menu-item-text js-select-button-text js-navigation-open">Gosu</a>
|
422
|
-
</div>
|
423
|
-
<div class="select-menu-item js-navigation-item ">
|
2064
|
+
</div>
|
2065
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2066
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2067
|
+
<a href="https://github.com/trending?l=grace" class="select-menu-item-text js-select-button-text js-navigation-open">Grace</a>
|
2068
|
+
</div>
|
2069
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2070
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2071
|
+
<a href="https://github.com/trending?l=grammatical-framework" class="select-menu-item-text js-select-button-text js-navigation-open">Grammatical Framework</a>
|
2072
|
+
</div>
|
2073
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2074
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2075
|
+
<a href="https://github.com/trending?l=groff" class="select-menu-item-text js-select-button-text js-navigation-open">Groff</a>
|
2076
|
+
</div>
|
2077
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
424
2078
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
425
2079
|
<a href="https://github.com/trending?l=groovy" class="select-menu-item-text js-select-button-text js-navigation-open">Groovy</a>
|
426
|
-
</div>
|
427
|
-
<div class="select-menu-item js-navigation-item ">
|
2080
|
+
</div>
|
2081
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2082
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2083
|
+
<a href="https://github.com/trending?l=hack" class="select-menu-item-text js-select-button-text js-navigation-open">Hack</a>
|
2084
|
+
</div>
|
2085
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2086
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2087
|
+
<a href="https://github.com/trending?l=handlebars" class="select-menu-item-text js-select-button-text js-navigation-open">Handlebars</a>
|
2088
|
+
</div>
|
2089
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2090
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2091
|
+
<a href="https://github.com/trending?l=harbour" class="select-menu-item-text js-select-button-text js-navigation-open">Harbour</a>
|
2092
|
+
</div>
|
2093
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
428
2094
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
429
2095
|
<a href="https://github.com/trending?l=haskell" class="select-menu-item-text js-select-button-text js-navigation-open">Haskell</a>
|
430
|
-
</div>
|
431
|
-
<div class="select-menu-item js-navigation-item ">
|
2096
|
+
</div>
|
2097
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
432
2098
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
433
2099
|
<a href="https://github.com/trending?l=haxe" class="select-menu-item-text js-select-button-text js-navigation-open">Haxe</a>
|
434
|
-
</div>
|
435
|
-
<div class="select-menu-item js-navigation-item ">
|
2100
|
+
</div>
|
2101
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2102
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2103
|
+
<a href="https://github.com/trending?l=html" class="select-menu-item-text js-select-button-text js-navigation-open">HTML</a>
|
2104
|
+
</div>
|
2105
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2106
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2107
|
+
<a href="https://github.com/trending?l=hy" class="select-menu-item-text js-select-button-text js-navigation-open">Hy</a>
|
2108
|
+
</div>
|
2109
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2110
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2111
|
+
<a href="https://github.com/trending?l=idl" class="select-menu-item-text js-select-button-text js-navigation-open">IDL</a>
|
2112
|
+
</div>
|
2113
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2114
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2115
|
+
<a href="https://github.com/trending?l=idris" class="select-menu-item-text js-select-button-text js-navigation-open">Idris</a>
|
2116
|
+
</div>
|
2117
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2118
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2119
|
+
<a href="https://github.com/trending?l=igor-pro" class="select-menu-item-text js-select-button-text js-navigation-open">IGOR Pro</a>
|
2120
|
+
</div>
|
2121
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2122
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2123
|
+
<a href="https://github.com/trending?l=inform-7" class="select-menu-item-text js-select-button-text js-navigation-open">Inform 7</a>
|
2124
|
+
</div>
|
2125
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2126
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2127
|
+
<a href="https://github.com/trending?l=inno-setup" class="select-menu-item-text js-select-button-text js-navigation-open">Inno Setup</a>
|
2128
|
+
</div>
|
2129
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
436
2130
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
437
2131
|
<a href="https://github.com/trending?l=io" class="select-menu-item-text js-select-button-text js-navigation-open">Io</a>
|
438
|
-
</div>
|
439
|
-
<div class="select-menu-item js-navigation-item ">
|
2132
|
+
</div>
|
2133
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
440
2134
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
441
2135
|
<a href="https://github.com/trending?l=ioke" class="select-menu-item-text js-select-button-text js-navigation-open">Ioke</a>
|
442
|
-
</div>
|
443
|
-
<div class="select-menu-item js-navigation-item ">
|
2136
|
+
</div>
|
2137
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2138
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2139
|
+
<a href="https://github.com/trending?l=isabelle" class="select-menu-item-text js-select-button-text js-navigation-open">Isabelle</a>
|
2140
|
+
</div>
|
2141
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2142
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2143
|
+
<a href="https://github.com/trending?l=j" class="select-menu-item-text js-select-button-text js-navigation-open">J</a>
|
2144
|
+
</div>
|
2145
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2146
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2147
|
+
<a href="https://github.com/trending?l=jasmin" class="select-menu-item-text js-select-button-text js-navigation-open">Jasmin</a>
|
2148
|
+
</div>
|
2149
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
444
2150
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
445
2151
|
<a href="https://github.com/trending?l=java" class="select-menu-item-text js-select-button-text js-navigation-open">Java</a>
|
446
|
-
</div>
|
447
|
-
<div class="select-menu-item js-navigation-item ">
|
2152
|
+
</div>
|
2153
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
448
2154
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
449
2155
|
<a href="https://github.com/trending?l=javascript" class="select-menu-item-text js-select-button-text js-navigation-open">JavaScript</a>
|
450
|
-
</div>
|
451
|
-
<div class="select-menu-item js-navigation-item ">
|
2156
|
+
</div>
|
2157
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2158
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2159
|
+
<a href="https://github.com/trending?l=jsoniq" class="select-menu-item-text js-select-button-text js-navigation-open">JSONiq</a>
|
2160
|
+
</div>
|
2161
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
452
2162
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
453
2163
|
<a href="https://github.com/trending?l=julia" class="select-menu-item-text js-select-button-text js-navigation-open">Julia</a>
|
454
|
-
</div>
|
455
|
-
<div class="select-menu-item js-navigation-item ">
|
2164
|
+
</div>
|
2165
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2166
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2167
|
+
<a href="https://github.com/trending?l=kit" class="select-menu-item-text js-select-button-text js-navigation-open">Kit</a>
|
2168
|
+
</div>
|
2169
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
456
2170
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
457
2171
|
<a href="https://github.com/trending?l=kotlin" class="select-menu-item-text js-select-button-text js-navigation-open">Kotlin</a>
|
458
|
-
</div>
|
459
|
-
<div class="select-menu-item js-navigation-item ">
|
2172
|
+
</div>
|
2173
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2174
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2175
|
+
<a href="https://github.com/trending?l=krl" class="select-menu-item-text js-select-button-text js-navigation-open">KRL</a>
|
2176
|
+
</div>
|
2177
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2178
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2179
|
+
<a href="https://github.com/trending?l=labview" class="select-menu-item-text js-select-button-text js-navigation-open">LabVIEW</a>
|
2180
|
+
</div>
|
2181
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
460
2182
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
461
2183
|
<a href="https://github.com/trending?l=lasso" class="select-menu-item-text js-select-button-text js-navigation-open">Lasso</a>
|
462
|
-
</div>
|
463
|
-
<div class="select-menu-item js-navigation-item ">
|
2184
|
+
</div>
|
2185
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2186
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2187
|
+
<a href="https://github.com/trending?l=lean" class="select-menu-item-text js-select-button-text js-navigation-open">Lean</a>
|
2188
|
+
</div>
|
2189
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2190
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2191
|
+
<a href="https://github.com/trending?l=lilypond" class="select-menu-item-text js-select-button-text js-navigation-open">LilyPond</a>
|
2192
|
+
</div>
|
2193
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2194
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2195
|
+
<a href="https://github.com/trending?l=liquid" class="select-menu-item-text js-select-button-text js-navigation-open">Liquid</a>
|
2196
|
+
</div>
|
2197
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
464
2198
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
465
2199
|
<a href="https://github.com/trending?l=livescript" class="select-menu-item-text js-select-button-text js-navigation-open">LiveScript</a>
|
466
|
-
</div>
|
467
|
-
<div class="select-menu-item js-navigation-item ">
|
2200
|
+
</div>
|
2201
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2202
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2203
|
+
<a href="https://github.com/trending?l=llvm" class="select-menu-item-text js-select-button-text js-navigation-open">LLVM</a>
|
2204
|
+
</div>
|
2205
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
468
2206
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
469
2207
|
<a href="https://github.com/trending?l=logos" class="select-menu-item-text js-select-button-text js-navigation-open">Logos</a>
|
470
|
-
</div>
|
471
|
-
<div class="select-menu-item js-navigation-item ">
|
2208
|
+
</div>
|
2209
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
472
2210
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
473
2211
|
<a href="https://github.com/trending?l=logtalk" class="select-menu-item-text js-select-button-text js-navigation-open">Logtalk</a>
|
474
|
-
</div>
|
475
|
-
<div class="select-menu-item js-navigation-item ">
|
2212
|
+
</div>
|
2213
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2214
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2215
|
+
<a href="https://github.com/trending?l=lolcode" class="select-menu-item-text js-select-button-text js-navigation-open">LOLCODE</a>
|
2216
|
+
</div>
|
2217
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2218
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2219
|
+
<a href="https://github.com/trending?l=lookml" class="select-menu-item-text js-select-button-text js-navigation-open">LookML</a>
|
2220
|
+
</div>
|
2221
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2222
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2223
|
+
<a href="https://github.com/trending?l=loomscript" class="select-menu-item-text js-select-button-text js-navigation-open">LoomScript</a>
|
2224
|
+
</div>
|
2225
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2226
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2227
|
+
<a href="https://github.com/trending?l=lsl" class="select-menu-item-text js-select-button-text js-navigation-open">LSL</a>
|
2228
|
+
</div>
|
2229
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
476
2230
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
477
2231
|
<a href="https://github.com/trending?l=lua" class="select-menu-item-text js-select-button-text js-navigation-open">Lua</a>
|
478
|
-
</div>
|
479
|
-
<div class="select-menu-item js-navigation-item ">
|
2232
|
+
</div>
|
2233
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
480
2234
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
481
2235
|
<a href="https://github.com/trending?l=m" class="select-menu-item-text js-select-button-text js-navigation-open">M</a>
|
482
|
-
</div>
|
483
|
-
<div class="select-menu-item js-navigation-item ">
|
2236
|
+
</div>
|
2237
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2238
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2239
|
+
<a href="https://github.com/trending?l=makefile" class="select-menu-item-text js-select-button-text js-navigation-open">Makefile</a>
|
2240
|
+
</div>
|
2241
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2242
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2243
|
+
<a href="https://github.com/trending?l=mako" class="select-menu-item-text js-select-button-text js-navigation-open">Mako</a>
|
2244
|
+
</div>
|
2245
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
484
2246
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
485
2247
|
<a href="https://github.com/trending?l=markdown" class="select-menu-item-text js-select-button-text js-navigation-open">Markdown</a>
|
486
|
-
</div>
|
487
|
-
<div class="select-menu-item js-navigation-item ">
|
2248
|
+
</div>
|
2249
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2250
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2251
|
+
<a href="https://github.com/trending?l=mask" class="select-menu-item-text js-select-button-text js-navigation-open">Mask</a>
|
2252
|
+
</div>
|
2253
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2254
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2255
|
+
<a href="https://github.com/trending?l=mathematica" class="select-menu-item-text js-select-button-text js-navigation-open">Mathematica</a>
|
2256
|
+
</div>
|
2257
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
488
2258
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
489
2259
|
<a href="https://github.com/trending?l=matlab" class="select-menu-item-text js-select-button-text js-navigation-open">Matlab</a>
|
490
|
-
</div>
|
491
|
-
<div class="select-menu-item js-navigation-item ">
|
2260
|
+
</div>
|
2261
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
492
2262
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
493
2263
|
<a href="https://github.com/trending?l=max%2Fmsp" class="select-menu-item-text js-select-button-text js-navigation-open">Max</a>
|
494
|
-
</div>
|
495
|
-
<div class="select-menu-item js-navigation-item ">
|
2264
|
+
</div>
|
2265
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2266
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2267
|
+
<a href="https://github.com/trending?l=mercury" class="select-menu-item-text js-select-button-text js-navigation-open">Mercury</a>
|
2268
|
+
</div>
|
2269
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
496
2270
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
497
|
-
<a href="https://github.com/trending?l=
|
498
|
-
</div>
|
499
|
-
<div class="select-menu-item js-navigation-item ">
|
2271
|
+
<a href="https://github.com/trending?l=mirah" class="select-menu-item-text js-select-button-text js-navigation-open">Mirah</a>
|
2272
|
+
</div>
|
2273
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2274
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2275
|
+
<a href="https://github.com/trending?l=modelica" class="select-menu-item-text js-select-button-text js-navigation-open">Modelica</a>
|
2276
|
+
</div>
|
2277
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
500
2278
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
501
2279
|
<a href="https://github.com/trending?l=monkey" class="select-menu-item-text js-select-button-text js-navigation-open">Monkey</a>
|
502
|
-
</div>
|
503
|
-
<div class="select-menu-item js-navigation-item ">
|
2280
|
+
</div>
|
2281
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2282
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2283
|
+
<a href="https://github.com/trending?l=moocode" class="select-menu-item-text js-select-button-text js-navigation-open">Moocode</a>
|
2284
|
+
</div>
|
2285
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
504
2286
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
505
2287
|
<a href="https://github.com/trending?l=moonscript" class="select-menu-item-text js-select-button-text js-navigation-open">MoonScript</a>
|
506
|
-
</div>
|
507
|
-
<div class="select-menu-item js-navigation-item ">
|
2288
|
+
</div>
|
2289
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2290
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2291
|
+
<a href="https://github.com/trending?l=mtml" class="select-menu-item-text js-select-button-text js-navigation-open">MTML</a>
|
2292
|
+
</div>
|
2293
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2294
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2295
|
+
<a href="https://github.com/trending?l=mupad" class="select-menu-item-text js-select-button-text js-navigation-open">mupad</a>
|
2296
|
+
</div>
|
2297
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2298
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2299
|
+
<a href="https://github.com/trending?l=myghty" class="select-menu-item-text js-select-button-text js-navigation-open">Myghty</a>
|
2300
|
+
</div>
|
2301
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
508
2302
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
509
2303
|
<a href="https://github.com/trending?l=nemerle" class="select-menu-item-text js-select-button-text js-navigation-open">Nemerle</a>
|
510
|
-
</div>
|
511
|
-
<div class="select-menu-item js-navigation-item ">
|
2304
|
+
</div>
|
2305
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2306
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2307
|
+
<a href="https://github.com/trending?l=nesc" class="select-menu-item-text js-select-button-text js-navigation-open">nesC</a>
|
2308
|
+
</div>
|
2309
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2310
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2311
|
+
<a href="https://github.com/trending?l=netlogo" class="select-menu-item-text js-select-button-text js-navigation-open">NetLogo</a>
|
2312
|
+
</div>
|
2313
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2314
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2315
|
+
<a href="https://github.com/trending?l=newlisp" class="select-menu-item-text js-select-button-text js-navigation-open">NewLisp</a>
|
2316
|
+
</div>
|
2317
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2318
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2319
|
+
<a href="https://github.com/trending?l=nginx" class="select-menu-item-text js-select-button-text js-navigation-open">Nginx</a>
|
2320
|
+
</div>
|
2321
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
512
2322
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
513
2323
|
<a href="https://github.com/trending?l=nimrod" class="select-menu-item-text js-select-button-text js-navigation-open">Nimrod</a>
|
514
|
-
</div>
|
515
|
-
<div class="select-menu-item js-navigation-item ">
|
2324
|
+
</div>
|
2325
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2326
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2327
|
+
<a href="https://github.com/trending?l=nit" class="select-menu-item-text js-select-button-text js-navigation-open">Nit</a>
|
2328
|
+
</div>
|
2329
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2330
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2331
|
+
<a href="https://github.com/trending?l=nix" class="select-menu-item-text js-select-button-text js-navigation-open">Nix</a>
|
2332
|
+
</div>
|
2333
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2334
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2335
|
+
<a href="https://github.com/trending?l=nsis" class="select-menu-item-text js-select-button-text js-navigation-open">NSIS</a>
|
2336
|
+
</div>
|
2337
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
516
2338
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
517
2339
|
<a href="https://github.com/trending?l=nu" class="select-menu-item-text js-select-button-text js-navigation-open">Nu</a>
|
518
|
-
</div>
|
519
|
-
<div class="select-menu-item js-navigation-item ">
|
2340
|
+
</div>
|
2341
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
520
2342
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
521
2343
|
<a href="https://github.com/trending?l=objective-c" class="select-menu-item-text js-select-button-text js-navigation-open">Objective-C</a>
|
522
|
-
</div>
|
523
|
-
<div class="select-menu-item js-navigation-item ">
|
2344
|
+
</div>
|
2345
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2346
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2347
|
+
<a href="https://github.com/trending?l=objective-c%2B%2B" class="select-menu-item-text js-select-button-text js-navigation-open">Objective-C++</a>
|
2348
|
+
</div>
|
2349
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
524
2350
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
525
2351
|
<a href="https://github.com/trending?l=objective-j" class="select-menu-item-text js-select-button-text js-navigation-open">Objective-J</a>
|
526
|
-
</div>
|
527
|
-
<div class="select-menu-item js-navigation-item ">
|
2352
|
+
</div>
|
2353
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
528
2354
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
529
2355
|
<a href="https://github.com/trending?l=ocaml" class="select-menu-item-text js-select-button-text js-navigation-open">OCaml</a>
|
530
|
-
</div>
|
531
|
-
<div class="select-menu-item js-navigation-item ">
|
2356
|
+
</div>
|
2357
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
532
2358
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
533
2359
|
<a href="https://github.com/trending?l=omgrofl" class="select-menu-item-text js-select-button-text js-navigation-open">Omgrofl</a>
|
534
|
-
</div>
|
535
|
-
<div class="select-menu-item js-navigation-item ">
|
2360
|
+
</div>
|
2361
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
536
2362
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
537
2363
|
<a href="https://github.com/trending?l=ooc" class="select-menu-item-text js-select-button-text js-navigation-open">ooc</a>
|
538
|
-
</div>
|
539
|
-
<div class="select-menu-item js-navigation-item ">
|
2364
|
+
</div>
|
2365
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
540
2366
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
541
2367
|
<a href="https://github.com/trending?l=opa" class="select-menu-item-text js-select-button-text js-navigation-open">Opa</a>
|
542
|
-
</div>
|
543
|
-
<div class="select-menu-item js-navigation-item ">
|
2368
|
+
</div>
|
2369
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2370
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2371
|
+
<a href="https://github.com/trending?l=opal" class="select-menu-item-text js-select-button-text js-navigation-open">Opal</a>
|
2372
|
+
</div>
|
2373
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
544
2374
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
545
2375
|
<a href="https://github.com/trending?l=openedge-abl" class="select-menu-item-text js-select-button-text js-navigation-open">OpenEdge ABL</a>
|
546
|
-
</div>
|
547
|
-
<div class="select-menu-item js-navigation-item ">
|
2376
|
+
</div>
|
2377
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2378
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2379
|
+
<a href="https://github.com/trending?l=openscad" class="select-menu-item-text js-select-button-text js-navigation-open">OpenSCAD</a>
|
2380
|
+
</div>
|
2381
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2382
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2383
|
+
<a href="https://github.com/trending?l=ox" class="select-menu-item-text js-select-button-text js-navigation-open">Ox</a>
|
2384
|
+
</div>
|
2385
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2386
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2387
|
+
<a href="https://github.com/trending?l=oxygene" class="select-menu-item-text js-select-button-text js-navigation-open">Oxygene</a>
|
2388
|
+
</div>
|
2389
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2390
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2391
|
+
<a href="https://github.com/trending?l=oz" class="select-menu-item-text js-select-button-text js-navigation-open">Oz</a>
|
2392
|
+
</div>
|
2393
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2394
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2395
|
+
<a href="https://github.com/trending?l=pan" class="select-menu-item-text js-select-button-text js-navigation-open">Pan</a>
|
2396
|
+
</div>
|
2397
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2398
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2399
|
+
<a href="https://github.com/trending?l=papyrus" class="select-menu-item-text js-select-button-text js-navigation-open">Papyrus</a>
|
2400
|
+
</div>
|
2401
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
548
2402
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
549
2403
|
<a href="https://github.com/trending?l=parrot" class="select-menu-item-text js-select-button-text js-navigation-open">Parrot</a>
|
550
|
-
</div>
|
551
|
-
<div class="select-menu-item js-navigation-item ">
|
2404
|
+
</div>
|
2405
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
552
2406
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
553
2407
|
<a href="https://github.com/trending?l=pascal" class="select-menu-item-text js-select-button-text js-navigation-open">Pascal</a>
|
554
|
-
</div>
|
555
|
-
<div class="select-menu-item js-navigation-item ">
|
2408
|
+
</div>
|
2409
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2410
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2411
|
+
<a href="https://github.com/trending?l=pawn" class="select-menu-item-text js-select-button-text js-navigation-open">PAWN</a>
|
2412
|
+
</div>
|
2413
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
556
2414
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
557
2415
|
<a href="https://github.com/trending?l=perl" class="select-menu-item-text js-select-button-text js-navigation-open">Perl</a>
|
558
|
-
</div>
|
559
|
-
<div class="select-menu-item js-navigation-item ">
|
2416
|
+
</div>
|
2417
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2418
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2419
|
+
<a href="https://github.com/trending?l=perl6" class="select-menu-item-text js-select-button-text js-navigation-open">Perl6</a>
|
2420
|
+
</div>
|
2421
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
560
2422
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
561
2423
|
<a href="https://github.com/trending?l=php" class="select-menu-item-text js-select-button-text js-navigation-open">PHP</a>
|
562
|
-
</div>
|
563
|
-
<div class="select-menu-item js-navigation-item ">
|
2424
|
+
</div>
|
2425
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2426
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2427
|
+
<a href="https://github.com/trending?l=piglatin" class="select-menu-item-text js-select-button-text js-navigation-open">PigLatin</a>
|
2428
|
+
</div>
|
2429
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
564
2430
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
565
2431
|
<a href="https://github.com/trending?l=pike" class="select-menu-item-text js-select-button-text js-navigation-open">Pike</a>
|
566
|
-
</div>
|
567
|
-
<div class="select-menu-item js-navigation-item ">
|
2432
|
+
</div>
|
2433
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2434
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2435
|
+
<a href="https://github.com/trending?l=plpgsql" class="select-menu-item-text js-select-button-text js-navigation-open">PLpgSQL</a>
|
2436
|
+
</div>
|
2437
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2438
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2439
|
+
<a href="https://github.com/trending?l=plsql" class="select-menu-item-text js-select-button-text js-navigation-open">PLSQL</a>
|
2440
|
+
</div>
|
2441
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
568
2442
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
569
2443
|
<a href="https://github.com/trending?l=pogoscript" class="select-menu-item-text js-select-button-text js-navigation-open">PogoScript</a>
|
570
|
-
</div>
|
571
|
-
<div class="select-menu-item js-navigation-item ">
|
2444
|
+
</div>
|
2445
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2446
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2447
|
+
<a href="https://github.com/trending?l=postscript" class="select-menu-item-text js-select-button-text js-navigation-open">PostScript</a>
|
2448
|
+
</div>
|
2449
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
572
2450
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
573
2451
|
<a href="https://github.com/trending?l=powershell" class="select-menu-item-text js-select-button-text js-navigation-open">PowerShell</a>
|
574
|
-
</div>
|
575
|
-
<div class="select-menu-item js-navigation-item ">
|
2452
|
+
</div>
|
2453
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
576
2454
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
577
2455
|
<a href="https://github.com/trending?l=processing" class="select-menu-item-text js-select-button-text js-navigation-open">Processing</a>
|
578
|
-
</div>
|
579
|
-
<div class="select-menu-item js-navigation-item ">
|
2456
|
+
</div>
|
2457
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
580
2458
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
581
2459
|
<a href="https://github.com/trending?l=prolog" class="select-menu-item-text js-select-button-text js-navigation-open">Prolog</a>
|
582
|
-
</div>
|
583
|
-
<div class="select-menu-item js-navigation-item ">
|
2460
|
+
</div>
|
2461
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2462
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2463
|
+
<a href="https://github.com/trending?l=propeller-spin" class="select-menu-item-text js-select-button-text js-navigation-open">Propeller Spin</a>
|
2464
|
+
</div>
|
2465
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2466
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2467
|
+
<a href="https://github.com/trending?l=protocol-buffer" class="select-menu-item-text js-select-button-text js-navigation-open">Protocol Buffer</a>
|
2468
|
+
</div>
|
2469
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
584
2470
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
585
2471
|
<a href="https://github.com/trending?l=puppet" class="select-menu-item-text js-select-button-text js-navigation-open">Puppet</a>
|
586
|
-
</div>
|
587
|
-
<div class="select-menu-item js-navigation-item ">
|
2472
|
+
</div>
|
2473
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
588
2474
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
589
2475
|
<a href="https://github.com/trending?l=pure-data" class="select-menu-item-text js-select-button-text js-navigation-open">Pure Data</a>
|
590
|
-
</div>
|
591
|
-
<div class="select-menu-item js-navigation-item ">
|
2476
|
+
</div>
|
2477
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2478
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2479
|
+
<a href="https://github.com/trending?l=purebasic" class="select-menu-item-text js-select-button-text js-navigation-open">PureBasic</a>
|
2480
|
+
</div>
|
2481
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2482
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2483
|
+
<a href="https://github.com/trending?l=purescript" class="select-menu-item-text js-select-button-text js-navigation-open">PureScript</a>
|
2484
|
+
</div>
|
2485
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
592
2486
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
593
2487
|
<a href="https://github.com/trending?l=python" class="select-menu-item-text js-select-button-text js-navigation-open">Python</a>
|
594
|
-
</div>
|
595
|
-
<div class="select-menu-item js-navigation-item ">
|
2488
|
+
</div>
|
2489
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2490
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2491
|
+
<a href="https://github.com/trending?l=qmake" class="select-menu-item-text js-select-button-text js-navigation-open">QMake</a>
|
2492
|
+
</div>
|
2493
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2494
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2495
|
+
<a href="https://github.com/trending?l=qml" class="select-menu-item-text js-select-button-text js-navigation-open">QML</a>
|
2496
|
+
</div>
|
2497
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
596
2498
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
597
2499
|
<a href="https://github.com/trending?l=r" class="select-menu-item-text js-select-button-text js-navigation-open">R</a>
|
598
|
-
</div>
|
599
|
-
<div class="select-menu-item js-navigation-item ">
|
2500
|
+
</div>
|
2501
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
600
2502
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
601
2503
|
<a href="https://github.com/trending?l=racket" class="select-menu-item-text js-select-button-text js-navigation-open">Racket</a>
|
602
|
-
</div>
|
603
|
-
<div class="select-menu-item js-navigation-item ">
|
2504
|
+
</div>
|
2505
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
604
2506
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
605
2507
|
<a href="https://github.com/trending?l=ragel-in-ruby-host" class="select-menu-item-text js-select-button-text js-navigation-open">Ragel in Ruby Host</a>
|
606
|
-
</div>
|
607
|
-
<div class="select-menu-item js-navigation-item ">
|
2508
|
+
</div>
|
2509
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2510
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2511
|
+
<a href="https://github.com/trending?l=rdoc" class="select-menu-item-text js-select-button-text js-navigation-open">RDoc</a>
|
2512
|
+
</div>
|
2513
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2514
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2515
|
+
<a href="https://github.com/trending?l=realbasic" class="select-menu-item-text js-select-button-text js-navigation-open">REALbasic</a>
|
2516
|
+
</div>
|
2517
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
608
2518
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
609
2519
|
<a href="https://github.com/trending?l=rebol" class="select-menu-item-text js-select-button-text js-navigation-open">Rebol</a>
|
610
|
-
</div>
|
611
|
-
<div class="select-menu-item js-navigation-item ">
|
2520
|
+
</div>
|
2521
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2522
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2523
|
+
<a href="https://github.com/trending?l=red" class="select-menu-item-text js-select-button-text js-navigation-open">Red</a>
|
2524
|
+
</div>
|
2525
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2526
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2527
|
+
<a href="https://github.com/trending?l=redcode" class="select-menu-item-text js-select-button-text js-navigation-open">Redcode</a>
|
2528
|
+
</div>
|
2529
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2530
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2531
|
+
<a href="https://github.com/trending?l=robotframework" class="select-menu-item-text js-select-button-text js-navigation-open">RobotFramework</a>
|
2532
|
+
</div>
|
2533
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
612
2534
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
613
2535
|
<a href="https://github.com/trending?l=rouge" class="select-menu-item-text js-select-button-text js-navigation-open">Rouge</a>
|
614
|
-
</div>
|
615
|
-
<div class="select-menu-item js-navigation-item ">
|
2536
|
+
</div>
|
2537
|
+
<div class="select-menu-item js-navigation-item selected" role="menuitem">
|
616
2538
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
617
2539
|
<a href="https://github.com/trending?l=ruby" class="select-menu-item-text js-select-button-text js-navigation-open">Ruby</a>
|
618
|
-
</div>
|
619
|
-
<div class="select-menu-item js-navigation-item ">
|
2540
|
+
</div>
|
2541
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
620
2542
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
621
2543
|
<a href="https://github.com/trending?l=rust" class="select-menu-item-text js-select-button-text js-navigation-open">Rust</a>
|
622
|
-
</div>
|
623
|
-
<div class="select-menu-item js-navigation-item ">
|
2544
|
+
</div>
|
2545
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2546
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2547
|
+
<a href="https://github.com/trending?l=sas" class="select-menu-item-text js-select-button-text js-navigation-open">SAS</a>
|
2548
|
+
</div>
|
2549
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
624
2550
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
625
2551
|
<a href="https://github.com/trending?l=scala" class="select-menu-item-text js-select-button-text js-navigation-open">Scala</a>
|
626
|
-
</div>
|
627
|
-
<div class="select-menu-item js-navigation-item ">
|
2552
|
+
</div>
|
2553
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
628
2554
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
629
2555
|
<a href="https://github.com/trending?l=scheme" class="select-menu-item-text js-select-button-text js-navigation-open">Scheme</a>
|
630
|
-
</div>
|
631
|
-
<div class="select-menu-item js-navigation-item ">
|
2556
|
+
</div>
|
2557
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
632
2558
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
633
2559
|
<a href="https://github.com/trending?l=scilab" class="select-menu-item-text js-select-button-text js-navigation-open">Scilab</a>
|
634
|
-
</div>
|
635
|
-
<div class="select-menu-item js-navigation-item ">
|
2560
|
+
</div>
|
2561
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
636
2562
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
637
2563
|
<a href="https://github.com/trending?l=self" class="select-menu-item-text js-select-button-text js-navigation-open">Self</a>
|
638
|
-
</div>
|
639
|
-
<div class="select-menu-item js-navigation-item ">
|
2564
|
+
</div>
|
2565
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
640
2566
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
641
2567
|
<a href="https://github.com/trending?l=bash" class="select-menu-item-text js-select-button-text js-navigation-open">Shell</a>
|
642
|
-
</div>
|
643
|
-
<div class="select-menu-item js-navigation-item ">
|
2568
|
+
</div>
|
2569
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2570
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2571
|
+
<a href="https://github.com/trending?l=shellsession" class="select-menu-item-text js-select-button-text js-navigation-open">ShellSession</a>
|
2572
|
+
</div>
|
2573
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2574
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2575
|
+
<a href="https://github.com/trending?l=shen" class="select-menu-item-text js-select-button-text js-navigation-open">Shen</a>
|
2576
|
+
</div>
|
2577
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
644
2578
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
645
2579
|
<a href="https://github.com/trending?l=slash" class="select-menu-item-text js-select-button-text js-navigation-open">Slash</a>
|
646
|
-
</div>
|
647
|
-
<div class="select-menu-item js-navigation-item ">
|
2580
|
+
</div>
|
2581
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
648
2582
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
649
2583
|
<a href="https://github.com/trending?l=smalltalk" class="select-menu-item-text js-select-button-text js-navigation-open">Smalltalk</a>
|
650
|
-
</div>
|
651
|
-
<div class="select-menu-item js-navigation-item ">
|
2584
|
+
</div>
|
2585
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2586
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2587
|
+
<a href="https://github.com/trending?l=smarty" class="select-menu-item-text js-select-button-text js-navigation-open">Smarty</a>
|
2588
|
+
</div>
|
2589
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2590
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2591
|
+
<a href="https://github.com/trending?l=sourcepawn" class="select-menu-item-text js-select-button-text js-navigation-open">SourcePawn</a>
|
2592
|
+
</div>
|
2593
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2594
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2595
|
+
<a href="https://github.com/trending?l=sqf" class="select-menu-item-text js-select-button-text js-navigation-open">SQF</a>
|
2596
|
+
</div>
|
2597
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2598
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2599
|
+
<a href="https://github.com/trending?l=sql" class="select-menu-item-text js-select-button-text js-navigation-open">SQL</a>
|
2600
|
+
</div>
|
2601
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2602
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2603
|
+
<a href="https://github.com/trending?l=sqlpl" class="select-menu-item-text js-select-button-text js-navigation-open">SQLPL</a>
|
2604
|
+
</div>
|
2605
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
652
2606
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
653
2607
|
<a href="https://github.com/trending?l=squirrel" class="select-menu-item-text js-select-button-text js-navigation-open">Squirrel</a>
|
654
|
-
</div>
|
655
|
-
<div class="select-menu-item js-navigation-item ">
|
2608
|
+
</div>
|
2609
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
656
2610
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
657
2611
|
<a href="https://github.com/trending?l=standard-ml" class="select-menu-item-text js-select-button-text js-navigation-open">Standard ML</a>
|
658
|
-
</div>
|
659
|
-
<div class="select-menu-item js-navigation-item ">
|
2612
|
+
</div>
|
2613
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2614
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2615
|
+
<a href="https://github.com/trending?l=stata" class="select-menu-item-text js-select-button-text js-navigation-open">Stata</a>
|
2616
|
+
</div>
|
2617
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
660
2618
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
661
2619
|
<a href="https://github.com/trending?l=supercollider" class="select-menu-item-text js-select-button-text js-navigation-open">SuperCollider</a>
|
662
|
-
</div>
|
663
|
-
<div class="select-menu-item js-navigation-item ">
|
2620
|
+
</div>
|
2621
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2622
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2623
|
+
<a href="https://github.com/trending?l=swift" class="select-menu-item-text js-select-button-text js-navigation-open">Swift</a>
|
2624
|
+
</div>
|
2625
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2626
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2627
|
+
<a href="https://github.com/trending?l=systemverilog" class="select-menu-item-text js-select-button-text js-navigation-open">SystemVerilog</a>
|
2628
|
+
</div>
|
2629
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
664
2630
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
665
2631
|
<a href="https://github.com/trending?l=tcl" class="select-menu-item-text js-select-button-text js-navigation-open">Tcl</a>
|
666
|
-
</div>
|
667
|
-
<div class="select-menu-item js-navigation-item ">
|
2632
|
+
</div>
|
2633
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2634
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2635
|
+
<a href="https://github.com/trending?l=tea" class="select-menu-item-text js-select-button-text js-navigation-open">Tea</a>
|
2636
|
+
</div>
|
2637
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2638
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2639
|
+
<a href="https://github.com/trending?l=tex" class="select-menu-item-text js-select-button-text js-navigation-open">TeX</a>
|
2640
|
+
</div>
|
2641
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2642
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2643
|
+
<a href="https://github.com/trending?l=thrift" class="select-menu-item-text js-select-button-text js-navigation-open">Thrift</a>
|
2644
|
+
</div>
|
2645
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
668
2646
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
669
2647
|
<a href="https://github.com/trending?l=turing" class="select-menu-item-text js-select-button-text js-navigation-open">Turing</a>
|
670
|
-
</div>
|
671
|
-
<div class="select-menu-item js-navigation-item ">
|
2648
|
+
</div>
|
2649
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
672
2650
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
673
2651
|
<a href="https://github.com/trending?l=txl" class="select-menu-item-text js-select-button-text js-navigation-open">TXL</a>
|
674
|
-
</div>
|
675
|
-
<div class="select-menu-item js-navigation-item ">
|
2652
|
+
</div>
|
2653
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
676
2654
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
677
2655
|
<a href="https://github.com/trending?l=typescript" class="select-menu-item-text js-select-button-text js-navigation-open">TypeScript</a>
|
678
|
-
</div>
|
679
|
-
<div class="select-menu-item js-navigation-item ">
|
2656
|
+
</div>
|
2657
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2658
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2659
|
+
<a href="https://github.com/trending?l=unrealscript" class="select-menu-item-text js-select-button-text js-navigation-open">UnrealScript</a>
|
2660
|
+
</div>
|
2661
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
680
2662
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
681
2663
|
<a href="https://github.com/trending?l=vala" class="select-menu-item-text js-select-button-text js-navigation-open">Vala</a>
|
682
|
-
</div>
|
683
|
-
<div class="select-menu-item js-navigation-item ">
|
2664
|
+
</div>
|
2665
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2666
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2667
|
+
<a href="https://github.com/trending?l=vcl" class="select-menu-item-text js-select-button-text js-navigation-open">VCL</a>
|
2668
|
+
</div>
|
2669
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
684
2670
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
685
2671
|
<a href="https://github.com/trending?l=verilog" class="select-menu-item-text js-select-button-text js-navigation-open">Verilog</a>
|
686
|
-
</div>
|
687
|
-
<div class="select-menu-item js-navigation-item ">
|
2672
|
+
</div>
|
2673
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
688
2674
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
689
2675
|
<a href="https://github.com/trending?l=vhdl" class="select-menu-item-text js-select-button-text js-navigation-open">VHDL</a>
|
690
|
-
</div>
|
691
|
-
<div class="select-menu-item js-navigation-item ">
|
2676
|
+
</div>
|
2677
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
692
2678
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
693
2679
|
<a href="https://github.com/trending?l=vim" class="select-menu-item-text js-select-button-text js-navigation-open">VimL</a>
|
694
|
-
</div>
|
695
|
-
<div class="select-menu-item js-navigation-item ">
|
2680
|
+
</div>
|
2681
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
696
2682
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
697
2683
|
<a href="https://github.com/trending?l=visual-basic" class="select-menu-item-text js-select-button-text js-navigation-open">Visual Basic</a>
|
698
|
-
</div>
|
699
|
-
<div class="select-menu-item js-navigation-item ">
|
2684
|
+
</div>
|
2685
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
700
2686
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
701
2687
|
<a href="https://github.com/trending?l=volt" class="select-menu-item-text js-select-button-text js-navigation-open">Volt</a>
|
702
|
-
</div>
|
703
|
-
<div class="select-menu-item js-navigation-item ">
|
2688
|
+
</div>
|
2689
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2690
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2691
|
+
<a href="https://github.com/trending?l=web-ontology-language" class="select-menu-item-text js-select-button-text js-navigation-open">Web Ontology Language</a>
|
2692
|
+
</div>
|
2693
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2694
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2695
|
+
<a href="https://github.com/trending?l=webidl" class="select-menu-item-text js-select-button-text js-navigation-open">WebIDL</a>
|
2696
|
+
</div>
|
2697
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
704
2698
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
705
2699
|
<a href="https://github.com/trending?l=wisp" class="select-menu-item-text js-select-button-text js-navigation-open">wisp</a>
|
706
|
-
</div>
|
707
|
-
<div class="select-menu-item js-navigation-item ">
|
2700
|
+
</div>
|
2701
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2702
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2703
|
+
<a href="https://github.com/trending?l=xbase" class="select-menu-item-text js-select-button-text js-navigation-open">xBase</a>
|
2704
|
+
</div>
|
2705
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
708
2706
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
709
2707
|
<a href="https://github.com/trending?l=xc" class="select-menu-item-text js-select-button-text js-navigation-open">XC</a>
|
710
|
-
</div>
|
711
|
-
<div class="select-menu-item js-navigation-item ">
|
2708
|
+
</div>
|
2709
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
712
2710
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
713
2711
|
<a href="https://github.com/trending?l=xml" class="select-menu-item-text js-select-button-text js-navigation-open">XML</a>
|
714
|
-
</div>
|
715
|
-
<div class="select-menu-item js-navigation-item ">
|
2712
|
+
</div>
|
2713
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2714
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2715
|
+
<a href="https://github.com/trending?l=xojo" class="select-menu-item-text js-select-button-text js-navigation-open">Xojo</a>
|
2716
|
+
</div>
|
2717
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
716
2718
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
717
2719
|
<a href="https://github.com/trending?l=xproc" class="select-menu-item-text js-select-button-text js-navigation-open">XProc</a>
|
718
|
-
</div>
|
719
|
-
<div class="select-menu-item js-navigation-item ">
|
2720
|
+
</div>
|
2721
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
720
2722
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
721
2723
|
<a href="https://github.com/trending?l=xquery" class="select-menu-item-text js-select-button-text js-navigation-open">XQuery</a>
|
722
|
-
</div>
|
723
|
-
<div class="select-menu-item js-navigation-item ">
|
2724
|
+
</div>
|
2725
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2726
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2727
|
+
<a href="https://github.com/trending?l=xs" class="select-menu-item-text js-select-button-text js-navigation-open">XS</a>
|
2728
|
+
</div>
|
2729
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
724
2730
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
725
2731
|
<a href="https://github.com/trending?l=xslt" class="select-menu-item-text js-select-button-text js-navigation-open">XSLT</a>
|
726
|
-
</div>
|
727
|
-
<div class="select-menu-item js-navigation-item ">
|
2732
|
+
</div>
|
2733
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
728
2734
|
<span class="select-menu-item-icon octicon octicon-check"></span>
|
729
2735
|
<a href="https://github.com/trending?l=xtend" class="select-menu-item-text js-select-button-text js-navigation-open">Xtend</a>
|
730
|
-
</div>
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
</div>
|
739
|
-
|
740
|
-
<div class="callout">
|
741
|
-
<p class="tip"><strong class="protip">ProTip™</strong> Looking for most starred Ruby repositories? <a href="/search?l=ruby&q=stars%3A%3E1&s=stars&type=Repositories">Try this search</a></p>
|
742
|
-
</div>
|
743
|
-
</div>
|
744
|
-
<div class="column main">
|
745
|
-
<div class="tabnav">
|
746
|
-
<ul class="tabnav-tabs" data-pjax>
|
747
|
-
<li><a href="https://github.com/trending?l=ruby" class="selected js-selected-navigation-item tabnav-tab" data-selected-links="trending_repositories https://github.com/trending?l=ruby">Repositories</a></li>
|
748
|
-
<li><a href="https://github.com/trending/developers?l=ruby" class="js-selected-navigation-item tabnav-tab" data-selected-links="trending_developers https://github.com/trending/developers?l=ruby">Developers</a></li>
|
749
|
-
</ul>
|
750
|
-
|
751
|
-
<div class="tabnav-right">
|
752
|
-
<div class="tabnav-widget">
|
753
|
-
<div class="select-menu js-menu-container js-select-menu right-aligned">
|
754
|
-
<span class="minibutton select-menu-button js-menu-target">
|
755
|
-
<i>Trending:</i>
|
756
|
-
<span class="js-select-button">today</span>
|
757
|
-
</span>
|
758
|
-
<div class="select-menu-modal-holder js-menu-content js-navigation-container">
|
759
|
-
<div class="select-menu-modal">
|
760
|
-
<div class="select-menu-header">
|
761
|
-
<span class="select-menu-title">Adjust time span</span>
|
762
|
-
<span class="octicon octicon-remove-close js-menu-close"></span>
|
763
|
-
</div> <!-- /.select-menu-header -->
|
764
|
-
|
765
|
-
<div class="select-menu-list">
|
766
|
-
<div>
|
767
|
-
<a class="select-menu-item js-navigation-item selected" href="https://github.com/trending?l=ruby&since=daily" data-pjax>
|
768
|
-
<span class="select-menu-item-icon octicon octicon-check"></span>
|
769
|
-
<span class="select-menu-item-text js-select-button-text">today</span>
|
770
|
-
</a> <!-- /.select-menu-item -->
|
771
|
-
<a class="select-menu-item js-navigation-item " href="https://github.com/trending?l=ruby&since=weekly" data-pjax>
|
772
|
-
<span class="select-menu-item-icon octicon octicon-check"></span>
|
773
|
-
<span class="select-menu-item-text js-select-button-text">this week</span>
|
774
|
-
</a> <!-- /.select-menu-item -->
|
775
|
-
<a class="select-menu-item js-navigation-item " href="https://github.com/trending?l=ruby&since=monthly" data-pjax>
|
776
|
-
<span class="select-menu-item-icon octicon octicon-check"></span>
|
777
|
-
<span class="select-menu-item-text js-select-button-text">this month</span>
|
778
|
-
</a> <!-- /.select-menu-item -->
|
2736
|
+
</div>
|
2737
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2738
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2739
|
+
<a href="https://github.com/trending?l=zephir" class="select-menu-item-text js-select-button-text js-navigation-open">Zephir</a>
|
2740
|
+
</div>
|
2741
|
+
<div class="select-menu-item js-navigation-item " role="menuitem">
|
2742
|
+
<span class="select-menu-item-icon octicon octicon-check"></span>
|
2743
|
+
<a href="https://github.com/trending?l=zimpl" class="select-menu-item-text js-select-button-text js-navigation-open">Zimpl</a>
|
2744
|
+
</div>
|
779
2745
|
</div>
|
780
2746
|
|
781
|
-
</div> <!-- /.select-menu-list -->
|
782
|
-
|
783
|
-
</div> <!-- /.select-menu-modal -->
|
784
|
-
</div> <!-- /.select-menu-modal-holder -->
|
785
|
-
</div> <!-- /.select-menu -->
|
786
|
-
|
787
|
-
</div>
|
788
|
-
</div>
|
789
2747
|
</div>
|
790
|
-
<div class="explore-content">
|
791
|
-
<ol class="repo-leaderboard-list leaderboard-list">
|
792
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-githug">
|
793
|
-
<a href="#pa-githug" class="leaderboard-list-rank" >#1</a>
|
794
|
-
<span class="mega-octicon octicon-repo"></span>
|
795
|
-
<div class="leaderboard-action">
|
796
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
797
|
-
<a href="/Gazler/githug/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
798
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
799
|
-
</a>
|
800
|
-
<a href="/Gazler/githug/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
801
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
802
|
-
</a>
|
803
|
-
</div>
|
804
|
-
</div>
|
805
|
-
<div class="leaderboard-list-content">
|
806
|
-
<h2 class="repo-leaderboard-title">
|
807
|
-
<a href="/Gazler/githug" class="repository-name"><span class="owner-name">Gazler</span><span class="separator">/</span><strong>githug</strong></a>
|
808
|
-
<span class="title-meta">Ruby</span>
|
809
|
-
</h2>
|
810
|
-
<p class="repo-leaderboard-description">Git your game on!</p>
|
811
|
-
|
812
|
-
<div class="repo-leaderboard-contributors">
|
813
|
-
<a href="/Gazler/githug/graphs/contributors">
|
814
|
-
<span class="contributor-avatar-text">built by</span>
|
815
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/012f4052c6fb1a600a3e4f39e1f2439a?d=https%3A%2F%2Fidenticons.github.com%2F1dd08516d587b823bf6b8ac65e84847d.png&r=x&s=140" title="Gazler" width="20" />
|
816
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/1ec70ae3a6cd5b540a93d00353713eb4?d=https%3A%2F%2Fidenticons.github.com%2F36eaf439ebfb1442baeacd88c36ca58d.png&r=x&s=140" title="guywithnose" width="20" />
|
817
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/40ed131dbac085bb89969ac82faed32d?d=https%3A%2F%2Fidenticons.github.com%2Fad334f70ab534128adbe2705ff0aacb7.png&r=x&s=140" title="dtrodrigues" width="20" />
|
818
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/86ce735f59af85b35fa7416c4b330452?d=https%3A%2F%2Fidenticons.github.com%2F0da507fa69e5cca69d16994b101715e6.png&r=x&s=140" title="thameera" width="20" />
|
819
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/0ba988e6ace3290b49328b83f075a533?d=https%3A%2F%2Fidenticons.github.com%2F0372b3789db17a988add540e1251f52f.png&r=x&s=140" title="dpick" width="20" />
|
820
|
-
</a>
|
821
|
-
</div>
|
822
|
-
</div>
|
823
|
-
|
824
|
-
</li>
|
825
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-termit">
|
826
|
-
<a href="#pa-termit" class="leaderboard-list-rank" >#2</a>
|
827
|
-
<span class="mega-octicon octicon-repo"></span>
|
828
|
-
<div class="leaderboard-action">
|
829
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
830
|
-
<a href="/pawurb/termit/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
831
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
832
|
-
</a>
|
833
|
-
<a href="/pawurb/termit/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
834
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
835
|
-
</a>
|
836
|
-
</div>
|
837
|
-
</div>
|
838
|
-
<div class="leaderboard-list-content">
|
839
|
-
<h2 class="repo-leaderboard-title">
|
840
|
-
<a href="/pawurb/termit" class="repository-name"><span class="owner-name">pawurb</span><span class="separator">/</span><strong>termit</strong></a>
|
841
|
-
<span class="title-meta">Ruby</span>
|
842
|
-
</h2>
|
843
|
-
<p class="repo-leaderboard-description">Google Translate with speech synthesis in your terminal</p>
|
844
|
-
|
845
|
-
<div class="repo-leaderboard-contributors">
|
846
|
-
<a href="/pawurb/termit/graphs/contributors">
|
847
|
-
<span class="contributor-avatar-text">built by</span>
|
848
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/6f0d768b442e8e2ad1cd15d062f981a5?d=https%3A%2F%2Fidenticons.github.com%2F46e90adbac3b761fb1f7b0575c227011.png&r=x&s=140" title="pawurb" width="20" />
|
849
|
-
</a>
|
850
|
-
</div>
|
851
|
-
</div>
|
852
|
-
|
853
|
-
</li>
|
854
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-post_json">
|
855
|
-
<a href="#pa-post_json" class="leaderboard-list-rank" >#3</a>
|
856
|
-
<span class="mega-octicon octicon-repo"></span>
|
857
|
-
<div class="leaderboard-action">
|
858
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
859
|
-
<a href="/webnuts/post_json/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
860
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
861
|
-
</a>
|
862
|
-
<a href="/webnuts/post_json/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
863
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
864
|
-
</a>
|
865
|
-
</div>
|
866
|
-
</div>
|
867
|
-
<div class="leaderboard-list-content">
|
868
|
-
<h2 class="repo-leaderboard-title">
|
869
|
-
<a href="/webnuts/post_json" class="repository-name"><span class="owner-name">webnuts</span><span class="separator">/</span><strong>post_json</strong></a>
|
870
|
-
<span class="title-meta">Ruby</span>
|
871
|
-
</h2>
|
872
|
-
<p class="repo-leaderboard-description">A Fast and Flexible Document Database by Combining Features of Ruby and PostgreSQL with PLV8</p>
|
873
|
-
|
874
|
-
<div class="repo-leaderboard-contributors">
|
875
|
-
<a href="/webnuts/post_json/graphs/contributors">
|
876
|
-
<span class="contributor-avatar-text">built by</span>
|
877
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/efef2028c8029d38d2b91cf9edbef145?d=https%3A%2F%2Fidenticons.github.com%2Ff642b20323660bdd7bc9dd8079d37a16.png&r=x&s=140" title="jacobmadsen" width="20" />
|
878
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/94d443acee6e63ba47a3b4964295c973?d=https%3A%2F%2Fidenticons.github.com%2Ff3957fa3bea9138b3f54f0e18975a30c.png&r=x&s=140" title="elskwid" width="20" />
|
879
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/a249edf6200667ad62e22a1668921810?d=https%3A%2F%2Fidenticons.github.com%2F04e9c6c788a89418a907ff9ee943a5fb.png&r=x&s=140" title="rmontgomery429" width="20" />
|
880
|
-
</a>
|
881
|
-
</div>
|
882
|
-
</div>
|
883
|
-
|
884
|
-
</li>
|
885
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-homebrew">
|
886
|
-
<a href="#pa-homebrew" class="leaderboard-list-rank" >#4</a>
|
887
|
-
<span class="mega-octicon octicon-repo"></span>
|
888
|
-
<div class="leaderboard-action">
|
889
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
890
|
-
<a href="/mxcl/homebrew/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
891
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
892
|
-
</a>
|
893
|
-
<a href="/mxcl/homebrew/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
894
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
895
|
-
</a>
|
896
|
-
</div>
|
897
|
-
</div>
|
898
|
-
<div class="leaderboard-list-content">
|
899
|
-
<h2 class="repo-leaderboard-title">
|
900
|
-
<a href="/mxcl/homebrew" class="repository-name"><span class="owner-name">mxcl</span><span class="separator">/</span><strong>homebrew</strong></a>
|
901
|
-
<span class="title-meta">Ruby</span>
|
902
|
-
</h2>
|
903
|
-
<p class="repo-leaderboard-description">The missing package manager for OS X.</p>
|
904
|
-
|
905
|
-
<div class="repo-leaderboard-contributors">
|
906
|
-
<a href="/mxcl/homebrew/graphs/contributors">
|
907
|
-
<span class="contributor-avatar-text">built by</span>
|
908
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/7ea0cc75793eb2b1ada4abc953a41592?d=https%3A%2F%2Fidenticons.github.com%2F6346dc723395e1ee8ef57f4883be4cb4.png&r=x&s=140" title="adamv" width="20" />
|
909
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/68602fa96bdda4c677ece48ab42b6eb2?d=https%3A%2F%2Fidenticons.github.com%2F1e54e367902e0384023eacc6feeb1c1e.png&r=x&s=140" title="jacknagel" width="20" />
|
910
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/1510549f9353c9859b7b3c81872df09c?d=https%3A%2F%2Fidenticons.github.com%2Fdbf2a92a3d71fdbdc5b30c3bcf27111e.png&r=x&s=140" title="mxcl" width="20" />
|
911
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/08500f9edf14df151b6bb02b807e297c?d=https%3A%2F%2Fidenticons.github.com%2Fe822932efb5c63f52618af8a526cedef.png&r=x&s=140" title="asparagui" width="20" />
|
912
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/215e0166d4d8265395c5d9076da73c70?d=https%3A%2F%2Fidenticons.github.com%2F19e490b885e34ade007230f7a58dc9a4.png&r=x&s=140" title="mikemcquaid" width="20" />
|
913
|
-
</a>
|
914
|
-
</div>
|
915
|
-
</div>
|
916
|
-
|
917
|
-
</li>
|
918
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-homebrew-cask">
|
919
|
-
<a href="#pa-homebrew-cask" class="leaderboard-list-rank" >#5</a>
|
920
|
-
<span class="mega-octicon octicon-repo"></span>
|
921
|
-
<div class="leaderboard-action">
|
922
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
923
|
-
<a href="/phinze/homebrew-cask/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
924
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
925
|
-
</a>
|
926
|
-
<a href="/phinze/homebrew-cask/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
927
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
928
|
-
</a>
|
929
|
-
</div>
|
930
|
-
</div>
|
931
|
-
<div class="leaderboard-list-content">
|
932
|
-
<h2 class="repo-leaderboard-title">
|
933
|
-
<a href="/phinze/homebrew-cask" class="repository-name"><span class="owner-name">phinze</span><span class="separator">/</span><strong>homebrew-cask</strong></a>
|
934
|
-
<span class="title-meta">Ruby</span>
|
935
|
-
</h2>
|
936
|
-
<p class="repo-leaderboard-description">a friendly homebrew-style CLI workflow for the administration of Mac applications distributed as binaries</p>
|
937
|
-
|
938
|
-
<div class="repo-leaderboard-contributors">
|
939
|
-
<a href="/phinze/homebrew-cask/graphs/contributors">
|
940
|
-
<span class="contributor-avatar-text">built by</span>
|
941
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/60448d8d902528fc7ab6f83b242dd74b?d=https%3A%2F%2Fidenticons.github.com%2F45b799dfd3cebacfa8a67f600190c634.png&r=x&s=140" title="vitorgalvao" width="20" />
|
942
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/681c391816f28b83511530df8307fa25?d=https%3A%2F%2Fidenticons.github.com%2F062480e020cc84ccecec43315672c61a.png&r=x&s=140" title="NanoXD" width="20" />
|
943
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/1dad4013c9d7688e54c2a2dbe0a059b3?d=https%3A%2F%2Fidenticons.github.com%2Faddb8025d6d9c09151aac5ea1f7233ec.png&r=x&s=140" title="phinze" width="20" />
|
944
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/23690f877f8b54df713c66cae903a075?d=https%3A%2F%2Fidenticons.github.com%2F152b22bdf7d37bcf70591b13288b6f36.png&r=x&s=140" title="fanquake" width="20" />
|
945
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/4502e4645eee7558b9d3247917c6f14f?d=https%3A%2F%2Fidenticons.github.com%2F081a5f4e1be4b8490c60429a8a4cfe4c.png&r=x&s=140" title="shostakovich" width="20" />
|
946
|
-
</a>
|
947
|
-
</div>
|
948
|
-
</div>
|
949
|
-
|
950
|
-
</li>
|
951
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-gitlabhq">
|
952
|
-
<a href="#pa-gitlabhq" class="leaderboard-list-rank" >#6</a>
|
953
|
-
<span class="mega-octicon octicon-repo"></span>
|
954
|
-
<div class="leaderboard-action">
|
955
|
-
<div class="js-toggler-container js-social-container starring-container on">
|
956
|
-
<a href="/gitlabhq/gitlabhq/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
957
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
958
|
-
</a>
|
959
|
-
<a href="/gitlabhq/gitlabhq/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
960
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
961
|
-
</a>
|
962
|
-
</div>
|
963
|
-
</div>
|
964
|
-
<div class="leaderboard-list-content">
|
965
|
-
<h2 class="repo-leaderboard-title">
|
966
|
-
<a href="/gitlabhq/gitlabhq" class="repository-name"><span class="owner-name">gitlabhq</span><span class="separator">/</span><strong>gitlabhq</strong></a>
|
967
|
-
<span class="title-meta">Ruby</span>
|
968
|
-
</h2>
|
969
|
-
<p class="repo-leaderboard-description">Project management and code hosting application. Follow us on twitter @gitlabhq</p>
|
970
|
-
|
971
|
-
<div class="repo-leaderboard-contributors">
|
972
|
-
<a href="/gitlabhq/gitlabhq/graphs/contributors">
|
973
|
-
<span class="contributor-avatar-text">built by</span>
|
974
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/cd857fed2b3d0f453861246f5f0dad1e?d=https%3A%2F%2Fidenticons.github.com%2Fe26a0580765ad73fcd77f87a1da71cb7.png&r=x&s=140" title="randx" width="20" />
|
975
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/15146920e0ed4c9d194f097b789cf530?d=https%3A%2F%2Fidenticons.github.com%2F8a4ca22e8f0fc74f9eeb9169123d896a.png&r=x&s=140" title="riyad" width="20" />
|
976
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/47b77c89d3ece30b80b49f3319029b56?d=https%3A%2F%2Fidenticons.github.com%2Fe64bad42867496e0a58303142fc6f3ea.png&r=x&s=140" title="vsizov" width="20" />
|
977
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/73c8253932541a7b5cbc5d79493f2bea?d=https%3A%2F%2Fidenticons.github.com%2F9f81250cf78de6e784e780b5c9958cc2.png&r=x&s=140" title="tsigo" width="20" />
|
978
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/144314100b686db946ff68c7ae1065d1?d=https%3A%2F%2Fidenticons.github.com%2Ff98521e3fc8ef22ecf5b28861c3c1424.png&r=x&s=140" title="NARKOZ" width="20" />
|
979
|
-
</a>
|
980
|
-
</div>
|
981
|
-
</div>
|
982
|
-
|
983
|
-
</li>
|
984
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-jop">
|
985
|
-
<a href="#pa-jop" class="leaderboard-list-rank" >#7</a>
|
986
|
-
<span class="mega-octicon octicon-repo"></span>
|
987
|
-
<div class="leaderboard-action">
|
988
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
989
|
-
<a href="/michaelfeathers/jop/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
990
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
991
|
-
</a>
|
992
|
-
<a href="/michaelfeathers/jop/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
993
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
994
|
-
</a>
|
995
|
-
</div>
|
996
|
-
</div>
|
997
|
-
<div class="leaderboard-list-content">
|
998
|
-
<h2 class="repo-leaderboard-title">
|
999
|
-
<a href="/michaelfeathers/jop" class="repository-name"><span class="owner-name">michaelfeathers</span><span class="separator">/</span><strong>jop</strong></a>
|
1000
|
-
<span class="title-meta">Ruby</span>
|
1001
|
-
</h2>
|
1002
|
-
<p class="repo-leaderboard-description">a gem to add J language array commands to Ruby</p>
|
1003
|
-
|
1004
|
-
<div class="repo-leaderboard-contributors">
|
1005
|
-
<a href="/michaelfeathers/jop/graphs/contributors">
|
1006
|
-
<span class="contributor-avatar-text">built by</span>
|
1007
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ed33d0694a8816d57dbc5290202f6a58?d=https%3A%2F%2Fidenticons.github.com%2F0347b06839a9947476e2f970b3f07e66.png&r=x&s=140" title="michaelfeathers" width="20" />
|
1008
|
-
</a>
|
1009
|
-
</div>
|
1010
|
-
</div>
|
1011
|
-
|
1012
|
-
</li>
|
1013
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-synapse">
|
1014
|
-
<a href="#pa-synapse" class="leaderboard-list-rank" >#8</a>
|
1015
|
-
<span class="mega-octicon octicon-repo"></span>
|
1016
|
-
<div class="leaderboard-action">
|
1017
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1018
|
-
<a href="/airbnb/synapse/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1019
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1020
|
-
</a>
|
1021
|
-
<a href="/airbnb/synapse/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1022
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1023
|
-
</a>
|
1024
|
-
</div>
|
1025
|
-
</div>
|
1026
|
-
<div class="leaderboard-list-content">
|
1027
|
-
<h2 class="repo-leaderboard-title">
|
1028
|
-
<a href="/airbnb/synapse" class="repository-name"><span class="owner-name">airbnb</span><span class="separator">/</span><strong>synapse</strong></a>
|
1029
|
-
<span class="title-meta">Ruby</span>
|
1030
|
-
</h2>
|
1031
|
-
|
1032
|
-
<div class="repo-leaderboard-contributors">
|
1033
|
-
<a href="/airbnb/synapse/graphs/contributors">
|
1034
|
-
<span class="contributor-avatar-text">built by</span>
|
1035
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/ced7dfd96b76abc2a68766170b211013?d=https%3A%2F%2Fidenticons.github.com%2F6fa501ffd66deb70ff1abe6f47833621.png&r=x&s=140" title="igor47" width="20" />
|
1036
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/d3ab72cca9386f19daf37d57e4a0a9d2?d=https%3A%2F%2Fidenticons.github.com%2F094bb65ef46d3eb4be0a87877ec333eb.png&r=x&s=140" title="schleyfox" width="20" />
|
1037
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/63fdb44556573392f7157a3b920c8ef1?d=https%3A%2F%2Fidenticons.github.com%2Fd3291c2554192b5d7729a1730c92f3e1.png&r=x&s=140" title="martinrhoads" width="20" />
|
1038
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7383899667bc780957ecaa548940ffc4?d=https%3A%2F%2Fidenticons.github.com%2F51fd081fb2f037078fc8a4e037daabe4.png&r=x&s=140" title="pcarrier" width="20" />
|
1039
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/67b1c99c0e67f92800771499a26c0917?d=https%3A%2F%2Fidenticons.github.com%2F6766486c9f217c9dc002feb3d0b8b720.png&r=x&s=140" title="jtai" width="20" />
|
1040
|
-
</a>
|
1041
|
-
</div>
|
1042
|
-
</div>
|
1043
|
-
|
1044
|
-
</li>
|
1045
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-rails">
|
1046
|
-
<a href="#pa-rails" class="leaderboard-list-rank" >#9</a>
|
1047
|
-
<span class="mega-octicon octicon-repo"></span>
|
1048
|
-
<div class="leaderboard-action">
|
1049
|
-
<div class="js-toggler-container js-social-container starring-container on">
|
1050
|
-
<a href="/rails/rails/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1051
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1052
|
-
</a>
|
1053
|
-
<a href="/rails/rails/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1054
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1055
|
-
</a>
|
1056
|
-
</div>
|
1057
|
-
</div>
|
1058
|
-
<div class="leaderboard-list-content">
|
1059
|
-
<h2 class="repo-leaderboard-title">
|
1060
|
-
<a href="/rails/rails" class="repository-name"><span class="owner-name">rails</span><span class="separator">/</span><strong>rails</strong></a>
|
1061
|
-
<span class="title-meta">Ruby</span>
|
1062
|
-
</h2>
|
1063
|
-
<p class="repo-leaderboard-description">Ruby on Rails</p>
|
1064
|
-
|
1065
|
-
<div class="repo-leaderboard-contributors">
|
1066
|
-
<a href="/rails/rails/graphs/contributors">
|
1067
|
-
<span class="contributor-avatar-text">built by</span>
|
1068
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/ed9635566b34ade32274f510f0f9a6d2?d=https%3A%2F%2Fidenticons.github.com%2Fcdcb2f5c7b071143529ef7f2705dfbc4.png&r=x&s=140" title="dhh" width="20" />
|
1069
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/24d2f8804e6bb4b7ea6bd11e0a586470?d=https%3A%2F%2Fidenticons.github.com%2F84d9ee44e457ddef7f2c4f25dc8fa865.png&r=x&s=140" title="jeremy" width="20" />
|
1070
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/f29327647a9cff5c69618bae420792ea?d=https%3A%2F%2Fidenticons.github.com%2F7c78335a8924215ea5c22fda1aac7b75.png&r=x&s=140" title="tenderlove" width="20" />
|
1071
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/e837f6b7fd146ab16ed3d663476c063e?d=https%3A%2F%2Fidenticons.github.com%2Fe20b21ae6508f22fc189c60a0880d0b8.png&r=x&s=140" title="josevalim" width="20" />
|
1072
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/7223c62b7310e164eb79c740188abbda?d=https%3A%2F%2Fidenticons.github.com%2F4a11654ad1e1e48352252859ff3032a0.png&r=x&s=140" title="fxn" width="20" />
|
1073
|
-
</a>
|
1074
|
-
</div>
|
1075
|
-
</div>
|
1076
|
-
|
1077
|
-
</li>
|
1078
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-nerve">
|
1079
|
-
<a href="#pa-nerve" class="leaderboard-list-rank" >#10</a>
|
1080
|
-
<span class="mega-octicon octicon-repo"></span>
|
1081
|
-
<div class="leaderboard-action">
|
1082
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1083
|
-
<a href="/airbnb/nerve/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1084
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1085
|
-
</a>
|
1086
|
-
<a href="/airbnb/nerve/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1087
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1088
|
-
</a>
|
1089
|
-
</div>
|
1090
|
-
</div>
|
1091
|
-
<div class="leaderboard-list-content">
|
1092
|
-
<h2 class="repo-leaderboard-title">
|
1093
|
-
<a href="/airbnb/nerve" class="repository-name"><span class="owner-name">airbnb</span><span class="separator">/</span><strong>nerve</strong></a>
|
1094
|
-
<span class="title-meta">Ruby</span>
|
1095
|
-
</h2>
|
1096
|
-
<p class="repo-leaderboard-description">Registration daemon for keeping all boxes in Zookeeper</p>
|
1097
|
-
|
1098
|
-
<div class="repo-leaderboard-contributors">
|
1099
|
-
<a href="/airbnb/nerve/graphs/contributors">
|
1100
|
-
<span class="contributor-avatar-text">built by</span>
|
1101
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/ced7dfd96b76abc2a68766170b211013?d=https%3A%2F%2Fidenticons.github.com%2F6fa501ffd66deb70ff1abe6f47833621.png&r=x&s=140" title="igor47" width="20" />
|
1102
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/63fdb44556573392f7157a3b920c8ef1?d=https%3A%2F%2Fidenticons.github.com%2Fd3291c2554192b5d7729a1730c92f3e1.png&r=x&s=140" title="martinrhoads" width="20" />
|
1103
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7383899667bc780957ecaa548940ffc4?d=https%3A%2F%2Fidenticons.github.com%2F51fd081fb2f037078fc8a4e037daabe4.png&r=x&s=140" title="pcarrier" width="20" />
|
1104
|
-
</a>
|
1105
|
-
</div>
|
1106
|
-
</div>
|
1107
|
-
|
1108
|
-
</li>
|
1109
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-jekyll">
|
1110
|
-
<a href="#pa-jekyll" class="leaderboard-list-rank" >#11</a>
|
1111
|
-
<span class="mega-octicon octicon-repo"></span>
|
1112
|
-
<div class="leaderboard-action">
|
1113
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1114
|
-
<a href="/mojombo/jekyll/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1115
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1116
|
-
</a>
|
1117
|
-
<a href="/mojombo/jekyll/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1118
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1119
|
-
</a>
|
1120
|
-
</div>
|
1121
|
-
</div>
|
1122
|
-
<div class="leaderboard-list-content">
|
1123
|
-
<h2 class="repo-leaderboard-title">
|
1124
|
-
<a href="/mojombo/jekyll" class="repository-name"><span class="owner-name">mojombo</span><span class="separator">/</span><strong>jekyll</strong></a>
|
1125
|
-
<span class="title-meta">Ruby</span>
|
1126
|
-
</h2>
|
1127
|
-
<p class="repo-leaderboard-description">Jekyll is a blog-aware, static site generator in Ruby</p>
|
1128
|
-
|
1129
|
-
<div class="repo-leaderboard-contributors">
|
1130
|
-
<a href="/mojombo/jekyll/graphs/contributors">
|
1131
|
-
<span class="contributor-avatar-text">built by</span>
|
1132
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/3b05198379f4b275d304fd27e6cb09ae?d=https%3A%2F%2Fidenticons.github.com%2Fa6066ba3563c5bdc4affcf5c2e79b5af.png&r=x&s=140" title="parkr" width="20" />
|
1133
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https%3A%2F%2Fidenticons.github.com%2Fc4ca4238a0b923820dcc509a6f75849b.png&r=x&s=140" title="mojombo" width="20" />
|
1134
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/bcd88817ec5ed065ed5e3693ab46f924?d=https%3A%2F%2Fidenticons.github.com%2F77c455b23b0a3d2708dc0defa54bd676.png&r=x&s=140" title="mattr-" width="20" />
|
1135
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/dc22e33ae876807759a880a90b07e71f?d=https%3A%2F%2Fidenticons.github.com%2Fc186468c037a057053500cab50272add.png&r=x&s=140" title="maul-esel" width="20" />
|
1136
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/eb8975af8e49e19e3dd6b6b84a542e26?d=https%3A%2F%2Fidenticons.github.com%2Fe3743b463beb38a2a24eebe5ecbad410.png&r=x&s=140" title="qrush" width="20" />
|
1137
|
-
</a>
|
1138
|
-
</div>
|
1139
|
-
</div>
|
1140
|
-
|
1141
|
-
</li>
|
1142
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-envconfig">
|
1143
|
-
<a href="#pa-envconfig" class="leaderboard-list-rank" >#12</a>
|
1144
|
-
<span class="mega-octicon octicon-repo"></span>
|
1145
|
-
<div class="leaderboard-action">
|
1146
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1147
|
-
<a href="/broadstack/envconfig/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1148
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1149
|
-
</a>
|
1150
|
-
<a href="/broadstack/envconfig/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1151
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1152
|
-
</a>
|
1153
|
-
</div>
|
1154
|
-
</div>
|
1155
|
-
<div class="leaderboard-list-content">
|
1156
|
-
<h2 class="repo-leaderboard-title">
|
1157
|
-
<a href="/broadstack/envconfig" class="repository-name"><span class="owner-name">broadstack</span><span class="separator">/</span><strong>envconfig</strong></a>
|
1158
|
-
<span class="title-meta">Ruby</span>
|
1159
|
-
</h2>
|
1160
|
-
<p class="repo-leaderboard-description">Connect your Rails app to backing services via Broadstack/Heroku-style ENV vars.</p>
|
1161
|
-
|
1162
|
-
<div class="repo-leaderboard-contributors">
|
1163
|
-
<a href="/broadstack/envconfig/graphs/contributors">
|
1164
|
-
<span class="contributor-avatar-text">built by</span>
|
1165
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/f0b6cad84e199bbd863bf7459ff98870?d=https%3A%2F%2Fidenticons.github.com%2Ff1a58918e5937cbf008a17b8ce77b579.png&r=x&s=140" title="pda" width="20" />
|
1166
|
-
</a>
|
1167
|
-
</div>
|
1168
|
-
</div>
|
1169
|
-
|
1170
|
-
</li>
|
1171
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-vagrant">
|
1172
|
-
<a href="#pa-vagrant" class="leaderboard-list-rank" >#13</a>
|
1173
|
-
<span class="mega-octicon octicon-repo"></span>
|
1174
|
-
<div class="leaderboard-action">
|
1175
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1176
|
-
<a href="/mitchellh/vagrant/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1177
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1178
|
-
</a>
|
1179
|
-
<a href="/mitchellh/vagrant/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1180
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1181
|
-
</a>
|
1182
|
-
</div>
|
1183
|
-
</div>
|
1184
|
-
<div class="leaderboard-list-content">
|
1185
|
-
<h2 class="repo-leaderboard-title">
|
1186
|
-
<a href="/mitchellh/vagrant" class="repository-name"><span class="owner-name">mitchellh</span><span class="separator">/</span><strong>vagrant</strong></a>
|
1187
|
-
<span class="title-meta">Ruby</span>
|
1188
|
-
</h2>
|
1189
|
-
<p class="repo-leaderboard-description">Vagrant is a tool for building and distributing working environments.</p>
|
1190
|
-
|
1191
|
-
<div class="repo-leaderboard-contributors">
|
1192
|
-
<a href="/mitchellh/vagrant/graphs/contributors">
|
1193
|
-
<span class="contributor-avatar-text">built by</span>
|
1194
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/2828f28fb012308a7786eee83b8293c5?d=https%3A%2F%2Fidenticons.github.com%2Fa0833c8a1817526ac555f8d67727caf6.png&r=x&s=140" title="mitchellh" width="20" />
|
1195
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/20196c9dc97267632ce6e6b778361eae?d=https%3A%2F%2Fidenticons.github.com%2Ff8ee3bdb4999cd30c1d8931585db1a7b.png&r=x&s=140" title="johnbender" width="20" />
|
1196
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/a198addd98dd9f149c7964a1340c9772?d=https%3A%2F%2Fidenticons.github.com%2F7a710bd01267a8d2f412c4c11299b93e.png&r=x&s=140" title="fgrehm" width="20" />
|
1197
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/a77ea938e04a0ee71a96301b6bfea2b7?d=https%3A%2F%2Fidenticons.github.com%2Fdfe1265e7f07582e64a0ded43830d2ae.png&r=x&s=140" title="gildegoma" width="20" />
|
1198
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/4fcab9e6b801d7f775b4b3a8ee81846d?d=https%3A%2F%2Fidenticons.github.com%2Fbdb6920adcd0457aa17b53b22963dad9.png&r=x&s=140" title="commandtab" width="20" />
|
1199
|
-
</a>
|
1200
|
-
</div>
|
1201
|
-
</div>
|
1202
|
-
|
1203
|
-
</li>
|
1204
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-solved-by-flexbox">
|
1205
|
-
<a href="#pa-solved-by-flexbox" class="leaderboard-list-rank" >#14</a>
|
1206
|
-
<span class="mega-octicon octicon-repo"></span>
|
1207
|
-
<div class="leaderboard-action">
|
1208
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1209
|
-
<a href="/philipwalton/solved-by-flexbox/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1210
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1211
|
-
</a>
|
1212
|
-
<a href="/philipwalton/solved-by-flexbox/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1213
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1214
|
-
</a>
|
1215
|
-
</div>
|
1216
|
-
</div>
|
1217
|
-
<div class="leaderboard-list-content">
|
1218
|
-
<h2 class="repo-leaderboard-title">
|
1219
|
-
<a href="/philipwalton/solved-by-flexbox" class="repository-name"><span class="owner-name">philipwalton</span><span class="separator">/</span><strong>solved-by-flexbox</strong></a>
|
1220
|
-
<span class="title-meta">Ruby</span>
|
1221
|
-
</h2>
|
1222
|
-
<p class="repo-leaderboard-description">A showcase of problems once hard or impossible to solve with CSS alone, now made trivially easy with Flexbox.</p>
|
1223
|
-
|
1224
|
-
<div class="repo-leaderboard-contributors">
|
1225
|
-
<a href="/philipwalton/solved-by-flexbox/graphs/contributors">
|
1226
|
-
<span class="contributor-avatar-text">built by</span>
|
1227
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/81173562da1e1c9ae2ddd0df69ec4f69?d=https%3A%2F%2Fidenticons.github.com%2F700ec6d4c902c6ec0d312e217a69a1d4.png&r=x&s=140" title="philipwalton" width="20" />
|
1228
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/a7be9e756c24b601e6010886fe74430d?d=https%3A%2F%2Fidenticons.github.com%2F14c27feb915d73d39a09f471c9ae6e7e.png&r=x&s=140" title="djm" width="20" />
|
1229
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/78a1d179e9270112becdf836b6ee7489?d=https%3A%2F%2Fidenticons.github.com%2F009caeaa6970487e16c413ec072a9375.png&r=x&s=140" title="lukeasrodgers" width="20" />
|
1230
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/89ca31df633ff09b7ff3164923cfcf1d?d=https%3A%2F%2Fidenticons.github.com%2Ff5cb679fb94a7010dbe4e90776195124.png&r=x&s=140" title="ericbock" width="20" />
|
1231
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/46a37926f07c832c4507f46a2e4640ee?d=https%3A%2F%2Fidenticons.github.com%2F04eb8989f07d878d029c9dcdcb6a3bd7.png&r=x&s=140" title="eric-brechemier" width="20" />
|
1232
|
-
</a>
|
1233
|
-
</div>
|
1234
|
-
</div>
|
1235
|
-
|
1236
|
-
</li>
|
1237
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-devise">
|
1238
|
-
<a href="#pa-devise" class="leaderboard-list-rank" >#15</a>
|
1239
|
-
<span class="mega-octicon octicon-repo"></span>
|
1240
|
-
<div class="leaderboard-action">
|
1241
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1242
|
-
<a href="/plataformatec/devise/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1243
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1244
|
-
</a>
|
1245
|
-
<a href="/plataformatec/devise/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1246
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1247
|
-
</a>
|
1248
|
-
</div>
|
1249
|
-
</div>
|
1250
|
-
<div class="leaderboard-list-content">
|
1251
|
-
<h2 class="repo-leaderboard-title">
|
1252
|
-
<a href="/plataformatec/devise" class="repository-name"><span class="owner-name">plataformatec</span><span class="separator">/</span><strong>devise</strong></a>
|
1253
|
-
<span class="title-meta">Ruby</span>
|
1254
|
-
</h2>
|
1255
|
-
<p class="repo-leaderboard-description">Flexible authentication solution for Rails with Warden.</p>
|
1256
|
-
|
1257
|
-
<div class="repo-leaderboard-contributors">
|
1258
|
-
<a href="/plataformatec/devise/graphs/contributors">
|
1259
|
-
<span class="contributor-avatar-text">built by</span>
|
1260
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/e837f6b7fd146ab16ed3d663476c063e?d=https%3A%2F%2Fidenticons.github.com%2Fe20b21ae6508f22fc189c60a0880d0b8.png&r=x&s=140" title="josevalim" width="20" />
|
1261
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/77237b97a465ae5a293ad323b7296837?d=https%3A%2F%2Fidenticons.github.com%2F60b997fd68261ce70cadaf6c8226c042.png&r=x&s=140" title="carlosantoniodasilva" width="20" />
|
1262
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/608b32640d0fca097b40bc6a28cadc5f?d=https%3A%2F%2Fidenticons.github.com%2F58fdb9d442eece41d3f252a6f2695f50.png&r=x&s=140" title="nashby" width="20" />
|
1263
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/0525b332aafb83307b32d9747a93de03?d=https%3A%2F%2Fidenticons.github.com%2F2c7b84fa30f0cea96a90729afe2970a0.png&r=x&s=140" title="rafaelfranca" width="20" />
|
1264
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/52768c312df1986d42157a7e51401705?d=https%3A%2F%2Fidenticons.github.com%2Fc9a8a89997dec2c49626cd70b7849142.png&r=x&s=140" title="latortuga" width="20" />
|
1265
|
-
</a>
|
1266
|
-
</div>
|
1267
|
-
</div>
|
1268
|
-
|
1269
|
-
</li>
|
1270
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-grape">
|
1271
|
-
<a href="#pa-grape" class="leaderboard-list-rank" >#16</a>
|
1272
|
-
<span class="mega-octicon octicon-repo"></span>
|
1273
|
-
<div class="leaderboard-action">
|
1274
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1275
|
-
<a href="/intridea/grape/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1276
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1277
|
-
</a>
|
1278
|
-
<a href="/intridea/grape/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1279
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1280
|
-
</a>
|
1281
|
-
</div>
|
1282
|
-
</div>
|
1283
|
-
<div class="leaderboard-list-content">
|
1284
|
-
<h2 class="repo-leaderboard-title">
|
1285
|
-
<a href="/intridea/grape" class="repository-name"><span class="owner-name">intridea</span><span class="separator">/</span><strong>grape</strong></a>
|
1286
|
-
<span class="title-meta">Ruby</span>
|
1287
|
-
</h2>
|
1288
|
-
<p class="repo-leaderboard-description">An opinionated micro-framework for creating REST-like APIs in Ruby.</p>
|
1289
|
-
|
1290
|
-
<div class="repo-leaderboard-contributors">
|
1291
|
-
<a href="/intridea/grape/graphs/contributors">
|
1292
|
-
<span class="contributor-avatar-text">built by</span>
|
1293
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/3d925b45ac07ec0ae5bd04888f6c5b61?d=https%3A%2F%2Fidenticons.github.com%2F544e7e1888e2ab9505f934d2e867816e.png&r=x&s=140" title="dblock" width="20" />
|
1294
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/69dc78b59ef008c58e6e842f9f3e0624?d=https%3A%2F%2Fidenticons.github.com%2F93d65641ff3f1586614cf2c1ad240b6c.png&r=x&s=140" title="mbleigh" width="20" />
|
1295
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/acd4b5803e806bf0ed70299f15cd6d18?d=https%3A%2F%2Fidenticons.github.com%2Fa1af768d3b16885b8eb893d58712c1ea.png&r=x&s=140" title="jch" width="20" />
|
1296
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/4878e29ae5e208004407f76d9d61b2c6?d=https%3A%2F%2Fidenticons.github.com%2F1846253dc20c55075c7a4b1a7fdc08ba.png&r=x&s=140" title="adamgotterer" width="20" />
|
1297
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/fba64172c71f672ac94ae134d5941845?d=https%3A%2F%2Fidenticons.github.com%2F09058854e82f1c0cfaa894ff6daedab0.png&r=x&s=140" title="niedhui" width="20" />
|
1298
|
-
</a>
|
1299
|
-
</div>
|
1300
|
-
</div>
|
1301
|
-
|
1302
|
-
</li>
|
1303
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-sandi_meter">
|
1304
|
-
<a href="#pa-sandi_meter" class="leaderboard-list-rank" >#17</a>
|
1305
|
-
<span class="mega-octicon octicon-repo"></span>
|
1306
|
-
<div class="leaderboard-action">
|
1307
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1308
|
-
<a href="/makaroni4/sandi_meter/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1309
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1310
|
-
</a>
|
1311
|
-
<a href="/makaroni4/sandi_meter/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1312
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1313
|
-
</a>
|
1314
|
-
</div>
|
1315
|
-
</div>
|
1316
|
-
<div class="leaderboard-list-content">
|
1317
|
-
<h2 class="repo-leaderboard-title">
|
1318
|
-
<a href="/makaroni4/sandi_meter" class="repository-name"><span class="owner-name">makaroni4</span><span class="separator">/</span><strong>sandi_meter</strong></a>
|
1319
|
-
<span class="title-meta">Ruby</span>
|
1320
|
-
</h2>
|
1321
|
-
<p class="repo-leaderboard-description">Static analysis tool for checking Ruby code for Sandi Metz' rules.</p>
|
1322
|
-
|
1323
|
-
<div class="repo-leaderboard-contributors">
|
1324
|
-
<a href="/makaroni4/sandi_meter/graphs/contributors">
|
1325
|
-
<span class="contributor-avatar-text">built by</span>
|
1326
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/e302c3320cd14b02cbe237b479d7f884?d=https%3A%2F%2Fidenticons.github.com%2F59f6c86ebe1eb6e6b645806e2265ecaa.png&r=x&s=140" title="makaroni4" width="20" />
|
1327
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/757fb0d5ec7560b6f25f5bd98eadc020?d=https%3A%2F%2Fidenticons.github.com%2F72b24d07afb8c3538d72b34ebe3ad861.png&r=x&s=140" title="releu" width="20" />
|
1328
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7033d0e84d10d256a4b850461f69a10b?d=https%3A%2F%2Fidenticons.github.com%2Fb937176da86d4bb5f0ac63aaecf540ea.png&r=x&s=140" title="pfhawkins" width="20" />
|
1329
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ab074ca0a48f06ab110c374fc7db258e?d=https%3A%2F%2Fidenticons.github.com%2F9ecbe556e1e6a72c798fbe0f3e860e4f.png&r=x&s=140" title="kirs" width="20" />
|
1330
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/df3fb5eed615107632dbc0d071535a3d?d=https%3A%2F%2Fidenticons.github.com%2F4ad7ff9e9ca9b90af61c4d09898d76f4.png&r=x&s=140" title="DNNX" width="20" />
|
1331
|
-
</a>
|
1332
|
-
</div>
|
1333
|
-
</div>
|
1334
|
-
|
1335
|
-
</li>
|
1336
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-fpm">
|
1337
|
-
<a href="#pa-fpm" class="leaderboard-list-rank" >#18</a>
|
1338
|
-
<span class="mega-octicon octicon-repo"></span>
|
1339
|
-
<div class="leaderboard-action">
|
1340
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1341
|
-
<a href="/jordansissel/fpm/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1342
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1343
|
-
</a>
|
1344
|
-
<a href="/jordansissel/fpm/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1345
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1346
|
-
</a>
|
1347
|
-
</div>
|
1348
|
-
</div>
|
1349
|
-
<div class="leaderboard-list-content">
|
1350
|
-
<h2 class="repo-leaderboard-title">
|
1351
|
-
<a href="/jordansissel/fpm" class="repository-name"><span class="owner-name">jordansissel</span><span class="separator">/</span><strong>fpm</strong></a>
|
1352
|
-
<span class="title-meta">Ruby</span>
|
1353
|
-
</h2>
|
1354
|
-
<p class="repo-leaderboard-description">Effing package managers! Build packages for multiple platforms (deb, rpm, etc) with great ease and sanity.</p>
|
1355
|
-
|
1356
|
-
<div class="repo-leaderboard-contributors">
|
1357
|
-
<a href="/jordansissel/fpm/graphs/contributors">
|
1358
|
-
<span class="contributor-avatar-text">built by</span>
|
1359
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/75fdd336ae5f818276f1cf79e0468b2d?d=https%3A%2F%2Fidenticons.github.com%2F983c25e4d13d98f06c505afe2a937b4d.png&r=x&s=140" title="jordansissel" width="20" />
|
1360
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/5f80219d708a330825a60d7078efd11f?d=https%3A%2F%2Fidenticons.github.com%2F6d9fd9ad863cd2e5843f3dd9b83f2006.png&r=x&s=140" title="r4um" width="20" />
|
1361
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/7d065cd3cd3a48dfc259cdb834332de6?d=https%3A%2F%2Fidenticons.github.com%2F0a52c370451194f98b199fbfc7d84078.png&r=x&s=140" title="jayferd" width="20" />
|
1362
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/d47656e20ff5e42f125fc5ea0fd636c6?d=https%3A%2F%2Fidenticons.github.com%2Fdda04f9d634145a9c68d5dfe53b21272.png&r=x&s=140" title="tmm1" width="20" />
|
1363
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/0d8eae52831433c930e48ebe798141dc?d=https%3A%2F%2Fidenticons.github.com%2F792ca1d7ae51ce36fa29d8636acfd3dd.png&r=x&s=140" title="hatt" width="20" />
|
1364
|
-
</a>
|
1365
|
-
</div>
|
1366
|
-
</div>
|
1367
2748
|
|
1368
|
-
|
1369
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-octopress">
|
1370
|
-
<a href="#pa-octopress" class="leaderboard-list-rank" >#19</a>
|
1371
|
-
<span class="mega-octicon octicon-repo"></span>
|
1372
|
-
<div class="leaderboard-action">
|
1373
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1374
|
-
<a href="/imathis/octopress/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1375
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1376
|
-
</a>
|
1377
|
-
<a href="/imathis/octopress/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1378
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1379
|
-
</a>
|
1380
|
-
</div>
|
1381
|
-
</div>
|
1382
|
-
<div class="leaderboard-list-content">
|
1383
|
-
<h2 class="repo-leaderboard-title">
|
1384
|
-
<a href="/imathis/octopress" class="repository-name"><span class="owner-name">imathis</span><span class="separator">/</span><strong>octopress</strong></a>
|
1385
|
-
<span class="title-meta">Ruby</span>
|
1386
|
-
</h2>
|
1387
|
-
<p class="repo-leaderboard-description">Octopress is an obsessively designed framework for Jekyll blogging. It’s easy to configure and easy to deploy. Sweet huh?</p>
|
1388
|
-
|
1389
|
-
<div class="repo-leaderboard-contributors">
|
1390
|
-
<a href="/imathis/octopress/graphs/contributors">
|
1391
|
-
<span class="contributor-avatar-text">built by</span>
|
1392
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/c86443373fbfe92996aa882d0d7a59f8?d=https%3A%2F%2Fidenticons.github.com%2F36157dc9be261fec78aeee1a94158c26.png&r=x&s=140" title="imathis" width="20" />
|
1393
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/9cfc21bacab0bac4bd3f53947612e079?d=https%3A%2F%2Fidenticons.github.com%2Fcb6e2b922ce444cbc0b2a7b0522730cc.png&r=x&s=140" title="fhemberger" width="20" />
|
1394
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/3b05198379f4b275d304fd27e6cb09ae?d=https%3A%2F%2Fidenticons.github.com%2Fa6066ba3563c5bdc4affcf5c2e79b5af.png&r=x&s=140" title="parkr" width="20" />
|
1395
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/d021d34aba01b42a4ef25c6148d84a64?d=https%3A%2F%2Fidenticons.github.com%2F1f8fe28e9283d7b5300af087a298f200.png&r=x&s=140" title="pilif" width="20" />
|
1396
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ca122eca5d377d3a3e856aee13ec0cc9?d=https%3A%2F%2Fidenticons.github.com%2Fa87736c4bda7d30d55bfcb904e438da8.png&r=x&s=140" title="dbloete" width="20" />
|
1397
|
-
</a>
|
1398
|
-
</div>
|
1399
|
-
</div>
|
1400
|
-
|
1401
|
-
</li>
|
1402
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-Feedly">
|
1403
|
-
<a href="#pa-Feedly" class="leaderboard-list-rank" >#20</a>
|
1404
|
-
<span class="mega-octicon octicon-repo"></span>
|
1405
|
-
<div class="leaderboard-action">
|
1406
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1407
|
-
<a href="/tschellenbach/Feedly/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1408
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1409
|
-
</a>
|
1410
|
-
<a href="/tschellenbach/Feedly/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1411
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1412
|
-
</a>
|
1413
|
-
</div>
|
1414
|
-
</div>
|
1415
|
-
<div class="leaderboard-list-content">
|
1416
|
-
<h2 class="repo-leaderboard-title">
|
1417
|
-
<a href="/tschellenbach/Feedly" class="repository-name"><span class="owner-name">tschellenbach</span><span class="separator">/</span><strong>Feedly</strong></a>
|
1418
|
-
<span class="title-meta">Ruby</span>
|
1419
|
-
</h2>
|
1420
|
-
<p class="repo-leaderboard-description">Feedly is a Python library, which allows you to build newsfeed and notification systems using Cassandra and/or Redis.</p>
|
1421
|
-
|
1422
|
-
<div class="repo-leaderboard-contributors">
|
1423
|
-
<a href="/tschellenbach/Feedly/graphs/contributors">
|
1424
|
-
<span class="contributor-avatar-text">built by</span>
|
1425
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/55d71ad27f79006049e236f8254e2548?d=https%3A%2F%2Fidenticons.github.com%2Ff28b4b51a140ef6d26549c663f34c0c3.png&r=x&s=140" title="tschellenbach" width="20" />
|
1426
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/a381152cd980d15f58e0016c996ab254?d=https%3A%2F%2Fidenticons.github.com%2F6adc41a67e52a9521321bac23b0d193f.png&r=x&s=140" title="tbarbugli" width="20" />
|
1427
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/c74729d8cfdd53659e749fa0403e9df8?d=https%3A%2F%2Fidenticons.github.com%2F6c5184483cf53cdccb474420b29a911c.png&r=x&s=140" title="gumuz" width="20" />
|
1428
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/b919c64473b3fb6200eefd27987f3407?d=https%3A%2F%2Fidenticons.github.com%2F5f4c9e35c043b2f85affa590cc70fd5e.png&r=x&s=140" title="pterk" width="20" />
|
1429
|
-
</a>
|
1430
|
-
</div>
|
1431
|
-
</div>
|
1432
|
-
|
1433
|
-
</li>
|
1434
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-wraith">
|
1435
|
-
<a href="#pa-wraith" class="leaderboard-list-rank" >#21</a>
|
1436
|
-
<span class="mega-octicon octicon-repo"></span>
|
1437
|
-
<div class="leaderboard-action">
|
1438
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1439
|
-
<a href="/BBC-News/wraith/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1440
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1441
|
-
</a>
|
1442
|
-
<a href="/BBC-News/wraith/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1443
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1444
|
-
</a>
|
1445
|
-
</div>
|
1446
|
-
</div>
|
1447
|
-
<div class="leaderboard-list-content">
|
1448
|
-
<h2 class="repo-leaderboard-title">
|
1449
|
-
<a href="/BBC-News/wraith" class="repository-name"><span class="owner-name">BBC-News</span><span class="separator">/</span><strong>wraith</strong></a>
|
1450
|
-
<span class="title-meta">Ruby</span>
|
1451
|
-
</h2>
|
1452
|
-
<p class="repo-leaderboard-description">Wraith — A responsive screenshot comparison tool</p>
|
1453
|
-
|
1454
|
-
<div class="repo-leaderboard-contributors">
|
1455
|
-
<a href="/BBC-News/wraith/graphs/contributors">
|
1456
|
-
<span class="contributor-avatar-text">built by</span>
|
1457
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/8b54b4a8ac7bc3bf1828c145f4ed0304?d=https%3A%2F%2Fidenticons.github.com%2F6fde2f8627c58ff3c8d4408345f6d9d7.png&r=x&s=140" title="DaveBlooman" width="20" />
|
1458
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/1a756fcdfb3b630ee30dfc3d4ad167d8?d=https%3A%2F%2Fidenticons.github.com%2F176c08a3ecf366d011f4d5e515a1b0a3.png&r=x&s=140" title="sthulb" width="20" />
|
1459
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/85a9fce93e576e9e99eed5a61a7e5c4a?d=https%3A%2F%2Fidenticons.github.com%2F87eae3cec9f4eb06dd9d46e690f95010.png&r=x&s=140" title="jcleveley" width="20" />
|
1460
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/f9dd396e4dafc538388663ad974535c9?d=https%3A%2F%2Fidenticons.github.com%2F484ef8909a8d6f0a6332332da8408998.png&r=x&s=140" title="doryphores" width="20" />
|
1461
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/5c57901d206786defdeb1722379f0375?d=https%3A%2F%2Fidenticons.github.com%2Fb270920e1267c8fde0f4b25703fb3f96.png&r=x&s=140" title="rory-geoghegan-ecometrica" width="20" />
|
1462
|
-
</a>
|
1463
|
-
</div>
|
1464
|
-
</div>
|
1465
|
-
|
1466
|
-
</li>
|
1467
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-capistrano">
|
1468
|
-
<a href="#pa-capistrano" class="leaderboard-list-rank" >#22</a>
|
1469
|
-
<span class="mega-octicon octicon-repo"></span>
|
1470
|
-
<div class="leaderboard-action">
|
1471
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1472
|
-
<a href="/capistrano/capistrano/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1473
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1474
|
-
</a>
|
1475
|
-
<a href="/capistrano/capistrano/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1476
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1477
|
-
</a>
|
1478
|
-
</div>
|
1479
|
-
</div>
|
1480
|
-
<div class="leaderboard-list-content">
|
1481
|
-
<h2 class="repo-leaderboard-title">
|
1482
|
-
<a href="/capistrano/capistrano" class="repository-name"><span class="owner-name">capistrano</span><span class="separator">/</span><strong>capistrano</strong></a>
|
1483
|
-
<span class="title-meta">Ruby</span>
|
1484
|
-
</h2>
|
1485
|
-
<p class="repo-leaderboard-description">Remote multi-server automation tool</p>
|
1486
|
-
|
1487
|
-
<div class="repo-leaderboard-contributors">
|
1488
|
-
<a href="/capistrano/capistrano/graphs/contributors">
|
1489
|
-
<span class="contributor-avatar-text">built by</span>
|
1490
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/464fcebf9fea1a3126f7602d4b748914?d=https%3A%2F%2Fidenticons.github.com%2F804a2e52fd3faec33d13e309023b4022.png&r=x&s=140" title="seenmyfate" width="20" />
|
1491
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/959be122ff68722c18fc41e487e9465d?d=https%3A%2F%2Fidenticons.github.com%2F2328fb211593bf76f1e22ff0554cb420.png&r=x&s=140" title="leehambley" width="20" />
|
1492
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/37ef5e5ddd4b05465000dbea5d4b22e2?d=https%3A%2F%2Fidenticons.github.com%2F4cef360eb538876a560f897552b0ce8a.png&r=x&s=140" title="teohm" width="20" />
|
1493
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/ab074ca0a48f06ab110c374fc7db258e?d=https%3A%2F%2Fidenticons.github.com%2F9ecbe556e1e6a72c798fbe0f3e860e4f.png&r=x&s=140" title="kirs" width="20" />
|
1494
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/4964bad1252f34c95f18c0862edb5c23?d=https%3A%2F%2Fidenticons.github.com%2F77330e1330ae2b086e5bfcae50d9ffae.png&r=x&s=140" title="korin" width="20" />
|
1495
|
-
</a>
|
1496
|
-
</div>
|
1497
|
-
</div>
|
1498
|
-
|
1499
|
-
</li>
|
1500
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-sinatra">
|
1501
|
-
<a href="#pa-sinatra" class="leaderboard-list-rank" >#23</a>
|
1502
|
-
<span class="mega-octicon octicon-repo-forked"></span>
|
1503
|
-
<div class="leaderboard-action">
|
1504
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1505
|
-
<a href="/sinatra/sinatra/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1506
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1507
|
-
</a>
|
1508
|
-
<a href="/sinatra/sinatra/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1509
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1510
|
-
</a>
|
1511
|
-
</div>
|
1512
|
-
</div>
|
1513
|
-
<div class="leaderboard-list-content">
|
1514
|
-
<h2 class="repo-leaderboard-title">
|
1515
|
-
<a href="/sinatra/sinatra" class="repository-name"><span class="owner-name">sinatra</span><span class="separator">/</span><strong>sinatra</strong></a>
|
1516
|
-
<span class="title-meta">Ruby</span>
|
1517
|
-
</h2>
|
1518
|
-
<p class="repo-leaderboard-description">Classy web-development dressed in a DSL (official / canonical repo)</p>
|
1519
|
-
|
1520
|
-
<div class="repo-leaderboard-contributors">
|
1521
|
-
<a href="/sinatra/sinatra/graphs/contributors">
|
1522
|
-
<span class="contributor-avatar-text">built by</span>
|
1523
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/5c2b452f6eea4a6d84c105ebd971d2a4?d=https%3A%2F%2Fidenticons.github.com%2F2ae3d2aaceaf26246581744124859b07.png&r=x&s=140" title="rkh" width="20" />
|
1524
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/abfc88b96ae18c85ba7aac3bded2ec5e?d=https%3A%2F%2Fidenticons.github.com%2F4f4adcbf8c6f66dcfc8a3282ac2bf10a.png&r=x&s=140" title="rtomayko" width="20" />
|
1525
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/6a2a406c173111eeac854d0b11ce83ca?d=https%3A%2F%2Fidenticons.github.com%2Ff7f567d93ed4f419ffeab83707f5796e.png&r=x&s=140" title="ohhgabriel" width="20" />
|
1526
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/8e0adf6f8274375b90a180d256d73bad?d=https%3A%2F%2Fidenticons.github.com%2F8613985ec49eb8f757ae6439e879bb2a.png&r=x&s=140" title="sr" width="20" />
|
1527
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/1a250566b475961b9b36abf359950c76?d=https%3A%2F%2Fidenticons.github.com%2Fd9d4f495e875a2e075a1a4a6e1b9770f.png&r=x&s=140" title="bmizerany" width="20" />
|
1528
|
-
</a>
|
1529
|
-
</div>
|
1530
|
-
</div>
|
1531
|
-
|
1532
|
-
</li>
|
1533
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-logstash">
|
1534
|
-
<a href="#pa-logstash" class="leaderboard-list-rank" >#24</a>
|
1535
|
-
<span class="mega-octicon octicon-repo"></span>
|
1536
|
-
<div class="leaderboard-action">
|
1537
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1538
|
-
<a href="/logstash/logstash/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1539
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1540
|
-
</a>
|
1541
|
-
<a href="/logstash/logstash/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1542
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1543
|
-
</a>
|
1544
|
-
</div>
|
1545
|
-
</div>
|
1546
|
-
<div class="leaderboard-list-content">
|
1547
|
-
<h2 class="repo-leaderboard-title">
|
1548
|
-
<a href="/logstash/logstash" class="repository-name"><span class="owner-name">logstash</span><span class="separator">/</span><strong>logstash</strong></a>
|
1549
|
-
<span class="title-meta">Ruby</span>
|
1550
|
-
</h2>
|
1551
|
-
<p class="repo-leaderboard-description">logstash - logs/event transport, processing, management, search.</p>
|
1552
|
-
|
1553
|
-
<div class="repo-leaderboard-contributors">
|
1554
|
-
<a href="/logstash/logstash/graphs/contributors">
|
1555
|
-
<span class="contributor-avatar-text">built by</span>
|
1556
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/75fdd336ae5f818276f1cf79e0468b2d?d=https%3A%2F%2Fidenticons.github.com%2F983c25e4d13d98f06c505afe2a937b4d.png&r=x&s=140" title="jordansissel" width="20" />
|
1557
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/fd23fa0562b26f4157a2d7f80095bb07?d=https%3A%2F%2Fidenticons.github.com%2F00809efb7b6dbc44f6fd9ea7957f2762.png&r=x&s=140" title="fetep" width="20" />
|
1558
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/5511be764a3a36c0e0933afa9e7422d4?d=https%3A%2F%2Fidenticons.github.com%2Fb2dfb1e62ae8960cf31403909d1a6a01.png&r=x&s=140" title="nickethier" width="20" />
|
1559
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/03a966709300efb4a86ce5ee8f88f696?d=https%3A%2F%2Fidenticons.github.com%2Fff14abd942d0542c7f53462588583988.png&r=x&s=140" title="lusis" width="20" />
|
1560
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/5986b6c2d02df43a0964abc807912078?d=https%3A%2F%2Fidenticons.github.com%2Fe09c214d1b20f344b038b1b60d8243e5.png&r=x&s=140" title="wiibaa" width="20" />
|
1561
|
-
</a>
|
1562
|
-
</div>
|
1563
|
-
</div>
|
1564
|
-
|
1565
|
-
</li>
|
1566
|
-
<li class="repo-leaderboard-list-item leaderboard-list-item" id="pa-Mining-the-Social-Web-2nd-Edition">
|
1567
|
-
<a href="#pa-Mining-the-Social-Web-2nd-Edition" class="leaderboard-list-rank" >#25</a>
|
1568
|
-
<span class="mega-octicon octicon-repo"></span>
|
1569
|
-
<div class="leaderboard-action">
|
1570
|
-
<div class="js-toggler-container js-social-container starring-container ">
|
1571
|
-
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition/unstar" class="minibutton js-toggler-target star-button starred upwards" title="Unstar this repo" data-remote="true" data-method="post" rel="nofollow">
|
1572
|
-
<span class="octicon octicon-star-delete"></span><span class="text">Unstar</span>
|
1573
|
-
</a>
|
1574
|
-
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition/star" class="minibutton js-toggler-target star-button unstarred upwards" title="Star this repo" data-remote="true" data-method="post" rel="nofollow">
|
1575
|
-
<span class="octicon octicon-star"></span><span class="text">Star</span>
|
1576
|
-
</a>
|
1577
|
-
</div>
|
1578
|
-
</div>
|
1579
|
-
<div class="leaderboard-list-content">
|
1580
|
-
<h2 class="repo-leaderboard-title">
|
1581
|
-
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition" class="repository-name"><span class="owner-name">ptwobrussell</span><span class="separator">/</span><strong>Mining-the-Social-Web-2nd-Edition</strong></a>
|
1582
|
-
<span class="title-meta">Python</span>
|
1583
|
-
</h2>
|
1584
|
-
<p class="repo-leaderboard-description">The official online compendium for Mining the Social Web, 2nd Edition (O'Reilly, 2013)</p>
|
1585
|
-
|
1586
|
-
<div class="repo-leaderboard-contributors">
|
1587
|
-
<a href="/ptwobrussell/Mining-the-Social-Web-2nd-Edition/graphs/contributors">
|
1588
|
-
<span class="contributor-avatar-text">built by</span>
|
1589
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/322a50ffdb98591460f05015770b7adb?d=https%3A%2F%2Fidenticons.github.com%2F6c41551dc0301524154548382e29d17a.png&r=x&s=140" title="ptwobrussell" width="20" />
|
1590
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/0c3258b1ee9b300f8f6053d3a824f18f?d=https%3A%2F%2Fidenticons.github.com%2Fa8764d790da8da4b839b2f1cc3542f26.png&r=x&s=140" title="jwsy" width="20" />
|
1591
|
-
<img class="avatar" height="20" src="https://2.gravatar.com/avatar/f641f504b31c0020276ba40dd6e7e780?d=https%3A%2F%2Fidenticons.github.com%2F9af754b62b8cfc25e076e49930e9ea9c.png&r=x&s=140" title="marsam" width="20" />
|
1592
|
-
<img class="avatar" height="20" src="https://1.gravatar.com/avatar/8a1a521b2e007a25f4f153a21697c25b?d=https%3A%2F%2Fidenticons.github.com%2F570599e57b6fe6e13aeea632f3f5b745.png&r=x&s=140" title="aleksbreian1103" width="20" />
|
1593
|
-
<img class="avatar" height="20" src="https://0.gravatar.com/avatar/5daf79134c95a64ccdbf2bd477e52392?d=https%3A%2F%2Fidenticons.github.com%2Fa9b94e2e91ee1dae4106f72c3e48880e.png&r=x&s=140" title="wbzyl" width="20" />
|
1594
|
-
</a>
|
2749
|
+
<div class="select-menu-loading-overlay"></div>
|
1595
2750
|
</div>
|
2751
|
+
</div>
|
1596
2752
|
</div>
|
1597
2753
|
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
<
|
1602
|
-
<p>Loading…</p>
|
2754
|
+
<div class="protip protip-callout">
|
2755
|
+
<strong class="protip">ProTip!</strong>
|
2756
|
+
Looking for most starred Ruby repositories?
|
2757
|
+
<a href="/search?l=ruby&q=stars%3A%3E1&s=stars&type=Repositories">Try this search</a>
|
1603
2758
|
</div>
|
1604
2759
|
|
1605
|
-
</div>
|
1606
2760
|
</div>
|
1607
2761
|
</div>
|
1608
2762
|
</div>
|
2763
|
+
|
1609
2764
|
</div>
|
1610
2765
|
<div class="modal-backdrop"></div>
|
1611
2766
|
</div>
|
1612
2767
|
</div><!-- /.wrapper -->
|
1613
2768
|
|
1614
2769
|
<div class="container">
|
1615
|
-
<div class="site-footer">
|
2770
|
+
<div class="site-footer" role="contentinfo">
|
1616
2771
|
<ul class="site-footer-links right">
|
1617
|
-
|
1618
|
-
<li><a href="
|
1619
|
-
<li><a href="http://training.github.com">Training</a></li>
|
1620
|
-
<li><a href="http://shop.github.com">Shop</a></li>
|
1621
|
-
|
1622
|
-
|
2772
|
+
<li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
|
2773
|
+
<li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
|
2774
|
+
<li><a href="http://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
|
2775
|
+
<li><a href="http://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
|
2776
|
+
<li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
|
2777
|
+
<li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
|
1623
2778
|
|
1624
2779
|
</ul>
|
1625
2780
|
|
1626
|
-
<a href="
|
1627
|
-
<span class="mega-octicon octicon-mark-github"></span>
|
1628
|
-
|
1629
|
-
|
2781
|
+
<a href="https://github.com" arial-label="Homepage">
|
2782
|
+
<span class="mega-octicon octicon-mark-github" title="GitHub"></span>
|
2783
|
+
</a>
|
1630
2784
|
<ul class="site-footer-links">
|
1631
|
-
<li>©
|
1632
|
-
<li><a href="/site/terms">Terms</a></li>
|
1633
|
-
<li><a href="/site/privacy">Privacy</a></li>
|
1634
|
-
<li><a href="/security">Security</a></li>
|
1635
|
-
<li><a href="/contact">Contact</a></li>
|
2785
|
+
<li>© 2015 <span title="0.43280s from github-fe120-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
|
2786
|
+
<li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
|
2787
|
+
<li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
|
2788
|
+
<li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
|
2789
|
+
<li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact</a></li>
|
1636
2790
|
</ul>
|
1637
|
-
</div
|
1638
|
-
</div
|
2791
|
+
</div>
|
2792
|
+
</div>
|
1639
2793
|
|
1640
2794
|
|
1641
2795
|
<div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay">
|
1642
|
-
<div class="fullscreen-container js-
|
2796
|
+
<div class="fullscreen-container js-suggester-container">
|
1643
2797
|
<div class="textarea-wrap">
|
1644
|
-
<textarea name="fullscreen-contents" id="fullscreen-contents" class="js-fullscreen-contents" placeholder=""
|
2798
|
+
<textarea name="fullscreen-contents" id="fullscreen-contents" class="fullscreen-contents js-fullscreen-contents" placeholder=""></textarea>
|
2799
|
+
<div class="suggester-container">
|
2800
|
+
<div class="suggester fullscreen-suggester js-suggester js-navigation-container"></div>
|
2801
|
+
</div>
|
1645
2802
|
</div>
|
1646
2803
|
</div>
|
1647
2804
|
<div class="fullscreen-sidebar">
|
1648
|
-
<a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped
|
2805
|
+
<a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped tooltipped-w" aria-label="Exit Zen Mode">
|
1649
2806
|
<span class="mega-octicon octicon-screen-normal"></span>
|
1650
2807
|
</a>
|
1651
|
-
<a href="#" class="theme-switcher js-theme-switcher tooltipped
|
1652
|
-
|
2808
|
+
<a href="#" class="theme-switcher js-theme-switcher tooltipped tooltipped-w"
|
2809
|
+
aria-label="Switch themes">
|
1653
2810
|
<span class="octicon octicon-color-mode"></span>
|
1654
2811
|
</a>
|
1655
2812
|
</div>
|
@@ -1657,11 +2814,20 @@
|
|
1657
2814
|
|
1658
2815
|
|
1659
2816
|
|
2817
|
+
|
2818
|
+
|
1660
2819
|
<div id="ajax-error-message" class="flash flash-error">
|
1661
2820
|
<span class="octicon octicon-alert"></span>
|
1662
|
-
<a href="#" class="octicon octicon-
|
2821
|
+
<a href="#" class="octicon octicon-x flash-close js-ajax-error-dismiss" aria-label="Dismiss error"></a>
|
1663
2822
|
Something went wrong with that request. Please try again.
|
1664
2823
|
</div>
|
1665
2824
|
|
2825
|
+
|
2826
|
+
<script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-fd3bd2d0c854fa5baa64e8b390de48b1eff4b59e1f38d1b1d695c4b5d835ab04.js"></script>
|
2827
|
+
<script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-46628ff6533b28dfda2aeef282f8a3502316e88499a52a67ae0dd60479e3b950.js"></script>
|
2828
|
+
|
2829
|
+
|
2830
|
+
|
1666
2831
|
</body>
|
1667
2832
|
</html>
|
2833
|
+
|