Lisa Notes
Author

Lisa Notes

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

115
Articles
0
Likes
235
Views
0
Comments
Recent Articles

Latest from Lisa Notes

100 recent articles max
Lisa Notes
Lisa Notes
Mar 12, 2026 · Fundamentals

Java Language and Platform: A Beginner’s Guide to Write Once, Run Anywhere

The article explains how Java source files are compiled into bytecode, run on the JVM across Windows, Linux, macOS, and Solaris, and describes the two parts of the Java platform—the virtual machine and the API—highlighting why Java’s “write once, run anywhere” model suits distributed, object‑oriented development.

JVMJavaJava language
0 likes · 5 min read
Java Language and Platform: A Beginner’s Guide to Write Once, Run Anywhere
Lisa Notes
Lisa Notes
Mar 11, 2026 · R&D Management

Common Pitfalls in the Project Integration Management Phase and How to Overcome Them

The article lists eleven frequent mistakes that occur during the integration management stage of a project—such as missing charters, lack of authority, poor planning, inadequate monitoring, and incomplete closure—and then outlines the essential elements of a project charter, its inputs and outputs, and the comprehensive contents of an overall management plan.

change controlproject charterproject integration
0 likes · 5 min read
Common Pitfalls in the Project Integration Management Phase and How to Overcome Them
Lisa Notes
Lisa Notes
Mar 11, 2026 · Fundamentals

Master Python if/else Statements with Practical Examples

This tutorial explains Python's selection structure by walking through three hands‑on exercises—checking if a number exceeds 16, determining odd or even, and calculating the day of the year (including leap‑year logic)—complete with code snippets and sample output.

Control FlowExample CodeProgramming Basics
0 likes · 4 min read
Master Python if/else Statements with Practical Examples
Lisa Notes
Lisa Notes
Mar 9, 2026 · R&D Management

What Scope Management Lessons a Telecom Smart‑Terminal Project Taught Me

This article recounts a real‑world telecom smart‑terminal project, detailing how disciplined scope management, a structured Work Breakdown Structure, and targeted collaboration enabled an 8‑month delivery despite hardware‑software integration challenges, resource constraints, and strict certification timelines.

Information SystemsScope ManagementWBS
0 likes · 13 min read
What Scope Management Lessons a Telecom Smart‑Terminal Project Taught Me
Lisa Notes
Lisa Notes
Mar 9, 2026 · Fundamentals

Learn Python from Scratch: Using if and if‑else Statements

This tutorial explains Python's three program structures, then details the syntax and execution flow of single‑branch if statements and double‑branch if‑else statements with concrete code examples and their corresponding outputs.

Control FlowProgramming BasicsPython
0 likes · 4 min read
Learn Python from Scratch: Using if and if‑else Statements
Lisa Notes
Lisa Notes
Mar 9, 2026 · R&D Management

Common Pitfalls in Project Initiation and How to Address Them

The article outlines typical mistakes made during the project initiation phase—such as missing proposals, inadequate feasibility studies, and undefined scope—and then details the essential feasibility study components, four prerequisite processes, and a step‑by‑step workflow to ensure a solid project launch.

feasibility studyproject initiationproject management
0 likes · 4 min read
Common Pitfalls in Project Initiation and How to Address Them
Lisa Notes
Lisa Notes
Mar 8, 2026 · Fundamentals

Understanding Python’s Logical Operators: Values and Short‑Circuit Behavior

The article explains how Python’s and/or operators work with any expression type, why they may return non‑boolean values, and demonstrates short‑circuit evaluation through concrete print examples showing the actual results, including cases where the left operand determines the outcome without evaluating the right side.

Programming FundamentalsPythonShort-Circuit
0 likes · 5 min read
Understanding Python’s Logical Operators: Values and Short‑Circuit Behavior
Lisa Notes
Lisa Notes
Mar 6, 2026 · Fundamentals

Master Python Logical Operators from the Ground Up

This article explains Python's logical operators—and, or, and not—by comparing them to mathematical logic, detailing their syntax, truth rules, how they work with any expression type, and illustrating usage with concrete code examples and output.

Programming FundamentalsPythonand
0 likes · 4 min read
Master Python Logical Operators from the Ground Up