Skip to content

Instantly share code, notes, and snippets.

View merrickluo's full-sized avatar
💭
I may be slow to respond.

Merrick Luo merrickluo

💭
I may be slow to respond.
View GitHub Profile
@merrickluo
merrickluo / build-mailcore-ios-framework.log
Created April 21, 2016 10:13
build-mailcore-ios-framework.log
working in /Users/merrick/MailCore-Builds/dependencies/workdir/20160421174316
Already on 'develop'
Your branch is up-to-date with 'origin/develop'.
Current branch develop is up to date.
building mailcore2-framework-ios 2 - 5853e43ed590a5119a6c0fab5745dd53bf156403
building iphoneos9.3
[Info] Loading settings for scheme 'mailcore ios' ... (1085 ms)
=== BUILD ===

Keybase proof

I hereby claim:

  • I am merrickluo on github.
  • I am merrickluo (https://keybase.io/merrickluo) on keybase.
  • I have a public key whose fingerprint is CEAD 33F3 2F4A DA94 6C26 2225 157E 6136 39CC E5DC

To claim this, I am signing this object:

# 你可以从该 URL 下载这个配置文件: http://surge.run/config-example/ios.conf
# 用编辑器编辑后,再通过 iTunes, URL, AirDrop 或者 iCloud Drive 复制回 iOS 设备
# Version 2.0
[General]
# 日志等级: warning, notify, info, verbose (默认值: notify)
loglevel = notify
# 跳过某个域名或者 IP 段,这些目标主机将不会由 Surge Proxy 处理。(在 macOS
# 版本中,如果启用了 Set as System Proxy, 那么这些值会被写入到系统网络代理
# 设置中.)
function brew
if [ (count $argv) -ge 2 ]
set other $argv[2..-1]
else
set other ""
end
switch $argv[1]
case install
yaourt -S $other
dns 114.114.114.114
dns 114.114.115.115
proxy_domain facebook.com
proxy_domain fbsbx.com
proxy_domain googlevideo.com
proxy_domain fbcdn.net
proxy_domain akamaihd.net
proxy_domain google.com
proxy_domain googleusercontent.com
@merrickluo
merrickluo / pendadactylrc
Created August 24, 2016 00:31
pendadactylrc
colorscheme solarized-light
set hintkeys=fjdkslaghrueiwoncmv
highlight -a Hint text-transform:uppercase;
set editor="e"
set incfind
set hlfind
set findcase=smart

Hey, thx for the quick reply, my code is a little complex, but I'm sure it's connected when I create the query:

            Logger.i("SendBird", "fetching chat list")
            if (SendBird.getConnectionState() != SendBird.ConnectionState.OPEN) {
                // exception
            }
            val query = GroupChannel.createMyGroupChannelListQuery()
 if (query == null) {
#!/bin/sh
# making fcitx working in emacs
client="emacsclient"
# I dont want to start a new frame if there is one
frame_count=`emacsclient -e '(true-frame-count)' 2>/dev/null || echo -1`
# start server if not started
if [ $frame_count -lt 0 ]; then
LC_CTYPE=zh_CN.UTF-8 emacs --daemon
client="$client -c"
# make frame if no param coming
@merrickluo
merrickluo / kwmrc
Created November 24, 2016 08:47
kwm config
/*
This is a sample config for Kwm
The following statements can be used to set Kwms internal directory structure.
This is the root folder for Kwms files, the only thing this actually
specifies is the location of the 'init' script which Kwm runs upon startup.
Defaults to $HOME/.kwm
kwm_home /path/to/.kwm
@merrickluo
merrickluo / rxjs_operators_by_example.md
Created December 19, 2016 03:53 — forked from btroncone/rxjs_operators_by_example.md
RxJS 5 Operators By Example