Bryan is an entrepreneur, software developer, photographer, investor and business adviser with a strong operations background coupled with 16 years of startup, new media, early-stage financing, marketing, technology development, sales and real estate investment experience.

a

Author: Bryan

Now that we have the angular basics in place lets add some functionality to the app.   So let's start displaying some lists. ANgualr makes that easy using the ng-repeat directive. We'll start by adding in some code to our controller in the app.js file. Here we'll be adding...

What Turing Complete Languages Do You Know? First of all who asks this? Well, I know someone because this is what I was asked recently. It wasn't in an interview setting or random quiz just someone throwing it out there at me. It's exhausting even thinking about why someone...

jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.   All examples will use the following code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <ul class="one">   <li class="A">A</li>   <li class="B">B</li>     <ul...

You've been working on spec'ing out your app and maybe you jumped the gun a little. So what do you do if you've been working and you'd like to change the name to better reflect what you're working now. Not too difficult. The change method is the primary way of...

Blocks I'm sure as you started learning Ruby you heard time and time again that everything is an object. That's sort of true. but not really. A block is an anonymous function that can be passed into methods. Blocks are enclosed in a do / end statement or between...

The single responsibility principle is a computer programming principle that states that every module or class should have responsibility over a single part of the functionality provided by the software, and that responsibility should be entirely encapsulated by the class. All its services should be narrowly aligned with that responsibility. Robert C. Martin expresses the principle as, "A class should...

There's seems to always be more to learn as a developer and once I do learn a new language or library I end up moving on to the next one so for me it's really important to go back and refresh syntax. Lately, I've been...