Skip to content

Commit 4988683

Browse files
authored
Merge branch 'master' into master
2 parents c6ffcba + 31b6766 commit 4988683

10 files changed

Lines changed: 21 additions & 12 deletions

File tree

Projects/1-Beginner/Bin2Dec-App.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ Try not to view this until you've developed your own solution:
4242
- [Binary to Decimal converter with plain html, js and css](https://grfreire.github.io/Bin2Dec/)
4343
- [Binary to Decimal converter using Flutter & Dart](https://github.com/israelss/AppIdeasCollection/tree/master/Tier1/Bin2Dec)
4444
- [Live preview built with Flutter for Web](https://bin2dec.web.app/#/)
45+
- [Matrix-like Binary to Decimal converter using Angular](https://github.com/ZangiefWins/MatrixBin2Dec)
46+
- [Live preview on heroku](https://matrix-bin2dec.herokuapp.com/)

Projects/1-Beginner/Calculator-App.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ number.
5353

5454
## Example projects
5555

56+
- [BHMBS - JS-Neumorphic-Calculator](https://barhouum7.github.io/JS-Neumorphic-Calc.github.io/)
57+
- [Javascript iOS Style Calculator](https://codepen.io/ssmkhrj/full/jOWBQqO)
5658
- [Javascript Calculator](https://codepen.io/giana/pen/GJMBEv)
5759
- [React Calculator](https://codepen.io/mjijackson/pen/xOzyGX)
5860
- [Javascript-CALC](https://github.com/x0uter/javascript-calc)
5961
- [Sample Calculator](https://sevlasnog.github.io/sample-calculator)
62+
- [Python Calculator](https://github.com/kana800/Side-Projects/tree/master/1-Beginner/calculator)

Projects/1-Beginner/Calendar-App.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ Style your own calendar according to your requirement
3131
## Example projects
3232

3333
- [Simple calendar](https://medium.com/@nitinpatel_20236/challenge-of-building-a-calendar-with-pure-javascript-a86f1303267d)
34+
- [eCalendar](https://github.com/muzhaqi16/eCalendar)

Projects/1-Beginner/Color-Cycle-App.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ an RGB color specification (e.g. `#000000` color code).
3434

3535
## Useful links and resources
3636

37-
[CSS Color Codes](https://www.quackit.com/css/css_color_codes.cfm)
37+
[CSS Color Codes](https://qhmit.com/css/css_color_codes.cfm)
3838

3939
## Example projects
4040

Projects/1-Beginner/GitHub-Status-App.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,5 @@ request('https://www.githubstatus.com/', { json: true }, (err, res, body) => {
5151

5252
## Example projects
5353

54-
[Peter Luczynski's example](https://peterluczynski.github.io/github-status/)
54+
- [Peter Luczynski's example](https://peterluczynski.github.io/github-status/)
55+
- [Diogo Moreira's example](https://diogomoreira.github.io/github-status/)

Projects/2-Intermediate/Book-Finder-App.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Create an application that will allow users to search for books by entering a qu
66

77
## User Stories
88

9-
- [ ] User can enter a search query into an `input` field
10-
- [ ] User can submit the query. This will call an API that will return an array of books with the corresponding data (**Title**, **Author**, **Published Date**, **Picture**, etc)
11-
- [ ] User can see the list of books appearing on the page
9+
- [ ] User can enter a search query into an `input` field
10+
- [ ] User can submit the query. This will call an API that will return an array of books with the corresponding data (**Title**, **Author**, **Published Date**, **Picture**, etc)
11+
- [ ] User can see the list of books appearing on the page
1212

1313
## Bonus features
1414

15-
- [ ] For each item in the list add a link that will send the User to an external site which has more information about the book
16-
- [ ] Implement a Responsive Design
17-
- [ ] Add loading animations
15+
- [ ] For each item in the list add a link that will send the User to an external site which has more information about the book
16+
- [ ] Implement a Responsive Design
17+
- [ ] Add loading animations
1818

1919
## Useful links and resources
2020

@@ -23,3 +23,4 @@ You can use the [Google Books API](https://developers.google.com/books/docs/over
2323
## Example projects
2424

2525
[Book Finder](https://book-finder-by-deyl.netlify.com/)
26+
[Search Books](https://booksure.netlify.app/)

Projects/2-Intermediate/Card-Memory-Game.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ When the User clicks on the 2nd card:
3030
- [Flip - card memory game](https://codepen.io/zerospree/full/bNWbvW)
3131
- [Memory Game](https://jdmedlock.github.io/memorygame/)
3232
- [SMB3 Memory Card Game](https://codepen.io/hexagoncircle/full/OXBJxV)
33+
- [BHMBS - Memory Game](https://barhouum7.github.io/JS-MemoryGame.github.io/)

Projects/2-Intermediate/GitHub-Profiles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ To get data from API you can check [fetch API](https://developer.mozilla.org/en-
2727

2828
## Example projects
2929

30-
- [GitHub profiles](https://chaharshivam.github.io/github-profiles/?#) ([repo](https://github.com/chaharshivam/github-profiles))
30+
- [GitHub profiles](https://github-profiles.netlify.app/) ([repo](https://github.com/GabrielNBDS/GitHub-Profiles))
3131

32-
- [github-profile-search pen](https://codepen.io/guerra08/pen/GRJXVbq) ([repo](https://codepen.io/guerra08/pen/GRJXVbq))
32+
- [github-profile-search](https://github-profile-search-272901.web.app/) ([repo](https://github.com/guerra08/github-profile-search))

Projects/2-Intermediate/Password-Generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Generate passwords based on certain characteristics selected by the user.
1313

1414
## Bonus features
1515

16-
- [ ] Use can see the password strength
16+
- [ ] User can see the password strength
1717

1818
## Useful links and resources
1919

Projects/3-Advanced/Calorie-Counter-App.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ data structure other than an array for faster searching.
4343

4444
## Useful links and resources
4545

46-
[MyPyramid Food Raw Data](https://catalog.data.gov/dataset/mypyramid-food-raw-data-f9ed6)
46+
[MyPyramid Food Raw Data](https://catalog.data.gov/dataset/mypyramid-food-raw-data)
4747

4848
## Example projects
4949

0 commit comments

Comments
 (0)