(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # Nginx proxy for Elasticsearch + Kibana | |
| # | |
| # In this setup, we are password protecting the saving of dashboards. You may | |
| # wish to extend the password protection to all paths. | |
| # | |
| # Even though these paths are being called as the result of an ajax request, the | |
| # browser will prompt for a username/password on the first request | |
| # | |
| # If you use this, you'll want to point config.js at http://FQDN:443/ instead of | |
| # http://FQDN:9200 |
| # Initialize the scroll | |
| page = es.search( | |
| index = 'yourIndex', | |
| doc_type = 'yourType', | |
| scroll = '2m', | |
| search_type = 'scan', | |
| size = 1000, | |
| body = { | |
| # Your query's body | |
| }) |
| sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo yum install -y apache-maven | |
| mvn --version |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| import requests | |
| import operator | |
| companies = ["facebook", "aws", "google", "yahoo", "dropbox", "twitter", "paypal", "linkedin", "mozilla", "adobe"] | |
| api_url = "https://api.github.com/orgs/{}/repos" | |
| data = {} | |
| for company in companies: | |
| data[company] = {'forks': 0, 'stars': 0, 'repos': 0, 'languages': {}} | |
| r = requests.get(api_url.format(company)) |
| tmp/ |
| ############################################################################# | |
| # Full Imports | |
| from __future__ import division | |
| import math | |
| import random | |
| """ | |
| This is a pure Python implementation of the K-means Clustering algorithmn. The | |
| original can be found here: |
| 21 | |
| 22 | |
| 53 | |
| 80 | |
| 81 | |
| 110 | |
| 161 | |
| 162 | |
| 210 | |
| 443 |