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
Code Search AI
Open Chat AI
SQL 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
Export – Import XLSX File in Odoo 10
Import XLSX Files in Odoo Using Openpyxl Technical To import data into Odoo, we need to select the file in .csv or .xlsx format and upload it. To know how to import data into Odoo, check out this blog: How to import data in Odoo In this blog I am going to share a simple way … Continue reading Export – Import XLSX File in Odoo 10
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
Update one column from another column in same table sql
update stuffset TYPE1 = TYPE2where TYPE1 is null; update stuffset TYPE1 = TYPE2where TYPE1 ='Blank';
