Welcome

You have reached the blog of Keith Elder. Thank you for visiting! Feel free to click the twitter icon to the right and follow me on twitter.

Deep Fried Bytes Episode #24: Chatting about F# with Chris Smith and Dustin Campbell

Posted by Keith Elder | Posted in Podcast | Posted on 28-01-2009

0

 Listen To This Episode 

http://deepfriedbytes.com/podcast/episode-24-chatting-about-f-with-chris-smith-and-dustin-campbell/

 

In this episode we sat down with Dustin Campbell and Chris Smith to discuss F#, Microsoft’s new functional programming language.  Dustin and Chris are great friends of ours and are always fun to sit down and talk to.  All you need to know about this show is… “… I want something that tastes good … “. 

How To Listen To The Show

1. Directly From The Web Site (or click the link above)

When you visit the site look for this:

Clicking the triangle will launch the Yahoo! media player and automatically start playing the show for you. As long as you leave the browser window open the player will stay open. Clicking off the page WILL stop the player!

2. Subscribe via iTunes and Zune

If you have iTunes or Zune installed on your computer you can subscribe to our show. In iTunes open the Music Store and search for “Deep Fried Bytes”. In the Zune software, go to the MarketPlace select Podcast and search for “Deep Fried Bytes” to subscribe to the show. You can also click either of the two icons below to automatically subscribe to the show if you have iTunes or Zune installed.

Subscribe via iTunes Store Subcribe via Zune Market Place

3. Subscribe to RSS Feed

To stay current and up to date with the show, subscribe to the site’s RSS Feed. If you don’t know about RSS feeds you can read more here: http://en.wikipedia.org/wiki/RSS_(file_format)

If you already have an RSS reader installed and setup, click the feed icon below to grab our news feed.

Subscribe to our podcast!

Deep Fried Bytes Episode #23: Functional Programming in C# with Oliver Sturm

Posted by Keith Elder | Posted in Podcast | Posted on 28-01-2009

0

 Listen To This Episode 

http://deepfriedbytes.com/podcast/episode-23-functional-programming-in-csharp-with-oliver-sturm/ 

 

In this episode we sat down with Oliver Sturm of Developer Express.  Oliver is writing a book on Functional Programming in C# and we had to get the scoop on what he was going to put in the book. Oliver blew us away in this episode.  The discussion went so deep, there is a code example that you need follow along with.  Here is the code sample.  It was a great show, enjoy.

   1: Func<int,int,int> add = (x,y) => x + y;
   2:  
   3: Func<int, Func<int,int>> addC2 =
   4:    delegate(int x) {
   5:       return delegate (int y) {
   6:           return x + y;
   7:       }
   8:    };
   9:  
  10: Func<int, Func<int,int>> addC =
  11:    x => y => x + y;
  12:  
  13: var add5 = addC(5);
  14:  
  15: add5(37);

How To Listen To The Show

1. Directly From The Web Site (or click the link above)

When you visit the site look for this:

Clicking the triangle will launch the Yahoo! media player and automatically start playing the show for you. As long as you leave the browser window open the player will stay open. Clicking off the page WILL stop the player!

2. Subscribe via iTunes and Zune

If you have iTunes or Zune installed on your computer you can subscribe to our show. In iTunes open the Music Store and search for “Deep Fried Bytes”. In the Zune software, go to the MarketPlace select Podcast and search for “Deep Fried Bytes” to subscribe to the show. You can also click either of the two icons below to automatically subscribe to the show if you have iTunes or Zune installed.

Subscribe via iTunes Store Subcribe via Zune Market Place

3. Subscribe to RSS Feed

To stay current and up to date with the show, subscribe to the site’s RSS Feed. If you don’t know about RSS feeds you can read more here: http://en.wikipedia.org/wiki/RSS_(file_format)

If you already have an RSS reader installed and setup, click the feed icon below to grab our news feed.


Subscribe to our podcast!

A Blog Post About Nothing: Part 2 – Podcast

Posted by Keith Elder | Posted in General, Podcast | Posted on 20-12-2008

0

image

Have you ever felt like the world was moving at the speed of light, yet you were just doing your own thing?  That’s how I’ve felt lately.  It seems everyone has tons of stuff to talk about on their blogs and Twitter.  I decided I was going to force myself to write a blog article this morning to start my Christmas vacation off and after thinking about what I was going to blog about it hit me.  I don’t have anything to blog or twitter about!  Call it a Blog / Twitter Slump if you will.  Then I started writing and things started to flow so much that I broke this post into a series of blog posts entitled “A blog post about nothing”, each one dealing with a different segment.

What’s Happening With the Podcast

If you’ve been following along with the shows of Deep Fried Bytes, we are up to show #22 now.  And if you haven’t been listening, then Santa has you on his naughty list and isn’t going to come see you this year, but I digress.  Technically we should have produced show #24 by now but I have been traveling and getting ready for Christmas so not much time to do final production work although Woody has been staying ahead of me with his edits. 

Honestly, I never thought we’d make it this far with the show but we are starting to get into a groove with it.  We are working hard to tweak our post production work to make things sound as good as we can.  We’ve learned a lot over the past several months and continue to keep trying to get better.

