How to generate sitemap for NextJs Projects

3rd Aug 2020

Nextjs is the best framework out there to create server side rendered react apps. Now with the support of pre-rendered pages and static export, its on the way to become ultimate tool for both dynamic and static content generation. Sitemaps are important requirement for generating good SEO. It prov...

Continue reading >>
How to generate sitemap for NextJs Projects

Getting started with React Recoil

18th May 2020

> Recoil is a state management library for React by facebook. ## Overview Recoil lets you create a data-flow graph that flows from atoms (shared state) through selectors (pure functions) and down into your React components. Atoms are units of state that components can subscribe to. Selectors tran...

Continue reading >>

React Ant Design Dynamic Graphql Form Using Typescript : Part (3/3)

21st Mar 2019

> This is an advanced typescript tutorial for react development. Now we have the fully usable modular graphql component. Let's try to implement a login form using our custom component. ## Create a basic input interface This interface defines our `TVariables` & `TData` (Input field elements & Log...

Continue reading >>

React Ant Design Dynamic Graphql Form Using Typescript : Part (2/3)

20th Mar 2019

> This is an advanced typescript tutorial for react development. Now we have all the interfaces defined, let's proceed creating the dynamic graphql form component. ```tsx file=./scripts/index.tsx ``` ...

Continue reading >>

React Ant Design Dynamic Graphql Form Using Typescript : Part (1/3)

19th Mar 2019

> This is an advanced typescript tutorial for react development. ## Scenario Often we encounter situations where we have to write the basic forms (register, login, newsletter,etc..) and submit them for graphql mutations. It's a tiresome task to do it for all the forms in your project. To tackle s...

Continue reading >>

Practical Tensorflow2 Guide: Hello World

3rd Mar 2019

> This is a reproduction of hello world example by google codelabs Consider the following sets of numbers. Can you see the relationship between them? | X | -1 | 0 | 1 | 2 | 3 | 4 | | --- | --- | --- | --- | --- | --- | --- | | Y | -2 | 1 | 4 | 7 | 10 | 13 | As you look at...

Continue reading >>

Practical Tensorflow2 Guide: Setting Up Workspace

2nd Mar 2019

This series is aimed to improve your knowledge in applied machine learning for creating production ready applications using `tensorflow2` ## Prerequisites - [Docker](https://www.docker.com/) We are using docker image of tensorflow for quick start. Using an officially supported tensorflow docke...

Continue reading >>

React Hooks : useState Array Operations

2nd Feb 2019

Here is an example of performing array operations with `useState` hook. ```tsx live function ExampleComponent() { const [arr, setArr] = React.useState([]) const addElement = React.useCallback(() => { setArr((el) => [ ...el, { id: `${Date.now()}`, item: el.lengt...

Continue reading >>

Ludum Dare 38: Roboland

12th May 2017

## Timelapse of RoboLand : LD38 Entry https://www.youtube.com/watch?v=ENdCCXY4468 - Play it on itch.io : https://slovakyan.itch.io/roboland - LudumDare Compo Entry: https://ldjam.com/events/ludum-dare/38/roboland ...

Continue reading >>

Ludum Dare 37: Machine Blaster

14th Dec 2016

## Timelapse of MachineBlaster : LD37 Entry Here's the time lapse of game created in 48 hours as part of LudumDare37 https://www.youtube.com/watch?v=Z0Nz6xVIXoc - Play it on itch.io : https://goo.gl/wi3gYV - LudumDare Compo Entry: https://goo.gl/lTBmHx ...

Continue reading >>

Kanyakumari : Trying to catch the rising sun

28th Jul 2015

It is an awesome experience travelling with a friend. Especially with the one who knows you better. I have no idea when I thought about going for a trip to Kanyakumari. Like every other trips, this also started without prior plans. One evening me and Linto agreed on this and within few hours we pac...

Continue reading >>

Unity3D: Manage GUI elements for any aspect ratios (2D 3D)

23rd Aug 2013

I do know that lots of discussions have happened on this topic and most of them are resolved, Recently, I've came across a large game project, which had lots of GUI elements to be drawn at on screen on different times. I somehow managed to draw it, but there were a big issue when switch the game to different aspect ratios.

Continue reading >>

What's the fear factor?

26th Apr 2012

**ADJUSTMENTS** This word is most common and likely to happen always around us. For example , In a relationship. She Adjusts her attitude for him, he adjusts his attitude for her, or even we adjusts ourselves to our course/job that we don't wanna do. The fact is that everyone always wanna settle-do...

Continue reading >>

About Engineering

23rd Apr 2012

I would like to share my vision about present day Engineering status. When I joined for Engineering, I expected a lot. Expected that I could meet some real tigers. The real demons. Those who're darn passionate. Those who're ready to take the risk. Those who can change the world. But unfortunately ...

Continue reading >>