├── LICENSE ├── README.md ├── example └── skyjia_index.md └── main.go /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | repogen 2 | =============== 3 | 4 | _Version 0.1_ 5 | 6 | __repogen__ is a toy to generate a Markdown index document of GitHub user's starred repositories. 7 | 8 | # Install 9 | 10 | Go 1.1+ is required. [Golang Getting Started](http://golang.org/doc/install) 11 | 12 | ``` 13 | $ go get -u github.com/skyjia/repogen 14 | 15 | ``` 16 | 17 | Exuecte it: 18 | 19 | ``` 20 | $ repogen -u USERNAME 21 | ``` 22 | 23 | Which takes the following flags: 24 | 25 | - __-u:__ This the GitHub username of which starred repositories you want to generate. (Required) 26 | 27 | Output to a Markdown document: 28 | ``` 29 | $ repogen -u USERNAME > /path/to/your/document.md 30 | ``` 31 | 32 | [Example](example/skyjia_index.md) 33 | -------------------------------------------------------------------------------- /example/skyjia_index.md: -------------------------------------------------------------------------------- 1 | Starred Repositories 2 | =============== 3 | 4 | __[skyjia](https://github.com/skyjia)__ on GitHub. 5 | 6 | ## Languages 7 | 8 | - [Ruby](#ruby) - [JavaScript](#javascript) - [Unknown](#unknown) - [Python](#python) - [PHP](#php) - [C](#c) - [Go](#go) - [Shell](#shell) - [Objective-C](#objective-c) - [CSS](#css) - [CoffeeScript](#coffeescript) - [Lua](#lua) - [VimL](#viml) - [C++](#c++) - [Perl](#perl) - [Scala](#scala) 9 | 10 | # Index 11 | 12 | ## [Ruby](id:ruby) 13 | 14 | 22 repositories 15 | ### exercism/exercism.io 16 | 17 | Exercises with crowd-sourced code reviews. 18 | 19 | - URL: 20 | 21 | - Site: 22 | 23 | - Pushed at: _Jan 16, 2014 1:31PM (UTC)_ 24 | 25 | ### gerhard/deliver 26 | 27 | Pure bash deployment tool with customisable strategies. 28 | 29 | - URL: 30 | 31 | - Pushed at: _Jan 3, 2014 12:47PM (UTC)_ 32 | 33 | ### yob/pdf-reader 34 | 35 | The PDF::Reader library implements a PDF parser conforming as much as possible to the PDF specification from Adobe. 36 | 37 | - URL: 38 | 39 | - Site: 40 | 41 | - Pushed at: _Jun 26, 2013 3:35AM (UTC)_ 42 | 43 | ### twbs/bootstrap-sass 44 | 45 | Official port of Bootstrap to Sass 46 | 47 | - URL: 48 | 49 | - Pushed at: _Jan 16, 2014 8:26PM (UTC)_ 50 | 51 | ### matthodan/jekyll-asset-pipeline 52 | 53 | Powerful asset pipeline for Jekyll that collects, converts and compresses JavaScript and CSS assets 54 | 55 | - URL: 56 | 57 | - Site: 58 | 59 | - Pushed at: _Jun 7, 2013 4:10PM (UTC)_ 60 | 61 | ### travis-ci/dpl 62 | 63 | - URL: 64 | 65 | - Pushed at: _Jan 10, 2014 11:17AM (UTC)_ 66 | 67 | ### gamache/hyperresource 68 | 69 | A self-inflating Ruby client for hypermedia APIs. 70 | 71 | - URL: 72 | 73 | - Site: 74 | 75 | - Pushed at: _Jan 14, 2014 4:38PM (UTC)_ 76 | 77 | ### progit/progit 78 | 79 | Pro Git Book Content 80 | 81 | - URL: 82 | 83 | - Site: 84 | 85 | - Pushed at: _Jan 15, 2014 7:25PM (UTC)_ 86 | 87 | ### phinze/homebrew-cask 88 | 89 | a friendly homebrew-style CLI workflow for the administration of Mac applications distributed as binaries 90 | 91 | - URL: 92 | 93 | - Pushed at: _Jan 16, 2014 4:16AM (UTC)_ 94 | 95 | ### travis-ci/travis-cli-gh 96 | 97 | Travis CLI plugin to interact with GitHub API 98 | 99 | - URL: 100 | 101 | - Pushed at: _Dec 30, 2013 12:16AM (UTC)_ 102 | 103 | ### travis-ci/travis 104 | 105 | Travis CI Client (CLI and Ruby library) 106 | 107 | - URL: 108 | 109 | - Pushed at: _Jan 16, 2014 3:07PM (UTC)_ 110 | 111 | ### diaspora/diaspora 112 | 113 | Distributed and contextual social networking 114 | 115 | - URL: 116 | 117 | - Site: 118 | 119 | - Pushed at: _Jan 16, 2014 11:32PM (UTC)_ 120 | 121 | ### maccman/monocle 122 | 123 | Link and news sharing 124 | 125 | - URL: 126 | 127 | - Site: 128 | 129 | - Pushed at: _Dec 5, 2013 4:56PM (UTC)_ 130 | 131 | ### sinatra/sinatra 132 | 133 | Classy web-development dressed in a DSL (official / canonical repo) 134 | 135 | - URL: 136 | 137 | - Site: 138 | 139 | - Pushed at: _Jan 13, 2014 2:25PM (UTC)_ 140 | 141 | ### defunkt/unicorn 142 | 143 | Unofficial Unicorn Mirror. 144 | 145 | - URL: 146 | 147 | - Site: 148 | 149 | - Pushed at: _Jan 11, 2014 9:36AM (UTC)_ 150 | 151 | ### Gazler/githug 152 | 153 | Git your game on! 154 | 155 | - URL: 156 | 157 | - Pushed at: _Dec 31, 2013 6:42PM (UTC)_ 158 | 159 | ### seyhunak/twitter-bootstrap-rails 160 | 161 | Twitter Bootstrap for Rails 3.x - 4 Asset Pipeline 162 | 163 | - URL: 164 | 165 | - Site: 166 | 167 | - Pushed at: _Dec 18, 2013 6:03PM (UTC)_ 168 | 169 | ### gitlabhq/gitlabhq 170 | 171 | Project management and code hosting application. Follow us on twitter @gitlabhq 172 | 173 | - URL: 174 | 175 | - Site: 176 | 177 | - Pushed at: _Jan 16, 2014 5:58PM (UTC)_ 178 | 179 | ### discourse/discourse 180 | 181 | A platform for community discussion. Free, open, simple. 182 | 183 | - URL: 184 | 185 | - Site: 186 | 187 | - Pushed at: _Jan 17, 2014 2:07AM (UTC)_ 188 | 189 | ### rediscookbook/rediscookbook 190 | 191 | The Redis Cookbook 192 | 193 | - URL: 194 | 195 | - Site: 196 | 197 | - Pushed at: _Jan 5, 2011 8:06PM (UTC)_ 198 | 199 | ### redis/redis-rb 200 | 201 | A Ruby client library for Redis 202 | 203 | - URL: 204 | 205 | - Pushed at: _Jan 16, 2014 6:18PM (UTC)_ 206 | 207 | ### mislav/will_paginate 208 | 209 | Pagination library for Rails 3, Sinatra, Merb, DataMapper, and more 210 | 211 | - URL: 212 | 213 | - Site: 214 | 215 | - Pushed at: _Sep 23, 2013 6:04PM (UTC)_ 216 | 217 | ## [JavaScript](id:javascript) 218 | 219 | 57 repositories 220 | ### acornejo/jquery-cropbox 221 | 222 | jQuery Cropbox plugin 223 | 224 | - URL: 225 | 226 | - Pushed at: _Dec 11, 2013 8:54PM (UTC)_ 227 | 228 | ### arachnys/cabot 229 | 230 | Self-hosted, easily-deployable monitoring and alerts service - like a lightweight PagerDuty 231 | 232 | - URL: 233 | 234 | - Pushed at: _Jan 17, 2014 12:41AM (UTC)_ 235 | 236 | ### inorganik/countUp.js 237 | 238 | Animates a numerical value by counting to it 239 | 240 | - URL: 241 | 242 | - Site: 243 | 244 | - Pushed at: _Jan 16, 2014 4:39PM (UTC)_ 245 | 246 | ### turingou/douban.fm 247 | 248 | a tiny and smart cli player of douban.fm based on Node.js 249 | 250 | - URL: 251 | 252 | - Pushed at: _Jan 16, 2014 4:36PM (UTC)_ 253 | 254 | ### maxogden/cool-ascii-faces 255 | 256 | ᕙ༼ຈل͜ຈ༽ᕗ 257 | 258 | - URL: 259 | 260 | - Site: 261 | 262 | - Pushed at: _Jan 16, 2014 6:32PM (UTC)_ 263 | 264 | ### bjornd/jvectormap 265 | 266 | - URL: 267 | 268 | - Site: 269 | 270 | - Pushed at: _Jan 20, 2013 9:02PM (UTC)_ 271 | 272 | ### ether/etherpad-lite 273 | 274 | Really real-time collaborative document editing for the rest of us 275 | 276 | - URL: 277 | 278 | - Site: 279 | 280 | - Pushed at: _Jan 15, 2014 7:46PM (UTC)_ 281 | 282 | ### candy-chat/candy 283 | 284 | JavaScript-based multi-user chat client for XMPP. 285 | 286 | - URL: 287 | 288 | - Site: 289 | 290 | - Pushed at: _Jan 16, 2014 4:43PM (UTC)_ 291 | 292 | ### auduno/clmtrackr 293 | 294 | Javascript library for precise tracking of facial features via Constrained Local Models 295 | 296 | - URL: 297 | 298 | - Pushed at: _Jan 15, 2014 12:50AM (UTC)_ 299 | 300 | ### tkambler/whenLive 301 | 302 | jQuery plugin that allows you to define event handlers to be fired the moment a specified element becomes available within the DOM. 303 | 304 | - URL: 305 | 306 | - Pushed at: _Jan 16, 2014 6:38PM (UTC)_ 307 | 308 | ### isagalaev/highlight.js 309 | 310 | Javascript syntax highlighter 311 | 312 | - URL: 313 | 314 | - Site: 315 | 316 | - Pushed at: _Jan 16, 2014 9:09PM (UTC)_ 317 | 318 | ### FriendCode/codebox 319 | 320 | Open source cloud & desktop IDE 321 | 322 | - URL: 323 | 324 | - Site: 325 | 326 | - Pushed at: _Jan 16, 2014 8:54PM (UTC)_ 327 | 328 | ### bgrins/TinyColor 329 | 330 | Fast, small color manipulation and conversion for JavaScript 331 | 332 | - URL: 333 | 334 | - Site: 335 | 336 | - Pushed at: _Jan 13, 2014 11:54PM (UTC)_ 337 | 338 | ### BinaryMuse/planetary.js 339 | 340 | Awesome interactive globes for the web 341 | 342 | - URL: 343 | 344 | - Site: 345 | 346 | - Pushed at: _Jan 16, 2014 5:40AM (UTC)_ 347 | 348 | ### RubenVerborgh/promiscuous 349 | 350 | Small and fast promise library for JavaScript 351 | 352 | - URL: 353 | 354 | - Site: 355 | 356 | - Pushed at: _Jan 3, 2014 6:40PM (UTC)_ 357 | 358 | ### josdejong/mathjs 359 | 360 | An extensive math library for JavaScript and Node.js 361 | 362 | - URL: 363 | 364 | - Site: 365 | 366 | - Pushed at: _Jan 16, 2014 4:36PM (UTC)_ 367 | 368 | ### google/traceur-compiler 369 | 370 | Traceur is a JavaScript.next-to-JavaScript-of-today compiler 371 | 372 | - URL: 373 | 374 | - Pushed at: _Jan 17, 2014 1:09AM (UTC)_ 375 | 376 | ### facebook/react 377 | 378 | React is a JavaScript library for building user interfaces. It's declarative, efficient, and extremely flexible. What's more, it works with the libraries and frameworks that you already know. 379 | 380 | - URL: 381 | 382 | - Site: 383 | 384 | - Pushed at: _Jan 16, 2014 6:08PM (UTC)_ 385 | 386 | ### jsx/JSX 387 | 388 | JSX - a faster, safer, easier JavaScript 389 | 390 | - URL: 391 | 392 | - Site: 393 | 394 | - Pushed at: _Jan 17, 2014 2:44AM (UTC)_ 395 | 396 | ### amoffat/hash-n-slash 397 | 398 | Proof of concept for converting any content into a domain name. 399 | 400 | - URL: 401 | 402 | - Pushed at: _Jan 1, 2014 8:56PM (UTC)_ 403 | 404 | ### fontello/svg-font-create 405 | 406 | Create SVG font from separate images 407 | 408 | - URL: 409 | 410 | - Pushed at: _Jun 7, 2013 11:05PM (UTC)_ 411 | 412 | ### fontello/ttf2woff 413 | 414 | Font convertor, TTF to WOFF, for node.js 415 | 416 | - URL: 417 | 418 | - Pushed at: _Dec 2, 2013 11:21PM (UTC)_ 419 | 420 | ### fontello/ttf2eot 421 | 422 | Font convertor, TTF to EOT, for node.js 423 | 424 | - URL: 425 | 426 | - Pushed at: _Dec 2, 2013 11:14PM (UTC)_ 427 | 428 | ### jlord/git-it 429 | 430 | A workshopper module for learning Git and GitHub - Social coding, y'all. 431 | 432 | - URL: 433 | 434 | - Pushed at: _Jan 17, 2014 1:40AM (UTC)_ 435 | 436 | ### ChrisZieba/LogicPull 437 | 438 | The smart and simple way to automate document assembly 439 | 440 | - URL: 441 | 442 | - Site: 443 | 444 | - Pushed at: _Jan 7, 2014 11:39PM (UTC)_ 445 | 446 | ### TryGhost/Ghost 447 | 448 | Just a blogging platform 449 | 450 | - URL: 451 | 452 | - Site: 453 | 454 | - Pushed at: _Jan 15, 2014 1:57PM (UTC)_ 455 | 456 | ### segmentio/myth 457 | 458 | A CSS preprocessor that acts like a polyfill for future versions of the spec. 459 | 460 | - URL: 461 | 462 | - Site: 463 | 464 | - Pushed at: _Jan 9, 2014 11:31PM (UTC)_ 465 | 466 | ### koajs/koa 467 | 468 | Expressive middleware for node.js using generators 469 | 470 | - URL: 471 | 472 | - Site: 473 | 474 | - Pushed at: _Jan 16, 2014 6:18AM (UTC)_ 475 | 476 | ### loadfive/Knwl.js 477 | 478 | A Natural Language Processor in JS 479 | 480 | - URL: 481 | 482 | - Site: 483 | 484 | - Pushed at: _Jan 16, 2014 6:04PM (UTC)_ 485 | 486 | ### WickyNilliams/headroom.js 487 | 488 | Give your pages some headroom. Hide your header until you need it 489 | 490 | - URL: 491 | 492 | - Site: 493 | 494 | - Pushed at: _Jan 13, 2014 8:55PM (UTC)_ 495 | 496 | ### resume/resume.github.com 497 | 498 | Resumes generated using the GitHub informations 499 | 500 | - URL: 501 | 502 | - Site: 503 | 504 | - Pushed at: _Dec 6, 2013 5:40PM (UTC)_ 505 | 506 | ### bartaz/impress.js 507 | 508 | It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com. 509 | 510 | - URL: 511 | 512 | - Site: 513 | 514 | - Pushed at: _Sep 17, 2013 10:33AM (UTC)_ 515 | 516 | ### hakimel/reveal.js 517 | 518 | The HTML Presentation Framework 519 | 520 | - URL: 521 | 522 | - Site: 523 | 524 | - Pushed at: _Dec 21, 2013 5:15PM (UTC)_ 525 | 526 | ### javve/list.js 527 | 528 | The perfect library for adding search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on existing HTML. 529 | 530 | - URL: 531 | 532 | - Site: 533 | 534 | - Pushed at: _Jan 15, 2014 11:33AM (UTC)_ 535 | 536 | ### namuol/cheet.js 537 | 538 | easy easter eggs (konami code, etc) for your website. 539 | 540 | - URL: 541 | 542 | - Site: 543 | 544 | - Pushed at: _Jan 7, 2014 10:29PM (UTC)_ 545 | 546 | ### angular-ui/angular-ui-OLDREPO 547 | 548 | DISCONTINUED REPO: This project has been restructured -> 549 | 550 | - URL: 551 | 552 | - Site: 553 | 554 | - Pushed at: _May 3, 2013 5:53PM (UTC)_ 555 | 556 | ### blueimp/jQuery-File-Upload 557 | 558 | File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads. 559 | 560 | - URL: 561 | 562 | - Site: 563 | 564 | - Pushed at: _Jan 15, 2014 4:04AM (UTC)_ 565 | 566 | ### neyric/wireit 567 | 568 | A javascript wiring library to create web wirable interfaces for dataflow applications, visual programming languages or graphical modeling. 569 | 570 | - URL: 571 | 572 | - Site: 573 | 574 | - Pushed at: _Sep 22, 2012 10:22AM (UTC)_ 575 | 576 | ### toddmotto/echo 577 | 578 | Lazy-loading images with data-* attributes 579 | 580 | - URL: 581 | 582 | - Site: 583 | 584 | - Pushed at: _Dec 28, 2013 5:00PM (UTC)_ 585 | 586 | ### alexandersimoes/d3plus 587 | 588 | Visualization utility 589 | 590 | - URL: 591 | 592 | - Pushed at: _Jan 16, 2014 7:51PM (UTC)_ 593 | 594 | ### driftyco/ionic 595 | 596 | Advanced HTML5 Mobile App Framework. A beautiful front-end framework for developing hybrid mobile apps in HTML5 597 | 598 | - URL: 599 | 600 | - Site: 601 | 602 | - Pushed at: _Jan 16, 2014 11:46PM (UTC)_ 603 | 604 | ### Semantic-Org/Semantic-UI 605 | 606 | Semantic empowers designers and developers by creating a shared vocabulary for UI. 607 | 608 | - URL: 609 | 610 | - Site: 611 | 612 | - Pushed at: _Jan 15, 2014 8:35PM (UTC)_ 613 | 614 | ### firstopinion/formatter.js 615 | 616 | Format html inputs to match a specified pattern 617 | 618 | - URL: 619 | 620 | - Site: 621 | 622 | - Pushed at: _Dec 1, 2013 6:51AM (UTC)_ 623 | 624 | ### IronSummitMedia/startbootstrap 625 | 626 | Better HTML Starter Templates for Bootstrap 3 627 | 628 | - URL: 629 | 630 | - Site: 631 | 632 | - Pushed at: _Jan 15, 2014 12:30AM (UTC)_ 633 | 634 | ### jquery/jquery 635 | 636 | jQuery JavaScript Library 637 | 638 | - URL: 639 | 640 | - Site: 641 | 642 | - Pushed at: _Jan 16, 2014 8:28PM (UTC)_ 643 | 644 | ### angular/angular.js 645 | 646 | - URL: 647 | 648 | - Site: 649 | 650 | - Pushed at: _Jan 17, 2014 2:53AM (UTC)_ 651 | 652 | ### adobe-webplatform/Snap.svg 653 | 654 | The JavaScript library for modern SVG graphics. 655 | 656 | - URL: 657 | 658 | - Site: 659 | 660 | - Pushed at: _Jan 13, 2014 2:06AM (UTC)_ 661 | 662 | ### Diogenesthecynic/FullScreenMario 663 | 664 | An HTML5 remake of the original Super Mario Brothers - expanded for wide screens. 665 | 666 | - URL: 667 | 668 | - Pushed at: _Jan 14, 2014 11:30PM (UTC)_ 669 | 670 | ### madebymany/sir-trevor-js 671 | 672 | Rich content editing entirely re-imagined for the web 673 | 674 | - URL: 675 | 676 | - Site: 677 | 678 | - Pushed at: _Jan 10, 2014 9:17PM (UTC)_ 679 | 680 | ### jlong/sass-bootstrap 681 | 682 | CSS toolkit from Twitter converted to Sass. There are other ports of the bootstrap to Sass. This project is focused on being a 1:1 translation from Less to Sass. 683 | 684 | - URL: 685 | 686 | - Site: 687 | 688 | - Pushed at: _Nov 10, 2013 1:17PM (UTC)_ 689 | 690 | ### mbostock/d3 691 | 692 | A JavaScript visualization library for HTML and SVG. 693 | 694 | - URL: 695 | 696 | - Site: 697 | 698 | - Pushed at: _Jan 16, 2014 5:57PM (UTC)_ 699 | 700 | ### balderdashy/sails 701 | 702 | Realtime MVC Framework for Node.js 703 | 704 | - URL: 705 | 706 | - Site: 707 | 708 | - Pushed at: _Jan 17, 2014 1:01AM (UTC)_ 709 | 710 | ### mishoo/UglifyJS2 711 | 712 | JavaScript parser / mangler / compressor / beautifier toolkit 713 | 714 | - URL: 715 | 716 | - Site: 717 | 718 | - Pushed at: _Jan 15, 2014 8:31PM (UTC)_ 719 | 720 | ### twbs/bootstrap 721 | 722 | Sleek, intuitive, and powerful front-end framework for faster and easier web development. 723 | 724 | - URL: 725 | 726 | - Site: 727 | 728 | - Pushed at: _Jan 17, 2014 2:57AM (UTC)_ 729 | 730 | ### jashkenas/backbone 731 | 732 | Give your JS App some Backbone with Models, Views, Collections, and Events 733 | 734 | - URL: 735 | 736 | - Site: 737 | 738 | - Pushed at: _Jan 16, 2014 3:45PM (UTC)_ 739 | 740 | ### maxatwork/form2js 741 | 742 | Javascript library for collecting form data 743 | 744 | - URL: 745 | 746 | - Site: 747 | 748 | - Pushed at: _Dec 26, 2013 2:28PM (UTC)_ 749 | 750 | ### jashkenas/underscore 751 | 752 | JavaScript's utility _ belt 753 | 754 | - URL: 755 | 756 | - Site: 757 | 758 | - Pushed at: _Jan 16, 2014 11:01PM (UTC)_ 759 | 760 | ## [Unknown](id:unknown) 761 | 762 | 18 repositories 763 | ### datasciencemasters/go 764 | 765 | The Open Source Data Science Masters 766 | 767 | - URL: 768 | 769 | - Site: 770 | 771 | - Pushed at: _Jan 16, 2014 8:00PM (UTC)_ 772 | 773 | ### everpix/Everpix-Intelligence 774 | 775 | Uncensored Everpix metrics, financials and business data for your perusing 776 | 777 | - URL: 778 | 779 | - Site: 780 | 781 | - Pushed at: _Jan 14, 2014 11:03PM (UTC)_ 782 | 783 | ### veltman/clmystery 784 | 785 | A command-line murder mystery 786 | 787 | - URL: 788 | 789 | - Pushed at: _Jan 15, 2014 2:50AM (UTC)_ 790 | 791 | ### int3h/SublimeFixMacPath 792 | 793 | A Sublime Text 2/3 plugin to set the PATH correctly on OS X 794 | 795 | - URL: 796 | 797 | - Pushed at: _Jul 9, 2013 10:29PM (UTC)_ 798 | 799 | ### jasonrudolph/keyboard 800 | 801 | Toward a more useful keyboard 802 | 803 | - URL: 804 | 805 | - Pushed at: _Dec 25, 2013 3:23PM (UTC)_ 806 | 807 | ### zenorocha/alfred-workflows 808 | 809 | A collection of Alfred 2 workflows that will rock your world 810 | 811 | - URL: 812 | 813 | - Pushed at: _Dec 6, 2013 7:03PM (UTC)_ 814 | 815 | ### wonderfo/wonderfogo 816 | 817 | 最近对Go语言很感兴趣,所以整理相关资料,呵呵 818 | 819 | - URL: 820 | 821 | - Pushed at: _Mar 6, 2012 11:47AM (UTC)_ 822 | 823 | ### facebook/origami 824 | 825 | A Quartz Composer framework for the design community 826 | 827 | - URL: 828 | 829 | - Pushed at: _Jan 15, 2014 7:32PM (UTC)_ 830 | 831 | ### neiesc/ListOfMinimalistFrameworks 832 | 833 | A list of minimalist frameworks(simple and lightweight). 834 | 835 | - URL: 836 | 837 | - Pushed at: _Jan 13, 2014 11:28PM (UTC)_ 838 | 839 | ### tobiasahlin/SpinKit 840 | 841 | A collection of loading indicators animated with CSS 842 | 843 | - URL: 844 | 845 | - Site: 846 | 847 | - Pushed at: _Dec 29, 2013 9:12PM (UTC)_ 848 | 849 | ### sindresorhus/quick-look-plugins 850 | 851 | List of useful Quick Look plugins for developers 852 | 853 | - URL: 854 | 855 | - Site: 856 | 857 | - Pushed at: _Jan 8, 2014 4:58PM (UTC)_ 858 | 859 | ### philwareham/responsive-email 860 | 861 | A table-based (but responsive) email template. Has MailChimp merge tags in place. 862 | 863 | - URL: 864 | 865 | - Pushed at: _Nov 14, 2013 11:33AM (UTC)_ 866 | 867 | ### freebitcoin/freebitcoin 868 | 869 | 免费获取比特币 870 | 871 | - URL: 872 | 873 | - Pushed at: _Jan 8, 2014 9:02AM (UTC)_ 874 | 875 | ### cheeaun/life 876 | 877 | Life - a timeline of important events in my life 878 | 879 | - URL: 880 | 881 | - Site: 882 | 883 | - Pushed at: _Dec 29, 2013 2:21PM (UTC)_ 884 | 885 | ### justjavac/free-programming-books-zh_CN 886 | 887 | 免费的计算机编程类中文书籍,欢迎投稿 888 | 889 | - URL: 890 | 891 | - Pushed at: _Dec 31, 2013 12:54AM (UTC)_ 892 | 893 | ### github/gitignore 894 | 895 | A collection of useful .gitignore templates 896 | 897 | - URL: 898 | 899 | - Pushed at: _Jan 7, 2014 3:53AM (UTC)_ 900 | 901 | ### JacksonTian/fks 902 | 903 | 前端技能汇总 Frontend Knowledge Structure 904 | 905 | - URL: 906 | 907 | - Site: 908 | 909 | - Pushed at: _Jan 3, 2014 10:27AM (UTC)_ 910 | 911 | ### vhf/free-programming-books 912 | 913 | - URL: 914 | 915 | - Site: 916 | 917 | - Pushed at: _Jan 16, 2014 6:12PM (UTC)_ 918 | 919 | ## [Python](id:python) 920 | 921 | 9 repositories 922 | ### dataprotocols/dataprotocols 923 | 924 | Content and specs for dataprotocols.org 925 | 926 | - URL: 927 | 928 | - Site: 929 | 930 | - Pushed at: _Jan 13, 2014 8:50AM (UTC)_ 931 | 932 | ### Katee/quietnet 933 | 934 | Simple chat program using inaudible sounds and a computer's microphone and speaker. 935 | 936 | - URL: 937 | 938 | - Pushed at: _Jan 12, 2014 6:18PM (UTC)_ 939 | 940 | ### bup/bup 941 | 942 | Highly efficient file backup system based on the git packfile format. Capable of doing *fast* incremental backups of virtual machine images. Current release is 0.25, and the development branch is master. Please post patches to the mailing list for discussion (see below). 943 | 944 | - URL: 945 | 946 | - Pushed at: _Jan 14, 2014 5:26PM (UTC)_ 947 | 948 | ### mailgun/shipper 949 | 950 | Fabric for docker containers 951 | 952 | - URL: 953 | 954 | - Pushed at: _Dec 10, 2013 4:03AM (UTC)_ 955 | 956 | ### reddit/reddit 957 | 958 | the code that powers reddit.com 959 | 960 | - URL: 961 | 962 | - Site: 963 | 964 | - Pushed at: _Jan 16, 2014 10:32PM (UTC)_ 965 | 966 | ### wangkuiyi/typhoon-blade 967 | 968 | Mac OS X port of Typhoon Blade 969 | 970 | - URL: 971 | 972 | - Pushed at: _Nov 24, 2013 9:45AM (UTC)_ 973 | 974 | ### DanMcInerney/LANs.py 975 | 976 | Capture and inject traffic on LAN 977 | 978 | - URL: 979 | 980 | - Pushed at: _Jan 16, 2014 11:56AM (UTC)_ 981 | 982 | ### treeio/treeio 983 | 984 | Tree.io 985 | 986 | - URL: 987 | 988 | - Site: 989 | 990 | - Pushed at: _Jan 10, 2014 6:00PM (UTC)_ 991 | 992 | ### tv42/gitosis 993 | 994 | software for hosting git repositories 995 | 996 | - URL: 997 | 998 | - Pushed at: _Mar 22, 2012 1:30AM (UTC)_ 999 | 1000 | ## [PHP](id:php) 1001 | 1002 | 5 repositories 1003 | ### cordoval/gush 1004 | 1005 | Gush - Rapid workflow for project maintainers and contributors 1006 | 1007 | - URL: 1008 | 1009 | - Pushed at: _Jan 16, 2014 11:35PM (UTC)_ 1010 | 1011 | ### citricsquid/httpstatus.es 1012 | 1013 | httpstatus.es, a directory of HTTP Status codes and code references to help in web development 1014 | 1015 | - URL: 1016 | 1017 | - Site: 1018 | 1019 | - Pushed at: _Oct 14, 2013 2:21AM (UTC)_ 1020 | 1021 | ### Umkus/nginx-boilerplate 1022 | 1023 | Awesome Nginx configuration template 1024 | 1025 | - URL: 1026 | 1027 | - Pushed at: _Jan 7, 2014 3:55PM (UTC)_ 1028 | 1029 | ### zurb/ink 1030 | 1031 | Quickly create responsive HTML emails that work on any device & client. Even Outlook. 1032 | 1033 | - URL: 1034 | 1035 | - Site: 1036 | 1037 | - Pushed at: _Jan 9, 2014 12:26AM (UTC)_ 1038 | 1039 | ### Trimidea/inews 1040 | 1041 | 极简 UGC 分享程序,轻松拥有一个属于自己的 Hack News 1042 | 1043 | - URL: 1044 | 1045 | - Site: 1046 | 1047 | - Pushed at: _Dec 26, 2013 3:19PM (UTC)_ 1048 | 1049 | ## [C](id:c) 1050 | 1051 | 5 repositories 1052 | ### c9s/Pux 1053 | 1054 | A High Performance PHP Router. PHP Router re-designed. 1055 | 1056 | - URL: 1057 | 1058 | - Site: 1059 | 1060 | - Pushed at: _Jan 16, 2014 11:10AM (UTC)_ 1061 | 1062 | ### alandipert/fswatch 1063 | 1064 | Monitor a directory for changes and run a shell command, using OS X's FSEvents API 1065 | 1066 | - URL: 1067 | 1068 | - Pushed at: _Dec 6, 2013 5:06AM (UTC)_ 1069 | 1070 | ### SamyPesse/How-to-Make-a-Computer-Operating-System 1071 | 1072 | How to Make a Computer Operating System in C++ 1073 | 1074 | - URL: 1075 | 1076 | - Pushed at: _Dec 23, 2013 11:22PM (UTC)_ 1077 | 1078 | ### phonegap/phonegap 1079 | 1080 | access core functions on Android, iPhone and Blackberry using JavaScript 1081 | 1082 | - URL: 1083 | 1084 | - Site: 1085 | 1086 | - Pushed at: _Nov 7, 2013 12:42AM (UTC)_ 1087 | 1088 | ### antirez/redis 1089 | 1090 | Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes 1091 | 1092 | - URL: 1093 | 1094 | - Site: 1095 | 1096 | - Pushed at: _Jan 16, 2014 5:22PM (UTC)_ 1097 | 1098 | ## [Go](id:go) 1099 | 1100 | 117 repositories 1101 | ### inconshreveable/go-tunnel 1102 | 1103 | Tunnel to localhost as a library 1104 | 1105 | - URL: 1106 | 1107 | - Pushed at: _Jan 10, 2014 10:55PM (UTC)_ 1108 | 1109 | ### mynameisfiber/gohll 1110 | 1111 | An implementation of HLL++ in go 1112 | 1113 | - URL: 1114 | 1115 | - Pushed at: _Jan 17, 2014 2:20AM (UTC)_ 1116 | 1117 | ### rakyll/globalconf 1118 | 1119 | Effortlessly persist to and read flag values from an ini config file for Golang programs 1120 | 1121 | - URL: 1122 | 1123 | - Pushed at: _Jan 13, 2014 3:13PM (UTC)_ 1124 | 1125 | ### kdar/factorlog 1126 | 1127 | FactorLog is a logging infrastructure for Go that provides numerous logging functions for whatever your style may be 1128 | 1129 | - URL: 1130 | 1131 | - Pushed at: _Jan 13, 2014 7:45PM (UTC)_ 1132 | 1133 | ### mcuadros/go-defaults 1134 | 1135 | This library enable struct types with default values 1136 | 1137 | - URL: 1138 | 1139 | - Pushed at: _Jan 14, 2014 1:40AM (UTC)_ 1140 | 1141 | ### xiocode/weigo 1142 | 1143 | Sina Weibo SDK In GO 1144 | 1145 | - URL: 1146 | 1147 | - Pushed at: _Jan 16, 2014 3:32AM (UTC)_ 1148 | 1149 | ### dchest/captcha 1150 | 1151 | Go package captcha implements generation and verification of image and audio CAPTCHAs. 1152 | 1153 | - URL: 1154 | 1155 | - Site: 1156 | 1157 | - Pushed at: _Jan 10, 2014 4:21PM (UTC)_ 1158 | 1159 | ### cheggaaa/pb 1160 | 1161 | Console progress bar for Golang 1162 | 1163 | - URL: 1164 | 1165 | - Pushed at: _Jan 16, 2014 11:11PM (UTC)_ 1166 | 1167 | ### deckarep/golang-set 1168 | 1169 | A simple set type for the Go language. 1170 | 1171 | - URL: 1172 | 1173 | - Pushed at: _Jan 8, 2014 6:01PM (UTC)_ 1174 | 1175 | ### tealeg/xlsx 1176 | 1177 | Google Go library for reading XLSX files. 1178 | 1179 | - URL: 1180 | 1181 | - Pushed at: _Dec 3, 2013 2:15AM (UTC)_ 1182 | 1183 | ### tobia/fn 1184 | 1185 | A few common functional tools for Go 1186 | 1187 | - URL: 1188 | 1189 | - Pushed at: _Dec 17, 2013 10:35PM (UTC)_ 1190 | 1191 | ### surma/gopin 1192 | 1193 | Tool-less version pinning for Go 1194 | 1195 | - URL: 1196 | 1197 | - Site: 1198 | 1199 | - Pushed at: _Jan 9, 2014 5:53PM (UTC)_ 1200 | 1201 | ### coreos/third_party.go 1202 | 1203 | third_party.go - self contained GOPATH helper 1204 | 1205 | - URL: 1206 | 1207 | - Pushed at: _Jan 15, 2014 6:46AM (UTC)_ 1208 | 1209 | ### rakyll/boom 1210 | 1211 | HTTP(s) load generator, ApacheBench (ab) replacement, written in Go 1212 | 1213 | - URL: 1214 | 1215 | - Pushed at: _Jan 16, 2014 9:51PM (UTC)_ 1216 | 1217 | ### karlseguin/liquid 1218 | 1219 | Liquid Template Engine for Go 1220 | 1221 | - URL: 1222 | 1223 | - Pushed at: _Jan 8, 2014 1:03PM (UTC)_ 1224 | 1225 | ### PuerkitoBio/fetchbot 1226 | 1227 | A simple and flexible web crawler that follows the robots.txt policies and crawl delays. 1228 | 1229 | - URL: 1230 | 1231 | - Pushed at: _Jan 7, 2014 12:01AM (UTC)_ 1232 | 1233 | ### gwoo/goforever 1234 | 1235 | Keep processes running. Start, Stop, Restart a process via cli or http interface. 1236 | 1237 | - URL: 1238 | 1239 | - Pushed at: _Jan 8, 2014 4:37AM (UTC)_ 1240 | 1241 | ### stretchr/version 1242 | 1243 | Command line tool for versioning projects 1244 | 1245 | - URL: 1246 | 1247 | - Pushed at: _Jan 7, 2014 4:01AM (UTC)_ 1248 | 1249 | ### pksunkara/alpaca 1250 | 1251 | Given a web API, Generate client libraries in node, php, python, ruby 1252 | 1253 | - URL: 1254 | 1255 | - Pushed at: _Jan 15, 2014 2:59PM (UTC)_ 1256 | 1257 | ### jordan-wright/email 1258 | 1259 | Robust and flexible email library for Go 1260 | 1261 | - URL: 1262 | 1263 | - Pushed at: _Jan 12, 2014 7:15PM (UTC)_ 1264 | 1265 | ### igrigorik/ga-beacon 1266 | 1267 | Google Analytics collector-as-a-service for GitHub (and others). 1268 | 1269 | - URL: 1270 | 1271 | - Pushed at: _Jan 8, 2014 11:42PM (UTC)_ 1272 | 1273 | ### shaoshing/train 1274 | 1275 | Asset Management for web app using Golang. 1276 | 1277 | - URL: 1278 | 1279 | - Pushed at: _Oct 5, 2013 7:15PM (UTC)_ 1280 | 1281 | ### ainar-g/i 1282 | 1283 | i (pronounced as in bit), a minimalistic i18n package for Go language. Attention! Still Unstable! 1284 | 1285 | - URL: 1286 | 1287 | - Pushed at: _Dec 29, 2013 11:36AM (UTC)_ 1288 | 1289 | ### davecheney/mdns 1290 | 1291 | Multicast DNS library for Go 1292 | 1293 | - URL: 1294 | 1295 | - Site: 1296 | 1297 | - Pushed at: _Jan 11, 2013 12:36AM (UTC)_ 1298 | 1299 | ### gorilla/websocket 1300 | 1301 | A WebSocket implementation for Go. 1302 | 1303 | - URL: 1304 | 1305 | - Pushed at: _Dec 31, 2013 4:31PM (UTC)_ 1306 | 1307 | ### hybridgroup/gobot 1308 | 1309 | A set of Go libraries for robotics and physical computing 1310 | 1311 | - URL: 1312 | 1313 | - Site: 1314 | 1315 | - Pushed at: _Jan 14, 2014 12:10AM (UTC)_ 1316 | 1317 | ### nictuku/dht 1318 | 1319 | Kademlia/Mainline DHT node in Go. 1320 | 1321 | - URL: 1322 | 1323 | - Pushed at: _Dec 24, 2013 5:04AM (UTC)_ 1324 | 1325 | ### kid0m4n/go-rpi 1326 | 1327 | Golang + RaspberryPi = nirvana :) 1328 | 1329 | - URL: 1330 | 1331 | - Pushed at: _Jan 10, 2014 2:10AM (UTC)_ 1332 | 1333 | ### skyjia/repogen 1334 | 1335 | A toy to generate a Markdown index document for my starred GitHub repositories. 1336 | 1337 | - URL: 1338 | 1339 | - Pushed at: _Jan 6, 2014 2:01AM (UTC)_ 1340 | 1341 | ### google/go-github 1342 | 1343 | Go library for accessing the GitHub API 1344 | 1345 | - URL: 1346 | 1347 | - Site: 1348 | 1349 | - Pushed at: _Jan 3, 2014 6:34PM (UTC)_ 1350 | 1351 | ### VividCortex/multitick 1352 | 1353 | A multiplexor for aligned time.Time tickers 1354 | 1355 | - URL: 1356 | 1357 | - Pushed at: _Jan 9, 2014 11:23PM (UTC)_ 1358 | 1359 | ### benschw/dockit 1360 | 1361 | - URL: 1362 | 1363 | - Pushed at: _Dec 18, 2013 6:20AM (UTC)_ 1364 | 1365 | ### mattn/go-gtk 1366 | 1367 | Go binding for GTK 1368 | 1369 | - URL: 1370 | 1371 | - Site: 1372 | 1373 | - Pushed at: _Dec 20, 2013 11:53AM (UTC)_ 1374 | 1375 | ### davecheney/godoc2md 1376 | 1377 | Simple translation from godoc to markdown. 1378 | 1379 | - URL: 1380 | 1381 | - Pushed at: _Dec 22, 2013 3:15AM (UTC)_ 1382 | 1383 | ### mesosphere/mesos-go 1384 | 1385 | Go language bindings for Apache Mesos 1386 | 1387 | - URL: 1388 | 1389 | - Pushed at: _Dec 13, 2013 10:47PM (UTC)_ 1390 | 1391 | ### hortonworks/gohadoop 1392 | 1393 | - URL: 1394 | 1395 | - Pushed at: _Nov 5, 2013 9:50AM (UTC)_ 1396 | 1397 | ### benmanns/goworker 1398 | 1399 | goworker is a Go-based background worker that runs 10 to 100,000* times faster than Ruby-based workers. 1400 | 1401 | - URL: 1402 | 1403 | - Site: 1404 | 1405 | - Pushed at: _Dec 14, 2013 6:06PM (UTC)_ 1406 | 1407 | ### progrium/termshare 1408 | 1409 | Quick and easy terminal sharing. 1410 | 1411 | - URL: 1412 | 1413 | - Site: 1414 | 1415 | - Pushed at: _Dec 16, 2013 3:08AM (UTC)_ 1416 | 1417 | ### zimbatm/socketmaster 1418 | 1419 | Zero downtime restarts for your apps 1420 | 1421 | - URL: 1422 | 1423 | - Site: 1424 | 1425 | - Pushed at: _Dec 16, 2013 2:44PM (UTC)_ 1426 | 1427 | ### joewalnes/websocketd 1428 | 1429 | Like inetd, but for WebSockets. Turn any application that uses STDIN/STDOUT into a WebSocket server. 1430 | 1431 | - URL: 1432 | 1433 | - Site: 1434 | 1435 | - Pushed at: _Jan 11, 2014 11:19PM (UTC)_ 1436 | 1437 | ### neelance/gopherjs 1438 | 1439 | A transpiler from Go to JavaScript 1440 | 1441 | - URL: 1442 | 1443 | - Pushed at: _Jan 17, 2014 12:47AM (UTC)_ 1444 | 1445 | ### clipperhouse/gen 1446 | 1447 | An attempt to bring some generics-like functionality to Go. 1448 | 1449 | - URL: 1450 | 1451 | - Site: 1452 | 1453 | - Pushed at: _Jan 14, 2014 3:51AM (UTC)_ 1454 | 1455 | ### ryanbressler/CloudForest 1456 | 1457 | Ensembles of decision trees in go/golang. 1458 | 1459 | - URL: 1460 | 1461 | - Pushed at: _Jan 16, 2014 10:47PM (UTC)_ 1462 | 1463 | ### cyfdecyf/cow 1464 | 1465 | HTTP proxy written in Go. COW can automatically identify blocked sites and use parent proxies to access. 1466 | 1467 | - URL: 1468 | 1469 | - Pushed at: _Dec 21, 2013 6:00AM (UTC)_ 1470 | 1471 | ### idada/v8.go 1472 | 1473 | V8 JavaScript engine bindings for Go 1474 | 1475 | - URL: 1476 | 1477 | - Pushed at: _Jan 9, 2014 6:10AM (UTC)_ 1478 | 1479 | ### DHowett/go-plist 1480 | 1481 | A pure Go Apple Property List transcoder 1482 | 1483 | - URL: 1484 | 1485 | - Pushed at: _Dec 14, 2013 12:49PM (UTC)_ 1486 | 1487 | ### gocraft/web 1488 | 1489 | Go Router + Middleware. Your Contexts. 1490 | 1491 | - URL: 1492 | 1493 | - Pushed at: _Jan 11, 2014 6:26PM (UTC)_ 1494 | 1495 | ### inconshreveable/muxado 1496 | 1497 | Stream multiplexing for Go 1498 | 1499 | - URL: 1500 | 1501 | - Pushed at: _Jan 10, 2014 9:38AM (UTC)_ 1502 | 1503 | ### beevik/etree 1504 | 1505 | etree is a go package that provides XML services through an Element Tree abstraction. 1506 | 1507 | - URL: 1508 | 1509 | - Pushed at: _Jan 13, 2014 6:24PM (UTC)_ 1510 | 1511 | ### sosedoff/lunchy-go 1512 | 1513 | OSX Launch Manager 1514 | 1515 | - URL: 1516 | 1517 | - Pushed at: _Dec 9, 2013 3:42PM (UTC)_ 1518 | 1519 | ### niemeyer/qml 1520 | 1521 | QML support for the Go language 1522 | 1523 | - URL: 1524 | 1525 | - Pushed at: _Nov 29, 2013 6:31PM (UTC)_ 1526 | 1527 | ### nsf/gocode 1528 | 1529 | An autocompletion daemon for the Go programming language 1530 | 1531 | - URL: 1532 | 1533 | - Pushed at: _Jan 16, 2014 5:34PM (UTC)_ 1534 | 1535 | ### astaxie/gopkg 1536 | 1537 | example for the go pkg's function 1538 | 1539 | - URL: 1540 | 1541 | - Pushed at: _Dec 11, 2013 1:58AM (UTC)_ 1542 | 1543 | ### deckarep/gosx-notifier 1544 | 1545 | gosx-notifier is a Go framework for sending desktop notifications to OSX 10.8 or higher 1546 | 1547 | - URL: 1548 | 1549 | - Pushed at: _Dec 15, 2013 6:40AM (UTC)_ 1550 | 1551 | ### garyburd/gosrc 1552 | 1553 | Package gosrc fetches Go package source code from version control services. 1554 | 1555 | - URL: 1556 | 1557 | - Pushed at: _Jan 8, 2014 4:59PM (UTC)_ 1558 | 1559 | ### garyburd/gddo 1560 | 1561 | Go Doc Dot Org 1562 | 1563 | - URL: 1564 | 1565 | - Site: 1566 | 1567 | - Pushed at: _Jan 10, 2014 4:41AM (UTC)_ 1568 | 1569 | ### progrium/go-plugins 1570 | 1571 | Let users extend your Go programs using JavaScript and other dynamic runtimes 1572 | 1573 | - URL: 1574 | 1575 | - Pushed at: _Dec 3, 2013 5:52AM (UTC)_ 1576 | 1577 | ### cihub/seelog 1578 | 1579 | Seelog provides logging functionality with flexible dispatching, filtering, and formatting. Natively written in Go language. Check our Wiki page for more detailed description, reference, tutorials, etc. 1580 | 1581 | - URL: 1582 | 1583 | - Pushed at: _Jan 15, 2014 3:21PM (UTC)_ 1584 | 1585 | ### jinzhu/now 1586 | 1587 | Now is a time toolkit for golang 1588 | 1589 | - URL: 1590 | 1591 | - Pushed at: _Dec 23, 2013 8:22AM (UTC)_ 1592 | 1593 | ### rcrowley/goagain 1594 | 1595 | Zero-downtime restarts in Go 1596 | 1597 | - URL: 1598 | 1599 | - Pushed at: _Nov 16, 2013 6:55PM (UTC)_ 1600 | 1601 | ### surma/httptools 1602 | 1603 | Augmenting the basic net/http package with functionality found in web frameworks without breaking the original API. 1604 | 1605 | - URL: 1606 | 1607 | - Pushed at: _Dec 18, 2013 12:26PM (UTC)_ 1608 | 1609 | ### spf13/cobra 1610 | 1611 | A Commander for modern Go CLI interactions 1612 | 1613 | - URL: 1614 | 1615 | - Pushed at: _Jan 12, 2014 6:21AM (UTC)_ 1616 | 1617 | ### spf13/hugo 1618 | 1619 | A Fast and Flexible Static Site Generator built with love by spf13 in GoLang 1620 | 1621 | - URL: 1622 | 1623 | - Site: 1624 | 1625 | - Pushed at: _Jan 15, 2014 4:06PM (UTC)_ 1626 | 1627 | ### howeyc/fsnotify 1628 | 1629 | File system notification for Go 1630 | 1631 | - URL: 1632 | 1633 | - Pushed at: _Nov 21, 2013 4:20PM (UTC)_ 1634 | 1635 | ### mailgun/vulcan 1636 | 1637 | Programmatic HTTP rate limiting proxy for JSON based APIs. 1638 | 1639 | - URL: 1640 | 1641 | - Site: 1642 | 1643 | - Pushed at: _Dec 27, 2013 11:31PM (UTC)_ 1644 | 1645 | ### globocom/docker-cluster 1646 | 1647 | Cluster support for Docker, using the remote API. 1648 | 1649 | - URL: 1650 | 1651 | - Site: 1652 | 1653 | - Pushed at: _Jan 16, 2014 4:06PM (UTC)_ 1654 | 1655 | ### huichen/wukong 1656 | 1657 | 高度可定制的全文搜索引擎 1658 | 1659 | - URL: 1660 | 1661 | - Pushed at: _Jan 4, 2014 7:12PM (UTC)_ 1662 | 1663 | ### huichen/sego 1664 | 1665 | Go中文分词 1666 | 1667 | - URL: 1668 | 1669 | - Pushed at: _Jan 9, 2014 1:29AM (UTC)_ 1670 | 1671 | ### laher/goxc 1672 | 1673 | a build tool for Go, with a focus on cross-compiling, packaging and deployment 1674 | 1675 | - URL: 1676 | 1677 | - Pushed at: _Dec 24, 2013 10:39AM (UTC)_ 1678 | 1679 | ### smartystreets/goconvey 1680 | 1681 | Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go. "It's a joy writing tests with GoConvey!" 1682 | 1683 | - URL: 1684 | 1685 | - Site: 1686 | 1687 | - Pushed at: _Jan 9, 2014 4:16PM (UTC)_ 1688 | 1689 | ### codegangsta/martini 1690 | 1691 | Classy web framework for Go 1692 | 1693 | - URL: 1694 | 1695 | - Site: 1696 | 1697 | - Pushed at: _Jan 15, 2014 9:36PM (UTC)_ 1698 | 1699 | ### qiniu/iconv 1700 | 1701 | Golang bindings to libiconv - Convert string to requested character encoding 1702 | 1703 | - URL: 1704 | 1705 | - Pushed at: _Sep 9, 2013 7:09PM (UTC)_ 1706 | 1707 | ### PuerkitoBio/goquery 1708 | 1709 | A little like that j-thing, only in Go. 1710 | 1711 | - URL: 1712 | 1713 | - Pushed at: _Dec 3, 2013 12:52AM (UTC)_ 1714 | 1715 | ### mitchellh/packer 1716 | 1717 | Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. 1718 | 1719 | - URL: 1720 | 1721 | - Site: 1722 | 1723 | - Pushed at: _Jan 16, 2014 11:52PM (UTC)_ 1724 | 1725 | ### benbjohnson/megajson 1726 | 1727 | A JSON parser generator for high performance encoding and decoding in Go. 1728 | 1729 | - URL: 1730 | 1731 | - Pushed at: _Jan 16, 2014 3:19PM (UTC)_ 1732 | 1733 | ### christopherhesse/rethinkgo 1734 | 1735 | Go language driver for RethinkDB 1736 | 1737 | - URL: 1738 | 1739 | - Site: 1740 | 1741 | - Pushed at: _Sep 28, 2013 10:23PM (UTC)_ 1742 | 1743 | ### anandkunal/goq 1744 | 1745 | A persistent queue implemented in Go. 1746 | 1747 | - URL: 1748 | 1749 | - Pushed at: _Oct 22, 2012 11:55PM (UTC)_ 1750 | 1751 | ### azer/boxcars 1752 | 1753 | Easy-to-configure Static Web & Reverse Proxy Server in Go 1754 | 1755 | - URL: 1756 | 1757 | - Pushed at: _Dec 12, 2013 12:37AM (UTC)_ 1758 | 1759 | ### buger/gor 1760 | 1761 | HTTP traffic replay in real-time. Replay traffic from production to staging and dev environments. 1762 | 1763 | - URL: 1764 | 1765 | - Site: 1766 | 1767 | - Pushed at: _Jan 6, 2014 5:13PM (UTC)_ 1768 | 1769 | ### skydb/sky 1770 | 1771 | Sky is an open source, behavioral analytics database. 1772 | 1773 | - URL: 1774 | 1775 | - Site: 1776 | 1777 | - Pushed at: _Jan 14, 2014 10:29PM (UTC)_ 1778 | 1779 | ### goraft/raft 1780 | 1781 | A Go implementation of the Raft distributed consensus protocol. 1782 | 1783 | - URL: 1784 | 1785 | - Pushed at: _Jan 15, 2014 12:27PM (UTC)_ 1786 | 1787 | ### inconshreveable/ngrok 1788 | 1789 | Introspected tunnels to localhost 1790 | 1791 | - URL: 1792 | 1793 | - Pushed at: _Jan 10, 2014 9:11PM (UTC)_ 1794 | 1795 | ### globocom/tsuru 1796 | 1797 | Open source Platform as a Service. 1798 | 1799 | - URL: 1800 | 1801 | - Site: 1802 | 1803 | - Pushed at: _Jan 17, 2014 12:55AM (UTC)_ 1804 | 1805 | ### technoweenie/grohl 1806 | 1807 | Combination logging, exception reporting, and metrics library for Go. 1808 | 1809 | - URL: 1810 | 1811 | - Pushed at: _Dec 11, 2013 1:45AM (UTC)_ 1812 | 1813 | ### influxdb/influxdb 1814 | 1815 | Scalable datastore for metrics, events, and real-time analytics 1816 | 1817 | - URL: 1818 | 1819 | - Site: 1820 | 1821 | - Pushed at: _Jan 17, 2014 12:19AM (UTC)_ 1822 | 1823 | ### franela/goreq 1824 | 1825 | Minimal and simple request library for Go language 1826 | 1827 | - URL: 1828 | 1829 | - Pushed at: _Dec 3, 2013 11:17PM (UTC)_ 1830 | 1831 | ### robfig/revel 1832 | 1833 | A high productivity web framework for the Go language, in the spirit of Rails and Play!. 1834 | 1835 | - URL: 1836 | 1837 | - Site: 1838 | 1839 | - Pushed at: _Jan 7, 2014 7:12AM (UTC)_ 1840 | 1841 | ### miekg/dns 1842 | 1843 | DNS library in Go 1844 | 1845 | - URL: 1846 | 1847 | - Site: 1848 | 1849 | - Pushed at: _Jan 12, 2014 1:47PM (UTC)_ 1850 | 1851 | ### skynetservices/skydns 1852 | 1853 | DNS for skynet or any other service discovery 1854 | 1855 | - URL: 1856 | 1857 | - Pushed at: _Jan 2, 2014 11:37AM (UTC)_ 1858 | 1859 | ### ha/doozerd 1860 | 1861 | A consistent distributed data store. 1862 | 1863 | - URL: 1864 | 1865 | - Pushed at: _Dec 28, 2013 7:22PM (UTC)_ 1866 | 1867 | ### kelseyhightower/confd 1868 | 1869 | Manage local application configuration files using templates and data from etcd 1870 | 1871 | - URL: 1872 | 1873 | - Pushed at: _Jan 11, 2014 10:42PM (UTC)_ 1874 | 1875 | ### codegangsta/cli 1876 | 1877 | A small package for building command line apps in Go 1878 | 1879 | - URL: 1880 | 1881 | - Pushed at: _Jan 8, 2014 4:08PM (UTC)_ 1882 | 1883 | ### melllvar/Gofr 1884 | 1885 | Feed Reader for App Engine (Google Reader clone) 1886 | 1887 | - URL: 1888 | 1889 | - Pushed at: _Jan 4, 2014 12:45AM (UTC)_ 1890 | 1891 | ### coreos/etcd 1892 | 1893 | A highly-available key value store for shared configuration and service discovery 1894 | 1895 | - URL: 1896 | 1897 | - Pushed at: _Jan 17, 2014 1:09AM (UTC)_ 1898 | 1899 | ### hashicorp/serf 1900 | 1901 | Service orchestration and management tool. 1902 | 1903 | - URL: 1904 | 1905 | - Site: 1906 | 1907 | - Pushed at: _Jan 10, 2014 6:55PM (UTC)_ 1908 | 1909 | ### bitly/go-nsq 1910 | 1911 | the official Go package for NSQ 1912 | 1913 | - URL: 1914 | 1915 | - Pushed at: _Dec 19, 2013 9:17PM (UTC)_ 1916 | 1917 | ### alecthomas/gozmq 1918 | 1919 | Go (golang) bindings for the 0mq (zmq, zeromq) C API 1920 | 1921 | - URL: 1922 | 1923 | - Pushed at: _Nov 1, 2013 1:46AM (UTC)_ 1924 | 1925 | ### burke/zeus 1926 | 1927 | Boot any rails app in under a second. 1928 | 1929 | - URL: 1930 | 1931 | - Pushed at: _Nov 11, 2013 3:41PM (UTC)_ 1932 | 1933 | ### tsenart/vegeta 1934 | 1935 | HTTP load testing tool and library. It's over 9000! 1936 | 1937 | - URL: 1938 | 1939 | - Site: 1940 | 1941 | - Pushed at: _Jan 4, 2014 4:29PM (UTC)_ 1942 | 1943 | ### bitly/nsq 1944 | 1945 | A realtime distributed messaging platform 1946 | 1947 | - URL: 1948 | 1949 | - Site: 1950 | 1951 | - Pushed at: _Jan 17, 2014 1:59AM (UTC)_ 1952 | 1953 | ### golang/groupcache 1954 | 1955 | groupcache is a caching and cache-filling library, intended as a replacement for memcached in many cases. 1956 | 1957 | - URL: 1958 | 1959 | - Pushed at: _Oct 30, 2013 4:55PM (UTC)_ 1960 | 1961 | ### Sendhub/shipbuilder 1962 | 1963 | The Open-source self-hosted Platform-as-a-Service written in Go 1964 | 1965 | - URL: 1966 | 1967 | - Site: 1968 | 1969 | - Pushed at: _Jan 7, 2014 12:50AM (UTC)_ 1970 | 1971 | ### kisielk/errcheck 1972 | 1973 | errcheck checks that you checked errors. 1974 | 1975 | - URL: 1976 | 1977 | - Pushed at: _Dec 14, 2013 8:07AM (UTC)_ 1978 | 1979 | ### HouzuoGuo/tiedot 1980 | 1981 | Your NoSQL database powered by Golang 1982 | 1983 | - URL: 1984 | 1985 | - Pushed at: _Jan 16, 2014 9:16PM (UTC)_ 1986 | 1987 | ### limetext/lime 1988 | 1989 | Experimental Sublime Text clone 1990 | 1991 | - URL: 1992 | 1993 | - Pushed at: _Jan 15, 2014 7:02PM (UTC)_ 1994 | 1995 | ### mmcgrana/gobyexample 1996 | 1997 | Go by Example 1998 | 1999 | - URL: 2000 | 2001 | - Site: 2002 | 2003 | - Pushed at: _Jan 16, 2014 4:14PM (UTC)_ 2004 | 2005 | ### apcera/gnatsd 2006 | 2007 | High Performance NATS Server 2008 | 2009 | - URL: 2010 | 2011 | - Pushed at: _Jan 9, 2014 5:26AM (UTC)_ 2012 | 2013 | ### dotcloud/docker 2014 | 2015 | Docker - the open-source application container engine 2016 | 2017 | - URL: 2018 | 2019 | - Site: 2020 | 2021 | - Pushed at: _Jan 17, 2014 1:58AM (UTC)_ 2022 | 2023 | ### skynetservices/skynet 2024 | 2025 | Skynet is a framework for distributed services in Go. 2026 | 2027 | - URL: 2028 | 2029 | - Pushed at: _Oct 24, 2013 3:38PM (UTC)_ 2030 | 2031 | ### ha/doozer 2032 | 2033 | Go client driver for doozerd, a consistent, distributed data store 2034 | 2035 | - URL: 2036 | 2037 | - Site: 2038 | 2039 | - Pushed at: _Aug 7, 2013 2:13AM (UTC)_ 2040 | 2041 | ### zond/god 2042 | 2043 | A Go database 2044 | 2045 | - URL: 2046 | 2047 | - Pushed at: _Aug 9, 2013 1:54PM (UTC)_ 2048 | 2049 | ### stretchr/goweb 2050 | 2051 | A lightweight RESTful web framework for Go 2052 | 2053 | - URL: 2054 | 2055 | - Pushed at: _Jan 3, 2014 10:44PM (UTC)_ 2056 | 2057 | ### astaxie/beego 2058 | 2059 | beego is an open-source, high-performance web framework for the Go programming language. 2060 | 2061 | - URL: 2062 | 2063 | - Site: 2064 | 2065 | - Pushed at: _Jan 17, 2014 1:28AM (UTC)_ 2066 | 2067 | ### jmckaskill/gospdy 2068 | 2069 | SPDY client/server for Go 2070 | 2071 | - URL: 2072 | 2073 | - Pushed at: _Mar 17, 2013 10:14PM (UTC)_ 2074 | 2075 | ### shykes/spdy-go 2076 | 2077 | A SPDY implementation for humans, written in Go 2078 | 2079 | - URL: 2080 | 2081 | - Pushed at: _Jan 18, 2013 3:22AM (UTC)_ 2082 | 2083 | ### astaxie/build-web-application-with-golang 2084 | 2085 | A golang ebook intro how to build a web with golang 2086 | 2087 | - URL: 2088 | 2089 | - Pushed at: _Jan 8, 2014 12:48PM (UTC)_ 2090 | 2091 | ### ungerik/go-start 2092 | 2093 | A high level web-framework for Go 2094 | 2095 | - URL: 2096 | 2097 | - Site: 2098 | 2099 | - Pushed at: _May 2, 2013 9:54AM (UTC)_ 2100 | 2101 | ## [Shell](id:shell) 2102 | 2103 | 11 repositories 2104 | ### alandipert/gherkin 2105 | 2106 | a functional programming language and interpreter written in GNU Bash 4 2107 | 2108 | - URL: 2109 | 2110 | - Pushed at: _Dec 12, 2013 5:15PM (UTC)_ 2111 | 2112 | ### noplay/docker-osx 2113 | 2114 | Fast and easy installation of Docker on OS X 2115 | 2116 | - URL: 2117 | 2118 | - Pushed at: _Jan 16, 2014 1:00PM (UTC)_ 2119 | 2120 | ### nvie/gitflow 2121 | 2122 | Git extensions to provide high-level repository operations for Vincent Driessen's branching model. 2123 | 2124 | - URL: 2125 | 2126 | - Site: 2127 | 2128 | - Pushed at: _Sep 26, 2012 10:25AM (UTC)_ 2129 | 2130 | ### yeoman/yeoman 2131 | 2132 | Yeoman - a set of tools for automating development workflow. 2133 | 2134 | - URL: 2135 | 2136 | - Site: 2137 | 2138 | - Pushed at: _Jan 16, 2014 6:40PM (UTC)_ 2139 | 2140 | ### zimbatm/direnv 2141 | 2142 | Unclutter your .profile 2143 | 2144 | - URL: 2145 | 2146 | - Site: 2147 | 2148 | - Pushed at: _Jan 12, 2014 3:34PM (UTC)_ 2149 | 2150 | ### alrra/browser-logos 2151 | 2152 | Collection of high resolution web browser logos with transparent backgrounds 2153 | 2154 | - URL: 2155 | 2156 | - Site: 2157 | 2158 | - Pushed at: _Jan 9, 2014 9:33PM (UTC)_ 2159 | 2160 | ### flynn/flynn-dev 2161 | 2162 | Flynn development environment in a VM 2163 | 2164 | - URL: 2165 | 2166 | - Site: 2167 | 2168 | - Pushed at: _Jan 16, 2014 4:24PM (UTC)_ 2169 | 2170 | ### bpinto/oh-my-fish 2171 | 2172 | Framework for managing your fish shell configuration inspired by Oh My ZSH. 2173 | 2174 | - URL: 2175 | 2176 | - Pushed at: _Jan 14, 2014 4:15AM (UTC)_ 2177 | 2178 | ### thoughtbot/laptop 2179 | 2180 | A shell script which turns your Linux or Mac OS X laptop into an awesome development machine. 2181 | 2182 | - URL: 2183 | 2184 | - Pushed at: _Jan 13, 2014 9:15PM (UTC)_ 2185 | 2186 | ### jedi4ever/veewee 2187 | 2188 | Easing the building of vagrant boxes 2189 | 2190 | - URL: 2191 | 2192 | - Pushed at: _Jan 15, 2014 5:42PM (UTC)_ 2193 | 2194 | ### progrium/dokku 2195 | 2196 | Docker powered mini-Heroku in around 100 lines of Bash 2197 | 2198 | - URL: 2199 | 2200 | - Pushed at: _Jan 12, 2014 5:43PM (UTC)_ 2201 | 2202 | ## [Objective-C](id:objective-c) 2203 | 2204 | 27 repositories 2205 | ### vtourraine/VTAcknowledgementsViewController 2206 | 2207 | Ready to use “Acknowledgements”/“Licenses” view controller for CocoaPods. 2208 | 2209 | - URL: 2210 | 2211 | - Pushed at: _Jan 16, 2014 10:29PM (UTC)_ 2212 | 2213 | ### jpwidmer/iOS7-BarcodeScanner 2214 | 2215 | Barcode scanner using the scanning capabilities introduced with iOS 7. 2216 | 2217 | - URL: 2218 | 2219 | - Pushed at: _Jan 9, 2014 3:02PM (UTC)_ 2220 | 2221 | ### OpenEmu/OpenEmu 2222 | 2223 | Emulator framework for Mac OS X 2224 | 2225 | - URL: 2226 | 2227 | - Site: 2228 | 2229 | - Pushed at: _Jan 15, 2014 9:59AM (UTC)_ 2230 | 2231 | ### bendytree/Objective-C-RegEx-Categories 2232 | 2233 | NSRegularExpression categories that simplify regular expressions in Objective-C 2234 | 2235 | - URL: 2236 | 2237 | - Pushed at: _Jan 14, 2014 9:46PM (UTC)_ 2238 | 2239 | ### pornel/ImageOptim 2240 | 2241 | GUI image optimizer for Mac 2242 | 2243 | - URL: 2244 | 2245 | - Pushed at: _Jan 9, 2014 1:25AM (UTC)_ 2246 | 2247 | ### bennyguitar/BGUtilities 2248 | 2249 | A collection of categories and class methods to make your iOS life easier. 2250 | 2251 | - URL: 2252 | 2253 | - Pushed at: _Jan 16, 2014 12:49AM (UTC)_ 2254 | 2255 | ### trawor/XToDo 2256 | 2257 | Xcode plugin to collect and list the `TODO`,`FIXME`,`???`,`!!!!` 2258 | 2259 | - URL: 2260 | 2261 | - Site: 2262 | 2263 | - Pushed at: _Jan 11, 2014 9:32AM (UTC)_ 2264 | 2265 | ### quartermaster/QSKit 2266 | 2267 | Q Branch’s collection of Cocoa categories and utilities. 2268 | 2269 | - URL: 2270 | 2271 | - Pushed at: _Jan 6, 2014 7:37PM (UTC)_ 2272 | 2273 | ### twitter/CocoaSPDY 2274 | 2275 | SPDY for iOS and OS X 2276 | 2277 | - URL: 2278 | 2279 | - Pushed at: _Jan 15, 2014 1:10AM (UTC)_ 2280 | 2281 | ### uzysjung/UzysCircularProgressPullToRefresh 2282 | 2283 | Give Pinterest Like PullToRefresh to any UIScrollView with just simple code 2284 | 2285 | - URL: 2286 | 2287 | - Pushed at: _Jan 10, 2014 5:06AM (UTC)_ 2288 | 2289 | ### ColinEberhardt/VCTransitionsLibrary 2290 | 2291 | A collection of iOS7 animation controllers and interaction controllers, providing flip, fold and all kinds of other transitions. 2292 | 2293 | - URL: 2294 | 2295 | - Pushed at: _Dec 10, 2013 10:38PM (UTC)_ 2296 | 2297 | ### CEWendel/SWTableViewCell 2298 | 2299 | An easy-to-use UITableViewCell subclass that implements a swippable content view which exposes utility buttons (similar to iOS 7 Mail Application) 2300 | 2301 | - URL: 2302 | 2303 | - Pushed at: _Jan 9, 2014 8:29PM (UTC)_ 2304 | 2305 | ### gnachman/iTerm2 2306 | 2307 | iTerm2 is a terminal emulator for Mac OS X that does amazing things. 2308 | 2309 | - URL: 2310 | 2311 | - Site: 2312 | 2313 | - Pushed at: _Jan 17, 2014 1:35AM (UTC)_ 2314 | 2315 | ### EvgenyKarkan/EKAlgorithms 2316 | 2317 | EKAlgorithms contains some well known CS algorithms and other stuff. 2318 | 2319 | - URL: 2320 | 2321 | - Pushed at: _Dec 28, 2013 8:57AM (UTC)_ 2322 | 2323 | ### Shmoopi/iOS-System-Services 2324 | 2325 | iOS System Services is a class to gather all available information about a device. 2326 | 2327 | - URL: 2328 | 2329 | - Site: 2330 | 2331 | - Pushed at: _Nov 21, 2013 1:10AM (UTC)_ 2332 | 2333 | ### romaonthego/RESideMenu 2334 | 2335 | iOS 7 style side menu with parallax effect. 2336 | 2337 | - URL: 2338 | 2339 | - Pushed at: _Dec 20, 2013 3:47PM (UTC)_ 2340 | 2341 | ### xiaodao/UIDynamicExample 2342 | 2343 | examples of UIDynamic behaviour of iOS7 2344 | 2345 | - URL: 2346 | 2347 | - Pushed at: _Nov 19, 2013 10:18AM (UTC)_ 2348 | 2349 | ### AFNetworking/AFNetworking 2350 | 2351 | A delightful iOS and OS X networking framework 2352 | 2353 | - URL: 2354 | 2355 | - Site: 2356 | 2357 | - Pushed at: _Jan 16, 2014 6:22PM (UTC)_ 2358 | 2359 | ### mjmsmith/gcdobjc 2360 | 2361 | Objective-C wrapper for Grand Central Dispatch 2362 | 2363 | - URL: 2364 | 2365 | - Pushed at: _Nov 16, 2013 5:36PM (UTC)_ 2366 | 2367 | ### dbachrach/OCUDL 2368 | 2369 | User defined literals for Objective-C 2370 | 2371 | - URL: 2372 | 2373 | - Pushed at: _Dec 19, 2013 1:54AM (UTC)_ 2374 | 2375 | ### monospacecollective/MSDynamicsDrawerViewController 2376 | 2377 | Container view controller that leverages UIKit Dynamics to provide a realistic drawer navigation paradigm. 2378 | 2379 | - URL: 2380 | 2381 | - Pushed at: _Jan 6, 2014 6:57AM (UTC)_ 2382 | 2383 | ### njdehoog/NHBalancedFlowLayout 2384 | 2385 | UICollectionViewLayout subclass for displaying items of different sizes in a grid without wasting any visual space. Inspired by: http://www.crispymtn.com/stories/the-algorithm-for-a-perfectly-balanced-photo-gallery 2386 | 2387 | - URL: 2388 | 2389 | - Pushed at: _Jan 14, 2014 3:41PM (UTC)_ 2390 | 2391 | ### jdberry/tag 2392 | 2393 | A command line tool to manipulate tags on Mavericks files, and to query for files with those tags. 2394 | 2395 | - URL: 2396 | 2397 | - Pushed at: _Nov 7, 2013 12:37AM (UTC)_ 2398 | 2399 | ### shu223/iOS7-Sampler 2400 | 2401 | Code examples for the new functions of iOS 7. 2402 | 2403 | - URL: 2404 | 2405 | - Pushed at: _Jan 5, 2014 2:54AM (UTC)_ 2406 | 2407 | ### Spaceman-Labs/SMPageControl 2408 | 2409 | A drop in replacement for UIPageControl with a slew of additional customization options. 2410 | 2411 | - URL: 2412 | 2413 | - Pushed at: _Dec 13, 2013 4:24PM (UTC)_ 2414 | 2415 | ### robb/Underscore.m 2416 | 2417 | A DSL for Data Manipulation 2418 | 2419 | - URL: 2420 | 2421 | - Site: 2422 | 2423 | - Pushed at: _Dec 23, 2013 11:27PM (UTC)_ 2424 | 2425 | ### mmattozzi/cocoa-rest-client 2426 | 2427 | A native OS X cocoa application for testing HTTP endpoints 2428 | 2429 | - URL: 2430 | 2431 | - Pushed at: _Dec 7, 2013 3:55PM (UTC)_ 2432 | 2433 | ## [CSS](id:css) 2434 | 2435 | 10 repositories 2436 | ### zimmski/tirion 2437 | 2438 | Tirion is a complete infrastructure for monitoring applications during benchmarks 2439 | 2440 | - URL: 2441 | 2442 | - Pushed at: _Jan 13, 2014 4:33PM (UTC)_ 2443 | 2444 | ### IanLunn/Hover 2445 | 2446 | A collection of CSS3 powered hover effects to be applied to call to actions, buttons, logos, featured images and so on. Easily apply to your own elements, modify or just use for inspiration. Available in CSS and SASS. 2447 | 2448 | - URL: 2449 | 2450 | - Site: 2451 | 2452 | - Pushed at: _Jan 15, 2014 8:10PM (UTC)_ 2453 | 2454 | ### mrmrs/colors 2455 | 2456 | Smarter defaults for colors on the web. 2457 | 2458 | - URL: 2459 | 2460 | - Site: 2461 | 2462 | - Pushed at: _Jan 14, 2014 11:28PM (UTC)_ 2463 | 2464 | ### briangraves/ResponsiveEmailPatterns 2465 | 2466 | A collection of patterns and modules for responsive emails. 2467 | 2468 | - URL: 2469 | 2470 | - Site: 2471 | 2472 | - Pushed at: _Dec 17, 2013 3:14AM (UTC)_ 2473 | 2474 | ### usablica/front-end-frameworks 2475 | 2476 | A collection of best front-end frameworks for faster and easier web development. 2477 | 2478 | - URL: 2479 | 2480 | - Site: 2481 | 2482 | - Pushed at: _Jan 5, 2014 9:49AM (UTC)_ 2483 | 2484 | ### zurb/foundation 2485 | 2486 | The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites and apps that work on any kind of device. 2487 | 2488 | - URL: 2489 | 2490 | - Site: 2491 | 2492 | - Pushed at: _Jan 16, 2014 10:44PM (UTC)_ 2493 | 2494 | ### Pixelkit/PixelKit-Bootstrap-UI-Kits 2495 | 2496 | Free UI Kits built on Bootstrap for any developer that wants to build a cool looking and functional website. Enjoy! 2497 | 2498 | - URL: 2499 | 2500 | - Site: < http://pixelkit.com/free-ui-kits/> 2501 | 2502 | - Pushed at: _Jan 15, 2014 10:24AM (UTC)_ 2503 | 2504 | ### HubSpot/offline 2505 | 2506 | Automatically display online/offline indication to your users. #hubspot-open-source 2507 | 2508 | - URL: 2509 | 2510 | - Site: 2511 | 2512 | - Pushed at: _Dec 10, 2013 3:00AM (UTC)_ 2513 | 2514 | ### driftyco/ionicons 2515 | 2516 | The premium icon font for Ionic Framework 2517 | 2518 | - URL: 2519 | 2520 | - Site: 2521 | 2522 | - Pushed at: _Jan 11, 2014 11:02PM (UTC)_ 2523 | 2524 | ### crosbymichael/dockerui 2525 | 2526 | A web interface for docker. http://docker.io 2527 | 2528 | - URL: 2529 | 2530 | - Pushed at: _Jan 7, 2014 5:40PM (UTC)_ 2531 | 2532 | ## [CoffeeScript](id:coffeescript) 2533 | 2534 | 4 repositories 2535 | ### codecombat/codecombat 2536 | 2537 | Multiplayer programming game for learning how to code. 2538 | 2539 | - URL: 2540 | 2541 | - Site: 2542 | 2543 | - Pushed at: _Jan 17, 2014 12:27AM (UTC)_ 2544 | 2545 | ### dmotz/oriDomi 2546 | 2547 | Fold up DOM elements like paper 2548 | 2549 | - URL: 2550 | 2551 | - Site: 2552 | 2553 | - Pushed at: _Dec 4, 2013 9:29PM (UTC)_ 2554 | 2555 | ### Morhaus/dispatch-proxy 2556 | 2557 | Combine internet connections, increase your download speed 2558 | 2559 | - URL: 2560 | 2561 | - Pushed at: _Dec 14, 2013 12:23PM (UTC)_ 2562 | 2563 | ### HubSpot/signet 2564 | 2565 | Display a unique seal in the developer console of your page. #hubspot-open-source 2566 | 2567 | - URL: 2568 | 2569 | - Site: 2570 | 2571 | - Pushed at: _Dec 19, 2013 3:29PM (UTC)_ 2572 | 2573 | ## [Lua](id:lua) 2574 | 2575 | 2 repositories 2576 | ### salviati/go-qt5 2577 | 2578 | qt5 bindings for go 2579 | 2580 | - URL: 2581 | 2582 | - Pushed at: _Oct 15, 2013 11:09AM (UTC)_ 2583 | 2584 | ### kennyledet/Algorithm-Implementations 2585 | 2586 | Share, discuss and improve algorithm implementations! 2587 | 2588 | - URL: 2589 | 2590 | - Pushed at: _Jan 16, 2014 8:08PM (UTC)_ 2591 | 2592 | ## [VimL](id:viml) 2593 | 2594 | 2 repositories 2595 | ### Blackrush/vim-gocode 2596 | 2597 | A Go bundle for Vundle or Pathogen 2598 | 2599 | - URL: 2600 | 2601 | - Pushed at: _Jan 14, 2014 7:47PM (UTC)_ 2602 | 2603 | ### terryma/vim-multiple-cursors 2604 | 2605 | True Sublime Text style multiple selections for Vim 2606 | 2607 | - URL: 2608 | 2609 | - Pushed at: _Aug 19, 2013 3:49PM (UTC)_ 2610 | 2611 | ## [C++](id:c++) 2612 | 2613 | 3 repositories 2614 | ### wangkuiyi/google-libs 2615 | 2616 | Blade BUILD files that refers to Google libraries installed on your MacOSX computers as //thirdparty 2617 | 2618 | - URL: 2619 | 2620 | - Pushed at: _Nov 24, 2013 8:10AM (UTC)_ 2621 | 2622 | ### rogerwang/node-webkit 2623 | 2624 | Call all Node.js modules directly from DOM and enable a new way of writing applications with all Web technologies. 2625 | 2626 | - URL: 2627 | 2628 | - Pushed at: _Jan 16, 2014 5:04AM (UTC)_ 2629 | 2630 | ### google/lmctfy 2631 | 2632 | lmctfy is the open source version of Google’s container stack, which provides Linux application containers. 2633 | 2634 | - URL: 2635 | 2636 | - Pushed at: _Jan 9, 2014 12:58AM (UTC)_ 2637 | 2638 | ## [Perl](id:perl) 2639 | 2640 | 1 repositories 2641 | ### Flipkart/HostDB 2642 | 2643 | HostDB: a new tool to help manage data center inventory and write applications around it. 2644 | 2645 | - URL: 2646 | 2647 | - Site: 2648 | 2649 | - Pushed at: _Dec 24, 2013 7:33AM (UTC)_ 2650 | 2651 | ## [Scala](id:scala) 2652 | 2653 | 1 repositories 2654 | ### PredictionIO/PredictionIO 2655 | 2656 | PredictionIO, a machine learning server for software developers and data engineers. 2657 | 2658 | - URL: 2659 | 2660 | - Site: 2661 | 2662 | - Pushed at: _Jan 17, 2014 2:20AM (UTC)_ 2663 | 2664 | --- 2665 | Generated at: Jan 17, 2014 3:26AM (UTC) 2666 | 2667 | _Get generator on [GitHub](https://github.com/skyjia/repogen)_ 2668 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | /* 2 | Author: Sky Jia 3 | GitHub: https://github.com/skyjia 4 | Web: http://www.skyjia.com 5 | */ 6 | 7 | package main 8 | 9 | import ( 10 | "flag" 11 | "fmt" 12 | "github.com/google/go-github/github" 13 | "os" 14 | "strings" 15 | "time" 16 | ) 17 | 18 | const GENERATOR_URL string = "https://github.com/skyjia/repogen" 19 | 20 | var ( 21 | username = flag.String("u", "", "GitHub username. (Required)") 22 | ) 23 | 24 | func init() { 25 | flag.Parse() 26 | 27 | if *username == "" { 28 | flag.PrintDefaults() 29 | os.Exit(1) 30 | } 31 | 32 | // Init var 33 | langRepoMap = map[string][]github.Repository{} 34 | languageList = []string{} 35 | } 36 | 37 | const PER_PAGE int = 100 38 | 39 | var langRepoMap map[string][]github.Repository 40 | var languageList []string 41 | 42 | func main() { 43 | fetchGitHubData() 44 | printDocument() 45 | } 46 | 47 | func fetchGitHubData() { 48 | client := github.NewClient(nil) 49 | opt := &github.ActivityListStarredOptions{} 50 | opt.ListOptions.PerPage = PER_PAGE 51 | 52 | page_idx := 1 53 | for { 54 | opt.ListOptions.Page = page_idx 55 | 56 | reps, _, _ := client.Activity.ListStarred(*username, opt) 57 | addListToMap(reps) 58 | 59 | if len(reps) != PER_PAGE { 60 | break 61 | } 62 | 63 | page_idx++ 64 | } 65 | } 66 | 67 | func addListToMap(list []github.Repository) { 68 | if len(list) == 0 { 69 | return 70 | } 71 | 72 | for _, r := range list { 73 | lang := "Unknown" 74 | if r.Language != nil { 75 | lang = *r.Language 76 | } 77 | 78 | langList, ok := langRepoMap[lang] 79 | if !ok { 80 | langList = []github.Repository{} 81 | languageList = append(languageList, lang) 82 | } 83 | // FIXME: Memory problem here 84 | langList = append(langList, r) 85 | langRepoMap[lang] = langList 86 | } 87 | } 88 | 89 | func printDocument() { 90 | printHeader() 91 | printLanguageList() 92 | printRepositoriesByLanguage() 93 | printFooter() 94 | } 95 | 96 | func printHeader() { 97 | fmt.Println("Starred Repositories") 98 | fmt.Println("===============") 99 | fmt.Println() 100 | fmt.Printf("__[%s](https://github.com/%s)__ on GitHub.\r\n", *username, *username) 101 | fmt.Println() 102 | } 103 | 104 | func printLanguageList() { 105 | fmt.Println("## Languages") 106 | fmt.Println() 107 | 108 | for _, lang := range languageList { 109 | fmt.Printf("- [%s](#%s)\r", lang, strings.ToLower(lang)) 110 | } 111 | 112 | fmt.Println("\n") 113 | } 114 | 115 | func printRepositoriesByLanguage() { 116 | fmt.Println("# Index") 117 | fmt.Println() 118 | 119 | for _, lang := range languageList { 120 | list, _ := langRepoMap[lang] 121 | fmt.Printf("## [%s](id:%s)\r\n", lang, strings.ToLower(lang)) 122 | fmt.Println() 123 | 124 | fmt.Printf("%d repositories", len(list)) 125 | fmt.Println() 126 | 127 | printRepositoryList(list) 128 | } 129 | } 130 | 131 | const layout = "Jan 2, 2006 3:04PM (MST)" 132 | 133 | func printRepositoryList(list []github.Repository) { 134 | for _, r := range list { 135 | fmt.Printf("### %s/%s\r\n", *r.Owner.Login, *r.Name) 136 | fmt.Println() 137 | if r.Description != nil && *r.Description != "" { 138 | fmt.Printf("%s\r\n", *r.Description) 139 | fmt.Println() 140 | } 141 | fmt.Printf("- URL: <%s>\r\n", *r.HTMLURL) 142 | fmt.Println() 143 | if r.Homepage != nil && *r.Homepage != "" { 144 | fmt.Printf("- Site: <%s>\r\n", *r.Homepage) 145 | fmt.Println() 146 | } 147 | 148 | fmt.Printf("- Pushed at: _%s_\r\n", r.PushedAt.Format(layout)) 149 | fmt.Println() 150 | } 151 | } 152 | 153 | func printFooter() { 154 | fmt.Println("---") 155 | fmt.Println("Generated at:", time.Now().UTC().Format(layout)) 156 | fmt.Println() 157 | fmt.Printf("_Get generator on [GitHub](%s)_\r\n", GENERATOR_URL) 158 | } 159 | --------------------------------------------------------------------------------