# Dev 100 - Day [95]
## Today's Accomplishments
### 1. πŸŒ… Morning Productivity
🍳 Healthy Breakfast: Muffins
- [x] Morning Routine: Clean Office, Rhythm Ready for School, Emails, Make Bed
- Trying old video cards in my machine so I can run back ups on a few things.
- Slept in today felt super nice
- Finish organizing Camera gear & old Electronics
- Setup Docker on backup PC
### 2. βœ… To-Dos & Completed Tasks
- [x] [Update To-Dos]
- [x] [Clear Complete Task]
- Daily To-Do Report: 2 Done
### 3. πŸ“š Learning
- πŸ¦Έβ€β™‚οΈ **Zero to Full Stack Hero**: JavaScript Essentials Mentor Call
- πŸ”— [How I Sign Clients For My AI Automation Agency (Revealing My Secret Method)](https://www.youtube.com/watch?v=XomjbItJ-L0)
- πŸ”— [πŸ”΄ Let’s build an AI NOTION Clone with NEXT.JS 14! (Realtime Collab, Cloudflare, Clerk, Firebase)](https://www.youtube.com/watch?v=shX6N1FOx-0&t=1187s&pp=ygUTbnRpb24gY2xvbmUgbmV4dCBqcw%3D%3D)
- πŸ”— [Resource](URL)
### 4. πŸ’» Coding Progress
- 🧠 Warm-up Exercise: Convert a JavaScript role-playing game character system to TypeScript, implementing proper class hierarchy, access modifiers, and abstract classes. Create a system that manages different types of game characters (warriors, mages, rogues) with specific abilities and attributes.
- 🦺 Project: Card Street: card databases, AI-Alchemy: add inital blogs
- πŸ“ Code Snippet:
```javascript
abstract class Character implements ICharacter {
public readonly id: string;
public name: string;
public level: number;
protected stats: CharacterStats;
constructor(name: string) {
// TODO: Initialize character properties
this.id = Math.random().toString(36).substring(2, 9)
this.name = name
this.level = 1;
this.stats = this.getInitialStats();
}
protected abstract getInitialStats(): CharacterStats;
public getStats(): CharacterStats {
return { ...this.stats };
}
public abstract attack(target: ICharacter): number;
public levelUp(): void {
this.level++
this.updateStats();
}
protected abstract updateStats(): void;
}
```
### 5. πŸ”„ Daily Reset
- πŸ‹οΈβ€β™‚οΈ Strech & rest
- 🧘 Story time with Pheonix
### 6. 🌀️ Afternoon Productivity
- 🍱 Healthy Lunch: Turkye Sandwich
- Starting to put all my organized Stuff Away
- Light work on AI alchemy
### 7. 🀝 Community Support
- Catching up on Skool Group
- Catching up on oTToDdev Group
### 8. πŸ“Š Progress Tracking
## Reflections and Notes
5
3 comments
Digitl-Alchemyst Steven-Watkins
6
# Dev 100 - Day [95]
University of Code
skool.com/universityofcode
You'll get Exclusive Lessons & Content, Badass Community Support & More here to elevate as a Dev!
Leaderboard (30-day)
powered by