Skip to content

Instantly share code, notes, and snippets.

View rockchalkwushock's full-sized avatar
🦮
Walking Tommie

Cody Brunner rockchalkwushock

🦮
Walking Tommie
View GitHub Profile
@rockchalkwushock
rockchalkwushock / gist:5309a5666cc4784e3c7569c71f47868f
Last active August 26, 2016 04:41
Thinkful Capstone #1: API Hack
The purpose of the app will be for the user to find local breweries in there area by searching the city or zipcode they are residing in.
The basic app will include the following data:
1) Location (Map & physical address)
2) Hours of Operation (open/closed now visual UIX)
3) Contact (Phone number & website)
Secondary items will be to show the user the following data:
1) Public Rating
1) Seasonal Beers on-tap
2) Top voted beers
3) If their beers are available for purchase at liquor stores.
@rockchalkwushock
rockchalkwushock / OneStop - Financial Web App
Last active October 9, 2016 23:00
Thinkful Capstone #2: Fullstack with Node.js
The purpose of this app is to provide the user with one location to see the balances of all financial accounts (U.S. only).
User Story Line
As a user, I should be able to sign up for a dashboard account.
As a user, I should be able to securely login to my dashboard account.
As a user, I should be able to add financial accounts to my dashboard.
As a user, I should be able to view the balances of the financial accounts added to my dashboard.
As a user, I should be able to update my credentials to the financial accounts on my dashboard.
As a user, I should be able to remove a financial account from my dashboard.
@rockchalkwushock
rockchalkwushock / Weather App
Created October 18, 2016 14:28
Thinkful Capstone #3: Web-App with React Front-End Framework
This app will use the WunderGround API to present weather conditions to the user.
User Story Line
1. As a user, I should be able to view the current temperature, today's high & low, with the humidity and wind speed/direction.
2. As a user, I should be able to search the conditions of another city.
3. As a user, I should be able to view the 5 day forecast.
4. As a user, I should be able to view the current radar in my area.
5. As a user, I should be able to see extended weather data.
6. As a user, I should be able to ADD up 3 cities to my dashboard to follow.
User Story
1. User should be able to signup.
2. User should be able to login.
3. User should be able to see list of todos at dashboard or modal with instructions.
4. User should be able to add a todo to the list.
5. User should be able to update a todo in the list.
6. User should be able to check a todo as completed.
7. User should be able to remove a todo.
8. User should be able to filter the todo list from set of options: (completed, priority, date).
9. User should be able to logout of appliation.
@rockchalkwushock
rockchalkwushock / props_blog_post.js
Last active February 26, 2017 04:20
Code for hash node blog post
// Home.js Component
import React, { Component } from 'react';
import { browserHistory } from 'react-router/es';
import { connect } from 'react-redux/es';
import { Card, Image, Loader } from '../commons';
import { fetchCategory } from '../modules';
@connect(
state => ({
photos: state.carousel
@rockchalkwushock
rockchalkwushock / insurance.md
Last active August 21, 2017 12:47
Insurance for when your system crashes & so do your backups...

Insurance... in case shit happens!

This is what you should follow should your system crash & your external hard drive with your backups on it fail at the same time!

First scream FML!

Now proceed...

1. Apple

@rockchalkwushock
rockchalkwushock / badges.md
Last active August 22, 2017 22:03
List of badges for projects

List of Badges for inserting in OSS Projects

Replace <project-name> & <link> with current project name & link for either repository or corresponding service.

npm-version npm-license npm-downloads

Travis CircleCI

@rockchalkwushock
rockchalkwushock / .bash_profile
Last active May 31, 2017 04:33
Temporary .bash_profile for tutorials.
##############################################################
# THIS FILE IS JUST A TEMPORARY CONFIGURATION FOR YOU TO USE IF
# YOU ARE PARTICIPATING IN MY TUTORIALS.
# ---------------------------------------------------------------
# SETTINGS NOT HERE ARE AS FOLLOWS:
# BACKGROUND COLOR: LEAD(MacBook Air) TUNGSTEN(Mac-Mini)
# DEFAULT_FONT_COLOR: BANANA (tput setaf 185) closest I can get
# BOLD_FONT_COLOR: ORCHID
# SELECTION_COLOR: CARNATION
# CURSOR: BANANA block & blinking
@rockchalkwushock
rockchalkwushock / explanation.js
Created June 9, 2017 05:29
Explanation of code for Rhonda
// The createNote conroller
// @see https://github.com/rockchalkwushock/note_dashboard/blob/master/api/modules/note/controller.js#L49
export const createNote = async (req, res, next) => {
const filteredBody = filterBody(req.body, config.WHITELIST.notes.create)
try {
const note = await Note.createNote(filteredBody, req.user._id)
return res.status(HTTPStatus.CREATED).json(note)
} catch (e) {
e.status = HTTPStatus.BAD_REQUEST
/* istanbul ignore next */
@rockchalkwushock
rockchalkwushock / yarnGlobalBinariesSetup.md
Last active August 19, 2017 00:14
Instructions for setting up global binaries for yarn.

How to Setup yarn global

Many thanks to the info on setting up npm in this article.

  1. Install nvm
brew install nvm