├── .gitignore ├── AWS_API_Gateway ├── Trends_API-dev-oas30-apigateway.json ├── Trends_API-dev-oas30-apigateway.yaml ├── Trends_API-dev-oas30-postman.json ├── Trends_API-dev-oas30-postman.yaml ├── Trends_API-dev-oas30.json ├── Trends_API-dev-oas30.yaml ├── Trends_API-dev-swagger-apigateway.json ├── Trends_API-dev-swagger-apigateway.yaml ├── Trends_API-dev-swagger-postman.json ├── Trends_API-dev-swagger-postman.yaml ├── Trends_API-dev-swagger.json └── Trends_API-dev-swagger.yaml ├── AWS_Lambda_Functions_NodeJS ├── getAvailableLocationsByDate-1b39a5ef-28a9-424d-be64-6db9a5078375.zip ├── getAvailableLocationsByDate.yaml ├── getAvailableLocationsByDate_exported_without_nodejs_modules │ ├── db.js │ ├── index.js │ ├── locations.js │ ├── package-lock.json │ ├── package.json │ └── variables.env ├── getTrendsByDateAndLocation-59519c8a-cdf5-406d-b9dc-e8cf47064edc.zip ├── getTrendsByDateAndLocation.yaml └── getTrendsByDateAndLocation_exported_without_nodejs_modules │ ├── db.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── trends.js │ └── variables.env ├── Frontend_Client_Progressive_WebApp_VueJS_Nuxt ├── assets │ ├── README.md │ ├── css │ │ ├── _element.scss │ │ ├── _variables.scss │ │ ├── main.scss │ │ └── tailwind.css │ └── img │ │ └── logo.png ├── components │ ├── Modal │ │ ├── Modal.vue │ │ └── index.js │ ├── README.md │ ├── TrendDetails.vue │ ├── cards │ │ ├── BaseCard.vue │ │ └── TrendCard.vue │ ├── datePicker.vue │ └── layout │ │ ├── MainLayout.vue │ │ └── Tabbar.vue ├── content │ └── hello.md ├── deploy.sh ├── layouts │ ├── README.md │ └── default.vue ├── lib │ ├── factories │ │ └── services.js │ └── services │ │ ├── notification │ │ └── index.js │ │ └── trendsService.js ├── middleware │ ├── README.md │ └── auth.js ├── nuxt.config.js ├── package.json ├── pages │ ├── index.vue │ └── trendingLoader.vue ├── plugins │ ├── README.md │ ├── axios.js │ ├── element-ui.js │ ├── global-components.js │ ├── modal.js │ └── notifications.js ├── static │ ├── README.md │ ├── favicon.ico │ ├── icon.png │ └── sw.js ├── store │ ├── README.md │ └── app.js ├── tailwind.config.js └── yarn.lock ├── Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB ├── Google_Colab.ipynb ├── Google_Colab.py └── Google_Colab_Pure_Python_Script.py ├── README.md ├── docs ├── pdf_slides │ └── Trendr_App_Anonimo.pdf └── tex │ ├── Immagini │ ├── AWS_API_Gateway_Locations.pdf │ ├── AWS_API_Gateway_Trends.pdf │ ├── AWS_Lambda_getAvailableLocationsByDate.pdf │ ├── AWS_Lambda_getTrendsByDateAndLocation.pdf │ ├── Architectura_progetto_AWS.pdf │ ├── Architectura_progetto_AWS_API.pdf │ ├── Architectura_progetto_AWS_Lambda.pdf │ ├── Architectura_progetto_Google_Colab.pdf │ ├── Architectura_progetto_Mobile.pdf │ ├── Architectura_progetto_MongoDB.pdf │ ├── Architectura_progetto_Twitter_API.pdf │ ├── Architectura_progetto_tutto_attivo.pdf │ ├── Fine_Thats_all_folks.jpg │ ├── FrontEnd_TrendrApp.pdf │ ├── FrontEnd_TrendrApp_Apertura_30yearwait.pdf │ ├── FrontEnd_TrendrApp_Scelta_Data.pdf │ ├── FrontEnd_TrendrApp_Scelta_Location.pdf │ ├── FrontEnd_TrendrApp_Scelta_Location_Paese_City.pdf │ ├── FrontEnd_TrendrApp_Scelta_Location_Paese_City_Risultati.pdf │ ├── FrontEnd_TrendrApp_Scelta_Location_Paese_City_Risultati_Scroll.pdf │ ├── Github_Repos.pdf │ ├── Google_Colab_Python_Script_Controllo_duplicato.pdf │ ├── Google_Colab_Python_Script_Database_NoPass.pdf │ ├── Google_Colab_Python_Script_Esecuzione_delle_operazioni.pdf │ ├── Google_Colab_Python_Script_Funzione_Inserimento_Available_Locations_1.pdf │ ├── Google_Colab_Python_Script_Funzione_Inserimento_Available_Locations_2.pdf │ ├── Google_Colab_Python_Script_Funzione_Inserimento_Trends.pdf │ ├── Google_Colab_Python_Script_Funzioni_Connessione_Pulizia.pdf │ ├── Google_Colab_Python_Script_Librerie.pdf │ ├── Google_Colab_Python_Script_Twitter_NoPass.pdf │ ├── Meme_Forgot_to_turn_off_AWS_Instance.jpg │ ├── Meme_Frontender_Backenders_API.jpg │ ├── Meme_Me_A_normal_Function_Lambda.jpg │ ├── Meme_NoSQL.jpg │ ├── Meme_Perfect_Date_YYYY-MM-DD.jpg │ ├── Mobile_Chrome_Ricerca_Scelta_data.jpg │ ├── Mobile_Chrome_Ricerca_Scelta_location_UK_Londra.jpg │ ├── Mobile_Chrome_Ricerca_trends_a_Londra_26_agosto.jpg │ ├── Mobile_Chrome_Trends_list_Lazy_loading_Infinite_scroll.jpg │ ├── Mobile_Firefox_Installazione_Conferma.jpg │ ├── Mobile_Firefox_Installazione_Menu_aggiungi.jpg │ ├── Mobile_Firefox_Ricerca_Scelta_data.jpg │ ├── Mobile_Firefox_Ricerca_Scelta_location_Italia_Milano.jpg │ ├── Mobile_Firefox_Ricerca_trends_a_Milano_31_agosto.jpg │ ├── Mobile_Firefox_Schermata_di_default.jpg │ ├── Mobile_Icona_App_Installata.jpg │ ├── MongoDB_Clusters.pdf │ ├── MongoDB_Database_Collezioni.pdf │ ├── MongoDB_Formato_Locations.pdf │ ├── MongoDB_Formato_Trends.pdf │ ├── Twitter_API_GET_Locations_with_Trends.pdf │ ├── Twitter_API_GET_Trends.pdf │ ├── Twitter_API_Rate_limits.pdf │ ├── Twitter_Trending_Topics.pdf │ ├── osama-saeed-i-C5MR3ZFd8-unsplash_16x9.jpg │ └── trendrapp.github.io.pdf │ └── main.tex ├── images ├── Architectura_progetto_tutto_attivo.png ├── Mobile_Chrome_Ricerca_Scelta_data.jpg ├── Mobile_Chrome_Ricerca_Scelta_location_UK_Londra.jpg ├── Mobile_Chrome_Ricerca_trends_a_Londra_26_agosto.jpg ├── Mobile_Firefox_Installazione_Conferma.jpg ├── Mobile_Firefox_Installazione_Menu_aggiungi.jpg ├── Mobile_Firefox_Ricerca_Scelta_data.jpg ├── Mobile_Firefox_Ricerca_Scelta_location_Italia_Milano.jpg └── Mobile_Firefox_Ricerca_trends_a_Milano_31_agosto.jpg └── trendrapp.github.io ├── 200.html ├── _nuxt ├── 6.86d34c8.js ├── LICENSES ├── app.8df680e.js ├── commons │ └── app.53d4ef9.js ├── fonts │ ├── element-icons.535877f.woff │ └── element-icons.732389d.ttf ├── icons │ ├── icon_120.dc2afe.png │ ├── icon_144.dc2afe.png │ ├── icon_152.dc2afe.png │ ├── icon_192.dc2afe.png │ ├── icon_384.dc2afe.png │ ├── icon_512.dc2afe.png │ └── icon_64.dc2afe.png ├── img │ └── logo.32c4323.png ├── index.20ac804.js ├── manifest.a922240b.json ├── pages │ └── trendingLoader.4e4a889.js ├── runtime.7ff216d.js └── vendors~app.30c20fe.js ├── favicon.ico ├── index.html ├── sw.js └── trendingLoader └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/.gitignore -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-oas30-apigateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-oas30-apigateway.json -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-oas30-apigateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-oas30-apigateway.yaml -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-oas30-postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-oas30-postman.json -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-oas30-postman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-oas30-postman.yaml -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-oas30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-oas30.json -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-oas30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-oas30.yaml -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-swagger-apigateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-swagger-apigateway.json -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-swagger-apigateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-swagger-apigateway.yaml -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-swagger-postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-swagger-postman.json -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-swagger-postman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-swagger-postman.yaml -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-swagger.json -------------------------------------------------------------------------------- /AWS_API_Gateway/Trends_API-dev-swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_API_Gateway/Trends_API-dev-swagger.yaml -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate-1b39a5ef-28a9-424d-be64-6db9a5078375.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate-1b39a5ef-28a9-424d-be64-6db9a5078375.zip -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate.yaml -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/db.js -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/index.js -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/locations.js -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/package-lock.json -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/package.json -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getAvailableLocationsByDate_exported_without_nodejs_modules/variables.env -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation-59519c8a-cdf5-406d-b9dc-e8cf47064edc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation-59519c8a-cdf5-406d-b9dc-e8cf47064edc.zip -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation.yaml -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/db.js -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/index.js -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/package-lock.json -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/package.json -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/trends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/trends.js -------------------------------------------------------------------------------- /AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/variables.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/AWS_Lambda_Functions_NodeJS/getTrendsByDateAndLocation_exported_without_nodejs_modules/variables.env -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/_element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/_element.scss -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/_variables.scss -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/main.scss -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/css/tailwind.css -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/assets/img/logo.png -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/Modal/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/Modal/Modal.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/Modal/index.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/TrendDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/TrendDetails.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/cards/BaseCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/cards/BaseCard.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/cards/TrendCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/cards/TrendCard.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/datePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/datePicker.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/layout/MainLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/layout/MainLayout.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/layout/Tabbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/components/layout/Tabbar.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/content/hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/content/hello.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/deploy.sh -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/layouts/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/layouts/default.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/lib/factories/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/lib/factories/services.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/lib/services/notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/lib/services/notification/index.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/lib/services/trendsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/lib/services/trendsService.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/middleware/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/middleware/auth.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/nuxt.config.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/package.json -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/pages/index.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/pages/trendingLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/pages/trendingLoader.vue -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/axios.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/element-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/element-ui.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/global-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/global-components.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/modal.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/plugins/notifications.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/favicon.ico -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/icon.png -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/static/sw.js: -------------------------------------------------------------------------------- 1 | // THIS FILE SHOULD NOT BE VERSION CONTROLLED 2 | -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/store/README.md -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/store/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/store/app.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/tailwind.config.js -------------------------------------------------------------------------------- /Frontend_Client_Progressive_WebApp_VueJS_Nuxt/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Frontend_Client_Progressive_WebApp_VueJS_Nuxt/yarn.lock -------------------------------------------------------------------------------- /Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB/Google_Colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB/Google_Colab.ipynb -------------------------------------------------------------------------------- /Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB/Google_Colab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB/Google_Colab.py -------------------------------------------------------------------------------- /Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB/Google_Colab_Pure_Python_Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/Google_Colab_Python_Script_Notebook_Twitter_API_Trends_Data_to_MongoDB/Google_Colab_Pure_Python_Script.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/README.md -------------------------------------------------------------------------------- /docs/pdf_slides/Trendr_App_Anonimo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/pdf_slides/Trendr_App_Anonimo.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/AWS_API_Gateway_Locations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/AWS_API_Gateway_Locations.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/AWS_API_Gateway_Trends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/AWS_API_Gateway_Trends.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/AWS_Lambda_getAvailableLocationsByDate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/AWS_Lambda_getAvailableLocationsByDate.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/AWS_Lambda_getTrendsByDateAndLocation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/AWS_Lambda_getTrendsByDateAndLocation.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_AWS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_AWS.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_AWS_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_AWS_API.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_AWS_Lambda.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_AWS_Lambda.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_Google_Colab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_Google_Colab.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_Mobile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_Mobile.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_MongoDB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_MongoDB.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_Twitter_API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_Twitter_API.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Architectura_progetto_tutto_attivo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Architectura_progetto_tutto_attivo.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Fine_Thats_all_folks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Fine_Thats_all_folks.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp_Apertura_30yearwait.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp_Apertura_30yearwait.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Data.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location_Paese_City.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location_Paese_City.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location_Paese_City_Risultati.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location_Paese_City_Risultati.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location_Paese_City_Risultati_Scroll.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/FrontEnd_TrendrApp_Scelta_Location_Paese_City_Risultati_Scroll.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Github_Repos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Github_Repos.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Controllo_duplicato.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Controllo_duplicato.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Database_NoPass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Database_NoPass.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Esecuzione_delle_operazioni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Esecuzione_delle_operazioni.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Funzione_Inserimento_Available_Locations_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Funzione_Inserimento_Available_Locations_1.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Funzione_Inserimento_Available_Locations_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Funzione_Inserimento_Available_Locations_2.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Funzione_Inserimento_Trends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Funzione_Inserimento_Trends.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Funzioni_Connessione_Pulizia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Funzioni_Connessione_Pulizia.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Librerie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Librerie.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Google_Colab_Python_Script_Twitter_NoPass.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Google_Colab_Python_Script_Twitter_NoPass.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Meme_Forgot_to_turn_off_AWS_Instance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Meme_Forgot_to_turn_off_AWS_Instance.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Meme_Frontender_Backenders_API.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Meme_Frontender_Backenders_API.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Meme_Me_A_normal_Function_Lambda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Meme_Me_A_normal_Function_Lambda.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Meme_NoSQL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Meme_NoSQL.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Meme_Perfect_Date_YYYY-MM-DD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Meme_Perfect_Date_YYYY-MM-DD.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Chrome_Ricerca_Scelta_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Chrome_Ricerca_Scelta_data.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Chrome_Ricerca_Scelta_location_UK_Londra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Chrome_Ricerca_Scelta_location_UK_Londra.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Chrome_Ricerca_trends_a_Londra_26_agosto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Chrome_Ricerca_trends_a_Londra_26_agosto.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Chrome_Trends_list_Lazy_loading_Infinite_scroll.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Chrome_Trends_list_Lazy_loading_Infinite_scroll.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Firefox_Installazione_Conferma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Firefox_Installazione_Conferma.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Firefox_Installazione_Menu_aggiungi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Firefox_Installazione_Menu_aggiungi.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Firefox_Ricerca_Scelta_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Firefox_Ricerca_Scelta_data.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Firefox_Ricerca_Scelta_location_Italia_Milano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Firefox_Ricerca_Scelta_location_Italia_Milano.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Firefox_Ricerca_trends_a_Milano_31_agosto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Firefox_Ricerca_trends_a_Milano_31_agosto.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Firefox_Schermata_di_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Firefox_Schermata_di_default.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/Mobile_Icona_App_Installata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Mobile_Icona_App_Installata.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/MongoDB_Clusters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/MongoDB_Clusters.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/MongoDB_Database_Collezioni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/MongoDB_Database_Collezioni.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/MongoDB_Formato_Locations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/MongoDB_Formato_Locations.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/MongoDB_Formato_Trends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/MongoDB_Formato_Trends.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Twitter_API_GET_Locations_with_Trends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Twitter_API_GET_Locations_with_Trends.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Twitter_API_GET_Trends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Twitter_API_GET_Trends.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Twitter_API_Rate_limits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Twitter_API_Rate_limits.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/Twitter_Trending_Topics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/Twitter_Trending_Topics.pdf -------------------------------------------------------------------------------- /docs/tex/Immagini/osama-saeed-i-C5MR3ZFd8-unsplash_16x9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/osama-saeed-i-C5MR3ZFd8-unsplash_16x9.jpg -------------------------------------------------------------------------------- /docs/tex/Immagini/trendrapp.github.io.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/Immagini/trendrapp.github.io.pdf -------------------------------------------------------------------------------- /docs/tex/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/docs/tex/main.tex -------------------------------------------------------------------------------- /images/Architectura_progetto_tutto_attivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Architectura_progetto_tutto_attivo.png -------------------------------------------------------------------------------- /images/Mobile_Chrome_Ricerca_Scelta_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Chrome_Ricerca_Scelta_data.jpg -------------------------------------------------------------------------------- /images/Mobile_Chrome_Ricerca_Scelta_location_UK_Londra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Chrome_Ricerca_Scelta_location_UK_Londra.jpg -------------------------------------------------------------------------------- /images/Mobile_Chrome_Ricerca_trends_a_Londra_26_agosto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Chrome_Ricerca_trends_a_Londra_26_agosto.jpg -------------------------------------------------------------------------------- /images/Mobile_Firefox_Installazione_Conferma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Firefox_Installazione_Conferma.jpg -------------------------------------------------------------------------------- /images/Mobile_Firefox_Installazione_Menu_aggiungi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Firefox_Installazione_Menu_aggiungi.jpg -------------------------------------------------------------------------------- /images/Mobile_Firefox_Ricerca_Scelta_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Firefox_Ricerca_Scelta_data.jpg -------------------------------------------------------------------------------- /images/Mobile_Firefox_Ricerca_Scelta_location_Italia_Milano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Firefox_Ricerca_Scelta_location_Italia_Milano.jpg -------------------------------------------------------------------------------- /images/Mobile_Firefox_Ricerca_trends_a_Milano_31_agosto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/images/Mobile_Firefox_Ricerca_trends_a_Milano_31_agosto.jpg -------------------------------------------------------------------------------- /trendrapp.github.io/200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/200.html -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/6.86d34c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/6.86d34c8.js -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/LICENSES -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/app.8df680e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/app.8df680e.js -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/commons/app.53d4ef9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/commons/app.53d4ef9.js -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/fonts/element-icons.535877f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/fonts/element-icons.535877f.woff -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/fonts/element-icons.732389d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/fonts/element-icons.732389d.ttf -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_120.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_120.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_144.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_144.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_152.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_152.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_192.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_192.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_384.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_384.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_512.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_512.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/icons/icon_64.dc2afe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/icons/icon_64.dc2afe.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/img/logo.32c4323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/img/logo.32c4323.png -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/index.20ac804.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/index.20ac804.js -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/manifest.a922240b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/manifest.a922240b.json -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/pages/trendingLoader.4e4a889.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/pages/trendingLoader.4e4a889.js -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/runtime.7ff216d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/runtime.7ff216d.js -------------------------------------------------------------------------------- /trendrapp.github.io/_nuxt/vendors~app.30c20fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/_nuxt/vendors~app.30c20fe.js -------------------------------------------------------------------------------- /trendrapp.github.io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/favicon.ico -------------------------------------------------------------------------------- /trendrapp.github.io/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/index.html -------------------------------------------------------------------------------- /trendrapp.github.io/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/sw.js -------------------------------------------------------------------------------- /trendrapp.github.io/trendingLoader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablae/Trendr_App/HEAD/trendrapp.github.io/trendingLoader/index.html --------------------------------------------------------------------------------