Posts

Introduction to LibreFoodPantry and Thea’s Pantry

  Reading over the website, I found out that LibreFoodPantry requires that all code contributions be licensed under the GNU General Public License version 3 (GPL-3.0) and that all content be licensed under the Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0). Also, it was with a very strict code of conduct that warns for bans as this project is for a community effort to make free and open source software to help society.   I chose to write about this because it shows how seriously LibreFoodPantry takes responsibility, fairness, and collaboration in an open-source community. These strict licensing ensures that the software and content remain free and accessible to everyone, while the strong code of conduct protects contributors and keeps the project focused on its social mission. For thea’s pantery I found out IdCardScanner.md which was the most interesting part for me when looking at how the system work. Allowing IDs to be entered either manua...

Intro post for Software Quality Assur & Test

 Hello, I am Sung Jin Kim Back again For CS 443 Software Quality, Assurance, and Testing. I hope this year i learn new things that is related to real life testing as i have want to explore different methods.   I hope this semester and class goes well for everyone!

Vue.js and How it Works

  This article, An Introduction to Vue.js: Understanding the Framework and Getting Started, is a good starting point for people who want to use vue.js, a JavaScript framework that is used to make User interface. It lights major features of vue.js; components, directives, instance and router and how they work.   It then goes into deeper topic of vue.js , stage management in vue.js from beforeCreate to destroyed, introducing vuex which is the state management library. It explains the structure of Vuex (state, mutations, actions, context) and demonstrates how Vuex can be integrated with Local Storage and Session Storage to persist application state across page reloads or browser sessions. It continues on to reactions and even handlers, showing how computed values react automatically to data changes and how event listeners allow components to respond to user interaction. Last thing it explains about server-side rendering, what it does and how it used to improve performance and S...