Aplikasi Kasir Berbasis Website yang dibuat oleh Betta Dev Indonesia memungkinkan pengguna untuk mengelola toko lebih baik. Apa saya fitur yang tersedia pada Aplikasi Kasir ini:
- Sistem Otentikasi (Untuk Installasi Lokal)
- Hak Akses
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Aloha!</title> | |
<style type="text/css"> | |
* { | |
font-family: Verdana, Arial, sans-serif; | |
} |
<!-- Srouce From: https://jsfiddle.net/user/marksalvania/fiddles/ --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Canvas2PDF</title> | |
<style> | |
body { | |
background: beige; | |
} | |
<?php | |
function imgbb_upload( $image, $filename, $key ) { | |
$cfile = new CURLFile(realpath($image)); | |
$postfields = [ | |
"key" => $key, | |
"image" => $cfile, | |
"name" => $filename | |
]; |
<?php | |
class EAN13 { | |
private $code = null; | |
private $prefix = false; | |
public function __construct ($prefix = false) { | |
$this->prefix = $prefix === false ? false : (string) $prefix; | |
} | |
<?php | |
for ($i = 10; $i <= 100; $i=$i+10) { | |
echo $i . "<br>"; | |
} | |
/* | |
Result: | |
10 | |
20 |
<?php | |
class EAN13 { | |
private $code = null; | |
private $prefix = false; | |
public function __construct ($prefix = false) { | |
$this->prefix = $prefix === false ? false : (string) $prefix; | |
} | |
// checksum calculation for GTIN-8, GTIN-12, GTIN-13, GTIN-14, and SSCC | |
// based on http://www.gs1.org/barcodes/support/check_digit_calculator | |
function isValidBarcode(barcode) { | |
// check length | |
if (barcode.length < 8 || barcode.length > 18 || | |
(barcode.length != 8 && barcode.length != 12 && | |
barcode.length != 13 && barcode.length != 14 && | |
barcode.length != 18)) { | |
return false; | |
} |
<?php | |
function bbw( $kata ) { | |
$Block = array('asu','up','babi','perek'); // kata yang ingin diblok | |
$sensor = preg_replace("/(\b|[0-9_])(".implode('|',$Block).")(\b|[0-9_])/i", '***', $kata); | |
return $sensor; | |
1) Create a branch with the tag | |
git branch {tagname}-branch {tagname} | |
git checkout {tagname}-branch | |
2) Include the fix manually if it's just a change .... | |
git add . | |
git ci -m "Fix included" | |
or cherry-pick the commit, whatever is easier | |
git cherry-pick {num_commit} | |