import json
import requests
Exigir que empresas obtenham consentimento informado dos usuários antes de coletar, armazenar ou processar seus dados pessoais para fins de IA.
As empresas devem divulgar claramente quais dados pessoais estão coletando, como estão sendo utilizados e por quanto tempo serão armazenados.
This file contains 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
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
[advice] | |
statusHints = false | |
[user] | |
name = Michel Wilhelm | |
email = [email protected] |
This file contains 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
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
process = git-lfs filter-process | |
required = true | |
[advice] | |
statusHints = false | |
[user] | |
name = Nome da Criatura | |
email = [email protected] |
This file contains 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
file content here |
I hereby claim:
- I am imakecodes on github.
- I am imakecodes (https://keybase.io/imakecodes) on keybase.
- I have a public key ASCR-02x0DLEE4bt4CA8gxS0zQP4ygTZ0TVU4ZsNv8V1qQo
To claim this, I am signing this object:
This file contains 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
{ | |
"basics": { | |
"name": "Michel Wilhelm", | |
"label": "Fullstack Developer", | |
"picture": "", | |
"email": "[email protected]", | |
"website": "https://github.com/imakecodes", | |
"summary": "Developer since 2008 working with web", | |
"profiles": [ | |
{ |
This file contains 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
import React, { useState, useEffect } from 'react'; | |
import clsx from 'clsx'; | |
import validate from 'validate.js'; | |
import { makeStyles } from '@material-ui/styles'; | |
import { | |
Button, | |
Card, | |
CardActions, | |
CardContent, | |
TextField, |
This file contains 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
import requests | |
import os | |
import shutil | |
import pendulum | |
base_url = "https://vidadeprogramador.com.br/uploads/" | |
comic_id = 2074 | |
exit = False | |
year = "2020" |
This file contains 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
from bisect import bisect | |
from random import random | |
def weighted_choice(choices): | |
if not choices: | |
return None | |
values, weights = zip(*choices) | |
total = 0 |
NewerOlder