Lisa Notes
Author

Lisa Notes

Lisa's notes: musings on daily life, work, study, personal growth, and casual reflections.

78
Articles
0
Likes
0
Views
0
Comments
Recent Articles

Latest from Lisa Notes

78 recent articles
Lisa Notes
Lisa Notes
Apr 18, 2026 · Fundamentals

Java Basics: Building a Car Class from Scratch

This learning note walks through a complete Java Car class example, explaining its instance fields (brand, color, speed, id), a static count field, a parameterized constructor that auto‑increments the count, and accessor methods that illustrate core object‑oriented concepts.

ClassConstructorJava
0 likes · 4 min read
Java Basics: Building a Car Class from Scratch
Lisa Notes
Lisa Notes
Apr 17, 2026 · Industry Insights

Why Humanoid Robots Are Booming Yet Hard for the Average Person to Join – An Industry Chain Overview

The article traces the historical roots of humanoid robots, outlines safety protocols like Asimov's Three Laws, categorises robot generations and control types, dissects the upstream‑downstream supply chain with component cost breakdowns, examines manufacturing processes, showcases key application scenarios, and analyses emerging business models and challenges in the fast‑growing robotics market.

AI safetyhumanoid robotsindustrial automation
0 likes · 24 min read
Why Humanoid Robots Are Booming Yet Hard for the Average Person to Join – An Industry Chain Overview
Lisa Notes
Lisa Notes
Apr 17, 2026 · Fundamentals

Mastering Java’s this Keyword: A Beginner’s Guide from Scratch

This tutorial explains how the Java this keyword references the current object, showing its use for accessing shadowed member variables and invoking other constructors through clear code examples such as Point and Rectangle classes.

Object-Orientedconstructor chainingmember variables
0 likes · 6 min read
Mastering Java’s this Keyword: A Beginner’s Guide from Scratch
Lisa Notes
Lisa Notes
Apr 16, 2026 · R&D Management

Project Management Pitfalls: The Two Most Common Issues and How to Fix Them

The article examines two frequent project‑management problems—ever‑changing requirements and internal team friction—illustrates each with real‑world cases, and shows how strict change‑control procedures and daily stand‑ups can cut informal requests by 50% and double iteration speed.

change controldaily standupiteration cadence
0 likes · 4 min read
Project Management Pitfalls: The Two Most Common Issues and How to Fix Them
Lisa Notes
Lisa Notes
Mar 31, 2026 · Fundamentals

Java Objects from Scratch: A Step‑by‑Step Guide

This tutorial walks through the fundamentals of Java objects, covering declaration, instantiation, referencing, practical code examples—including a HelloTest class and a Point/Rectangle demo—and explains Java's automatic garbage collection and manual cleanup techniques.

ConstructorsGarbage CollectionJava
0 likes · 10 min read
Java Objects from Scratch: A Step‑by‑Step Guide
Lisa Notes
Lisa Notes
Mar 31, 2026 · R&D Management

How to Allocate Time Effectively Across Multiple Projects

The article outlines practical steps for project managers and team members to allocate time across multiple projects, emphasizing clear goals, weekly task breakdowns, resource matching, regular progress checks, effective communication, prioritization, and reusable modules to improve efficiency and reduce risk.

communicationmulti-projectproject management
0 likes · 3 min read
How to Allocate Time Effectively Across Multiple Projects
Lisa Notes
Lisa Notes
Mar 31, 2026 · Fundamentals

Python Basics: Common String and List Operations with Code Examples

This learning note demonstrates essential Python list and string techniques, including list concatenation with '+', membership testing using 'in' and 'not in', and various slicing methods, all illustrated with concrete code snippets and their output.

Code examplesPythonbasic operations
0 likes · 3 min read
Python Basics: Common String and List Operations with Code Examples
Lisa Notes
Lisa Notes
Mar 30, 2026 · Fundamentals

Python Basics: Common Strings and an Introduction to Lists

This tutorial note walks through Python variables, demonstrates how lists can store multiple heterogeneous items, explains list declaration, indexing, modification, and shows two ways to iterate over a list with concrete code examples and their output.

IndexingIterationLists
0 likes · 3 min read
Python Basics: Common Strings and an Introduction to Lists