YouTube Multiview Video Games Dataset from UC Irvine Machine Learning RepositoryThe University of California,Irvine (UCI),houses a remarkable collection of datasets,serving the machine learning community with invaluable resources.Among these is the YouTube Multiview Video... |
Semantic Network - a method of expressing knowledge based on a mesh structureIn the vast world of information,organizing knowledge can be a daunting task.But what if there was a way to map out this knowledge like a web,connecting ideas and concepts in a structured mann... |
My Journey as a Taekwondo Assistant MasterI've been practicing Taekwondo since I was a kid in Korea.Even as a middle school student,I was already pretty good,reaching the fourth category.But when I moved to America,I thought I'd have ... |
NewJeans - GODS | LOL Worlds 2023 Finals Opening CeremonyOne of my favorite K-Pop group, NewJeans, had a great performance at LOL World Cup 2023 as the final game opening ceremony - the song title is GODS.Their performance was combined with the fant... |
Mordern web design based on BootstrapMost recently,I learned to build a modern website based on HTML+CSS+Bootstrap,and the below website is developed for testing.Bootstrap is actually useful to implement a responsive web which is... |
Python Tutorials for AP Computer Science Principles, Data Projects and High School InternshipPython is not just a programming language; it’s a gateway to opportunities in technology.Recognized for its versatility and ease of use,Python has become a staple in data analytics and machin... |
Java Tutorials associated with AP Computer Science AAs 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... |
Embracing the COSMOS Program Application JourneyEventually time for me to challenge for COSMOS Program.COSMOS stands for California State Summer School for Mathematics and Science.I wanted to take part in COSMOS Program from the beginning o... |
Surviving the Apocalypse: An Entry Game on Contaminated Waste from the SkyIn a dystopian future,where humanity's neglect for the environment has led to dire consequences,you find yourself in the midst of chaos."Survival with the contaminated waste from the sky" is a... |
Halloween Treats for Grandparents: Spreading Joy in Simple WaysHalloween is a traditional British-American event.Believing that dead souls will come back to life on the 31st,the day before the chronic feast,spirits and witches will appear,people walk arou... |
My Clothes - Wide Green PantsYou know that feeling when you stumble upon an item in your closet that just clicks with something else? That's the story of my wide green pants and their unexpected companion,my beige sweatsh... |
Barum Benefit Concert at PYLUSD Performing Arts CenterHey,music lovers! Last night was off the charts thanks to the Barum Benefit Concert at our very own PYLUSD Performing Arts Center.Let me tell you,it was one for the books."Music is a moral law... |
First Day of Junior Year at Northwood High SchoolToday marked the beginning of a new chapter – the first day of my junior year at Northwood High School.The anticipation had been building up for weeks,and as I stood in front of the mirror ad... |
What is Google Analytics?Google Analytics is a web analytics service that provides statistics and basic analytical tools for search engine optimization (SEO) and marketing purposes.The service is part of the Google Ma... |
Enchanting Tijuana, BC, Mexico - A Journey Through Warmth, Flavor, and Wonder Below San JoseTijuana,a vibrant city located just below San Jose,offers a fantastic experience for those seeking an unforgettable tour.This bustling metropolis is characterized by its friendly people,delici... |
Junior Year Kickoff: The Student ID Card SagaAlright,folks,buckle up because we're diving into the thrilling world of… Student ID card photos.Yeah,I know,not exactly the most exciting topic,but hey,it's a rite of passage,right?."So ofte... |
Machine Learning Types and Programming LanguagesIn the area of Machine Learning Technology, threre are three different types of Machine Learning. You should make decision which type you want to use if you are trying to implement something. ... |
My Hair - Rocking My New Haircut as School BeginsAlright,folks,gather 'round because we're about to dive into the world of haircuts.Yep,you heard me right – haircuts.And no,this isn't your typical trim-at-the-barbershop kind of story.This i... |
Code Chronicles - A Caffeine-Fueled Journey into Data Software EngineeringInterning in Data Software Engineering was like entering a realm where coding meets caffeine-fueled euphoria.The excitement bubbled within me like an over-caffeinated potion as I delved into t... |
Artesia Alley Dust Busters Unleashed - A Colorful Comedy of Community CleanupLast weekend,something truly special happened—I became part of a community effort that was all about sweeping up dust and breaking down barriers.I joined a vibrant group of people in Artesia ... |
Java Inner ClassesIn Java,it is also possible to nest classes (a class within a class).The purpose of nested classes is to group classes that belong together,which makes your code more readable and maintainable... |
Java Inheritance (Subclass and Superclass)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 PackagesJava 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 ChopHey 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... |
Java Abstract Classes and MethodsData 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 Classes and ObjectsJava 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 RecursionRecursion 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 MethodsA 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 ArraysArrays 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 While Loop/Do While Loop/For Loop/For-Each Loop/Break/ContinueLoops 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 Short Hand If...Else (Ternary Operator)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 ... ElseYou 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 MathIn 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 VariablesVariables 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 CommentsIn 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() MethodPrint 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 SyntaxIn 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 StartedSome 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?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 ... |
The Chronicles of a Trash Whisperer that I learned at Santa Ana River Palos VerdesIn 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 ... |
Python InheritanceInheritance 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/ObjectsPython 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 ... |
Embarking on Data Adventures - My First Days as a Data Software Engineer InternStarting 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... |
What is OTT(Over The Top)?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, ... |
Python FunctionsA 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 While Loops/For LoopsThe 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 Conditions and If statementsPython 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 DictionariesDictionaries 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 SetsSets 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 TuplesTuples 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 ... |