HOME Java Life Log Python Digital/Technology Knowledge Base High School Life HALO Club Personal Growth Heraclitus Volunteer Activity Internship Netflix Smart TV High School Internship My hair Over The Top LG webOS OnDemandKorea Live TV Asian Americans Hair Grown Out Over 200 Days Android TV Hair Journey Asian Viewers 온디맨드코리아 Smart TV Usage SVoD Long Hair Horowitz Research Samsung Tizen Data Adventures Hair Growth Kristin Kreuk OTT Disney+ Hair Trash Empire Amaazon Prime Video Conneced TV Santa Ana River Palos Verdes ZEE5 Rakuten VIKI River Cleaning Activity Data Software Engineer Intern VOD Trashy Underworld Haircuts Roku TV

BE.ZIP

Java Polymorphism  

(created at Jul 18, 2023)   120  
Polymorphism means "many forms", and it occurs when we have many classes that are related to each other by inheritance.Like we specified in the previous chapter; Inheritance lets us inherit at...

Java Inheritance (Subclass and Superclass)  

(updated at May 10, 2024)   129  
In Java,it is possible to inherit attributes and methods from one class to another.We group the "inheritance concept" into two categories::subclass (child) - the class that inherits from anoth...

Java Packages  

(updated at May 10, 2024)   165  
Java Packages & API.A package in Java is used to group related classes.Think of it as a folder in a file directory.We use packages to avoid name conflicts,and to write a better maintainable co...

200 Days of Hair - From Long Locks to the Big Chop  

(updated at May 12, 2024)   305  
Hey everyone! For the past 200 days,I've been on a hair-growing adventure.It's been quite the journey,letting my hair grow freely,and now,as I get ready for junior year,it's time for a big cha...
200 Days of Hair - From Long Locks to the Big Chop

Java Abstract Classes and Methods  

(created at Jul 16, 2023)   227  
Data abstraction is the process of hiding certain details and showing only essential information to the user.Abstraction can be achieved with either abstract classes or interfaces (which you w...
Java Abstract Classes and Methods

Java Classes and Objects  

(updated at May 10, 2024)   139  
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...
Java Classes and Objects

Java Recursion  

(updated at May 10, 2024)   124  
Recursion is the technique of making a function call itself.This technique provides a way to break complicated problems down into simple problems which are easier to solve.Recursion may be a b...

Java Scope  

(updated at May 10, 2024)   143  
In Java,variables are only accessible inside the region they are created.This is called scope.Method Scope.Variables declared directly inside a method are available anywhere in the method foll...

Java Methods  

(updated at May 10, 2024)   127  
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 functio...

Java Arrays  

(updated at May 13, 2024)   360  
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 n...
Java Arrays

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

(updated at May 13, 2024)   158  
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 lo...

Java Switch Statements  

(updated at May 15, 2024)   132  
Instead of writing many if.else statements,you can use the switch statement.The switch statement selects one of many code blocks to be executed:Syntax:This is how it works::The switch expressi...

Java Short Hand If...Else (Ternary Operator)  

(updated at May 15, 2024)   98  
In the vast world of programming,efficiency is key.Every line of code counts,and developers constantly seek ways to streamline their scripts without compromising functionality.One such tool in...

Java If ... Else  

(updated at May 15, 2024)   132  
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 ...

Java Math  

(updated at May 15, 2024)   137  
In the realm of Java programming,mathematics plays a pivotal role,empowering developers to perform a myriad of numerical operations with ease.At the heart of these capabilities lies the Java M...

Java Variables  

(updated at May 15, 2024)   106  
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,...

Java Comments  

(updated at May 15, 2024)   141  
In Java programming,clarity and readability are paramount.As developers craft intricate algorithms and intricate logic,the need for comprehensive explanations becomes evident.Enter Java commen...

The Print() Method  

(updated at May 10, 2024)   102  
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 wil...

Java Syntax  

(updated at May 15, 2024)   131  
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 convent...

Java Getting Started  

(updated at May 15, 2024)   135  
Some PCs might have Java already installed.To check if you have Java installed on a Windows PC,search in the start bar for Java or type the following in Command Prompt (cmd.exe):If Java is ins...

What is Java?  

(created at Jul 07, 2023)   130  
With a population of 151.6 million people, Java is the world's most populous island, home to approximately 56% of the Indonesian population.Some of you may curious why Java is the most famous ...
What is Java?

The Chronicles of a Trash Whisperer that I learned at Santa Ana River Palos Verdes  

(updated at May 12, 2024)   199  
In the small town of Santa Ana River Palos Verdes,I began a special mission.This wasn’t just any mission.It was a quest to help the Earth by picking up trash,one piece at a time.Armed with a ...
The Chronicles of a Trash Whisperer that I learned at Santa Ana River Palos Verdes

Python Modules  

(updated at May 09, 2024)   124  
What is a Module?.Consider a module to be the same as a code library.A file containing a set of functions you want to include in your application.Create a Module.To create a module just save t...

Python Scope  

(updated at May 09, 2024)   115  
A variable is only available from inside the region it is created.This is called scope.Local Scope.A variable created inside a function belongs to the local scope of that function,and can only...

Python Polymorphism  

(updated at May 09, 2024)   142  
The word "polymorphism" means "many forms",and in programming it refers to methods / functions / operators with the same name that can be executed on many objects or classes.Function Polymorph...

Python Iterators  

(updated at May 09, 2024)   122  
An iterator is an object that contains a countable number of values.An iterator is an object that can be iterated upon,meaning that you can traverse through all the values.Technically,in Pytho...

Python Inheritance  

(updated at May 09, 2024)   100  
Inheritance allows us to define a class that inherits all the methods and properties from another class.Parent class is the class being inherited from,also called base class.Child class is the...

Python Classes/Objects  

(updated at May 09, 2024)   89  
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 ...

Python Arrays  

(updated at May 09, 2024)   92  
Arrays are used to store multiple values in one single variable: Access the Elements of an Array.You refer to an array element by referring to the index number. .The Length of an Array.Use the...

Python Lambda  

(updated at May 09, 2024)   98  
A lambda function is a small anonymous function.A lambda function can take any number of arguments,but can only have one expression.Syntax.The expression is executed and the result is returned...
Python Lambda

Embarking on Data Adventures - My First Days as a Data Software Engineer Intern  

(updated at Sep 22, 2024)   195  
Starting my first internship as a Data Software Engineer has been like stepping onto a roller coaster,full of ups,downs,and thrilling surprises.Today,I really began to dive into the work,looki...
Embarking on Data Adventures - My First Days as a Data Software Engineer Intern

What is OTT(Over The Top)?  

(created at Jun 17, 2023)   558  
According to the Wiki, an over-the-top (OTT) media service (also known as a streaming platform) is a media service offered directly to viewers via the Internet. OTT bypasses cable, broadcast, ...
What is OTT(Over The Top)?

Python Functions  

(updated at May 09, 2024)   136  
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 fun...
Python Functions

Python While Loops/For Loops  

(updated at May 09, 2024)   144  
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...
Python While Loops/For Loops

Python Conditions and If statements  

(updated at May 09, 2024)   140  
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 c...
Python Conditions and If statements

Python Dictionaries  

(updated at May 09, 2024)   113  
Dictionaries are used to store data values in key:value pairs.A dictionary is a collection which is ordered*,changeable and do not allow duplicates.Dictionaries are written with curly brackets...
Python Dictionaries

Python Sets  

(updated at May 09, 2024)   93  
Sets are used to store multiple items in a single variable.Set is one of 4 built-in data types in Python used to store collections of data,the other 3 are List,Tuple,and Dictionary,all with di...

Python Tuples  

(updated at May 09, 2024)   125  
Tuples are used to store multiple items in a single variable.Tuple is one of 4 built-in data types in Python used to store collections of data,the other 3 are List,Set,and Dictionary,all with ...
Python Tuples

Python Comparison Operators  

(updated at May 10, 2024)   88  
OperatorDescriptionExample.==,If the values of two operands are equal,then the condition becomes true.(a == b) is not true..!=,If values of two operands are not equal,then condition becomes tr...

Python Lists  

(updated at May 10, 2024)   89  
Lists are used to store multiple items in a single variable.Lists are one of 4 built-in data types in Python used to store collections of data,the other 3 are Tuple,Set,and Dictionary,all with...
Python Lists

Python String Operations  

(updated at May 10, 2024)   110  
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...

Python Data Types  

(updated at May 10, 2024)   94  
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...

Python Variables  

(updated at May 10, 2024)   96  
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 ...

Python Comments  

(updated at May 10, 2024)   106  
Comments can be used to explain Python code.Comments can be used to make the code more readable.Comments can be used to prevent execution when testing code.Creating a Comment.Comments starts w...

Python Syntax  

(updated at May 10, 2024)   89  
Execute Python Syntax.As we learned in the previous page,Python syntax can be executed by writing directly in the Command Line:Or by creating a python file on the server,using the .py file ext...

Python Getting Started  

(updated at May 10, 2024)   118  
Many PCs and Macs will have python already installed.To check if you have python installed on a Windows PC,search in the start bar for Python or run the following on the Command Line (cmd.exe)...
Python Getting Started

Python Introduction  

(created at Jun 12, 2023)   476  
Python is a popular programming language. It was created by Guido van Rossum, and released in 1991.It is used for:web development (server-side), software development, mathematics, system scrip...

What is Python?  

(created at Jun 12, 2023)   242  
Python is a genus of constricting snakes in the Pythonidae family native to the tropics and subtropics of the Eastern Hemisphere.In terms of programming language, Python was created by Guido v...
What is Python?

What is a smart TV?  

(updated at Sep 24, 2024)   249  
In the realm of television,a new star has emerged: the Smart TV.But what exactly is a Smart TV,and what sets it apart from traditional TVs? Let's unravel the mystery and explore the wonders of...
What is a smart TV?

Original Asian-Themed Content to Serve a Diverse Asian Audience from Horowitz Research  

(updated at Sep 22, 2024)   820  
Horowitz Research published a great report regarding Asian TV Content Viewers,Six in 10 (61%) Asian TV content viewers watch Asian-language content at least occasionally,and 2 in 3 (65%) Asian...
Original Asian-Themed Content to Serve a Diverse Asian Audience from Horowitz Research


Page: 1 2 3 4 5 6 7