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
{"lastUpload":"2020-10-11T07:50:50.908Z","extensionVersion":"v3.4.3"} |
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
{ | |
"data": [ | |
{ | |
"_id": "608a281159277c0a6c189782", | |
"nama_lengkap": "AAA BBB", | |
"nama_startup": "EGroceriees", | |
"jabatan": "CEO", | |
"kota": "KL", | |
"handphone": "85565686", | |
"tahun_berdiri": "2012", |
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
private void handleFilterDuplicate() { | |
this.lists.Clear(); | |
listAll.Items.Clear(); | |
for (int i = 0; i < list1.Items.Count; i++ ) | |
{ | |
string a = list1.Items[i].ToString(); | |
Console.WriteLine(a); | |
if (isNumExist(Int32.Parse(a)) == false) | |
{ |
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
CREATE DATABASE IF NOT EXISTS belajar; | |
USE belajar; | |
DROP TABLE IF EXISTS customers; | |
CREATE TABLE IF NOT EXISTS customers( | |
id int PRIMARY KEY AUTO_INCREMENT, | |
nama VARCHAR(255) NOT NULL, | |
alamat VARCHAR(255) NOT NULL, | |
kota VARCHAR(255) NOT NULL, |
OlderNewer