English: Add a menu item of Paste Symlink
to the Windows right-click menu
中文:给Windows的右键菜单添加粘贴成符号链接
的菜单项
#!/bin/bash | |
# you proxy server ip | |
ip="172.105.237.77" | |
function setup_route() { | |
# obtain gateway | |
gateway="" | |
while [ "$gateway" = "" ]; do | |
sleep 2s |
package com.jinhandz.v2code.utils.ktx | |
/** | |
* see [JSON5 | JSON for Humans](https://json5.org/) | |
* */ | |
object Json5 { | |
private val REGEX_MULTI_COMMENT = Regex("""/\*.*?\*/""", RegexOption.DOT_MATCHES_ALL) | |
private val REGEX_SINGLE_COMMENT = Regex("""^(.*)//.*$""") | |
private val REGEX_COMMA = Regex(""",\s*([]}])""") | |
fun convertJson5ToJson(json5: String): String { |
# 反向代理developer.android.com, 通过本地http代理访问网站 | |
# | |
# 该方式不支持通过http代理访问https网站... | |
# 同时, developer.android.com不支持http访问 | |
# 故该配置用不了... | |
server { | |
listen 8880; | |
server_name localhost; | |
location / { |
package com.soling_ss.motorcycle.databinding | |
import android.arch.lifecycle.Lifecycle | |
import android.arch.lifecycle.LifecycleObserver | |
import android.arch.lifecycle.LifecycleOwner | |
import android.arch.lifecycle.OnLifecycleEvent | |
import android.databinding.ViewDataBinding | |
import com.soling_ss.motorcycle.util.FieldProperty | |
import com.soling_ss.motorcycle.util.writeOnly | |
import java.lang.ref.WeakReference |
package com.soling_ss.motorcycle.widget.anim | |
import android.animation.Animator | |
import android.animation.AnimatorSet | |
import android.animation.ValueAnimator | |
import android.annotation.TargetApi | |
import android.os.Build | |
import com.soling_ss.motorcycle.util.ReadWriteProperty | |
import com.soling_ss.motorcycle.util.SystemUtil.api23 | |
import com.soling_ss.motorcycle.util.SystemUtil.api26 |
{"sig":"3884743ca731a9cf8171774bed40bd4672844aa828e380d38358d54e0341cb884517f43742e92891ee6190492daa3426cce58e3871cd714ad6a4b0269f3a9f680","msghash":"a1bc1502ac2f612a5af70ad3023650f76f0f505ef989a678db04bd32447fe2da"} |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf8" /> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
<title>自提点 地图 - 转运四方</title> | |
<style type="text/css"> | |
body, | |
html { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf8" /> | |
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
<title>自提点 地图 - 海购丰运</title> | |
<style type="text/css"> | |
body, | |
html { |
// ==UserScript== | |
// @name New Userscript | |
// @namespace https://github.com/ipcjs | |
// @version 0.0.1 | |
// @description try to take over the world! | |
// @author ipcjs | |
// @match http://bangumi.bilibili.com/anime/5788/play* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |