Just a few months after Facebook announced their “Create-React-App” project, WalmartLabs has opened sourced the application platform that runs Walmart.com, Electrode. So far, it looks like a feature-rich, rapid React development framework, much like Facebook’s project. Both of these projects solve a real problem. With a single and simple line […]
Blog
The kind folks at Facebook just announced a way to boilerplate a React.js app: Create-react-app They readily admit there have been several attempts to do this by others, most failing to gain traction. However, they also admit that Ember-CLI impressively ramps up development within that framework. After only a few […]
12 useful hacks for Javascript Most of these are very good tips.
Have to start getting used to some iterator syntax. Here’s how we USED to do it: for (let color in colors) { let colorObj = {}; colorObj.code = colors[color].colorPrdId; colorObj.name = colors[color].colorName; colorObj.imgSwatch = colors[color].imgSwatch; collection.push(colorObj); } Here’s the new way to code the same thing: colors.forEach(function (color) { collection.push({ code: […]
So you write some code, validate the feature, send it off to QA, and move on to something else. The last thing you expect is to have a QA engineer come back and say that your code doesn’t work. When that happens, you begin the process of identifying the differences […]
Great tips here: https://github.com/blog/1943-how-to-write-the-perfect-pull-request All boils down to empathy and manners. Feedback to pull requests should be respectful to the developer.
I still remember the awe I felt visiting sites built with Flash. It’s still hard for me to come to grips with the fact that it’s over. Each site was animated, dynamic, and *gasp* cross-browser compatible! When iOS announced they would not be supporting Flash sites, I was stunned. Why […]
jQuery releases version 3.0 – a slimmer, faster JavaScript library
Recently had a need to debug a site on an iOS device. But the site was only accessible through the company’s VPN. How do you do that? Well, you could log into the company’s VPN by downloading a VPN app and configuring it. But why go through that hassle when […]