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 Foundation | |
| extension String | |
| { | |
| var length: Int { | |
| get { | |
| return countElements(self) | |
| } | |
| } | |
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
| exports.up = function(knex, Promise) { | |
| return Promise.all([ | |
| knex.schema.createTable("users", function(table) { | |
| // Knex Addons, ID and Timestamps | |
| table.increments() | |
| table.timestamps() |
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": "office", | |
| "version": "0.1.0", | |
| "private": true, | |
| "devDependencies": { | |
| "autoprefixer": "6.4.1", | |
| "babel-core": "6.14.0", | |
| "babel-eslint": "6.1.2", | |
| "babel-jest": "15.0.0", | |
| "babel-loader": "6.2.5", |
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
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 18, | |
| // font family with optional fallbacks | |
| fontFamily: 'PragmataPro, "DejaVu Sans Mono", "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.75)', |
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
| Hi Connor, | |
| Thank you for applying to the Engineering Practicum Intern, Summer 2017 role. We carefully reviewed your background and experience, and decided not to proceed with your application. | |
| While we’re not able to share any specific feedback, we’re excited about your passion for computer science, and we look forward to hearing from you again in the future. Here are a few recommendations in the meantime to continue building your resume: | |
| • Continue to keep your grades up! This is the best way to show your academic commitment. | |
| • Continue to challenge yourself in your CS curriculum to build your programming skills. | |
| • Get involved outside the classroom in open source projects, clubs, leadership roles, research, creating your own applications, and joining the broader CS community. |
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
| GOOGLE_CERT=-----BEGIN CERTIFICATE-----\nMIIDJjCCAg6gAwIBAgIIfHLQYlT8qIowDQYJKoZIhvcNAQEFBQAwNjE0MDIGA1UE\nAxMrZmVkZXJhdGVkLXNpZ25vbi5zeXN0ZW0uZ3NlcnZpY2VhY2NvdW50LmNvbTAe\nFw0xNjEwMTkxMTQzMzRaFw0xNjEwMjIxMjEzMzRaMDYxNDAyBgNVBAMTK2ZlZGVy\nYXRlZC1zaWdub24uc3lzdGVtLmdzZXJ2aWNlYWNjb3VudC5jb20wggEiMA0GCSqG\nSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCw6V1LY9VLT6sLjykDB1zoxgPXdxJy8Cce\nZDLO8kgiZ1b8TYlqwcg7JnPLhf1HveZt7CJETTnPHMqsKrhbXSoC2ZIM6uawbU9m\n+1RhL3KcUPCJ0yzw1+Dj5/QMCzOVRvQUSeUhmG350bIWjrQDKW/8oWT6WS4ktmbe\nT+DyftyLzMXPm8Gue+MPBCVNmA2Gzcvki43sFm2uYJyac13om35qy9dyTh3ZyXjw\nfBQP82M7blqRBNtYXukpE4XBUKo11LcDz8Nr8o8pA3O+Sh/f+d6H0BzULCcfDWYb\nGDEd+KyqO1V43y66yTt8nvOWRiUYVk1UEX8KoYFPGdz5XlSLVaGlAgMBAAGjODA2\nMAwGA1UdEwEB/wQCMAAwDgYDVR0PAQH/BAQDAgeAMBYGA1UdJQEB/wQMMAoGCCsG\nAQUFBwMCMA0GCSqGSIb3DQEBBQUAA4IBAQBS1aiELtf7SRA9u/6my8huMPMYlh8X\nY8InJ8Dz7bUqL9wCzTK77gGs+k9ntOrL8msQBem8JP3Y76MhkawMStcHd//waA38\n/w/NE11GNrhFRPxik4C3A5cPgCtI+wTY+9q8nlHCw75ZFKrwUCVTHIaYB0TSa7rT\nGJC50nGlHuTXJ9JbMs18NxUivaoGk4lt8P/jZwB+415HVfHylJzavuNjOEU |
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 GoogleLogin from "react-google-login" | |
| import { processLogin } from "../../utils/login-utils.js" | |
| import "./Login.scss" | |
| import logo from "../../images/logo.svg" | |
| type Props = { | |
| onLoginSuccess: func, | |
| onLoginFailure: func, |
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 { connect } from 'react-redux' | |
| import Login from "../../components/Login/Login" | |
| import { loginRequest, loginSuccess, loginError } from "../../redux/ducks/Login" | |
| import { onLoginRequest, onLoginSuccess, onLoginFailure } from "../../utils/login-utils" | |
| // Google Client Information |
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 { connect } from 'react-redux' | |
| import App from "../../components/App/App" | |
| import LoginContainer from "../../containers/Login/LoginContainer" | |
| import { loginSuccess } from "../../redux/ducks/Login" | |
| import Router from 'react-router/BrowserRouter' | |
| import { Provider } from "react-redux" |
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 { connect } from 'react-redux' | |
| import App from "../../components/App/App" | |
| import LoginContainer from "../../containers/Login/LoginContainer" | |
| import { loginSuccess } from "../../redux/ducks/Login" | |
| import Router from 'react-router/BrowserRouter' | |
| import { Provider } from "react-redux" |