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
import logging | |
import time | |
from logging.handlers import RotatingFileHandler | |
# ---------------------------------------------------------------------- | |
def create_rotating_log(path): | |
""" | |
Creates a rotating log |
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
version: '2' | |
services: | |
mongo-config1: | |
image: mongo | |
container_name: mongo-config1 | |
command: [mongod, --configsvr, --replSet, my-mongo-set, --dbpath, /data/db] | |
ports: | |
- "27019" | |
networks: | |
- mongo-net |
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
version: '2' | |
services: | |
mongo1: | |
image: mongo | |
container_name: mongo1 | |
command: [mongod, --replSet, my-mongo-set, --dbpath, /data/db] | |
networks: | |
- mongo-net | |
mongo2: | |
image: mongo |
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
version: '2' | |
volumes: | |
prometheus_data: {} | |
grafana_data: {} | |
services: | |
swarm_exporter: | |
image: daocloud.io/daocloud/swarm_exporter:0.1.1 | |
labels: | |
io.daocloud.dce.compose.placement.constraints: '["node.role == manager"]' |
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
from pyautogui import * | |
from time import sleep | |
def move(_pos, _now): | |
if _pos == 'left' and _now == 'left': | |
typewrite(['left']) | |
typewrite(['left']) | |
elif _pos == 'left' and _now == 'right': | |
typewrite(['right']) |
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
from twython import Twython, TwythonError | |
import time | |
import sys | |
APP_KEY = '' | |
APP_SECRET = '' | |
OAUTH_TOKEN = '' | |
OAUTH_TOKEN_SECRET = '' | |
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET) |
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
#include <stdio.h> | |
int main() | |
{ | |
char *str = "HelloWorld"; | |
int a = *(int *)str; | |
if (a == 0x6c6c6548) | |
printf("Little endian\n"); | |
else if (a == 0x48656c6c) | |
printf("Big endian\n"); | |
return 0; |
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
#include <stdio.h> | |
#include <opencv\cv.h> | |
#include <opencv\cxcore.h> | |
#include <opencv\highgui.h> | |
int main() | |
{ | |
IplImage* pFrame = NULL; | |
IplImage* pFrameNew = NULL; |
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
#include <stdio.h> | |
#include <time.h> | |
#include <cv.h> | |
#include <highgui.h> | |
int main() | |
{ | |
IplImage *img = cvCreateImage(cvSize(5000, 5000), IPL_DEPTH_8U, 1); | |
cvZero(img); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <cv.h> | |
#include <highgui.h> | |
#include <iostream> | |
#include <queue> |
NewerOlder