Video Maker AI

Buat video 🎥 hanya menuliskan teks 📝 dengan bantuan AI. 1. pictory.ai 2. synthesia.io 3. mpost.io 4. makeavideo.studio 5. elai.io 6. steve.ai 7. rawshorts.com 8. flexclip.com 9. invideo.io 10. vidyo.ai 

How to Only Allow Numbers in a Text Box using jQuery

$(document).ready(function () {                      $('.numberonly').keypress(function (e) {                          var charCode = (e.which) ? e.which : event.keyCode                          if (String.fromCharCode(charCode).match(/[^0-9]/g))                              return false;                                          });          }); 

Python Openpyxl

Python Openpyxl Introduction Python provides the Openpyxl module, which is used to deal with Excel files without involving third-party Microsoft application software. By using this module, we can have control over excel without open the application. It is used to perform excel tasks such as read data from excel file, or write data to the excel … Continue reading Python Openpyxl

How to Open, Extract and Create RAR Files in Linux

RAR is the most popular tool for creating and extracting compressed archive (.rar) files. When we download an archive file from the web, we required a rar tool to extract them. RAR is available freely under Windows operating systems to handle compressed files, but unfortunately, rar tool doesn’t pre-installed under Linux systems. This article explains how to install unrar and rar command-line tools using official binary tar … Continue reading How to Open, Extract and Create RAR Files in Linux

Get All Datetime Part in Python

from datetime import datetime currentSecond= datetime.now().second currentMinute = datetime.now().minute currentHour = datetime.now().hour currentDay = datetime.now().day currentMonth = datetime.now().month currentYear = datetime.now().year ========================================================================= from datetime import datetime current_month = datetime.now().strftime('%m') // 02 //This is 0 padded current_month_text = datetime.now().strftime('%h') // Feb current_month_text = datetime.now().strftime('%B') // February current_day = datetime.now().strftime('%d') // 23 //This is also padded current_day_text … Continue reading Get All Datetime Part in Python