Git常用备忘.md
引自:http://blogread.cn/it/article/6282?f=sa
配置
git config --global user.name "robbin"
git config --global user.email "[email protected]"
git config --global color.ui true
Git常用备忘.md
引自:http://blogread.cn/it/article/6282?f=sa
配置
git config --global user.name "robbin"
git config --global user.email "[email protected]"
git config --global color.ui true
title | tags | notebook | |
---|---|---|---|
pipe 操作注意事项.md |
|
default |
from functools import wraps | |
import errno | |
import os | |
import signal | |
import time | |
# timeout any function in given seconds | |
# solution from http://stackoverflow.com/questions/2281850/timeout-function-if-it-takes-too-long-to-finish | |
class TimeoutError(Exception): |
#include <set> | |
#include <iostream> | |
struct MyStruct | |
{ | |
int kk; | |
bool operator<(const MyStruct & right) const | |
{ | |
return kk > right.kk; |
#define _CRT_SECURE_NO_WARNINGS | |
#include <chrono> | |
#include <string> | |
#include <string.h> | |
#include <iostream> | |
#include <fstream> | |
#include <sys/stat.h> // stat | |
#include <errno.h> // errno, ENOENT, EEXIST |
#include <windows.h> | |
#include <tchar.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <process.h> | |
///////////////////////////1//1///111111/! | |
// crt_ begthrdex. cpp | |
// compile with: /MT |