Small Change: Disqus Comments

After noticing that more and more blogs and other web content are moving toward using Disqus as their medium for comments, I thought it would be best to move mine over to the platform as well.

The main advantage I wanted to gain for the readers here is that there is one less thing for them to have to register and/or worry about following. With Disqus, you have all your comments and actionable items in one place and users have the ability to even use it via a login from other social media sites. It's a total win-win situation! 

Core C#: Delegates

Microsoft has made it easier for aspiring developers to easily get started creating something when they came out with the C# language. However, there are definitely some advanced aspects of the language that take quite a bit longer than others to fully grasp. Delegates is one of those types of language features. Hopefully by the end of this article you'll have a deeper understanding of how utilize delegates in your C# code. 

I, myself, had trouble trying to fully understand what the purpose of delegates were. If you were to ask me before what a delegate was, I would just give a small answer indicating that it's similar to a method template. While that's true, it does quite a bit more.

The simplest way I know to go over delegates is to just go through a small example to allow you to also do the same so you can use that to experiment around with the code.

Let's go through this a bit. The first line is where you actually declare the delegate and give it a return type, name, and any parameters if it needs any. In our Main method is where we'll initiate a couple of variables to hold the delegates. The first one, myDelegate , does so using the method syntax. Our second variable, however, we declare it using an anonymous delegate, or a delegate without a function name.

After we've declared the our variables with our delegate, we can then invoke our delegate by calling it just like a method just like in lines 15 and 16 above. We declared our delegate to take in a single string parameter, so that's how we'll invoke it. 

Built in Delegate Types 

The folks at Microsoft were kind enough to give us a few built in delegates that we can also use within our code. Let's take a quick look at them. 

The first one, which may be the most commonly used, especially if you've messed quite a bit with the LINQ method syntax, is the Func  delegate type. This one will take in zero or more parameters and will return something back to the caller. In the example above I have one parameter of a string and I return back an integer.

The second one is the Action delegate type. Like the Func type it takes in zero or more parameters, however it returns void (returns nothing).

The third one, Predicate, is a bit closer to the Func type where it takes in parameters and returns. The difference with this is that it will always return a boolean true or false back to the caller.

Invocation Lists

One of the magic things that delegates have is they keep track of all invocations of it. When we instantiate our delegates we are actually adding to the invocation list. Another way to do this is to simply add a delegate to another delegate. 

We'll see the true power of delegates and their invocation lists in the next part, when we talk about events.

Consuming the Jamendo API with AngularJS: HTTP Get

After doing a small AngularJS introduction, I figured it's time to start diving into some specifics of an Single Page Application with it.

One of the awesome things developers can do is to play with other third party services. A common way to do that is with an API that is provided by the creators of the service to give developers the option to create all sorts of software to use or interact with their services.

Honestly, I had a class library created and ready to create a C# wrapper to make the API calls, but I thought that I should use more client side code instead of server side code as that tends to be more of how things are being done these days. I thought I'd use AngularJS, which I chose so I can learn more on how to use the framework and well as to get used to developing more with JavaScript.

NOTE: For the API calls to Jamendo I'm using a clientId that they provide for testing and demoing only. This is required to use the API and if you want to take full advantage of their API you will need to register in their Development Center.

For this first part I'll construct a simple artist search via $http from Angular's API to return a few items back from the Jamendo API for display.

The HTML

The HTML is a fairly similar setup as the previously mentioned introductionAnd please remember, I'm by all means no designer (though, I have been reading up on the subject) so I apologize in advance if it causes you to cringe. 

What we'll concentrate on is what all is in the body tag as the items in the head tag are just pulling in different resources. We tell the body tag to use our Album controller (we'll get further into that below). I then created a div tag that uses a class from one of our CSS files to move everything in there to the near center of our page. 

Now to the fun stuff. Inside our container we have a text input and a button. Our text box will be what artist we're searching for on Jamendo and our button will be used to conduct the call to get our results.

On our text box we have the ng-model directive named "artist". We'll see how this gets used later in our controller.

Our button has the ng-click directive which tells Angular to execute this method on our controller once the button is clicked.

The Album Controller

Once again, this is fairly similar to our Employees controller from our introduction. The differences are fairly small, however. One thing you may notice is when defining the controller function I bring in an extra parameter that AngularJS provides. Along with the $scope I bring in $http to be able to call another site. In the function I create another function called getAlbums. In here is where I actually make the call via the get command. You'll also notice that I'm using promises that is also provided by AngularJS.

Here's another part of where AngularJS's data binding comes into play. Remember the ng-model of "artist" we had in our text box? That was bound to the $scope and was used in the call to Jamendo. That's all we had to do.

Enabling CORS

You may have noticed that you haven't seen where I create the "jamendoApp" module in the controller. This is because, after some reading and viewing others code, I created a base app.js file that handles that as well as some config and routing settings that will be used throughout the whole application.

Also another thing to make note of is that, since I'm using AngularJS to make a third party call to get data most browsers may not allow the call to take place due to having to enable cross-origin resource sharing. If you tried to make the same call without enabling CORS you would get a same-origin policy error. This basically allows the browser to only access resources that are in the same domain as the page you're calling from. To get around this I got help from this StackOverflow question and implemented the configuration below. 

