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
| ✔ Parse Configuration | |
| graphql-starter-api-1 | ❯ Generate outputs | |
| graphql-starter-api-1 | ❯ Generate to ./src/generated/graphql/index.ts | |
| graphql-starter-api-1 | ✔ Load GraphQL schemas | |
| graphql-starter-api-1 | ✔ Load GraphQL documents | |
| ✔ Parse Configuration | |
| graphql-starter-api-1 | ✔ Generate outputs | |
| graphql-starter-api-1 | npm notice | |
| graphql-starter-api-1 | npm notice New minor version of npm available! 10.1.0 -> 10.2.1 | |
| graphql-starter-api-1 | npm notice Changelog: https://github.com/npm/cli/releases/tag/v10.2.1 |
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
| const marginProfiles = [ | |
| { | |
| name: "Audi Digital Program", | |
| id: "34857345AHB45F" | |
| }, | |
| { | |
| name: "BMW Shift Program", | |
| id: "34857345AHB45F" | |
| }, |
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
| debug1: client_input_channel_open: ctype forwarded-tcpip rchan 3 win 2097152 max 32768 | |
| debug1: client_request_forwarded_tcpip: listen localhost port 4000, originator 127.0.0.1 port 55226 | |
| debug1: connect_next: host dev.local.purecars.com ([127.0.0.1]:3888) in progress, fd=9 | |
| debug1: channel 1: new [127.0.0.1] | |
| debug1: confirm forwarded-tcpip | |
| debug1: channel 1: connected to dev.local.purecars.com port 3888 | |
| debug1: client_input_channel_open: ctype forwarded-tcpip rchan 4 win 2097152 max 32768 | |
| debug1: client_request_forwarded_tcpip: listen localhost port 4000, originator 127.0.0.1 port 55227 | |
| debug1: connect_next: host dev.local.purecars.com ([127.0.0.1]:3888) in progress, fd=11 | |
| debug1: channel 2: new [127.0.0.1] |
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
| { | |
| "BudgetStrategy":0, | |
| "AccountId":"cd07892e-e3e3-430e-88ca-e7ce4e5d85cd", | |
| "Name":"account", | |
| "TotalBudget":14, | |
| "BudgetNodes":[ | |
| { | |
| "InflateByPercent":0, | |
| "Name":"budget-Variable", | |
| "IsNotShared":false, |
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
| const path = require("path") | |
| const HtmlWebpackPlugin = require("html-webpack-plugin") | |
| const CompressionPlugin = require("compression-webpack-plugin") | |
| const webpack = require("webpack") | |
| const UglifyJsPlugin = require("uglifyjs-webpack-plugin") | |
| // Bundle analyzer plugins | |
| var WebpackBundleSizeAnalyzerPlugin = require("webpack-bundle-size-analyzer") | |
| .WebpackBundleSizeAnalyzerPlugin | |
| const BundleAnalyzerPlugin = require("webpack-bundle-analyzer") |
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
| Incident Identifier: ED866DAE-7AE3-410A-BE91-E0A3BF25AA56 | |
| CrashReporter Key: 468954534e0372c00477339de47964245c66e7ce | |
| Hardware Model: iPhone9,4 | |
| Process: Exponent [920] | |
| Path: /private/var/containers/Bundle/Application/D85C7D55-8E1D-4F73-B87A-65E65A455DE7/Exponent.app/Exponent | |
| Identifier: host.exp.Exponent | |
| Version: 2.1.3.1010989 (2.1.3) | |
| Code Type: ARM-64 (Native) | |
| Role: Foreground | |
| Parent Process: launchd [1] |
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
| Incident Identifier: BE2618C7-790F-41E6-BC25-3DDC5E7405C6 | |
| CrashReporter Key: 468954534e0372c00477339de47964245c66e7ce | |
| Hardware Model: iPhone9,4 | |
| Process: Exponent [926] | |
| Path: /private/var/containers/Bundle/Application/D85C7D55-8E1D-4F73-B87A-65E65A455DE7/Exponent.app/Exponent | |
| Identifier: host.exp.Exponent | |
| Version: 2.1.3.1010989 (2.1.3) | |
| Code Type: ARM-64 (Native) | |
| Role: Foreground | |
| Parent Process: launchd [1] |
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": "truscore-frontend", | |
| "version": "0.1.0", | |
| "private": true, | |
| "dependencies": { | |
| "axios": "^0.16.1", | |
| "babel-plugin-add-react-displayname": "^0.0.4", | |
| "babel-plugin-glamorous-displayname": "^2.0.0", | |
| "babel-plugin-transform-decorators-legacy": "^1.3.4", | |
| "babel-plugin-transform-runtime": "^6.23.0", |
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 glamorous from "glamorous" | |
| import { connect } from "react-redux" | |
| import { getSelectedUser } from "../../redux/ducks/User" | |
| import { withRouter } from "react-router-dom" | |
| class UserShow extends Component { | |
| constructor(props) { | |
| super(props) |
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
| Short tweets aren't great for explaining myself. I respect the opinions of the article's writer and those who share it, but wanted to have a dialoge about it without sounding curt/blunt due to length restrictions | |
| I was just a little taken aback when the article linked to another article discussing discrimination simply to refute it using an argument that fell somewhere around "Apple does it, and they're pretty successful." (Appeal to Authority) | |
| He then later refers back to the articles listed as examples and says that if you follow that advice, you may end up with mediocrity. | |
| > "So, be careful about taking the median startup advice. You might end up with the median outcome" | |
| Although possibly not explicit, it is fairly concerning to say the argument against white-boarding (which heavily comes from its partial place in enforcing systematic oppression of the less fortunate) will ultimately result in mediocrity. |
NewerOlder