- As a user, I should be able to view a demo account
- As a user, I should be able to create an account
- As a user, I should be able to login to my existing account if I enter the proper credentials
- As a user, I should be able to create household members, give them names, and select their corresponding colors.
- As a user, I should be able to create chores, give them names, assign point values, and specify the number of times they should be completed each week.
- As a user, I should be able to update and delete chores.
- As a user, I should be able to edit household members' names and colors. I should also be able to delete household members. As a user, I should be able to check off who as completed a chore and see that member's score incremented.
- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
First run ...
ssh-keygen -t rsa -b 4096 -C 'email@domain.com'... from terminal, then run ...
eval "$(ssh-agent -s)"| // NOTE: MySQL does not support transactional DDL (https://dev.mysql.com/doc/internals/en/transactions-notes-on-ddl-and-normal-transaction.html) | |
| // You should use this with a (cool) DBMS such as PostgreSQL. | |
| module.exports = { | |
| up: (queryInterface, Sequelize) => { | |
| return queryInterface.sequelize.transaction((t) => { | |
| return Promise.all([ | |
| queryInterface.addColumn('table_name', 'column_name1', { | |
| type: Sequelize.STRING | |
| }, { transaction: t }), |
I've been using ngx-charts when building my Angular apps and its definitely one of the best free charting frameworks available for Angular (that I've tried at least). However, one thing I noticed is the lack of documentation or guides when it comes to creating or even using custom charts. Therefore I decided to create a simple walkthrough on how to use the bar/line combo-chart avaiable as one of their demos.
StackBlitz Link: You can refer to this link to see the final product/overview of how to use the custom chart in your project.
NOTICE: This guide will help you set ssh keys for GitHub and GitLab. However, this is not going to change your commit
user.nameoruser.email. If you need to change those for specific repositories, just run the following commands while in your repository:
git config user.name "Your Name Here"
git config user.email your@email.comFor more info, see this answer. Also, keep in mind this only changes the
.gitfolder inside your repository which never gets added/committed/pushed/uploaded.
I recently had to manage two ssh keys (one for Github and one for Gitlab). I did some research to find the best solution. I am justing putting the pieces together here.