Getting started with React
React is a javascript framework for building user interface. It is very common to see React used along with Redux, for complex web application. In the next session I will talk about redux.
React is a javascript framework for building user interface. It is very common to see React used along with Redux, for complex web application. In the next session I will talk about redux.
In the previous tutorial, we have implement the game part. We now need to add our neural network to the game to automate player jumps. Make sure to download the complete project files. [wpi_designer_button text=’Download’ link=’https://github.com/arjunsk/phaser_ai_game’ style_id=’48’ icon=’github’ target=’_blank’] & [wpi_designer_button text=’Presentation slides’ link=’https://www.slideshare.net/ArjunSK15/jumper-ai-game’ style_id=’48’ icon=’show’ target=’_blank’] Before we start, we need to get introduced to some […]
Hey, whats up! Long time writing a tutorial. So here is small series on game development & AI. Not a big game, but enough to get started on your own. Make sure to download the complete project. Also in the next article, I will be adding an Artificial neural network to this game, so that, […]
Hope you have read my previous article on testing redis on heroku & App engine . [wpi_designer_button text=’Download’ link=’https://github.com/arjunsk/go_url_shortener’ style_id=’48’ icon=’github’ target=’_blank’] OR [wpi_designer_button text=’Preview’ link=’https://shortify-go.herokuapp.com/’ style_id=’48’ icon=’cloud’ target=’_blank’] Features Included: 1. Used online redis provided by redislabs 2. Proper folder structure ( I believe so) 3. Shows notifications in go 4. Added support for clipboard.js I hope […]
Having touched golang recently, I felt the need for a good project, that could give me an insight into golang programming and redis. So, I worked on Shortify – the url shortener. Though it is not a high level project, it gave a basic idea of getting started. Redis: ( Blah Blah Blah .. ) […]
The first thing which pops into my mind when thinking about react and redux is thenewboston infographics. In this tutorial I will walk you through my personal project Musio. In the previous article, I have covered the basics of react.
This is a simple tutorial on how to implement Retrofit, the REST api in your android application. If you are intending to save the REST data for offline usage, then How to use GreenDao in android studio? is a good read. Make sure you download the complete project. [wpi_designer_button text=’Download’ link=’https://github.com/arjunsk/android_retrofit’ style_id=’48’ icon=’github’ target=’_blank’] STEPS […]
This app will help you monitor sensor datas uploaded to cloud via MQTT and visualize it in the form of Spline. Use-case scenario: The app’s primary objective is to monitor elder peoples health condition from remote periodicaly. In-fact, we wanted to integrate more sensors in the device, like Temperature, GPS etc. This could also be […]
This is a follow up of the tutorial series, on IOT-with-ESP-01. If you can’t follow this article, make sure to read the complete series. NOTE: 1. First of all, you should know that, ESP-01 has only 2 GPIO pins and no ADC pins. So we can only use digital output sensors. 2. LM35 (Temperature Sensor), […]
In this tutorial, I will walk you through the process of installing Pubsubclient library for ESP8266, and help you understand a simple program for sending data to cloud MQTT. Please read my tutorial series on IOT.