▽あどけない話 ●11/21 16:32 2024-11-20Labeling threads in HaskellHaskellGHC 9.6 provides a function to list up the current threads finally. The function is listThreads exported from the GHC.Conc.Sync module. listThreads is a killer debug method for thread leaks.If you have Haskell programs which run for a long time, it's quite nice to provide feature to monitor threads with the following functions:import Data.List (sort
▽Starlight ●11/19 14:58 2024-11-17MicroK8sのregistryアドオンの組み込みレジストリー(プライベートレジストリー)を試すKubernetes MicroK8sKubernetesでいろいろ試そうと思うとプライベートレジストリーが欲しくなったりするものですが、割と面倒な気がします。MicroK8sだとregistryアドオンで多少簡単に導入できそうだったので試してみることにしました。How to use the built-in registryMicroK8sのregistryアドオンregistryアドオンを使ったレジストリーの使い方はこちら。How to use the built-in registryアドオンを使って導入するプライベートレジストリーは、組み込みレジストリーと呼んでいるみたいです。流れとしては以下になります。MicroK8sのregistryアドオ
▽eed3si9n | only the code never lies. ●11/19 10:00 Hedgehog for Scala 入門2024-11-18 / scala本稿では、Hedgehog for Scala というプロパティー・ベース・テスト・フレームワークを簡単に紹介したい。Hedgehog for Scala は、Jacob Stanley さんと Nikos Baxevanis さん共著の Haskell Hedgehog というライブラリを基に 2018年ごろ Charles O’Farrell さんが実装したもので、最近では Kevin Lee さんが主にメンテナンスを行っている。Read More…4