git checkout -b <branchname>
git add
git commit -m "description of changes"
#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)); |
#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; |
"""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``. |
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 | |
docker exec -it <container_id> /bin/bash | |
docker ps -a --filter "ancestor=nome-da-imagem" |