Top 10 Mac Utilities for Developers

I recently tweeted a request for nominations for best utilities and productivity tools for Developers working on the Mac.  This list is an aggregate of my recommendations and those of others who I greatly respect.  They are listed in no particular order.

Fantastical is by far the best calendar app I’ve used, and the killer feature is the ability to add appointments on the Mac or on iOS using natural language.  It really gets it and makes adding appointments fast and easy.  Integrates perfectly with Google Calendar and others.

 

ToDoIst is best the in class To Do list (and, frankly, I’ve tried them all!)  This one is just right: easy to use, has few bells and whistles but it has all the critical ones.  It is very easy to add an entry either by clicking or with keyboard shortcuts, and you can set alarms to be notified when it is time to do something.  iPhone companion is great.

SourceTree is my choice for working with Git.  What can I say? Its visual interface is intuitive, it works, and when you fall off a cliff it has easy access to Terminal.

Evernote  My go-to note taking application.  It will do much more, but I use it simply and for just three things: taking notes (which it does superbly well), searching (and with its automatic OCR you can search on anything, even text in images) and managing documents from the highly recommended EverNote scanner (expensive, but the best I’ve ever used and lightning fast)

KDiff3– Best merge tool on the market.  For merging there are four windows: One shows the file with no changes.  The second shows the window with the first set of changes; the third window shows the second set of changes and the bottom window shows the result of adding from either or both.  The popup menu makes merging from either or both changes a snap, and you can choose the order, undo and generally merge in seconds.

 

Postman  You just can’t work with APIs without Postman.  Get it.  Now.

Snagit  I use this a lot, and for a developer the ability to take screen snaps is required.

Vysor This makes projecting my phone onto the screen a breeze.  And you can interact with the phone through Vysor, making development and presentation infinitely easier.

Visual Studio Code – The best text editor I know of, though others are certainly in contention.  I like this one because it feels a lot like Visual Studio; my fingers tend to know what to do.  It also have some terrific features, and is a natural for TypeScript and other  languages.

Instapaper – I love going through blogs and on-line new sources and marking them for reading later in Instapaper.  It gives me just the portability and time shifting I need to stay productive.

Posted in Essentials | 2 Comments

Yet Another Podcast – #168: Greg Shackles

Greg Shackles is a Principal Engineer at Olo. He is a Xamarin MVP, Microsoft MVP, host of the Gone Mobile podcast, organizer of the NYC Mobile .NET Developers Group, author of Mobile Development with C#, and also a monthly columnist with Visual Studio Magazine.

Today we discuss Azure Functions and Server-less programming, F#, Programming Alexa and more.

 

 

Posted in Mobile, Xamarin | Tagged | 1 Comment

I’ll be speaking at DevIntersection 2017

News flash from the department of shameless self promotion:

I’m pleased to say that I’ll be speaking at DevIntersection 2017 in Orlando.  Click on the image for more info, and use the code LIBERTY for a $50 discount.

Posted in Essentials | Comments Off on I’ll be speaking at DevIntersection 2017

Yet Another Podcast #167 – Charles Petzold

Charles Petzold has been writing books and articles about Microsoft-based operating systems since 1984. He is currently part of the Xamarin documentation team, which means he’s a Microsoft employee.

Today we briefly discuss what’s new in Xamarin.Forms and then turn our attention to another of Charles’ true loves: analog computers.  His new (forthcoming) book, Computer of the Tides: Lord Kelvin’s Machine to Disprove Evolution is part of a series of which The Annotated Turing is the first.

 

 

Posted in Essentials | Tagged | Comments Off on Yet Another Podcast #167 – Charles Petzold

Yet Another Podcast #166 – James Montemagno (Xamarin)

James Montemagno is a Principal Program Manager for Mobile Development Tools at Microsoft.

 

 

Posted in Xamarin | Tagged | 1 Comment

Yet Another Podcast #165 – Jon Galloway on Azure Functions

Jon Galloway is a Technical Evangelist at Microsoft, focusing on Web Development, Azure and .NET. He is also a long-time friend, and a truly great guy. 

 

 

Posted in Azure, Essentials | Tagged | Comments Off on Yet Another Podcast #165 – Jon Galloway on Azure Functions

