Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
This gist assumes:
| 请把一组有规律的单词拼接起来,规则为: | |
| 前一个单词的结尾应该与下一个单词的首字母相同。 | |
| 如: aloha, dog, arachnid, gopher, tiger, rat | |
| 结果为:aloha-arachnid-dog-gopher-rat-tiger. | |
| PS: | |
| 1. 回复时注意加上下面这句话,才会有语法高亮或格式缩进。 | |
| ```javascript |
These rules are adopted from the AngularJS commit conventions.
| git config --global https.proxy http://127.0.0.1:1080 | |
| git config --global https.proxy https://127.0.0.1:1080 | |
| git config --global --unset http.proxy | |
| git config --global --unset https.proxy | |
| npm config delete proxy |
| ---------- Usage | |
| The syntax created by these parameters is placed in an alert's description on TradingView | |
| to be utilized by Autoview, a Chrome Extension. | |
| Autoview: https://chrome.google.com/webstore/detail/autoview/okdhadoplaoehmeldlpakhpekjcpljmb | |
| > Website: https://autoview.with.pink | |
| > Help: https://use.autoview.with.pink | |
| > Discord: https://discordapp.com/invite/BFz8VPn | |
| TradingView: https://tradingview.go2cloud.org/aff_c?offer_id=2&aff_id=1187 |
| import hashlib as hasher | |
| import datetime as date | |
| # Define what a Snakecoin block is | |
| class Block: | |
| def __init__(self, index, timestamp, data, previous_hash): | |
| self.index = index | |
| self.timestamp = timestamp | |
| self.data = data | |
| self.previous_hash = previous_hash |
| Name | Website | Access | Data Import (API/CSV) | Trading Charts | Login Required | Transactions, P&L | Coin Location | **Tax Advisor ** | Social Features | Alerts | Analysis | Price | Notes |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Blockfolio | http://blockfolio.com/ | Mobile-only (Android, iOS) | No | Yes | No* | Yes | Yes* | No | No | No | Free | Desktop app "coming soon" | |
| Delta | https://getdelta.io/ | Mac Desktop, iOS, Android | No | Yes | No | Yes | Yes* | No | No | Yes | Free + Upgrade ($) | Nice modern UI. Desktop app available as of March 2018 | |
| Lionshare | https://lionshare.capital/ | Mac Desktop & iOS | No | No | No | No | No | No | No | No | Free, OSS | ||
| CryptoCompare | http://cryptocompare.com/ | Web App | No? | Yes | Yes | Yes | Yes* | No | Yes | No | Free | Portfolio is one part of a far larger community app | |
| AltPocket | h |
| #!/usr/bin/python3 | |
| import asyncio | |
| import time | |
| import socket | |
| import argparse | |
| import aiohttp | |
| class MyConnector(aiohttp.TCPConnector): |