To say having a podcast eats up a tremendous amount of time would be an understatement.  My co-worker beats me up all the time saying, “… you haven’t blogged anything good in awhile…”.  Which I then reply, “Well I blogged about the podcast that took 10 hours of work to create, that isn’t enough?”  Of course he laughs and then says no, it doesn’t count. 

It does take a lot of time to record, edit, finalize, mix down, normalize, compress, and then do final production work on the show.  The only thing that helps us to keep going is the community.  It is great when we are at an event and our listeners give us positive feedback.  Of course negative is good to hear as well since that makes us better, but knowing we are making a difference out there really matters. 

In community news, Deep Fried Bytes is an official sponsor of Codemash 2009.  Both Woody and I will be at Codemash 2009 and are planning on recording a lot of shows.   Anyone that wants to listen to us record a show live is welcome to sit in.  If nothing else it will give you an idea as to how much we have to edit out. 🙂

One of the things we watch closely on the podcast is our numbers.  We launched the show late in the 2nd quarter of this year and got off to a good start.  The 3rd quarter of this year broke all of our expectations and the 4th quarter this year has already beat the 3rd quarter.  The numbers for the show have grown each quarter and that is a good thing.  Especially in this economy.  Oh wait, we don’t charge for the show, I forgot 🙂

image

That means we are reaching more people and attracting new listeners.  A big thank you to everyone who has blogged, Twittered, Facebooked and whatever else you have done to help spread the word about the show.  We appreciate your efforts.

That’s pretty much the latest news on the podcast.  As always, keep your tea glasses full, and your axes sharp.  Deep Fried… out. 

Read Part 1
Read Part 3
Read Part 4

Deep Fried Bytes Episode #22: The Future of .Net Dotfuscator with Gabriel Torok

Posted by Keith Elder | Posted in Podcast | Posted on 19-12-2008

0

 Listen To This Episode 

http://deepfriedbytes.com/podcast/episode-22-the-future-of-net-dotfuscator-with-gabriel-torok/

 

If you have ever used Visual Studio you may have noticed in the tools menu there is something called Dotfuscator.  This is the tool that allows .Net developers to obfuscate their source code and it has been in Visual Studio since 2003.  In this episode we caught up with Gabriel Torok, President of PreEmptive Solutions, at PDC 2008 and discussed some of the news related to Dotfuscator announced at PDC.

Enjoy.

How To Listen To The Show

1. Directly From The Web Site (or click the link above)

When you visit the site look for this:

Clicking the triangle will launch the Yahoo! media player and automatically start playing the show for you. As long as you leave the browser window open the player will stay open. Clicking off the page WILL stop the player!

2. Subscribe via iTunes and Zune

If you have iTunes or Zune installed on your computer you can subscribe to our show. In iTunes open the Music Store and search for “Deep Fried Bytes”. In the Zune software, go to the MarketPlace select Podcast and search for “Deep Fried Bytes” to subscribe to the show. You can also click either of the two icons below to automatically subscribe to the show if you have iTunes or Zune installed.

Subscribe via iTunes Store Subcribe via Zune Market Place

3. Subscribe to RSS Feed

To stay current and up to date with the show, subscribe to the site’s RSS Feed. If you don’t know about RSS feeds you can read more here: http://en.wikipedia.org/wiki/RSS_(file_format)

If you already have an RSS reader installed and setup, click the feed icon below to grab our news feed.

Subscribe to our podcast!

Deep Fried Bytes Episode #21: Talking Software Performance with Rico Mariani

Posted by Keith Elder | Posted in Podcast | Posted on 06-12-2008

0

 Listen To This Episode 

http://deepfriedbytes.com/podcast/episode-21-talking-performance-with-performance-preacher-rico-mariani/

 

We have YAPDCT (yet another PDC talk) for everyone.  One of our good friends Jennifer Marsman introduced us to one of the legends at Microsoft, Rico Mariani.  Rico is currently the Chief Architect for Visual Studio.  He’s been involved with performance for years and has some interesting takes on why developers should take performance seriously up front in their design. 

We lobbed Rico an open ended question to kick off the show to get him going and he ran with it from there.  If you write code, no matter the platform, you should listen in.

Enjoy.

How To Listen To The Show

1. Directly From The Web Site (or click the link above)

When you visit the site look for this:

Clicking the triangle will launch the Yahoo! media player and automatically start playing the show for you. As long as you leave the browser window open the player will stay open. Clicking off the page WILL stop the player!

2. Subscribe via iTunes and Zune

If you have iTunes or Zune installed on your computer you can subscribe to our show. In iTunes open the Music Store and search for “Deep Fried Bytes”. In the Zune software, go to the MarketPlace select Podcast and search for “Deep Fried Bytes” to subscribe to the show. You can also click either of the two icons below to automatically subscribe to the show if you have iTunes or Zune installed.

Subscribe via iTunes Store Subcribe via Zune Market Place

3. Subscribe to RSS Feed

To stay current and up to date with the show, subscribe to the site’s RSS Feed. If you don’t know about RSS feeds you can read more here: http://en.wikipedia.org/wiki/RSS_(file_format)

If you already have an RSS reader installed and setup, click the feed icon below to grab our news feed.

Subscribe to our podcast!