What’s New in the Latest Microsoft Edge? A Lot
The foundation for full-featured PWAs is now here with Service Workers and push notifications enabled by default, there’s variable fonts support, Notification API support, improved ARIA support, support for CSS transforms on SVG elements, and more. - http://bit.ly/2KkiOpm
#edge
The foundation for full-featured PWAs is now here with Service Workers and push notifications enabled by default, there’s variable fonts support, Notification API support, improved ARIA support, support for CSS transforms on SVG elements, and more. - http://bit.ly/2KkiOpm
#edge
Microsoft Edge Blog
What’s new in Microsoft Edge in the Windows 10 April 2018 Update
The next update to Microsoft Edge is now available with the Windows 10 April 2018 Update! This update includes EdgeHTML 17, the next major version of Microsoft Edge’s rendering engine, as well as new features and everyday improvements across the product.…
How to ace Error Messages on forms
Users want to complete your form, but if doing so takes too much effort, they’ll change their mind. - http://bit.ly/2wL0DHm
#webdesign
Users want to complete your form, but if doing so takes too much effort, they’ll change their mind. - http://bit.ly/2wL0DHm
#webdesign
UX Movement
The Best Place for Error Messages on Forms
Where are you placing the error messages on your form? If they're not placed where users expect to see them, you could jeopardize their capability to complete your form.
Learning Higher-Order Components in React by Building a Loading Screen - http://bit.ly/2HZ0zow
#react
#react
Medium
Learning Higher-Order Components in React by Building a Loading Screen
Let me share a secret: no matter how long you’ve been doing something, you’re bound to have to relearn some part of it. I haven’t built my…
Switching From 'cluster' to PM2 and RabbitMQ
Node.js is generally single-threaded, and the cluster module is often used to take advantage of multiple CPU cores by spawning multiple processes. PM2, the process manager, provides an alternative way of doing this. - http://bit.ly/2wCLO9U
#nodejs
Node.js is generally single-threaded, and the cluster module is often used to take advantage of multiple CPU cores by spawning multiple processes. PM2, the process manager, provides an alternative way of doing this. - http://bit.ly/2wCLO9U
#nodejs
Medium
Switching from cluster module to PM2 & RabbitMQ in Node.js
If you have been using Node.js for sometime, you should know that it is single threaded. This is why you can’t take full advantage of…
Angular 6.0 Released
A major release focused on Angular’s toolchain (particularly Angular CLI) and developer experience than on the framework itself. Angular Elements also allows you to bootstrap components within an existing app by registering them as Custom Elements. - http://bit.ly/2InbZa0
#angular
A major release focused on Angular’s toolchain (particularly Angular CLI) and developer experience than on the framework itself. Angular Elements also allows you to bootstrap components within an existing app by registering them as Custom Elements. - http://bit.ly/2InbZa0
#angular
Angular Blog
Version 6 of Angular Now Available – Angular Blog
The 6.0.0 release of Angular is here! This is a major release focused less on the underlying framework, and more on the toolchain and on…
An Update on CSS Grid Level 2 and Subgrids
A handy post for getting a feel for progress on subgrids with future versions of the CSS Grid spec. - http://bit.ly/2rFLHo3
#css
A handy post for getting a feel for progress on subgrids with future versions of the CSS Grid spec. - http://bit.ly/2rFLHo3
#css
The site of Rachel Andrew, writer, speaker and web developer
Grid Level 2 and Subgrid
A post about subgrid and the level 2 spec, what is happening and how can you keep track of progress?
Making responsive Vue components with ResizeObserver
Your component responsiveness is based on the screen size but should be based on its own size. - http://bit.ly/2IiIKBd
#vue
Your component responsiveness is based on the screen size but should be based on its own size. - http://bit.ly/2IiIKBd
#vue
ITNEXT
Making responsive Vue components with ResizeObserver
Hello guys! Today I want to share a little but very useful thing.
BigInt: Arbitrary-Precision Integers in JavaScript
A look at a new numeric primitive to represent integers with arbitrary precision that’s already available in V8 6.7 and Chrome 67. You may also enjoy the story behind implementing them in V8 - http://bit.ly/2wOswyo
#javascript
A look at a new numeric primitive to represent integers with arbitrary precision that’s already available in V8 6.7 and Chrome 67. You may also enjoy the story behind implementing them in V8 - http://bit.ly/2wOswyo
#javascript
Google Developers
BigInt: arbitrary-precision integers in JavaScript | Web
| Google Developers
| Google Developers
BigInts are a new numeric primitive in JavaScript that can represent integers with arbitrary precision. This article walks through some use cases and explains the new functionality in Chrome 67 by comparing BigInts to Numbers in JavaScript.
Improving Performance with Background Data Prefetching
Instagram wants their client to feel as fast as possible, and this post explains their approach to decoupling network availability and app usability. - http://bit.ly/2I2Kna4
#web #performance
Instagram wants their client to feel as fast as possible, and this post explains their approach to decoupling network availability and app usability. - http://bit.ly/2I2Kna4
#web #performance
Instagram Engineering
Improving performance with background data prefetching
The Instagram community is bigger and more diverse than ever before. 800m people now visit every month, 80% of whom are outside of the…
Creating a Real-World CLI App with Node
Go beyond basic ‘hello world’ tutorials and see how a complete, useful CLI app is built. - http://bit.ly/2KWEsRL
#nodejs
Go beyond basic ‘hello world’ tutorials and see how a complete, useful CLI app is built. - http://bit.ly/2KWEsRL
#nodejs
Timber.io
Creating a real-world CLI app with Node
The command line is a user interface that doesn't get enough attention in the world of Javascript development. The reality is that most dev tools should have a CLI to be utilized by nerds like us, and the user experience should be on par with that of your…
Setting up apollo-link-state for Multiple Stores
Set up apollo-link-state to support of multiple stores that don’t interfere with one another. - http://bit.ly/2I17Swa
#react
Set up apollo-link-state to support of multiple stores that don’t interfere with one another. - http://bit.ly/2I17Swa
#react
Hacker Noon
Setting up apollo-link-state for Multiple Stores
I want to touch on how to set up apollo-link-state to allow for support of multiple stores without interfering with one another.
Getting More CSS Grid Flexibility with 'minmax()'
minmax lets you specify a minimum and maximum size for your grid tracks. - http://bit.ly/2rFvhfr
#css
minmax lets you specify a minimum and maximum size for your grid tracks. - http://bit.ly/2rFvhfr
#css
CodePen
CSS Grid: More flexibility with minmax()
One of the things that can put people off trying out CSS Grid is there’s so much choice when it comes to defining your grid layout and placing your content, so it can be hard to know until you’ve...
Containerizing Node.js Applications with Docker
Goes from the basics of Docker to some Node and Docker best practices. - http://bit.ly/2wzviao
#nodejs #docker
Goes from the basics of Docker to some Node and Docker best practices. - http://bit.ly/2wzviao
#nodejs #docker
Capture and Report JavaScript Errors with window.onerror - http://bit.ly/2Ip3ozD
SitePoint
Capture and Report JavaScript Errors with window.onerror — SitePoint
onerror is a special browser event that fires whenever an uncaught JavaScript error has been thrown.
A Quick Intro to Kubernetes for App Developers
High level, but if Kubernetes is a mystery to you it may help. - http://bit.ly/2KmzGeT
#kubernetes
High level, but if Kubernetes is a mystery to you it may help. - http://bit.ly/2KmzGeT
#kubernetes
GoDaddy Open Source Center
Kubernetes - A Practical Introduction for Application Developers | @GodaddyOSS
A collection of resources / best practices that help you become a more productive developer working with Kubernetes.
How to Create Data-Driven User Interfaces in Vue
All modern JavaScript frameworks have ways of handling dynamic components. This blog post will show you how to do it in Vue. - http://bit.ly/2ISLtVs
#vue
All modern JavaScript frameworks have ways of handling dynamic components. This blog post will show you how to do it in Vue. - http://bit.ly/2ISLtVs
#vue
Rangle.io | Blog
How to Create Data-Driven User Interfaces in Vue
All modern JavaScript frameworks have ways of handling dynamic components. This blog post will show you how to do it in Vue.JS.
React Lifecycle Visualizer: A Real-Time Visualizer for Lifecycle Methods
Trace components by applying a single higher-order component which makes all lifecycle-method calls show up in an animated log. - http://bit.ly/2LdnPkM
#react
Trace components by applying a single higher-order component which makes all lifecycle-method calls show up in an animated log. - http://bit.ly/2LdnPkM
#react
GitHub
Oblosys/react-lifecycle-visualizer
Real-time visualizer for React lifecycle methods. Contribute to Oblosys/react-lifecycle-visualizer development by creating an account on GitHub.
How to Tailor Your PWA for Windows
How to install, run, and enhance your PWA as a Windows 10 app. - http://bit.ly/2IAltKX
#pwa
How to install, run, and enhance your PWA as a Windows 10 app. - http://bit.ly/2IAltKX
#pwa
Docs
Tailor your PWA for Windows - Microsoft Edge Development
Progressively enhance your PWA for Windows with native app features
Looking at the 'line-clamp' CSS Attribute
Truncates text at a specific number of lines. Support is mixed (Chrome and Safari, but not Firefox or Edge). - http://bit.ly/2KgGB9K
#css
Truncates text at a specific number of lines. Support is mixed (Chrome and Safari, but not Firefox or Edge). - http://bit.ly/2KgGB9K
#css
CSS-Tricks
line-clamp | CSS-Tricks
The line-clamp property truncates text at a specific number of lines. The spec for it is currently an Editor's Draft, so that means nothing here is set in