Remove local remote
git remote remove origin
Squash all git history into one commit
git checkout --orphan some-branch
git commit -m "First commit"
git branch -f master
Remove local remote
git remote remove origin
Squash all git history into one commit
git checkout --orphan some-branch
git commit -m "First commit"
git branch -f master
NOTE if using a custom subdomain like http://project-name.your-domian.com
change publicPath to '/'
module.exports = {
publicPath: '/name-of-your-project/'
}
npm run build
* created using create-react-app
In this tutorial, I'll show you how I deployed a React app—which I created using create-react-app
—to GitHub Pages.
You can visit the deployed app, at https://gitname.github.io/react-gh-pages/.
/* | |
Write a recursive function that converts an integer into a string such that the number is represented in Roman Numerals in the most efficient way. | |
eg, the number 4 could be written as 'IIII' but it's more efficient to use 'IV' since that's a shorter string | |
Assume no number is greater than 4,000 | |
Here are the Roman Numeral equivalents you'll need to know: | |
M=1000, CM=900, D=500, CD=400, |
A group project by Zack Nemeroff & Phil Delong & Jordan Holtkamp & Ryan Novak
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?):
Team strengths & collaboration styles (consider discussing your Pairin qualities here):
Start by opening this URL and reading through the problem https://github.com/turingschool/challenges/blob/master/well_formed_strings.markdown
Make sure you iterate from simple cases to more complex cases If you get done with the example cases, consider the "edge cases", for example: What about an empty "" input? What about just a close ")"? What about too many closes "())"
How well did you stick to your calendar this past week?
Better than last week regarding the project work and Top Talk slides. Still need to direct more attention to the job search.
Do you need to change anything in your calendar for the upcoming week?
Need to reinforce the times set aside for job search and applications.
What wins or appreciations do you have for this past week?
My team completed all the base functionality for the current project (WOOOHOOO!). I appreciate all the hard work our team has put into digging into an unfamiliar code base and finding clever ways to implement new features.