This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| How to Install aaPanel + Evolution API 2.2.3 on a VPS (Step by Step) | |
| 🚀 Evolution V2 Installation | |
| 1️⃣ System Update and Dependency Installation | |
| Open a terminal and run the following command: | |
| sudo apt-get update ; apt-get install -y apparmor-utils | |
| 2️⃣ Server Name Setting | |
| You can replace manager1 with a name of your choice: | |
| hostnamectl set-hostname manager1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Apakah kamu bisa membuatkan website keuangan RT yang modern dan simpel, mudah di fahami warga dan pengelola, terdapat 3 page ( dashboard, laporan, transaksi). menggunakan wordpress. Dan database menggunakan google spreadsheets. | |
| 1. Page dashboard menampilkan total saldo dan grafik. | |
| 2. Page laporan menampilkan riwayat transaksi terbaru, dan memiliki fitur filter by date , dan juga memiliki export pdf | |
| 3. Page transaksi sebagai page input pemasukan dan pengeluaran. Serta terdapat form input foto untuk menambahkan bukti transaksi. Dan setiap input auto timestamp. | |
| sumber: https://www.facebook.com/groups/371187409719053/?multi_permalinks=3110292945808472&hoisted_section_header_type=recently_seen&__cft__[0]=AZUFHP-J-uxQQzflzTQnn-SAujsljCTSakPyrBEs67ctkwTuBeyxae-o-sFwQhzP4qlLHptCnv9k8RTZp6m8iXr6zZ6j7xbt0dbtAjH4VcUvS2rtiYthC-lNWXtKRrt8ikGxe_Yuq07yA6BX_JfXhJwQ7krajpor2nD5tQ6kg0PEdUf-IehSsnIyJBd1bHNKyK0&__tn__=%2CO%2CP-R |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="id"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Kantin Digital SIMART</title> | |
| <meta name="description" content="Kantin Digital SIMART menyediakan berbagai makanan dan minuman dengan sistem digital yang modern dan praktis."> | |
| <meta name="keywords" content="kantin digital, SIMART, makanan, minuman, belanja online, sistem kantin"> | |
| <meta name="author" content="Sekolah Impian Simart"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| max-width: 800px; | |
| margin: 0 auto; | |
| padding: 20px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| function updateClock() { | |
| const clockElement = document.getElementById("jam"); | |
| const now = new Date(); | |
| const hours = now.getHours().toString().padStart(2, "0"); | |
| const minutes = now.getMinutes().toString().padStart(2, "0"); | |
| const seconds = now.getSeconds().toString().padStart(2, "0"); | |
| clockElement.textContent = `${hours}:${minutes} WIB`; | |
| } | |
| setInterval(updateClock, 1000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DELIMITER // | |
| CREATE PROCEDURE generate_uuid(OUT uuid_value VARCHAR(36)) | |
| BEGIN | |
| SET uuid_value = UUID(); | |
| END // | |
| DELIMITER ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://scribd.vdownloaders.com/ | |
| https://wordtohtml.net/site/index?tour=1 | |
| https://wordtohtml.net/convert/docx-to-html | |
| https://cloudconvert.com/docx-to-html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function checkStatusAktifBpjs() { | |
| var jenis_identitas = $('.jenis_identitas').val(); | |
| if(jenis_identitas=='NIK'){ | |
| var jml_karakter = 16; | |
| var jenis_identitas = 'nik'; | |
| var nomor_asuransi = $('.ktp').val(); | |
| }else{ | |
| var jml_karakter = 13; | |
| var jenis_identitas = 'nomor_kartu'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SOURCE: https://app.klikmedis.com/satusehat/patient/by_nik?nik=NIK&nama=NAMA | |
| function validateKTP(input) { | |
| var ktpValue = input.value; | |
| var errorMessage = document.getElementById('ktpError'); | |
| if (ktpValue.length !== 16) { | |
| errorMessage.style.display = "inline"; | |
| } else { | |
| errorMessage.style.display = "none"; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| location ~* \.(jpg|jpeg|gif|png|bmp|ico|flv|swf|js|css|ttf|woff|woff2) { | |
| add_header Cache-Control public; | |
| add_header Cache-Control must-revalidate; | |
| expires 7d; | |
| } | |
| location ^~ /public/ { | |
| deny all; | |
| } |
NewerOlder