This file contains 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
const axios = require('axios'); | |
const githubURL = 'https://api.github.com/users/'; | |
const jackGithubUrl = githubURL + 'jackhowa'; | |
const mattGithubUrl = githubURL + 'mattzuzolo'; | |
getDetails(); |
This file contains 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
const axios = require('axios'); | |
const baseURL = 'https://rest.coinapi.io'; | |
const apiKey = 'X'; | |
const bitcoinPath = '/v1/exchangerate/BTC'; | |
getDetails(); |
This file contains 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
// React - Bind 'this' to a Class Method | |
class MyComponent extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
visibility: false | |
}; | |
// change code below this line | |
this.toggleVisibility = this.toggleVisibility.bind(this) | |
// change code above this line |
This file contains 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
this is for the free code camp course on Redux https://learn.freecodecamp.org/front-end-libraries/redux/create-a-redux-store |
This file contains 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
# see available devices for the simulator | |
xcrun simctl list devices | |
react-native run-ios --simulator="iPhone 10" |
This file contains 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
want it to be similar to this https://jsfiddle.net/boygirl/z00r6h45/ |
This file contains 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
d3 on fcc won't let be me |
This file contains 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
this is notes for the fcc course |
This file contains 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
// via https://snack.expo.io/Sydk-FD_W | |
import React from 'react'; | |
import { ScrollView, Text, View, StyleSheet, Button } from 'react-native'; | |
import { StackNavigator } from 'react-navigation'; // 1.0.0-beta.11 | |
// import { Constants } from 'expo'; | |
const CustomHeader = ({ title, subtitle }) => ( | |
<View style={styles.header}> | |
<Text style={styles.title}>{title}</Text> |
This file contains 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 React from 'react'; | |
import { createStackNavigator, createBottomTabNavigator, createMaterialTopTabNavigator, TabBarTop, TabNavigator } from 'react-navigation'; | |
import { Text } from 'react-native'; | |
import Welcome from './screens/Welcome'; | |
import Loading from './screens/Loading'; | |
import Offerings from './screens/Offerings'; | |
import CreateAccount from './screens/signup/CreateAccount'; | |
import ReferInformationScreen from './screens/signup/ReferInformationScreen'; | |
import NetWorth from './screens/signup/NetWorth'; | |
import EmploymentStatus from './screens/signup/EmploymentStatus'; |