Weekly Dev Log 2026-W06
The Weekly Dev Log for 2026-W06 highlights progress in various development areas. The author completed sections of a SwiftUI tutorial and worked on a React Router v7 project for a future portfolio site. Additionally, they finished a hands-on investigation exercise in AI security on TryHackMe, enhancing their skills in cybersecurity.
- ▪The author made progress in a SwiftUI tutorial, completing Sections 7 and 8.
- ▪They created a new React Router v7 project for their future portfolio site.
- ▪The author completed the ContAInment room on TryHackMe, focusing on AI security and investigation techniques.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3830906) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Umitomo Posted on May 21 Weekly Dev Log 2026-W06 #beginners #devjournal #security #swift 🗓️ This Week Made a little more progress in the SwiftUI tutorial🦾 Started the journey of building my future portfolio site✈️ First, I created the project files and set up a repository on GitHub. I also started reserching React Router v7 by reading its documentation.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).