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…
All About React Router 4
A dive into React Router 4, how it’s so different from previous React Router versions, and why that is. - https://goo.gl/3NfPM7
#react #router
A dive into React Router 4, how it’s so different from previous React Router versions, and why that is. - https://goo.gl/3NfPM7
#react #router
CSS-Tricks
All About React Router 4
This post is going to dig into to React Router 4, how it's so different from previous React Router versions, and why that is. My intentions for this article aren't to rehash the already well-written documentation for React Router 4. I will cover the most…
Bootstrap 4 Beta Released
Two years in the making, the popular front-end framework is taking some key steps forward. For starters, it’s switched from Less to Sass and is now Flexbox based. - https://goo.gl/fYQcYr
#bootstrap #release
Two years in the making, the popular front-end framework is taking some key steps forward. For starters, it’s switched from Less to Sass and is now Flexbox based. - https://goo.gl/fYQcYr
#bootstrap #release
Getbootstrap
Bootstrap 4 Beta
The most popular HTML, CSS, and JS framework in the world.
N-API and Getting Started with Writing C Addons for Node
Using N-API’s abstractions, you can create C/C++ addons without having a deep understanding of how V8 works. -
https://goo.gl/SN1kW9
#nodejs #addon
Using N-API’s abstractions, you can create C/C++ addons without having a deep understanding of how V8 works. -
https://goo.gl/SN1kW9
#nodejs #addon
Medium
N-API and getting started with writing C addons for Node.js
The latest release of Node.js introduced some significant changes and API additions to the Node world but perhaps the least talked about…
Techniques for Passing Data Between Promise Callbacks
Some approaches for sharing data between callbacks (which each have their own scope). - https://goo.gl/xER4QR
#promise
Some approaches for sharing data between callbacks (which each have their own scope). - https://goo.gl/xER4QR
#promise
2ality
Passing data between Promise callbacks
In Promise-based code, there are usually many callbacks, each one having a separate scope for variables. What if you want to share data between those callbacks? This blog post describes techniques for doing so.
Creating A Ride-Booking App with React Native and Pusher
Learn how you can create a ride-booking app similar to Uber, Lyft or Grab with React Native. - https://goo.gl/5YbjH9
#reactNative
Learn how you can create a ride-booking app similar to Uber, Lyft or Grab with React Native. - https://goo.gl/5YbjH9
#reactNative
Pusher Blog
Creating a ride-booking app with React Native and Pusher - Pusher Blog
Learn how you can create a ride-booking app similar to Uber, Lyft or Grab with React Native and Pusher.
React Animations in Depth
Nader Dabit looks at five options you have for doing Web-based animations with React including the pros and cons of each. - https://goo.gl/XEKkXB
#react #animations
Nader Dabit looks at five options you have for doing Web-based animations with React including the pros and cons of each. - https://goo.gl/XEKkXB
#react #animations
Medium
React Animations in Depth
5 Options for React Web Animations, and which of these are cross-platform.
National Health Service, on Elixir and Kubernetes
The story of an awesome project that we built on Elixir, React.js + Redux.js and Kubernetes - eHealth for National Health Service of Ukraine. - https://goo.gl/iqfTTw
#microservice
The story of an awesome project that we built on Elixir, React.js + Redux.js and Kubernetes - eHealth for National Health Service of Ukraine. - https://goo.gl/iqfTTw
#microservice
Medium
National Health Service, on Elixir and Kubernetes
By this post, I want to share a second awesome project that we built on Elixir, React.js+Redux.js and Kubernetes — eHealth for National…
How to Do End-to-End React Native Testing with Detox
An end-to-end testing library that can emulate user behavior and test how your app reacts to it. - https://goo.gl/ShvUkf
#reactNative #testing #e2e
An end-to-end testing library that can emulate user behavior and test how your app reacts to it. - https://goo.gl/ShvUkf
#reactNative #testing #e2e
Product at Home
Response to
React Native + Detox = ❤
Node 8.4 (Current) Released
Just a week after 8.3, 8.4 is here with experimental support for http2 available behind a command line option. - https://goo.gl/VC8vrU
#nodejs #release
Just a week after 8.3, 8.4 is here with experimental support for http2 available behind a command line option. - https://goo.gl/VC8vrU
#nodejs #release
Node.js
Node v8.4.0 (Current) | Node.js
Developing with Node.js on Microsoft Azure
A free course to get you started with developing and deploying Node apps and services on Azure. - https://goo.gl/VxZW3E
#nodejs #azure #course #free
A free course to get you started with developing and deploying Node apps and services on Azure. - https://goo.gl/VxZW3E
#nodejs #azure #course #free
Pluralsight
Developing with Node.js on Microsoft Azure - Getting Started
This course gets you started with everything you need to develop and deploy Node.js web applications and services in Microsoft Azure.
Performant Web Animations and Interactions: Achieving 60 FPS
A high frame rate often equals a high level of responsiveness and user satisfaction, but what’s involved in getting high frame rates for Web pages? - https://goo.gl/Fxc2Qr
#animations
A high frame rate often equals a high level of responsiveness and user satisfaction, but what’s involved in getting high frame rates for Web pages? - https://goo.gl/Fxc2Qr
#animations
Milliseconds Matter
Performant Web Animations and Interactions: Achieving 60 FPS
Silky smooth interactions are critical for providing a natural-feeling application. The devil is in the details, and ill-performant web animations feel awkward, “janky”, and, above all, slow. Developers often invest quite a bit of time to reduce first page…