Skip to content

Instantly share code, notes, and snippets.

View amirul12's full-sized avatar
🏠
Software Engineer at Millennium Information Solution Ltd. (MISL)

MD. AMIRUL ISLAM amirul12

🏠
Software Engineer at Millennium Information Solution Ltd. (MISL)
View GitHub Profile
@amirul12
amirul12 / convert-to-markdown.js
Created August 16, 2023 19:32 — forked from bnb/convert-to-markdown.js
This script converts Google Docs to Markdown files.
/*
Usage:
Adding this script to your doc:
- Tools > Script Manager > New
- Select "Blank Project", then paste this code in and save.
Running the script:
- Tools > Script Manager
- Select "ConvertToMarkdown" function.
- Click Run button.
- Converted doc will be mailed to you. Subject will be "[MARKDOWN_MAKER]...".
@amirul12
amirul12 / MainActivity
Created February 15, 2021 12:08 — forked from sreelallalu/MainActivity
SearchableSpinner
initilize
------------------>
country_spinner = (SearchableSpinner) findViewById(R.id.country_spinner);
adapter setting
------------------------>
_countryAdapter = new ArrayAdapter(this,
R.layout.simple_text, countryList);
country_spinner.setAdapter(_countryAdapter);