1.6relayd fireware-start
ip6tables -F
ip6tables -P INPUT ACCEPT
ip6tables -P FORWARD ACCEPT
wan-start
/jffs/bin/6relayd -d -A vlan2 br0
# Maintainer: Christoph Schmidpeter <[email protected]> | |
# Co-Maintainer: Mubashshir <[email protected]> | |
# Contributor: Iwan Timmer <[email protected]> | |
# pkg: git | |
pkgname=anbox-audio-git | |
_pkgname=anbox-git | |
pkgver=r1364.8d026df | |
pkgrel=1 | |
epoch=1 |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>A simple clock</title> | |
</head> | |
<body translate="no" > |
adb shell settings put global captive_portal_http_url http://connect.rom.miui.com/generate_204 | |
adb shell settings put global captive_portal_https_url https://connect.rom.miui.com/generate_204 | |
adb shell settings put global captive_portal_fallback_url http://www.google.cn/generate_204 | |
adb shell settings put global captive_portal_other_fallback_urls http://www.qualcomm.cn/generate_204 |
name: "exp_113_cls" | |
layer { | |
name: "data" | |
type: "EnhancedImageData" | |
top: "data" | |
top: "label" | |
enhanced_image_data_param { | |
root_folder: "/data/shuhao/images/" | |
source: "/home/shuhao/share/mrdk/train_all_bbox.txt" |
## Refer to http://caffe.berkeleyvision.org/installation.html | |
# Contributions simplifying and improving our build system are welcome! | |
# cuDNN acceleration switch (uncomment to build with cuDNN). | |
# USE_CUDNN := 1 | |
# CPU-only switch (uncomment to build without GPU support). | |
CPU_ONLY := 1 | |
# uncomment to disable IO dependencies and corresponding data layers |
1.6relayd fireware-start
ip6tables -F
ip6tables -P INPUT ACCEPT
ip6tables -P FORWARD ACCEPT
wan-start
/jffs/bin/6relayd -d -A vlan2 br0
Get the original code.
Install adb interface driver
<!DOCTYPE html><html><head><meta charset="utf-8"><style>body { | |
width: 45em; | |
border: 1px solid #ddd; | |
outline: 1300px solid #fff; | |
margin: 16px auto; | |
} | |
body .markdown-body | |
{ | |
padding: 30px; |
int lengthOfLongestSubstring(char* s) { | |
int r, c, i, j; | |
int hash[256] = { 0 }; | |
unsigned char * us = s; | |
if (us[0] == '\0') { | |
return 0; | |
} | |
r = 0; | |
i = 0; | |
j = 0; |
/** | |
* Definition for singly-linked list. | |
* struct ListNode { | |
* int val; | |
* struct ListNode *next; | |
* }; | |
*/ | |
typedef struct ListNode ListNode; |