├── project-2 ├── weather-app-angular │ ├── src │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── 01d@2x.png │ │ │ ├── 01n@2x.png │ │ │ ├── 02d@2x.png │ │ │ ├── 02n@2x.png │ │ │ ├── 03d@2x.png │ │ │ ├── 03n@2x.png │ │ │ ├── 04d@2x.png │ │ │ ├── 04n@2x.png │ │ │ ├── 09d@2x.png │ │ │ ├── 09n@2x.png │ │ │ ├── 10d@2x.png │ │ │ ├── 10n@2x.png │ │ │ ├── 11d@2x.png │ │ │ ├── 11n@2x.png │ │ │ ├── 13d@2x.png │ │ │ ├── 13n@2x.png │ │ │ ├── 50d@2x.png │ │ │ └── 50n@2x.png │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── today │ │ │ │ ├── today.component.css │ │ │ │ ├── today.component.ts │ │ │ │ └── today.component.html │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── weather.service.ts │ │ │ └── app.component.spec.ts │ │ ├── styles.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── test.ts │ │ └── polyfills.ts │ ├── e2e │ │ ├── tsconfig.json │ │ ├── src │ │ │ ├── app.po.ts │ │ │ └── app.e2e-spec.ts │ │ └── protractor.conf.js │ ├── tsconfig.app.json │ ├── .editorconfig │ ├── tsconfig.spec.json │ ├── browserslist │ ├── tsconfig.json │ ├── .gitignore │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── tslint.json │ └── angular.json └── README.md ├── project-1 ├── chat-app-vue │ ├── src │ │ ├── components │ │ │ ├── LoginForm │ │ │ │ ├── loginform.css │ │ │ │ ├── loginForm.js │ │ │ │ └── index.vue │ │ │ ├── RoomList │ │ │ │ ├── roomlist.css │ │ │ │ ├── index.vue │ │ │ │ └── roomList.js │ │ │ ├── UserList │ │ │ │ ├── userlist.css │ │ │ │ ├── index.vue │ │ │ │ └── userList.js │ │ │ ├── MessageForm │ │ │ │ ├── messageform.css │ │ │ │ ├── index.vue │ │ │ │ └── messageForm.js │ │ │ ├── ChatNavBar │ │ │ │ ├── chatnavbar.css │ │ │ │ ├── index.vue │ │ │ │ └── chatNavBar.js │ │ │ └── MessageList │ │ │ │ ├── messageList.js │ │ │ │ ├── messagelist.css │ │ │ │ └── index.vue │ │ ├── App.vue │ │ ├── router │ │ │ └── index.js │ │ ├── main.js │ │ ├── store │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ └── actions.js │ │ ├── views │ │ │ ├── Login.vue │ │ │ └── ChatDashboard.vue │ │ ├── chatkit.js │ │ └── assets │ │ │ └── css │ │ │ └── loading-btn.css │ ├── .browserslistrc │ ├── babel.config.js │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── .eslintrc.js │ └── package.json └── README.md └── README.md /project-2/weather-app-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-2/weather-app-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-1/chat-app-vue/src/components/LoginForm/loginform.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-1/chat-app-vue/src/components/RoomList/roomlist.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-1/chat-app-vue/src/components/UserList/userlist.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-2/weather-app-angular/src/app/today/today.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-1/chat-app-vue/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /project-1/chat-app-vue/src/components/MessageForm/messageform.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-1/chat-app-vue/src/components/ChatNavBar/chatnavbar.css: -------------------------------------------------------------------------------- 1 | #chat-navbar { 2 | margin-bottom: 15px; 3 | } -------------------------------------------------------------------------------- /project-2/weather-app-angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |
Não deixe de acompanhar mais vídeos Tutoriais como esse!
8 || Umidade | 20 |{{ weather.main.humidity }}% | 21 |
| Pressão Atmosférica | 24 |{{ weather.main.pressure }}hpa | 25 |
| Nascer do Sol | 28 |{{ weather.sys.sunrise * 1000 | date: 'H:mm' }} | 29 |
| Pôr do Sol | 32 |{{ weather.sys.sunset * 1000 | date: 'H:mm' }} | 33 |
| Coordenadas Geográficas | 36 |{{ weather.coord.lat }}, {{ weather.coord.lon }} | 37 |