From ac8e3d1fd3a78793b776db67eecebc9ad310d296 Mon Sep 17 00:00:00 2001 From: Michel Metran Date: Tue, 14 Nov 2023 21:53:34 -0300 Subject: [PATCH] Ajustes --- collections/_posts/apps/2000-01-01-scrcpy.md | 30 ++++++++++++---- .../_posts/conda/2000-01-01-conda-envs.md | 24 +++++++++++-- .../_posts/conda/2000-01-01-conda-portable.md | 2 +- .../conda/2000-01-01-conda-problemas.md | 1 - .../_posts/django/2000-01-01-django-data.md | 2 +- .../django/2000-01-01-django-databases.md | 2 +- .../_posts/django/2000-01-01-django-heroku.md | 2 +- .../_posts/django/2000-01-01-django-media.md | 2 +- .../django/2000-01-01-django-model-migrate.md | 2 +- .../django/2000-01-01-django-resources.md | 2 +- .../_posts/django/2000-01-01-django-rest.md | 2 +- .../django/2000-01-01-django-static-files.md | 2 +- .../django/2000-01-01-django-superuser.md | 2 +- .../django/2000-01-01-django-templates.md | 4 ++- .../_posts/linux/2000-01-01-linux-basics.md | 2 +- .../linux/2000-01-01-linux-bluetooth.md | 2 +- .../_posts/linux/2000-01-01-linux-cloud.md | 2 +- .../_posts/linux/2000-01-01-linux-mount.md | 2 +- .../_posts/linux/2000-01-01-linux-nautilus.md | 2 +- .../_posts/linux/2000-01-01-linux-problems.md | 2 +- .../_posts/linux/2000-01-01-linux-rename.md | 2 +- .../_posts/linux/2000-01-01-linux-wine.md | 2 +- .../marketing_digital/2000-01-01-examples.md | 8 ++--- .../2000-01-01-linux-oracle.md | 4 +-- .../2000-01-01-oracle-instances.md | 0 .../acp-399-01/2020-01-01-acp-399-01.md | 16 ++++----- .../2000-01-01-mm-readme.md | 36 +++++++++++++++++++ .../posts_open_geodata/2000-01-01-datageo.md | 1 - .../powerbi/2000-01-01-paths-functions.md | 2 ++ 29 files changed, 116 insertions(+), 46 deletions(-) rename collections/_posts/{linux => oracle}/2000-01-01-linux-oracle.md (96%) rename collections/_posts/{devops => oracle}/2000-01-01-oracle-instances.md (100%) create mode 100644 collections/_posts/posts_minimal_mistakes/2000-01-01-mm-readme.md diff --git a/collections/_posts/apps/2000-01-01-scrcpy.md b/collections/_posts/apps/2000-01-01-scrcpy.md index abf00ab..c79740e 100644 --- a/collections/_posts/apps/2000-01-01-scrcpy.md +++ b/collections/_posts/apps/2000-01-01-scrcpy.md @@ -1,14 +1,13 @@ --- -title: 'ScrCPy' +title: "ScrCPy" date: 2019-06-13T15:34:30-04:00 last_modified_at: 2023-02-02T11:00:00-03:00 -excerpt_separator: '' +excerpt_separator: "" categories: - IT tags: - aplicativos - android - --- Em algum momento quis compartilhar a tela do meu celular com meu PC. Tal função torna-se relevante quando o usuário está desenvolvendo alguma aplicação _android_, ou mesmo para operações que demandam diversas ações do usuário, que são mais práticas com teclado e mouse. @@ -35,7 +34,7 @@ No vídeo [Tela do Android no PC sem App, sem Root! - ScrCPy](https://www.youtub --- -## Instalar +## Como Instalar? ### Ubuntu @@ -51,17 +50,34 @@ sudo apt-get install scrcpy ### Windows -No _windows_ é necessário baixar o arquivo [_scrcpy-win64-v1.25.zip_](https://github.com/Genymobile/scrcpy/releases/tag/v1.25) e descompactar. +#### Padrão + +No _windows_ é necessário baixar o arquivo [_scrcpy-win64-v1.25.zip_](https://github.com/Genymobile/scrcpy/releases/tag/v1.25) (ou mais atual) e descompactar. + +**Obs**: interessante utilizar a última [_release_](https://github.com/Genymobile/scrcpy/releases/). Usualmente será o arquivo _scrcpy-win64-vX.XX.zip_. +{: .notice--info} + +
Uma vez descompactado, basta usar o arquivo executável (extensão _.exe_) que existe dentro da pasta zipada. -> Obs: interessante utilizar a última [_release_](https://github.com/Genymobile/scrcpy/releases/). Usualmente será o arquivo _scrcpy-win64-vX.XX.zip_. +
+ +--- + +#### Choco + +É possível também instalar via [choco](https://community.chocolatey.org/packages/scrcpy). + +``` +choco install scrcpy +```
--- -## Uso +## Como usar? Em um terminal de comando basta diff --git a/collections/_posts/conda/2000-01-01-conda-envs.md b/collections/_posts/conda/2000-01-01-conda-envs.md index 5ec88df..78dd42e 100644 --- a/collections/_posts/conda/2000-01-01-conda-envs.md +++ b/collections/_posts/conda/2000-01-01-conda-envs.md @@ -1,8 +1,8 @@ --- -title: 'Conda: Enviroments' +title: "Conda: Enviroments" date: 2019-06-13T15:34:30-04:00 last_modified_at: 2022-06-28T00:00:00-03:00 -excerpt_separator: '' +excerpt_separator: "" categories: - IT @@ -14,6 +14,10 @@ tags: Comandos para criar e clonar _enviroments_. A grande vantagem de criar um _enviroments_ com todos os _packages_ juntos é que já ocorre a resolução de conflitos das dependências. +
+ +--- + ### Pablo Carreira É o _enviroment_ que mais uso, que tem todas as ferramentas. O nome é uma homenagem a um amigo que publicou um livro sobre uso do _python_ no geoprocessamento. Na tentativa de acompanhar os tutorais, ainda usando o Windows, me deparei com diversos problemas de incompatibilidade entre pacotes, momento em que migrei para o Linux e uso do conda para eliminar esses problemas. @@ -24,6 +28,8 @@ conda create --name pablocarreira-lastest python=3.10 jupyter jupyterlab jupyter
+--- + ### Trade ```bash @@ -32,6 +38,8 @@ conda create --name trade -c conda-forge -c cpaulik -c bioconda -c esri python=3
+--- + ### R ```bash @@ -40,6 +48,8 @@ conda create --name R -c conda-forge -c r r-recommended r-irkernel jupyter jupyt
+--- + ### OneDrive ```bash @@ -48,6 +58,8 @@ conda create --name onedrive-py35 -c conda-forge -c cpaulik -c bioconda -c ddbol
+--- + ### _WebApps_ _Enviroment_ usado para o projeto Django. @@ -58,6 +70,8 @@ conda create --name webapp-py38 -c conda-forge python=3.8 django django-heroku g
+--- + ### Colab _Enviroment_ usado para o projeto Django. @@ -68,6 +82,8 @@ conda create --name colab-py37 -c conda-forge python=3.7 requests pandas geopand
+--- + ### Finanças _Enviroment_ usado para o projeto Django do **Tesouro Direto** @@ -78,6 +94,8 @@ conda create --name td-py38 -c conda-forge -c cpaulik python=3.8 django requests
+--- + ### _Firebase_ _Enviroment_ usado para **pyrebase** @@ -92,6 +110,8 @@ conda install -c modoolar firebase-admin
+--- + ### Wfuzz _Enviroment_ usado para **wfuzz** diff --git a/collections/_posts/conda/2000-01-01-conda-portable.md b/collections/_posts/conda/2000-01-01-conda-portable.md index 38a39a3..43ad188 100644 --- a/collections/_posts/conda/2000-01-01-conda-portable.md +++ b/collections/_posts/conda/2000-01-01-conda-portable.md @@ -1,5 +1,5 @@ --- -title: "Conda: Portable" +title: "Conda: Portable" date: 2019-06-13T15:34:30-04:00 last_modified_at: 2022-06-28T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/conda/2000-01-01-conda-problemas.md b/collections/_posts/conda/2000-01-01-conda-problemas.md index d17037b..b101e94 100644 --- a/collections/_posts/conda/2000-01-01-conda-problemas.md +++ b/collections/_posts/conda/2000-01-01-conda-problemas.md @@ -5,7 +5,6 @@ last_modified_at: 2022-06-28T00:00:00-03:00 excerpt_separator: "" categories: - IT - tags: - python - anaconda diff --git a/collections/_posts/django/2000-01-01-django-data.md b/collections/_posts/django/2000-01-01-django-data.md index e5f4fe4..1a0e74d 100644 --- a/collections/_posts/django/2000-01-01-django-data.md +++ b/collections/_posts/django/2000-01-01-django-data.md @@ -1,5 +1,5 @@ --- -title: "Django: *data*" +title: "Django: data" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/django/2000-01-01-django-databases.md b/collections/_posts/django/2000-01-01-django-databases.md index bcc1731..e97f9c0 100644 --- a/collections/_posts/django/2000-01-01-django-databases.md +++ b/collections/_posts/django/2000-01-01-django-databases.md @@ -1,5 +1,5 @@ --- -title: "Django: *databases*" +title: "Django: databases" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/django/2000-01-01-django-heroku.md b/collections/_posts/django/2000-01-01-django-heroku.md index 826a566..37722c8 100644 --- a/collections/_posts/django/2000-01-01-django-heroku.md +++ b/collections/_posts/django/2000-01-01-django-heroku.md @@ -1,5 +1,5 @@ --- -title: "Django: *Heroku*" +title: "Django: Heroku" date: 2019-06-13T15:34:30-04:00 last_modified_at: 2022-06-28T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/django/2000-01-01-django-media.md b/collections/_posts/django/2000-01-01-django-media.md index fc0cdc6..0278046 100644 --- a/collections/_posts/django/2000-01-01-django-media.md +++ b/collections/_posts/django/2000-01-01-django-media.md @@ -1,5 +1,5 @@ --- -title: "Django: *media*" +title: "Django: media" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 diff --git a/collections/_posts/django/2000-01-01-django-model-migrate.md b/collections/_posts/django/2000-01-01-django-model-migrate.md index 2bbfc97..1f390c9 100644 --- a/collections/_posts/django/2000-01-01-django-model-migrate.md +++ b/collections/_posts/django/2000-01-01-django-model-migrate.md @@ -1,5 +1,5 @@ --- -title: "Django: *model and migrate*" +title: "Django: model and migrate" date: 2019-06-13T15:34:30-04:00 last_modified_at: 2022-06-28T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/django/2000-01-01-django-resources.md b/collections/_posts/django/2000-01-01-django-resources.md index bc506f6..0ec7f0a 100644 --- a/collections/_posts/django/2000-01-01-django-resources.md +++ b/collections/_posts/django/2000-01-01-django-resources.md @@ -1,5 +1,5 @@ --- -title: "Django: *Resources*" +title: "Django: Resources" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/django/2000-01-01-django-rest.md b/collections/_posts/django/2000-01-01-django-rest.md index f52cade..451dbf1 100644 --- a/collections/_posts/django/2000-01-01-django-rest.md +++ b/collections/_posts/django/2000-01-01-django-rest.md @@ -1,5 +1,5 @@ --- -title: "Django: *REST*" +title: "Django: REST" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 diff --git a/collections/_posts/django/2000-01-01-django-static-files.md b/collections/_posts/django/2000-01-01-django-static-files.md index 4c92d29..792f759 100644 --- a/collections/_posts/django/2000-01-01-django-static-files.md +++ b/collections/_posts/django/2000-01-01-django-static-files.md @@ -1,5 +1,5 @@ --- -title: "Django: *staticfiles*" +title: "Django: staticfiles" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 diff --git a/collections/_posts/django/2000-01-01-django-superuser.md b/collections/_posts/django/2000-01-01-django-superuser.md index da568f1..a3a7920 100644 --- a/collections/_posts/django/2000-01-01-django-superuser.md +++ b/collections/_posts/django/2000-01-01-django-superuser.md @@ -1,5 +1,5 @@ --- -title: "Django: *superuser*" +title: "Django: superuser" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 diff --git a/collections/_posts/django/2000-01-01-django-templates.md b/collections/_posts/django/2000-01-01-django-templates.md index 68d2b2b..ed1ac34 100644 --- a/collections/_posts/django/2000-01-01-django-templates.md +++ b/collections/_posts/django/2000-01-01-django-templates.md @@ -1,5 +1,5 @@ --- -title: "Django: *templates*" +title: "Django: templates" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" @@ -52,6 +52,8 @@ Eles serão acessórios de outros que chamar.
+--- + ### Referências - [Django: **builtins**](https://docs.djangoproject.com/en/3.0/ref/templates/builtins/) diff --git a/collections/_posts/linux/2000-01-01-linux-basics.md b/collections/_posts/linux/2000-01-01-linux-basics.md index e554611..023c180 100644 --- a/collections/_posts/linux/2000-01-01-linux-basics.md +++ b/collections/_posts/linux/2000-01-01-linux-basics.md @@ -1,5 +1,5 @@ --- -title: "Linux: *Basics*" +title: "Linux: Basics" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/linux/2000-01-01-linux-bluetooth.md b/collections/_posts/linux/2000-01-01-linux-bluetooth.md index 96f8ab1..ab248f4 100644 --- a/collections/_posts/linux/2000-01-01-linux-bluetooth.md +++ b/collections/_posts/linux/2000-01-01-linux-bluetooth.md @@ -1,5 +1,5 @@ --- -title: "Linux: Bluetooth" +title: "Linux: bluetooth" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 toc: false diff --git a/collections/_posts/linux/2000-01-01-linux-cloud.md b/collections/_posts/linux/2000-01-01-linux-cloud.md index 8a0a8fc..f3dccf9 100644 --- a/collections/_posts/linux/2000-01-01-linux-cloud.md +++ b/collections/_posts/linux/2000-01-01-linux-cloud.md @@ -1,5 +1,5 @@ --- -title: "Linux: Cloud" +title: "Linux: cloud" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/linux/2000-01-01-linux-mount.md b/collections/_posts/linux/2000-01-01-linux-mount.md index 87a49c0..ad54a9a 100644 --- a/collections/_posts/linux/2000-01-01-linux-mount.md +++ b/collections/_posts/linux/2000-01-01-linux-mount.md @@ -1,5 +1,5 @@ --- -title: "Linux: Mount" +title: "Linux: mount" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/linux/2000-01-01-linux-nautilus.md b/collections/_posts/linux/2000-01-01-linux-nautilus.md index 730e8e7..3d231a3 100644 --- a/collections/_posts/linux/2000-01-01-linux-nautilus.md +++ b/collections/_posts/linux/2000-01-01-linux-nautilus.md @@ -1,5 +1,5 @@ --- -title: "Linux: *Shortcuts*" +title: "Linux: shortcuts" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/linux/2000-01-01-linux-problems.md b/collections/_posts/linux/2000-01-01-linux-problems.md index 2ac5def..83ff41c 100644 --- a/collections/_posts/linux/2000-01-01-linux-problems.md +++ b/collections/_posts/linux/2000-01-01-linux-problems.md @@ -1,5 +1,5 @@ --- -title: "Linux: Problems" +title: "Linux: Problems" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 categories: diff --git a/collections/_posts/linux/2000-01-01-linux-rename.md b/collections/_posts/linux/2000-01-01-linux-rename.md index 3cf3a4b..e2e512c 100644 --- a/collections/_posts/linux/2000-01-01-linux-rename.md +++ b/collections/_posts/linux/2000-01-01-linux-rename.md @@ -1,5 +1,5 @@ --- -title: "Linux: *Rename Files*" +title: "Linux: Rename Files" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 categories: diff --git a/collections/_posts/linux/2000-01-01-linux-wine.md b/collections/_posts/linux/2000-01-01-linux-wine.md index 81ff191..2f74cdb 100644 --- a/collections/_posts/linux/2000-01-01-linux-wine.md +++ b/collections/_posts/linux/2000-01-01-linux-wine.md @@ -1,5 +1,5 @@ --- -title: "Linux: Wine" +title: "Linux: wine" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-09-07T00:00:00-03:00 excerpt_separator: "" diff --git a/collections/_posts/marketing_digital/2000-01-01-examples.md b/collections/_posts/marketing_digital/2000-01-01-examples.md index 90b0839..ae56941 100644 --- a/collections/_posts/marketing_digital/2000-01-01-examples.md +++ b/collections/_posts/marketing_digital/2000-01-01-examples.md @@ -1,5 +1,5 @@ --- -title: 'herospark' +title: "Herospark" date: 2023-05-04T00:00:00-03:00 last_modified_at: 2023-05-04T00:00:00-03:00 categories: @@ -8,8 +8,4 @@ tags: - Marketing Digital --- - - -Com a finalidade de remunerar criadores de conteúdo, existem plataformas disponíveis na web que auxiiam você a obter financiamiento _online_. - -- https://herospark.com/ +[HeroSpark.com](https://herospark.com/), com a finalidade de remunerar criadores de conteúdo, existem plataformas disponíveis na web que auxiiam você a obter financiamiento _online_. diff --git a/collections/_posts/linux/2000-01-01-linux-oracle.md b/collections/_posts/oracle/2000-01-01-linux-oracle.md similarity index 96% rename from collections/_posts/linux/2000-01-01-linux-oracle.md rename to collections/_posts/oracle/2000-01-01-linux-oracle.md index 652788e..3f3f7fd 100644 --- a/collections/_posts/linux/2000-01-01-linux-oracle.md +++ b/collections/_posts/oracle/2000-01-01-linux-oracle.md @@ -1,8 +1,8 @@ --- -title: 'Oracle Linux' +title: "Oracle Linux" date: 2023-05-21T15:00:00-03:00 last_modified_at: 2023-05-21T15:00:00-03:00 -excerpt_separator: '' +excerpt_separator: "" categories: - IT tags: diff --git a/collections/_posts/devops/2000-01-01-oracle-instances.md b/collections/_posts/oracle/2000-01-01-oracle-instances.md similarity index 100% rename from collections/_posts/devops/2000-01-01-oracle-instances.md rename to collections/_posts/oracle/2000-01-01-oracle-instances.md diff --git a/collections/_posts/posts_gaema/acp-399-01/2020-01-01-acp-399-01.md b/collections/_posts/posts_gaema/acp-399-01/2020-01-01-acp-399-01.md index cf31660..1010e21 100644 --- a/collections/_posts/posts_gaema/acp-399-01/2020-01-01-acp-399-01.md +++ b/collections/_posts/posts_gaema/acp-399-01/2020-01-01-acp-399-01.md @@ -1,8 +1,8 @@ --- -title: 'ACP 399-01' +title: "ACP 399-01" date: 2022-01-27T12:00:00-03:00 last_modified_at: 2022-01-27T12:00:00-03:00 -excerpt_separator: '' +excerpt_separator: "" toc: false categories: - GAEMA @@ -19,19 +19,19 @@ related: false header: overlay_image: /assets/attachments/gaema/acp-399-01/imgs/olena-sergienko.jpg overlay_filter: 0.5 # same as adding an opacity of 0.5 to a black background - caption: 'Photo by [**Olena Sergienko**](https://unsplash.com/@olenkasergienko?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com)' + caption: "Photo by [**Olena Sergienko**](https://unsplash.com/@olenkasergienko?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com)" actions: - - label: 'GitHub' - url: 'https://github.com/gaemapiracicaba/acp-399-01' + - label: "GitHub" + url: "https://github.com/gaemapiracicaba/acp-399-01" --- A Ação Civil Pública, ajuizada em 2001, apura questões relacionadas as deficiências no tratamento de esgoto do Município de Cordeirópolis. Em 27.11.2017 o Município de Cordeirópolis e MPSP pactuaram Termo de Ajustamento de Conduta (TAC), visando promover: -> **\*a)** a integral cessação do lançamento de esgotos industriais e domésticos 'in natura' nos cursos d’agua da bacia do ribeirão Tatu [...];
-> **b)** à recuperação do manancial do ribeirão Tatu, no tocante a mata ciliar das nascentes [...] e;
-> **c)** à reparação de danos ambientais já ocorridos e que persistirão até o prazo estabelecido para entrada de operação da ETE [...]” (fls. 1653~1700).\* +> **a)** a integral cessação do lançamento de esgotos industriais e domésticos 'in natura' nos cursos d’agua da bacia do ribeirão Tatu [...];\ +> **b)** à recuperação do manancial do ribeirão Tatu, no tocante a mata ciliar das nascentes [...] e;\ +> **c)** à reparação de danos ambientais já ocorridos e que persistirão até o prazo estabelecido para entrada de operação da ETE [...]” (fls. 1653~1700).
diff --git a/collections/_posts/posts_minimal_mistakes/2000-01-01-mm-readme.md b/collections/_posts/posts_minimal_mistakes/2000-01-01-mm-readme.md new file mode 100644 index 0000000..b2f2f4a --- /dev/null +++ b/collections/_posts/posts_minimal_mistakes/2000-01-01-mm-readme.md @@ -0,0 +1,36 @@ +--- +title: "MM Readme" +excerpt_separator: "" +categories: + - Minimal Mistakes +tags: + - teste +--- + +Click [**Use this template**](https://github.com/mmistakes/mm-github-pages-starter/generate) button above for the quickest method of getting started with the [Minimal Mistakes Jekyll theme](https://github.com/mmistakes/minimal-mistakes). + +Contains basic configuration to get you a site with: + +- Sample posts. +- Sample top navigation. +- Sample author sidebar with social links. +- Sample footer links. +- Paginated home page. +- Archive pages for posts grouped by year, category, and tag. +- Sample about page. +- Sample 404 page. +- Site wide search. + +Replace sample content with your own and [configure as necessary](https://mmistakes.github.io/minimal-mistakes/docs/configuration/). + +
+ +--- + +## Troubleshooting + +If you have a question about using Jekyll, start a discussion on the [Jekyll Forum](https://talk.jekyllrb.com/) or [StackOverflow](https://stackoverflow.com/questions/tagged/jekyll). Other resources: + +- [Ruby 101](https://jekyllrb.com/docs/ruby-101/) +- [Setting up a Jekyll site with GitHub Pages](https://jekyllrb.com/docs/github-pages/) +- [Configuring GitHub Metadata](https://github.com/jekyll/github-metadata/blob/master/docs/configuration.md#configuration) to work properly when developing locally and avoid `No GitHub API authentication could be found. Some fields may be missing or have incorrect data.` warnings. diff --git a/collections/_posts/posts_open_geodata/2000-01-01-datageo.md b/collections/_posts/posts_open_geodata/2000-01-01-datageo.md index c2cf8c7..8bb9ba7 100644 --- a/collections/_posts/posts_open_geodata/2000-01-01-datageo.md +++ b/collections/_posts/posts_open_geodata/2000-01-01-datageo.md @@ -11,7 +11,6 @@ tags: - package - datageo - gis - --- O [**DataGeo**](http://datageo.ambiente.sp.gov.br/) é o sistema da ~~Secretaria Estadual de Meio Ambiente do Estado de São Paulo (SMA)~~ [**Secretaria de Infraestrutura e Meio Ambiente (SIMA)**](https://www.infraestruturameioambiente.sp.gov.br) que disponibiliza diversas informações relevantes. Entendo que trata-se do pilar do que é chamado de Infraestrutura de Dados Espaciais Ambientais do Estado de São Paulo. No evento MundoGEO Connect, edição de 2014, foi feita [uma apresentação](https://mundogeoconnect.com/2014/arquivos/palestras/9_mai-a-arlete-ohata.pdf) que explica melhor a concepção do DataGeo. diff --git a/collections/_posts/powerbi/2000-01-01-paths-functions.md b/collections/_posts/powerbi/2000-01-01-paths-functions.md index e563de4..dd796cb 100644 --- a/collections/_posts/powerbi/2000-01-01-paths-functions.md +++ b/collections/_posts/powerbi/2000-01-01-paths-functions.md @@ -94,6 +94,8 @@ BLANK() ) ``` +
+ [DAX's PATH function equivalent Custom Column in Power Query](https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/DAX-s-PATH-function-equivalent-Custom-Column-in-Power-Query/m-p/800386) Uma vez construída essa tabela, é possível criar uma segmentação de dados utilizando um _plugin_ que remove os _blanks_. O plugin se chama [Hierarchy Slicer](https://azurebi-docs.jppp.org/powerbi-visuals/hierarchy-slicer.html).