Skip to content

Instantly share code, notes, and snippets.

Layer (type) Output Shape Param # Connected to
====================================================================================================
input_1 (InputLayer) (None, 64, 64, 3) 0
____________________________________________________________________________________________________
zero_padding2d_1 (ZeroPadding2D) (None, 70, 70, 3) 0 input_1[0][0]
____________________________________________________________________________________________________
conv1 (Conv2D) (None, 32, 32, 64) 9472 zero_padding2d_1[0][0]
____________________________________________________________________________________________________
bn_conv1 (BatchNormalization) (None, 32, 32, 64) 256 conv1[0][0]
____________________________________________________________________________________________________
for /l %%x in (1, 1, 100) do (
echo %%x
adb shell input tap 1124 1282
timeout /t 10
adb shell input tap 1311 160
)
255 Virtual Ports Found on Physical Port 10:00:00:32:32:32:02:03
Index PortFcId WWPN WWNN
------ ---------- ----------------------- -----------------------
0 0x10902 20:01:00:32:32:32:02:03 20:00:00:32:32:32:02:03
1 0x10903 20:02:00:32:32:32:02:03 20:00:00:32:32:32:02:03
2 0x1090C 20:11:00:32:32:32:02:03 20:00:00:32:32:32:02:03
3 0x10966 21:01:00:32:32:32:02:03 20:00:00:32:32:32:02:03
4 0x10967 21:02:00:32:32:32:02:03 20:00:00:32:32:32:02:03
5 0x10968 21:03:00:32:32:32:02:03 20:00:00:32:32:32:02:03
6 0x10969 21:04:00:32:32:32:02:03 20:00:00:32:32:32:02:03
var parent = this;
var data_context = function(list) {
return {
rank_list: function() {
console.log('rank list', list);
debugger;
return list.reactive();
},
rank_data_ready: function() {
@andycjw
andycjw / uao_decode.py
Last active September 22, 2017 08:24
Big5 UAO decode usage: just do 'import uao_decode.py' unicode_string = big5_string.decode('uao_decode')
import codecs
import struct
class Codec(codecs.Codec):
def encode(self,input,errors='strict'):
pass
def decode(self,input,errors='strict'):
unistr = u''