Skip to content

ThirteeNov

My personal blog about coding and internet

Menu
  • About me
  • About Zofia Kreasi
  • Cart
  • Checkout
  • Making an airplane game from scratch in Unity
  • My account
  • Privacy Policy
  • Privacy Policy – zkLeaderboard
  • Sample Page
  • Shop
  • Tutorials on Learning JavaScript
  • ZKAccounts – Privacy Policy
Menu

A theory about how to make a game with huge map like GTA in Unity

Posted on April 3, 2025April 3, 2025 by Habibie

Creating a huge game map with minimal memory usage and lag, similar to how GTA achieves its expansive worlds, involves a combination of optimization techniques, asset management, and intelligent world streaming. Here are key strategies to help you achieve this in Unity: 1. Level of Detail (LOD) 2. World Streaming (Chunking) 3. Occlusion Culling 4….

Read more

What Are Procedural 3D Models and How to Use Them?

Posted on April 3, 2025 by Habibie

Introduction Procedural 3D models are digital assets generated algorithmically rather than being manually sculpted or modeled. This approach allows for the creation of complex and highly detailed objects that can be adjusted dynamically based on parameters. Procedural modeling is widely used in gaming, architecture, animation, and simulations to generate large-scale environments and objects efficiently. Understanding…

Read more

A simple HTML5 and JavaScript audio player with play time event listener callback

Posted on April 2, 2025April 2, 2025 by Habibie

In this blog post I will share a snippet for you. It is an HTML5 code with some JavaScript functions in it. You can play an mp3 audio file while you see a feedback about what seconds is the audio being played. You can modify the code, for example, to show an alert if the…

Read more

How to program auto youtube live chat reply using AI

Posted on March 29, 2025March 29, 2025 by Habibie

To program an auto-reply system for YouTube Live Chat using AI, follow these steps: 1. Set Up YouTube Live Chat API You need access to the YouTube Data API v3 to retrieve live chat messages. Steps: Get Live Chat ID: Use the following API request: Extract liveChatId from the response. Fetch Live Chat Messages: Make…

Read more

Simple example how to interact with sqlite database in Unity and C#

Posted on March 29, 2025March 29, 2025 by Habibie

Here is a script called SQLiteManager: Explanation: Make sure to import Mono.Data.Sqlite and add the SQLite package to your Unity project (sqlite3.dll for Windows, libsqlite3.so for Android if needed).

Read more

AdMob vs. Unity Ads: Which One is More Profitable for Monetizing Mobile Horror Games?

Posted on March 29, 2025 by Habibie

Monetizing mobile games, especially in the horror genre, requires a well-thought-out strategy. Horror games often have a niche yet highly engaged audience, making ad monetization an essential revenue stream. Two of the most popular ad networks for mobile game developers are Google AdMob and Unity Ads. But which one is more profitable for monetizing mobile…

Read more

How to automate simple mouse movements and clicks

Posted on March 28, 2025March 28, 2025 by Habibie

You can automate simple mouse movements and clicks repeatedly in Windows using various tools and programming languages. Here are some methods: 1. Using AutoHotkey (AHK) AutoHotkey is a lightweight scripting language for automating Windows tasks. Steps: 2. Using Python with PyAutoGUI If you prefer Python, you can use the pyautogui library. Steps: Run the script:…

Read more

Simple python trainable AI program for beginners

Posted on March 28, 2025March 28, 2025 by Habibie

Here’s a simple trainable AI program using Python that utilizes a basic machine learning model. This example demonstrates a text classifier using the sklearn library, where the AI can be trained to classify text into different categories. This program: Try running the script and entering words like “hello” or “bye” to see how it predicts…

Read more

Trainable AI-Based Expert Advisor for MT4

Posted on March 28, 2025March 28, 2025 by Habibie

How This Works: Step 1: MQL4 Expert Advisor This EA will interact with an external AI model by saving market data and reading AI-generated signals. Step 2: Python AI Model This Python script reads the market data, makes a prediction, and saves a trading signal for MQL4 to use. Step 3: Training the AI Model…

Read more

Is it okay to publish square aspect ratio video on youtube?

Posted on March 26, 2025March 26, 2025 by Habibie

Yes, you can publish a square (1:1 aspect ratio) video on YouTube, but there are some things to consider: ✅ Pros of Square Videos on YouTube ❌ Cons of Square Videos on YouTube 🔥 Best Use Cases for Square Videos on YouTube 📌 Alternative: Consider 4:5 Aspect Ratio If your goal is mobile optimization, the…

Read more

How to show a loop video as background image in your html page

Posted on March 26, 2025March 26, 2025 by Habibie

