I hereby claim:
- I am matheustguimaraes on github.
- I am matheusguimaraes (https://keybase.io/matheusguimaraes) on keybase.
- I have a public key ASA65LR1fXhdtiSNdifyfryUDYvH0dvTgaU28pOnWCxHHQo
To claim this, I am signing this object:
| import numpy as np | |
| import pydicom | |
| import matplotlib.pyplot as plt | |
| from pydicom.data import get_testdata_files | |
| print(__doc__) | |
| def get_database(filename, indent=0): | |
| """Go through all items in the dataset and print them with custom format |
I hereby claim:
To claim this, I am signing this object:
Update package lists, download and install NVIDIA driver
sudo apt-get update
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt install nvidia-410
| # Install the necessary packages | |
| pip install ipykernel | |
| # This commands will set the env name as 'env' | |
| python -m ipykernel install --user --name env --display-name "env" |
| -- | |
| <div style="font-weight: bold"> | |
| Matheus T. Guimarães | |
| </div> | |
| <br> | |
| <div> | |
| <div style="font-weight: 500"> | |
| Graduando no Bacharelado em Ciência da Computação | |
| </div> | |
| Universidade Federal do Ceará (UFC) |
Cross-Origin Resource Sharing (CORS) is a mechanism that uses additional HTTP headers to tell browsers to give a web application running at one origin, access to selected resources from a different origin. A web application executes a cross-origin HTTP request when it requests a resource that has a different origin (domain, protocol, or port) from its own. [1]
Lets create a simple Flask server called app.py:
from flask import Flask, jsonify