Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
| 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, |
| # -*- 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. |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.