Demo

To demo how it all works GitHub makes it super easy to view HTML pages from our repositories using an HTML Preview. Simply go to this page to interact with it and feel free to come back and let me know what you think about it.

Full code to play with can be found on the GitHub repository. 

Next time we'll refactor the controller and have our API call from a AngularJS service.

Top People I Follow on Twitter

I love Twitter. I like how it's one of the best ways to share content and thoughts with everyone else. However, following too many people can put too much of a strain on you when checking for updates. I, like I'm sure many others do, have a few people I make sure to read each update I come across. Here's a list of those few I do my best to keep up with.

Note that when I say "people" on Twitter I also mean organizations as well as individuals.

Alexis Ohanian

Alexis is probably most famous as being cofounder of reddit, but he's definitely doing some amazing work these days. From writing his own book (you bet I got this the day it came out) to hosting an entrepreneurial show on The Verge - Small Empires, he's definitely one to follow and I'm always excited to see what he's up to next.

Twitter - @alexisohanian

Inc Magazine

If you're interested in business or leadership at all, this magazine and site has a lot of great articles that I've found useful. Their site practicing minimalism and very easy to navigate also helps.

Twitter - @Inc

Kevin Rose

If you're into technology at all, then this name should at least be familiar to you. Coming from the old (and awesome) days of TechTV via the show The Screen Savers, he's also the founder of Digg and now currently works with Google Ventures helping to find other awesome web start ups. 

Twitter -  @kevinrose

Darya Rose

Yep, the wife of Kevin Rose. She's fairly well known herself for starting a food blog - Summer Tomato (whom I happen to have found from the person below) and from there her own book - Foodist. Darya is definitely one of the best I've come across in terms of breaking down the science of healthy food into a way that is easily understandable. If anyone I meet has questions on food I always point them to her.

Twitter - @summertomato

Tim Ferriss

Famous for his books - Four Hour Workweek, Four Hour Body, and Four Hour Chef, I definitely consider Tim to be a modern day Renaissance Man. From starting his own nutritional company to becoming a tango and kickboxing champion, Tim has tons of experiences and he freely gives his advice away on his blog.

Twitter - @tferriss

John Robbins

This can't be a post on a development blog without a developer, could it? I consider John, cofounder of Wintellect, to be one of the best when it comes to doing anything with .NET. This is the guy who got me interested in performance and debugging. When Microsoft has them come in to teach their developers, I make sure to listen on what they have to say.

Twitter - @JohnWintellect

 

The Medium Experience

This is a bit different than most posts here, but I've come to just love what Medium does. If you haven't heard of it, it's basically a medium (pun intended, of course) in which anybody can come in and write articles about whatever they're passionate about or what inspires them. I've definitely found many great reads there. Since it seems like a great place to just get feedback I thought I'd give it a shot myself.

I've recently had a bit of an...embarrassing event happen in my career and I thought it would be a good story to share through Medium. So I hope you take a few minutes (seriously, Medium indicated that it's a two minute read) and maybe have a laugh at my expense and see that even the most professional of people can make trivial mistakes.

Book Review: Steve Jobs by Walter Isaacson

I'm sure I'm a bit late reading this and I'll admit I didn't know hardly a thing about Steve Jobs before coming into this book. The only reason I decided to give it a shot was that it was so well recommended by the tech community online, especially after the Ashton Kutcher movie went out in theaters. "Why not?", I figured. "I like biographies and it'll give me some more background of the man himself as well as to how he ran Apple." So I went straight to my library to get a copy.

 

It was definitely a great read. It felt more like a novel than just a biography which makes it an easy read and helps it get read that much faster. It still took a couple of weeks to get through it, though I believe I'm a bit of a slower reader than many as I think it helps understand more of what I'm reading.

The main things that became instantly interesting was how much of a visionary Steve Jobs apparently was at Apple as well as how much business sense he instantly had. True Steve Wozniak basically did the engineering for the Apple I and II. However, if it wasn't for Jobs then I doubt the company exist at all. Truly, his drive to create a company definitely came to fruition.

 

There were many things the biography helped to learn about why certain events occurred, such as how and why he was ousted from Apple in the mid 80s, how Microsoft helped the company when he was brought back to Apple, how he was involved with Pixar, and the beginnings of what became the the iPod and iPhone. Interestingly, the way they came about is just the other products out there, as Jobs would say, sucked.

Steve Jobs' love of technology and design is a rare combination even in these days. How many developers do you know are actually good designers? I'm definitely not one of them (though, I am trying to learn) . I used to think that the closed ecosystem of Apple creating their own hardware, software, and services was a bad idea, but like Wozniak I'm beginning to understand how it helps the end user experience as a whole.

The biography even helped with a bit of understanding of the business culture as a whole since it repeatedly went to how meetings went with Jobs and the Apple board. Even as a CEO Jobs tended to be different than others by taking hours or days to make a decision on something instead of months to do research how the decision could affect the company. That tells you how passionate he was about his products and what his company could do for people.

If you haven't read it yet, I definitely recommend it. Of course, you can always just wait for the movie. I have high hopes it'll be better than the aforementioned one.

As for myself, I think I'll be test driving more Apple products in the future.