This file contains 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
version: "3.9" | |
services: | |
# Database instance | |
mssql: | |
image: mcr.microsoft.com/azure-sql-edge:latest | |
volumes: | |
- events_mssql:/var/opt/mssql | |
ports: | |
- 1433:1433 |
This file contains 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
- custom dialog di Hapus kasir | |
- Button sama kotak2nya disesuain panjang sama lebarnya sama app lama | |
- Dibagian detail pesanan ketika menambahkan Produk dan back dan tambahin produk sama (list jd double) | |
- Change email di hide aja | |
- Pas kasir add transaction , tidak muncur report transaction di Owner | |
- Forget Password diperbaikin | |
- Password di manage cashier di samain aja sama di login |
This file contains 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
APP_NAME=AndaMantau | |
APP_ENV=local | |
APP_KEY=base64:BhqSbjQotV5Fk6n5E5bum2FltT2FkwK8eWyOqWsrPhE= | |
APP_DEBUG=true | |
APP_URL=http://localhost/ | |
LOG_CHANNEL=stack | |
LOG_DEPRECATIONS_CHANNEL=null | |
LOG_LEVEL=debug |
This file contains 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
-- Adminer 4.8.1 MySQL 8.0.33 dump | |
SET NAMES utf8; | |
SET time_zone = '+00:00'; | |
SET foreign_key_checks = 0; | |
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO'; | |
SET NAMES utf8mb4; | |
DROP TABLE IF EXISTS `email_change_tokens`; |
This file contains 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="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
</head> | |
<body> | |
<button id="connect">Konek ke NFC</button> | |
<script> |
This file contains 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 | |
class ChainableArray | |
{ | |
// Provided default array | |
protected $defaultArray = [ | |
['1', '2', '3', '4', '5', '6', '7', '8', '9', '0',], | |
['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p',], |
This file contains 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
""" Sample TensorFlow XML-to-TFRecord converter | |
usage: generate_tfrecord.py [-h] [-x XML_DIR] [-l LABELS_PATH] [-o OUTPUT_PATH] [-i IMAGE_DIR] [-c CSV_PATH] | |
optional arguments: | |
-h, --help show this help message and exit | |
-x XML_DIR, --xml_dir XML_DIR | |
Path to the folder where the input .xml files are stored. | |
-l LABELS_PATH, --labels_path LABELS_PATH | |
Path to the labels (.pbtxt) file. |
This file contains 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
"use strict"; | |
/** | |
* @author Defri Indra Mahardika | |
* @since 2024 | |
* Converter CSV to Table HTML | |
*/ | |
class Csv2Table { | |
_elementId = null; | |
_source = null; |
This file contains 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
<!-- program html, pada dasarnya harus diawali dengan <html> --> | |
<!-- dan diakhir dengan </html> --> | |
<!-- untuk merepresentasikan bahwa program yang sedang dibuat adalah program html --> | |
<html> | |
<!-- head berfungsi untuk mengatur informasi terkait halaman --> | |
<!-- biasanya digunakan ketika optimasi SEO --> | |
<!-- referensi: https://thohirdev.com/tutorial/belajar-tag-head-pada-html/#:~:text=tag%20head%20adalah%20informasi%20yang,head%3E%20sebagai%20penutup%20tag%20head. --> | |
<head> | |
<!-- memberikan judul pada tab --> |
This file contains 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 | |
namespace App\Helpers; | |
use Illuminate\Database\Eloquent\Collection; | |
class DecisionTreeClassifier | |
{ | |
protected Collection $dataFrame; | |
protected array $predict; |
NewerOlder