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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/frankg/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="robbyrussell" |
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
########################################################### | |
## CUSTOM ZSH CONFIG FOR FRANKG | |
## ALIASES | |
## EDITOR | |
alias vs='code' | |
## CUSTOM_ZSH | |
CUSTOM_ZSH=~/.zsh_custom/zsh_custom |
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
{ | |
// workbench | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "DesertEx", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.fontAliasing": "antialiased", | |
"workbench.startupEditor": "newUntitledFile", | |
"debug.toolBarLocation": "docked", | |
// file explorer | |
"explorer.openEditors.visible": 0, |
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
[credential] | |
helper = osxkeychain | |
useHttpPath = true | |
# | |
# GIT CONFIG FILE` | |
# | |
## GATHER FROM ONLINE: https://goo.gl/2knYDc |
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
/* return highest salary, employee name, deparment name for each department */ | |
/* | |
+----------------------+ | |
| Tables_in_employees | | |
+----------------------+ | |
| current_dept_emp | | |
| departments | |
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 { MOCK_URL } from "../mock/config.json"; | |
const API_URL = MOCK_URL | |
? MOCK_URL | |
: `https://api.github.com/search/repositories?q=stars:>1+language:javascript&sort=stars&order=desc&type=Repositories`; | |
... |
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
{ | |
"MOCK_URL": "http://localhost:3333/search/repositories" | |
} |
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, { Component } from "react"; | |
import axios from "axios"; | |
import { Table, Pane, Spinner } from "evergreen-ui"; | |
const Repo = ({ repo, index }) => ( | |
<Table.Row key={index} isSelectable onSelect={() => alert(repo.name)}> | |
<Table.TextCell>{index + 1}</Table.TextCell> | |
<Table.TextCell flexBasis="25vw"> | |
<span className="repo-name">{repo.name}</span> | |
</Table.TextCell> |
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, { Component } from "react"; | |
import PropTypes from "prop-types"; | |
import axios from "axios"; | |
const Repo = ({ repo, index }) => ( | |
<tr> | |
<td>{index + 1}</td> | |
<td className="repo-name">{repo.name}</td> | |
<td>{repo.stargazers_count} Stars</td> | |
<style jsx>{` |
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
<script> | |
var GoogleAuth; | |
var SCOPE = "https://www.googleapis.com/auth/youtube.force-ssl"; | |
function handleClientLoad() { | |
// Load the API's client and auth2 modules. | |
// Call the initClient function after the modules load. | |
gapi.load("client:auth2", initClient); | |
} | |
function initClient() { |
NewerOlder