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
ac : Acre | |
al : Alagoas | |
ap : Amapá | |
am : Amazonas | |
ba : Bahia | |
ce : Ceará | |
df : Distrito Federal | |
es : Espírito Santo | |
go : Goiás | |
ma : Maranhão |
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
<select name="estado"> | |
<option value="AC">Acre</option> | |
<option value="AL">Alagoas</option> | |
<option value="AM">Amazonas</option> | |
<option value="AP">Amapá</option> | |
<option value="BA">Bahia</option> | |
<option value="CE">Ceará</option> | |
<option value="DF">Distrito Federal</option> | |
<option value="ES">Espírito Santo</option> | |
<option value="GO">Goiás</option> |
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
<select name="month" id="month"> | |
<option value="1">Janeiro</option> | |
<option value="2">Fevereiro</option> | |
<option value="3">Março</option> | |
<option value="4">Abril</option> | |
<option value="5">Maio</option> | |
<option value="6">Junho</option> | |
<option value="7">Julho</option> | |
<option value="8">Agosto</option> | |
<option value="9">Setembro</option> |
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
export default { | |
CONTINUE: 100, | |
SWITCHING_PROTOCOLS: 101, | |
PROCESSING: 102, | |
OK: 200, | |
CREATED: 201, | |
ACCEPTED: 202, | |
NON_AUTHORITATIVE_INFORMATION: 203, | |
NO_CONTENT: 204, | |
RESET_CONTENT: 205, |
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
#!/usr/bin/env bash | |
zip -q file.zip /home/$USER/Downloads/*.pdf | |
curl --request POST --url http://localhost:8080/upload --header 'Content-Type: multipart/form-data' --form [email protected] | |
exit 0 |