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
/** | |
* TODO | |
* 1. Buatlah variabel dengan nama restaurant yang object dengan ketentuan berikut: | |
* - Memiliki properti bernama "name" | |
* - Bertipe data string | |
* - Bernilai apa pun, asalkan tidak string kosong atau null. | |
* - Memiliki properti bernama "city" | |
* - Bertipe data string | |
* - Bernilai apa pun, asalkan tidak string kosong atau null. | |
* - Memiliki properti "favorite drink" |
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
[UPDATED 2019] | |
Kumpulan Course dari Udemy untuk belajar tentang JavaScript dan beberapa frameworknya. | |
Untuk memahami pembuatan aplikasi web dengan teknologi serba JavaScript depan belakang (Fullstack JavaScript + CSS + HTML) yang mana saat ini mulai banyak dipakai saat ini. | |
Setiap beberapa waktu dalam seminggu, course-course ini mendapat diskon harga, sehingga harganya lebih murah dari hari-hari biasa. | |
Beberapa pilihannya untuk JavaScript Backend Node.js : | |
https://www.udemy.com/the-complete-nodejs-developer-course-2/ | |
https://www.udemy.com/nodejs-the-complete-guide/ |
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 | |
/* Just 4 Fun | |
API kode POS Indonesia | |
by iBacor.com */ | |
function kode_pos($q){ | |
// array untuk output | |
$result = array(); |
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
""" | |
edges.py: Canny, Prewitt and Sobel Edge detection using opencv | |
""" | |
__author__ = "K.M. Tahsin Hassan Rahit" | |
__email__ = "[email protected]" | |
import cv2 | |
import numpy as np | |
img = cv2.imread('messi5.jpg') |