├── .gitignore ├── .github └── FUNDING.yml ├── DOCUMENTATION.md ├── LICENSE ├── CONTRIBUTING.md ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | *~ 4 | *.log 5 | node_modules 6 | *.env 7 | .DS_Store 8 | package-lock.json 9 | .bloggify/* 10 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ionicabizau 2 | patreon: ionicabizau 3 | open_collective: ionicabizau 4 | custom: https://www.buymeacoffee.com/h96wwchmy -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- 1 | ## Documentation 2 | 3 | You can see below the API reference of this module. 4 | 5 | ### `madeInBelarus(a, b)` 6 | A list of neat projects made in Belarus 7 | 8 | #### Params 9 | - **Number** `a`: Param descrpition. 10 | - **Number** `b`: Param descrpition. 11 | 12 | #### Return 13 | - **Number** Return description. 14 | 15 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016-25 Ionică Bizău (https://ionicabizau.net) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # 🌟 Contributing 2 | 3 | Want to contribute to this project? Great! Please read these quick steps to streamline the process and avoid unnecessary tasks. ✨ 4 | 5 | ## 💬 Discuss Changes 6 | Start by opening an issue in the repository using the [bug tracker][1]. Describe your proposed contribution or the bug you've found. If relevant, include platform info and screenshots. 🖼️ 7 | 8 | Wait for feedback before proceeding unless the fix is straightforward, like a typo. 📝 9 | 10 | ## 🔧 Fixing Issues 11 | 12 | Fork the project and create a branch for your fix, naming it `some-great-feature` or `some-issue-fix`. Commit changes while following the [code style][2]. If the project has tests, add one. ✅ 13 | 14 | If a `package.json` or `bower.json` exists, add yourself to the `contributors` array; create it if it doesn't. 🙌 15 | 16 | ```json 17 | { 18 | "contributors": [ 19 | "Your Name (http://your.website)" 20 | ] 21 | } 22 | ``` 23 | 24 | ## 📬 Creating a Pull Request 25 | Open a pull request and reference the initial issue (e.g., *fixes #*). Provide a clear title and consider adding visual aids for clarity. 📊 26 | 27 | ## ⏳ Wait for Feedback 28 | Your contributions will be reviewed. If feedback is given, update your branch as needed, and the pull request will auto-update. 🔄 29 | 30 | ## 🎉 Everyone Is Happy! 31 | Your contributions will be merged, and everyone will appreciate your effort! 😄❤️ 32 | 33 | Thanks! 🤩 34 | 35 | [1]: /issues 36 | [2]: https://github.com/IonicaBizau/code-style -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | # Made in Belarus 21 | 22 | [![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [![Ask me anything](https://img.shields.io/badge/ask%20me-anything-1abc9c.svg)](https://github.com/IonicaBizau/ama) [![Version](https://img.shields.io/npm/v/made-in-belarus.svg)](https://www.npmjs.com/package/made-in-belarus) [![Downloads](https://img.shields.io/npm/dt/made-in-belarus.svg)](https://www.npmjs.com/package/made-in-belarus) [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/@johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github) 23 | 24 | Buy Me A Coffee 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | > A list of neat projects made in Belarus 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | ## Contents 55 | 56 | 57 | - [JavaScript](#javascript) 58 | - [Java](#java) 59 | - [C#](#c-1) 60 | - [CSS](#css) 61 | - [C](undefined) 62 | - [C++](#c-2) 63 | - [ActionScript](#actionscript) 64 | - [Clojure](#clojure) 65 | - [Objective-C](#objective-c) 66 | - [Perl](#perl) 67 | - [PHP](#php) 68 | - [Python](#python) 69 | - [Ruby](#ruby) 70 | - [Scala](#scala) 71 | - [Shell](#shell) 72 | 73 | ### JavaScript # 74 | 75 | | :star2: | Name | Description | 🌍 | 76 | | ------- | ---- | ----------- | --- | 77 | | 529 | [@chemerisuk](https://github.com/chemerisuk)/[**better-dom**](https://github.com/chemerisuk/better-dom) | Live extension playground | [:arrow_upper_right:](http://chemerisuk.github.io/better-dom/) | 78 | | 381 | [@asapach](https://github.com/asapach)/[**peerflix-server**](https://github.com/asapach/peerflix-server) | Streaming torrent client for node.js with web ui. | | 79 | | 158 | [@ekokotov](https://github.com/ekokotov)/[**object-table**](https://github.com/ekokotov/object-table) | Angular directive to easy create dynamic tables from source or URL with sorting, filtering and pagination. Smart templates and good perfomance | | 80 | | 148 | [@chemerisuk](https://github.com/chemerisuk)/[**better-dateinput-pol…**](https://github.com/chemerisuk/better-dateinput-polyfill) | input[type=date] polyfill for better-dom | [:arrow_upper_right:](http://chemerisuk.github.io/better-dateinput-polyfill/) | 81 | | 97 | [@deepsweet](https://github.com/deepsweet)/[**istanbul-instrumente…**](https://github.com/deepsweet/istanbul-instrumenter-loader) | :100: Istanbul instrumenter loader for webpack | | 82 | | 93 | [@deepsweet](https://github.com/deepsweet)/[**isparta-loader**](https://github.com/deepsweet/isparta-loader) | :100: isparta instrumenter loader for webpack | | 83 | | 84 | [@deepsweet](https://github.com/deepsweet)/[**microjungle**](https://github.com/deepsweet/microjungle) | :factory: HTML templating with JS. The Right Way. | | 84 | | 81 | [@mdreizin](https://github.com/mdreizin)/[**webpack-config**](https://github.com/mdreizin/webpack-config) | Helps to load, extend and merge webpack configs | [:arrow_upper_right:](https://mdreizin.github.io/webpack-config) | 85 | | 65 | [@deepsweet](https://github.com/deepsweet)/[**valya**](https://github.com/deepsweet/valya) | :heavy_check_mark: Higher-Order Component for validation in React | | 86 | | 60 | [@deepsweet](https://github.com/deepsweet)/[**baggage-loader**](https://github.com/deepsweet/baggage-loader) | :handbag: Webpack loader to automatically require any resources related to the required one | | 87 | | 48 | [@chemerisuk](https://github.com/chemerisuk)/[**better-details-polyf…**](https://github.com/chemerisuk/better-details-polyfill) | complete
polyfill using better-dom | | 88 | | 48 | [@deepsweet](https://github.com/deepsweet)/[**autopolyfiller-loade…**](https://github.com/deepsweet/autopolyfiller-loader) | Autopolyfiller loader for webpack | | 89 | | 43 | [@chemerisuk](https://github.com/chemerisuk)/[**better-form-validati…**](https://github.com/chemerisuk/better-form-validation) | Form validation polyfill for better-dom | [:arrow_upper_right:](http://chemerisuk.github.io/better-form-validation/) | 90 | | 43 | [@vvscode](https://github.com/vvscode)/[**js--nightwatch-recor…**](https://github.com/vvscode/js--nightwatch-recorder) | NightwatchJs recorder for Chrome | | 91 | | 41 | [@fantactuka](https://github.com/fantactuka)/[**backbone-validator**](https://github.com/fantactuka/backbone-validator) | Backbone model-view validator | [:arrow_upper_right:]( http://fantactuka.github.io/backbone-validator) | 92 | | 33 | [@fantactuka](https://github.com/fantactuka)/[**backbone-route-filte…**](https://github.com/fantactuka/backbone-route-filter) | Before and after sync/async filters for backbone router | | 93 | | 31 | [@mdreizin](https://github.com/mdreizin)/[**webpack-config-strea…**](https://github.com/mdreizin/webpack-config-stream) | [DEPRECATED] Helps to generate bundles based on webpack config | [:arrow_upper_right:](http://mdreizin.github.io/webpack-config-stream) | 94 | | 26 | [@R1ZZU](https://github.com/R1ZZU)/[**events2**](https://github.com/R1ZZU/events2) | ES2015 implementation of nodejs EventEmitter | | 95 | | 25 | [@chemerisuk](https://github.com/chemerisuk)/[**better-ajaxify**](https://github.com/chemerisuk/better-ajaxify) | Ajax websites engine for better-dom | [:arrow_upper_right:](http://chemerisuk.github.io/better-ajaxify/) | 96 | | 22 | [@deepsweet](https://github.com/deepsweet)/[**babel-istanbul-loade…**](https://github.com/deepsweet/babel-istanbul-loader) | :100: babel-istanbul loader for webpack | | 97 | | 21 | [@vvscode](https://github.com/vvscode)/[**js--ember-render-hel…**](https://github.com/vvscode/js--ember-render-helper) | Render helper for Ember.js ( Allow render components dynamically ) | | 98 | | 21 | [@chemerisuk](https://github.com/chemerisuk)/[**better-placeholder-p…**](https://github.com/chemerisuk/better-placeholder-polyfill) | Placeholder attribute polyfill for better-dom | [:arrow_upper_right:](http://chemerisuk.github.io/better-placeholder-polyfill/) | 99 | | 19 | [@deepsweet](https://github.com/deepsweet)/[**jquery-pointerevents**](https://github.com/deepsweet/jquery-pointerevents) | Basic polyfill for Pointer Events W3C Specification | | 100 | | 18 | [@vvscode](https://github.com/vvscode)/[**js--interview-questi…**](https://github.com/vvscode/js--interview-questions) | Notes from js interviews | | 101 | | 17 | [@fantactuka](https://github.com/fantactuka)/[**role**](https://github.com/fantactuka/role) | Managing user's access depending on his current roles and abilities map | | 102 | | 17 | [@deepsweet](https://github.com/deepsweet)/[**poncho**](https://github.com/deepsweet/poncho) | Client-side JS code coverage using PhantomJS, Mocha and Blanket | | 103 | | 14 | [@2j2e](https://github.com/2j2e)/[**presentations**](https://github.com/2j2e/presentations) | Technical presentations based on supa dupa html5 presentation frameworks | | 104 | | 13 | [@vvscode](https://github.com/vvscode)/[**js--ember-easy-form**](https://github.com/vvscode/js--ember-easy-form) | Update original ember-easy-form for using with ember 1.12 | | 105 | | 12 | [@deepsweet](https://github.com/deepsweet)/[**mustache-loader**](https://github.com/deepsweet/mustache-loader) | Mustache loader for webpack | | 106 | | 12 | [@fesor](https://github.com/fesor)/[**gulp-deb**](https://github.com/fesor/gulp-deb) | Build DEB archives with gulp | | 107 | | 12 | [@fesor](https://github.com/fesor)/[**todoapp**](https://github.com/fesor/todoapp) | Simple todo app | | 108 | | 11 | [@R1ZZU](https://github.com/R1ZZU)/[**editorconfig-cli**](https://github.com/R1ZZU/editorconfig-cli) | initialize .editorconfig in your terminal | | 109 | | 8 | [@deepsweet](https://github.com/deepsweet)/[**markdown-highlight-l…**](https://github.com/deepsweet/markdown-highlight-loader) | Markdown (marked + highlight.js) loader for webpack | | 110 | | 8 | [@chemerisuk](https://github.com/chemerisuk)/[**better-timeinput-pol…**](https://github.com/chemerisuk/better-timeinput-polyfill) | input[type=time] polyfill for better-dom | [:arrow_upper_right:](http://chemerisuk.github.io/better-timeinput-polyfill/) | 111 | | 8 | [@naumov](https://github.com/naumov)/[**refinery_with_users**](https://github.com/naumov/refinery_with_users) | RefineryCMS with user signup, private pages (for registered users only), simple theme | | 112 | | 7 | [@mdreizin](https://github.com/mdreizin)/[**webpack-cluster**](https://github.com/mdreizin/webpack-cluster) | Helps to make parallel webpack compilation easily | [:arrow_upper_right:](https://mdreizin.github.io/webpack-cluster) | 113 | | 7 | [@fantactuka](https://github.com/fantactuka)/[**jquery-ajax-goodies**](https://github.com/fantactuka/jquery-ajax-goodies) | jQuery ajax cache and concurrency extensions | | 114 | | 6 | [@chemerisuk](https://github.com/chemerisuk)/[**better-elastic-texta…**](https://github.com/chemerisuk/better-elastic-textarea) | Make textarea to expand on user input | [:arrow_upper_right:](http://chemerisuk.github.io/better-elastic-textarea/) | 115 | | 6 | [@chemerisuk](https://github.com/chemerisuk)/[**formvalidation.js**](https://github.com/chemerisuk/formvalidation.js) | Polyfill for form validation | | 116 | | 6 | [@evgenTraytyak](https://github.com/evgenTraytyak)/[**skypicker-api**](https://github.com/evgenTraytyak/skypicker-api) | :airplane: A Node.js wrapper for the Skypicker.com API | | 117 | | 5 | [@fantactuka](https://github.com/fantactuka)/[**mootools-decorator**](https://github.com/fantactuka/mootools-decorator) | Mootools decorator pattern and couple default decorators | [:arrow_upper_right:](http://mootools.net/forge/p/function_decorate) | 118 | | 4 | [@deepsweet](https://github.com/deepsweet)/[**yocto**](https://github.com/deepsweet/yocto) | chainable all the default DOM Element methods and properties | | 119 | | 4 | [@vvscode](https://github.com/vvscode)/[**js--mini-games**](https://github.com/vvscode/js--mini-games) | | | 120 | | 4 | [@fantactuka](https://github.com/fantactuka)/[**object-query**](https://github.com/fantactuka/object-query) | DSL for querying JavaScript arrays of objects | | 121 | | 4 | [@fantactuka](https://github.com/fantactuka)/[**mootools-attributes**](https://github.com/fantactuka/mootools-attributes) | Attributes with getters/setters | [:arrow_upper_right:](http://mootools.net/forge/p/class_attributes) | 122 | | 3 | [@chemerisuk](https://github.com/chemerisuk)/[**better-emmet-plugin**](https://github.com/chemerisuk/better-emmet-plugin) | Emmet abbreviation parser for better-dom | | 123 | | 3 | [@meuwka](https://github.com/meuwka)/[**css-grid-layout**](https://github.com/meuwka/css-grid-layout) | Presentation | [:arrow_upper_right:](http://meuwka.github.io/css-grid-layout/) | 124 | | 3 | [@pozitr0n](https://github.com/pozitr0n)/[**Minesweeper**](https://github.com/pozitr0n/Minesweeper) | My version of the famous game. | | 125 | | 3 | [@chemerisuk](https://github.com/chemerisuk)/[**better-xhr**](https://github.com/chemerisuk/better-xhr) | Better abstraction for XMLHttpRequest | | 126 | | 2 | [@pozitr0n](https://github.com/pozitr0n)/[**Canvas**](https://github.com/pozitr0n/Canvas) | Virtual book on CanvasJS | | 127 | | 2 | [@pozitr0n](https://github.com/pozitr0n)/[**Blog-Roman-Kozar**](https://github.com/pozitr0n/Blog-Roman-Kozar) | This is my first blog, written in HTML, CSS, and JavaScript. Actually, this is my first big project. I try to develop him to add something new. For example, I recently attached to it to music. I don't dwell on it. | [:arrow_upper_right:](romankozar.name.ac) | 128 | | 2 | [@chemerisuk](https://github.com/chemerisuk)/[**better-i18n-plugin**](https://github.com/chemerisuk/better-i18n-plugin) | Internationalization plugin for better-dom | | 129 | | 2 | [@Komzpa](https://github.com/Komzpa)/[**kothic-js**](https://github.com/Komzpa/kothic-js) | JavaScript OpenStreeMap map renderer, fork of Kothic (experimental, don't use yet!) | [:arrow_upper_right:](http://code.google.com/p/kothic/) | 130 | | 2 | [@vvscode](https://github.com/vvscode)/[**js--ps-admin**](https://github.com/vvscode/js--ps-admin) | | | 131 | | 2 | [@deepsweet](https://github.com/deepsweet)/[**dba**](https://github.com/deepsweet/dba) | Don't Be an Asshole | | 132 | | 2 | [@deepsweet](https://github.com/deepsweet)/[**react-attrs-filter**](https://github.com/deepsweet/react-attrs-filter) | Filter React props | | 133 | | 2 | [@deepsweet](https://github.com/deepsweet)/[**itc**](https://github.com/deepsweet/itc) | iTunes ITC files parser and covers extractor | | 134 | | 2 | [@deepsweet](https://github.com/deepsweet)/[**get-local-ip**](https://github.com/deepsweet/get-local-ip) | Get a local IP address from a specified network range | | 135 | | 2 | [@mdreizin](https://github.com/mdreizin)/[**angular-ui-router-in…**](https://github.com/mdreizin/angular-ui-router-interceptor) | Angular UI Router Interceptor | | 136 | | 2 | [@deepsweet](https://github.com/deepsweet)/[**lessbuildify**](https://github.com/deepsweet/lessbuildify) | Browserify plugin for compiling Less to the external file | | 137 | | 2 | [@vvscode](https://github.com/vvscode)/[**js--ember-cli-ajax-l…**](https://github.com/vvscode/js--ember-cli-ajax-logger) | Ember-cli Addon to log ajax requests inside ember application for integration test purposes | | 138 | 139 | ### Java # 140 | 141 | | :star2: | Name | Description | 🌍 | 142 | | ------- | ---- | ----------- | --- | 143 | | 13385 | [@nostra13](https://github.com/nostra13)/[**Android-Universal-Im…**](https://github.com/nostra13/Android-Universal-Image-Loader) | Powerful and flexible library for loading, caching and displaying images on Android. | | 144 | | 360 | [@indy256](https://github.com/indy256)/[**codelibrary**](https://github.com/indy256/codelibrary) | Collection of algorithms and data structures | [:arrow_upper_right:](http://www.codelibrary.ml) | 145 | | 239 | [@greenfrvr](https://github.com/greenfrvr)/[**hashtag-view**](https://github.com/greenfrvr/hashtag-view) | Android fully customizable widget for representing data like hashtags collection and similiar. | | 146 | | 232 | [@nostra13](https://github.com/nostra13)/[**Android-Simple-Socia…**](https://github.com/nostra13/Android-Simple-Social-Sharing) | Reusable instrument for simple sharing with popular social networks (Facebook, Twiiter). | | 147 | | 225 | [@VEINHORN](https://github.com/VEINHORN)/[**ScrollGalleryView**](https://github.com/VEINHORN/ScrollGalleryView) | :camera: Awesome image gallery for Android | | 148 | | 79 | [@VEINHORN](https://github.com/VEINHORN)/[**android-tagview**](https://github.com/VEINHORN/android-tagview) | :sparkler: Android library for creating beautiful tags for your content. | | 149 | | 64 | [@lassana](https://github.com/lassana)/[**continuous-audioreco…**](https://github.com/lassana/continuous-audiorecorder) | Implementation of the missing feature in Android SDK: audio recorder with a pause. | | 150 | | 34 | [@VEINHORN](https://github.com/VEINHORN)/[**android-search-adapt…**](https://github.com/VEINHORN/android-search-adapter) | :mag_right: Simple way to filter your ListView or GridView content. | | 151 | | 27 | [@aolshevskiy](https://github.com/aolshevskiy)/[**songo**](https://github.com/aolshevskiy/songo) | VKontakte Desktop Player | | 152 | | 21 | [@michail-nikolaev](https://github.com/michail-nikolaev)/[**primefaces-spring-sc…**](https://github.com/michail-nikolaev/primefaces-spring-scopes) | Test for primefaces together with Spring and View scope (@ViewScoped). | | 153 | | 19 | [@VEINHORN](https://github.com/VEINHORN)/[**QuickReaderView**](https://github.com/VEINHORN/QuickReaderView) | :orange_book: A simple quick reader view for Android. | | 154 | | 17 | [@greenfrvr](https://github.com/greenfrvr)/[**anny-prefs**](https://github.com/greenfrvr/anny-prefs) | Android annotations based SharedPreferences utility. | | 155 | | 10 | [@asaskevich](https://github.com/asaskevich)/[**SmartCursor**](https://github.com/asaskevich/SmartCursor) | [Java] Useful Minecraft mod with cursor utilities | [:arrow_upper_right:](https://mods.io/mods/1089-smartcursor) | 156 | | 6 | [@michail-nikolaev](https://github.com/michail-nikolaev)/[**springsecurity3-acti…**](https://github.com/michail-nikolaev/springsecurity3-activedirectory-ntlm-test) | Test for usage Spring Security 3 together with Active Directory and NTLM authentification | | 157 | | 6 | [@michail-nikolaev](https://github.com/michail-nikolaev)/[**vaadin-querydsl-spri…**](https://github.com/michail-nikolaev/vaadin-querydsl-spring-jpa-gradle-test) | Test for Vaadin with Querydsl with Spring with Jpa with Gradle | | 158 | | 6 | [@VEINHORN](https://github.com/VEINHORN)/[**forismatic-api-java**](https://github.com/VEINHORN/forismatic-api-java) | :100: Java library for http://forismatic.com API. It's a simple way to get the most inspirational quotes. | [:arrow_upper_right:](http://www.forismatic.com) | 159 | | 5 | [@asaskevich](https://github.com/asaskevich)/[**VK-Small-API**](https://github.com/asaskevich/VK-Small-API) | Small Java API used for work with VK | | 160 | | 5 | [@indy256](https://github.com/indy256)/[**problems**](https://github.com/indy256/problems) | | | 161 | | 5 | [@indy256](https://github.com/indy256)/[**codejam-templates**](https://github.com/indy256/codejam-templates) | Templates for Google Code Jam contest in different programming languages | [:arrow_upper_right:](https://code.google.com/codejam/) | 162 | | 5 | [@lassana](https://github.com/lassana)/[**listview-animations**](https://github.com/lassana/listview-animations) | The little project showing how to implement ListView animations. | | 163 | | 4 | [@ibuziuk](https://github.com/ibuziuk)/[**training-courses-man…**](https://github.com/ibuziuk/training-courses-management-system) | | | 164 | | 4 | [@Cvazer](https://github.com/Cvazer)/[**Pong-sample**](https://github.com/Cvazer/Pong-sample) | | | 165 | | 3 | [@aolshevskiy](https://github.com/aolshevskiy)/[**jygments**](https://github.com/aolshevskiy/jygments) | Java interface to Pygments | [:arrow_upper_right:](pygments.org) | 166 | | 3 | [@madhead](https://github.com/madhead)/[**stack-autologin**](https://github.com/madhead/stack-autologin) | Get your Fanatic badge on StackOverflow with ease! | | 167 | | 3 | [@madhead](https://github.com/madhead)/[**eclipse-uuid-generat…**](https://github.com/madhead/eclipse-uuid-generator-plugin) | Generates UUIDs and pastes them to the editor | [:arrow_upper_right:](http://madhead.github.io/eclipse-uuid-generator-plugin/) | 168 | | 3 | [@pavel-drobushevich](https://github.com/pavel-drobushevich)/[**blog-examples**](https://github.com/pavel-drobushevich/blog-examples) | Different examples for my blog | [:arrow_upper_right:](http://pdrobushevich.blogspot.com) | 169 | | 2 | [@aolshevskiy](https://github.com/aolshevskiy)/[**headless-skype**](https://github.com/aolshevskiy/headless-skype) | | | 170 | | 2 | [@aolshevskiy](https://github.com/aolshevskiy)/[**sgit**](https://github.com/aolshevskiy/sgit) | Simple Git | [:arrow_upper_right:](http://sgit.demonico.cloudbees.net/) | 171 | | 2 | [@lassana](https://github.com/lassana)/[**webometrics-parser**](https://github.com/lassana/webometrics-parser) | The parser of Ranking of Universities. | | 172 | | 2 | [@VEINHORN](https://github.com/VEINHORN)/[**GhirinovskiyQuotesAn…**](https://github.com/VEINHORN/GhirinovskiyQuotesAndroid) | This app is a collection of quotes by Vladimir Ghirinovskiy, the famous Russian politician. | | 173 | | 2 | [@Cvazer](https://github.com/Cvazer)/[**Tutorials**](https://github.com/Cvazer/Tutorials) | Репозиторий с кодом из тутораллов | | 174 | | 2 | [@madhead](https://github.com/madhead)/[**gradle-backup-plugin**](https://github.com/madhead/gradle-backup-plugin) | Because backups need to be automatic | | 175 | | 2 | [@asaskevich](https://github.com/asaskevich)/[**SJcraft**](https://github.com/asaskevich/SJcraft) | SJcraft - small modification for Minecraft | | 176 | | 2 | [@michail-nikolaev](https://github.com/michail-nikolaev)/[**jpa-hibernate-branch…**](https://github.com/michail-nikolaev/jpa-hibernate-branches) | JPA entities which may be branched to have more than one branch of entity (with childs) at time | | 177 | 178 | ### C# # 179 | 180 | | :star2: | Name | Description | 🌍 | 181 | | ------- | ---- | ----------- | --- | 182 | | 7 | [@vitalishcharbin](https://github.com/vitalishcharbin)/[**Selenium.Automation.…**](https://github.com/vitalishcharbin/Selenium.Automation.Framework) | The frameworks provides clear conventions and separation of concerns along with selenium web driver extensions. The main goal is to build stable and easy to use framework. | | 183 | | 3 | [@vitalishcharbin](https://github.com/vitalishcharbin)/[**Orms.Example**](https://github.com/vitalishcharbin/Orms.Example) | | | 184 | 185 | ### CSS # 186 | 187 | | :star2: | Name | Description | 🌍 | 188 | | ------- | ---- | ----------- | --- | 189 | | 138 | [@elmahdim](https://github.com/elmahdim)/[**checkbo**](https://github.com/elmahdim/checkbo) | Custom Checkbox and Radio, lightweight jQuery Plugin | | 190 | | 38 | [@elmahdim](https://github.com/elmahdim)/[**bootstrap-wishlist**](https://github.com/elmahdim/bootstrap-wishlist) | Bootstrap Wishlist | | 191 | | 22 | [@elmahdim](https://github.com/elmahdim)/[**selectem**](https://github.com/elmahdim/selectem) | Custom select items dropdown | | 192 | | 7 | [@alexedev](https://github.com/alexedev)/[**meteor-admin**](https://github.com/alexedev/meteor-admin) | Admin panel for meteor based on yogiben:admin | | 193 | 194 | ### C # 195 | 196 | | :star2: | Name | Description | 🌍 | 197 | | ------- | ---- | ----------- | --- | 198 | | 59 | [@yakushstanislav](https://github.com/yakushstanislav)/[**EagleMQ**](https://github.com/yakushstanislav/EagleMQ) | EagleMQ is an open source, high-performance and lightweight queue manager | [:arrow_upper_right:](http://www.eaglemq.com) | 199 | | 28 | [@vi](https://github.com/vi)/[**dive**](https://github.com/vi/dive) | Start programs inside unshare/lxc namespaces easily using UNIX sockets + easy access to capabilities, namespaces, chroot and others. | | 200 | | 28 | [@vi](https://github.com/vi)/[**tcpsocks**](https://github.com/vi/tcpsocks) | Redirect traffic to SOCKS5 server with iptables, epoll based, single threaded. | | 201 | | 17 | [@anarsoul](https://github.com/anarsoul)/[**libfprint**](https://github.com/anarsoul/libfprint) | libfprint with my WiP drivers | | 202 | | 14 | [@vi](https://github.com/vi)/[**virtual_touchscreen**](https://github.com/vi/virtual_touchscreen) | Simple evdev linux device driver and GUI program to simulate multitouch touchscreen | | 203 | | 12 | [@vi](https://github.com/vi)/[**fdlinecombine**](https://github.com/vi/fdlinecombine) | Read multiple fds and print data to stdout linewise. | | 204 | | 8 | [@vi](https://github.com/vi)/[**fusecow**](https://github.com/vi/fusecow) | Simple single-file FUSE implementation of copy-on-write | | 205 | | 7 | [@vi](https://github.com/vi)/[**execfuse**](https://github.com/vi/execfuse) | Turn a bunch of scripts into FUSE filesystem | | 206 | | 6 | [@vi](https://github.com/vi)/[**tcplim**](https://github.com/vi/tcplim) | User-space TCP bandwidth limiter (based on tcprelay) | [:arrow_upper_right:](http://github.com/vi/tcplim/wiki) | 207 | | 5 | [@anarsoul](https://github.com/anarsoul)/[**qemu-z2**](https://github.com/anarsoul/qemu-z2) | qemu with Zipit Z2 support | | 208 | | 5 | [@vi](https://github.com/vi)/[**timeskew**](https://github.com/vi/timeskew) | Override time reporting in Linux processes (accelerate/slowdown games) | | 209 | | 4 | [@anarsoul](https://github.com/anarsoul)/[**libffplay**](https://github.com/anarsoul/libffplay) | Small and simple library for creating audio/video players | | 210 | | 4 | [@vi](https://github.com/vi)/[**udptap_tunnel**](https://github.com/vi/udptap_tunnel) | Simple UDP tun/tap-based tunnel with mcrypt encryption. Also some more AF_PACKET and tun/tap related tools. | | 211 | | 3 | [@vi](https://github.com/vi)/[**fopen_override**](https://github.com/vi/fopen_override) | LD_PRELOAD-based fopen/open filename overrider | | 212 | | 3 | [@begemotv2718](https://github.com/begemotv2718)/[**cuneiform-by**](https://github.com/begemotv2718/cuneiform-by) | Belarusian language support for cuneiform OCR | | 213 | | 3 | [@vi](https://github.com/vi)/[**chaoticfs**](https://github.com/vi/chaoticfs) | Encrypting FUSE filesystem with "false bottom" allowing exposing the data only partially | | 214 | | 3 | [@vi](https://github.com/vi)/[**fusefile**](https://github.com/vi/fusefile) | Mount one file to another (with offset and append_only support) | | 215 | | 3 | [@anarsoul](https://github.com/anarsoul)/[**qi-openwrt-packages**](https://github.com/anarsoul/qi-openwrt-packages) | Fork of Qi Hardware's OpenWRT packages repo (originally for Ben Nanonote OpenWRT packages not yet ready for upstream) | [:arrow_upper_right:](http://projects.qi-hardware.com/index.php/p/openwrt-packages/) | 216 | | 3 | [@vi](https://github.com/vi)/[**tcprelay**](https://github.com/vi/tcprelay) | Simple Linux epoll-based single thread TCP relay. | | 217 | | 3 | [@vi](https://github.com/vi)/[**udpenc**](https://github.com/vi/udpenc) | UDP relay with blowfish encryption | [:arrow_upper_right:](http://code.google.com/p/udpenc/) | 218 | | 3 | [@anarsoul](https://github.com/anarsoul)/[**ipaq-s3c24xx-u-boot**](https://github.com/anarsoul/ipaq-s3c24xx-u-boot) | openmoko u-boot fork with support for iPAQ h1940 and rx1950 | | 219 | | 3 | [@vi](https://github.com/vi)/[**tarpipefs**](https://github.com/vi/tarpipefs) | Virtual write-only FUSE filesystem to create tar archives [early and hacky] | | 220 | | 3 | [@buffovich](https://github.com/buffovich)/[**libmempool**](https://github.com/buffovich/libmempool) | SLAB-like allocator in user-space. Thread-safety and exchangeable back-ends included. | | 221 | | 2 | [@anarsoul](https://github.com/anarsoul)/[**openwrt-packages**](https://github.com/anarsoul/openwrt-packages) | openwrt-packages | | 222 | | 2 | [@yakushstanislav](https://github.com/yakushstanislav)/[**libemq**](https://github.com/yakushstanislav/libemq) | Client library for the EagleMQ | | 223 | | 2 | [@vi](https://github.com/vi)/[**libmlockall**](https://github.com/vi/libmlockall) | Lock all pages in memory for a process tree | | 224 | | 2 | [@vi](https://github.com/vi)/[**socksredirect**](https://github.com/vi/socksredirect) | "iptables ... -p tcp -j REDIRECT" to this program and it will connect to SOCKS5 server | | 225 | | 2 | [@vi](https://github.com/vi)/[**imlib2-bpg**](https://github.com/vi/imlib2-bpg) | imlib2 plugin for loading BPG images | | 226 | | 2 | [@vi](https://github.com/vi)/[**syscall_limiter**](https://github.com/vi/syscall_limiter) | Start Linux programs with only selected syscalls enabled (libseccomp-based) | | 227 | 228 | ### C++ # 229 | 230 | | :star2: | Name | Description | 🌍 | 231 | | ------- | ---- | ----------- | --- | 232 | | 50 | [@abudnik](https://github.com/abudnik)/[**tcalc**](https://github.com/abudnik/tcalc) | C++ compile-time Prolog interpreter | | 233 | | 13 | [@yankeppey](https://github.com/yankeppey)/[**PanoramaSample**](https://github.com/yankeppey/PanoramaSample) | Android panorama photo in one project | | 234 | | 7 | [@icekobrin](https://github.com/icekobrin)/[**fourdeltaone**](https://github.com/icekobrin/fourdeltaone) | Source code client 4d1 | | 235 | | 4 | [@icekobrin](https://github.com/icekobrin)/[**alterIWnet-client-**](https://github.com/icekobrin/alterIWnet-client-) | Source code alterIWnet | | 236 | 237 | ### ActionScript # 238 | 239 | | :star2: | Name | Description | 🌍 | 240 | | ------- | ---- | ----------- | --- | 241 | | 3 | [@vaukalak](https://github.com/vaukalak)/[**stork**](https://github.com/vaukalak/stork) | as3 tween engine | | 242 | | 2 | [@vaukalak](https://github.com/vaukalak)/[**vaukalak**](https://github.com/vaukalak/vaukalak) | simple mvc based framework | | 243 | | 2 | [@SlavaRa](https://github.com/SlavaRa)/[**_0**](https://github.com/SlavaRa/_0) | | | 244 | | 2 | [@SlavaRa](https://github.com/SlavaRa)/[**blooddy**](https://github.com/SlavaRa/blooddy) | Automatically exported from code.google.com/p/blooddy | | 245 | 246 | ### Clojure # 247 | 248 | | :star2: | Name | Description | 🌍 | 249 | | ------- | ---- | ----------- | --- | 250 | | 3 | [@valichek](https://github.com/valichek)/[**component-compojure**](https://github.com/valichek/component-compojure) | Use Compojure routes as Stuart Sierra's Component | | 251 | | 2 | [@ysmolsky](https://github.com/ysmolsky)/[**clojure-df**](https://github.com/ysmolsky/clojure-df) | Clone of Dwarf Fortress on Clojure | | 252 | 253 | ### Objective-C # 254 | 255 | | :star2: | Name | Description | 🌍 | 256 | | ------- | ---- | ----------- | --- | 257 | | 427 | [@limejelly](https://github.com/limejelly)/[**Backlight-for-XCode**](https://github.com/limejelly/Backlight-for-XCode) | Highlights the current editing line in Xcode | | 258 | | 164 | [@limejelly](https://github.com/limejelly)/[**Emoji**](https://github.com/limejelly/Emoji) | Simple access to Emoji | [:arrow_upper_right:](http://idev.by/) | 259 | | 58 | [@mrdepth](https://github.com/mrdepth)/[**Neocom**](https://github.com/mrdepth/Neocom) | Neocom iOS Application | [:arrow_upper_right:](http://eveuniverseiphone.com) | 260 | | 41 | [@mrdepth](https://github.com/mrdepth)/[**tools**](https://github.com/mrdepth/tools) | iOS tools | | 261 | | 21 | [@nikolaeu](https://github.com/nikolaeu)/[**MenuBarController**](https://github.com/nikolaeu/MenuBarController) | OS X menu bar controller with main action and context menu | | 262 | | 13 | [@mrdepth](https://github.com/mrdepth)/[**EVEOnlineAPI**](https://github.com/mrdepth/EVEOnlineAPI) | EVEOnlineAPI | [:arrow_upper_right:](eveonlineapi) | 263 | | 7 | [@kvint](https://github.com/kvint)/[**ios-encryption**](https://github.com/kvint/ios-encryption) | Basic iOS asymmetrical encryption and decryption methods. | | 264 | | 7 | [@mrdepth](https://github.com/mrdepth)/[**OSXNeocom**](https://github.com/mrdepth/OSXNeocom) | Neocom for OS X | | 265 | | 4 | [@mrdepth](https://github.com/mrdepth)/[**D3Assistant**](https://github.com/mrdepth/D3Assistant) | Mobile assistant for Diablo 3 | | 266 | | 3 | [@limejelly](https://github.com/limejelly)/[**Screentool**](https://github.com/limejelly/Screentool) | Tool for capturing screenshots in OS X | | 267 | | 3 | [@eXiga](https://github.com/eXiga)/[**ConfreaksMTV**](https://github.com/eXiga/ConfreaksMTV) | iOS client-application for awesome ConfreaksTV web-site | | 268 | | 3 | [@nikolaeu](https://github.com/nikolaeu)/[**SRNotification**](https://github.com/nikolaeu/SRNotification) | Simple remote notification for AppKit | | 269 | 270 | ### Perl # 271 | 272 | | :star2: | Name | Description | 🌍 | 273 | | ------- | ---- | ----------- | --- | 274 | | 26 | [@worldmind](https://github.com/worldmind)/[**perlqual**](https://github.com/worldmind/perlqual) | Wrapper for some tests for Perl code quality | | 275 | | 3 | [@basiliscos](https://github.com/basiliscos)/[**perl-watcher**](https://github.com/basiliscos/perl-watcher) | Nagios-inspired system tray events desktop watcher / notifier | | 276 | | 2 | [@grishkovelli](https://github.com/grishkovelli)/[**Mojolicious-Plugin-A…**](https://github.com/grishkovelli/Mojolicious-Plugin-AdvancedMod) | Additional features | | 277 | 278 | ### PHP # 279 | 280 | | :star2: | Name | Description | 🌍 | 281 | | ------- | ---- | ----------- | --- | 282 | | 827 | [@barbushin](https://github.com/barbushin)/[**php-console**](https://github.com/barbushin/php-console) | Handle PHP errors, dump variables, execute PHP code remotely in Google Chrome | [:arrow_upper_right:](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef) | 283 | | 476 | [@barbushin](https://github.com/barbushin)/[**php-imap**](https://github.com/barbushin/php-imap) | PHP class to access mailbox by POP3/IMAP/NNTP using IMAP extension | | 284 | | 137 | [@barbushin](https://github.com/barbushin)/[**dater**](https://github.com/barbushin/dater) | PHP library to work with date and time in different timezones & formats | | 285 | | 126 | [@githubjeka](https://github.com/githubjeka)/[**yii2-tutorial**](https://github.com/githubjeka/yii2-tutorial) | Yii2 учебное руководство, мануал по созданию сайта на русском языке. | | 286 | | 92 | [@githubjeka](https://github.com/githubjeka)/[**yii2-rest**](https://github.com/githubjeka/yii2-rest) | Yii2 REST API template | | 287 | | 64 | [@barbushin](https://github.com/barbushin)/[**multirequest**](https://github.com/barbushin/multirequest) | PHP library for easy and flexible multithread requests handling by CURL | | 288 | | 53 | [@githubjeka](https://github.com/githubjeka)/[**gui-rbac-yii2**](https://github.com/githubjeka/gui-rbac-yii2) | RBAC Auth manager for Yii2 with GUI | [:arrow_upper_right:](https://basic-rbac-githubjeka.c9.io/basic/web/index.php?r=rbac) | 289 | | 48 | [@barbushin](https://github.com/barbushin)/[**php-console-laravel**](https://github.com/barbushin/php-console-laravel) | Laravel 4.* and 5.* service providers to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome | [:arrow_upper_right:](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef) | 290 | | 25 | [@barbushin](https://github.com/barbushin)/[**lagger**](https://github.com/barbushin/lagger) | Lightweight and flexible errors/exceptions/debugs handler for PHP | | 291 | | 16 | [@atukai](https://github.com/atukai)/[**AtCms**](https://github.com/atukai/AtCms) | AtCms is a Zend Framework 2 module which provides a base CMS functionality. Helps to create html pages and blocks. | | 292 | | 10 | [@barbushin](https://github.com/barbushin)/[**primage**](https://github.com/barbushin/primage) | PHP library that works like a proxy for realtime images resizing and watermarking (+ cache support) | | 293 | | 9 | [@barbushin](https://github.com/barbushin)/[**speed-out**](https://github.com/barbushin/speed-out) | PHP library for realtime JavaScript/CSS files combining & compression | | 294 | | 8 | [@barbushin](https://github.com/barbushin)/[**abstract-storage**](https://github.com/barbushin/abstract-storage) | PHP library for transactional Key-Value, Key-Object, Queue sharded storages on MySQL/Mongo/Redis/Memcached | | 295 | | 8 | [@atukai](https://github.com/atukai)/[**AtPhpSettings**](https://github.com/atukai/AtPhpSettings) | ZF2 module for managing a php settings | | 296 | | 7 | [@Gemorroj](https://github.com/Gemorroj)/[**Archive7z**](https://github.com/Gemorroj/Archive7z) | This library provides handling of 7z files in PHP | | 297 | | 6 | [@barbushin](https://github.com/barbushin)/[**php-console-yii**](https://github.com/barbushin/php-console-yii) | Yii extension to handle errors & debug in Google Chrome using "PHP Console" | | 298 | | 6 | [@barbushin](https://github.com/barbushin)/[**dbench**](https://github.com/barbushin/dbench) | PHP library for generating database tables data and testing it perfomance | | 299 | | 5 | [@Gemorroj](https://github.com/Gemorroj)/[**MP3_Id3**](https://github.com/Gemorroj/MP3_Id3) | Read/Write MP3-Tags | | 300 | | 5 | [@barbushin](https://github.com/barbushin)/[**dabase**](https://github.com/barbushin/dabase) | flexible, simple and lightweight pseudo ORM for PHP | | 301 | | 5 | [@barbushin](https://github.com/barbushin)/[**php-console-silex**](https://github.com/barbushin/php-console-silex) | Silex service provider to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome | [:arrow_upper_right:](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef) | 302 | | 5 | [@barbushin](https://github.com/barbushin)/[**scriptalone**](https://github.com/barbushin/scriptalone) | PHP class for limiting running only one instance of some script | | 303 | | 4 | [@Gemorroj](https://github.com/Gemorroj)/[**M3uParser**](https://github.com/Gemorroj/M3uParser) | Parser for m3u files | | 304 | | 4 | [@atukai](https://github.com/atukai)/[**AtAdmin**](https://github.com/atukai/AtAdmin) | Provides an admin panel and extra functionality | | 305 | | 4 | [@atukai](https://github.com/atukai)/[**AtWeather**](https://github.com/atukai/AtWeather) | AtWeather is a Zend Framework 2 module that helps to get weather forecast from online weather providers. | | 306 | | 3 | [@atukai](https://github.com/atukai)/[**AtDataGrid**](https://github.com/atukai/AtDataGrid) | A data grid component for ZF2 | | 307 | | 3 | [@githubjeka](https://github.com/githubjeka)/[**skeletonYiiApp**](https://github.com/githubjeka/skeletonYiiApp) | | | 308 | | 3 | [@Gemorroj](https://github.com/Gemorroj)/[**gmanager**](https://github.com/Gemorroj/gmanager) | Файловый менеджер + Текстовый редактор | | 309 | | 2 | [@Ozerich](https://github.com/Ozerich)/[**gounique**](https://github.com/Ozerich/gounique) | | | 310 | | 2 | [@atukai](https://github.com/atukai)/[**AtBlock**](https://github.com/atukai/AtBlock) | Blocks and widgets module for ZF2 | | 311 | | 2 | [@Gemorroj](https://github.com/Gemorroj)/[**Syntax**](https://github.com/Gemorroj/Syntax) | Check php code syntax | | 312 | | 2 | [@Gemorroj](https://github.com/Gemorroj)/[**HTMLValidator**](https://github.com/Gemorroj/HTMLValidator) | port PEAR package Services_W3C_HTMLValidator | | 313 | | 2 | [@githubjeka](https://github.com/githubjeka)/[**value-object**](https://github.com/githubjeka/value-object) | Help to create immutable Value Objects | | 314 | | 2 | [@Ozerich](https://github.com/Ozerich)/[**just-find**](https://github.com/Ozerich/just-find) | just-find.ru for bsuir game | [:arrow_upper_right:](http://www.just-find.ru) | 315 | | 2 | [@Gemorroj](https://github.com/Gemorroj)/[**forum**](https://github.com/Gemorroj/forum) | wapinet forum | | 316 | | 2 | [@Ozerich](https://github.com/Ozerich)/[**parsers**](https://github.com/Ozerich/parsers) | Parsers for various web-sites | [:arrow_upper_right:](http://www.avito.ru) | 317 | | 2 | [@barbushin](https://github.com/barbushin)/[**iploc**](https://github.com/barbushin/iploc) | PHP library to detect location by IP based on GeoLite database | | 318 | | 2 | [@Gemorroj](https://github.com/Gemorroj)/[**CSSValidator**](https://github.com/Gemorroj/CSSValidator) | port PEAR package Services_W3C_CSSValidator | | 319 | 320 | ### Python # 321 | 322 | | :star2: | Name | Description | 🌍 | 323 | | ------- | ---- | ----------- | --- | 324 | | 190 | [@Tiendil](https://github.com/Tiendil)/[**the-tale**](https://github.com/Tiendil/the-tale) | Сказка - Zero Player Game и песочница | [:arrow_upper_right:](http://the-tale.org) | 325 | | 101 | [@hlamer](https://github.com/hlamer)/[**enki**](https://github.com/hlamer/enki) | A text editor for programmers | [:arrow_upper_right:](http://enki-editor.org) | 326 | | 52 | [@Friz-zy](https://github.com/Friz-zy)/[**pyspaces**](https://github.com/Friz-zy/pyspaces) | Works with Linux namespaces througth glibc with pure python | | 327 | | 42 | [@hlamer](https://github.com/hlamer)/[**qutepart**](https://github.com/hlamer/qutepart) | Code editor component for PyQt5 | [:arrow_upper_right:](http://enki-editor.org) | 328 | | 33 | [@Tiendil](https://github.com/Tiendil)/[**utg**](https://github.com/Tiendil/utg) | universal text generation library | | 329 | | 26 | [@Tiendil](https://github.com/Tiendil)/[**pynames**](https://github.com/Tiendil/pynames) | characters' name generation library | | 330 | | 23 | [@hlamer](https://github.com/hlamer)/[**cpp2python**](https://github.com/hlamer/cpp2python) | C++ to Python converter | | 331 | | 18 | [@svartalf](https://github.com/svartalf)/[**python-2gis**](https://github.com/svartalf/python-2gis) | A Python library for accessing the 2gis API | [:arrow_upper_right:](http://api.2gis.ru/) | 332 | | 18 | [@Tiendil](https://github.com/Tiendil)/[**questgen**](https://github.com/Tiendil/questgen) | quests generation library for the-tale.org | | 333 | | 17 | [@Relrin](https://github.com/Relrin)/[**aiorest-ws**](https://github.com/Relrin/aiorest-ws) | REST framework with WebSockets support | | 334 | | 17 | [@svartalf](https://github.com/svartalf)/[**python-opus**](https://github.com/svartalf/python-opus) | | | 335 | | 16 | [@svartalf](https://github.com/svartalf)/[**tornado-zmq-sockjs-e…**](https://github.com/svartalf/tornado-zmq-sockjs-example) | Example of a application, which uses Tornado web-server for backend side, SockJS for client communications and ØMQ for inner communications. | | 336 | | 13 | [@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**mem_top**](https://github.com/denis-ryzhkov/mem_top) | Shows top suspects for memory leaks in your Python program. | | 337 | | 13 | [@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**method_decorator**](https://github.com/denis-ryzhkov/method_decorator) | Python decorator that knows the class the decorated method is bound to. | | 338 | | 11 | [@alex-oleshkevich](https://github.com/alex-oleshkevich)/[**vhost**](https://github.com/alex-oleshkevich/vhost) | Tool for management of apache's virtual hosts | | 339 | | 11 | [@Tiendil](https://github.com/Tiendil)/[**rels**](https://github.com/Tiendil/rels) | library for describing data relations in python (Enums, "relational" tables) | | 340 | | 11 | [@kondratovich](https://github.com/kondratovich)/[**aztec**](https://github.com/kondratovich/aztec) | Command-line build tool for Kotlin | | 341 | | 9 | [@Gr1N](https://github.com/Gr1N)/[**rainbowrunners**](https://github.com/Gr1N/rainbowrunners) | Awesome rainbow test runners!!1 | [:arrow_upper_right:](https://pypi.python.org/pypi/rainbowrunners) | 342 | | 8 | [@hlamer](https://github.com/hlamer)/[**python-ws-discovery**](https://github.com/hlamer/python-ws-discovery) | WS-Discovery implementation in Python | | 343 | | 7 | [@svartalf](https://github.com/svartalf)/[**python-wargaming**](https://github.com/svartalf/python-wargaming) | Pure-pythonic client library for Wargaming API | [:arrow_upper_right:](https://wargaming.net/developers/) | 344 | | 7 | [@ichernetsky](https://github.com/ichernetsky)/[**informatics-rescue-n…**](https://github.com/ichernetsky/informatics-rescue-notes) | Notes for studies | | 345 | | 6 | [@Tiendil](https://github.com/Tiendil)/[**deworld**](https://github.com/Tiendil/deworld) | DEveloping WORLD - python world generator | | 346 | | 5 | [@Gr1N](https://github.com/Gr1N)/[**1pwd**](https://github.com/Gr1N/1pwd) | A command line interface for 1Password | [:arrow_upper_right:](https://pypi.python.org/pypi/onepyssword) | 347 | | 5 | [@ip0000h](https://github.com/ip0000h)/[**flask-docker-compose**](https://github.com/ip0000h/flask-docker-compose) | Flask application development skeleton with docker-compose | | 348 | | 4 | [@cybergrind](https://github.com/cybergrind)/[**django-performance**](https://github.com/cybergrind/django-performance) | middlewares for profiling django applications | | 349 | | 4 | [@Gr1N](https://github.com/Gr1N)/[**poffw**](https://github.com/Gr1N/poffw) | Proof-of-work prototype (very simple and very stupid) | | 350 | | 3 | [@Gr1N](https://github.com/Gr1N)/[**pypispy**](https://github.com/Gr1N/pypispy) | "Big Brother" is watching your packages! | [:arrow_upper_right:](https://pypi.python.org/pypi/pypispy) | 351 | | 3 | [@yltsrc](https://github.com/yltsrc)/[**gedit-gpicker**](https://github.com/yltsrc/gedit-gpicker) | gpicker plugin for gEdit | | 352 | | 3 | [@svartalf](https://github.com/svartalf)/[**abakron**](https://github.com/svartalf/abakron) | | [:arrow_upper_right:](http://abakron.ru) | 353 | | 3 | [@Friz-zy](https://github.com/Friz-zy)/[**factory**](https://github.com/Friz-zy/factory) | Automate your own tasks on pure python and execute it on remote or local hosts. Create The Magic | | 354 | | 3 | [@svartalf](https://github.com/svartalf)/[**python-quirc**](https://github.com/svartalf/python-quirc) | Python ctypes interface for QR code decoding library `libquirc` | | 355 | | 3 | [@Tiendil](https://github.com/Tiendil)/[**dext**](https://github.com/Tiendil/dext) | some useful libs for django | | 356 | | 3 | [@hlamer](https://github.com/hlamer)/[**pyqt-memory-mgmt**](https://github.com/hlamer/pyqt-memory-mgmt) | Examples for PyQt memory management article | | 357 | | 2 | [@hlamer](https://github.com/hlamer)/[**mit-scheme-gui**](https://github.com/hlamer/mit-scheme-gui) | MIT Scheme GUI. Prototype for mksv3 | | 358 | | 2 | [@svartalf](https://github.com/svartalf)/[**random-imgur**](https://github.com/svartalf/random-imgur) | | | 359 | | 2 | [@svartalf](https://github.com/svartalf)/[**xmpp-log**](https://github.com/svartalf/xmpp-log) | Simple XMPP MUC logger | | 360 | | 2 | [@svartalf](https://github.com/svartalf)/[**mhundwa**](https://github.com/svartalf/mhundwa) | Бот-архивариус для авто-подлепры | | 361 | | 2 | [@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**uniqtoken**](https://github.com/denis-ryzhkov/uniqtoken) | Simple generator of unique tokens. | | 362 | | 2 | [@Gr1N](https://github.com/Gr1N)/[**SublimeFixMacEnv**](https://github.com/Gr1N/SublimeFixMacEnv) | A Sublime Text 3 plugin to set the any env variable correctly on OS X | | 363 | | 2 | [@cybergrind](https://github.com/cybergrind)/[**safe_logger**](https://github.com/cybergrind/safe_logger) | Safe TimedRotatingFileHandler for concurrent writing processes | | 364 | | 2 | [@cybergrind](https://github.com/cybergrind)/[**txamqp_ext**](https://github.com/cybergrind/txamqp_ext) | Extend txamqp library | | 365 | | 2 | [@kondratovich](https://github.com/kondratovich)/[**elephant_trader**](https://github.com/kondratovich/elephant_trader) | twitter bot just for fun | | 366 | | 2 | [@myaskevich](https://github.com/myaskevich)/[**python-bype**](https://github.com/myaskevich/python-bype) | bype - Python Fluent DSL | | 367 | | 2 | [@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**adict**](https://github.com/denis-ryzhkov/adict) | Dict with attr access to keys. | | 368 | | 2 | [@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**apiphant**](https://github.com/denis-ryzhkov/apiphant) | Simple Python Web API framework, based on Gevent, JSON, CRUD. | | 369 | | 2 | [@alex-oleshkevich](https://github.com/alex-oleshkevich)/[**skeleton-plasmoid**](https://github.com/alex-oleshkevich/skeleton-plasmoid) | The skeleton application for KDE Plasma widget (Popup Applet) | | 370 | 371 | ### Ruby # 372 | 373 | | :star2: | Name | Description | 🌍 | 374 | | ------- | ---- | ----------- | --- | 375 | | 786 | [@goshakkk](https://github.com/goshakkk)/[**nsa_panel**](https://github.com/goshakkk/nsa_panel) | Easily add an NSA backdoor into your Rails app. | | 376 | | 204 | [@ka8725](https://github.com/ka8725)/[**migration_data**](https://github.com/ka8725/migration_data) | The solution to keep your Rails ActiveRecord migrations up to date | [:arrow_upper_right:](http://railsguides.net/change-data-in-migrations-like-a-boss/) | 377 | | 183 | [@lest](https://github.com/lest)/[**capistrano-deploy**](https://github.com/lest/capistrano-deploy) | Capistrano deploy recipes | | 378 | | 169 | [@antono](https://github.com/antono)/[**shelr**](https://github.com/antono/shelr) | Console screencasting tool | [:arrow_upper_right:](http://shelr.tv) | 379 | | 164 | [@goshakkk](https://github.com/goshakkk)/[**sleek**](https://github.com/goshakkk/sleek) | Doing Analytics in Ruby. | | 380 | | 110 | [@nashby](https://github.com/nashby)/[**garlicjs-rails**](https://github.com/nashby/garlicjs-rails) | Garlic.js in love with Rails Asset Pipeline | | 381 | | 73 | [@MaximAbramchuck](https://github.com/MaximAbramchuck)/[**ruby-telegram-bot-st…**](https://github.com/MaximAbramchuck/ruby-telegram-bot-starter-kit) | :airplane: Ruby Telegram boilerplate for creating awesome bots | | 382 | | 68 | [@nashby](https://github.com/nashby)/[**wtf_lang**](https://github.com/nashby/wtf_lang) | An awesome language detector | [:arrow_upper_right:](http://github.com/nashby/wtf_lang) | 383 | | 53 | [@hron](https://github.com/hron)/[**redmine_subtasks**](https://github.com/hron/redmine_subtasks) | This is plugin for Redmine for adding subtasks functionality. | | 384 | | 35 | [@nashby](https://github.com/nashby)/[**dota**](https://github.com/nashby/dota) | Ruby wrapper for Dota 2 WebAPI | | 385 | | 32 | [@Mik-die](https://github.com/Mik-die)/[**mongoid_globalize**](https://github.com/Mik-die/mongoid_globalize) | Library for translating Mongoid documents, based on Globalize3 principles | | 386 | | 28 | [@oivoodoo](https://github.com/oivoodoo)/[**devise_masquerade**](https://github.com/oivoodoo/devise_masquerade) | Extension for devise, enable login as functionality. Add link to the masquerade_path(resource) and use it. | | 387 | | 26 | [@avsej](https://github.com/avsej)/[**git-kindle**](https://github.com/avsej/git-kindle) | Render kindle book from git repository | | 388 | | 26 | [@alovak](https://github.com/alovak)/[**test_xml**](https://github.com/alovak/test_xml) | Small library to test your xml with Test::Unit or RSpec | | 389 | | 25 | [@avsej](https://github.com/avsej)/[**ruby-couchbase-model**](https://github.com/avsej/ruby-couchbase-model) | The ORM-like abstraction for couchbase ruby client (Fork for *experiments*. See original repository) | [:arrow_upper_right:](https://github.com/couchbase/couchbase-ruby-model) | 390 | | 24 | [@FUT](https://github.com/FUT)/[**iam**](https://github.com/FUT/iam) | Single click authorization (not for production) | [:arrow_upper_right:](https://github.com/FUT/iam) | 391 | | 22 | [@lest](https://github.com/lest)/[**redmine_thumbnails**](https://github.com/lest/redmine_thumbnails) | Redmine Thumbnails Plugin | | 392 | | 19 | [@nashby](https://github.com/nashby)/[**omniauth-stackexchan…**](https://github.com/nashby/omniauth-stackexchange) | StackExchange OAuth strategy for OmniAuth | | 393 | | 19 | [@lest](https://github.com/lest)/[**coderwall-cli**](https://github.com/lest/coderwall-cli) | Coderwall CLI | | 394 | | 19 | [@nashby](https://github.com/nashby)/[**github_cloner**](https://github.com/nashby/github_cloner) | With github_cloner you have an easy way to clone all your projects from github | [:arrow_upper_right:](https://github.com/nashby/github_cloner) | 395 | | 17 | [@goshakkk](https://github.com/goshakkk)/[**ruroku**](https://github.com/goshakkk/ruroku) | The better Ruby client for Heroku API. | [:arrow_upper_right:](http://goshakkk.name/ruroku/) | 396 | | 17 | [@alesguzik](https://github.com/alesguzik)/[**vkpd**](https://github.com/alesguzik/vkpd) | VKPD searches vk.com for music files and plays them via mpd | | 397 | | 16 | [@avsej](https://github.com/avsej)/[**calculus**](https://github.com/avsej/calculus) | A ruby parser for TeX equations | [:arrow_upper_right:](http://avsej.net/calculus) | 398 | | 16 | [@ka8725](https://github.com/ka8725)/[**get_or_build**](https://github.com/ka8725/get_or_build) | Rails gem for building has_one and belongs_to associations for fields_for | [:arrow_upper_right:](http://ka8725.github.com/get_or_build) | 399 | | 14 | [@styx](https://github.com/styx)/[**jquery-ui-rails-cdn**](https://github.com/styx/jquery-ui-rails-cdn) | Add CDN support to jquery-ui-rails | | 400 | | 13 | [@Mik-die](https://github.com/Mik-die)/[**polymorphic_render**](https://github.com/Mik-die/polymorphic_render) | Extends rails views rendering | | 401 | | 12 | [@Mik-die](https://github.com/Mik-die)/[**translation_panel**](https://github.com/Mik-die/translation_panel) | I18n backend, based on redis, with frontend panel for translations | [:arrow_upper_right:](https://github.com/Mik-die/translation_panel) | 402 | | 12 | [@nashby](https://github.com/nashby)/[**ruby_kick_prologs_as…**](https://github.com/nashby/ruby_kick_prologs_ass) | Ruby solutions of the Ninety-Nine Prolog Problems | [:arrow_upper_right:](http://nashby.github.com/ruby_problems/) | 403 | | 12 | [@styx](https://github.com/styx)/[**compass-foundation**](https://github.com/styx/compass-foundation) | Foundation plugin for Compass | | 404 | | 10 | [@sergey-alekseev](https://github.com/sergey-alekseev)/[**lita-answers**](https://github.com/sergey-alekseev/lita-answers) | A Lita handler for a question answering (QA) system | | 405 | | 10 | [@lest](https://github.com/lest)/[**redmine_wiki_sidebar…**](https://github.com/lest/redmine_wiki_sidebar_toc) | | | 406 | | 9 | [@antono](https://github.com/antono)/[**redcar-pastie**](https://github.com/antono/redcar-pastie) | Redcar plugin for pastie gist and other pastebins | | 407 | | 9 | [@hron](https://github.com/hron)/[**ruby_on_etags**](https://github.com/hron/ruby_on_etags) | Ruby on ETags is a tool to help a developer keep TAGS file up to date. | | 408 | | 8 | [@nashby](https://github.com/nashby)/[**vlcrb**](https://github.com/nashby/vlcrb) | Ruby wrapper for libVLC | [:arrow_upper_right:](http://github.com/nashby/vlcrb) | 409 | | 7 | [@styx](https://github.com/styx)/[**angularjs-rails-cdn**](https://github.com/styx/angularjs-rails-cdn) | Adds CDN support to angularjs-rails | | 410 | | 7 | [@avsej](https://github.com/avsej)/[**gson.rb**](https://github.com/avsej/gson.rb) | Ruby wrapper for google-gson library | | 411 | | 7 | [@avsej](https://github.com/avsej)/[**couchbase-ruby-clien…**](https://github.com/avsej/couchbase-ruby-client-em) | An EventMachine-based Couchbase ruby driver | | 412 | | 7 | [@nashby](https://github.com/nashby)/[**timezoner**](https://github.com/nashby/timezoner) | A tiny service for detecting timezones by coordinates so you don't need to be dependent on online ones. | | 413 | | 6 | [@alovak](https://github.com/alovak)/[**bank_card**](https://github.com/alovak/bank_card) | Credit card validations and useful methods | | 414 | | 6 | [@MaximAbramchuck](https://github.com/MaximAbramchuck)/[**rails3-csrf-patcher**](https://github.com/MaximAbramchuck/rails3-csrf-patcher) | :electric_plug: Ruby gem which patches your Rails 3 application to protect it from the CSRF vulnerability. | | 415 | | 5 | [@oivoodoo](https://github.com/oivoodoo)/[**mongoid-report**](https://github.com/oivoodoo/mongoid-report) | | | 416 | | 5 | [@shemerey](https://github.com/shemerey)/[**weight**](https://github.com/shemerey/weight) | Weight value object | | 417 | | 5 | [@goshakkk](https://github.com/goshakkk)/[**xtr**](https://github.com/goshakkk/xtr) | Simple trading engine | | 418 | | 5 | [@nashby](https://github.com/nashby)/[**zipf_distribution**](https://github.com/nashby/zipf_distribution) | Zipf's law in Ruby | | 419 | | 5 | [@hron](https://github.com/hron)/[**redmine_encrypted_do…**](https://github.com/hron/redmine_encrypted_document_plugin) | Redmine plugin for keeping encrypted documents in Redmine (www.redmine.org). | [:arrow_upper_right:](http://www.redmine.org) | 420 | | 5 | [@Proghat](https://github.com/Proghat)/[**tau**](https://github.com/Proghat/tau) | Tool for web designers want to use haml, sass, coffee-script and others. | | 421 | | 5 | [@antono](https://github.com/antono)/[**markitup_rails**](https://github.com/antono/markitup_rails) | Markitup helper for rails | | 422 | | 5 | [@nashby](https://github.com/nashby)/[**rabin-karp**](https://github.com/nashby/rabin-karp) | Rabin-Karp implementation in Ruby | | 423 | | 4 | [@nashby](https://github.com/nashby)/[**imstat**](https://github.com/nashby/imstat) | Check user status in the instant messengers | | 424 | | 4 | [@goshakkk](https://github.com/goshakkk)/[**furry**](https://github.com/goshakkk/furry) | Simplistic web framework | | 425 | | 4 | [@goshakkk](https://github.com/goshakkk)/[**Twee**](https://github.com/goshakkk/Twee) | A simple iOS Twitter client built with RubyMotion | | 426 | | 4 | [@avsej](https://github.com/avsej)/[**segfault**](https://github.com/avsej/segfault) | Helper to abort your ruby script execution | [:arrow_upper_right:](https://rubygems.org/gems/segfault) | 427 | | 4 | [@nashby](https://github.com/nashby)/[**whoistoblame**](https://github.com/nashby/whoistoblame) | Who is to blame? | [:arrow_upper_right:](http://whoistoblame.heroku.com) | 428 | | 4 | [@alovak](https://github.com/alovak)/[**network**](https://github.com/alovak/network) | HTTP/HTTPS communication module based on ruby net/http, net/https modules | | 429 | | 4 | [@Mik-die](https://github.com/Mik-die)/[**startags**](https://github.com/Mik-die/startags) | Tags for your GitHub stars! | [:arrow_upper_right:](http://startags.me) | 430 | | 3 | [@avsej](https://github.com/avsej)/[**beer-sample**](https://github.com/avsej/beer-sample) | Open beer database, ready to use with Couchbase | | 431 | | 3 | [@antono](https://github.com/antono)/[**mysql_analyser**](https://github.com/antono/mysql_analyser) | Simple mysql analysis tool | [:arrow_upper_right:](http://mysql.antono.info/) | 432 | | 3 | [@avsej](https://github.com/avsej)/[**em-couchbase-loader**](https://github.com/avsej/em-couchbase-loader) | Test helper for em-couchbase gem | | 433 | | 3 | [@okendoken](https://github.com/okendoken)/[**GreatWork**](https://github.com/okendoken/GreatWork) | | | 434 | | 3 | [@sergey-alekseev](https://github.com/sergey-alekseev)/[**bsu-ssm**](https://github.com/sergey-alekseev/bsu-ssm) | Simulation and statistical modeling, BSU FAMCS 4th course | | 435 | | 3 | [@antono](https://github.com/antono)/[**rake-tm**](https://github.com/antono/rake-tm) | Simple rake time-management tasks for railway workers | [:arrow_upper_right:](http://github.com/antono/rake-tm/tree/master) | 436 | | 3 | [@antono](https://github.com/antono)/[**brute**](https://github.com/antono/brute) | brute force dictionaries on demand | [:arrow_upper_right:](http://antono.info/en/170-brute-force-dictionaries-in-ruby) | 437 | | 3 | [@goshakkk](https://github.com/goshakkk)/[**typed_arguments**](https://github.com/goshakkk/typed_arguments) | Typed method arguments for Ruby | | 438 | | 3 | [@goshakkk](https://github.com/goshakkk)/[**pirrrate**](https://github.com/goshakkk/pirrrate) | A basic Ruby API client for The Pirate Bay | | 439 | | 3 | [@lest](https://github.com/lest)/[**lita-eval**](https://github.com/lest/lita-eval) | A Lita handler for evaluating ruby code. | | 440 | | 3 | [@lest](https://github.com/lest)/[**html2pdf**](https://github.com/lest/html2pdf) | | | 441 | | 3 | [@alovak](https://github.com/alovak)/[**merge_db**](https://github.com/alovak/merge_db) | Do you need to merge Rails databases? | | 442 | | 3 | [@antono](https://github.com/antono)/[**glog**](https://github.com/antono/glog) | Rack based static blog | | 443 | | 2 | [@goshakkk](https://github.com/goshakkk)/[**ampersand_x**](https://github.com/goshakkk/ampersand_x) | &X brings expressiveness back to Ruby procs | | 444 | | 2 | [@alovak](https://github.com/alovak)/[**pragauthor**](https://github.com/alovak/pragauthor) | Pragmatic Author. Sales reports for Amazon KDP, Barnes&Noble, Smashwords, CreateSpace | | 445 | | 2 | [@ka8725](https://github.com/ka8725)/[**range_regexp**](https://github.com/ka8725/range_regexp) | Convert a Ruby range to a regexp. | | 446 | | 2 | [@ka8725](https://github.com/ka8725)/[**gemstats**](https://github.com/ka8725/gemstats) | Gem statisctics | [:arrow_upper_right:](http://gem-stats.heroku.com/) | 447 | | 2 | [@lest](https://github.com/lest)/[**redmine_time_limit**](https://github.com/lest/redmine_time_limit) | | | 448 | | 2 | [@ka8725](https://github.com/ka8725)/[**neday**](https://github.com/ka8725/neday) | | | 449 | | 2 | [@hron](https://github.com/hron)/[**keep-in-mind**](https://github.com/hron/keep-in-mind) | Export Rails annotations to Basecamp todo list | | 450 | | 2 | [@hron](https://github.com/hron)/[**active_merchant-cert…**](https://github.com/hron/active_merchant-certo_direct) | | | 451 | | 2 | [@FUT](https://github.com/FUT)/[**pspec**](https://github.com/FUT/pspec) | Improvement of parallel_spec gem for PostgreSQL database | | 452 | | 2 | [@FUT](https://github.com/FUT)/[**rbf_network**](https://github.com/FUT/rbf_network) | Radial basis function network. Similar to multilayer perceptron but includes RBF cells instead of hidden layer. | | 453 | | 2 | [@lest](https://github.com/lest)/[**pattersonify**](https://github.com/lest/pattersonify) | | [:arrow_upper_right:](http://pattersonify.me/) | 454 | | 2 | [@okendoken](https://github.com/okendoken)/[**things_to_be_done**](https://github.com/okendoken/things_to_be_done) | GW successor | [:arrow_upper_right:](done.cheerick.ru) | 455 | | 2 | [@lest](https://github.com/lest)/[**redmine_twinslash**](https://github.com/lest/redmine_twinslash) | Redmine Twinslash Plugin | | 456 | | 2 | [@oivoodoo](https://github.com/oivoodoo)/[**deployments-app**](https://github.com/oivoodoo/deployments-app) | deployments - app it's a sinatra application, you can run it as standalone app on the heroku or attach to the existing rails application. | [:arrow_upper_right:](http://deployments-app.herokuapp.com/projects) | 457 | | 2 | [@lest](https://github.com/lest)/[**redmine_twinslash_su…**](https://github.com/lest/redmine_twinslash_subversion) | | | 458 | | 2 | [@sergeyenin](https://github.com/sergeyenin)/[**cassandra_complex**](https://github.com/sergeyenin/cassandra_complex) | Basic model - wrapper for CQL(Cassandra Query Language) operations. | [:arrow_upper_right:](http://rubydoc.info/github/sergeyenin/cassandra_complex) | 459 | | 2 | [@markevich](https://github.com/markevich)/[**madmimi-rails**](https://github.com/markevich/madmimi-rails) | ActionMailer delivery method for sending emails via madmimi | | 460 | | 2 | [@nashby](https://github.com/nashby)/[**rails_depot**](https://github.com/nashby/rails_depot) | depot project | | 461 | | 2 | [@antono](https://github.com/antono)/[**glog-quickstart**](https://github.com/antono/glog-quickstart) | Glog example site with documentation | | 462 | | 2 | [@nashby](https://github.com/nashby)/[**rubytest**](https://github.com/nashby/rubytest) | rubytest | | 463 | | 2 | [@antono](https://github.com/antono)/[**rails-templates**](https://github.com/antono/rails-templates) | my rails templates | [:arrow_upper_right:](nil) | 464 | | 2 | [@nashby](https://github.com/nashby)/[**validates_presence_o…**](https://github.com/nashby/validates_presence_of_boolean) | | | 465 | | 2 | [@avsej](https://github.com/avsej)/[**yard-xml**](https://github.com/avsej/yard-xml) | XML plugin for YARD tool | [:arrow_upper_right:](https://rubygems.org/gems/yard-xml) | 466 | | 2 | [@nashby](https://github.com/nashby)/[**stackoverflair**](https://github.com/nashby/stackoverflair) | Put your stackoverflow flair on blog or wherever you want. | [:arrow_upper_right:](https://github.com/nashby/stackoverflair) | 467 | | 2 | [@ka8725](https://github.com/ka8725)/[**tutor_crm**](https://github.com/ka8725/tutor_crm) | | | 468 | 469 | ### Scala # 470 | 471 | | :star2: | Name | Description | 🌍 | 472 | | ------- | ---- | ----------- | --- | 473 | | 38 | [@remeniuk](https://github.com/remeniuk)/[**sbt-netbeans-plugin**](https://github.com/remeniuk/sbt-netbeans-plugin) | The plugin allows to work with SBT projects in Netbeans | | 474 | | 13 | [@remeniuk](https://github.com/remeniuk)/[**rubbercube**](https://github.com/remeniuk/rubbercube) | Cubes over ElasticSearch. Aggregation library for Business Intelligence | | 475 | | 10 | [@remeniuk](https://github.com/remeniuk)/[**hazelcast-scala**](https://github.com/remeniuk/hazelcast-scala) | Functional wrapper for Hazelcast in Scala | | 476 | | 7 | [@whiter4bbit](https://github.com/whiter4bbit)/[**scala_by_example**](https://github.com/whiter4bbit/scala_by_example) | there are some scala by example exer | | 477 | | 7 | [@remeniuk](https://github.com/remeniuk)/[**SBT-Library-Resolver**](https://github.com/remeniuk/SBT-Library-Resolver) | Plugin that uses jarvana.com for finding artifacts in central repository | [:arrow_upper_right:](vasilrem.com) | 478 | | 6 | [@kazachonak](https://github.com/kazachonak)/[**contour**](https://github.com/kazachonak/contour) | Client+Server web-framework in Scala+GWT | | 479 | | 5 | [@whiter4bbit](https://github.com/whiter4bbit)/[**oauth**](https://github.com/whiter4bbit/oauth) | scala oauth provider library | | 480 | | 5 | [@scalaby](https://github.com/scalaby)/[**patterns-presentatio…**](https://github.com/scalaby/patterns-presentation) | | | 481 | | 3 | [@whiter4bbit](https://github.com/whiter4bbit)/[**kiwi**](https://github.com/whiter4bbit/kiwi) | Simple message queue inspired by kafka | | 482 | | 2 | [@remeniuk](https://github.com/remeniuk)/[**typesafe-poker**](https://github.com/remeniuk/typesafe-poker) | Source code for the presentation made at Software Craftsmanship BY meetup | | 483 | | 2 | [@remeniuk](https://github.com/remeniuk)/[**remeniuk.github.com**](https://github.com/remeniuk/remeniuk.github.com) | remeniuk.github.com | | 484 | 485 | ### Shell # 486 | 487 | | :star2: | Name | Description | 🌍 | 488 | | ------- | ---- | ----------- | --- | 489 | | 2 | [@aliaksandrb](https://github.com/aliaksandrb)/[**ubuntu_ruby_dev**](https://github.com/aliaksandrb/ubuntu_ruby_dev) | Simple bash script for setup Ruby development environment on machine running Ubuntu | | 490 | | 2 | [@VitaminPSG](https://github.com/VitaminPSG)/[**OpenStreetMap**](https://github.com/VitaminPSG/OpenStreetMap) | OpenStreetMap xml -> MySQL | | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | ## :question: Get Help 510 | 511 | There are few ways to get help: 512 | 513 | 514 | 515 | 1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question. 516 | 2. For bug reports and feature requests, open issues. :bug: 517 | 3. For direct and quick help, you can [use Codementor](https://www.codementor.io/johnnyb). :rocket: 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | ## :yum: How to contribute 537 | Have an idea? Found a bug? See [how to contribute][contributing]. 538 | 539 | 540 | ## :sparkling_heart: Support my projects 541 | I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, 542 | this takes time. You can integrate and use these projects in your applications *for free*! You can even change the source code and redistribute (even resell it). 543 | 544 | However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it: 545 | 546 | 547 | - Starring and sharing the projects you like :rocket: 548 | - [![Buy me a book][badge_amazon]][amazon]—I love books! I will remember you after years if you buy me one. :grin: :book: 549 | - [![PayPal][badge_paypal]][paypal-donations]—You can make one-time donations via PayPal. I'll probably buy a ~~coffee~~ tea. :tea: 550 | - [![Support me on Patreon][badge_patreon]][patreon]—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone). 551 | - **Bitcoin**—You can send me bitcoins at this address (or scanning the code below): `1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6` 552 | 553 | ![](https://i.imgur.com/z6OQI95.png) 554 | 555 | 556 | Thanks! :heart: 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | ## :scroll: License 582 | 583 | [MIT][license] © [Ionică Bizău][website] 584 | 585 | 586 | 587 | 588 | 589 | 590 | [license]: /LICENSE 591 | [website]: https://ionicabizau.net 592 | [contributing]: /CONTRIBUTING.md 593 | [docs]: /DOCUMENTATION.md 594 | [badge_patreon]: https://ionicabizau.github.io/badges/patreon.svg 595 | [badge_amazon]: https://ionicabizau.github.io/badges/amazon.svg 596 | [badge_paypal]: https://ionicabizau.github.io/badges/paypal.svg 597 | [badge_paypal_donate]: https://ionicabizau.github.io/badges/paypal_donate.svg 598 | [patreon]: https://www.patreon.com/ionicabizau 599 | [amazon]: http://amzn.eu/hRo9sIZ 600 | [paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW 601 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "made-in-belarus", 3 | "description": "A list of neat projects made in Belarus", 4 | "keywords": [ 5 | "made", 6 | "in", 7 | "belarus", 8 | "a", 9 | "list", 10 | "of", 11 | "neat", 12 | "projects" 13 | ], 14 | "license": "MIT", 15 | "version": "1.0.9", 16 | "main": "lib/index.js", 17 | "scripts": { 18 | "test": "echo \"Error: no test specified\" && exit 1" 19 | }, 20 | "author": "Ionică Bizău (https://ionicabizau.net)", 21 | "files": [ 22 | "bin/", 23 | "app/", 24 | "lib/", 25 | "dist/", 26 | "src/", 27 | "scripts/", 28 | "resources/", 29 | "menu/", 30 | "cli.js", 31 | "index.js", 32 | "index.d.ts", 33 | "package-lock.json", 34 | "bloggify.js", 35 | "bloggify.json", 36 | "bloggify/" 37 | ], 38 | "repository": { 39 | "type": "git", 40 | "url": "git+ssh://git@github.com/IonicaBizau/made-in-belarus.git" 41 | }, 42 | "bugs": { 43 | "url": "https://github.com/IonicaBizau/made-in-belarus/issues" 44 | }, 45 | "homepage": "https://github.com/IonicaBizau/made-in-belarus#readme", 46 | "blah": { 47 | "title": "Made in Belarus", 48 | "installation": [ 49 | { 50 | "h2": "Contents" 51 | }, 52 | { 53 | "ul": [ 54 | "[JavaScript](#javascript)", 55 | "[Java](#java)", 56 | "[C#](#c-1)", 57 | "[CSS](#css)", 58 | "[C](undefined)", 59 | "[C++](#c-2)", 60 | "[ActionScript](#actionscript)", 61 | "[Clojure](#clojure)", 62 | "[Objective-C](#objective-c)", 63 | "[Perl](#perl)", 64 | "[PHP](#php)", 65 | "[Python](#python)", 66 | "[Ruby](#ruby)", 67 | "[Scala](#scala)", 68 | "[Shell](#shell)" 69 | ] 70 | }, 71 | { 72 | "h3": "JavaScript #" 73 | }, 74 | { 75 | "table": { 76 | "headers": [ 77 | ":star2:", 78 | "Name", 79 | "Description", 80 | "🌍" 81 | ], 82 | "rows": [ 83 | [ 84 | "529", 85 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-dom**](https://github.com/chemerisuk/better-dom)", 86 | "Live extension playground", 87 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-dom/)" 88 | ], 89 | [ 90 | "381", 91 | "[@asapach](https://github.com/asapach)/[**peerflix-server**](https://github.com/asapach/peerflix-server)", 92 | "Streaming torrent client for node.js with web ui.", 93 | "" 94 | ], 95 | [ 96 | "158", 97 | "[@ekokotov](https://github.com/ekokotov)/[**object-table**](https://github.com/ekokotov/object-table)", 98 | "Angular directive to easy create dynamic tables from source or URL with sorting, filtering and pagination. Smart templates and good perfomance", 99 | "" 100 | ], 101 | [ 102 | "148", 103 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-dateinput-pol…**](https://github.com/chemerisuk/better-dateinput-polyfill)", 104 | "input[type=date] polyfill for better-dom", 105 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-dateinput-polyfill/)" 106 | ], 107 | [ 108 | "97", 109 | "[@deepsweet](https://github.com/deepsweet)/[**istanbul-instrumente…**](https://github.com/deepsweet/istanbul-instrumenter-loader)", 110 | ":100: Istanbul instrumenter loader for webpack", 111 | "" 112 | ], 113 | [ 114 | "93", 115 | "[@deepsweet](https://github.com/deepsweet)/[**isparta-loader**](https://github.com/deepsweet/isparta-loader)", 116 | ":100: isparta instrumenter loader for webpack", 117 | "" 118 | ], 119 | [ 120 | "84", 121 | "[@deepsweet](https://github.com/deepsweet)/[**microjungle**](https://github.com/deepsweet/microjungle)", 122 | ":factory: HTML templating with JS. The Right Way.", 123 | "" 124 | ], 125 | [ 126 | "81", 127 | "[@mdreizin](https://github.com/mdreizin)/[**webpack-config**](https://github.com/mdreizin/webpack-config)", 128 | "Helps to load, extend and merge webpack configs", 129 | "[:arrow_upper_right:](https://mdreizin.github.io/webpack-config)" 130 | ], 131 | [ 132 | "65", 133 | "[@deepsweet](https://github.com/deepsweet)/[**valya**](https://github.com/deepsweet/valya)", 134 | ":heavy_check_mark: Higher-Order Component for validation in React", 135 | "" 136 | ], 137 | [ 138 | "60", 139 | "[@deepsweet](https://github.com/deepsweet)/[**baggage-loader**](https://github.com/deepsweet/baggage-loader)", 140 | ":handbag: Webpack loader to automatically require any resources related to the required one", 141 | "" 142 | ], 143 | [ 144 | "48", 145 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-details-polyf…**](https://github.com/chemerisuk/better-details-polyfill)", 146 | "complete
polyfill using better-dom", 147 | "" 148 | ], 149 | [ 150 | "48", 151 | "[@deepsweet](https://github.com/deepsweet)/[**autopolyfiller-loade…**](https://github.com/deepsweet/autopolyfiller-loader)", 152 | "Autopolyfiller loader for webpack", 153 | "" 154 | ], 155 | [ 156 | "43", 157 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-form-validati…**](https://github.com/chemerisuk/better-form-validation)", 158 | "Form validation polyfill for better-dom", 159 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-form-validation/)" 160 | ], 161 | [ 162 | "43", 163 | "[@vvscode](https://github.com/vvscode)/[**js--nightwatch-recor…**](https://github.com/vvscode/js--nightwatch-recorder)", 164 | "NightwatchJs recorder for Chrome", 165 | "" 166 | ], 167 | [ 168 | "41", 169 | "[@fantactuka](https://github.com/fantactuka)/[**backbone-validator**](https://github.com/fantactuka/backbone-validator)", 170 | "Backbone model-view validator", 171 | "[:arrow_upper_right:]( http://fantactuka.github.io/backbone-validator)" 172 | ], 173 | [ 174 | "33", 175 | "[@fantactuka](https://github.com/fantactuka)/[**backbone-route-filte…**](https://github.com/fantactuka/backbone-route-filter)", 176 | "Before and after sync/async filters for backbone router", 177 | "" 178 | ], 179 | [ 180 | "31", 181 | "[@mdreizin](https://github.com/mdreizin)/[**webpack-config-strea…**](https://github.com/mdreizin/webpack-config-stream)", 182 | "[DEPRECATED] Helps to generate bundles based on webpack config", 183 | "[:arrow_upper_right:](http://mdreizin.github.io/webpack-config-stream)" 184 | ], 185 | [ 186 | "26", 187 | "[@R1ZZU](https://github.com/R1ZZU)/[**events2**](https://github.com/R1ZZU/events2)", 188 | "ES2015 implementation of nodejs EventEmitter", 189 | "" 190 | ], 191 | [ 192 | "25", 193 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-ajaxify**](https://github.com/chemerisuk/better-ajaxify)", 194 | "Ajax websites engine for better-dom", 195 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-ajaxify/)" 196 | ], 197 | [ 198 | "22", 199 | "[@deepsweet](https://github.com/deepsweet)/[**babel-istanbul-loade…**](https://github.com/deepsweet/babel-istanbul-loader)", 200 | ":100: babel-istanbul loader for webpack", 201 | "" 202 | ], 203 | [ 204 | "21", 205 | "[@vvscode](https://github.com/vvscode)/[**js--ember-render-hel…**](https://github.com/vvscode/js--ember-render-helper)", 206 | "Render helper for Ember.js ( Allow render components dynamically )", 207 | "" 208 | ], 209 | [ 210 | "21", 211 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-placeholder-p…**](https://github.com/chemerisuk/better-placeholder-polyfill)", 212 | "Placeholder attribute polyfill for better-dom", 213 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-placeholder-polyfill/)" 214 | ], 215 | [ 216 | "19", 217 | "[@deepsweet](https://github.com/deepsweet)/[**jquery-pointerevents**](https://github.com/deepsweet/jquery-pointerevents)", 218 | "Basic polyfill for Pointer Events W3C Specification", 219 | "" 220 | ], 221 | [ 222 | "18", 223 | "[@vvscode](https://github.com/vvscode)/[**js--interview-questi…**](https://github.com/vvscode/js--interview-questions)", 224 | "Notes from js interviews", 225 | "" 226 | ], 227 | [ 228 | "17", 229 | "[@fantactuka](https://github.com/fantactuka)/[**role**](https://github.com/fantactuka/role)", 230 | "Managing user's access depending on his current roles and abilities map", 231 | "" 232 | ], 233 | [ 234 | "17", 235 | "[@deepsweet](https://github.com/deepsweet)/[**poncho**](https://github.com/deepsweet/poncho)", 236 | "Client-side JS code coverage using PhantomJS, Mocha and Blanket", 237 | "" 238 | ], 239 | [ 240 | "14", 241 | "[@2j2e](https://github.com/2j2e)/[**presentations**](https://github.com/2j2e/presentations)", 242 | "Technical presentations based on supa dupa html5 presentation frameworks", 243 | "" 244 | ], 245 | [ 246 | "13", 247 | "[@vvscode](https://github.com/vvscode)/[**js--ember-easy-form**](https://github.com/vvscode/js--ember-easy-form)", 248 | "Update original ember-easy-form for using with ember 1.12", 249 | "" 250 | ], 251 | [ 252 | "12", 253 | "[@deepsweet](https://github.com/deepsweet)/[**mustache-loader**](https://github.com/deepsweet/mustache-loader)", 254 | "Mustache loader for webpack", 255 | "" 256 | ], 257 | [ 258 | "12", 259 | "[@fesor](https://github.com/fesor)/[**gulp-deb**](https://github.com/fesor/gulp-deb)", 260 | "Build DEB archives with gulp", 261 | "" 262 | ], 263 | [ 264 | "12", 265 | "[@fesor](https://github.com/fesor)/[**todoapp**](https://github.com/fesor/todoapp)", 266 | "Simple todo app", 267 | "" 268 | ], 269 | [ 270 | "11", 271 | "[@R1ZZU](https://github.com/R1ZZU)/[**editorconfig-cli**](https://github.com/R1ZZU/editorconfig-cli)", 272 | "initialize .editorconfig in your terminal", 273 | "" 274 | ], 275 | [ 276 | "8", 277 | "[@deepsweet](https://github.com/deepsweet)/[**markdown-highlight-l…**](https://github.com/deepsweet/markdown-highlight-loader)", 278 | "Markdown (marked + highlight.js) loader for webpack", 279 | "" 280 | ], 281 | [ 282 | "8", 283 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-timeinput-pol…**](https://github.com/chemerisuk/better-timeinput-polyfill)", 284 | "input[type=time] polyfill for better-dom", 285 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-timeinput-polyfill/)" 286 | ], 287 | [ 288 | "8", 289 | "[@naumov](https://github.com/naumov)/[**refinery_with_users**](https://github.com/naumov/refinery_with_users)", 290 | "RefineryCMS with user signup, private pages (for registered users only), simple theme", 291 | "" 292 | ], 293 | [ 294 | "7", 295 | "[@mdreizin](https://github.com/mdreizin)/[**webpack-cluster**](https://github.com/mdreizin/webpack-cluster)", 296 | "Helps to make parallel webpack compilation easily", 297 | "[:arrow_upper_right:](https://mdreizin.github.io/webpack-cluster)" 298 | ], 299 | [ 300 | "7", 301 | "[@fantactuka](https://github.com/fantactuka)/[**jquery-ajax-goodies**](https://github.com/fantactuka/jquery-ajax-goodies)", 302 | "jQuery ajax cache and concurrency extensions", 303 | "" 304 | ], 305 | [ 306 | "6", 307 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-elastic-texta…**](https://github.com/chemerisuk/better-elastic-textarea)", 308 | "Make textarea to expand on user input", 309 | "[:arrow_upper_right:](http://chemerisuk.github.io/better-elastic-textarea/)" 310 | ], 311 | [ 312 | "6", 313 | "[@chemerisuk](https://github.com/chemerisuk)/[**formvalidation.js**](https://github.com/chemerisuk/formvalidation.js)", 314 | "Polyfill for form validation", 315 | "" 316 | ], 317 | [ 318 | "6", 319 | "[@evgenTraytyak](https://github.com/evgenTraytyak)/[**skypicker-api**](https://github.com/evgenTraytyak/skypicker-api)", 320 | ":airplane: A Node.js wrapper for the Skypicker.com API", 321 | "" 322 | ], 323 | [ 324 | "5", 325 | "[@fantactuka](https://github.com/fantactuka)/[**mootools-decorator**](https://github.com/fantactuka/mootools-decorator)", 326 | "Mootools decorator pattern and couple default decorators", 327 | "[:arrow_upper_right:](http://mootools.net/forge/p/function_decorate)" 328 | ], 329 | [ 330 | "4", 331 | "[@deepsweet](https://github.com/deepsweet)/[**yocto**](https://github.com/deepsweet/yocto)", 332 | "chainable all the default DOM Element methods and properties", 333 | "" 334 | ], 335 | [ 336 | "4", 337 | "[@vvscode](https://github.com/vvscode)/[**js--mini-games**](https://github.com/vvscode/js--mini-games)", 338 | "", 339 | "" 340 | ], 341 | [ 342 | "4", 343 | "[@fantactuka](https://github.com/fantactuka)/[**object-query**](https://github.com/fantactuka/object-query)", 344 | "DSL for querying JavaScript arrays of objects", 345 | "" 346 | ], 347 | [ 348 | "4", 349 | "[@fantactuka](https://github.com/fantactuka)/[**mootools-attributes**](https://github.com/fantactuka/mootools-attributes)", 350 | "Attributes with getters/setters", 351 | "[:arrow_upper_right:](http://mootools.net/forge/p/class_attributes)" 352 | ], 353 | [ 354 | "3", 355 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-emmet-plugin**](https://github.com/chemerisuk/better-emmet-plugin)", 356 | "Emmet abbreviation parser for better-dom", 357 | "" 358 | ], 359 | [ 360 | "3", 361 | "[@meuwka](https://github.com/meuwka)/[**css-grid-layout**](https://github.com/meuwka/css-grid-layout)", 362 | "Presentation", 363 | "[:arrow_upper_right:](http://meuwka.github.io/css-grid-layout/)" 364 | ], 365 | [ 366 | "3", 367 | "[@pozitr0n](https://github.com/pozitr0n)/[**Minesweeper**](https://github.com/pozitr0n/Minesweeper)", 368 | "My version of the famous game.", 369 | "" 370 | ], 371 | [ 372 | "3", 373 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-xhr**](https://github.com/chemerisuk/better-xhr)", 374 | "Better abstraction for XMLHttpRequest", 375 | "" 376 | ], 377 | [ 378 | "2", 379 | "[@pozitr0n](https://github.com/pozitr0n)/[**Canvas**](https://github.com/pozitr0n/Canvas)", 380 | "Virtual book on CanvasJS", 381 | "" 382 | ], 383 | [ 384 | "2", 385 | "[@pozitr0n](https://github.com/pozitr0n)/[**Blog-Roman-Kozar**](https://github.com/pozitr0n/Blog-Roman-Kozar)", 386 | "This is my first blog, written in HTML, CSS, and JavaScript. Actually, this is my first big project. I try to develop him to add something new. For example, I recently attached to it to music. I don't dwell on it.", 387 | "[:arrow_upper_right:](romankozar.name.ac)" 388 | ], 389 | [ 390 | "2", 391 | "[@chemerisuk](https://github.com/chemerisuk)/[**better-i18n-plugin**](https://github.com/chemerisuk/better-i18n-plugin)", 392 | "Internationalization plugin for better-dom", 393 | "" 394 | ], 395 | [ 396 | "2", 397 | "[@Komzpa](https://github.com/Komzpa)/[**kothic-js**](https://github.com/Komzpa/kothic-js)", 398 | "JavaScript OpenStreeMap map renderer, fork of Kothic (experimental, don't use yet!)", 399 | "[:arrow_upper_right:](http://code.google.com/p/kothic/)" 400 | ], 401 | [ 402 | "2", 403 | "[@vvscode](https://github.com/vvscode)/[**js--ps-admin**](https://github.com/vvscode/js--ps-admin)", 404 | "", 405 | "" 406 | ], 407 | [ 408 | "2", 409 | "[@deepsweet](https://github.com/deepsweet)/[**dba**](https://github.com/deepsweet/dba)", 410 | "Don't Be an Asshole", 411 | "" 412 | ], 413 | [ 414 | "2", 415 | "[@deepsweet](https://github.com/deepsweet)/[**react-attrs-filter**](https://github.com/deepsweet/react-attrs-filter)", 416 | "Filter React props", 417 | "" 418 | ], 419 | [ 420 | "2", 421 | "[@deepsweet](https://github.com/deepsweet)/[**itc**](https://github.com/deepsweet/itc)", 422 | "iTunes ITC files parser and covers extractor", 423 | "" 424 | ], 425 | [ 426 | "2", 427 | "[@deepsweet](https://github.com/deepsweet)/[**get-local-ip**](https://github.com/deepsweet/get-local-ip)", 428 | "Get a local IP address from a specified network range", 429 | "" 430 | ], 431 | [ 432 | "2", 433 | "[@mdreizin](https://github.com/mdreizin)/[**angular-ui-router-in…**](https://github.com/mdreizin/angular-ui-router-interceptor)", 434 | "Angular UI Router Interceptor", 435 | "" 436 | ], 437 | [ 438 | "2", 439 | "[@deepsweet](https://github.com/deepsweet)/[**lessbuildify**](https://github.com/deepsweet/lessbuildify)", 440 | "Browserify plugin for compiling Less to the external file", 441 | "" 442 | ], 443 | [ 444 | "2", 445 | "[@vvscode](https://github.com/vvscode)/[**js--ember-cli-ajax-l…**](https://github.com/vvscode/js--ember-cli-ajax-logger)", 446 | "Ember-cli Addon to log ajax requests inside ember application for integration test purposes", 447 | "" 448 | ] 449 | ] 450 | } 451 | }, 452 | { 453 | "h3": "Java #" 454 | }, 455 | { 456 | "table": { 457 | "headers": [ 458 | ":star2:", 459 | "Name", 460 | "Description", 461 | "🌍" 462 | ], 463 | "rows": [ 464 | [ 465 | "13385", 466 | "[@nostra13](https://github.com/nostra13)/[**Android-Universal-Im…**](https://github.com/nostra13/Android-Universal-Image-Loader)", 467 | "Powerful and flexible library for loading, caching and displaying images on Android.", 468 | "" 469 | ], 470 | [ 471 | "360", 472 | "[@indy256](https://github.com/indy256)/[**codelibrary**](https://github.com/indy256/codelibrary)", 473 | "Collection of algorithms and data structures", 474 | "[:arrow_upper_right:](http://www.codelibrary.ml)" 475 | ], 476 | [ 477 | "239", 478 | "[@greenfrvr](https://github.com/greenfrvr)/[**hashtag-view**](https://github.com/greenfrvr/hashtag-view)", 479 | "Android fully customizable widget for representing data like hashtags collection and similiar.", 480 | "" 481 | ], 482 | [ 483 | "232", 484 | "[@nostra13](https://github.com/nostra13)/[**Android-Simple-Socia…**](https://github.com/nostra13/Android-Simple-Social-Sharing)", 485 | "Reusable instrument for simple sharing with popular social networks (Facebook, Twiiter).", 486 | "" 487 | ], 488 | [ 489 | "225", 490 | "[@VEINHORN](https://github.com/VEINHORN)/[**ScrollGalleryView**](https://github.com/VEINHORN/ScrollGalleryView)", 491 | ":camera: Awesome image gallery for Android", 492 | "" 493 | ], 494 | [ 495 | "79", 496 | "[@VEINHORN](https://github.com/VEINHORN)/[**android-tagview**](https://github.com/VEINHORN/android-tagview)", 497 | ":sparkler: Android library for creating beautiful tags for your content.", 498 | "" 499 | ], 500 | [ 501 | "64", 502 | "[@lassana](https://github.com/lassana)/[**continuous-audioreco…**](https://github.com/lassana/continuous-audiorecorder)", 503 | "Implementation of the missing feature in Android SDK: audio recorder with a pause.", 504 | "" 505 | ], 506 | [ 507 | "34", 508 | "[@VEINHORN](https://github.com/VEINHORN)/[**android-search-adapt…**](https://github.com/VEINHORN/android-search-adapter)", 509 | ":mag_right: Simple way to filter your ListView or GridView content.", 510 | "" 511 | ], 512 | [ 513 | "27", 514 | "[@aolshevskiy](https://github.com/aolshevskiy)/[**songo**](https://github.com/aolshevskiy/songo)", 515 | "VKontakte Desktop Player", 516 | "" 517 | ], 518 | [ 519 | "21", 520 | "[@michail-nikolaev](https://github.com/michail-nikolaev)/[**primefaces-spring-sc…**](https://github.com/michail-nikolaev/primefaces-spring-scopes)", 521 | "Test for primefaces together with Spring and View scope (@ViewScoped).", 522 | "" 523 | ], 524 | [ 525 | "19", 526 | "[@VEINHORN](https://github.com/VEINHORN)/[**QuickReaderView**](https://github.com/VEINHORN/QuickReaderView)", 527 | ":orange_book: A simple quick reader view for Android.", 528 | "" 529 | ], 530 | [ 531 | "17", 532 | "[@greenfrvr](https://github.com/greenfrvr)/[**anny-prefs**](https://github.com/greenfrvr/anny-prefs)", 533 | "Android annotations based SharedPreferences utility. ", 534 | "" 535 | ], 536 | [ 537 | "10", 538 | "[@asaskevich](https://github.com/asaskevich)/[**SmartCursor**](https://github.com/asaskevich/SmartCursor)", 539 | "[Java] Useful Minecraft mod with cursor utilities", 540 | "[:arrow_upper_right:](https://mods.io/mods/1089-smartcursor)" 541 | ], 542 | [ 543 | "6", 544 | "[@michail-nikolaev](https://github.com/michail-nikolaev)/[**springsecurity3-acti…**](https://github.com/michail-nikolaev/springsecurity3-activedirectory-ntlm-test)", 545 | "Test for usage Spring Security 3 together with Active Directory and NTLM authentification", 546 | "" 547 | ], 548 | [ 549 | "6", 550 | "[@michail-nikolaev](https://github.com/michail-nikolaev)/[**vaadin-querydsl-spri…**](https://github.com/michail-nikolaev/vaadin-querydsl-spring-jpa-gradle-test)", 551 | "Test for Vaadin with Querydsl with Spring with Jpa with Gradle", 552 | "" 553 | ], 554 | [ 555 | "6", 556 | "[@VEINHORN](https://github.com/VEINHORN)/[**forismatic-api-java**](https://github.com/VEINHORN/forismatic-api-java)", 557 | ":100: Java library for http://forismatic.com API. It's a simple way to get the most inspirational quotes.", 558 | "[:arrow_upper_right:](http://www.forismatic.com)" 559 | ], 560 | [ 561 | "5", 562 | "[@asaskevich](https://github.com/asaskevich)/[**VK-Small-API**](https://github.com/asaskevich/VK-Small-API)", 563 | "Small Java API used for work with VK", 564 | "" 565 | ], 566 | [ 567 | "5", 568 | "[@indy256](https://github.com/indy256)/[**problems**](https://github.com/indy256/problems)", 569 | "", 570 | "" 571 | ], 572 | [ 573 | "5", 574 | "[@indy256](https://github.com/indy256)/[**codejam-templates**](https://github.com/indy256/codejam-templates)", 575 | "Templates for Google Code Jam contest in different programming languages", 576 | "[:arrow_upper_right:](https://code.google.com/codejam/)" 577 | ], 578 | [ 579 | "5", 580 | "[@lassana](https://github.com/lassana)/[**listview-animations**](https://github.com/lassana/listview-animations)", 581 | "The little project showing how to implement ListView animations.", 582 | "" 583 | ], 584 | [ 585 | "4", 586 | "[@ibuziuk](https://github.com/ibuziuk)/[**training-courses-man…**](https://github.com/ibuziuk/training-courses-management-system)", 587 | "", 588 | "" 589 | ], 590 | [ 591 | "4", 592 | "[@Cvazer](https://github.com/Cvazer)/[**Pong-sample**](https://github.com/Cvazer/Pong-sample)", 593 | "", 594 | "" 595 | ], 596 | [ 597 | "3", 598 | "[@aolshevskiy](https://github.com/aolshevskiy)/[**jygments**](https://github.com/aolshevskiy/jygments)", 599 | "Java interface to Pygments", 600 | "[:arrow_upper_right:](pygments.org)" 601 | ], 602 | [ 603 | "3", 604 | "[@madhead](https://github.com/madhead)/[**stack-autologin**](https://github.com/madhead/stack-autologin)", 605 | "Get your Fanatic badge on StackOverflow with ease!", 606 | "" 607 | ], 608 | [ 609 | "3", 610 | "[@madhead](https://github.com/madhead)/[**eclipse-uuid-generat…**](https://github.com/madhead/eclipse-uuid-generator-plugin)", 611 | "Generates UUIDs and pastes them to the editor", 612 | "[:arrow_upper_right:](http://madhead.github.io/eclipse-uuid-generator-plugin/)" 613 | ], 614 | [ 615 | "3", 616 | "[@pavel-drobushevich](https://github.com/pavel-drobushevich)/[**blog-examples**](https://github.com/pavel-drobushevich/blog-examples)", 617 | "Different examples for my blog", 618 | "[:arrow_upper_right:](http://pdrobushevich.blogspot.com)" 619 | ], 620 | [ 621 | "2", 622 | "[@aolshevskiy](https://github.com/aolshevskiy)/[**headless-skype**](https://github.com/aolshevskiy/headless-skype)", 623 | "", 624 | "" 625 | ], 626 | [ 627 | "2", 628 | "[@aolshevskiy](https://github.com/aolshevskiy)/[**sgit**](https://github.com/aolshevskiy/sgit)", 629 | "Simple Git", 630 | "[:arrow_upper_right:](http://sgit.demonico.cloudbees.net/)" 631 | ], 632 | [ 633 | "2", 634 | "[@lassana](https://github.com/lassana)/[**webometrics-parser**](https://github.com/lassana/webometrics-parser)", 635 | "The parser of Ranking of Universities.", 636 | "" 637 | ], 638 | [ 639 | "2", 640 | "[@VEINHORN](https://github.com/VEINHORN)/[**GhirinovskiyQuotesAn…**](https://github.com/VEINHORN/GhirinovskiyQuotesAndroid)", 641 | "This app is a collection of quotes by Vladimir Ghirinovskiy, the famous Russian politician.", 642 | "" 643 | ], 644 | [ 645 | "2", 646 | "[@Cvazer](https://github.com/Cvazer)/[**Tutorials**](https://github.com/Cvazer/Tutorials)", 647 | "Репозиторий с кодом из тутораллов ", 648 | "" 649 | ], 650 | [ 651 | "2", 652 | "[@madhead](https://github.com/madhead)/[**gradle-backup-plugin**](https://github.com/madhead/gradle-backup-plugin)", 653 | "Because backups need to be automatic", 654 | "" 655 | ], 656 | [ 657 | "2", 658 | "[@asaskevich](https://github.com/asaskevich)/[**SJcraft**](https://github.com/asaskevich/SJcraft)", 659 | "SJcraft - small modification for Minecraft", 660 | "" 661 | ], 662 | [ 663 | "2", 664 | "[@michail-nikolaev](https://github.com/michail-nikolaev)/[**jpa-hibernate-branch…**](https://github.com/michail-nikolaev/jpa-hibernate-branches)", 665 | "JPA entities which may be branched to have more than one branch of entity (with childs) at time", 666 | "" 667 | ] 668 | ] 669 | } 670 | }, 671 | { 672 | "h3": "C# #" 673 | }, 674 | { 675 | "table": { 676 | "headers": [ 677 | ":star2:", 678 | "Name", 679 | "Description", 680 | "🌍" 681 | ], 682 | "rows": [ 683 | [ 684 | "7", 685 | "[@vitalishcharbin](https://github.com/vitalishcharbin)/[**Selenium.Automation.…**](https://github.com/vitalishcharbin/Selenium.Automation.Framework)", 686 | "The frameworks provides clear conventions and separation of concerns along with selenium web driver extensions. The main goal is to build stable and easy to use framework.", 687 | "" 688 | ], 689 | [ 690 | "3", 691 | "[@vitalishcharbin](https://github.com/vitalishcharbin)/[**Orms.Example**](https://github.com/vitalishcharbin/Orms.Example)", 692 | "", 693 | "" 694 | ] 695 | ] 696 | } 697 | }, 698 | { 699 | "h3": "CSS #" 700 | }, 701 | { 702 | "table": { 703 | "headers": [ 704 | ":star2:", 705 | "Name", 706 | "Description", 707 | "🌍" 708 | ], 709 | "rows": [ 710 | [ 711 | "138", 712 | "[@elmahdim](https://github.com/elmahdim)/[**checkbo**](https://github.com/elmahdim/checkbo)", 713 | "Custom Checkbox and Radio, lightweight jQuery Plugin", 714 | "" 715 | ], 716 | [ 717 | "38", 718 | "[@elmahdim](https://github.com/elmahdim)/[**bootstrap-wishlist**](https://github.com/elmahdim/bootstrap-wishlist)", 719 | "Bootstrap Wishlist", 720 | "" 721 | ], 722 | [ 723 | "22", 724 | "[@elmahdim](https://github.com/elmahdim)/[**selectem**](https://github.com/elmahdim/selectem)", 725 | "Custom select items dropdown", 726 | "" 727 | ], 728 | [ 729 | "7", 730 | "[@alexedev](https://github.com/alexedev)/[**meteor-admin**](https://github.com/alexedev/meteor-admin)", 731 | "Admin panel for meteor based on yogiben:admin", 732 | "" 733 | ] 734 | ] 735 | } 736 | }, 737 | { 738 | "h3": "C #" 739 | }, 740 | { 741 | "table": { 742 | "headers": [ 743 | ":star2:", 744 | "Name", 745 | "Description", 746 | "🌍" 747 | ], 748 | "rows": [ 749 | [ 750 | "59", 751 | "[@yakushstanislav](https://github.com/yakushstanislav)/[**EagleMQ**](https://github.com/yakushstanislav/EagleMQ)", 752 | "EagleMQ is an open source, high-performance and lightweight queue manager", 753 | "[:arrow_upper_right:](http://www.eaglemq.com)" 754 | ], 755 | [ 756 | "28", 757 | "[@vi](https://github.com/vi)/[**dive**](https://github.com/vi/dive)", 758 | "Start programs inside unshare/lxc namespaces easily using UNIX sockets + easy access to capabilities, namespaces, chroot and others.", 759 | "" 760 | ], 761 | [ 762 | "28", 763 | "[@vi](https://github.com/vi)/[**tcpsocks**](https://github.com/vi/tcpsocks)", 764 | "Redirect traffic to SOCKS5 server with iptables, epoll based, single threaded.", 765 | "" 766 | ], 767 | [ 768 | "17", 769 | "[@anarsoul](https://github.com/anarsoul)/[**libfprint**](https://github.com/anarsoul/libfprint)", 770 | "libfprint with my WiP drivers", 771 | "" 772 | ], 773 | [ 774 | "14", 775 | "[@vi](https://github.com/vi)/[**virtual_touchscreen**](https://github.com/vi/virtual_touchscreen)", 776 | "Simple evdev linux device driver and GUI program to simulate multitouch touchscreen", 777 | "" 778 | ], 779 | [ 780 | "12", 781 | "[@vi](https://github.com/vi)/[**fdlinecombine**](https://github.com/vi/fdlinecombine)", 782 | "Read multiple fds and print data to stdout linewise.", 783 | "" 784 | ], 785 | [ 786 | "8", 787 | "[@vi](https://github.com/vi)/[**fusecow**](https://github.com/vi/fusecow)", 788 | "Simple single-file FUSE implementation of copy-on-write", 789 | "" 790 | ], 791 | [ 792 | "7", 793 | "[@vi](https://github.com/vi)/[**execfuse**](https://github.com/vi/execfuse)", 794 | "Turn a bunch of scripts into FUSE filesystem", 795 | "" 796 | ], 797 | [ 798 | "6", 799 | "[@vi](https://github.com/vi)/[**tcplim**](https://github.com/vi/tcplim)", 800 | "User-space TCP bandwidth limiter (based on tcprelay)", 801 | "[:arrow_upper_right:](http://github.com/vi/tcplim/wiki)" 802 | ], 803 | [ 804 | "5", 805 | "[@anarsoul](https://github.com/anarsoul)/[**qemu-z2**](https://github.com/anarsoul/qemu-z2)", 806 | "qemu with Zipit Z2 support", 807 | "" 808 | ], 809 | [ 810 | "5", 811 | "[@vi](https://github.com/vi)/[**timeskew**](https://github.com/vi/timeskew)", 812 | "Override time reporting in Linux processes (accelerate/slowdown games)", 813 | "" 814 | ], 815 | [ 816 | "4", 817 | "[@anarsoul](https://github.com/anarsoul)/[**libffplay**](https://github.com/anarsoul/libffplay)", 818 | "Small and simple library for creating audio/video players", 819 | "" 820 | ], 821 | [ 822 | "4", 823 | "[@vi](https://github.com/vi)/[**udptap_tunnel**](https://github.com/vi/udptap_tunnel)", 824 | "Simple UDP tun/tap-based tunnel with mcrypt encryption. Also some more AF_PACKET and tun/tap related tools.", 825 | "" 826 | ], 827 | [ 828 | "3", 829 | "[@vi](https://github.com/vi)/[**fopen_override**](https://github.com/vi/fopen_override)", 830 | "LD_PRELOAD-based fopen/open filename overrider", 831 | "" 832 | ], 833 | [ 834 | "3", 835 | "[@begemotv2718](https://github.com/begemotv2718)/[**cuneiform-by**](https://github.com/begemotv2718/cuneiform-by)", 836 | "Belarusian language support for cuneiform OCR", 837 | "" 838 | ], 839 | [ 840 | "3", 841 | "[@vi](https://github.com/vi)/[**chaoticfs**](https://github.com/vi/chaoticfs)", 842 | "Encrypting FUSE filesystem with \"false bottom\" allowing exposing the data only partially", 843 | "" 844 | ], 845 | [ 846 | "3", 847 | "[@vi](https://github.com/vi)/[**fusefile**](https://github.com/vi/fusefile)", 848 | "Mount one file to another (with offset and append_only support) ", 849 | "" 850 | ], 851 | [ 852 | "3", 853 | "[@anarsoul](https://github.com/anarsoul)/[**qi-openwrt-packages**](https://github.com/anarsoul/qi-openwrt-packages)", 854 | "Fork of Qi Hardware's OpenWRT packages repo (originally for Ben Nanonote OpenWRT packages not yet ready for upstream)", 855 | "[:arrow_upper_right:](http://projects.qi-hardware.com/index.php/p/openwrt-packages/)" 856 | ], 857 | [ 858 | "3", 859 | "[@vi](https://github.com/vi)/[**tcprelay**](https://github.com/vi/tcprelay)", 860 | "Simple Linux epoll-based single thread TCP relay.", 861 | "" 862 | ], 863 | [ 864 | "3", 865 | "[@vi](https://github.com/vi)/[**udpenc**](https://github.com/vi/udpenc)", 866 | "UDP relay with blowfish encryption", 867 | "[:arrow_upper_right:](http://code.google.com/p/udpenc/)" 868 | ], 869 | [ 870 | "3", 871 | "[@anarsoul](https://github.com/anarsoul)/[**ipaq-s3c24xx-u-boot**](https://github.com/anarsoul/ipaq-s3c24xx-u-boot)", 872 | "openmoko u-boot fork with support for iPAQ h1940 and rx1950", 873 | "" 874 | ], 875 | [ 876 | "3", 877 | "[@vi](https://github.com/vi)/[**tarpipefs**](https://github.com/vi/tarpipefs)", 878 | "Virtual write-only FUSE filesystem to create tar archives [early and hacky]", 879 | "" 880 | ], 881 | [ 882 | "3", 883 | "[@buffovich](https://github.com/buffovich)/[**libmempool**](https://github.com/buffovich/libmempool)", 884 | "SLAB-like allocator in user-space. Thread-safety and exchangeable back-ends included.", 885 | "" 886 | ], 887 | [ 888 | "2", 889 | "[@anarsoul](https://github.com/anarsoul)/[**openwrt-packages**](https://github.com/anarsoul/openwrt-packages)", 890 | "openwrt-packages", 891 | "" 892 | ], 893 | [ 894 | "2", 895 | "[@yakushstanislav](https://github.com/yakushstanislav)/[**libemq**](https://github.com/yakushstanislav/libemq)", 896 | "Client library for the EagleMQ", 897 | "" 898 | ], 899 | [ 900 | "2", 901 | "[@vi](https://github.com/vi)/[**libmlockall**](https://github.com/vi/libmlockall)", 902 | "Lock all pages in memory for a process tree", 903 | "" 904 | ], 905 | [ 906 | "2", 907 | "[@vi](https://github.com/vi)/[**socksredirect**](https://github.com/vi/socksredirect)", 908 | "\"iptables ... -p tcp -j REDIRECT\" to this program and it will connect to SOCKS5 server", 909 | "" 910 | ], 911 | [ 912 | "2", 913 | "[@vi](https://github.com/vi)/[**imlib2-bpg**](https://github.com/vi/imlib2-bpg)", 914 | "imlib2 plugin for loading BPG images", 915 | "" 916 | ], 917 | [ 918 | "2", 919 | "[@vi](https://github.com/vi)/[**syscall_limiter**](https://github.com/vi/syscall_limiter)", 920 | "Start Linux programs with only selected syscalls enabled (libseccomp-based)", 921 | "" 922 | ] 923 | ] 924 | } 925 | }, 926 | { 927 | "h3": "C++ #" 928 | }, 929 | { 930 | "table": { 931 | "headers": [ 932 | ":star2:", 933 | "Name", 934 | "Description", 935 | "🌍" 936 | ], 937 | "rows": [ 938 | [ 939 | "50", 940 | "[@abudnik](https://github.com/abudnik)/[**tcalc**](https://github.com/abudnik/tcalc)", 941 | "C++ compile-time Prolog interpreter", 942 | "" 943 | ], 944 | [ 945 | "13", 946 | "[@yankeppey](https://github.com/yankeppey)/[**PanoramaSample**](https://github.com/yankeppey/PanoramaSample)", 947 | "Android panorama photo in one project", 948 | "" 949 | ], 950 | [ 951 | "7", 952 | "[@icekobrin](https://github.com/icekobrin)/[**fourdeltaone**](https://github.com/icekobrin/fourdeltaone)", 953 | "Source code client 4d1", 954 | "" 955 | ], 956 | [ 957 | "4", 958 | "[@icekobrin](https://github.com/icekobrin)/[**alterIWnet-client-**](https://github.com/icekobrin/alterIWnet-client-)", 959 | "Source code alterIWnet", 960 | "" 961 | ] 962 | ] 963 | } 964 | }, 965 | { 966 | "h3": "ActionScript #" 967 | }, 968 | { 969 | "table": { 970 | "headers": [ 971 | ":star2:", 972 | "Name", 973 | "Description", 974 | "🌍" 975 | ], 976 | "rows": [ 977 | [ 978 | "3", 979 | "[@vaukalak](https://github.com/vaukalak)/[**stork**](https://github.com/vaukalak/stork)", 980 | "as3 tween engine", 981 | "" 982 | ], 983 | [ 984 | "2", 985 | "[@vaukalak](https://github.com/vaukalak)/[**vaukalak**](https://github.com/vaukalak/vaukalak)", 986 | "simple mvc based framework", 987 | "" 988 | ], 989 | [ 990 | "2", 991 | "[@SlavaRa](https://github.com/SlavaRa)/[**_0**](https://github.com/SlavaRa/_0)", 992 | "", 993 | "" 994 | ], 995 | [ 996 | "2", 997 | "[@SlavaRa](https://github.com/SlavaRa)/[**blooddy**](https://github.com/SlavaRa/blooddy)", 998 | "Automatically exported from code.google.com/p/blooddy", 999 | "" 1000 | ] 1001 | ] 1002 | } 1003 | }, 1004 | { 1005 | "h3": "Clojure #" 1006 | }, 1007 | { 1008 | "table": { 1009 | "headers": [ 1010 | ":star2:", 1011 | "Name", 1012 | "Description", 1013 | "🌍" 1014 | ], 1015 | "rows": [ 1016 | [ 1017 | "3", 1018 | "[@valichek](https://github.com/valichek)/[**component-compojure**](https://github.com/valichek/component-compojure)", 1019 | "Use Compojure routes as Stuart Sierra's Component", 1020 | "" 1021 | ], 1022 | [ 1023 | "2", 1024 | "[@ysmolsky](https://github.com/ysmolsky)/[**clojure-df**](https://github.com/ysmolsky/clojure-df)", 1025 | "Clone of Dwarf Fortress on Clojure ", 1026 | "" 1027 | ] 1028 | ] 1029 | } 1030 | }, 1031 | { 1032 | "h3": "Objective-C #" 1033 | }, 1034 | { 1035 | "table": { 1036 | "headers": [ 1037 | ":star2:", 1038 | "Name", 1039 | "Description", 1040 | "🌍" 1041 | ], 1042 | "rows": [ 1043 | [ 1044 | "427", 1045 | "[@limejelly](https://github.com/limejelly)/[**Backlight-for-XCode**](https://github.com/limejelly/Backlight-for-XCode)", 1046 | "Highlights the current editing line in Xcode", 1047 | "" 1048 | ], 1049 | [ 1050 | "164", 1051 | "[@limejelly](https://github.com/limejelly)/[**Emoji**](https://github.com/limejelly/Emoji)", 1052 | "Simple access to Emoji", 1053 | "[:arrow_upper_right:](http://idev.by/)" 1054 | ], 1055 | [ 1056 | "58", 1057 | "[@mrdepth](https://github.com/mrdepth)/[**Neocom**](https://github.com/mrdepth/Neocom)", 1058 | "Neocom iOS Application", 1059 | "[:arrow_upper_right:](http://eveuniverseiphone.com)" 1060 | ], 1061 | [ 1062 | "41", 1063 | "[@mrdepth](https://github.com/mrdepth)/[**tools**](https://github.com/mrdepth/tools)", 1064 | "iOS tools", 1065 | "" 1066 | ], 1067 | [ 1068 | "21", 1069 | "[@nikolaeu](https://github.com/nikolaeu)/[**MenuBarController**](https://github.com/nikolaeu/MenuBarController)", 1070 | "OS X menu bar controller with main action and context menu", 1071 | "" 1072 | ], 1073 | [ 1074 | "13", 1075 | "[@mrdepth](https://github.com/mrdepth)/[**EVEOnlineAPI**](https://github.com/mrdepth/EVEOnlineAPI)", 1076 | "EVEOnlineAPI", 1077 | "[:arrow_upper_right:](eveonlineapi)" 1078 | ], 1079 | [ 1080 | "7", 1081 | "[@kvint](https://github.com/kvint)/[**ios-encryption**](https://github.com/kvint/ios-encryption)", 1082 | "Basic iOS asymmetrical encryption and decryption methods.", 1083 | "" 1084 | ], 1085 | [ 1086 | "7", 1087 | "[@mrdepth](https://github.com/mrdepth)/[**OSXNeocom**](https://github.com/mrdepth/OSXNeocom)", 1088 | "Neocom for OS X", 1089 | "" 1090 | ], 1091 | [ 1092 | "4", 1093 | "[@mrdepth](https://github.com/mrdepth)/[**D3Assistant**](https://github.com/mrdepth/D3Assistant)", 1094 | "Mobile assistant for Diablo 3", 1095 | "" 1096 | ], 1097 | [ 1098 | "3", 1099 | "[@limejelly](https://github.com/limejelly)/[**Screentool**](https://github.com/limejelly/Screentool)", 1100 | "Tool for capturing screenshots in OS X", 1101 | "" 1102 | ], 1103 | [ 1104 | "3", 1105 | "[@eXiga](https://github.com/eXiga)/[**ConfreaksMTV**](https://github.com/eXiga/ConfreaksMTV)", 1106 | "iOS client-application for awesome ConfreaksTV web-site", 1107 | "" 1108 | ], 1109 | [ 1110 | "3", 1111 | "[@nikolaeu](https://github.com/nikolaeu)/[**SRNotification**](https://github.com/nikolaeu/SRNotification)", 1112 | "Simple remote notification for AppKit", 1113 | "" 1114 | ] 1115 | ] 1116 | } 1117 | }, 1118 | { 1119 | "h3": "Perl #" 1120 | }, 1121 | { 1122 | "table": { 1123 | "headers": [ 1124 | ":star2:", 1125 | "Name", 1126 | "Description", 1127 | "🌍" 1128 | ], 1129 | "rows": [ 1130 | [ 1131 | "26", 1132 | "[@worldmind](https://github.com/worldmind)/[**perlqual**](https://github.com/worldmind/perlqual)", 1133 | "Wrapper for some tests for Perl code quality", 1134 | "" 1135 | ], 1136 | [ 1137 | "3", 1138 | "[@basiliscos](https://github.com/basiliscos)/[**perl-watcher**](https://github.com/basiliscos/perl-watcher)", 1139 | "Nagios-inspired system tray events desktop watcher / notifier", 1140 | "" 1141 | ], 1142 | [ 1143 | "2", 1144 | "[@grishkovelli](https://github.com/grishkovelli)/[**Mojolicious-Plugin-A…**](https://github.com/grishkovelli/Mojolicious-Plugin-AdvancedMod)", 1145 | "Additional features", 1146 | "" 1147 | ] 1148 | ] 1149 | } 1150 | }, 1151 | { 1152 | "h3": "PHP #" 1153 | }, 1154 | { 1155 | "table": { 1156 | "headers": [ 1157 | ":star2:", 1158 | "Name", 1159 | "Description", 1160 | "🌍" 1161 | ], 1162 | "rows": [ 1163 | [ 1164 | "827", 1165 | "[@barbushin](https://github.com/barbushin)/[**php-console**](https://github.com/barbushin/php-console)", 1166 | "Handle PHP errors, dump variables, execute PHP code remotely in Google Chrome", 1167 | "[:arrow_upper_right:](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef)" 1168 | ], 1169 | [ 1170 | "476", 1171 | "[@barbushin](https://github.com/barbushin)/[**php-imap**](https://github.com/barbushin/php-imap)", 1172 | "PHP class to access mailbox by POP3/IMAP/NNTP using IMAP extension", 1173 | "" 1174 | ], 1175 | [ 1176 | "137", 1177 | "[@barbushin](https://github.com/barbushin)/[**dater**](https://github.com/barbushin/dater)", 1178 | "PHP library to work with date and time in different timezones & formats", 1179 | "" 1180 | ], 1181 | [ 1182 | "126", 1183 | "[@githubjeka](https://github.com/githubjeka)/[**yii2-tutorial**](https://github.com/githubjeka/yii2-tutorial)", 1184 | "Yii2 учебное руководство, мануал по созданию сайта на русском языке.", 1185 | "" 1186 | ], 1187 | [ 1188 | "92", 1189 | "[@githubjeka](https://github.com/githubjeka)/[**yii2-rest**](https://github.com/githubjeka/yii2-rest)", 1190 | "Yii2 REST API template", 1191 | "" 1192 | ], 1193 | [ 1194 | "64", 1195 | "[@barbushin](https://github.com/barbushin)/[**multirequest**](https://github.com/barbushin/multirequest)", 1196 | "PHP library for easy and flexible multithread requests handling by CURL", 1197 | "" 1198 | ], 1199 | [ 1200 | "53", 1201 | "[@githubjeka](https://github.com/githubjeka)/[**gui-rbac-yii2**](https://github.com/githubjeka/gui-rbac-yii2)", 1202 | "RBAC Auth manager for Yii2 with GUI", 1203 | "[:arrow_upper_right:](https://basic-rbac-githubjeka.c9.io/basic/web/index.php?r=rbac)" 1204 | ], 1205 | [ 1206 | "48", 1207 | "[@barbushin](https://github.com/barbushin)/[**php-console-laravel**](https://github.com/barbushin/php-console-laravel)", 1208 | "Laravel 4.* and 5.* service providers to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome", 1209 | "[:arrow_upper_right:](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef)" 1210 | ], 1211 | [ 1212 | "25", 1213 | "[@barbushin](https://github.com/barbushin)/[**lagger**](https://github.com/barbushin/lagger)", 1214 | "Lightweight and flexible errors/exceptions/debugs handler for PHP", 1215 | "" 1216 | ], 1217 | [ 1218 | "16", 1219 | "[@atukai](https://github.com/atukai)/[**AtCms**](https://github.com/atukai/AtCms)", 1220 | "AtCms is a Zend Framework 2 module which provides a base CMS functionality. Helps to create html pages and blocks.", 1221 | "" 1222 | ], 1223 | [ 1224 | "10", 1225 | "[@barbushin](https://github.com/barbushin)/[**primage**](https://github.com/barbushin/primage)", 1226 | "PHP library that works like a proxy for realtime images resizing and watermarking (+ cache support)", 1227 | "" 1228 | ], 1229 | [ 1230 | "9", 1231 | "[@barbushin](https://github.com/barbushin)/[**speed-out**](https://github.com/barbushin/speed-out)", 1232 | "PHP library for realtime JavaScript/CSS files combining & compression", 1233 | "" 1234 | ], 1235 | [ 1236 | "8", 1237 | "[@barbushin](https://github.com/barbushin)/[**abstract-storage**](https://github.com/barbushin/abstract-storage)", 1238 | "PHP library for transactional Key-Value, Key-Object, Queue sharded storages on MySQL/Mongo/Redis/Memcached", 1239 | "" 1240 | ], 1241 | [ 1242 | "8", 1243 | "[@atukai](https://github.com/atukai)/[**AtPhpSettings**](https://github.com/atukai/AtPhpSettings)", 1244 | "ZF2 module for managing a php settings", 1245 | "" 1246 | ], 1247 | [ 1248 | "7", 1249 | "[@Gemorroj](https://github.com/Gemorroj)/[**Archive7z**](https://github.com/Gemorroj/Archive7z)", 1250 | "This library provides handling of 7z files in PHP", 1251 | "" 1252 | ], 1253 | [ 1254 | "6", 1255 | "[@barbushin](https://github.com/barbushin)/[**php-console-yii**](https://github.com/barbushin/php-console-yii)", 1256 | "Yii extension to handle errors & debug in Google Chrome using \"PHP Console\"", 1257 | "" 1258 | ], 1259 | [ 1260 | "6", 1261 | "[@barbushin](https://github.com/barbushin)/[**dbench**](https://github.com/barbushin/dbench)", 1262 | "PHP library for generating database tables data and testing it perfomance", 1263 | "" 1264 | ], 1265 | [ 1266 | "5", 1267 | "[@Gemorroj](https://github.com/Gemorroj)/[**MP3_Id3**](https://github.com/Gemorroj/MP3_Id3)", 1268 | "Read/Write MP3-Tags", 1269 | "" 1270 | ], 1271 | [ 1272 | "5", 1273 | "[@barbushin](https://github.com/barbushin)/[**dabase**](https://github.com/barbushin/dabase)", 1274 | "flexible, simple and lightweight pseudo ORM for PHP", 1275 | "" 1276 | ], 1277 | [ 1278 | "5", 1279 | "[@barbushin](https://github.com/barbushin)/[**php-console-silex**](https://github.com/barbushin/php-console-silex)", 1280 | "Silex service provider to handle PHP errors, dump variables, execute PHP code remotely in Google Chrome", 1281 | "[:arrow_upper_right:](https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef)" 1282 | ], 1283 | [ 1284 | "5", 1285 | "[@barbushin](https://github.com/barbushin)/[**scriptalone**](https://github.com/barbushin/scriptalone)", 1286 | "PHP class for limiting running only one instance of some script", 1287 | "" 1288 | ], 1289 | [ 1290 | "4", 1291 | "[@Gemorroj](https://github.com/Gemorroj)/[**M3uParser**](https://github.com/Gemorroj/M3uParser)", 1292 | "Parser for m3u files", 1293 | "" 1294 | ], 1295 | [ 1296 | "4", 1297 | "[@atukai](https://github.com/atukai)/[**AtAdmin**](https://github.com/atukai/AtAdmin)", 1298 | "Provides an admin panel and extra functionality", 1299 | "" 1300 | ], 1301 | [ 1302 | "4", 1303 | "[@atukai](https://github.com/atukai)/[**AtWeather**](https://github.com/atukai/AtWeather)", 1304 | "AtWeather is a Zend Framework 2 module that helps to get weather forecast from online weather providers.", 1305 | "" 1306 | ], 1307 | [ 1308 | "3", 1309 | "[@atukai](https://github.com/atukai)/[**AtDataGrid**](https://github.com/atukai/AtDataGrid)", 1310 | "A data grid component for ZF2", 1311 | "" 1312 | ], 1313 | [ 1314 | "3", 1315 | "[@githubjeka](https://github.com/githubjeka)/[**skeletonYiiApp**](https://github.com/githubjeka/skeletonYiiApp)", 1316 | "", 1317 | "" 1318 | ], 1319 | [ 1320 | "3", 1321 | "[@Gemorroj](https://github.com/Gemorroj)/[**gmanager**](https://github.com/Gemorroj/gmanager)", 1322 | "Файловый менеджер + Текстовый редактор", 1323 | "" 1324 | ], 1325 | [ 1326 | "2", 1327 | "[@Ozerich](https://github.com/Ozerich)/[**gounique**](https://github.com/Ozerich/gounique)", 1328 | "", 1329 | "" 1330 | ], 1331 | [ 1332 | "2", 1333 | "[@atukai](https://github.com/atukai)/[**AtBlock**](https://github.com/atukai/AtBlock)", 1334 | "Blocks and widgets module for ZF2", 1335 | "" 1336 | ], 1337 | [ 1338 | "2", 1339 | "[@Gemorroj](https://github.com/Gemorroj)/[**Syntax**](https://github.com/Gemorroj/Syntax)", 1340 | "Check php code syntax", 1341 | "" 1342 | ], 1343 | [ 1344 | "2", 1345 | "[@Gemorroj](https://github.com/Gemorroj)/[**HTMLValidator**](https://github.com/Gemorroj/HTMLValidator)", 1346 | "port PEAR package Services_W3C_HTMLValidator", 1347 | "" 1348 | ], 1349 | [ 1350 | "2", 1351 | "[@githubjeka](https://github.com/githubjeka)/[**value-object**](https://github.com/githubjeka/value-object)", 1352 | "Help to create immutable Value Objects", 1353 | "" 1354 | ], 1355 | [ 1356 | "2", 1357 | "[@Ozerich](https://github.com/Ozerich)/[**just-find**](https://github.com/Ozerich/just-find)", 1358 | "just-find.ru for bsuir game", 1359 | "[:arrow_upper_right:](http://www.just-find.ru)" 1360 | ], 1361 | [ 1362 | "2", 1363 | "[@Gemorroj](https://github.com/Gemorroj)/[**forum**](https://github.com/Gemorroj/forum)", 1364 | "wapinet forum", 1365 | "" 1366 | ], 1367 | [ 1368 | "2", 1369 | "[@Ozerich](https://github.com/Ozerich)/[**parsers**](https://github.com/Ozerich/parsers)", 1370 | "Parsers for various web-sites", 1371 | "[:arrow_upper_right:](http://www.avito.ru)" 1372 | ], 1373 | [ 1374 | "2", 1375 | "[@barbushin](https://github.com/barbushin)/[**iploc**](https://github.com/barbushin/iploc)", 1376 | "PHP library to detect location by IP based on GeoLite database", 1377 | "" 1378 | ], 1379 | [ 1380 | "2", 1381 | "[@Gemorroj](https://github.com/Gemorroj)/[**CSSValidator**](https://github.com/Gemorroj/CSSValidator)", 1382 | "port PEAR package Services_W3C_CSSValidator", 1383 | "" 1384 | ] 1385 | ] 1386 | } 1387 | }, 1388 | { 1389 | "h3": "Python #" 1390 | }, 1391 | { 1392 | "table": { 1393 | "headers": [ 1394 | ":star2:", 1395 | "Name", 1396 | "Description", 1397 | "🌍" 1398 | ], 1399 | "rows": [ 1400 | [ 1401 | "190", 1402 | "[@Tiendil](https://github.com/Tiendil)/[**the-tale**](https://github.com/Tiendil/the-tale)", 1403 | "Сказка - Zero Player Game и песочница", 1404 | "[:arrow_upper_right:](http://the-tale.org)" 1405 | ], 1406 | [ 1407 | "101", 1408 | "[@hlamer](https://github.com/hlamer)/[**enki**](https://github.com/hlamer/enki)", 1409 | "A text editor for programmers", 1410 | "[:arrow_upper_right:](http://enki-editor.org)" 1411 | ], 1412 | [ 1413 | "52", 1414 | "[@Friz-zy](https://github.com/Friz-zy)/[**pyspaces**](https://github.com/Friz-zy/pyspaces)", 1415 | "Works with Linux namespaces througth glibc with pure python", 1416 | "" 1417 | ], 1418 | [ 1419 | "42", 1420 | "[@hlamer](https://github.com/hlamer)/[**qutepart**](https://github.com/hlamer/qutepart)", 1421 | "Code editor component for PyQt5", 1422 | "[:arrow_upper_right:](http://enki-editor.org)" 1423 | ], 1424 | [ 1425 | "33", 1426 | "[@Tiendil](https://github.com/Tiendil)/[**utg**](https://github.com/Tiendil/utg)", 1427 | "universal text generation library", 1428 | "" 1429 | ], 1430 | [ 1431 | "26", 1432 | "[@Tiendil](https://github.com/Tiendil)/[**pynames**](https://github.com/Tiendil/pynames)", 1433 | "characters' name generation library", 1434 | "" 1435 | ], 1436 | [ 1437 | "23", 1438 | "[@hlamer](https://github.com/hlamer)/[**cpp2python**](https://github.com/hlamer/cpp2python)", 1439 | "C++ to Python converter", 1440 | "" 1441 | ], 1442 | [ 1443 | "18", 1444 | "[@svartalf](https://github.com/svartalf)/[**python-2gis**](https://github.com/svartalf/python-2gis)", 1445 | "A Python library for accessing the 2gis API", 1446 | "[:arrow_upper_right:](http://api.2gis.ru/)" 1447 | ], 1448 | [ 1449 | "18", 1450 | "[@Tiendil](https://github.com/Tiendil)/[**questgen**](https://github.com/Tiendil/questgen)", 1451 | "quests generation library for the-tale.org", 1452 | "" 1453 | ], 1454 | [ 1455 | "17", 1456 | "[@Relrin](https://github.com/Relrin)/[**aiorest-ws**](https://github.com/Relrin/aiorest-ws)", 1457 | "REST framework with WebSockets support", 1458 | "" 1459 | ], 1460 | [ 1461 | "17", 1462 | "[@svartalf](https://github.com/svartalf)/[**python-opus**](https://github.com/svartalf/python-opus)", 1463 | "", 1464 | "" 1465 | ], 1466 | [ 1467 | "16", 1468 | "[@svartalf](https://github.com/svartalf)/[**tornado-zmq-sockjs-e…**](https://github.com/svartalf/tornado-zmq-sockjs-example)", 1469 | "Example of a application, which uses Tornado web-server for backend side, SockJS for client communications and ØMQ for inner communications.", 1470 | "" 1471 | ], 1472 | [ 1473 | "13", 1474 | "[@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**mem_top**](https://github.com/denis-ryzhkov/mem_top)", 1475 | "Shows top suspects for memory leaks in your Python program.", 1476 | "" 1477 | ], 1478 | [ 1479 | "13", 1480 | "[@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**method_decorator**](https://github.com/denis-ryzhkov/method_decorator)", 1481 | "Python decorator that knows the class the decorated method is bound to.", 1482 | "" 1483 | ], 1484 | [ 1485 | "11", 1486 | "[@alex-oleshkevich](https://github.com/alex-oleshkevich)/[**vhost**](https://github.com/alex-oleshkevich/vhost)", 1487 | "Tool for management of apache's virtual hosts", 1488 | "" 1489 | ], 1490 | [ 1491 | "11", 1492 | "[@Tiendil](https://github.com/Tiendil)/[**rels**](https://github.com/Tiendil/rels)", 1493 | "library for describing data relations in python (Enums, \"relational\" tables)", 1494 | "" 1495 | ], 1496 | [ 1497 | "11", 1498 | "[@kondratovich](https://github.com/kondratovich)/[**aztec**](https://github.com/kondratovich/aztec)", 1499 | "Command-line build tool for Kotlin", 1500 | "" 1501 | ], 1502 | [ 1503 | "9", 1504 | "[@Gr1N](https://github.com/Gr1N)/[**rainbowrunners**](https://github.com/Gr1N/rainbowrunners)", 1505 | "Awesome rainbow test runners!!1", 1506 | "[:arrow_upper_right:](https://pypi.python.org/pypi/rainbowrunners)" 1507 | ], 1508 | [ 1509 | "8", 1510 | "[@hlamer](https://github.com/hlamer)/[**python-ws-discovery**](https://github.com/hlamer/python-ws-discovery)", 1511 | "WS-Discovery implementation in Python", 1512 | "" 1513 | ], 1514 | [ 1515 | "7", 1516 | "[@svartalf](https://github.com/svartalf)/[**python-wargaming**](https://github.com/svartalf/python-wargaming)", 1517 | "Pure-pythonic client library for Wargaming API", 1518 | "[:arrow_upper_right:](https://wargaming.net/developers/)" 1519 | ], 1520 | [ 1521 | "7", 1522 | "[@ichernetsky](https://github.com/ichernetsky)/[**informatics-rescue-n…**](https://github.com/ichernetsky/informatics-rescue-notes)", 1523 | "Notes for studies", 1524 | "" 1525 | ], 1526 | [ 1527 | "6", 1528 | "[@Tiendil](https://github.com/Tiendil)/[**deworld**](https://github.com/Tiendil/deworld)", 1529 | "DEveloping WORLD - python world generator ", 1530 | "" 1531 | ], 1532 | [ 1533 | "5", 1534 | "[@Gr1N](https://github.com/Gr1N)/[**1pwd**](https://github.com/Gr1N/1pwd)", 1535 | "A command line interface for 1Password", 1536 | "[:arrow_upper_right:](https://pypi.python.org/pypi/onepyssword)" 1537 | ], 1538 | [ 1539 | "5", 1540 | "[@ip0000h](https://github.com/ip0000h)/[**flask-docker-compose**](https://github.com/ip0000h/flask-docker-compose)", 1541 | "Flask application development skeleton with docker-compose", 1542 | "" 1543 | ], 1544 | [ 1545 | "4", 1546 | "[@cybergrind](https://github.com/cybergrind)/[**django-performance**](https://github.com/cybergrind/django-performance)", 1547 | "middlewares for profiling django applications", 1548 | "" 1549 | ], 1550 | [ 1551 | "4", 1552 | "[@Gr1N](https://github.com/Gr1N)/[**poffw**](https://github.com/Gr1N/poffw)", 1553 | "Proof-of-work prototype (very simple and very stupid)", 1554 | "" 1555 | ], 1556 | [ 1557 | "3", 1558 | "[@Gr1N](https://github.com/Gr1N)/[**pypispy**](https://github.com/Gr1N/pypispy)", 1559 | "\"Big Brother\" is watching your packages!", 1560 | "[:arrow_upper_right:](https://pypi.python.org/pypi/pypispy)" 1561 | ], 1562 | [ 1563 | "3", 1564 | "[@yltsrc](https://github.com/yltsrc)/[**gedit-gpicker**](https://github.com/yltsrc/gedit-gpicker)", 1565 | "gpicker plugin for gEdit", 1566 | "" 1567 | ], 1568 | [ 1569 | "3", 1570 | "[@svartalf](https://github.com/svartalf)/[**abakron**](https://github.com/svartalf/abakron)", 1571 | "", 1572 | "[:arrow_upper_right:](http://abakron.ru)" 1573 | ], 1574 | [ 1575 | "3", 1576 | "[@Friz-zy](https://github.com/Friz-zy)/[**factory**](https://github.com/Friz-zy/factory)", 1577 | "Automate your own tasks on pure python and execute it on remote or local hosts. Create The Magic", 1578 | "" 1579 | ], 1580 | [ 1581 | "3", 1582 | "[@svartalf](https://github.com/svartalf)/[**python-quirc**](https://github.com/svartalf/python-quirc)", 1583 | "Python ctypes interface for QR code decoding library `libquirc`", 1584 | "" 1585 | ], 1586 | [ 1587 | "3", 1588 | "[@Tiendil](https://github.com/Tiendil)/[**dext**](https://github.com/Tiendil/dext)", 1589 | "some useful libs for django", 1590 | "" 1591 | ], 1592 | [ 1593 | "3", 1594 | "[@hlamer](https://github.com/hlamer)/[**pyqt-memory-mgmt**](https://github.com/hlamer/pyqt-memory-mgmt)", 1595 | "Examples for PyQt memory management article", 1596 | "" 1597 | ], 1598 | [ 1599 | "2", 1600 | "[@hlamer](https://github.com/hlamer)/[**mit-scheme-gui**](https://github.com/hlamer/mit-scheme-gui)", 1601 | "MIT Scheme GUI. Prototype for mksv3", 1602 | "" 1603 | ], 1604 | [ 1605 | "2", 1606 | "[@svartalf](https://github.com/svartalf)/[**random-imgur**](https://github.com/svartalf/random-imgur)", 1607 | "", 1608 | "" 1609 | ], 1610 | [ 1611 | "2", 1612 | "[@svartalf](https://github.com/svartalf)/[**xmpp-log**](https://github.com/svartalf/xmpp-log)", 1613 | "Simple XMPP MUC logger", 1614 | "" 1615 | ], 1616 | [ 1617 | "2", 1618 | "[@svartalf](https://github.com/svartalf)/[**mhundwa**](https://github.com/svartalf/mhundwa)", 1619 | "Бот-архивариус для авто-подлепры", 1620 | "" 1621 | ], 1622 | [ 1623 | "2", 1624 | "[@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**uniqtoken**](https://github.com/denis-ryzhkov/uniqtoken)", 1625 | "Simple generator of unique tokens.", 1626 | "" 1627 | ], 1628 | [ 1629 | "2", 1630 | "[@Gr1N](https://github.com/Gr1N)/[**SublimeFixMacEnv**](https://github.com/Gr1N/SublimeFixMacEnv)", 1631 | "A Sublime Text 3 plugin to set the any env variable correctly on OS X", 1632 | "" 1633 | ], 1634 | [ 1635 | "2", 1636 | "[@cybergrind](https://github.com/cybergrind)/[**safe_logger**](https://github.com/cybergrind/safe_logger)", 1637 | "Safe TimedRotatingFileHandler for concurrent writing processes", 1638 | "" 1639 | ], 1640 | [ 1641 | "2", 1642 | "[@cybergrind](https://github.com/cybergrind)/[**txamqp_ext**](https://github.com/cybergrind/txamqp_ext)", 1643 | "Extend txamqp library", 1644 | "" 1645 | ], 1646 | [ 1647 | "2", 1648 | "[@kondratovich](https://github.com/kondratovich)/[**elephant_trader**](https://github.com/kondratovich/elephant_trader)", 1649 | "twitter bot just for fun", 1650 | "" 1651 | ], 1652 | [ 1653 | "2", 1654 | "[@myaskevich](https://github.com/myaskevich)/[**python-bype**](https://github.com/myaskevich/python-bype)", 1655 | "bype - Python Fluent DSL", 1656 | "" 1657 | ], 1658 | [ 1659 | "2", 1660 | "[@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**adict**](https://github.com/denis-ryzhkov/adict)", 1661 | "Dict with attr access to keys.", 1662 | "" 1663 | ], 1664 | [ 1665 | "2", 1666 | "[@denis-ryzhkov](https://github.com/denis-ryzhkov)/[**apiphant**](https://github.com/denis-ryzhkov/apiphant)", 1667 | "Simple Python Web API framework, based on Gevent, JSON, CRUD.", 1668 | "" 1669 | ], 1670 | [ 1671 | "2", 1672 | "[@alex-oleshkevich](https://github.com/alex-oleshkevich)/[**skeleton-plasmoid**](https://github.com/alex-oleshkevich/skeleton-plasmoid)", 1673 | "The skeleton application for KDE Plasma widget (Popup Applet)", 1674 | "" 1675 | ] 1676 | ] 1677 | } 1678 | }, 1679 | { 1680 | "h3": "Ruby #" 1681 | }, 1682 | { 1683 | "table": { 1684 | "headers": [ 1685 | ":star2:", 1686 | "Name", 1687 | "Description", 1688 | "🌍" 1689 | ], 1690 | "rows": [ 1691 | [ 1692 | "786", 1693 | "[@goshakkk](https://github.com/goshakkk)/[**nsa_panel**](https://github.com/goshakkk/nsa_panel)", 1694 | "Easily add an NSA backdoor into your Rails app.", 1695 | "" 1696 | ], 1697 | [ 1698 | "204", 1699 | "[@ka8725](https://github.com/ka8725)/[**migration_data**](https://github.com/ka8725/migration_data)", 1700 | "The solution to keep your Rails ActiveRecord migrations up to date", 1701 | "[:arrow_upper_right:](http://railsguides.net/change-data-in-migrations-like-a-boss/)" 1702 | ], 1703 | [ 1704 | "183", 1705 | "[@lest](https://github.com/lest)/[**capistrano-deploy**](https://github.com/lest/capistrano-deploy)", 1706 | "Capistrano deploy recipes", 1707 | "" 1708 | ], 1709 | [ 1710 | "169", 1711 | "[@antono](https://github.com/antono)/[**shelr**](https://github.com/antono/shelr)", 1712 | "Console screencasting tool", 1713 | "[:arrow_upper_right:](http://shelr.tv)" 1714 | ], 1715 | [ 1716 | "164", 1717 | "[@goshakkk](https://github.com/goshakkk)/[**sleek**](https://github.com/goshakkk/sleek)", 1718 | "Doing Analytics in Ruby.", 1719 | "" 1720 | ], 1721 | [ 1722 | "110", 1723 | "[@nashby](https://github.com/nashby)/[**garlicjs-rails**](https://github.com/nashby/garlicjs-rails)", 1724 | "Garlic.js in love with Rails Asset Pipeline", 1725 | "" 1726 | ], 1727 | [ 1728 | "73", 1729 | "[@MaximAbramchuck](https://github.com/MaximAbramchuck)/[**ruby-telegram-bot-st…**](https://github.com/MaximAbramchuck/ruby-telegram-bot-starter-kit)", 1730 | ":airplane: Ruby Telegram boilerplate for creating awesome bots", 1731 | "" 1732 | ], 1733 | [ 1734 | "68", 1735 | "[@nashby](https://github.com/nashby)/[**wtf_lang**](https://github.com/nashby/wtf_lang)", 1736 | "An awesome language detector", 1737 | "[:arrow_upper_right:](http://github.com/nashby/wtf_lang)" 1738 | ], 1739 | [ 1740 | "53", 1741 | "[@hron](https://github.com/hron)/[**redmine_subtasks**](https://github.com/hron/redmine_subtasks)", 1742 | "This is plugin for Redmine for adding subtasks functionality.", 1743 | "" 1744 | ], 1745 | [ 1746 | "35", 1747 | "[@nashby](https://github.com/nashby)/[**dota**](https://github.com/nashby/dota)", 1748 | "Ruby wrapper for Dota 2 WebAPI", 1749 | "" 1750 | ], 1751 | [ 1752 | "32", 1753 | "[@Mik-die](https://github.com/Mik-die)/[**mongoid_globalize**](https://github.com/Mik-die/mongoid_globalize)", 1754 | "Library for translating Mongoid documents, based on Globalize3 principles", 1755 | "" 1756 | ], 1757 | [ 1758 | "28", 1759 | "[@oivoodoo](https://github.com/oivoodoo)/[**devise_masquerade**](https://github.com/oivoodoo/devise_masquerade)", 1760 | "Extension for devise, enable login as functionality. Add link to the masquerade_path(resource) and use it.", 1761 | "" 1762 | ], 1763 | [ 1764 | "26", 1765 | "[@avsej](https://github.com/avsej)/[**git-kindle**](https://github.com/avsej/git-kindle)", 1766 | "Render kindle book from git repository", 1767 | "" 1768 | ], 1769 | [ 1770 | "26", 1771 | "[@alovak](https://github.com/alovak)/[**test_xml**](https://github.com/alovak/test_xml)", 1772 | "Small library to test your xml with Test::Unit or RSpec", 1773 | "" 1774 | ], 1775 | [ 1776 | "25", 1777 | "[@avsej](https://github.com/avsej)/[**ruby-couchbase-model**](https://github.com/avsej/ruby-couchbase-model)", 1778 | "The ORM-like abstraction for couchbase ruby client (Fork for *experiments*. See original repository)", 1779 | "[:arrow_upper_right:](https://github.com/couchbase/couchbase-ruby-model)" 1780 | ], 1781 | [ 1782 | "24", 1783 | "[@FUT](https://github.com/FUT)/[**iam**](https://github.com/FUT/iam)", 1784 | "Single click authorization (not for production)", 1785 | "[:arrow_upper_right:](https://github.com/FUT/iam)" 1786 | ], 1787 | [ 1788 | "22", 1789 | "[@lest](https://github.com/lest)/[**redmine_thumbnails**](https://github.com/lest/redmine_thumbnails)", 1790 | "Redmine Thumbnails Plugin", 1791 | "" 1792 | ], 1793 | [ 1794 | "19", 1795 | "[@nashby](https://github.com/nashby)/[**omniauth-stackexchan…**](https://github.com/nashby/omniauth-stackexchange)", 1796 | "StackExchange OAuth strategy for OmniAuth", 1797 | "" 1798 | ], 1799 | [ 1800 | "19", 1801 | "[@lest](https://github.com/lest)/[**coderwall-cli**](https://github.com/lest/coderwall-cli)", 1802 | "Coderwall CLI", 1803 | "" 1804 | ], 1805 | [ 1806 | "19", 1807 | "[@nashby](https://github.com/nashby)/[**github_cloner**](https://github.com/nashby/github_cloner)", 1808 | "With github_cloner you have an easy way to clone all your projects from github", 1809 | "[:arrow_upper_right:](https://github.com/nashby/github_cloner)" 1810 | ], 1811 | [ 1812 | "17", 1813 | "[@goshakkk](https://github.com/goshakkk)/[**ruroku**](https://github.com/goshakkk/ruroku)", 1814 | "The better Ruby client for Heroku API.", 1815 | "[:arrow_upper_right:](http://goshakkk.name/ruroku/)" 1816 | ], 1817 | [ 1818 | "17", 1819 | "[@alesguzik](https://github.com/alesguzik)/[**vkpd**](https://github.com/alesguzik/vkpd)", 1820 | "VKPD searches vk.com for music files and plays them via mpd", 1821 | "" 1822 | ], 1823 | [ 1824 | "16", 1825 | "[@avsej](https://github.com/avsej)/[**calculus**](https://github.com/avsej/calculus)", 1826 | "A ruby parser for TeX equations", 1827 | "[:arrow_upper_right:](http://avsej.net/calculus)" 1828 | ], 1829 | [ 1830 | "16", 1831 | "[@ka8725](https://github.com/ka8725)/[**get_or_build**](https://github.com/ka8725/get_or_build)", 1832 | "Rails gem for building has_one and belongs_to associations for fields_for", 1833 | "[:arrow_upper_right:](http://ka8725.github.com/get_or_build)" 1834 | ], 1835 | [ 1836 | "14", 1837 | "[@styx](https://github.com/styx)/[**jquery-ui-rails-cdn**](https://github.com/styx/jquery-ui-rails-cdn)", 1838 | "Add CDN support to jquery-ui-rails", 1839 | "" 1840 | ], 1841 | [ 1842 | "13", 1843 | "[@Mik-die](https://github.com/Mik-die)/[**polymorphic_render**](https://github.com/Mik-die/polymorphic_render)", 1844 | "Extends rails views rendering", 1845 | "" 1846 | ], 1847 | [ 1848 | "12", 1849 | "[@Mik-die](https://github.com/Mik-die)/[**translation_panel**](https://github.com/Mik-die/translation_panel)", 1850 | "I18n backend, based on redis, with frontend panel for translations", 1851 | "[:arrow_upper_right:](https://github.com/Mik-die/translation_panel)" 1852 | ], 1853 | [ 1854 | "12", 1855 | "[@nashby](https://github.com/nashby)/[**ruby_kick_prologs_as…**](https://github.com/nashby/ruby_kick_prologs_ass)", 1856 | "Ruby solutions of the Ninety-Nine Prolog Problems ", 1857 | "[:arrow_upper_right:](http://nashby.github.com/ruby_problems/)" 1858 | ], 1859 | [ 1860 | "12", 1861 | "[@styx](https://github.com/styx)/[**compass-foundation**](https://github.com/styx/compass-foundation)", 1862 | "Foundation plugin for Compass", 1863 | "" 1864 | ], 1865 | [ 1866 | "10", 1867 | "[@sergey-alekseev](https://github.com/sergey-alekseev)/[**lita-answers**](https://github.com/sergey-alekseev/lita-answers)", 1868 | "A Lita handler for a question answering (QA) system", 1869 | "" 1870 | ], 1871 | [ 1872 | "10", 1873 | "[@lest](https://github.com/lest)/[**redmine_wiki_sidebar…**](https://github.com/lest/redmine_wiki_sidebar_toc)", 1874 | "", 1875 | "" 1876 | ], 1877 | [ 1878 | "9", 1879 | "[@antono](https://github.com/antono)/[**redcar-pastie**](https://github.com/antono/redcar-pastie)", 1880 | "Redcar plugin for pastie gist and other pastebins", 1881 | "" 1882 | ], 1883 | [ 1884 | "9", 1885 | "[@hron](https://github.com/hron)/[**ruby_on_etags**](https://github.com/hron/ruby_on_etags)", 1886 | "Ruby on ETags is a tool to help a developer keep TAGS file up to date.", 1887 | "" 1888 | ], 1889 | [ 1890 | "8", 1891 | "[@nashby](https://github.com/nashby)/[**vlcrb**](https://github.com/nashby/vlcrb)", 1892 | "Ruby wrapper for libVLC ", 1893 | "[:arrow_upper_right:](http://github.com/nashby/vlcrb)" 1894 | ], 1895 | [ 1896 | "7", 1897 | "[@styx](https://github.com/styx)/[**angularjs-rails-cdn**](https://github.com/styx/angularjs-rails-cdn)", 1898 | "Adds CDN support to angularjs-rails", 1899 | "" 1900 | ], 1901 | [ 1902 | "7", 1903 | "[@avsej](https://github.com/avsej)/[**gson.rb**](https://github.com/avsej/gson.rb)", 1904 | "Ruby wrapper for google-gson library", 1905 | "" 1906 | ], 1907 | [ 1908 | "7", 1909 | "[@avsej](https://github.com/avsej)/[**couchbase-ruby-clien…**](https://github.com/avsej/couchbase-ruby-client-em)", 1910 | "An EventMachine-based Couchbase ruby driver", 1911 | "" 1912 | ], 1913 | [ 1914 | "7", 1915 | "[@nashby](https://github.com/nashby)/[**timezoner**](https://github.com/nashby/timezoner)", 1916 | "A tiny service for detecting timezones by coordinates so you don't need to be dependent on online ones.", 1917 | "" 1918 | ], 1919 | [ 1920 | "6", 1921 | "[@alovak](https://github.com/alovak)/[**bank_card**](https://github.com/alovak/bank_card)", 1922 | "Credit card validations and useful methods", 1923 | "" 1924 | ], 1925 | [ 1926 | "6", 1927 | "[@MaximAbramchuck](https://github.com/MaximAbramchuck)/[**rails3-csrf-patcher**](https://github.com/MaximAbramchuck/rails3-csrf-patcher)", 1928 | ":electric_plug: Ruby gem which patches your Rails 3 application to protect it from the CSRF vulnerability.", 1929 | "" 1930 | ], 1931 | [ 1932 | "5", 1933 | "[@oivoodoo](https://github.com/oivoodoo)/[**mongoid-report**](https://github.com/oivoodoo/mongoid-report)", 1934 | "", 1935 | "" 1936 | ], 1937 | [ 1938 | "5", 1939 | "[@shemerey](https://github.com/shemerey)/[**weight**](https://github.com/shemerey/weight)", 1940 | "Weight value object", 1941 | "" 1942 | ], 1943 | [ 1944 | "5", 1945 | "[@goshakkk](https://github.com/goshakkk)/[**xtr**](https://github.com/goshakkk/xtr)", 1946 | "Simple trading engine", 1947 | "" 1948 | ], 1949 | [ 1950 | "5", 1951 | "[@nashby](https://github.com/nashby)/[**zipf_distribution**](https://github.com/nashby/zipf_distribution)", 1952 | "Zipf's law in Ruby", 1953 | "" 1954 | ], 1955 | [ 1956 | "5", 1957 | "[@hron](https://github.com/hron)/[**redmine_encrypted_do…**](https://github.com/hron/redmine_encrypted_document_plugin)", 1958 | "Redmine plugin for keeping encrypted documents in Redmine (www.redmine.org).", 1959 | "[:arrow_upper_right:](http://www.redmine.org)" 1960 | ], 1961 | [ 1962 | "5", 1963 | "[@Proghat](https://github.com/Proghat)/[**tau**](https://github.com/Proghat/tau)", 1964 | "Tool for web designers want to use haml, sass, coffee-script and others.", 1965 | "" 1966 | ], 1967 | [ 1968 | "5", 1969 | "[@antono](https://github.com/antono)/[**markitup_rails**](https://github.com/antono/markitup_rails)", 1970 | "Markitup helper for rails", 1971 | "" 1972 | ], 1973 | [ 1974 | "5", 1975 | "[@nashby](https://github.com/nashby)/[**rabin-karp**](https://github.com/nashby/rabin-karp)", 1976 | "Rabin-Karp implementation in Ruby", 1977 | "" 1978 | ], 1979 | [ 1980 | "4", 1981 | "[@nashby](https://github.com/nashby)/[**imstat**](https://github.com/nashby/imstat)", 1982 | "Check user status in the instant messengers", 1983 | "" 1984 | ], 1985 | [ 1986 | "4", 1987 | "[@goshakkk](https://github.com/goshakkk)/[**furry**](https://github.com/goshakkk/furry)", 1988 | "Simplistic web framework", 1989 | "" 1990 | ], 1991 | [ 1992 | "4", 1993 | "[@goshakkk](https://github.com/goshakkk)/[**Twee**](https://github.com/goshakkk/Twee)", 1994 | "A simple iOS Twitter client built with RubyMotion", 1995 | "" 1996 | ], 1997 | [ 1998 | "4", 1999 | "[@avsej](https://github.com/avsej)/[**segfault**](https://github.com/avsej/segfault)", 2000 | "Helper to abort your ruby script execution", 2001 | "[:arrow_upper_right:](https://rubygems.org/gems/segfault)" 2002 | ], 2003 | [ 2004 | "4", 2005 | "[@nashby](https://github.com/nashby)/[**whoistoblame**](https://github.com/nashby/whoistoblame)", 2006 | "Who is to blame?", 2007 | "[:arrow_upper_right:](http://whoistoblame.heroku.com)" 2008 | ], 2009 | [ 2010 | "4", 2011 | "[@alovak](https://github.com/alovak)/[**network**](https://github.com/alovak/network)", 2012 | "HTTP/HTTPS communication module based on ruby net/http, net/https modules", 2013 | "" 2014 | ], 2015 | [ 2016 | "4", 2017 | "[@Mik-die](https://github.com/Mik-die)/[**startags**](https://github.com/Mik-die/startags)", 2018 | "Tags for your GitHub stars!", 2019 | "[:arrow_upper_right:](http://startags.me)" 2020 | ], 2021 | [ 2022 | "3", 2023 | "[@avsej](https://github.com/avsej)/[**beer-sample**](https://github.com/avsej/beer-sample)", 2024 | "Open beer database, ready to use with Couchbase", 2025 | "" 2026 | ], 2027 | [ 2028 | "3", 2029 | "[@antono](https://github.com/antono)/[**mysql_analyser**](https://github.com/antono/mysql_analyser)", 2030 | "Simple mysql analysis tool", 2031 | "[:arrow_upper_right:](http://mysql.antono.info/)" 2032 | ], 2033 | [ 2034 | "3", 2035 | "[@avsej](https://github.com/avsej)/[**em-couchbase-loader**](https://github.com/avsej/em-couchbase-loader)", 2036 | "Test helper for em-couchbase gem", 2037 | "" 2038 | ], 2039 | [ 2040 | "3", 2041 | "[@okendoken](https://github.com/okendoken)/[**GreatWork**](https://github.com/okendoken/GreatWork)", 2042 | "", 2043 | "" 2044 | ], 2045 | [ 2046 | "3", 2047 | "[@sergey-alekseev](https://github.com/sergey-alekseev)/[**bsu-ssm**](https://github.com/sergey-alekseev/bsu-ssm)", 2048 | "Simulation and statistical modeling, BSU FAMCS 4th course", 2049 | "" 2050 | ], 2051 | [ 2052 | "3", 2053 | "[@antono](https://github.com/antono)/[**rake-tm**](https://github.com/antono/rake-tm)", 2054 | "Simple rake time-management tasks for railway workers", 2055 | "[:arrow_upper_right:](http://github.com/antono/rake-tm/tree/master)" 2056 | ], 2057 | [ 2058 | "3", 2059 | "[@antono](https://github.com/antono)/[**brute**](https://github.com/antono/brute)", 2060 | "brute force dictionaries on demand", 2061 | "[:arrow_upper_right:](http://antono.info/en/170-brute-force-dictionaries-in-ruby)" 2062 | ], 2063 | [ 2064 | "3", 2065 | "[@goshakkk](https://github.com/goshakkk)/[**typed_arguments**](https://github.com/goshakkk/typed_arguments)", 2066 | "Typed method arguments for Ruby", 2067 | "" 2068 | ], 2069 | [ 2070 | "3", 2071 | "[@goshakkk](https://github.com/goshakkk)/[**pirrrate**](https://github.com/goshakkk/pirrrate)", 2072 | "A basic Ruby API client for The Pirate Bay", 2073 | "" 2074 | ], 2075 | [ 2076 | "3", 2077 | "[@lest](https://github.com/lest)/[**lita-eval**](https://github.com/lest/lita-eval)", 2078 | "A Lita handler for evaluating ruby code.", 2079 | "" 2080 | ], 2081 | [ 2082 | "3", 2083 | "[@lest](https://github.com/lest)/[**html2pdf**](https://github.com/lest/html2pdf)", 2084 | "", 2085 | "" 2086 | ], 2087 | [ 2088 | "3", 2089 | "[@alovak](https://github.com/alovak)/[**merge_db**](https://github.com/alovak/merge_db)", 2090 | "Do you need to merge Rails databases?", 2091 | "" 2092 | ], 2093 | [ 2094 | "3", 2095 | "[@antono](https://github.com/antono)/[**glog**](https://github.com/antono/glog)", 2096 | "Rack based static blog", 2097 | "" 2098 | ], 2099 | [ 2100 | "2", 2101 | "[@goshakkk](https://github.com/goshakkk)/[**ampersand_x**](https://github.com/goshakkk/ampersand_x)", 2102 | "&X brings expressiveness back to Ruby procs", 2103 | "" 2104 | ], 2105 | [ 2106 | "2", 2107 | "[@alovak](https://github.com/alovak)/[**pragauthor**](https://github.com/alovak/pragauthor)", 2108 | "Pragmatic Author. Sales reports for Amazon KDP, Barnes&Noble, Smashwords, CreateSpace", 2109 | "" 2110 | ], 2111 | [ 2112 | "2", 2113 | "[@ka8725](https://github.com/ka8725)/[**range_regexp**](https://github.com/ka8725/range_regexp)", 2114 | "Convert a Ruby range to a regexp.", 2115 | "" 2116 | ], 2117 | [ 2118 | "2", 2119 | "[@ka8725](https://github.com/ka8725)/[**gemstats**](https://github.com/ka8725/gemstats)", 2120 | "Gem statisctics", 2121 | "[:arrow_upper_right:](http://gem-stats.heroku.com/)" 2122 | ], 2123 | [ 2124 | "2", 2125 | "[@lest](https://github.com/lest)/[**redmine_time_limit**](https://github.com/lest/redmine_time_limit)", 2126 | "", 2127 | "" 2128 | ], 2129 | [ 2130 | "2", 2131 | "[@ka8725](https://github.com/ka8725)/[**neday**](https://github.com/ka8725/neday)", 2132 | "", 2133 | "" 2134 | ], 2135 | [ 2136 | "2", 2137 | "[@hron](https://github.com/hron)/[**keep-in-mind**](https://github.com/hron/keep-in-mind)", 2138 | "Export Rails annotations to Basecamp todo list", 2139 | "" 2140 | ], 2141 | [ 2142 | "2", 2143 | "[@hron](https://github.com/hron)/[**active_merchant-cert…**](https://github.com/hron/active_merchant-certo_direct)", 2144 | "", 2145 | "" 2146 | ], 2147 | [ 2148 | "2", 2149 | "[@FUT](https://github.com/FUT)/[**pspec**](https://github.com/FUT/pspec)", 2150 | "Improvement of parallel_spec gem for PostgreSQL database", 2151 | "" 2152 | ], 2153 | [ 2154 | "2", 2155 | "[@FUT](https://github.com/FUT)/[**rbf_network**](https://github.com/FUT/rbf_network)", 2156 | "Radial basis function network. Similar to multilayer perceptron but includes RBF cells instead of hidden layer.", 2157 | "" 2158 | ], 2159 | [ 2160 | "2", 2161 | "[@lest](https://github.com/lest)/[**pattersonify**](https://github.com/lest/pattersonify)", 2162 | "", 2163 | "[:arrow_upper_right:](http://pattersonify.me/)" 2164 | ], 2165 | [ 2166 | "2", 2167 | "[@okendoken](https://github.com/okendoken)/[**things_to_be_done**](https://github.com/okendoken/things_to_be_done)", 2168 | "GW successor", 2169 | "[:arrow_upper_right:](done.cheerick.ru)" 2170 | ], 2171 | [ 2172 | "2", 2173 | "[@lest](https://github.com/lest)/[**redmine_twinslash**](https://github.com/lest/redmine_twinslash)", 2174 | "Redmine Twinslash Plugin", 2175 | "" 2176 | ], 2177 | [ 2178 | "2", 2179 | "[@oivoodoo](https://github.com/oivoodoo)/[**deployments-app**](https://github.com/oivoodoo/deployments-app)", 2180 | "deployments - app it's a sinatra application, you can run it as standalone app on the heroku or attach to the existing rails application.", 2181 | "[:arrow_upper_right:](http://deployments-app.herokuapp.com/projects)" 2182 | ], 2183 | [ 2184 | "2", 2185 | "[@lest](https://github.com/lest)/[**redmine_twinslash_su…**](https://github.com/lest/redmine_twinslash_subversion)", 2186 | "", 2187 | "" 2188 | ], 2189 | [ 2190 | "2", 2191 | "[@sergeyenin](https://github.com/sergeyenin)/[**cassandra_complex**](https://github.com/sergeyenin/cassandra_complex)", 2192 | "Basic model - wrapper for CQL(Cassandra Query Language) operations.", 2193 | "[:arrow_upper_right:](http://rubydoc.info/github/sergeyenin/cassandra_complex)" 2194 | ], 2195 | [ 2196 | "2", 2197 | "[@markevich](https://github.com/markevich)/[**madmimi-rails**](https://github.com/markevich/madmimi-rails)", 2198 | "ActionMailer delivery method for sending emails via madmimi", 2199 | "" 2200 | ], 2201 | [ 2202 | "2", 2203 | "[@nashby](https://github.com/nashby)/[**rails_depot**](https://github.com/nashby/rails_depot)", 2204 | "depot project", 2205 | "" 2206 | ], 2207 | [ 2208 | "2", 2209 | "[@antono](https://github.com/antono)/[**glog-quickstart**](https://github.com/antono/glog-quickstart)", 2210 | "Glog example site with documentation", 2211 | "" 2212 | ], 2213 | [ 2214 | "2", 2215 | "[@nashby](https://github.com/nashby)/[**rubytest**](https://github.com/nashby/rubytest)", 2216 | "rubytest", 2217 | "" 2218 | ], 2219 | [ 2220 | "2", 2221 | "[@antono](https://github.com/antono)/[**rails-templates**](https://github.com/antono/rails-templates)", 2222 | "my rails templates", 2223 | "[:arrow_upper_right:](nil)" 2224 | ], 2225 | [ 2226 | "2", 2227 | "[@nashby](https://github.com/nashby)/[**validates_presence_o…**](https://github.com/nashby/validates_presence_of_boolean)", 2228 | "", 2229 | "" 2230 | ], 2231 | [ 2232 | "2", 2233 | "[@avsej](https://github.com/avsej)/[**yard-xml**](https://github.com/avsej/yard-xml)", 2234 | "XML plugin for YARD tool", 2235 | "[:arrow_upper_right:](https://rubygems.org/gems/yard-xml)" 2236 | ], 2237 | [ 2238 | "2", 2239 | "[@nashby](https://github.com/nashby)/[**stackoverflair**](https://github.com/nashby/stackoverflair)", 2240 | "Put your stackoverflow flair on blog or wherever you want.", 2241 | "[:arrow_upper_right:](https://github.com/nashby/stackoverflair)" 2242 | ], 2243 | [ 2244 | "2", 2245 | "[@ka8725](https://github.com/ka8725)/[**tutor_crm**](https://github.com/ka8725/tutor_crm)", 2246 | "", 2247 | "" 2248 | ] 2249 | ] 2250 | } 2251 | }, 2252 | { 2253 | "h3": "Scala #" 2254 | }, 2255 | { 2256 | "table": { 2257 | "headers": [ 2258 | ":star2:", 2259 | "Name", 2260 | "Description", 2261 | "🌍" 2262 | ], 2263 | "rows": [ 2264 | [ 2265 | "38", 2266 | "[@remeniuk](https://github.com/remeniuk)/[**sbt-netbeans-plugin**](https://github.com/remeniuk/sbt-netbeans-plugin)", 2267 | "The plugin allows to work with SBT projects in Netbeans", 2268 | "" 2269 | ], 2270 | [ 2271 | "13", 2272 | "[@remeniuk](https://github.com/remeniuk)/[**rubbercube**](https://github.com/remeniuk/rubbercube)", 2273 | "Cubes over ElasticSearch. Aggregation library for Business Intelligence", 2274 | "" 2275 | ], 2276 | [ 2277 | "10", 2278 | "[@remeniuk](https://github.com/remeniuk)/[**hazelcast-scala**](https://github.com/remeniuk/hazelcast-scala)", 2279 | "Functional wrapper for Hazelcast in Scala", 2280 | "" 2281 | ], 2282 | [ 2283 | "7", 2284 | "[@whiter4bbit](https://github.com/whiter4bbit)/[**scala_by_example**](https://github.com/whiter4bbit/scala_by_example)", 2285 | "there are some scala by example exer", 2286 | "" 2287 | ], 2288 | [ 2289 | "7", 2290 | "[@remeniuk](https://github.com/remeniuk)/[**SBT-Library-Resolver**](https://github.com/remeniuk/SBT-Library-Resolver)", 2291 | "Plugin that uses jarvana.com for finding artifacts in central repository", 2292 | "[:arrow_upper_right:](vasilrem.com)" 2293 | ], 2294 | [ 2295 | "6", 2296 | "[@kazachonak](https://github.com/kazachonak)/[**contour**](https://github.com/kazachonak/contour)", 2297 | "Client+Server web-framework in Scala+GWT", 2298 | "" 2299 | ], 2300 | [ 2301 | "5", 2302 | "[@whiter4bbit](https://github.com/whiter4bbit)/[**oauth**](https://github.com/whiter4bbit/oauth)", 2303 | "scala oauth provider library", 2304 | "" 2305 | ], 2306 | [ 2307 | "5", 2308 | "[@scalaby](https://github.com/scalaby)/[**patterns-presentatio…**](https://github.com/scalaby/patterns-presentation)", 2309 | "", 2310 | "" 2311 | ], 2312 | [ 2313 | "3", 2314 | "[@whiter4bbit](https://github.com/whiter4bbit)/[**kiwi**](https://github.com/whiter4bbit/kiwi)", 2315 | "Simple message queue inspired by kafka", 2316 | "" 2317 | ], 2318 | [ 2319 | "2", 2320 | "[@remeniuk](https://github.com/remeniuk)/[**typesafe-poker**](https://github.com/remeniuk/typesafe-poker)", 2321 | "Source code for the presentation made at Software Craftsmanship BY meetup", 2322 | "" 2323 | ], 2324 | [ 2325 | "2", 2326 | "[@remeniuk](https://github.com/remeniuk)/[**remeniuk.github.com**](https://github.com/remeniuk/remeniuk.github.com)", 2327 | "remeniuk.github.com", 2328 | "" 2329 | ] 2330 | ] 2331 | } 2332 | }, 2333 | { 2334 | "h3": "Shell #" 2335 | }, 2336 | { 2337 | "table": { 2338 | "headers": [ 2339 | ":star2:", 2340 | "Name", 2341 | "Description", 2342 | "🌍" 2343 | ], 2344 | "rows": [ 2345 | [ 2346 | "2", 2347 | "[@aliaksandrb](https://github.com/aliaksandrb)/[**ubuntu_ruby_dev**](https://github.com/aliaksandrb/ubuntu_ruby_dev)", 2348 | "Simple bash script for setup Ruby development environment on machine running Ubuntu", 2349 | "" 2350 | ], 2351 | [ 2352 | "2", 2353 | "[@VitaminPSG](https://github.com/VitaminPSG)/[**OpenStreetMap**](https://github.com/VitaminPSG/OpenStreetMap)", 2354 | "OpenStreetMap xml -> MySQL", 2355 | "" 2356 | ] 2357 | ] 2358 | } 2359 | } 2360 | ] 2361 | } 2362 | } --------------------------------------------------------------------------------