RSSAmplifier

Blog

Clint Berry

Recent content on Clint Berry

clintberry.comRSS feed ↗28 posts

Latest posts

Why You Need a Director of Developer Experience

In a previous post I talked about what a CTO does and how at Weave I kept the ownership of the overall engineering culture at Weave. As we have grown (now to over 60 engineers) it gets harder and harder to manage the communication and operational culture of the department. In some ways, things have to change (you just can’t operate the same way as you did with 10 engineers) but there are…

2019 Reading List

Here are some of the highlights from my 2019 reading: The Infinite Game, by Simon Sinek You have to have an “infinite mindset” to build the best companies. Short-term focus will never build a resilient and inspiring company. I love this book and would recommend it to anyone helping build a growing business. More Info Accelerate, by Nicole Forsgren, Jez Humble, and Gene Kim This came…

Measuring your Engineering Culture

Creating the right operational culture for your engineering team is critical to having a high performing team. More than ever building the right products and having a very fast time-to-market is what will separate winners from losers. Without a good culture, your teams will never perform well enough to keep up. But how do you measure your culture? Let me share with you three methods we use at…

Engineering Compensation - The Pursuit of Fairness

In the product development department at Weave, our motto is Never Satisfied. We are constantly trying to improve how we work, including experimenting with changes to department processes and organization as a whole. One of the ways we have improved over the last couple of years is how we determine engineering compensation. Historically it has been hard to determine pay structure and ultimately…

What Does a CTO Do?

I get asked this question a lot: What does a CTO do? As a “rookie CTO” and co-founder of a software company, I even have to ask myself that question from time to time, especially as the company has grown and I have had to adapt. So I have spent some time researching the role, and interviewing several CTOs to get an idea of their responsibilities and day-to-day workflow. Here is what I…

JavaScript and the Brackets Shell Environment

This is the second post in my series on using the amazing bracket-shell project for building native desktop applications with HTML and JavaScript. Post 1 – Build Native Desktop Apps with Brackets Shell Post 2 – JavaScript and the Brackets Shell Environment At this point you should have brackets-shell compiling/building with your own HTML app bundled inside of it. In this post I want to teach you…

Build Desktop Apps With HTML Using Brackets Shell

I recently posted on the state of native desktop apps in HTML5 and mentioned that at my company we chose to use Brackets-Shell as our native app solution. I want to go more in-depth into what brackets is and why we chose it as our solution. This will be the first of a series of posts dedicated to brackets-shell and customizing it for your native HTML desktop applications. UPDATE: I Posted part 2…

HTML5 Apps on the Desktop in 2013

No doubt we are in the middle of the mobile revolution. The mobile-first mentality is prevalent. I feel like I see these types of posts every day lately: While there is an obvious trent towards mobile in the consumer world, there is one place desktop is king: Business.

Modular AngularJS App Design

I am a sucker for modules. Something about bundling a set of functionality and display logic into a module that can be easily redistributed for many apps makes my skin tingle. So when I saw that “modules” were a big part of the AngularJS methodology, I was super excited to try it out. I quickly realized however, that most of the examples online used one module for the entire application, which…

About

I am the co-founder and CTO of Weave and a winter 2014 Y-combinator alumni. Passions I love my wife I love my children I love wakeboarding I love snow skiing I love reading I love ping-pong (if I don’t call it table tennis it doesn’t mean I suck) I love start-up companies I love open source I love real-time communication A Brief Timeline of my Early Technical History 1988 – I am 6…

AngularJS WebSocket Service Example

At my curent company we are using Angular.js for a new desktop application (yes, a desktop application, but I won’t get into that). Our app gets its data and events from a web service via a WebSocket connection. Angular comes bundled with some great tools to connect to REST servers, but it doesn’t come with anything to help you with real-time data (and it probably shouldn’t). Here is an example of…

Backbone.js apps with Authentication Tutorial

At my current company I am working on my first large-scale production backbone.js app and I couldn’t be happier. After using backbone.js for a few months I have caught the vision and I am becoming more and more proficient. But every once and a while I still run into problems I would consider basic, but I can’t seem to find much help on the interwebs. Authentication with backbone.js apps was one of…

Phing For PHP Deployment

I recently did a presentation at the Utah PHP Users group on Phing for deploying PHP applications. Here are the slides: http://clintberry.com/slides/phing

Sublime Text 2 for PHP & WordPress Development

Sublime Text 2 is an amazing code editor that I started using on the recommendation of a friend. I fell in love and haven’t looked back. Here are some recomendations for setting up Sublime Text 2 for PHP and WordPress development.

Custom User Providers in Symfony2

