Skip to content

Instantly share code, notes, and snippets.

View maulanakurnia's full-sized avatar

Maulana Kurnia maulanakurnia

  • PT. Privy Identitas Digital
  • Yogyakarta - Indonesia
  • 06:07 (UTC +07:00)
View GitHub Profile
@maulanakurnia
maulanakurnia / airports.sql
Created January 27, 2023 19:04 — forked from tanerdogan/airports.sql
airports.sql - airport list (total 8800 airport)
This file has been truncated, but you can view the full file.
DROP TABLE IF EXISTS `airports`;
CREATE TABLE IF NOT EXISTS `airports` (
`code` varchar(50) COLLATE utf8_turkish_ci DEFAULT NULL,
`name` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
`cityCode` varchar(50) COLLATE utf8_turkish_ci DEFAULT NULL,
`cityName` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
`countryName` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
`countryCode` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
@maulanakurnia
maulanakurnia / delete_all_tweets.py
Created May 29, 2020 13:45 — forked from vik-y/delete_all_tweets.py
This script will delete all of the tweets in a specified account.
# -*- coding: utf-8 -*-
"""
This script is forked originally from Dave Jeffery. The original implementation
was very slow and deleted around 2 tweets per second. Making it multithreaded I
am able to delete 30-50 tweets per second.
@author: vik-y
----------------------------------------------------------------------------
This script will delete all of the tweets in the specified account.
@maulanakurnia
maulanakurnia / intro.md
Created May 13, 2019 22:41 — forked from derhuerst/intro.md
Installing Git on Linux, Mac OS X and Windows