加载中
Python3 - Multiple Inheritances

class First(object): def init(self, a1, *args, **kwargs): # super(First, self).init(*args, **kwargs) print("First: a1:{0}".format(a1)) print("First: args: ", arg......

2018/09/05 14:00
135
Virtual Serial Port - RFC2217

Virtual Serial Port for Linux RFC-2217 The COM Port Control Protocol pyserial - RFC 2217 NetSerial - Windows Telnet COM Port - RFC Official Using Python, How do I make a virtual...

2018/07/22 22:16
1K
Python PIPEs

https://www.python-course.eu/pipes.php https://www.tutorialspoint.com/python/os_pipe.htm

2018/07/22 11:23
203
NetCat Tutorials

Hacking with Netcat part 1: The Basics Hacking with Netcat part 2: Bind and reverse shells Hacking with Netcat part 3: Advanced Techniques 10 Introduction to Netcat - pdf NetCat...

2018/07/22 10:37
324
IO Redirection

Netcat tutorial – command examples on linux Telnet Com Port Control Option COM Port Redirector - Wikipedia One variant of a COM port redirector is a virtual serial port. A virt...

2018/07/22 10:12
189
Serial2Ethernet Bi-redirection

Serial Tool Serial Tool is a utility for developing serial communications, custom protocols or device testing. You can set up bytes to send accordingly to your protocol and save...

Packing / Unpacking Message

def PackingMessage(val): fmt = '>BBBHB' fmt = fmt + '{0}s'.format(len(fmt) + 1) length = 0x04 cmd = 0x01 opt = 0x00 chksum = length + cmd + opt + val return struct.pack(fmt, len...

2018/05/30 21:58
66
Pronunciation

http://soundsofspeech.uiowa.edu/index.html#english https://www.learnamericanenglishonline.com/Pronunciation/Pronunciation.html...

2018/01/04 10:17
83
Fix Broken Sudo Creative Commons License This work is licensed under a Creative Commons Attribution-

Fix Broken Sudo This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. How does sudo work? Cause and symptoms Booting into recovery mode Do ...

2016/08/10 15:48
400
Steps to Retrive Link List from SharePoint page

links = $$('a[class="ms-listlink"]'); for (x in links) console.log(links[x].href) or links = $x('//a[@class="ms-listlink"]'); for (x in links) console.log(links[x].href) links ...

2016/07/14 13:45
286
Retrieve file from Microsoft SharePoint

#!/bin/sh # http://xxxxx/projects/brimstone/Design%20Documents/Software/010-XXXXXX-01_SPEC_SWF_ARCH_EVB.docx base_url="http://xxxxx/projects/brimstone/Design Documents/Softwar...

2016/07/07 13:23
76
Rename Filenames Wirth Full Angular-Chinese

#!/bin/sh for i in 01 02 03 04 do   pushd "$i"   ls *.txt | while read f   do     echo "${f:5}"     cp "$f" "r/${f:5}"   done   popd done...

2016/07/04 22:44
104
List of Peppa Pig episodes

List of Peppa Pig episodes Episode lists Series 1 Series 2 Special 1 Series 3 Series 4 Special 2 Special 3 Special 4 Series 1 01 Muddy Puddles 02 Mr. Dinosaur is Lost 03 Best Fr...

2016/07/04 21:01
517
Unit Test - Level 2

# Level 2 - Unit Test (I) ## 1. Listen and tick 1. Taste the rice, please. 1. I see a bee. 1. I hear ship. 1. Smell the sheep, please. 1. I see a cat. 1. I hear a frog. ## 2. Li...

2016/06/25 14:15
326
13 fabulous frameworks for Node.js

13 fabulous Node.js frameworks Node.js may be several years old now, but it's still in the spring of its life. The options are multiplying, as everyone experiments with new and ...

2016/05/09 12:47
88
Youtube Links

Get Fluent With 1 Trick - Become A Confident English Speaker With This Simple Practice Trick Secret to Start Speaking English in 10 Days Learn English Conversation Easy and Fas...

2016/04/23 20:36
566
Awesome Websites

Awesome Machine Learning Awesome PHP Awesome Python Awesome React Awesome JavaScript (CN) Awesome JavaScript (CN) Awesome JavaScript (EN) Awesome NodeJS Awesome web scraping Awe...

2016/04/01 10:17
213

没有更多内容

加载失败,请刷新页面

返回顶部
顶部