AHAlfian Hanantioinblog.amalhanaja.dev·Jan 18, 2025 · 5 min readBuilding a Homelab with an old STBIntroduction I’ve always been fascinated by technology, and the idea of building my own personal lab at home has been on my mind for a while. The thought of having a personal server to experiment with, learn new technology, and host my own projects w...00
AHAlfian Hanantioinblog.amalhanaja.dev·Jul 7, 2024 · 2 min readRelease Go CLI Application using GoReleaserSetup GoReleaser First of all install GoReleaser cli tools on my machine using homebrew. if you're not using homebrew you can check all available installation method here. After installing GoReleaser then I initialize goreleaser using command gorelea...0-1
AHAlfian Hanantioinblog.amalhanaja.dev·Sep 9, 2023 · 3 min readPitfalls and EncodingCategorical pitfalls Using categories can be frustrating Using the .str accessor object to manipulate data converts the Series to an object. The .apply() method outputs a new Series as an object. The common methods of adding, removing, replacing, ...00
AHAlfian Hanantioinblog.amalhanaja.dev·Aug 30, 2023 · 3 min readVisualizing Categorical DataIntroduction to categorical plots using seaborn Categorical plot import seaborn as sns import matplotlib.pyplot as plt sns.catplot(...) plt.show() The catplot function Parameters x: name of the variable in data. y: name of the variable in data. ...00
AHAlfian Hanantioinblog.amalhanaja.dev·Aug 26, 2023 · 3 min readCategorical pandas SeriesSetting category variables The .cat accessor object Series.cat.method_name Common parameters: new_categories: a list of categories inplace: Boolean - whether or not the update should overwrite the series ordered: Boolean - whether or not the cate...00