My Blog Posts
Using Vue Select in Vue 3
October 21, 2022 - 41 words - 1 mins
Just a reminder for me to use vue select for Vue 3 (version ^4.0.0-beta.3).
<v-select
:options="[{ hello: 'world' }]"
:getOptionLabel="(e: any) => e.world"
@update:modelValue="handleChangeUser"
:value="{ hello: 'world' }"
/>
s…
read more
How to Install PHP Debian Sury Package
March 26, 2022 - 65 words - 1 mins
Run this in your command line, as per the instruction in the wiki:
curl -sSL https://packages.sury.org/php/README.txt | sudo bash -x
And that's it, you're done!
Other guides complicate this process so much it does not make sense, just enter that command and you're good to go. Happy coding!
read more
Top 5 Programming Language for Serious Backend Programmer
October 28, 2021 - 4807 words - 25 mins
There are tons upon tons of programming languages in the market nowadays, and it might be overwhelming for people who just started programming. This question is often asked among the beginner programmers:
How do we pick the right programming language?
Here's the thing about picking the most powerful…
read more
How to Create REST API with ASP.NET Core and Entity Framework + MySQL
August 14, 2021 - 2542 words - 13 mins
ASP.NET Core has gained traction throughout the years, and it has become #1 most loved web framework according to the GitHub developer survey 2020. One of the things you can make with ASP.NET Core is a REST API, along with other things like MVC web app, server rendered view with Razor template--simi…
read more
Modern C++ on Arduino
August 03, 2021 - 465 words - 3 mins
Embedded programming is always different with regular high-level programming with humanlike APIs--they tend to be closer to the metal, and less easy for humans to read.
However, recent developments of the C++ has some convenient features which you can use with Arduino--one of the most popular embedd…
read more
Introduction
January 16, 2021 - 826 words - 5 mins
Hello! This is the first post in my blog and I'm gonna tell you about how I started programming.
My Programming Journey
I started programming when I was still in college--which is located in Bandung city. My major was actually associate's degree in telecommunications engineering which deals with sig…
read more