Flutter: How to do CRUD with PostgreSQL? Part 1

I am going to share today some exciting topics such as : How to build RESTful api on web server using Dart and Aqueduct with integration of Postgresql. 👈 You are here How to build Flutter mobile app and perform basic CRUD functions with Aqueduct application. We are going to build both of these using only …

Flutter : How to do user login with Firebase

Release 25/12/18 — Updated latest code snippet after refactoring and clean up. 24/01/19 — Duplicated link to github at the top of article. Source Code In case you want to skip the whole mumbo jumbo, you can grab the source code here 👇 https://github.com/tattwei46/flutter_login_demo Update Here is a sequel to this post which is How to do CRUD with …

Mallsyok : The Technicals

For this post, I am going to share the technical aspects behind Mallsyok app. I have previously written two posts regarding Mallsyok introduction and workflow with tools. Make sure to read the previous posts by clicking the link below and give some 👏 Series Mallsyok : The Journey Mallsyok : The Workflow Mallsyok : The Technicals (You’re here …

Mallsyok : The Workflow

Design done using Sketch I have written about Mallsyok introduction in previous post. In this post, I will be sharing our workflow of our team. Update: Unfortunately, we have stopped building new features and maintaining Mallsyok app. But that will not stop me from sharing our experience out 😜 Series Mallsyok : The Journey Mallsyok : The Workflow …

Mallsyok : The Journey

Mallsyok Google PlayStore Banner Introduction Mallsyok app was created with a sole purpose which is to help shoppers find their way quicker inside Malaysia’s shopping malls. With a tagline #ShoppingIsNowMoreSyok, this app intends to enhance shoppers’ experience. The last two words of the tagline that is “More Syok” which means you get to enjoy more …

How to do looping in Windows Batch

Source from Tine Ivanič We need loops in batch file to prevent writing long blocks of code and to do repetitive process. There are 2 ways to do looping in Windows Batch. Method 1 Use this method for numeric values FOR /L %%A IN (1,1,200) DO (ECHO %%A) where 1,1,200 means start, increment step and end …

How to prepare for Embedded C interview

I have compiled some of the common interview questions that you may encounter if you are applying for embedded software position. Hope it benefits you. Image by Ilya Pavlor at Unsplash What is the difference between hard real-time and soft real-time OS? A Hard real-time system strictly adheres to the deadline associated with the task. If …

How calculate time difference in Windows Batch?

Source from Sonja Langford A small piece of code to determine time difference. Could be useful and integrated to your batch file. @echo off rem Get start time:for /F “tokens=1-4 delims=:.,” %%a in (“%time%”) do (set /A “start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100”) rem Any process here…TIMEOUT /T 60TIMEOUT /T 1 rem Get end time:for …

I never written a line of code. So what is Git? Pt.1

Fire escape procedure for Git users. No, seriously. Before I begin, this article explains the most fundamental of stuff of Git, how to use and why you should use it. So if you’re new to coding, this article is just right for you 👍 Let’s Git started! : OK. So what is Git? Git is a version …

Design a site like this with WordPress.com
Get started