Skip to content

Instantly share code, notes, and snippets.

View antonderegt's full-sized avatar

Anton de Regt antonderegt

  • ABN AMRO
  • The Netherlands
View GitHub Profile
@antonderegt
antonderegt / firebaseSecrets.js
Last active April 25, 2018 22:27
Step 4: Connect to Firebase /src/firebaseSecrets.js
module.exports = {
apiKey: "your-api-key",
projectId: "your-project-id",
authDomain: "your-project-id.firebaseapp.com",
databaseURL: "https://your-project-id.firebaseio.com"
};
@antonderegt
antonderegt / config.js
Created April 25, 2018 02:21
Step 4: Connect to Firebase /src/config.js
import firebase from 'firebase'
import firebaseSecrets from './firebaseSecrets'
const config = {
apiKey: firebaseSecrets.apiKey,
authDomain: firebaseSecrets.authDomain,
databaseURL: firebaseSecrets.databaseURL,
projectId: firebaseSecrets.projectId
};
@antonderegt
antonderegt / App.jsx
Created April 25, 2018 01:37
/src/App.js
import React, { Component } from 'react';
import ReactTable from 'react-table'
import 'react-table/react-table.css'
class App extends Component {
constructor(props) {
super(props)
this.state = {
users: [
{
@antonderegt
antonderegt / App.jsx
Last active April 25, 2018 01:20
src/App.js
import React, { Component } from 'react';
class App extends Component {
render() {
return (
<div style={style}>
<div>
<h1>Export Demo</h1>
<button>Export to Excel</button>
<table>
@antonderegt
antonderegt / data_baseball_3.csv
Created February 25, 2018 22:51
Displaying the batting data for the last ten years
yearID stint G AB R H 2B 3B HR RBI SB CS BB SO IBB HBP SH SF GIDP
145 2016 1620 70451 165561 21744 42276 8254 873 5610 20745 2537 1001 15088 38982 932 1651 1025 1214 3719
144 2015 1630 70534 165488 20647 42106 8242 939 4909 19650 2505 1064 14073 37446 951 1602 1200 1232 3739
143 2014 1558 69564 165614 19761 41595 8137 849 4186 18745 2764 1035 14020 37441 985 1652 1343 1277 3609
142 2013 1522 69268 166070 20255 42093 8222 772 4661 19271 2693 1007 14640 36710 1018 1536 1383 1219 3732
141 2012 1539 69519 165251 21017 42063 8261 927 4934 19998 3229 1136 14709 36426 1055 1494 1479 1223 3614
140 2011 1485 68729 165705 20808 42267 8399 898 4552 19804 3279 1261 15018 34488 1231 1554 1667 1274 3523
139 2010 1464 68921 165353 21308 42554 8486 866 4613 20288 2959 1128 15778 34306 1216 1549 1544 1301 3719
138 2009 1514 69038 165849 22419 43524 8737 949 5042 21364 2970 1133 16620 33591 1179 1590 1635 1366 3796
137 2008 1481 69565 166714 22585 43972 9014 886 4878 21541 2799 1035 16337 32884 1310 1672 1526 1365 3883
@antonderegt
antonderegt / data_baseball_2.csv
Last active February 25, 2018 22:44
Getting some metrics on the homeruns, number of games, runs batted in and the number of strikeouts
HR G RBI SO
count 102816 102816 102392 94978
mean 2.813599 51.343439 17.003975 20.529712
std 6.304919 47.121658 26.352011 28.328542
min 0 1 0 0
25% 0 13 0 1
50% 0 34 3 9
75% 2 80 24 29
max 73 165 191 223
@antonderegt
antonderegt / data_baseball_1.csv
Last active February 25, 2018 22:41
Printing the first five entries
playerID yearID stint teamID G AB R H 2B RBI SB CS BB SO
abercda01 1871 1 TRO 1 4 0 0 0 0 0 0 0 0
addybo01 1871 1 RC1 25 118 30 32 6 13 8 1 4 0
allisar01 1871 1 CL1 29 137 28 40 4 19 3 1 2 5
allisdo01 1871 1 WS3 27 133 28 44 10 27 1 1 0 2
ansonca01 1871 1 RC1 25 120 29 39 11 16 6 2 2 1