[iOS] Using rvictl for Network Traffic Capture on iOS Devices

Apple publishes Recording a Packet Trace, which explains how to capture packets for macOS and iOS. With the rvictl and tcpdump The combination addressed on the page allows us to capture the network traffic that occurs on a connected iOS device. One note here is about rvictl. The page addresses the functionality as; iOS doesn’t…More

Read “Pythonの黒魔術”

I’ve written Python as work while I was new to Python before. My Python experience has been grown, so I got used to writing Python code. Meanwhile, motivation to improve my code made me dive into a bit deeper Python world. It could step my eye up in reading other persons’ code, reviewing them, making…More

[macOS] Moved to Zsh

I finally moved bash to zsh on my macOS. Below is what I did then. I hope my private dev env will work fine.. Add below lines to the top of zprofileMore

Read「Goならわかるシステムプログラミング」 – Golang

I read Goならわかるシステムプログラミング to catch up with Go in system layer. I do not have much experience in Go. Definitely I finished their tutorial, but have not experienced writing their code. Then, I needed to learn golang more to write code in production level. This book helped me to understand golang, especially network stuff, in…More

[Chrome] netlog viewer tool to see network easy

Another note about Chromedriver. Chronium project: https://chromium.googlesource.com The project has helpful tools like https://chromium.googlesource.com/catapult/+/master/netlog_viewer . https://dev.chromium.org/for-testers/providing-network-details is the project page. https://netlog-viewer.appspot.com/ How easy to capture network data via a browser by chrome://net-export … The export works on Android Chrome, too. (The scope is network on the browser though. We need to use external service like…More