Blog
Putting our heads together.
04/10/2018
Headless WordPress with React and GraphQL
How to create a single page application with React consuming Wordpress data with GraphQL
This post presents an alternative approach to create Wordpress websites using front-end cutting-edge technologies. A React single page application consuming Wordpress data using GraphQL through the Apollo Client library. Enjoy the goodies of Wordpress while offering modern, fast and memorable experiences to your users.
04/05/2018
Async tasks with Kotlin Coroutines
An example using Firestore with Android Architecture Components
Going further into the Android Architecture Components, we take a look at Kotlin Coroutines. With them it is quite simple to code Async tasks as Synchronous ones. Easing the data retrieval from Firestore and allowing us to handle exceptions without a lot of code.
03/23/2018
Comunidad en NaNLABS – Espacio de Coworking en La Plata
Para emprendedores con ganas de trabajar en un ambiente colaborativo.
Abrimos nuestro espacio de Coworking en La Plata. Un espacio de trabajo distendido y colaborativo. Ofrecemos internet de alta velocidad, salas de reunión, puestos fijos y rotativos y planes a medida!
03/19/2018
Scaled images in React Native
How to scale images in React Native keeping the proportions and not affecting UX
Working with Images in React Native is quite common, but what can we do when those images have different dimensions and have to fit into a box? React Native Scaled Image is the module for you. It can scale the images without impacting view rendering.
03/14/2018
Native extensions for NodeJS
Step by step guide to understand the core concepts and build a first extension.
This article is intended for those looking to develop a first native extension with NodeJS. First, we’ll look into the concepts that are important to understand to get started. Later, I will show how to build our first native extension with a practical example. And finally, I will leave some links to read more about it
03/12/2018
LaPlataJS Meetup – Coming up next Saturday 17th
Getting started with microservices and Building an SPA with React and GraphQL
Join LaPlataJS community for its next meetup on March 17, 2018. The agenda: Microservices 4 real and How to build an SPA with React and GraphQL using the Wordpress API. The idea is for the community to get together and share experiences, discuss and share info about what is going on in the JS world. More info here!
03/09/2018
Creativity in Software Development
Workshop to develop creative skills
As designers and developers, creativity is at the center of our work. This is why we believe we should continuously develop our creative skills, both as individuals and as a team. This Creativity workshop is an example of discussions and activities that can be organized to foster creativity in a software company!
03/08/2018
Async actions handling with redux-thunk
Using redux-thunk to work with asynchronicity
Working with async actions in Redux can be troublesome, there are many actions and reducers that fire up incorrectly, so here is a short and concise tutorial to start working with redux-thunk and handling async actions in Redux, complete with code samples and repository that you can use as boilerplate for your projects