JSON Server
• 1. typicode/json-server
Get a full fake REST API with zero coding in less than 30 seconds (seriously)
Created with LOVE for front-end developers who need a quick back-end for prototyping and mocking.
node
• 2. nodejs/node
Speaking of LOVE
Node.js Foundation – node.js & io.js Convergence
snake
• 3. amoffat/snake
Snake lets you use Python to its fullest extent to write Vim plugins:
from snake import *
`@key_map(“
def toggle_snake_case_camel_case():
""“ toggles a word between snake case (some_function) and camelcase
(someFunction) ”""
word = get_word()
# it's snake case
if "_" in word:
chunks = word.split("_")
camel_case = chunks[0] + "".join([chunk.capitalize() for chunk in
chunks[1:]])
replace_word(camel_case)
# it's camel case
else:
# split our word on capital letters followed by non-capital letters
chunks = filter(None, re.split("([A-Z][^A-Z]*)", word))
snake_case = "_".join([chunk.lower() for chunk in chunks])
replace_word(snake_case)`
kore
• 4. jorisvink/kore
Kore is an easy to use web application framework for writing scalable web APIs in C. Its main goals are security, scalability and allowing rapid development and deployment of such APIs.
Because of this Kore is an ideal candidate for building robust, scalable and secure web things.
SwiftLint
• 5. realm/SwiftLint
An experimental tool to enforce Swift style and conventions, loosely based on GitHub’s Swift Style Guide.
SwiftLint hooks into Clang and SourceKit to use the AST representation of your source files for more accurate results.
iconate
• 6. bitshadow/iconate
A call to transform your existing icons in a cool trendy way
iconate.js
is a tiny performant library for cross-browser icon transformation animations in your projects.
rust
• 7. rust-lang/rust
The Rust Programming Language
Rust is a systems programming language that is fast, memory safe and multithreaded, but does not employ a garbage collector or otherwise impose significant runtime overhead.
This repo contains the code for rustc
, the Rust compiler, as well as standard libraries, tools and documentation for Rust.
DeepLinkKit
• 8. usebutton/DeepLinkKit
DeepLink Kit is a splendid route-matching, block-based way to handle your deep links. Rather than decide how to format your URLs, parse them, pass data, and navigate to specific content or perform actions, this library and a few lines of code will get you on your way.
UITableView-FDTemplateLayoutCell
• 9. forkingdog/UITableView-FDTemplateLayoutCell
Template auto layout cell for automatically UITableViewCell height calculating.
• 10. atom/electron
aka Atom Shell
The Electron framework lets you write cross-platform desktop applications using JavaScript, HTML and CSS. It is based on io.js and Chromium and is used in the Atom editor.
Follow @ElectronJS on Twitter for important announcements.