Skip to content

Instantly share code, notes, and snippets.

View gusmantap's full-sized avatar
🎯
Focusing

gusmantap

🎯
Focusing
  • Denpasar, Bali.
View GitHub Profile
{"lastUpload":"2020-10-11T07:50:50.908Z","extensionVersion":"v3.4.3"}
@gusmantap
gusmantap / sample.json
Created May 20, 2021 09:50
sample.json
{
"data": [
{
"_id": "608a281159277c0a6c189782",
"nama_lengkap": "AAA BBB",
"nama_startup": "EGroceriees",
"jabatan": "CEO",
"kota": "KL",
"handphone": "85565686",
"tahun_berdiri": "2012",
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)
{
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,