Skip to content

Instantly share code, notes, and snippets.

View qudongfang's full-sized avatar
😃
Focusing

Dongfang Qu qudongfang

😃
Focusing
  • Dublin, Ireland
  • 06:14 (UTC +01:00)
View GitHub Profile
@qudongfang
qudongfang / gist:10441713
Last active August 29, 2015 13:59
aqueducts_logstash_example.conf
input {
file {
# 详细配置项请参考http://logstash.net/docs/1.3.3/inputs/file
path => "/home/work/local/imas.log"
# 附加自定义字段
# add_field => { "input_a" => "input_a"
# "input_b" => "input_b"
# }
}
@qudongfang
qudongfang / out_forward.rb
Last active August 29, 2015 13:56
fluentd out_forward plugin which forward event stream to astream collector
#
# Fluent
#
# Copyright (C) 2011 FURUHASHI Sadayuki
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
@qudongfang
qudongfang / test.c
Created November 18, 2012 01:58
a bit of code
/*
左“{”,右”}"括号各N个,请打印出所有正确的组合,比如当N=3,{}{}{},{{{}}},等为正确的组合。如果写的代码是recursive,能否用iterative再写一个;反之亦然。
*/
// gcc -std=c99 test.c && ./a.out
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <assert.h>