Multiple reactive plots towards a complete trader dashboard in D3
Copyright © 2018-20, Sandhya Pillai - MIT License
Multiple reactive plots towards a complete trader dashboard in D3
Copyright © 2018-20, Sandhya Pillai - MIT License
| { | |
| "flowContents": { | |
| "identifier": "21cdd1dd-d4cb-3bb9-872f-e66cdbcf8738", | |
| "name": "NiFi Flow", | |
| "comments": "", | |
| "position": { | |
| "x": 0.0, | |
| "y": 0.0 | |
| }, | |
| "processGroups": [], |
| # may be templated in the future | |
| network: | |
| version: 2 | |
| renderer: networkd | |
| ethernets: | |
| eth0: | |
| dhcp4: true | |
| optional: true |
| import requests | |
| import time | |
| import os | |
| import sys | |
| import openai | |
| import tiktoken | |
| from termcolor import colored | |
| openai.api_key = open(os.path.expanduser('~/.openai')).read().strip() |
| Search Bar* | |
| Inactive* | |
| focused -> Active | |
| Active | |
| canceled -> Inactive | |
| typed -> Text Entry | |
| Empty* |
| <?php | |
| add_filter( 'genesis_attr_content', 'yoast_schema_empty', 20 ); | |
| add_filter( 'genesis_attr_entry', 'yoast_schema_event', 20 ); | |
| add_filter( 'genesis_attr_entry-title', 'yoast_itemprop_name', 20 ); | |
| add_filter( 'genesis_attr_entry-content', 'yoast_itemprop_description', 20 ); | |
| add_filter( 'genesis_post_title_output', 'yoast_title_link_schema', 20 ); | |
| /** | |
| * We'll use the post info output to add more meta data about the event. |