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
Year | HousingNominal(%) | CPI(%) | HousingReal(%) | S&P500Nominal(%) | S&P500Real(%) | |
---|---|---|---|---|---|---|
1942 | 3.00 | 9.00 | -5.50 | 20.34 | 10.40 | |
1943 | 11.00 | 3.00 | 7.77 | 25.90 | 22.23 | |
1944 | 17.00 | 2.30 | 14.37 | 19.03 | 16.35 | |
1945 | 12.00 | 2.20 | 9.59 | 36.44 | 33.50 | |
1946 | 24.00 | 8.50 | 14.29 | -8.07 | -15.27 | |
1947 | 21.00 | 14.40 | 5.77 | 5.71 | -7.60 | |
1948 | 2.00 | 7.70 | -5.29 | 5.50 | -2.04 | |
1949 | 0.00 | -1.00 | 1.01 | 18.30 | 19.49 | |
1950 | 4.00 | 1.30 | 2.67 | 30.81 | 29.13 |
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
[alias] | |
save = "!f() { commit_message=$(bash ~/dev/scripts/git_save.sh); if [ \"$commit_message\" != \"No unstaged changes to commit.\" ] && [ -n \"$commit_message\" ]; then git add . && echo \"$commit_message\" | xargs -I {} git commit -m \"{}\" && git push; else echo \"No commit message generated\"; fi; }; f" | |
message = !bash ~/dev/scripts/git_save.sh |
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
package com.telltrail; | |
import android.app.Application; | |
import com.facebook.react.ReactApplication; | |
import com.facebook.react.ReactNativeHost; | |
import com.facebook.react.ReactPackage; | |
import com.facebook.react.shell.MainReactPackage; | |
import com.facebook.soloader.SoLoader; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Simple Map</title> | |
<meta name="viewport" content="initial-scale=1.0"> | |
<meta charset="utf-8"> | |
<style> | |
/* Always set the map height explicitly to define the size of the div | |
* element that contains the map. */ | |
#map { |
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 React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View | |
} from 'react-native'; | |
export default class geolocation_test extends Component { |