Skip to content

Instantly share code, notes, and snippets.

View spaceplesiosaur's full-sized avatar

Allison McCarthy spaceplesiosaur

  • Boulder, CO
View GitHub Profile
https://drive.google.com/file/d/1ieovkpMx1PQP1UxiLDKMdqMecuSTli-L/view?usp=drivesdk

Intro

Need: notes on Shallow, Mount, and wrapper.instance()

Make sure you import the functions!

`import React from 'react'; import { shallow } from 'enzyme'; import { Provider } from 'react-redux'; import { getDataFetch } from '../../util/apiCalls.js';

` import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { createStore } from 'redux'; import { composeWithDevTools } from 'redux-devtools-extension'; import rootReducer from './reducers'; import './base.scss'; import App from './containers/App/App';

  1. This is what goes in index.js import React from 'react'; import ReactDOM from 'react-dom'; import './base.scss'; import App from './containers/App/App'; import { Provider } from 'react-redux' import { createStore } from 'redux' import { composeWithDevTools } from 'redux-devtools-extension'; import { rootReducer } from './reducers/index.js'

DTR Memo

Project: Pallette Picker

Group Member Names:

Allie, Consuelo

Goals and Expectations for the Project

(What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):

What is one command that you'll incorporate into your daily workflow and why?

I make a lot of articulations on branches as I'm going, so I might start stashing those instead of making new random branches with then on it.

How does rebasing work compared to a merge workflow?

From my understanding, a rebase takes commits from a branch 1 by 1 and then attaches them to a different commit in chronological order, but giving them new identifiers and timestamps. I believe a merge sort of mushes all of the commits together, going by timestamp.

Why would we ever use git stash?

DTR Memo

Ballroom Beats

Group Member Names:

Allie, Consuelo, Allison, John

Goals and Expectations for the Project

(What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):

Meetings with Tracey every 2 weeks starting June 3.

Things they will be assessing:

  • They will be assessing fit and soft skills as much as technical skills. Attitude, how you take critical feedback. They will probably be looking for that
  • They will be looking for communication gaps - did you keep them abreast of your timelines?

Things to ask:

Make a postgres DB

From anywhere in your terminal, type createdb database_name. Postgres managed to claim this command word before anyone else did.