Archives
-
The content of table variables is retained even when a transaction is rolled back
You learn something new every day! Thanks to the superbly detailed answer by Martin Smith on the question What's the difference between a temp table and table variable in SQL Server? at Database …
-
Gulp, Node.js and "require.extensions.hasOwnProperty is not a function"
I've been working through getting an older version of an AngularJS project to run locally and encountered the following error:
D:\Git\MyApp>gulp dev
D:\Git\MyApp\node_modules\require-dir\index.js:93 …
-
AngularJS, HTML 5 Mode, IIS (Express) and hitting F5/Refresh - Setting up URL Rewrite via the IIS Manager UI
In my previous post, I covered the configuration changes that you need to make in your web.config file to get IIS to route requests for URIs that should be handled by your AngularJS application back …
-
AngularJS, HTML 5 Mode, IIS (Express) and hitting F5/Refresh
The company I joined in November (more about this another day!) has a product that was developed in AngularJS 1.x. Not Angular, AngularJS - one of these things is not like the other! This means …
-
Creating a branch from a revision with Git
A very short "memo to self" post to note down how to create a branch using the git command line, from a specific revision:
git checkout -b MyBranchName 22322e768c9956bb93a3701504250124c4d5bf53
This …