Posts

About Me - SAT3D

Image
Photo Taken in IRCITE event at Bulacan State University  About Me: Extended   Back to Main My name is Luke Satriani Felarca. I am a 3D artist and multimedia creator with a strong focus on asset creation, sculpting, animation, and video editing. I’m currently in my third year of college, majoring in 3D modeling and video editing. Ever since I was a child, sketching has been a natural part of my life. I sketched on paper, on walls, in notebooks—anywhere I could. That love for drawing eventually led me to explore digital tools, and everything changed when I discovered 3D space. In 2020, during the early days of the pandemic, I began teaching myself Blender. It opened up an entirely new world where I could build anything I imagined. Over time, I developed a deep understanding of modeling clean, game-ready assets and animating them with purpose. Later, I expanded into sculpting, using both Blender and ZBrush to push my characters to the next level. My workflow is rooted in combini...

Software Proficiency

Image
Software Proficiency Back to Main           I use Blender mainly for 3D asset creation, especially props and environments, where clean topology and optimization matter most. For character sculpting, I rely on ZBrush—it gives me better control for high-detail organic models. When sculpting, I often switch between Blender and ZBrush to balance flexibility and precision.         For video editing, I use Microsoft Clipchamp to cut, arrange, and sync my scenes. Once the base edit is done, I refine visuals using Canva, especially for overlays or text. In photo editing, I blend Photoshop CC 2019 and Canva depending on the task—Photoshop for advanced corrections, and Canva for faster layout work.

SAT3D - Skill and Experience

Image
 My Skills and Experience BACK TO MAIN           My journey into digital art began with Photoshop, which I first explored during my earlier school years. Though I took a break, I returned to it seriously around 2023–2024 to refine my graphic design skills. During the early days of the pandemic in 2020–2021, I discovered Blender, which quickly became my main tool for 3D modeling. Over the years, I developed a strong foundation in clean topology, asset optimization, and short 3D animations. In 2020, I also started using Canva, which I’ve consistently used for layout design and visual content. When I entered college in 2023, I began editing videos with Microsoft Clipchamp, improving my storytelling and pacing through short-form content. Most recently, from February to May 2025, I trained in ZBrush, expanding my sculpting skills and working on high-detail organic models. This path has helped me grow across multiple creative fields, and I continue to improv...

SAT3D Portfolio

Image
SAT3D: About Me My name is Luke Satriani Felarca.  I am a 3D artist and multimedia creator. I specialize in asset creation, sculpting, animation, and editing. Currently in 3rd year college. Always learning. Always improving. Skills 5 years of 3D modeling experience 3D sculpting (Blender, ZBrush) Short 3D animations Clean topology and optimized assets 2 years of video editing (Microsoft Clipchamp) 2 years of Photoshop CC 2019 3 years of Canva for visual design 3D & Design Editing & Graphics Software Proficiency Blender ZBrush Microsoft Clipchamp Photoshop CC 2019 Canva Education College: 3rd year (Ongoing) Field: Bachelor of Science in Entertainment and Multimedia Computing

Burger Holder

Image
🍔 Meet the Future of Fast Food: The Burger Holder You Never Knew You Needed Tired of messy meals, sauce-stained shirts, and collapsing burgers? Say hello to your new best friend — the [Your Brand Name] Burger Holder , the revolutionary accessory that’s changing the way we eat, one bite at a time. 🧠 Why the Burger Holder Exists Let’s face it: burgers weren’t built for modern life. Between juggling your phone, a drink, or working at your desk, holding a burger should be simple—not a struggle. That’s why we created the Burger Holder : a smart, ergonomic solution to keep your burger intact and your hands mess-free. ✅ Key Features Anti-Drip Shielding: No more sauces running down your wrist. Flexi-Grip Design: Expands and contracts as you eat, keeping the burger tightly held from the first bite to the last. One-Handed Comfort: Browse, game, or text while you munch—no awkward burger balancing acts. Eco-Friendly Materials: Reusable, dishwasher-safe, and made with food...

WHAT IS SQL?

Image
WHAT IS SQL?                          Structured Query Language, or SQL for short, is a domain-specific programming language used in relational database management and manipulation. It is commonly used for operations such data querying, updating, adding, and removing in a database. It is a standard language for interfacing with relational database management systems (RDBMS). The main purpose of SQL is to query data from databases. SELECT queries can be used to extract certain data from one or more tables. Additionally, it is used to build and maintain a database's structure, which includes defining relationships between tables, setting constraints, and creating and modifying tables (CREATE TABLE, ALTER TABLE).  SQL is frequently used to communicate with databases and retrieve or update data in the backend of web applications.                    ...

Manipulating Data

Image
Manipulating Data by Luke Satriani D. Felarca DATA DEFINITION LANGUAGE -  SQL's Data Definition Language (DDL) subset. It is a language used to describe data and the connections between it in a database. To: Maintain a copy of the database structure. You may create DDL for database objects in a script. By interacting with descriptions of the database schema, it is used to construct and alter the structure of objects in a database. DDL instructions, as opposed to data manipulation language (DML) commands, are used to change the database structure, such as by adding new tables or objects with all of their properties (data type, table name, etc.) INTERACTIVE DATA MANIPULATION LANGUAGE - A computer programming language called a data manipulation language (DML) is used to add (insert), remove (delete), and alter (update) data in a database. A DML is frequently a sublanguage of a more general database language like SQL, and it contains some of the language's operators. SELECT R...