vault backup: 2025-07-06 20:32:46
This commit is contained in:
@@ -0,0 +1,16 @@
|
|||||||
|
theOrderOfThePhoenix/
|
||||||
|
├── 01-Introductory-Sessions/
|
||||||
|
│ ├── 01-Basics-of-a-Webpage
|
||||||
|
│ │ ├── notes
|
||||||
|
│ │ ├── sample-projects
|
||||||
|
│ ├── 02-...
|
||||||
|
│ └── ...
|
||||||
|
├── 02-Project-Based-Sessions/
|
||||||
|
│ ├── 01-Repository-Pattern/
|
||||||
|
│ │ ├── backend.md
|
||||||
|
│ │ ├── frontend.md
|
||||||
|
│ │ └── notes.md
|
||||||
|
│ ├── 02-...
|
||||||
|
│ └── ...
|
||||||
|
├── Assets
|
||||||
|
└── References.md
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
# [Title of the Session]
|
||||||
|
|
||||||
|
## 📝 Overview
|
||||||
|
|
||||||
|
In this session, we’ll cover the following concepts:
|
||||||
|
- Topic 1
|
||||||
|
- Topic 2
|
||||||
|
- Basic Practice if any
|
||||||
|
## 📚 Topics Covered
|
||||||
|
|
||||||
|
### ✅ HTML
|
||||||
|
> Learn how to structure your webpage using HTML
|
||||||
|
🔗 [w3schools HTML](https://www.w3schools.com/html/default.asp)
|
||||||
|
|
||||||
|
### ✅ CSS
|
||||||
|
> Learn to style the page
|
||||||
|
🔗 [w3schools CSS](https://www.w3schools.com/css/default.asp)
|
||||||
|
|
||||||
|
### ✅ JavaScript
|
||||||
|
> Basics of interaction and scripting
|
||||||
|
🔗 [w3schools JavaScript](https://www.w3schools.com/js/default.asp)
|
||||||
|
|
||||||
|
## 📌 Notes
|
||||||
|
|
||||||
|
> _Collected from various sources including W3Schools and ChatGPT_
|
||||||
|
- Inline notes or summaries
|
||||||
|
- Concept explanations
|
||||||
|
|
||||||
|
## 🧪 Practice
|
||||||
|
|
||||||
|
- [ ] Create a basic webpage using HTML and CSS
|
||||||
|
- [ ] Add a simple JS alert on button click
|
||||||
|
|
||||||
|
## 🙏 Acknowledgments
|
||||||
|
|
||||||
|
Sources:
|
||||||
|
- [w3schools.com](https://www.w3schools.com)
|
||||||
|
- ChatGPT conversations (2025 sessions)
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
# Backend – [Session Title]
|
||||||
|
|
||||||
|
## 🚧 Branching
|
||||||
|
|
||||||
|
- [ ] Create the `feature/[name]` branch from `develop`
|
||||||
|
|
||||||
|
## 🛠️ Task Checklist
|
||||||
|
|
||||||
|
### Create `IRepository` in Domain
|
||||||
|
|
||||||
|
- [ ] Add the interface to `Domain/Framework/Interfaces/Repositories`
|
||||||
|
📂 Suggested Folder: `Domain/Framework/Interfaces/Respositories`
|
||||||
|
```csharp
|
||||||
|
// IRepository.cs
|
||||||
|
|
||||||
|
```
|
||||||
|
### Implement Base Repository
|
||||||
|
|
||||||
|
- [ ] Create `BaseRepository` in `Infrastructure/Framework/Base`
|
||||||
|
- [ ] Implement the interface
|
||||||
|
|
||||||
|
```c#
|
||||||
|
//code
|
||||||
|
```
|
||||||
|
|
||||||
|
## 🧠 Hints & Notes
|
||||||
|
- Use generics for flexibility
|
||||||
|
- Mark methods `virtual` if you're going to override
|
||||||
|
## 🙌 Acknowledgements
|
||||||
|
|
||||||
|
- ChatGPT for snippet refinement and explanations
|
||||||
|
- Microsoft Docs for Entity Framework patterns
|
||||||
|
|
||||||
|
🔍 References
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
---
|
---
|
||||||
### 🔐 Account & Authentication
|
### 🔐 Account & Authentication
|
||||||
- [ ] Use Axios request interceptor to:
|
- [ ] Use Axios request interceptor to:
|
||||||
- [ ] Attach token to requests
|
- [ ] Attach token to requests
|
||||||
- [ ] Handle logout logic
|
- [ ] Handle logout logic
|
||||||
---
|
---
|
||||||
### API
|
### API
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
# Fix
|
||||||
|
- [ ] Fix stuff that are not according to Clean Architecture
|
||||||
|
- [ ] Use ENUMs and other things we have not used yet
|
||||||
|
|
||||||
|
# Seed Data
|
||||||
|
|
||||||
|
|
||||||
|
# Dockerizing and Deployment
|
||||||
|
|
||||||
|
# Reformatting and Completing Documents
|
||||||
|
- [ ] Figure out a format
|
||||||
|
- [ ] Review old docs
|
||||||
|
- [ ] Complete new ones
|
||||||
|
- [ ] Write Read ME for GitHub
|
||||||
|
# Going Public
|
||||||
|
- [ ] How much?
|
||||||
|
- [ ] What to do?
|
||||||
|
- [ ] What about other people wanting to join?
|
||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user