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
Mar 30, 2026 · R&D Management

How to Manage a New Project: A Practical Three‑Step Guide

The article outlines a mixed project‑management approach for new initiatives, detailing three concrete steps—planning with milestone breakdowns, daily stand‑up supervision, and strategic resource allocation with a technical lead and a 15% time buffer—to ensure clear plans, transparent progress, and rapid issue resolution.

daily standupmilestonesmixed methodology
0 likes · 3 min read
How to Manage a New Project: A Practical Three‑Step Guide
Lisa Notes
Lisa Notes
Mar 29, 2026 · Fundamentals

Python String Formatting: % Placeholders vs f‑Strings Explained

This tutorial walks through Python's two main string formatting techniques—classic % placeholders and modern f‑strings—detailing specifiers like %d, %f, %s, %.2f, and providing concrete code examples that show how each method formats name, age, and salary variables.

Pythonf-stringspercent formatting
0 likes · 3 min read
Python String Formatting: % Placeholders vs f‑Strings Explained
Lisa Notes
Lisa Notes
Mar 29, 2026 · Fundamentals

Java Class Definition: A Beginner’s Guide from Scratch

This tutorial walks through Java class fundamentals, covering class declarations, modifiers, member variables, methods, method overloading, and constructors with clear syntax examples and code snippets to help beginners write and understand Java classes.

ClassConstructorJava
0 likes · 8 min read
Java Class Definition: A Beginner’s Guide from Scratch
Lisa Notes
Lisa Notes
Mar 27, 2026 · Fundamentals

Python Learning Day 60: Mastering pass, while/for Loops, break‑continue and String Operations

This tutorial‑style note walks through Python’s pass statement, the mechanics of while and for loops (including nested loops and common pitfalls), the use of break and continue, and a comprehensive overview of string creation, slicing, case conversion, searching, replacement, and encoding, all illustrated with concrete code examples and expected outputs.

PythonSlicingbreak-continue
0 likes · 23 min read
Python Learning Day 60: Mastering pass, while/for Loops, break‑continue and String Operations
Lisa Notes
Lisa Notes
Mar 26, 2026 · Fundamentals

Java Classes and Objects: A Beginner’s Guide from Scratch

This article explains the fundamentals of object‑oriented programming in Java, covering objects, classes, inheritance, encapsulation, polymorphism, and packages with concrete examples that illustrate how real‑world concepts map to Java code and how objects interact through message passing.

ClassesEncapsulationInheritance
0 likes · 12 min read
Java Classes and Objects: A Beginner’s Guide from Scratch
Lisa Notes
Lisa Notes
Mar 25, 2026 · Fundamentals

Java Basics: Encryption and Multiplication Table Examples for Beginners

This tutorial walks through two Java examples—a simple Caesar‑style encryption/decryption program that shifts letters by four positions and a nested‑loop implementation of the 9×9 multiplication table—explaining the logic, code, and output step by step.

EncryptionJavaloops
0 likes · 8 min read
Java Basics: Encryption and Multiplication Table Examples for Beginners
Lisa Notes
Lisa Notes
Mar 24, 2026 · Fundamentals

Python String Manipulation: strip, split, and join with Examples

This tutorial demonstrates how to use Python's strip, lstrip, rstrip, split, and join functions to remove characters, divide strings, and concatenate elements, providing code snippets and the corresponding output for each operation.

Pythonjoinsplit
0 likes · 3 min read
Python String Manipulation: strip, split, and join with Examples