- Get price for one stock symbol
- Current day, last 150 days
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
{ | |
"name": "example", | |
"version": "0.1.0", | |
"main": "index.js", | |
"license": "UNLICENSED", | |
"dependencies": { | |
"browser-sync": "2.23.6" | |
}, | |
"scripts": { | |
"start": "browser-sync start --server --files '**/*.css, **/*.html, **/*.js' --directory --port 7777", |
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 strict'; | |
const fetch = require('node-fetch'); | |
const moment = require('moment'); | |
const QUANDL_API_BASE_URL = 'https://www.quandl.com/api/v3'; | |
const QUANDL_API_KEY = process.env.QUANDL_API_KEY; | |
/* | |
checkStockPrice() |
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
/* Make main column full width */ | |
main > div:nth-child(1) { | |
max-width: none; | |
} | |
/* Hide right sidebar */ | |
main > div:nth-child(2) { | |
display: none; | |
} |
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
/* | |
URL pattern: news.google.com | |
---------------------------- | |
*/ | |
/* Make main column full width */ | |
main > div:nth-child(1) { | |
max-width: none; | |
} |
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
apm install autoclose-html busy-signal flatwhite-syntax highlight-selected intentions language-babel language-docker language-groovy linter linter-eslint linter-ui-default minimap minimap-highlight-selected monokai-seti pigments seti-ui language-graphql |
A Dockerfile
is a simple set of instructions that describe how to run an application on a specific operating system (such as Ubuntu). The Dockerfile
allows you to package up the following items into a self-contained package called a container:
- A base image of the preferred operating system (using
FROM
) - Your application code
- Dependencies
- Other files
How to install Khronos Group's COLLADA to glTF CLI converter on macOS:
From your Repos
directory, or wherever you keep your local repos:
git clone --recursive https://github.com/KhronosGroup/COLLADA2GLTF.git