I hereby claim:
- I am noisyfox on github.
- I am noisyfox (https://keybase.io/noisyfox) on keybase.
- I have a public key ASDA1SJU0bDrBeWCu0Vzg3dvfKqICeEoxHGuoXPotTSLfgo
To claim this, I am signing this object:
buildscript { | |
ext.WEB3J_VERSION = "4.5.14" | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
// Pull the web3j codegen lib | |
classpath group: 'org.web3j', name: 'codegen', version: WEB3J_VERSION | |
} |
package android.database.sqlite; | |
import android.content.Context; | |
import android.database.DatabaseErrorHandler; | |
import android.database.sqlite.SQLiteDatabase.CursorFactory; | |
import android.util.Log; | |
/** | |
* A helper class to manage database creation and version management. | |
* |
I hereby claim:
To claim this, I am signing this object:
server { | |
listen 80 default_server; | |
listen [::]:80 default_server ipv6only=on; | |
server_name yoursite.com www.yoursite.com; | |
location /{ | |
rewrite ^(.*) https://$host$request_uri permanent; | |
} | |
} |
0447db83996f60e25420b8d46c3860149a94f70d12452707676c727cb5f373bc96e7d3e9d9faa67025df0084bd596aab1845e095b2975dd219d06d5851337cb81e |
Debian
cd /tmp
# 下载源码
git clone https://github.com/shadowsocks/shadowsocks-libev.git
# 开始编译
cd shadowsocks-libev
./autogen.sh
./configure --prefix=/usr && make
make install
#!/usr/bin/python2.7 | |
import os | |
import re | |
re_import = re.compile(r'^import (apple\.[^\s]+[^.\s]Delegate);?$') | |
re_proguard = re.compile(r'^-keep +interface (apple\.[^\s]+[^.\s]Delegate) ?\{.*}$') | |