Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into entrega-projeto
Browse files Browse the repository at this point in the history
  • Loading branch information
Tulio-B committed Sep 9, 2022
2 parents 8637ab2 + 18e4edb commit ce29024
Show file tree
Hide file tree
Showing 34 changed files with 5,419 additions and 11 deletions.
10 changes: 5 additions & 5 deletions labs/2021/05-services/notebook/geoknowledge.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"text": [
"[\n",
" {\n",
" \"place_id\": 117197145,\n",
" \"place_id\": 131665170,\n",
" \"licence\": \"Data \\u00a9 OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright\",\n",
" \"osm_type\": \"way\",\n",
" \"osm_id\": 118482151,\n",
Expand All @@ -53,7 +53,7 @@
" \"class\": \"tourism\",\n",
" \"type\": \"museum\",\n",
" \"importance\": 0.6921686892957473,\n",
" \"icon\": \"https://nominatim.openstreetmap.org/ui/mapicons//tourist_museum.p.20.png\"\n",
" \"icon\": \"https://nominatim.openstreetmap.org/ui/mapicons/tourist_museum.p.20.png\"\n",
" }\n",
"]\n"
]
Expand Down Expand Up @@ -114,7 +114,7 @@
"text": [
"{\n",
" \"version\": \"0.6\",\n",
" \"generator\": \"CGImap 0.8.5 (1711473 spike-07.openstreetmap.org)\",\n",
" \"generator\": \"CGImap 0.8.8 (3136443 spike-06.openstreetmap.org)\",\n",
" \"copyright\": \"OpenStreetMap and contributors\",\n",
" \"attribution\": \"http://www.openstreetmap.org/copyright\",\n",
" \"license\": \"http://opendatacommons.org/licenses/odbl/1-0/\",\n",
Expand Down Expand Up @@ -2665,7 +2665,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -2679,7 +2679,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions labs/2021/05-services/notebook/lab5-base.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -643,7 +643,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions labs/2021/05-services/notebook/lab5-tarefas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -96,7 +96,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
64 changes: 64 additions & 0 deletions labs/2022/01-architectures/solucoes/Tulio-B/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Aluno
* Tulio Bassaco Bustos

## Tarefa 1 - Web Components e Tópicos

~~~html
<dcc-button label="Mundo Política" topic="noticia/mundo/politica" message="política no mundo"></dcc-button>
<dcc-button label="Brasil Política" topic="noticia/brasil/politica" message="política no brasil"></dcc-button>
<dcc-button label="Brasil Dinos" topic="noticia/brasil/dinos" message="dinossauros do brasil"></dcc-button>
<dcc-button label="Bahia Dinos" topic="noticia/bahia/dinos" message="dinosasuros da bahia"></dcc-button>

<dcc-lively-talk character="https://harena-lab.github.io/harena-docs/dccs/tutorial/images/doctor.png" speech="Tenho interesse em " subscribe="noticia/+/politica:speech"></dcc-lively-talk>

<dcc-lively-talk character="https://harena-lab.github.io/harena-docs/dccs/tutorial/images/nurse.png" speech="Tenho interesse em " subscribe="noticia/brasil/#:speech"></dcc-lively-talk>

<dcc-lively-talk speech="Tenho interesse em " subscribe="noticia/#:speech"></dcc-lively-talk>
~~~

![image](imagens/Atividade1.png)

## Tarefa 2 - Web Components e RSS

~~~html
<dcc-rss source="https://www.wired.com/category/science/feed" subscribe="next-science/rss:next" topic="rss/science"></dcc-rss>
<dcc-rss source="https://www.wired.com/category/design/feed" subscribe="next-design/rss:next" topic="rss/design"></dcc-rss>

<dcc-aggregator topic="aggregate/science" quantity="4" subscribe="rss/science"></dcc-aggregator>

<dcc-button label="Ciências Próxima" topic="next-science/rss"></dcc-button>
<dcc-button label="Design Próxima" topic="next-design/rss"></dcc-button>

<dcc-lively-talk character="https://harena-lab.github.io/harena-docs/dccs/tutorial/images/doctor.png" speech="Notícias de ciências" subscribe="aggregate/science:speech"></dcc-lively-talk>

<dcc-lively-talk character="https://harena-lab.github.io/harena-docs/dccs/tutorial/images/nurse.png" speech="Notícia de ciência" subscribe="rss/science:speech"></dcc-lively-talk>

<dcc-lively-talk speech="Notícia de design" subscribe="rss/design:speech"></dcc-lively-talk>
~~~

## Tarefa 3 - Painéis de Mensagens com Timer

~~~html
<dcc-rss source="https://www.wired.com/category/science/feed" subscribe="next-science/rss:next" topic="rss/science"></dcc-rss>
<dcc-rss source="https://www.wired.com/category/design/feed" subscribe="next-design/rss:next" topic="rss/design"></dcc-rss>

<dcc-aggregator topic="aggregate/all" quantity="3" subscribe="rss/#"></dcc-aggregator>

<dcc-timer cycles="10" interval="1000" topic="next-science/rss" subscribe="start/timer:start"></dcc-timer>
<dcc-timer cycles="10" interval="2000" topic="next-design/rss" subscribe="start/timer:start"></dcc-timer>

<dcc-button label="Inicia" topic="start/timer">
</dcc-button>

<dcc-lively-talk character="https://harena-lab.github.io/harena-docs/dccs/tutorial/images/doctor.png" speech="Notícia de ciência" subscribe="rss/science:speech"></dcc-lively-talk>

<dcc-lively-talk character="https://harena-lab.github.io/harena-docs/dccs/tutorial/images/nurse.png" speech="Notícia de design" subscribe="rss/design:speech"></dcc-lively-talk>

<dcc-lively-talk speech="Notícias de ciência e design" subscribe="aggregate/all:speech"></dcc-lively-talk>
~~~

## Tarefa 4 - Web Components Dataflow
> Imagem (`PNG`) do diagrama de componentes (veja exemplo abaixo).
![Diagrama Venda](images/web-composition.png)
>
> Escreva aqui o parágrafo de breve discussão.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion labs/2022/04-mvc/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MVC e Event-driven App
*Lab de Componentização e Reúso de Software 14/08/2021*
*Lab de Componentização e Reúso de Software 20/08/2022*

## Tarefa 1

Expand Down
32 changes: 32 additions & 0 deletions labs/2022/04-mvc/solucoes/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Modelo para Apresentação do Lab04 - MVC

Estrutura de pastas:

~~~
├── README.md <- arquivo apresentando a tarefa
├── images <- arquivos de imagens usadas no documento
└── app <- apps do MIT App Inventor exportados em formato `aia`
~~~

# Aluno
* `<nome completo>`

# Tarefa 1 - App no MIT App Inventor

> Coloque as imagens PNG da captura de seis telas do seu aplicativo:
> * tela 1 - captura da tela completa de design de interface
> * tela 2 - captura de tela do app com nenhum produto selecionado
> * tela 3 - captura de tela do app com primeiro produto selecionado
> * tela 4 - captura de tela do app com segundo produto selecionado
> * tela 5 - compra de um dos produtos efetivada
> * tela 6 - diagrama de blocos do aplicativo
>
> Coloque um link para o arquivo do aplicativo exportado a partir do MIT App Inventor em formato `aia`. Ele estará dentro da pasta `app`.
# Tarefa 2 - Diagrama de Componentes dirigida a Eventos

> Coloque a imagem PNG do diagrama, conforme exemplo a seguir:
>
> ![Diagrama Eventos](images/mit-app-inventor-events.png)
8 changes: 8 additions & 0 deletions labs/2022/05-multilevel/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Composição Multinível, Serviços e REST
*Lab de Componentização e Reúso de Software 03/09/2022*

Elabore um protótipo de uma interface gráfica com um usuário no MIT App Inventor no qual se digite o nome de um romance e o aplicativo mostre dados desse romance. Os dados devem ser recuperados da DBPedia.

Serão considerados pontos de qualidade:
* se a app mostrar a imagem do romance
* se houver tratamento de erros
Loading

0 comments on commit ce29024

Please sign in to comment.