Skip to content

Instantly share code, notes, and snippets.

@Ellisonlee
Ellisonlee / RealPathUtil.java
Last active April 19, 2022 00:39 — forked from tatocaster/RealPathUtil.java
Real Path Utility class for Android, works for all API
public class RealPathUtil {
public static String getRealPath(Context context, Uri fileUri) {
String realPath;
// SDK < API11
if (Build.VERSION.SDK_INT < 11) {
realPath = RealPathUtil.getRealPathFromURI_BelowAPI11(context, fileUri);
}
// SDK >= 11 && SDK < 19
else if (Build.VERSION.SDK_INT < 19) {
@Ellisonlee
Ellisonlee / ndoe_http_proxy.js
Created July 10, 2016 14:51 — forked from kira1928/node_http_proxy.js
simple nodejs http proxy
var http = require("http");
var url = require("url");
var proxy = http.createServer(function(request, response) {
request.headers.Connection = "close";
delete request.headers["proxy-connection"];
delete request.headers["upgrade-insecure-requests"];
delete request.headers['accept-encoding'];
var ori_url = url.parse(request.url);
var options = {
http://stackoverflow.com/questions/13708132/not-able-to-change-text-color-and-text-background-of-output-in-visual-studio-201
http://stackoverflow.com/questions/13708132/not-able-to-change-text-color-and-text-background-of-output-in-visual-studio-201