New MacBook Pro 13″ – First Look

The headline is this:  wow!  I’m much more impressed with this new MacBook Pro than others seem to be.

I won’t belabor all the improvements, but do want to touch on a few.

One, perhaps a killer feature for me, is how much better the keyboard is than on previous MacBooks.  Using what Apple calls “a second generation butterfly mechanism” you get a lot more responsive keyboard, the mushiness is gone, and I find I’m typing far faster on this than my old MacBook.

The trackpad is bigger and it is a force touch that is more responsive than my old one was.

Continue reading

Posted in Opinion, Review | Tagged | 5 Comments

TypeScript for C# Programmers – a new course

Posted in Essentials | Comments Off on TypeScript for C# Programmers – a new course

Adding Databound Pickers to a ListView

Databound Pickers are in much demand, and fortunately Karl Shifflett has created one that is excellent and easy to use.  You add it to your program, wire up the data-binding and  data-bound pickerhey! presto! you’re in business.

The tricky bit comes when you want to put it in a ListView and bind to its contents while still being able to bind to other properties of your objects.

 

Here’s an example based on a program I wrote recently (the names have been changed to protect the guilty)…

Let’s start with our Model.

Continue reading

Posted in Xamarin | 3 Comments

MVVM Light Messaging Made Absurdly Easy

I wanted to send a message from a ViewModel to its View so that themegaphone1 View could pop up a dialog box.  To do this, I used MVVM Light’s messaging bus.

At first, this seemed difficult because I was over thinking it.  It turns out to be painfully easy.

In the ViewModel I created a NotificaitonMessage.  You can pass any kind of object through the Message Bus, but to keep things simple, I used a string as my token.  All I had to do was instantiate a NotificationMessage object and then call a static method on the supplied  Messenger class:

var myMessage = new NotificationMessage("change");
 Messenger.Default.Send(myMessage);

This sends off my message like a message in a bottle.  The sender (my ViewModel) has no idea if the message will be received by any other class (ViewModel or View).

In the View I registered to receive this notification.  To do so, I put one line in my constructor,

 Messenger.Default.Register<NotificationMessage> (this, NotifyMe);

NotifyMe is a delegate, pointing to a method named NotifyMe.  You could, of course, just use a lambda expression.

NotifyMe receives a parameter of type NotificationMessage.  That message has a property Notification which contains the object you sent (e.g., “change”).

       public void NotifyMe (NotificationMessage message)
       {
          string token = message.Notification;  // "change"
          DisplayAlert ("Test", "Hi!", "OK");
       }

In the code shown, I extract the string “change” but I don’t do anything with it.  I just extracted it to show how it is done.

That’s it.  I’ve successfully told the View to display an alert by firing off a message in the ViewModel.  Handy, quick, easy.

 

 

Posted in Essentials | 1 Comment

Better Navigation in Xamarin.Forms

By Jesse Liberty and Eric Grover

There are many ways to navigate from page to page in Xamarin.Forms.  The most obvious is to use the built in navigation service.  However, if you are serious about MVVM, the built in navigation presents quite a problem.

Say I’m on page1 and I want to navigate to page2, from a method in page1ViewModel.  How do I do that? And how do I pass data from Page1ViewModel to page2ViewModel?

Most solutions spend way too much time coupling the VM to the View.  Yuck.

XLabs has an elegant solution.  I use it in conjunction with MVVM Light and it works like a charm.

With XLab navigation, you navigate from Page1ViewModel directly to Page2ViewModel (!) , and Page2 is displayed and tied automagically to its view model.   From Page2 on, you no longer have to set the BindingContext, it is set to the ViewModel without your doing a thing.  That is exactly how navigation should work.

Getting going isn’t obvious at first glance, however, so this posting will walk you through a detailed but simple example.

Continue reading

Posted in Essentials, Navigation, Xamarin | 6 Comments

Away From The Keyboard

I was pleased and proud to be interviewed on Away From The Keyboard, talking about my history in the industry.  Makes a good bookend with my talk with Shawn Wiawayfromthekeyboardldermuth on Hello World.

Great fun.

Posted in Essentials | Comments Off on Away From The Keyboard