├── .gitattributes ├── .github └── workflows │ ├── daily-run.yml │ └── run-test.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── BotInfo.cs ├── CountQueryData.cs ├── LICENSE.txt ├── OSM_copyright.png ├── OverpassQueryBuilder.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── ReverseGeocodeResult.cs ├── SmallCityBotConfig.json ├── SmallCityMastodonBot.csproj ├── TownsData2.cs ├── images ├── SmallTownBotAvatar_360.jpg ├── SmallTownBotAvatar_Brazil_360.png ├── SmallTownBotAvatar_Canada_360.jpg ├── SmallTownBotAvatar_EmptyFlagTemplate_360.png ├── SmallTownBotAvatar_USA_360.png └── SmallTownBotBanner_480.jpg ├── townsList.json ├── townsList_Brazil.json └── townsList_Canada.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/daily-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/.github/workflows/daily-run.yml -------------------------------------------------------------------------------- /.github/workflows/run-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/.github/workflows/run-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BotInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/BotInfo.cs -------------------------------------------------------------------------------- /CountQueryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/CountQueryData.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OSM_copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/OSM_copyright.png -------------------------------------------------------------------------------- /OverpassQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/OverpassQueryBuilder.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/README.md -------------------------------------------------------------------------------- /ReverseGeocodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/ReverseGeocodeResult.cs -------------------------------------------------------------------------------- /SmallCityBotConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/SmallCityBotConfig.json -------------------------------------------------------------------------------- /SmallCityMastodonBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/SmallCityMastodonBot.csproj -------------------------------------------------------------------------------- /TownsData2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/TownsData2.cs -------------------------------------------------------------------------------- /images/SmallTownBotAvatar_360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/images/SmallTownBotAvatar_360.jpg -------------------------------------------------------------------------------- /images/SmallTownBotAvatar_Brazil_360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/images/SmallTownBotAvatar_Brazil_360.png -------------------------------------------------------------------------------- /images/SmallTownBotAvatar_Canada_360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/images/SmallTownBotAvatar_Canada_360.jpg -------------------------------------------------------------------------------- /images/SmallTownBotAvatar_EmptyFlagTemplate_360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/images/SmallTownBotAvatar_EmptyFlagTemplate_360.png -------------------------------------------------------------------------------- /images/SmallTownBotAvatar_USA_360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/images/SmallTownBotAvatar_USA_360.png -------------------------------------------------------------------------------- /images/SmallTownBotBanner_480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/images/SmallTownBotBanner_480.jpg -------------------------------------------------------------------------------- /townsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/townsList.json -------------------------------------------------------------------------------- /townsList_Brazil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/townsList_Brazil.json -------------------------------------------------------------------------------- /townsList_Canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watmildon/SmallCityMastodonBot/HEAD/townsList_Canada.json --------------------------------------------------------------------------------