-
Create a new
google-chrome.desktop
file using Chrome's default:cp /usr/share/applications/google-chrome.desktop ~/.local/share/applications/google-chrome.desktop
-
Edit the
google-chrome.desktop
file that was just created:
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
codigo | nome | codigo_uf | |
---|---|---|---|
5200050 | Abadia de Goiás | 52 | |
3100104 | Abadia dos Dourados | 31 | |
5200100 | Abadiânia | 52 | |
3100203 | Abaeté | 31 | |
1500107 | Abaetetuba | 15 | |
2300101 | Abaiara | 23 | |
2900108 | Abaíra | 29 | |
2900207 | Abaré | 29 | |
4100103 | Abatiá | 41 |
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
codigo | nome | sigla | codigo_regiao | |
---|---|---|---|---|
12 | Acre | AC | 1 | |
27 | Alagoas | AL | 2 | |
16 | Amapá | AP | 1 | |
13 | Amazonas | AM | 1 | |
29 | Bahia | BA | 2 | |
23 | Ceará | CE | 2 | |
53 | Distrito Federal | DF | 5 | |
32 | Espírito Santo | ES | 3 | |
52 | Goiás | GO | 5 |
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
codigo | nome | sigla | |
---|---|---|---|
5 | Centro-Oeste | CO | |
2 | Nordeste | NE | |
1 | Norte | N | |
3 | Sudeste | SE | |
4 | Sul | S |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <errno.h> | |
int str_to_int(char *str) | |
{ | |
int base = 10; | |
char *end_ptr; | |
errno = 0; |
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
SELECT SETVAL('table_pkcolumn_seq', (SELECT MAX(pkcolumn) FROM public.table)); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
char *get_str(void) | |
{ | |
char *str = malloc(sizeof (char)); | |
if (!str) { | |
printf("\nUnable to allocate memory.\n"); |