Neno Sulistiyawan

Neno Sulistiyawan (28)

an old soul, seeker, trapped in computer geek body :)

Serverless: APIs with Node.js and AWS Lambda

Yesterday, i'm playing around with Node.js API running on AWS Lambda. By using AWS Lambda: 1. We only charged when our application accessed by user, so it'll minimize the server cost. 2. We don't need to do server maintenance, since all will be handled by…

Continue reading...

iCalendar : Fix Google Calendar Doesn't Sync

When develop application that generate a scheduling event, you might need to allow a user to subscribe the events in their own calendar app, could be apple calendar / windows calendar / google calendar or any other third party calendars. The easiest way to implement…

Continue reading...

React Native: Use Lottie as Splash Screen  

Here's a step-by-step to setup Lottie as splash screen in React Native app Let's start by create a new project & install lottie-react-native & lottie-ios@3.2.3 npx react-native init splashLottie npm i --save lottie-react-native npm i --save lottie-ios@3.2.3 don't forget to do this one if youre…

Continue reading...

Simulate Different Timezone in Chrome Browser

When your web app are used by users in a multiple timezone, you might need to simulate the timezone, sometimes we need that to test a specific feature, or when you need to reproduce a bug related to multiple timezone implementation How to do that?…

Continue reading...