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

Simple JavaScript function to capitalize first letter of a word

Posted on August 25, 2019August 4, 2020 by Habibie

Hi! Previously I was searching for a way to capitalize the first letter of a word in JavaScript. I thought there is built in function/method in JavaScript to do that, but I didn’t find it. So, here is a simple function that I’ve made. To use this function, just call the function with any word…

Read more

How to generate random sentence consisted of random words with PHP

Posted on July 18, 2019August 4, 2020 by Habibie

In this post I’m going to share a simple PHP script to generate random sentence consisted of random pre-defined words. For example I want to show a text saying: “Hi, thank you for visiting my website” several times, but I don’t want repetitively saying exactly that sentence. Then the solution is this program, which can…

Read more

Silly PHP Number Encoder and Decoder Program

Posted on July 16, 2019August 4, 2020 by Habibie

Imagine you are creating a PHP program and you can pass some number parameter in url to retrieve content from your server. Then maybe you are thinking if you let people seeing those numbers in their url, they can change that number to any number to retrieve another content. This program can prevent that. Instead…

Read more

Tutorial on Creating HTML5 and JavaScript Load More Button

Posted on July 2, 2019August 4, 2020 by Habibie

In this video tutorial I’m sharing about how to create “Load More” button in JavaScript to show partial contents of an array variable. Please note that in this technique first I retrieve all the information from server at single shot and store it in single array variable. So load more mechanism is happening on client…

Read more

Creating Greeting Card Maker WebApp with Phaser

Posted on June 6, 2019August 4, 2020 by Habibie

Phaser.js is a good library for creating HTML5 games. However, this time I tried to use Phaser to make a greeting card maker web app. Visit CardU a webapp that I’ve made recently. You can test it and see how it works. Here I will share the source code of index.html and main.js files used…

Read more

How to move an enemy towards the player in Unity3D

Posted on May 11, 2019August 4, 2020 by Habibie

When you make a game, you often need to make enemies that move towards the player. In this video I’ll share some method to move an enemy object towards the player in Unity3D. Watch this video to see how to do it by creating a simple script: And here is the script used on this…

Read more

How to animate a texture in Unity3D

Posted on May 10, 2019August 4, 2020 by Habibie

Instead of animating texture itself, we can animate the coordinate of the texture by script in Unity3D. In this video tutorial I’ll show you how we can animate a texture in Unity3D. Here is the script I used in the video:

Read more

How to disable “Authentication Required” or “Sign In” Pop Up in wp-admin

Posted on April 25, 2019October 1, 2020 by Habibie

Sometimes when I tried to login to my WordPress websites I see a popup asking me to sign in. Well, I tried to enter my WP username and password but it doesn’t work. You can try “human” as username and “password” as its password. After googling around, I found a solution to disable that thing….

Read more

Google Play and Apple Play Store Icon SVG Codes for Web Pages

Posted on March 26, 2019August 4, 2020 by Habibie

The common way to display an image on a web page is showing image files by using <img src=”blabla.jpg”> tag. But the problem is image files are not good enough if you scale up the web page, you will see the pixels. It’s time to use SVG instead image files. This codes I’m going to…

Read more

Preventing multiple same ElectronJS apps to run at single time

Posted on February 20, 2019August 4, 2020 by Habibie

I am building an EelectronJS app and successfully release it as an executable Windows program. But the problem is when the app is already running, if I double-click again that .exe file, the second window of this app is running, but buggy. I don’t want it. So here is the solution:

Read more

How to change WordPress footer text with JavaScript

Posted on February 11, 2019February 15, 2021 by Habibie

There is a common way to edit footer text of a WordPress site theme, it’s by modifying footer.php file. But if you got a new update of your theme, you will lose that, the footer reverted back to the original footer file. But if you put this a few line of JavaScript codes in your…

Read more

How to : Camera Follows Player Smoothly in Unity3D

Posted on January 8, 2019August 4, 2020 by Habibie

Hi, in this video I’ll share with you some useful C# script for your Unity3D game camera so your camera can follow the player’s movements smoothly. Watch this video:

Read more

How to switch between multiple cameras in Unity3D

Posted on January 7, 2019August 4, 2020 by Habibie

Let’s say you have three cameras in your Unity3D scene. So how do you switch between them? In this video I will show you how to do that.

Read more

Ciihuy SMTP Bulk Mail Sender

Posted on January 5, 2019June 6, 2019 by Habibie

I’ve made a web application called Ciihuy SMTP Bulk Mail Sender for sending bulk/mass emails with a single click. But I must say that: We do not collect your input data on our server from this page. However if you have a bulk mail job, your data is stored temporarily on your web browser locally…

Read more

Very Easy and Simple PHP Login and Logout Tutorial

Posted on January 4, 2019August 4, 2020 by Habibie

Login and Logout is a must have feature if you are creating a website. In PHP, I can show you the basic method and mechanism of Login and Logout without any database, at this point. Watch the video tutorial here:

Read more

Easy JavaScript Custom Encryption and Decryption Engine

Posted on January 2, 2019August 4, 2020 by Habibie

Hello again! I’ve created a simple JavaScript program that can encrypt and decrypt basic texts. Watch this: And of course, this is the source code:

Read more

Basic Unity and Client-Server Request-Response with PHP

Posted on December 31, 2018August 4, 2020 by Habibie

In order to make our Unity game connected to the online world, it must be able to send requests to and get responses from our server. In this tutorial you will see the basic way to make our game able to communicate to PHP server side script.

Read more

Creating a Menu System that Hides and Shows Divs and Sections

Posted on December 30, 2018August 4, 2020 by Habibie

Hi, This is a short tutorial about creating simple menu system that if you click a menu item, it will show a div and hide another divs. With using this system you can make a single page web app nicely. Watch the video here:

Read more

How to Export HTML Table to Excel File with JavaScript

Posted on December 29, 2018August 4, 2020 by Habibie

Let’s say we have a huge data in an HTML table. Now we need to export it as an Excel file. What to do? Basically, we can select entire table, copy and paste it into a blank Excel document. Or, if we code it in JavaScript, here how we can achieve that. Watch this video:

Read more

How to create and send HTML email from Gmail

Posted on December 20, 2018August 4, 2020 by Habibie

In this video tutorial I will show you how you can create and send an HTML email from Gmail. Here is the source of this HTML email:

Read more

Posts pagination

  • Previous
  • 1
  • …
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • …
  • 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

  • Hover Reveal script for Unity to show and hide object on mouse hover
  • How to Prevent UI Clicks in Unity from “Bleeding Through” to 3D Objects Behind Them
  • 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
© 2026 ThirteeNov | Powered by Superbs Personal Blog theme