Lisa Notes
Author

Lisa Notes

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

81
Articles
0
Likes
53
Views
0
Comments
Recent Articles

Latest from Lisa Notes

81 recent articles
Lisa Notes
Lisa Notes
Mar 16, 2026 · Fundamentals

Python Fundamentals: Using While Loops with Composite Data Types

This note explains Python's while loop, detailing its three-part structure, special considerations such as the one‑time initial condition, lack of ++/-- operators and do‑while syntax, and provides a concrete example that prints "hello world" ten times.

Control FlowLoopsPython
0 likes · 3 min read
Python Fundamentals: Using While Loops with Composite Data Types
Lisa Notes
Lisa Notes
Mar 15, 2026 · Fundamentals

Java Fundamentals: A Beginner’s Guide to Identifiers and Keywords

This note explains Java identifiers—allowed characters, first‑character rules, valid and invalid examples—lists all language keywords that cannot be reused as names, and outlines practical naming conventions for classes, methods, constants, and packages to improve code readability.

IdentifiersJavaProgramming Basics
0 likes · 6 min read
Java Fundamentals: A Beginner’s Guide to Identifiers and Keywords
Lisa Notes
Lisa Notes
Mar 15, 2026 · Fundamentals

Understanding Python’s “pass” Keyword: A Practical Guide

The article explains that the pass keyword in Python serves only as a syntactic placeholder to keep code blocks valid, illustrating its use with a simple age‑checking example where the pass statement does nothing but allow the program to run without errors.

Pythonbasic programmingpass keyword
0 likes · 2 min read
Understanding Python’s “pass” Keyword: A Practical Guide
Lisa Notes
Lisa Notes
Mar 14, 2026 · Fundamentals

Mastering Common Nested if Statements in Python

This tutorial explains Python's nested if syntax, shows how single, double, and multi‑branch conditions can be combined, and walks through a practical ticket‑checking example that demonstrates input handling, conditional nesting, and the resulting output.

Control FlowPythonTutorial
0 likes · 3 min read
Mastering Common Nested if Statements in Python
Lisa Notes
Lisa Notes
Mar 14, 2026 · Fundamentals

How to Build Your First Java Application from Scratch

This tutorial walks you through installing the JDK, creating a HelloJava.java source file with Notepad, compiling it using javac, running it with the java interpreter, and explains the basic structure, comments, class definition, and main method of a Java program.

CommandLineHelloWorldJDK
0 likes · 12 min read
How to Build Your First Java Application from Scratch
Lisa Notes
Lisa Notes
Mar 13, 2026 · Fundamentals

How to Set Up a Java Development Environment from Scratch

This guide walks through installing the JDK, configuring JAVA_HOME, PATH and CLASSPATH on Windows, and verifying the setup, showing that only the JDK and a basic text editor are needed to write and run your first Java program.

JDKJavaWindows
0 likes · 9 min read
How to Set Up a Java Development Environment from Scratch
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.

APIJVMJava
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 FlowProgramming BasicsPython
0 likes · 4 min read
Master Python if/else Statements with Practical Examples