HOME Life Log Java Python Esports Digital/Technology Knowledge Base US College Admission Media Taekwondo TKD High School Essay HALO Club Student Life K-Pop Winston Churchill Fashion UC Irvine PHP-ML Hook Kick APExams Knee Strike Derby Shoes Environmental Care Julia Artesia Cleanup UW IU Axe Kick Wifi Extender Front Kick Machine Learning Types Community Service DOS Music Game Dev For Beginners Footwear Style Java Carnegie Mellon Technology Outer Crescent Kick Back Kick Clustering Reinforcement Learning OpenCV APCourses UC Santa Barbara Wi-Fi Extender Princeton UC LA Concerts chatGPT GPT Computer Science I and You Programming Languages for Machine Learning Generative Pre-trained Transformer Student Success Game Dev Tools Scissor Kick Cornell Volunteer Work Stanford Simple Game Development Classification Taekwondo Kicks Artesia Alley Cleaning Volunteering Activity PyTorch Wifi Signal Reverside Side Kick Roundhouse Kick UIUC USC echo off Regression John Lennon Calculator Policy

SET.ZIP

My Journey as a Taekwondo Assistant Master  

updated at May 12, 2024   1,356  
I'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 to leave Taekwondo behind.However,life had a surprise for me.Now...
My Journey as a Taekwondo Assistant Master

Artesia Alley Cleanup: A Day of Community and Contribution  

updated at May 12, 2024   1,362  
"I believe that every individual's contribution to society is valuable,no matter how small." - Greta Thunberg.I joined a group of students and volunteers for the Artesia Alley Cleaning Volunteering Activity.Despite the cloudy skies that promised a gloomy d...
Artesia Alley Cleanup: A Day of Community and Contribution

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

Python Tutorials for AP Computer Science Principles, Data Projects and High School Internship  

updated at May 10, 2024   1,350  
Python 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 machine learning,fields that are critical to the tech industry.Many te...

Python Lists  

updated at May 10, 2024   98  
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 different qualities and usage.Lists are created using square br...
Python Lists

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   701  
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 Getting Started  

updated at May 10, 2024   1,128  
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):To check if you have python installed on a Linux or Mac,then on...
Python Getting Started

Top 20 Chovy Plays | League of Legends | 2022  

created at Nov 21, 2022   131  
Chovy,a rising star in the world of League of Legends,has captured the hearts of fans worldwide with his incredible plays in 2022.I've always admired Chovy's gameplay.While many have been dubbed "the next Faker," Chovy stands out to me as a player who coul...
Top 20 Chovy Plays | League of Legends | 2022

Faker Montage | Best of 2022  

created at Oct 07, 2022   2,091  
Faker,the legendary League of Legends player,has left an indelible mark on the world of eSports.In 2022,his skill and strategic prowess were on full display,showcasing why he's considered one of the greatest players of all time.Faker's gameplay is marked b...
Faker Montage | Best of 2022

Game theme songs gain popularity in the music industry  

updated at May 09, 2024   1,162  
According to the game industry,game companies are actively engaged in the music business using intellectual property rights (IP).The strategy is to increase loyalty and immersion in their games by allowing users to experience music contents that are linked...
Game theme songs gain popularity in the music industry

Best of T1 Faker | 2023 Highlights  

updated at May 09, 2024   1,186  
In the realm of esports,Faker stands as an icon,a player whose every move on the virtual battlefield is closely watched and celebrated.As Faker himself reflected,"I received many awards and was named Player of the Year.I was going to give a great impressio...
Best of T1 Faker | 2023 Highlights

Top 10 Chovy Plays | Best of 2023  

created at Nov 07, 2023   1,180  
Dive into the mesmerizing world of Chovy,where each play is a masterpiece,showcasing unparalleled skill and strategic prowess.In the competitive landscape of 2023,Chovy has consistently proven why he stands as one of the finest players in the league.Precis...
Top 10 Chovy Plays | Best of 2023

Step-by-Step Guide: Developing Simple Games in Unity for Beginners  

