blog.amalhanaja.devBuilding 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...Jan 18, 2025·5 min read
blog.amalhanaja.devRelease 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...Jul 7, 2024·2 min read
blog.amalhanaja.devPitfalls 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, ...Sep 9, 2023·3 min read
blog.amalhanaja.devVisualizing 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. ...Aug 30, 2023·3 min read
blog.amalhanaja.devCategorical 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...Aug 26, 2023·3 min read