Gunicorn, Python WSGI HTTP Server for UNIX

Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model. The Gunicorn server is broadly compatible with various web frameworks, simply implemented, light on server resources, and fairly speedy. Installation Here’s a quick rundown on how to get started with Gunicorn. For more details read the documentation.

Elasticsearch

Elasticsearch is a search engine based on the Lucene library. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. According to the DB-Engines ranking, Elasticsearch is the most popular …

TRON Blockchain

TRON is an ambitious project dedicated to the establishment of a truly decentralized Internet and its infrastructure. The current TRON team radiates out from Beijing to Seoul, Tokyo, San Francisco and many other countries and regions, totaling more than 100 members. The technological backbones of TRON are experienced blockchain enthusiasts who were previously employed by …

Check if mobile browser, based on useragent string.

mobile({ [ua], [tablet] }) Returns true if a mobile browser is being used. If you don’t specify opts.ua it will use navigator.userAgent. To add support for tablets, set tablet: true. opts.ua can also be an instance of a node.js http request, in which case it will reader the user agent header. Example: var http = require(‘http’);var mobile = require(‘is-mobile’); var server = http.createServer(function (req, res) {  res.end(mobile(req));}); server.listen(8000); Installation With npm do: npm install is-mobile Bundle for the browser with browserify.