updated at May 09, 2024   1,251  
Are you an aspiring game developer eager to dive into the world of Unity but not sure where to start? Look no further! In this detailed guide,below steps contains the process of developing simple games in Unity,perfect for beginners who are just getting st...

Unveiling Derby Shoes: A Timeless Classic  

updated at May 09, 2024   1,144  
Derby shoes,a timeless classic in the world of footwear,have a fascinating origin story.They trace back to 1815 when General Brassel of Prussia devised a style that would revolutionize shoe design.Unlike its predecessors,Derby shoes feature an "open struct...
Unveiling Derby Shoes: A Timeless Classic

Python Sets  

updated at May 09, 2024   397  
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 different qualities and usage.A set is a collection which is unord...

Python Tuples  

updated at May 09, 2024   727  
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 different qualities and usage.A tuple is a collection which is o...
Python Tuples

Python Dictionaries  

updated at May 09, 2024   819  
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,and have keys and values:Dictionary Items.Dictionary items are ...
Python Dictionaries

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 Arrays  

updated at May 09, 2024   397  
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 len() method to return the length of an array (the number of el...

Python Classes/Objects  

updated at May 09, 2024   597  
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...

Python Iterators  

updated at May 09, 2024   725  
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 Python,an iterator is an object which implements the iterator protoco...

Python Modules  

updated at May 09, 2024   732  
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 the code you want in a file with the file extension .py:Use a Mod...

AP Exams Calculator Policy  

created at May 09, 2024   1,267  
Hey there,fellow brainiacs! Let's talk about something super important for AP exam day - calculators.Yep,those little gadgets can make a big difference,but there are rules you gotta know.So,here's the deal:First off,not all calculators are allowed.There's ...

IU's Concerts: A Thrilling Adventure!  

created at May 03, 2024   1,254  
Hey there, fellow tech-savvy high schoolers! Let me spill some tea on IU's concert domination. If you haven't heard of IU yet, where have you been? She's this amazing singer-songwriter slash actress from South Korea who burst onto the scene back on Septemb...
IU's Concerts: A Thrilling Adventure!

Basic Geometry Formulas in 2-D and 3-D  

updated at Apr 23, 2024   1,345  
Today, we're diving into the world of shapes, sizes, and dimensions with some basic geometry formulas. Now, I know geometry might not sound as flashy as algebra, but trust me, it's like the stealth ninja of mathematics. Let's explore why these formulas are...
Basic Geometry Formulas in 2-D and 3-D

BE'O - Limousine (Prod. GRAY) (Feat. MINO)  

updated at Mar 02, 2024   1,193  
"Limousine" is a song by BE'O, a South Korean rapper, featuring MINO, another prominent figure in the Korean hip-hop scene. Produced by GRAY, a highly acclaimed producer and rapper, the track combines BE'O and MINO's distinct styles with GRAY's signature p...
BE'O - Limousine (Prod. GRAY) (Feat. MINO)

Paloalto (팔로알토) - Want It (원해)  

created at Sep 10, 2022   1,211  
"Want It (원해)" is a song by Paloalto (팔로알토), a prominent figure in the South Korean hip-hop scene known for his skillful lyricism and dynamic flow. The track is likely featured on one of Paloalto's albums or released as a single.Paloalto has been a s...
Paloalto (팔로알토) - Want It (원해)

Worlds 2023 Finals Opening Ceremony Presented by Mastercard ft. NewJeans, HEARTSTEEL, and More!  

updated at Mar 01, 2024   1,223  
Get ready for an electrifying start to the climax of the esports calendar, as Worlds 2023 Finals Opening Ceremony, presented by Mastercard, is set to dazzle fans worldwide. Among the star-studded lineup, the sensational K-pop group NewJeans, featuring Minj...
Worlds 2023 Finals Opening Ceremony Presented by Mastercard ft. NewJeans, HEARTSTEEL, and More!

Boost Your Wi-Fi Signal with a Wi-Fi Repeater  

created at Feb 27, 2024   1,811  
In our fast-paced digital age, a strong and reliable Wi-Fi connection is essential for smooth internet browsing, streaming, gaming, and online communication. If you've ever experienced dead zones or weak signals in certain areas of your home or office, a W...
Boost Your Wi-Fi Signal with a Wi-Fi Repeater

if exist statement in DOS  

created at Feb 26, 2024   1,133  
Explanation:@echo off: This command turns off the display of each command in the batch file as it executes.set filename=myfile.txt: This sets the variable filename to the name of the file you want to check.if exist %filename%: This checks if the file speci...

Navigating the Challenges of New Player Experience in League of Legends  

created at Feb 26, 2024   171  
League of Legends (LoL), a multiplayer online battle arena (MOBA) game developed by Riot Games, boasts a massive player base and an intricate gameplay experience. However, for newcomers venturing into the Summoner's Rift for the first time, the journey can...
Navigating the Challenges of New Player Experience in League of Legends

Java Servlet Example  

created at Feb 19, 2024   1,149  
Creating a quick servlet-based web application involves a few steps. You'll need to set up a development environment, create the necessary project structure, write servlet classes, configure the deployment descriptor (web.xml), and deploy the application t...

Strong Verbs for Academic Writing in Essay  

created at Feb 17, 2024   874  
Verbs are especially important for writing clear essays. Often, you can convey a nuanced meaning simply by choosing the right verb.You should use strong verbs that are precise and dynamic. Whenever possible, you should use an unambiguous verb, rather than ...
Strong Verbs for Academic Writing in Essay

Dataset of California Foodbanks  

created at Jan 28, 2024   1,143  
For AP with WE Service, I decided to develop an app that provides information about local food resources in California by using JAVA and HTML. When users enter the name of city where they are living, it will provide information about food banks or soup kit...

Creating a simple Java Servlet (Web Server Page) with Apache Maven on Microsoft Windows  

created at Jan 28, 2024   1,230  
STEP 1. Install OpenJDK 17https: / / learn.microsoft.com / en-us / java / openjdk / download#openjdk-17 → select microsoft-jdk-17.0.10-windows-x64.msi → Install STEP 2. Install Mavenhttps: / / maven.apache.org / → Download → apache-maven-3.9.6-bin.z...
Creating a simple Java Servlet (Web Server Page) with Apache Maven on Microsoft Windows

Taekwondo Kicks Tutorial  

created at Jan 24, 2024   1,255  
1. The Front Kick (앞 차기, “Ap Chagi”)The front kick is sometimes referred to as the “snap kick,” because of the tremendous speed exerted in this move. It is one of the first kicks taught in Taekwondo, but is often considered as one of the most powerf...
Taekwondo Kicks Tutorial

Grand Finals LoL Worlds 2023 - WBG vs T1  

created at Jan 02, 2024   1,151  
LoL is my soul game and one of the few solutions that heal me.Back in the winter of 2023, there was a LoL Worlds 2023 Final match, which created a still-sweat scene.T1 showed the best sense of play in the final match against Weibo Gaming. Although T1 gave ...
Grand Finals LoL Worlds 2023 - WBG vs T1

Best Computer Science Programs in America, Ranked (2023)  

created at Jul 08, 2022   1,398  
Below is from USNNAME / RANKPEER ASSESSMENT SCOREMassachusetts Institute of TechnologyCambridge, MA#1 in Computer Science (tie)5.0Stanford UniversityStanford, CA#1 in Computer Science (tie)5.0University of Calif...

Machine Learning Types and Programming Languages  

updated at Nov 29, 2023   1,445  
In 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. In Supervised Learning, we are given the data sets and already k...
Machine Learning Types and Programming Languages

What is Java?  

created at Jul 07, 2023   735  
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 in Indonesia, becaue many of the best known events in Indonesian...
What is Java?

What is OTT(Over The Top)?  

created at Jun 17, 2023   589  
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, and satellite television platforms - the mediums through which c...
What is OTT(Over The Top)?


Page: 1 2 3