HOME Digital/Technology Life Log US College Admission Knowledge Base Java Python California Irvine UC AI College Admission Student Life Johnny Kang Memories Higher Education Innovation University Tech Education UC Irvine Goodies Federal Reserve EPA Risk AI Deepfakes Academic Adventure Energy Efficiency History Tech Enthusiast H-18 visa Beach Hacking Online Learning UCI Transfers Admission Data Central Bank Hot Dogs Sustainability Love Renewable Energy Financial Crisis Microsoft Security Campus Life Global AI Governance Jane Kang College NOAA Romance Romantic Gesture Solar Incentives AI Capacity Building Hands-on Learning Project 2025 Undergraduate AI Risks Maya Angelou Economy AI Regulation Orange County Solar RIT Solar Investment Home Value Increase Aristotle Victor Hugo Quantitative Easing Research UCI Majors Design Abraham Lincoln Technology ARPA-H Career Pathways STEM Graduate Internship 2013 UN AI Standards New York AI Transparency AI Misinformation

PRINT().ZIP

Why Two Path Authentication is Essential - My Microsoft Account is Gone!  

updated at Oct 08, 2024   176  
Yesterday,I faced an unusual situation that my account is not able to find at Microsoft.Actually,I haven't used my account for the past 10 days.And I found that my account was removed from my family group.Actually,Microsoft sent me an email like below:I al...
Why Two Path Authentication is Essential - My Microsoft Account is Gone!

The UN Pushes for Global AI Standards  

created at Oct 01, 2024   371  
The United Nations (UN) is actively working on establishing global standards for artificial intelligence (AI).On September 19,2024,the UN's High-Level Advisory Body on Artificial Intelligence (AIAB) released a report titled "AI Governance for Humanity," ou...
The UN Pushes for Global AI Standards

Pink's Hot Dogs - Legendary Hot Dogs near Hollywood  

updated at Sep 30, 2024   1,325  
When you think of Hollywood,the first things that might come to mind are the glitzy glam of movie stars,iconic studios,and the illustrious Walk of Fame.But tucked just a stone’s throw from these star-studded attractions,there's another kind of legend that...
Pink's Hot Dogs - Legendary Hot Dogs near Hollywood

Exploring UC Irvine (aka UCI) - School and its Majors  

updated at Sep 26, 2024   2,464  
Hey there,fellow tech enthusiasts! So,you're thinking about college,huh? Well,let me tell you about this rad place called the University of California,Irvine (UCI),where the cyber fun never ends! Imagine a campus buzzing with brainpower and techie vibes.Ye...
Exploring UC Irvine (aka UCI) - School and its Majors

Understanding at Rochester Institute of Technology  

updated at Sep 26, 2024   569  
.Rochester Institute of Technology:RIT's mission is to provide students with a "rigorous,relevant,and experiential education" that prepares them for successful careers in a constantly evolving world.The institute offers a variety of academic programs acros...
Understanding at Rochester Institute of Technology

Exploring the Heartfelt History and Traditions of Valentine's Day  

updated at Sep 22, 2024   1,179  
Valentine's Day,celebrated annually on February 14th,is a day cherished worldwide for its celebration of love and romance.Delving into its history unveils a tapestry of traditions that blend ancient Roman customs with Christian legends.One of the most endu...
Exploring the Heartfelt History and Traditions of Valentine's Day

How solar chargers can power your home and wallet in Orange County  

updated at Sep 22, 2024   1,546  
In sunny Orange County,where the sun graces us with its presence nearly all year round,homeowners are increasingly looking to harness this abundant natural resource to power their homes and,in the process,significantly reduce their utility bills.Solar ener...
How solar chargers can power your home and wallet in Orange County

The Federal Reserve: The Money-Printing King  

created at Sep 22, 2024   263  
From 1913 to 2008,the Federal Reserve (Fed) gradually increased the money supply from $5 billion to $847 billion.Between late 2008 and early 2010,the Fed printed an astounding $1.2 trillion.This equates to an increase in the money supply in just over a yea...
The Federal Reserve: The Money-Printing King

Harris And Trump's Position On the Future of American Science  

created at Aug 31, 2024   413  
Vice President Harris and Trump's Project 2025 set a very different vision for U.S.science policy:Harris proposes expanding investment in research and development (R&D) with a focus on climate change response and clean energy,On the other hand,Project 2025...

Java Tutorials associated with AP Computer Science A  

updated at Jun 15, 2024   1,244  
As you set sail on your journey through AP Computer Science A,you're about to delve into the exciting world of Java programming.With a treasure trove of resources at your disposal,let's embark on a guided tour through the essentials of Java,equipping you w...
Java Tutorials associated with AP Computer Science A

