-
Install the the
shadowsocks-libev
package from apt repository.sudo apt update sudo apt install shadowsocks-libev
-
Save
ss.json
as/etc/shadowsocks-libev/config.json
.
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
class ViewModel_1 { | |
val name = LiveData<String>() | |
val gender = LiveData<Boolean>() | |
val loading = LiveData<Boolean>() | |
val errorMessage = LiveEvent<String>() | |
fun follow() { | |
api.follow(xxx) | |
} |
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
sealed class LiveEvent<T> : LiveData<T>() { | |
private var version = 0 | |
/** | |
* override hashCode and equals, | |
* so-that, [LiveData.removeObserver] still can work | |
*/ | |
private inner class ObserverWrapper<T>( | |
private val other: Observer<T> | |
) : Observer<T> { |
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
String httpGet(String url) throws IOException { | |
URL u = new URL(url); | |
URLConnection conn = u.openConnection(); | |
InputStream input = conn.getInputStream(); | |
byte[] buffer = new byte[1024]; | |
int len = input.read(buffer); | |
input.close(); | |
return new String(buffer, 0, len); |
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
/* | |
* Copyright (C) 2018 Square, Inc. | |
* Copyright (C) 2019 [email protected] | |
* Copyright (C) 2019 [email protected] | |
* | |
* 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 |
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
#!/bin/bash | |
######################################################################### | |
# File Name: ramdisk.sh | |
# Author: Landerl Young | |
# e-Mail: [email protected] | |
# Created Time: Wed Aug 22 15:08:28 2018 | |
######################################################################### | |
VOLUME=RAM_DISK | |
RAMDISK_LOCATION=/Volumes/$VOLUME |
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
#! /usr/bin/env kscript | |
@file:DependsOn("com.xenomachina:kotlin-argparser:2.0.7") | |
@file:DependsOn("me.tongfei:progressbar:0.7.1") | |
import com.xenomachina.argparser.ArgParser | |
import com.xenomachina.argparser.InvalidArgumentException | |
import com.xenomachina.argparser.SystemExitException | |
import com.xenomachina.argparser.default |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
# depends on | |
# pip install pillow numpy | |
from PIL import Image | |
import numpy as np | |
import sys |
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
ADB=${ANDROID_HOME}/platform-tools/adb | |
HPROF_CONV=${ANDROID_HOME}/platform-tools/hprof-conv | |
# customized functions | |
# dump droid heap | |
function droid_hd() { | |
PACKAGE_NAME=$1 | |
TIME=$(date +"%Y%m%d_%H%M%S") | |
FILE_NAME="${PACKAGE_NAME}-${TIME}-heap.hprof" |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
from __future__ import print_function | |
''' | |
analyze /proc/<pid>/smaps | |
doc | |
http://liutaihua.github.io/2013/04/25/process-smaps-analysis.html |
NewerOlder