Howard Chu

> 自分が時間を費やすことができ、自分が関心を持ち、興味を持てるものを選ぶだけでいい。

> 繰り返し、改善し、時間を無駄にする。

2024-10-10
Using lldb to read C++ standard library

C++ standard library can be hard to read, using a debugger to help with learning can be a good approach. My machine is a mac so this will be clang's std library. And I'm ...

2024-6-25
How to contribute to perf

TL;DR: Clone the repo: git clone https://git.kernel.org/pub/scm/linux/kernel/git/perf/perf-tools-next.git/ # switch to perf-tools-next branch git checkout perf-tools-next...

2024-6-19
Journey to Becoming a (Newbie) Perf Contributor

Oct 25, 2023, this is the day I pushed the first commit to my silly little eBPF project, sberf. You can tell I stole this name from a prestigious performance analysis too...

2024-6-9
perf trace: Add support for enum arguments

perf trace now supports pretty printing for enum arguments Well, that been said, there is only one argument that can be pretty printed in all syscalls, which is enum land...

2023-9-17
Shared vim clipboard when using SSH

For Windows, download MobaXterm or Xming; for Mac, download XQuartz as the X server. After downloading, open the application. Note that on Mac XQuartz works after I unche...

2023-9-6
Launch Elixir app with mix

0.5 definemain.ex, usemix run main.ex(duplicates with 2.) main.ex: defmodule Main do Server.main() end server.ex: defmodule Server do # no need to import def main do path...