Look back on the week.

  • English

  • 4/7回受講した
  • Machine learning / Cloud computing

  • Nothing special
  • Rock climbing

  • MoonboardのV5~7をやるなど
  • Toe hookが苦手なことに気付いた
    • 腰の位置を壁に近づけられない
  • Other topics

  • chibicc
  • KV260 が Linux をブートするまでのシーケンス - Qiita
    • ZynqMPのブートシーケンス
    • FPGAのBitstreamはBOOT.BINに含まれる
    • ステージ1でBitstreamがProgrammable Logicへコンフィグされる
  • My typical working day as Software Engineer | Unremarkable thoughts
    • I split my day in two parts: before lunch and after lunch. Mornings are output focused.

    • During the mornings, I focus on more strategic and challenging problems, for goals towards the OKRs of the quarter, unblocking work for others, addressing the root cause of a some important issue, thinking about the design of a system that I don’t know yet how to approach and so on.

  • GDBの使い方
    • -gオプションをつけてコンパイル
      • cc -g sample.c -o chibicc
    • コンパイルしたバイナリを指定してgdbを起動するとバイナリがロードされる
      • gdb chibicc
    • gdbのinteractive shellにて、runコマンドでバイナリを実行する
    • プログラム引数を渡すにはrunコマンドの引数に渡せばよい
      • run "{ int a=3; return a; }"
    • Segmentation Faultの傾向と対策 - minus9d’s diary