| constituent | symbol | sector |
|---|---|---|
| Apple Inc. | APPL | Information Technology |
| Microsoft Corp | MSFT | Information Technology |
| Exxon Mobil Corp | XOM | Energy |
| Johnson & Johnson | JNJ | Health Care |
| Berkshire Hathaway B | BRK.B | Financials |
| JP Morgan Chase & Co | JPM | Financials |
| Amazon.com Inc | AMZN | Consumer Discretionary |
| General Electric Co | GE | Industrials |
I hereby claim:
- I am tgoldenberg on github.
- I am tomgoldenberg (https://keybase.io/tomgoldenberg) on keybase.
- I have a public key whose fingerprint is 43C9 58A8 9230 7302 871F 08B8 A9EA 966B 7A17 E5D5
To claim this, I am signing this object:
I hereby claim:
- I am tgoldenberg on github.
- I am tomgoldenberg (https://keybase.io/tomgoldenberg) on keybase.
- I have a public key whose fingerprint is 43C9 58A8 9230 7302 871F 08B8 A9EA 966B 7A17 E5D5
To claim this, I am signing this object:
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
| Meteor.methods({ | |
| 'getMarkdown': (filename) => { | |
| let parts = filename.split('/'); | |
| let name = parts[parts.length-1]; | |
| let file; | |
| if (process.env.NODE_ENV == 'development'){ | |
| let path = process.cwd().split('.')[0]; | |
| file = fs.readFileSync(`${path}private/${filename}`, 'utf8'); | |
| } else { | |
| file = fs.readFileSync(`/home/tom/build-react-native/${name}`, 'utf8'); |
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
| map $http_upgrade $connection_upgrade { | |
| default upgrade; | |
| '' close; | |
| } | |
| server { | |
| listen 443; | |
| ssl on; | |
| ssl_certificate /etc/ssl/agolo_com.crt; | |
| ssl_certificate_key /etc/ssl/agolo_com.key; |
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
| # excerpt from deploy script | |
| METEORVERSION="$(meteor --version)" | |
| GITVERSION="$(git --version)" | |
| YARNVERSION="$(yarn --version)" | |
| NODEJSVERSION="$(node --version)" | |
| echo "${GITVERSION}" | |
| echo "${METEORVERSION}" | |
| echo "${YARNVERSION}" | |
| echo "${NODEJSVERSION}" | |
| if [ "$NODEJSVERSION" != "v6.0.0" ]; then |
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
| main.html | |
| main.js | |
| app | |
| - splash | |
| - actions | |
| - components | |
| - containers | |
| - reducers | |
| - constants | |
| - accounts |
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
| main.html | |
| main.js | |
| app | |
| - actions | |
| - components | |
| - containers | |
| - constants | |
| package.json |
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 { flatten } from 'underscore'; | |
| export const SolidColors = [ | |
| 'red', | |
| 'deepPurple', | |
| 'indigo', | |
| 'teal', | |
| 'orange', | |
| 'blueGrey', | |
| 'purple', |
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
| export default Colors = { | |
| brandPrimary: '#3A7BD2', | |
| brandPrimaryDark: '#215191', | |
| inactive: '#EBEEF5', | |
| highlight: '#FFFF8D', | |
| copyLight: "#bbb", | |
| copyMedium: '#777', | |
| copyDark: '#000', | |
| red: '#C62828', | |
| deepPurple: '#673AB7', |