Java Syntax  

updated at May 15, 2024   740  
In the vast landscape of programming languages,Java stands as a titan – revered for its versatility,reliability,and widespread usage.At the heart of Java lies its syntax,the rules and conventions that govern the structure and behavior of code.Let us embar...

Java Variables  

updated at May 15, 2024   510  
Variables are containers for storing data values.In Java,there are different types of variables,for example::String - stores text,such as "Hello".String values are surrounded by double quotes,int - stores integers (whole numbers),without decimals,such as 1...

Java If ... Else  

updated at May 15, 2024   737  
You already know that Java supports the usual logical conditions from mathematics::Less than: a < b,Less than or equal to: a b,Greater than or equal to: a >= b,Equal to a == b,Not Equal to: a != b.You can use these conditions to perform different actions f...

Java While Loop/Do While Loop/For Loop/For-Each Loop/Break/Continue  

updated at May 13, 2024   1,171  
Loops can execute a block of code as long as a specified condition is reached.Loops are handy because they save time,reduce errors,and they make code more readable.Java While Loop.The while loop loops through a block of code as long as a specified conditio...

Java Arrays  

updated at May 13, 2024   1,368  
Arrays are used to store multiple values in a single variable,instead of declaring separate variables for each value.To declare an array,define the variable type with square brackets:We have now declared a variable that holds an array of strings.To insert ...
Java Arrays

Johnny and Jane's Memories at Corona Del Mar  

updated at May 12, 2024   1,432  
In 2013,we found ourselves strolling along the picturesque shores of Corona Del Mar,captivated by the tranquility of the ocean and the soft caress of the sea breeze.The memories of that day lingered in our minds as we returned to the same spot in 2022,eage...
Johnny and Jane's Memories at Corona Del Mar

Java Methods  

updated at May 10, 2024   1,133  
A method is a block of code which only runs when it is called.You can pass data,known as parameters,into a method.Methods are used to perform certain actions,and they are also known as functions.Why use methods? To reuse code: define the code once,and use ...

Java Classes and Objects  

updated at May 10, 2024   1,142  
Java is an object-oriented programming language.Everything in Java is associated with classes and objects,along with its attributes and methods.For example: in real life,a car is an object.The car has attributes,such as weight and color,and methods,such as...
Java Classes and Objects

The Print() Method  

updated at May 10, 2024   706  
Print Text.You learned from the previous chapter that you can use the println() method to output values or print text in Java:You can add as many println() methods as you want.Note that it will add a new line for each method:Double Quotes.When you are work...

Python String Operations  

updated at May 10, 2024   120  
You can return a range of characters by using the slice syntax.Specify the start index and the end index,separated by a colon,to return a part of the string.Slice From the Start.By leaving out the start index,the range will start at the first character:Sli...

Python Variables  

updated at May 10, 2024   700  
Variables are containers for storing data values.Creating Variables.Python has no command for declaring a variable.A variable is created the moment you first assign a value to it.Variables do not need to be declared with any particular type,and can even ch...

Python Data Types  

updated at May 10, 2024   798  
In programming,data type is an important concept.Variables can store data of different types,and different types can do different things.Python has the following data types built-in by default,in these categories:Text Type:str.Numeric Types:int,float,compl...

Python Conditions and If statements  

updated at May 09, 2024   545  
Python supports the usual logical conditions from mathematics::Equals: a == b,Not Equals: a != b,Less than: a < b,Less than or equal to: a b,Greater than or equal to: a >= b.These conditions can be used in several ways,most commonly in "if statements" and ...
Python Conditions and If statements

Python While Loops/For Loops  

updated at May 09, 2024   655  
The while Loop.With the while loop we can execute a set of statements as long as a condition is true.The while loop requires relevant variables to be ready,in this example we need to define an indexing variable,i,which we set to 1. .The break Statement.Wit...
Python While Loops/For Loops

Python Functions  

updated at May 09, 2024   741  
A function is a block of code which only runs when it is called.You can pass data,known as parameters,into a function.A function can return data as a result.Creating a Function.In Python a function is defined using the def keyword: .Calling a Function.To c...
Python Functions

Python Classes/Objects  

updated at May 09, 2024   596  
Python is object-oriented.In Python,most things are objects with properties and methods.Class is an object constructor or "blueprint" for creating objects.Create a Class.To create a class,use the keyword class: .Create Object.Now we can use the class named...

Printing string n times  

created at Jun 14, 2023   38  
In Python, you don't need to repeat commands / functions to print a string. You can simply implement it like: