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
Tugas Go Space. | |
1. Slice Go Space, sampe jadi HTML CSS based, integrasikan dengan Vue CLI. | |
2. Fitur yang diharapkan | |
- Login, register. | |
- Hidupkan pengecekan airwaybill / no resi, response pencarian realtime. | |
- Hidupkan fitur pemesanan. Munculkan halaman baru berisi form pengisian pengiriman seperti go send. | |
4. Untuk database manfaatkan Firebase dan tools sejenisnya. | |
5. Bikin admin sederhana, langsung CRUD collection/tabel pemesanan dan user. |
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
server { | |
server_name codepolitan.com www.codepolitan.com; | |
root /var/www/html/codepolitan.com; | |
index index.html index.htm; | |
location / { | |
try_files $uri @prerender; | |
} |
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
<h1>Test</h1> | |
<input type="file" id="input_img" accept="image/*"> | |
<button class="btn-upload">Upload</button> | |
<div class="message"></div> | |
<div class="output"></div> | |
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script> | |
<script> |
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 | |
// Get number | |
function get_one_two_three() { | |
for ($i = 1; $i <= 3; $i++) { | |
yield $i; | |
} | |
} | |
$result = get_one_two_three(); |
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
// Tanpa chaining | |
$kucing = new Hewan(); | |
$kucing->mengeong(); | |
$kucing->makan(); | |
$kucing->tidur(); | |
// Dengan chaining | |
$kucing = new Hewan(); | |
$kucing->mengeong()->makan()->tidur(); |