In Part 2 of the WordPress clone tutorial, we’ll use AI to generate code files for the ASP.NET Core backend. Starting with the WordPress.NET.Domain project, we’ll create, validate, and compile the code step-by-step.
Category: Programming
Access beginner to advanced Programming Tutorials covering languages like Python, JavaScript, C/C++, C#, Golang, Java and more. These step-by-step guides help you build practical coding skills, understand core concepts, and create real-world software projects.
Clone a WordPress with ASP.NET and React Part 1: Initialize Project Structure with AI
In the previous article Build a WordPress Clone with ASP.NET Core and React, I designed the project architecture with the help of AI. In this article, we start to initialize Project Structure with AI assistance.
Clone a WordPress with ASP.NET Core and React: An AI-Assisted Development Journey
This project demonstrates how AI can transform traditional software development, making complex architectures accessible and accelerating time-to-market while maintaining professional standards.
How to Export Wide Excel sheet to PDF Without Cutting Columns
Exporting a wide Excel sheet to PDF often results in cut-off columns or unreadable scaling. This guide walks you through key issues and step-by-step solutions to export clean, readable PDFs, whether for reports, sharing, or printing. Ideal for professionals and students handling large datasets in Excel.
Unity in Practice 0014 – Unity 2D Dash and Dash Cooldown with Time.deltaTime
Implementing a smooth dash system in a 2D Unity game involves several key parts: detecting input, moving the player rapidly for a short time (dash), and then preventing repeated dashing by using a cooldown. This tutorial will walk you through building that system with clean, frame-rate-independent code using Time.deltaTime.
Unity in Practice 0013 – Physical Material 2D Introduction
In Unity, a 2D Physics Material (also called Physics Material 2D) is used to define how two 2D objects interact during collisions in the 2D physics engine (Box2D).
Unity in Practice 0012 – Blend Tree in Unity
A Blend Tree is a feature within Unity’s Animator Controller that allows you to smoothly transition between multiple animations based on one or more parameters (like speed, direction, or vertical velocity). It’s ideal for creating fluid and natural character movement.
Unity in Practice 0011 – Player Jump with Ground Check in Unity
To implement a player jump with a condition and ground check in Unity (using C#), you’ll typically use Rigidbody physics and a ground detection method like Physics.Raycast, Collider overlap checks, or Unity’s CharacterController.isGrounded.
Unity in Practice 0010 – Flipping a 2D Character Horizontally in Unity
To fix the left run animation that appears incorrect, you generally don’t need a separate animation for left movement. Instead, use sprite flipping to mirror the existing run animation.
Unity in Practice 0009 – How to Use Sprite Sheets in Unity for 2D Animation and UI
In Unity, a sprite sheet is a single image file that contains multiple smaller graphics (sprites), often used for 2D animation, character states, or tilemaps. It helps improve performance and makes organizing related sprites easier.
Unity in Practice 0008 – Encapsulation and Inspector Access with Unity’s [SerializeField]
In Unity, the [SerializeField] attribute is used to make private fields visible and editable in the Inspector window of the Unity Editor. This allows developers to keep variables encapsulated (i.e., not publicly accessible in code) while still customizing them in the Editor.
Unity in Practice 0007 – Very First Unity C# Code to Move and Jump a 2D Ball
This tutorial walks you through creating a simple Unity project where a 2D ball can move left/right and jump using keyboard input. It’s perfect for beginners who want to learn how to work with physics, input detection, and scripting in Unity.
Unity in Practice 0006 – Very first C# code to demonstrate how to capture input
As outlined in Unity in Practice 0005 – Create C# Script – Wonderful Code See , we created a Ball.cs C# script which allows us to capture keyboard input within the script.
Unity in Practice 0005 – Create C# Script
When you create a new C# script in Unity (e.g., BallScript.cs), Unity automatically generates a default template to help you get started.
Unity in Practice 0004 – Unity Rigidbody
In Unity, a Rigidbody is a component that enables an object to interact with the physics engine. It allows GameObjects to respond to gravity, forces, collisions, and other physical effects, making movement and interaction more realistic.
Unity in Practice 0003 – Unity Editor Windows and Tools
Unity’s Editor is made up of modular windows and tools that can be rearranged, docked, and customized to suit your workflow. Understanding them is essential for efficient development.