adbf.sh is adb-flutter command line script that composed with flutter and adb commands. Go to code
- Default behaviour (flutter build + stop app + install app + start app + show logcat of app)
adbf.sh
adbf.sh is adb-flutter command line script that composed with flutter and adb commands. Go to code
adbf.sh| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| //CSS | |
| %UserProfile%\AppData\Local\Mailbird\Store\Store.db |
| certbot certonly --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory --manual-public-ip-logging-ok -d '*.domain.tld' -d domain.tld && \ | |
| certbot --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory --manual-public-ip-logging-ok -d '*.domain.tld' -d domain.tld |
| CREATE FUNCTION `random_datetime_in_range`( | |
| `min_date` TIMESTAMP, | |
| `max_date` TIMESTAMP | |
| ) | |
| RETURNS TIMESTAMP | |
| LANGUAGE SQL | |
| NOT DETERMINISTIC | |
| CONTAINS SQL | |
| SQL SECURITY DEFINER | |
| COMMENT 'Returns new timestamp between %min_data% and %max_date%' |
| SELECT CONCAT('ALTER TABLE ',TABLE_SCHEMA,'.',TABLE_NAME,' CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;') | |
| FROM information_schema.TABLES | |
| WHERE TABLE_SCHEMA = 'db_name'; | |
| # Example Output - Örnek Çıktı: | |
| # ALTER TABLE db_name.table_name CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci; |