Policies can unintentionally keep people from thinking

Policies established to create order often unintentionally keep people from thinking. “Let’s face it: corporate environments and modern organizations are the perfect setup for diminishing leadership and you have a certain built-in tyranny. The org charts, the hierarchy, the titles, the approval matrixes skew power toward the top and create incentives for people to shut down… Continue reading Policies can unintentionally keep people from thinking

Talkin’ ‘Bout Your Web Perf

I’ve had a lot of luck using this article to push performance conversations further. The numbers are dated but the concepts are real. You have to know how good is good enough. How bad is too bad to tolerate. You have to separate user interactions by value and user expectations. Here I break down user expectations… Continue reading Talkin’ ‘Bout Your Web Perf

JSCS lints and shines your JavaScript

If you use Sublime Text you may want to try the JSCS plugin for SublimeLinter. JSCS stands for JavaScript Code Style. What makes it even more useful than JSHint? With this plugin it will even fix small style errors for you!

Once you have the plugin working you’ll definitely want to  tailor the rules .jscsrc file.

One good gotcha: It ships with a lot of presets and has a lot of mirroring rule options. It might be tricky for you to override the preset.

For example, I opted for the Google preset and wanted to add the requireSpacesInAnonymousFunctionExpression rule. It wasn’t working until I realized the Google preset came with a mirroring option set: disallowSpacesInAnonymousFunctionExpression. I had to set that to null explicitly before my own settings would work.

Thank you to Addy Osmani for your post on the sublime plugin, and thank you to Josh at SublimeTextTips.com for mentioning it in your newsletter.

Next page