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
gem install snapshot; snapshot reset_simulators |
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
AFHTTPSessionManager *manager = [[AFHTTPSessionManager alloc] initWithBaseURL:[NSURL URLWithString:@"https://maps.googleapis.com"]]; | |
manager.responseSerializer = [AFJSONResponseSerializer serializer]; | |
NSDictionary *param = @{@"address": @"str"}; | |
[manager GET:@"/maps/api/geocode/json" | |
parameters:param | |
success:^(NSURLSessionDataTask * _Nonnull task, id _Nonnull responseObject) { | |
// Map your model objects with responseObject |
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
crontab -e | |
0 10 * * * rm -rf ~/Library/Developer/Xcode/iOS\ DeviceSupport | |
crontab -l |
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
# default.custom.yaml | |
# save it to: | |
# ~/.config/ibus/rime (linux) | |
# ~/Library/Rime (macos) | |
# %APPDATA%\Rime (windows) | |
patch: | |
schema_list: | |
- schema: luna_pinyin # 朙月拼音 | |
- schema: luna_pinyin_simp # 朙月拼音 简化字模式 |
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
########################################## | |
# | |
# c.f. http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4 | |
# | |
# Version 2.82 | |
# | |
# Latest Change: | |
# - MORE tweaks to get the iOS 10+ and 9- working | |
# - Support iOS 10+ | |
# - Corrected typo for iOS 1-10+ (thanks @stuikomma) |
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
server { | |
listen 80; | |
access_log /var/log/nginx/api.log; | |
error_log /var/log/nginx/api_error.log; | |
server_name localhost; | |
location ^~ / { | |
proxy_pass http://api_one; | |
} | |
location ^~ /v2 { |
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
FROM node:8 | |
MAINTAINER Yeung Yiu Hung <[email protected]> | |
# Install ClamAV and supervisord | |
# Debian Base to use | |
ENV DEBIAN_VERSION jessie | |
# Install ClamAV and supervisor | |
RUN echo "deb http://http.debian.net/debian/ $DEBIAN_VERSION main contrib non-free" > /etc/apt/sources.list && \ | |
echo "deb http://http.debian.net/debian/ $DEBIAN_VERSION-updates main contrib non-free" >> /etc/apt/sources.list && \ |
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
[supervisord] | |
nodaemon=true | |
[program:clamd] | |
directory=/ | |
command=clamd & | |
autostart=true | |
autorestart=true | |
stderr_logfile=/var/log/supervisor/%(program_name)s.log |
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
import express from "express"; | |
import multer = require("multer"); | |
import * as stream from "stream"; | |
import clamav from "clamav.js"; | |
var upload = multer({ | |
storage: multer.memoryStorage() | |
}); |
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
MONGO_SCRIPT := $(shell cat ./rs_config) | |
start-mongo-rs: | |
@echo "Starting MongoDB Replica Set (localhost:30001)" | |
@docker-compose -f ./mongo_rs/docker-compose.yml up -d | |
@echo Wait... | |
@sleep 15 | |
@docker exec -it mongo_master mongo --eval "$(MONGO_SCRIPT)" | |
@docker exec -it mongo_master mongo --eval "rs.status()" |
OlderNewer