First:
brew update
brew tap elastic/tap
brew install elastic/tap/elasticsearch-full
Then to start the service:
First:
brew update
brew tap elastic/tap
brew install elastic/tap/elasticsearch-full
Then to start the service:
| ;; This is a collection of code that surprised me. | |
| ;; | |
| ;; Example 1 | |
| ;; | |
| (let [counter (atom 0) | |
| coll [(swap! counter inc)]] | |
| [(take 1 coll) @counter]) | |
| ;;=> [(1) 1] |
| 1 | |
| 2 | |
| Fizz | |
| 4 | |
| Buzz | |
| Fizz | |
| 7 | |
| 8 | |
| Fizz | |
| Buzz |
| from __future__ import print_function | |
| import json | |
| import urllib | |
| import boto3 | |
| import psycopg2 | |
| import re | |
| s3 = boto3.client('s3') |