Creating an animated video using AI involves leveraging AI-powered tools and platforms to simplify the animation process. Here’s a step-by-step guide to help you get started: Step 1: Define Your Concept Storyline: Decide on the story or message you want to convey. Script: Write a clear and concise script for your video. Style: Choose the animation style (e.g.,…
Category: Misc
How to stream your desktop screen to YouTube using just only ffmpeg – No Need OBS!
If you are used to use OBS, well, if you just only want to stream your computer desktop screen to YoTube, you can just use ffmpeg. Make sure you have ffmpeg downloaded and you can run it via CMD. Google it about how to install ffmpeg in Windows and how to run it in CMD….
My remote VNC server keyboard working but mouse not moving [Solved]
Is this thing ever happened to you when you are working and controlling your VPS using VNC but your mouse not working / not moving? If you keyboard still working, you are lucky. Because you can solve this problem easily without restarting your VPS. Press window button on your keyboard and type “device manager” then…
How to download Microsoft HEVCV Codec for free?
I was trying to install GoPro Player on my computer then it asked me to install HEVCV Codec and it was somehow annoyed to me how to get it downloaded and installed. GoPro Player requires a device that’s HEVC-compatible to play HEVC videos. HEVC is a video codec that allows you to save on bitrate…
How to find words between ( and ) symbols in Notepad++
I figured out how to find any words between “(” and “)” symbols in my text files using Notepad++. Just do a regex search like this screenshot: Use this: \(.*?\) in your search dialog and activate Regular Expression radio box. EDIT: Make sure to uncheck “matches newline”; Another example… if we want to find words…
locked by CORS policy: No ‘Access-Control-Allow-Origin’ ???
Working on a simple coding job and facing this red message on dev console: locked by CORS policy: No ‘Access-Control-Allow-Origin’ What to do? I simply make this htaccess file to bypass CORS policy:
Do you need an SVG code of WhatsApp logo? Here it is.
Hi there, I have an SVG code of WhatsApp logo that you can use in your website projects. This WhatsApp logo is vector based, high resolution no matter how far you zoom it in. Here is the code: <svg style=”pointer-events:none; display:block; height=38px; width=38px” width=”38px” height=”38px” viewBox=”0 0 1024 1024″><defs><path id=”htwasqicona-chat” d=”M1023.941 765.153c0 5.606-.171 17.766-.508 27.159-.824…
Useful JavaScript snippet when you are watching that online Videos
Hi guys, I was searching for something on StackOverflow and found this topic. I’m not suggesting you to do it, just educational information, that this JavaScript code is somehow useful. I don’t know how it works technically but it works. It works like an invisible hand to click that button to do that thing… javascript:(function(){setInterval(function()…
How to find duplicated words in Notepad++
To find if you have duplicated words (each line one word, for example), sort all the lines by alphabet, then hit ctrl+f and find the duplicated word using this regex: ^(.?)$\s+?^(?=.^\1$) Viola, you’ll find them.
How to install GUI for your CentOS 7 Virtual Private Server (VPS)
Yay, I googled about this topic, wonderful, I finally did it. To install Gnome GUI on your Cent OS 7 server, do this commands: Then: And then this command to make the computer starts using GUI on next boot: Then reboot it: Coool! That’s all.
How to turn off LiteSpeed cache feature on CPanel
Sometimes our web hosting company enables LiteSpeed cache feature on our CPanel so if we make any change in our website, people will not see the changes directly because they are still accessing a cached version of our website for at least 30 seconds, approximately. For me this thing is annoying, I want to make…
How to open WebP images in Photoshop – WebP Photoshop Plugin
Finally this plugin solved my problem. Usually when I got a webp images downloaded from internet, I take a screenshot of the image and copy and paste it inside Photoshop. But lucky me I found this plugin from this link: https://endurtech.com/how-to-open-webp-files-in-adobe-photoshop/ Extract the file, and find 32 or 64 plugin file, copy and paste it…
How to disable “Authentication Required” or “Sign In” Pop Up in wp-admin
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….
Ciihuy SMTP Bulk Mail Sender
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…
Creating Depth of Field Effect in Blender
Depth of Field effect in 3D rendering adds realism to it. It’s easy how to create this effect in Blender. To create DOF effect in Blender first we need to adjust our camera’s focus distance, then add defocus effect on render node as I’ll show you in this tutorial.
Showing Poly and Vert Statistics in 3Ds Max
If you sell 3D models online, sometimes marketplaces require poly count or triangles count of your object. In 3Ds Max, it’s easy to show that statistics. Press 7 and it will appear in your viewport. If you need more stat details, go to Views > Viewport Configuration > Statistics.
Using Command Prompt to render Blender animations
We don’t need to open Blender to render our animation to make rendering progress faster. After you set everything, close your Blender and run Command Prompt (in Windows), then navigate to your Blender program directory:
Blender quick tips and shortcuts
Working with blender is much faster and easier if you know most of it’s keyboard shortcuts. Here in this post I’m going to list them as much as I can:
Another example for find and replace using regex in Notepad++
In case we have a long text contains a group of numbers followed by dot like 435. blabla, 4546. blablabla, 343432. a text… and we have it so much in a file in a single line text. Then we want to separate them like this:
Selecting any non latin characters in Notepad++
We can select any non latin characters in Notepad++ by using regular expression.