Search
Welcome
-
Latest Courses
Visual Studio Mac
Click for video
Learn to Program
Click for videoC# 7 First Look
Click for Video
Your First Mobile Application With Xamarin.Forms
Click for Video Presentations
Archives
Tags
Ajax Angular Animation ASP.Net BestPractices Blend C# C# 8 Community Competency convert Data FullStack GetStarted Git HVP i2WTutorial JavaScript JSON Mac migrate Mini-Tutorial Observations Open Source Opinion Patterns Pluralsight Presentations Reactive Programming ReactiveUI Review Tips Tools Video VSM WebSvc Windows Phone WindowsPhone wp7Tutorial WPFS Xamarin Xamarin.Forms Xaml XML YapCast-
Web hosting by Media Temple
License
JesseLiberty.com by Jesse Liberty is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
Based on a work at JesseLiberty.com.
The opinions expressed here do not necessarily reflect those of my employers, publishers or anyone else; void where prohibited, your mileage may vary, not valid in Sector C.
Category Archives: Essentials
Get Git Part 5
We’ve covered the essential parts of git, but not the useful utilitarian commands. Today we’ll focus on one of the most flexible: Log
Get Git Part 4
Rebasing OK, don’t panic. I know that rebasing has a very scary reputation, but it is actually pretty straight forward. Before we begin, please note that rebasing has very little to do with Interactive Rebasing covered in part 3 of … Continue reading
Get Git Part 3
This is the third in a series about Git Merging Branches Last we left off you had committed a number of times to a branch. Now it is time to merge that branch back into main. As noted in the … Continue reading
Get Git Part 2
This is the second in a series on Git. Work flow I’m not happy with the description of the workflow in the previous posting. It isn’t wrong, it is just a bit oversimplified. Let’s look at the workflow that you’ll … Continue reading
Get Git
This is the first in a series of posts about Git. Let’s start at the beginning as Humpty Dumpty so wisely advised Alice. What is Git? — Git is a version control system. A version control system is a program … Continue reading
Posted in Essentials
Comments Off on Get Git
Covid, False Positives & Bayesian Probability
This is a repost from 2009. It talks about breast cancer, but applies equally well to Covid testing, given the high percentage of false positives (not to mention the more worrisome false negatives). We simply are not wired well for … Continue reading
Posted in Essentials
Comments Off on Covid, False Positives & Bayesian Probability
New site for my writing
I’ve created a site for my non-technical writing. Check it out.
Posted in Essentials
Comments Off on New site for my writing
MonkeyCache step by step
The amazing James Montemagno of Xamarin/Microsoft has done it again. He has created an incredibly simple cache, named MonkeyCache, that you can get up and running very quickly. In this post I will walk through setting up and using the … Continue reading
DataTemplateSelector
Suppose you have a collection of items and you want to display them in a ListView (Xamarin.Forms). The catch is that you want to change the display of each item depending on its state or some other code-based attributes. At … Continue reading
Posted in Essentials, Xamarin.Forms
Comments Off on DataTemplateSelector
C# 9 Part 3 – Patterns
Jared Parsons – lead of the C# Compiler Team at Microsoft C# 9 Roadmap Jared – LinkedIn Welcome to C# 9
An Alert From the ViewModel
Quite often we want to send an alert from the view model, but you can only do so from the view. We’ve tackled this problem in the past but we think there is room for a simplified and clear step … Continue reading
Code Snippet – By request
Code Snippets can save you from repetitive (boring) tasks. Visual Studio comes with a great many code snippets, perhaps the most often used is ctor which creates an empty constructor. You can also create your own. Here is one I … Continue reading