What is Lambda We all know that the almost everything in the internet works by making a request to the some server and we would received a response, either in the form of a page, data in JSON, or any form of stream. So, if we break down the action done in whole lot of… Continue reading Let’s start with AWS Lambda
A fresh look on my Page
It’s been a while that i’ve touched my main homepage, initially it was a basic blog page that that I wanted to put some thoughts and notes, and now after a few years, I was bored and just want to change. It started by shifting the blog area to my subdomain so that I can… Continue reading A fresh look on my Page
Starting fresh: New SwiftUI app
It might be a bit ‘shameful’ for me to tell this but as someone who knows how to code Swift, considering my certificate from Udacity to prove this, I’ve never had the courage to create and deploy an App on the App store, I guess it stem from the perfectionist in me saying that you… Continue reading Starting fresh: New SwiftUI app
Android App Components
Android app is written in Java programming language (mostly). Java code is compiled together with the resource file data required by the application, where the process is packaged by tools called as “apt tools” into the Android package so that it generates files with apk extension. Apk file that’s what we call the application, and… Continue reading Android App Components
Architecture of Android Operating System
Android is a Linux-based operating system designed for touchscreen mobile devices such as smartphones and tablet computers. Android was originally developed by Android, Inc., with financial support from Google, which was later purchased in 2005. The operating system was officially released in 2007, in conjunction with the establishment of the Open Handset Alliance, a consortium… Continue reading Architecture of Android Operating System
How to Install Android Studio on Windows
The user of Android-based smartphones increasingly more and more where this is an opportunity for developers to develop android applications. Android is an open source so it can be developed by anyone. Beside that is used to develop Android applications is an android studio, and then the question is how to install Android Studio on… Continue reading How to Install Android Studio on Windows
Making Android Applications Using MIT App Inventor 2
Android is one of the most popular operating systems since the end of the Symbian era. An open-source operating system that is supported by an attractive display and allows users to choose free or paid applications are available abundant in the Playstore android. This encourages developers to compete in building their best products for the… Continue reading Making Android Applications Using MIT App Inventor 2
How to install Java jdk, Maven, and intelleJ in under 120 seconds
Today I wanna show you, how to install JAVA jdk, Apache Maven, and intelliJ IDEA in under 120 seconds using Homebrew. It’s super easy, mate!
Idea Validation – a way to save yourself money and time
On this years recently, There is a lot of Startup companies that are founded, but a lot of them is failed. Facebook was not the first social network (remember Friendster?). And Google was not the first search engine. Instead of focusing on idea secrecy.
Java: Inversion of Control & Dependency Injection
Talking about features of the framework, In this part I’ll explain the characteristics of the Spring framework called Inversion of Control (IoC), or also called Dependency Injection (DI). This is a key element that needs to be good understanding.