The Blog of Colin Mackay

?

Channel Reputation Rank

#378
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'The Blog of Colin Mackay' channel has an excellent rank. Despite such a rank, the feed was last updated more than a year ago. In addition 'The Blog of Colin Mackay' includes a significant share of images in comparison to the text content. The channel mostly uses long articles along with sentence constructions of the intermediate readability level, which is a result that may indicate difficult texts on the channel, probably due to a big amount of industrial or scientific terms.

About 'The Blog of Colin Mackay' Channel

Can open.... worms??? Everywhere!!!

? Updates History Monthly Yearly
JavaScript chart by amCharts 3.13.1Sep, 2022Oct, 2022Nov, 2022Dec, 2022Jan, 2023Feb, 2023Mar, 2023Apr, 2023May, 2023Jun, 2023Jul, 2023Aug, 202301Show all
? Content Ratio
JavaScript chart by amCharts 3.13.1TextsLinksImages
? Average Article Length

Long articles are widely used on 'The Blog of Colin Mackay' as elaborated and interesting content can help the channel to reach a high number of subscribers. In addition there are a few medium length articles.

short

long

? Readability Level

Intermediate readability level is common for 'The Blog of Colin Mackay' articles as it addresses the matters that demand certain level of education to be understood. Sometimes the channel gets even more difficult by issuing pieces of advanced readability level (there are just a few of them). In addition the channel contains materials of a basic readability level, making up more than a quarter of its content.

advanced

basic

? Sentiment Analysis

Positive emotional expressions prevail throughout the texts: they may include favorable reviews, appreciation or praise in regard to the subjects addressed on the channel. However, the channel also contains some rather negative or critical records that make up just a small amount of all its content.

positive

negative

Recent News
Speed up Visual Studio by turning off the Source Control Plug-in

I don’t use the built in source control plug in Visual Studio as I use GitKraken instead, so Visual Studio’s plug-in just sat in the background not doing...

+
Why is my app not responding? Oh… I’ve hit a breakpoint!

Have you ever run your app from Visual Studio to have it suddenly stop responding and you can’t immediately see why, only to discover that you’ve hit...

+
We don’t have the budget for that

Over 20 years ago, I was asked by the company I worked for to fly out and help a client with an issue. It seems that they had trouble printing in certain...

+
How to Undelete a Branch in Git

About a month ago I deleted a branch that I thought I wasn’t going to need. The ticket had been parked, then put back in the backlog and there were lots...

+
Why is there a difference between decimal 0 and 0.0?

They’re the same thing, right? Well, almost. The equality operator says they’re the same thing. But internally they’re not, and I’ll get to that in a...

+
ReSharper test runner still going after tests complete

I’ve been writing some tests and I got this message: [RIDER LOGO] Unit Test Runner The process ReSharperTestRunner64:26252 has finished running tests...

+
How to: Tell if a PowerShell script is running as the Administrator

This script gets the current Windows Identity, then queries it to find out if it has the appropriate role.

+
Ensure Controller actions/classes have authorisation

A couple of years ago I wrote a unit test to ensure that all our controller actions (or Controller classes) had appropriate authorisation set up. This...

+
Creating a Throttle with an ActionBlock – Addendum (Cancelling)

In my previous post I described how to create a throttle with an action block so you wouldn’t have too many tasks running simultaneously. But what if...

+
Creating a Throttle with ActionBlock

We have an application that needs to perform a repetitive task on many external services and record then aggregate the results. As the system has grown...

+
Comparing logically adjacent rows in a database table

If you have database table that stores something such as when an action occurred, it might be useful to work out how far apart these events are. It is...

+

Unfortunately The Blog of Colin Mackay has no news yet.

But you may check out related channels listed below.

Node.js – Setting up a basic development environment

[...] text editor, IDEs are also available for writing node.js. IDE – Node.js Tools for Visual Studio There is a plug in for Visual Studio that is in beta (at the time of writing) which allows you [...]

Using Contracts to discover Liskov Substitution Principle Violations in C#

[...] . 1. Install the Code Contracts for .NET extension into Visual Studio. 2. Open Visual Studio and load the solution containing the projects you want to apply contracts to. 3. Open the [...]

Tip of the day: Quickly finding commented out code in C-like languages

[...] to search through the source code looking for a specific pattern. The following works for Visual Studio for searching C#. The same expression would also likely work in other similar languages where [...]

A better tracing routine

[...] messages. In the example below, it outputs tracing messages in a format that you can use in Visual Studio to automatically jump to the appropriate line of source code if you need it to. The three new [...]

Kendo UI: Paging and accessing the filtered results in javaScript

[...] : The getData() method can be found here: https://gist.github.com/3159627 Filed under: Software Development Tagged: javascript, jQuery, Kendo UI, Kendo UI Grid, Telerik [...]

Injecting a Dependency into an IHttpModule with Unity

[...] work just takes an HttpContextBase, which is easily mocked in a unit test. Filed under: Software Development Tagged: asp.net, ASP.NET MVC, Dependency Injection, IHttpModule, IoC, Unity [...]

Node.js with Express – Come to the dark side. We have cookies!

[...] this: Code for this post The code for this can be found here on GitHub. Filed under: Software Development Tagged: Cookies, express, node.js [...]

Node.js with Express – Getting form data

[...] it is best to look for the release that corresponds with this blog post. Filed under: Software Development Tagged: body-parser, express, node.js [...]

Loading coffeescript unit tests from separate files

[...] In my previous post I showed how to create unit tests for coffeescript. I also included a link to Eli Thompson’s coffeescript unit testing [...]

Unit testing with Coffeescript

[...] . This would not be recommended for production code, but does make life easier for running unit tests as the browser handles the compilation step for you. You can run coffeescript in the browser by [...]

Using Contracts to discover Liskov Substitution Principle Violations in C#

[...] changes the Width the Height remains the same and vice versa. So, despite the fact that the unit tests were not explicitly testing for an LSP violation in Square, the contract system sprung up and [...]

Telerik’s Kendo UI Grid

[...] is defined within. Filed under: Software Development Tagged: javascript, jQuery, Kendo UI, Kendo UI Grid, Telerik [...]

Kendo UI: parse – preprocessing data

[...] example of this code. Filed under: Software Development Tagged: javascript, jQuery, Kendo UI, Kendo UI Grid [...]

Kendo UI: Paging and accessing the filtered results in javaScript

[...] Moving on slightly from my last post on the Kendo UI Grid we’re going to take a wee look at paging and accessing the results of the filter in [...]

?Key Phrases
Node.js – Setting up a basic development environment

[...] text editor, IDEs are also available for writing node.js. IDE – Node.js Tools for Visual Studio There is a plug in for Visual Studio that is in beta (at the time of writing) which allows you [...]

Using Contracts to discover Liskov Substitution Principle Violations in C#

[...] . 1. Install the Code Contracts for .NET extension into Visual Studio. 2. Open Visual Studio and load the solution containing the projects you want to apply contracts to. 3. Open the [...]

Tip of the day: Quickly finding commented out code in C-like languages

[...] to search through the source code looking for a specific pattern. The following works for Visual Studio for searching C#. The same expression would also likely work in other similar languages where [...]

A better tracing routine

[...] messages. In the example below, it outputs tracing messages in a format that you can use in Visual Studio to automatically jump to the appropriate line of source code if you need it to. The three new [...]

? Locations
JavaScript chart by amCharts 3.13.2

Related channels