hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Thursday, 7 September, 2017 UTC

Real Time Chat Application with Kotlin and Firebase

In this tutorial, we will create a simple real time messaging application. Setup Start by creating a new Android Studio project (make sure to check “Include Kotlin support”). I am using Android Studio 3.0 Beta 2. Next we will need to go to https://console.firebase.google.com ... more


Tuesday, 25 July, 2017 UTC

Angular, React, or Vue JS: Which one is for me?

Any modern front-end developer will tell you that it’s nearly impossible to keep up with the break-neck pace of new JavaScript frameworks; what was hot last week is almost certainly out of vogue by the time you get around to learning it. One of the hardest ... more


Wednesday, 19 July, 2017 UTC

Creating a static blog with Gatsby

Gatsby is an incredible static site generator that allows for React to be used as the underlying rendering engine to scaffold out a static site that truly has all the benefits expected in a modern web application. It does this by rendering dynamic React ... more


Thursday, 13 July, 2017 UTC

Getting Started With Amazon Alexa Development

In the last few years Amazon has been able to capture a significant share of the home assistant market with the help of the Echo product family. Starting with the audio only product line, Dot, Tap, and Echo, Amazon has now branched out into other hardware ... more


Thursday, 15 June, 2017 UTC

Real Time Data Methods

I have spent a few years building, and rebuilding a live-data service in my free time. I have progressed in many ways toward a solution that works for me. The goal was a wide-coverage webapp that provided real time updates, and could scale with little ... more


Friday, 9 June, 2017 UTC

Getting started with Vuex

State management is all the rage. Having a centralized, reactive datastore for your webapp makes everything easier, regardless of the size of you app. I will concede that not every situation calls for state management. For instance, a true single page ... more


Wednesday, 24 May, 2017 UTC

Object Partners Tech Trends

What was asked Recently we sent out a survey to all of our consultants to get a feel for what technologies are in use across our clients, we dug through the results of that survey to give you a glimpse into the pulse of tech development across the company. ... more


Friday, 28 April, 2017 UTC

Two-way Data Binding in ReactJS – Part III

Variable-length Arrays In Part I, we learned how to automatically bind top-level state properties to form elements in JSX, so that updates to those elements automatically updated state and vice versa. In Part II, we solved for nested objects and properties ... more


Wednesday, 26 April, 2017 UTC

Two-way Data Binding in ReactJS – Part I

Simple Data Binding What do Aurelia, VueJS, and Angular have in common? All three are modern frameworks that support two-way data binding. Of course, ReactJS famously omits this feature, and I believe the standard excuse runs along the lines of, “Flux ... more


Wednesday, 26 April, 2017 UTC

Two-way Data Binding in ReactJS – Part II

Nested State In Part I, we learned how to bind top-level state properties to form elements in JSX, so that updates to those elements automatically updated state and vice versa. However, the method we used breaks down when the structure of our state object ... more


Thursday, 20 April, 2017 UTC

Real Time Database Triggers with Firebase Functions

A recent Android application I worked on required storing the latitude and longitude of a user’s location. I was asked to convert that latitude and longitude into a user-readable address. I could have written the code in Java, which would convert latitude ... more


Friday, 14 April, 2017 UTC

Ahead of Time Compilation with Angular

It’s hard enough getting your Grunts, Gulps, and Webpacks working with a complex Angular codebase, but is it really how you’re supposed to build your application for production? These days, every byte counts when your app has to work on mobile and Internet ... more


Thursday, 13 April, 2017 UTC

How to install and use Headless Chrome on OSX

This walkthrough shows you how to get headless Chrome up and running on OSX and explains in detail how to use the code examples provided by the Chrome team. What problem does Headless Chrome solve? Headless mode in Chrome is a new way to interact with ... more


Monday, 13 March, 2017 UTC

Migrating from Cordova to React Native

Cordova and React Native are JavaScript based frameworks for building cross-platform mobile apps. They differ greatly in their approach, with Cordova being embedded web view centric, and React Native being native centric. React Native is just one of ... more


Wednesday, 15 February, 2017 UTC

Adding a Windows Universal Version to your Existing React Native App in VirtualBox

Last time, we looked at how to build a Universal Windows Platform app in React Native in VirtualBox with a Windows 10 Developer VM. In this article, we’ll look at how to add the Windows Universal Platform into an existing React Native app that’s already ... more


Friday, 27 January, 2017 UTC

Create a Universal Windows App with React Native in VirtualBox

Want to build a native Windows Universal app without the native language? React Native Windows can do that. The following is a walkthrough on how to get a native Universal Windows Platform (UWP) app up and running via a Windows 10 Virtual Machine on ... more


Wednesday, 25 January, 2017 UTC

Synchronizing Rest Service Schemas

We’ve all been there: Your app deploys to production and you discover that something has stopped working because the services you depend on have renamed a field. In a REST service there is no static contract to bind to, which most of the time is a fantastic ... more