This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'> | |
| <qgis version="3.8.0-Zanzibar" maxScale="0" hasScaleBasedVisibilityFlag="0" minScale="1e+08" styleCategories="AllStyleCategories"> | |
| <flags> | |
| <Identifiable>1</Identifiable> | |
| <Removable>1</Removable> | |
| <Searchable>1</Searchable> | |
| </flags> | |
| <customproperties> | |
| <property value="false" key="WMSBackgroundLayer"/> | |
| <property value="false" key="WMSPublishDataSourceUrl"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE qgis PUBLIC 'http://mrcc.com/qgis.dtd' 'SYSTEM'> | |
| <qgis styleCategories="AllStyleCategories" version="3.16.3-Hannover" hasScaleBasedVisibilityFlag="0" minScale="1e+08" maxScale="0"> | |
| <flags> | |
| <Identifiable>1</Identifiable> | |
| <Removable>1</Removable> | |
| <Searchable>1</Searchable> | |
| </flags> | |
| <temporal mode="0" enabled="0" fetchMode="0"> | |
| <fixedRange> | |
| <start></start> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| location /my-jupyter/ { | |
| proxy_pass http://my-jupyter:8000; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
| proxy_set_header X-Forwarded-Proto $scheme; | |
| proxy_read_timeout 90; | |
| add_header Access-Control-Allow-Origin *; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Vagrant.configure("2") do |config| | |
| # Hardware | |
| config.vm.provider "virtualbox" do |vb| | |
| vb.customize ["modifyvm", :id, "--ioapic", "on"] | |
| vb.customize ["modifyvm", :id, "--memory", "4096"] | |
| vb.customize ["modifyvm", :id, "--cpus", "4"] | |
| end | |
| config.vm.box = "ubuntu/focal64" | |
| config.vm.box_check_update = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1° Download dos exemplos | |
| git clone https://github.com/myQLM/myqlm-notebooks | |
| # 2° Executando a imagem com o exemplo baixado | |
| docker run -it --rm -p 8899:8899 -v $PWD/myqlm-notebooks -v $PWD/myqlm-notebooks:/myqlm gfccosta/myqlm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const TestToolbox = { | |
| BasicPrint: (text) => { | |
| console.log(text); | |
| } | |
| } |
OlderNewer