service consul-template stop vi /etc/td-agent/td-agent.conf service td-agent restart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
elasticsearch_master: | |
image: elasticsearch:latest | |
command: "elasticsearch -Des.cluster.name=workagram -Des.node.master=true -Des.node.data=false" | |
environment: | |
- ES_JAVA_OPTS="-Xms512m -Xmx512m" | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
elasticsearch1: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# pipes.py - Command-piping syntax for generators/coroutines in Python. | |
""" | |
pipes.py - Command-piping syntax for generators/coroutines in Python. | |
Example: | |
>>> from pipes import * | |
>>> chain1 = counter(5) | adder(2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
strings = """every day at 11:30 | |
every 2nd week tuesday at 11:30 | |
every 5 mins | |
""" | |
grammer = { | |
"G": "every <DAY_CTX> | <WEEK_CTX> | <MIN_CTX>", | |
"WEEK_CTX": "<WEEK> week <DAY_CTX>", |
Phase-I Feasibility Study
- Input - Customer Requirement,
- Budget and Timeframe / Output - Cost Benefit Analysis Report
Phase-II Requirement Analysis
- Input - Customer requirements given in different formats (BRD, FRD)/
- Output - SRS
Phase-III System Analysis and Designing
- Input - End User Information / Output - ERD, DFD, Design Documents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::default::Default; | |
use std::collections::HashMap; | |
use github_rs::StatusCode; | |
use github_rs::client::{Executor, Github}; | |
use github_rs::gists; | |
use serde_json::Value; | |
use chrono::prelude::*; | |
use reqwest; | |
use macros; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* https://theswissbay.ch/pdf/Gentoomen%20Library/Artificial%20Intelligence/ | |
* http://www.dblab.ntua.gr/~gtsat/collection/Machine%20Learning/ | |
* http://tangkk.net/me/book/EECS/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/petermbenjamin/awesome-podcasts | |
https://github.com/guipdutra/awesome-geek-podcasts | |
https://github.com/rShetty/awesome-podcasts | |
https://github.com/wayneashleyberry/awesome-podcasts | |
https://github.com/petermbenjamin/awesome-podcasts |
const data = [
["a", "b"],
["b", "c"],
["a", "d"],
["d", "e"],
["d", "c"]
];