cattle ranch - fazenda de gado
soybean - soja
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
| docker exec -it <container_id> /bin/bash | |
| docker ps -a --filter "ancestor=nome-da-imagem" |
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
| Linux | |
| grep -rin ./dir/*.ext "foo foo" | |
| PS | |
| Select-String -path .\dir\*.ext -Pattern "foo foo" | |
| Linux | |
| tail -f file | |
| PS | |
| Get-Content -PATH .\file -Wait | |
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
| """Flask extension utility.""" | |
| from flask.sessions import SessionInterface, SessionMixin | |
| from werkzeug.contrib.cache import MemcachedCache | |
| import memcache # Use https://code.launchpad.net/~songofacandy/python-memcached/mixin-threading | |
| def setup_cache(app): | |
| """ | |
| Setup ``app.cache``. |
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 <string.h> | |
| #include <time.h> | |
| char *ret_num_month(char *nm_month); | |
| char *ret_num_month(char *nm_month){ | |
| typedef struct param{ | |
| char *chave; | |
| char *valor; | |
| } param; |
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 <string.h> | |
| int main(){ | |
| printf("%s.%d\n",__FUNCTION__,__LINE__); | |
| char pkg_code[6] = {"20gb"}; | |
| char unity[10]; | |
| char volume[10]; | |
| memset(unity,'\0',sizeof(unity)); |