Posts about web applications
Categories
- Feb 23 2017
Getting Started with VoiceOver & Accessibility
If you are a web developer working on a Mac, you can become a hero for thousands of people out there by assuring that anything you create for the web can be read properly by a screen reader. This blog post is going to teach you how to access and wield this super power that […]
Continue ReadingGetting Started with VoiceOver & Accessibility - Feb 21 2017
CSS Grid: Learning new layout
I’ve been writing base layouts for CSS a long time. Come next month, I’m going to be using a new feature to do that work for the first time in many years, CSS Grid. Yes, flexbox came along and I used it for some pieces of the layout, but it didn’t change the way I […]
Continue ReadingCSS Grid: Learning new layout- Tagged in:
- CSS,
- CSS Grid,
- responsive
- Sep 13 2016
How BoxArt Provides Fast DOM Animations
Our last article about BoxArt showed how to use BoxArt’s Animated component to animate a tile-dropping game built in React. This time, we are going to look at some features of how Animated optimizes animations for performance. The Beastliness of Layout Thrash There’s a performance nightmare constantly threatening when you’re animating in the browser. As […]
Continue ReadingHow BoxArt Provides Fast DOM Animations- Tagged in:
- animations,
- games,
- performance,
- react
- Sep 08 2016
Animating React Elements with BoxArt
Have you ever tried writing animations into a website? It’s complicated. There’s lots of room for error, and no tool seems to fill every animation need. Recently, while writing some DOM-based games, the Bocoup team realized there wasn’t existing software for all of the projects’ animation needs. To help fill the gaps, Bocoup created BoxArt, […]
Continue ReadingAnimating React Elements with BoxArt- Tagged in:
- animations,
- games,
- react
- Jul 08 2016
Pom & Circumstance: Announcing Pombot for tracking time and productivity in Slack
Recent communication apps, like Slack, have lowered the barrier of entry for the use of bots to increase productivity. There are many techniques that I, personally, have tried in the past for time management, but none that I ever ended up fully adopting. Despite that, I always have been fascinated with what my colleagues were […]
Continue ReadingPom & Circumstance: Announcing Pombot for tracking time and productivity in Slack- Tagged in:
- bots,
- chatter,
- pombot,
- productivity,
- slack
- Jul 07 2016
Announcing Chatter: a library for making interactive chat bots on slack and more
We’ve long been making bots with hardware, now we’re making them with software too! They started as simple one-off “report bots.” Basically, helpful commands that anyone in our Slack could use to show useful information like who’s out on a given day, or how much vacation time we’ve taken. We also made a bot where […]
Continue ReadingAnnouncing Chatter: a library for making interactive chat bots on slack and more - Mar 17 2016
Seams in JavaScript
Sometimes I’m not satisfied with the way things are. I wish they could be a little bit different, just for a moment. I deal with this desire in my personal life by sighing and gazing through a rain-dotted window. When writing code, I take a more productive approach: I use seams. During application development, there […]
Continue ReadingSeams in JavaScript- Tagged in:
- software development process,
- testing
- Dec 10 2015
Bocoup ♥ WordPress
Illustration by Sue Lockwood We here at Bocoup want to take a moment to recognize two of our team members for their work on WordPress 4.4, which was released this week: Mat “Wilto” Marquis and K. Adam White. Mat, by his own description, was the lead noise-maker for the effort to get native responsive image […]
Continue ReadingBocoup ♥ WordPress - Aug 13 2015
A Git Workflow Walkthrough – Merging Pull Requests
We are in the homestretch with our git workflow walkthrough. I knew we could do it! Last time, we looked at a few ways to review pull requests. In this final (for now!) installment, we will merge our reviewed changes back into master. Once your pull request reviewer is satisfied with the changes, you’ll get […]
Continue ReadingA Git Workflow Walkthrough – Merging Pull Requests - Aug 03 2015
A Git Workflow Walkthrough – Reviewing Pull Requests Locally
In many cases, a visual check of the changes via the PR page on GitHub is enough to give a +1 to changes. That’s how we did things in our previous walkthrough post. But sometimes, you want to try things out locally downloaded to your own machine to get a feel for what is really […]
Continue ReadingA Git Workflow Walkthrough – Reviewing Pull Requests Locally