When Ghibli(ジブリ) Meets AI: Who Owns the Magic?

In recent months, social media has been flooded with captivating images that seem to blur the line between reality and animation. At first glance, they resemble photographs — but look again, and you’ll see dreamlike scenes infused with soft lighting, painterly textures, and that unmistakable Studio Ghibli charm. Welcome to the era of Ghibli-style AI … Read more

Building a .NET Core Web API with Oracle Autonomous Database and Dapper

In this post, we’ll walk through how to build a simple yet robust RESTful API using ASP.NET Core and Oracle Autonomous Database. We’ll integrate Dapper for lightweight ORM functionality and demonstrate how to execute Oracle stored procedures efficiently. Development Environment Oracle Autonomous Database : https://www.oracle.com/autonomous-database/Dapper: https://www.learndapper.com Step 0: Create the Project for .NET Core Web … Read more

Quantum Computing / Cryptography

As quantum computing evolves, so does the urgency to safeguard digital communication against its powerful capabilities. Quantum cryptography, especially Quantum Key Distribution (QKD), is emerging as a next-generation security solution. Here’s a brief overview of six notable U.S. companies engaged in this sector. U.S. Stocks Related to Quantum Cryptography Company Ticker Focus Area IonQ IONQ … Read more

U.S. Small Modular Reactor (SMR)

Driving the Future of Nuclear Energy As the global energy transition accelerates, Small Modular Reactors (SMRs) are emerging as one of the most promising technologies in the clean energy space. Smaller, safer, and more cost-effective than traditional nuclear plants, SMRs are attracting growing interest from governments, investors, and industry players alike. This article explores the … Read more

🚀 Set Up Your Windows Dev Environment in Minutes with [winget]

If you’re a developer or someone who frequently installs programs on Windows, you’re likely familiar with the value of a good package manager. Tools like Chocolatey and Scoop have long been popular, but now there’s a new contender: winget, Microsoft’s official package manager. In this post, we’ll cover everything from what winget is, how to … Read more

Study JavaScript #8 – Prototype Chain

In this article, we’ll dive into one of JavaScript’s core concepts: the prototype chain. If you’ve ever wondered how JavaScript handles inheritance without traditional classes (like in Java or C++), this post is for you! Introduction Unlike Java or C++, which use class-based object-oriented programming, JavaScript follows a prototype-based model. Even though JavaScript now has … Read more

Study JavaScript #7 – Built-in Functions

Introduction JavaScript provides various built-in functions to simplify coding tasks. Some of these functions are highly useful, while others require careful use due to security concerns. Let’s explore them in detail! eval() – Execute a String as Code The eval() function interprets a string as JavaScript code and executes it. Example ⚠️ Why You Should … Read more

Study JavaScript #6 – Operators

Introduction JavaScript operators work slightly differently from those in Java or C, which can sometimes be confusing. Even though they seem simple, it’s beneficial to understand them properly to avoid unexpected results. + Operator (Addition & String Concatenation) The + operator performs addition when both operands are numbers and string concatenation when at least one … Read more