Next Stop - Ihcblog!

Some creations and thoughts sharing | sub site:ihc.im

0%

This article also has a Chinese version.

This series of articles mainly introduces how to design and implement a Runtime based on the io-uring and Thread-per-core model.

Our final Runtime product Monoio is now open source, and you can find it at github.com/bytedance/monoio.

  1. Rust Runtime Design and Implementation - General Introduction
  2. Rust Runtime Design and Implementation - Design Part 1
  3. Rust Runtime Design and Implementation - Design Part 2
  4. Rust Runtime Design and Implementation - Component Part
  5. Rust Runtime Design and Implementation - IO Compatibility Part

This article is the first in the series, mainly introducing some general concepts as well as writing a very simple Runtime as an example.

UPDATE: Here is a presentation video I made(in Chinese), and the corresponding PPT. Interested viewers are welcome to watch the playback :)

Read more »

This article also has a Chinese version.

This article mainly summarizes common issues and thoughts in proxy framework design; it also touches on some engineering designs within the Rust + Tower ecosystem. Although there’s already plenty of discussion on this topic online, who knows, maybe after reading this article, you’ll come up with a new idea? Found out that since joining the company, I’ve been writing nothing but proxies

Read more »

This article also has a Chinese version.

The Raspberry Pi has already ruined three of my SD cards. Although I was able to directly contact SanDisk and Samsung customer service on two occasions, where they replaced the SD cards unconditionally adhering to the warranty terms.

However, SD (TF) cards can’t endure many write cycles. Depending on the type of flash memory cells, MLC (Multi-Level Cell) has a longer life expectancy than TLC (Triple-Level Cell) chips. Cheaper SD cards generally use TLC chips, which can only withstand a few thousand write/erase cycles. Typical Linux systems frequently delete and write a large amount of log data during use, which means that SD cards cannot be used reliably for a long period.

This time I tried to boot up the board with a damaged SD card using some unusual methods.

Read more »

This article also has a Chinese version.

This article briefly summarizes current methods for accelerating internet access and details an acceleration project I developed based on Shadowsocks: go-shadowsocks-magic.

UPDATE 2019-10: Building on the ideas from this project, I extended it to support arbitrary TCP connections by decoupling the multi-connection acceleration: Rabbit TCP, which shows some improvements in stability and latency.

Read more »

This article also has a Chinese version.

Let’s dig out some past work. These were some projects I worked on in July last year, and some of them might have become obsolete by now.

Last summer, I stumbled upon this device called the MiaoMiao Printer. As someone who enjoys tinkering, I got involved with reverse engineering and developing related to the MiaoMiao Printer. All the resources are available at: https://github.com/ihciah/miaomiaoji-tool

The MiaoMiao Printer is a Bluetooth thermal printer that you can connect to and print from using its app via Bluetooth. I once saw on Weibo that DIYGOD had fun with a remote print push project, which inspired me to create something similar. However, I did not fancy the idea of constantly needing to operate it manually from my phone. Considering I had a Raspberry Pi 3 handy, with Bluetooth functionality, I decided to take apart the MiaoMiao Printer’s app, extract its communication protocol, and then set up a control script on the Raspberry Pi.

Read more »

This article also has a Chinese version.

This article will introduce some of the projects I undertook during my undergraduate years to make my dorm room more comfortable, including setting up the door to be opened with a smartphone and making it more convenient to watch videos.

The entire code(excluding code and models that I don’t have permission to publish) can be found on GitHub.

Read more »

This article also has a Chinese version.

Continue posting my previous work.

I kept three hamsters in the lab and thought about doing something interesting. The idea of daily tracking the rotation and time distribution of the hamsters’ running wheel and then posting this data to Weibo seemed like a fun endeavor.

Read more »

This article also has a Chinese version.

Preface

I’ve just migrated my blog and might as well share some stuff I’ve stocked up.

Getting hands-on to create little gadgets is a delightful activity, even more so if the gadget turns out to be attractive or useful.

Carrying a bunch of cards with you when you go out is now a regular routine for most people, yet many of these cards merely serve as access cards. The majority of these access cards are M1 cards that can be easily cloned with a card reader. Without hacking into the management system to add IDs, it would be much more convenient if we could combine multiple cards into one, or even “conceal” them in some way.

This article will introduce a solution I’ve come up with.

Read more »