Home
David Vasilev
Cancel

Spring/Thymeleaf Lesson

Spring/Thymeleaf Lesson Lesson Objectives: Understand the role of Thymeleaf in server-side rendering. Learn how to integrate Thymeleaf with the Spring Framework. Implement a sign-in page us...

Plan 16

Monday Finalize Project Tuesday Thymeleaf Lesson Work on Hacks Wednesday Grading for Project Grade other Group Thursday Hashmap Lesson ...

JQuery and CRUD Hacks

Directions You really should try to answer the 5 questions below this without any help. These are core concepts that you should at least attempt to learn. The update JQUERY function may requi...

SASS Lesson

Introduction to SASS SASS (Syntactically Awesome Stylesheets) is a powerful preprocessor scripting language that enhances CSS with advanced features. It’s compiled into standard CSS, making it a r...

Plan 15

Monday Work on Lesson Finish Topic Tuesday SASS Lesson Work on Hacks Wednesday Work on Project Extra Sorts Thursday jQ...

Sorting Tests

class Sort { public void insertion(int arr[]) { int n = arr.length; for (int i = 1; i < n; i++) { int x = arr[i]; int j = i - 1; while (j >= 0 && arr[j]...

Plan 14

Monday Work on Project Backend Sorts Tuesday Work on Project Backend Sorts Wednesday Work on Project Animations Thursday ...

Plan 13

Monday Make Groups Tuesday Review Project Begin Project Wednesday Review Lesson Options Work on Lesson Thursday Work on Lesson/Project ...

Test 1 Reflection

Q3 SomeClass object and instance variables Here I messed up scoping of variables, it’s supposed to be public to be able to be accessed. I didn’t read the question well enough. Q15 isSorted 1D...

Tri 1 Project Reflection

Contributions Overall I worked on the frontend logic of the Dijkstra algorithm, building and interface using JointJS for the UI, Tailwind and DaisyUI for styling, and fetch for retrieving data fro...