Why Custom User Providers? At my current job all the database systems are managed by DB admins and the developers have to connect to the database via web services. We do not connect to the databases directly. This allows for better separation of concerns and allows experts to focus on their respective specialties. But if you are programming a Symfony2 app, that means you don’t get to use Doctrine…

Why I Switched to Symfony 2 Framework

I have been working with the Zend Framework for the last 3 years. I like it. It is flexible, heavily object oriented, and organized. However, one thing that has always bothered me is that modules in ZF have been second-class citizens . Granted, in Zend Framework 2 this is not the case, but I needed to start a project right away, and since ZF2 is still in beta, I decided to go checkout some other…

Siege Testing Your Site Behind a Login

I use Siege to test my web applications and get an idea of how much traffic they can sustain. It is a great tool and I suggest you read more about it here . A few days ago, I needed to test a part of my application that was behind a login. I hit up UPHPU user group on IRC, and Carmony (a master website optimizer) suggested logging in on my browser and then hijacking the session in siege by setting…

Getting Started With Plivo

The open-source telephony development world has been changing drastically over the last 2 years. Projects like FreeSWITCH allow you to create simple phone applications with XML files, but until recently, advanced applications required a solid knowledge of the Erlang language. Then enters Twilio — which allows any web developer to make advanced telephony apps in the web language of their choice.…

Speed Up Your WordPress Development Cycle With Git

If you have developed WordPress sites for clients this process might sound familiar to you: Get a new client that wants a wordpress site Download the most recent wordpress Find a good current blank wordpress theme to start implementing the design Upload to a staging server to for client to see Client requests changes You make changes on local server, then upload to staging server Repeat last three…

Wildcard Sub-Domains on OSX, Web Development on Localhost

Today’s post will be on setting up wildcard subdomains in OSX. This allows you to map folders in your web root to sub-domains on your local box. Why would you want to do this? It is nice to be able to type use http://myproject.clint.dev for the URL and have it map to the ‘myproject’ folder on your local box. No need to add a line to the etc/hosts file, and no need to add a virtual host in apache…

Zend Studio and Git(Hub)

I have been using Zend Studio as my IDE for years, and for version control I have always used SVN. Zend Studio Eclipse plays very nicely with SVN out of the box, but lately it seems Git has gained a lot of momentum so I thought I would look into it. It turns out Git is awesome and is much better suited for many of the things I do. (See: Why Git? ) But will Git play nicely with Zend Studio 8?…

MongoDB Base Model for Zend Framework

I came accross MongoDB a few months ago and it seemed like a perfect fit for many of the projects I am working. Extremely fast inserts, map-reduce for complex queries, and most importantly, scaling is a breeze. Since I am a Zend Framework guy I created a simple base model class for MongoDB. It is a very simple wrapper, but is effective for what I need. I usually create model classes for each…

Contact

Twitter Follow @clinton_berry LinkedIn http://www.linkedin.com/in/clintonberry Email clint@system-11.com

Zend Framework Code Generator With Scaffolding – ZFcodo

Update: This project is now hosted at my GitHub account . While I am a huge fan of Zend Framework, I miss having the code generation that is bundled with other frameworks I use. Since my favorite codegen/ORM is from the Qcubed project, I decided to take the Qcubed code generator and customize it for Zend Framework.

Custom Fonts with Google WebFont Loader

I have recently been working on adding local fonts to my customized version of svg-edit. The idea is to have a font selector with several fonts from my local system. I have been using the recently released Google WebFont Loader API to load font files from my local server into the website. Google has made it easier than ever. (note: Google will collect stats from your website if you use this API,…

Custom Error Messages on Zend Form Validators

Zend Form is extremely powerful, and I love most of the built in validators. But some of the validators are overkill for many projects. Take the EmailAddress validator for instance. I have never worked on a web-form where I wanted 3 error messages to appear if the Email address entered was invalid. (To see what I mean, just type in “a@a” for your email address and see what…

Installing Magento on OS X

Mark Hopwood has created a great post on installing Magento stand-alone on OS X. I know there have been several posts in the Magento forums with questions on this. Just remember if you are installing Magento on OS X with Zend Server, you need to open your TCP/IP sockets in the mysql.conf file so that Mysql can be connected to using localhost or the local IP address.

Zend Server CE on OS X

I finally did it. I bought a mac. And after navigating around OS X for ten minutes using the multi-touch pad, I can honestly tell you I don’t think I’ll ever go back. As I use it more I am curious to see if developing on my new, sleek, aluminum toy will continue to bring the feelings of ecstasy. The first thing I did was install Zend Server CE to develop and test locally on my machine. Here are my…