I’m sharing an HTML and CSS code to show a page with a video that is playing in loop as background image. Here is the HTML and CSS code:

Read more

How to Start Selling macOS Software

Posted on March 25, 2025March 25, 2025 by Habibie

The macOS ecosystem presents a great opportunity for developers to create and sell software, whether as standalone apps or through the Mac App Store. However, successfully launching and monetizing macOS software requires strategic planning, development expertise, and an understanding of Apple’s ecosystem. Here’s a step-by-step guide to help you get started. 1. Research the Market…

Read more

How to Determine What 3D Model is Good to Make and Sell Online

Posted on March 25, 2025March 25, 2025 by Habibie

The market for 3D models is booming, with increasing demand across industries such as gaming, animation, augmented reality (AR), virtual reality (VR), architecture, and 3D printing. However, not all 3D models sell well. To maximize success, you need to determine which models are profitable to create and sell. Here are key factors to consider: 1….

Read more

How to Make Money with a Mac: Opportunities Not Available on Windows

Posted on March 23, 2025March 23, 2025 by Habibie

When it comes to making money using a computer, both Mac and Windows offer numerous opportunities. However, Mac computers provide certain exclusive advantages that are either unavailable or harder to achieve on Windows machines. Here are some unique ways you can leverage a Mac to generate income that Windows users may struggle with. 1. Developing…

Read more

A simple HTML and JavaScript program to play a video file with subtitle

Posted on March 20, 2025March 20, 2025 by Habibie

Let’s say you have a video file and an srt subtitle file. This simple HTML program can load those files and play the video with its subtitle:

Read more

Simple HTML and JavaScript program to create a video subtitle and save as srt file

Posted on March 20, 2025 by Habibie

Here’s a simple HTML + JavaScript program that allows you to add subtitle text to an HTML video at specific times and save the result as an .srt file. This program lets users enter subtitles with start and end times, displays them in SRT format, and allows downloading the subtitle file.

Read more

Simple HTML and PHP program to submit a blog post to Google’s Blogger using its API

Posted on March 20, 2025 by Habibie

Here’s an HTML + PHP implementation to submit a blog post to Blogger using the Google Blogger API. You’ll need: Steps: index.html (Front-end Form) <!DOCTYPE html><html lang=”en”><head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Blogger Post Submission</title></head><body> <h2>Submit a Blog Post</h2> <form action=”post.php” method=”post”> <label>Title:</label><br> <input type=”text” name=”title” required><br><br> <label>Content:</label><br> <textarea name=”content” rows=”5″ required></textarea><br><br> <button type=”submit”>Submit…

Read more

Unity C# Third Person Camera Occlusion Script

Posted on March 18, 2025March 18, 2025 by Habibie

Here is a C# script for Unity that ensures a third-person camera moves closer to the player when an object obstructs the view. This script utilizes raycasting to detect occlusion and adjust the camera’s position accordingly. How It Works: You can adjust:

Read more

The must-know AI tools for you to keep updated

Posted on March 18, 2025 by Habibie

AI tools are becoming essential for various industries. Here are some must-know AI tools categorized by their use cases: 1. Chatbots & Conversational AI 2. AI Code Assistants 3. AI Image & Video Generators 4. AI Writing & Content Generation 5. AI Productivity & Automation 6. AI Research & Data Analysis 7. AI Music &…

Read more

Minimum PC Hardware Requirements for a Smooth Unity Game Development Experience

Posted on March 18, 2025 by Habibie

If you’re planning to develop a game using Unity, having a capable PC is essential for a smooth workflow, especially when it comes to resource-intensive processes like light baking. Unity’s Global Illumination (GI) system, particularly when using the Progressive Lightmapper, requires significant computational power to produce high-quality lighting results efficiently. In this article, we’ll discuss…

Read more

Posts pagination

  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • …
  • 20
  • Next
ciihuy2020

Welcome!

  • My YouTube Channel
  • My GitHub Page
  • About me

Categories

  • 3DVista
  • Android
  • Apache
  • C#
  • Cordova
  • Electron & Node JS
  • HTML5, CSS & JavaScript
  • iOS
  • Let's Make Unity Games
  • Misc
  • Photoshop
  • PHP
  • Python
  • Uncategorized
  • Unity
  • WordPress

Recent Posts

  • Make objects like wires and cables easily in Unity using Ciihuy Curved Mesh
  • [SOLVED] Can’t Add Custom Domain to Blogger After Losing CNAME Verification
  • iOS App Icon Generator by CiihuyCom
  • Advanced Blinking Marker Script to show objects position in your game canvas
  • Ciihuy Images Merger – Fast & Easy Online Image Combiner
© 2025 ThirteeNov | Powered by Superbs Personal Blog theme