Understanding Service Workers
A practical introduction to service workers (scripts that run in the background separate from a Web page context) and how to easily create one using Ember. - https://goo.gl/AgL6xH
#serviceWorker
A practical introduction to service workers (scripts that run in the background separate from a Web page context) and how to easily create one using Ember. - https://goo.gl/AgL6xH
#serviceWorker
88MPH.io
Understanding Service Workers
What are Service Workers? What can they do, and how can make your web app perform better? This article sets out to answer those questions, plus how to implement them using the Ember.js framework. Table of Contents Background Registration Install Event Fetch…
JetBrains Open Sources Its 'Ring UI' Web UI Components
Over 50 React controls built and used at JetBrains - https://goo.gl/vJG8dV
#react #components
Over 50 React controls built and used at JetBrains - https://goo.gl/vJG8dV
#react #components
StackBlitz: An Online VS Code IDE for Angular + React Dev
Get the VS Code experience in your browser. - https://goo.gl/TMnQij
#vscode #online
Get the VS Code experience in your browser. - https://goo.gl/TMnQij
#vscode #online
Presenting the d3.loom chart - A new plugin to create butterfly, fan-like, axe shaped charts
I’d like to “formally” introduce and explain a new (and my first) d3 plugin to create a chart that I’ve started calling “the loom”...The loom layout is meant to create a chart with a group of entities in the center and different group of entities on the outside. They are connected by strings where the thickness of the string on the outside represents the connection (i.e. value) of the inner and outer entity... -
https://goo.gl/yi4hXp
#d3js
I’d like to “formally” introduce and explain a new (and my first) d3 plugin to create a chart that I’ve started calling “the loom”...The loom layout is meant to create a chart with a group of entities in the center and different group of entities on the outside. They are connected by strings where the thickness of the string on the outside represents the connection (i.e. value) of the inner and outer entity... -
https://goo.gl/yi4hXp
#d3js
Visual Cinnamon
Presenting the new d3.loom chart form plugin - Visual Cinnamon
A blog presenting a new chart form that creates a butterfly/double axe shaped visual, the loom! Explaining how to create it & what the different options are
Make Sites Look Native Without The App Store
Using the Web Manifest spec to ensure your app looks like the real deal. - https://goo.gl/zbgW4T
#mobile
Using the Web Manifest spec to ensure your app looks like the real deal. - https://goo.gl/zbgW4T
#mobile
C-Sharpcorner
Making Web Sites Look Like Native Apps Without the App Store
Earning a place on a user's home screen is key to engagement with customers. The automatic Add to Home Screen Experience provides this capability to progressive web applications. This is driven by the web manifest file, providing valuable meta information…
Cavy: A New End-To-End Testing Framework For React Native -https://goo.gl/w35UrS
#reactNative #cavy #video
#reactNative #cavy #video
Pusher
Pusher | Leader In Realtime Technologies
Pusher empowers developers with APIs to create collaboration & communication features in their web and mobile apps.
10 Redux Tips to Scale Your Dev Team
Advice for those planning to use Redux at scale. - https://goo.gl/259igK
#redux #tips
Advice for those planning to use Redux at scale. - https://goo.gl/259igK
#redux #tips
Matters
10 Redux tips to scale your dev team
Matters (@matterstech) is a startup studio building the alternative products of tomorrow. For Matters, it is key to be able to scale fast…
How I built a wind map with WebGL
I have an unflattering confession to make: for the last few years working at Mapbox, I avoided direct OpenGL/WebGL programming like a plague. For one reason: the OpenGL API and terminology deeply terrified me... -
https://goo.gl/JeE5yr
#webGL
I have an unflattering confession to make: for the last few years working at Mapbox, I avoided direct OpenGL/WebGL programming like a plague. For one reason: the OpenGL API and terminology deeply terrified me... -
https://goo.gl/JeE5yr
#webGL
Points of interest
How I built a wind map with WebGL
Check out my WebGL-based wind power simulation demo! Let’s dive into how it works under the hood.
Geographic - D3's approach to rendering geographic information
This chapter looks at D3’s approach to rendering geographic information...D3’s approach differs to so called raster methods such as Leaflet and Google Maps. - https://goo.gl/EpeLX2
#d3js #geo
This chapter looks at D3’s approach to rendering geographic information...D3’s approach differs to so called raster methods such as Leaflet and Google Maps. - https://goo.gl/EpeLX2
#d3js #geo
How to Launch Android Emulators and iOS Simulators From the Command Line
TJ VanToll shows how he set up command line commands to launch the iOS and Android simulators to simplify the workflow when building a mobile app. - https://goo.gl/B5TtfJ
#mobile #emulator
TJ VanToll shows how he set up command line commands to launch the iOS and Android simulators to simplify the workflow when building a mobile app. - https://goo.gl/B5TtfJ
#mobile #emulator
Telerik Developer Network
How to Launch Android Emulators and iOS Simulators From the Command Line
TJ VanToll shows how he set up command line commands to launch the iOS and Android simulators to simplify the workflow when building a mobile app.
10 Guidelines to Improve Your Web Accessibility
Some guidelines to improve the accessibility of your site from color choices through to helpful tools and HTML element choices. -
https://goo.gl/Hkzzhw
#webAccessibility
Some guidelines to improve the accessibility of your site from color choices through to helpful tools and HTML element choices. -
https://goo.gl/Hkzzhw
#webAccessibility
Aerolab
10 guidelines to improve your web accessibility | Aerolab
We put together a list of ten web accessibility guidelines that will guarantee access to your site to any person, in spite of their disabilities.
Create A Calculator App with Ionic Framework 3
How to create a calculator app using Ionic Framework 3 and the Ionic Creator. - https://goo.gl/PQHQyM
#ionic
How to create a calculator app using Ionic Framework 3 and the Ionic Creator. - https://goo.gl/PQHQyM
#ionic
Nikola Brežnjak blog
How to create a calculator application with Ionic framework 3 by using Ionic Creator for UI - Nikola Brežnjak blog
This is the second post in a series of posts which will teach you how to take advantage of your web development knowledge in building hybrid applications for iOS and Android. The first post in this series was all about How to get started with Ionic Framework…
Panning and Zooming with D3v4
All that’s necessary for panning and zooming is a translation [tx, ty] and a scale factor k. When a zoom transform is applied to an element at position [x0, y0], its new position becomes [tx + k × x0, ty + k × y0]. That’s it. Everything else is just sugar and spice on top of this simple transform...The major difference between zooming in D3v3 and D3v4 is that the behavior (dealing with events) and the transforms (positioning elements) are more separated. In v3, they used to be part of the behavior whereas, in v4, they’re part of the element on which the behavior is called...To illustrate, let’s plot 4 points. The rest of this post will only deal with data in one dimension... - https://goo.gl/aPwY5R
#d3js #zooming #panning
All that’s necessary for panning and zooming is a translation [tx, ty] and a scale factor k. When a zoom transform is applied to an element at position [x0, y0], its new position becomes [tx + k × x0, ty + k × y0]. That’s it. Everything else is just sugar and spice on top of this simple transform...The major difference between zooming in D3v3 and D3v4 is that the behavior (dealing with events) and the transforms (positioning elements) are more separated. In v3, they used to be part of the behavior whereas, in v4, they’re part of the element on which the behavior is called...To illustrate, let’s plot 4 points. The rest of this post will only deal with data in one dimension... - https://goo.gl/aPwY5R
#d3js #zooming #panning
emptypipes.org
Panning and Zooming with D3v4
How to use D3v4's zoom behavior to implement panning and zooming on elements.
Production Ready Microservices In Action
A practical guide for cloud native Microservice development. -
https://goo.gl/cgtWVk
#microservice
A practical guide for cloud native Microservice development. -
https://goo.gl/cgtWVk
#microservice
Medium
Production Ready Microservices In Action
practical guide for cloud native Microservice development
Changes to Node’s Errors You Need to Know About
Changes, beginning in Node 8 and continuing to occur en route to Node 9, are coming to errors thrown by the Node.js runtime -
https://goo.gl/ULovz2
#nodejs
Changes, beginning in Node 8 and continuing to occur en route to Node 9, are coming to errors thrown by the Node.js runtime -
https://goo.gl/ULovz2
#nodejs
Medium
Node.js Errors — Changes you need to know about
This post was written by Michael Dawson who is a Node.js Runtime Tech Dev @ IBM, #nodejs collaborator and CTC member. He originally posted…