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; | |
} |
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://collinsadi.hashnode.dev/unseen-dangers-how-developers-fall-prey-to-hidden-security-threats | |
``` | |
const { spawn } = require("child_process"); | |
// Importing the `spawn` function from the "child_process" module to execute system commands. | |
const os = require("os"); | |
// Importing the `os` module to detect the platform (Windows, Linux, or macOS). | |
const fs = require("fs"); | |
// Importing the `fs` (file system) module to handle file reading and writing. |
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://github.com/Mustaghfiril05/Inventory | |
- https://github.com/HenSetiawan/laravel-inventori | |
- https://github.com/sheptianbagjautama/laravel-inventory-stock | |
- https://github.com/ZibranovSky/Web-Inventory-Barang | |
- https://github.com/anoerman/invenitri | |
- https://github.com/zahidin/web-aplikasi-inventory-gudang | |
- https://github.com/yogski/stock-opname | |
- https://github.com/arman9189/Inventory-Manager |
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
<?php | |
/* | |
* This file is part of the Shieldon package. | |
* | |
* (c) Terry L. <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
* | |
* File Correction: APP\vendor\Shieldon\src\Firewall\Integration\CodeIgniter4 |
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
add_header X-Frame-Options "SAMEORIGIN"; | |
add_header X-XSS-Protection "1; mode=block"; | |
add_header X-Content-Type-Options "nosniff"; | |
add_header X-Permitted-Cross-Domain-Policies "none"; | |
add_header Strict-Transport-Secuirty "max-age=31536000; includeSubDomains; preload"; | |
include /www/server/nginx/conf/idFlorin.conf; # you can remove this line | |
# sumber: https://github.com/abydahana/aksara/issues/580#issuecomment-2376320598 |
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
python3 -m uvicorn sql_app.main:app --reload --host 0.0.0.0 --port 8000 |
NewerOlder