Materialize is a modern responsive CSS framework based on Material Design by Google.
Source: Documentation – Materialize
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
Materialize is a modern responsive CSS framework based on Material Design by Google.
Source: Documentation – Materialize
Vue.js an up-and-coming JavaScript library used to build web-interfaces. In this article, we will introduce you to the library, by building a small, single-page sample application. We will discuss how, why and when to use Vue.js, and introduce you to its elementary features. As such you will learn about templating, and how to develop components and directives to build interactive, performant user interfaces.
Source: Introducing Vue.js | DotNetCurry
Also see: “VueJS vs Angular vs ReactJS with Demos”:
http://www.dotnetcurry.com/vuejs/1372/vuejs-vs-angular-reactjs-compare
This lightweight extension lets you display the full path of the file at bottom of Visual Studio’s Editor. Click Ctrl+Click to Open Containing Folder, Right click to Copy Full Path.
The easiest way to diff two files directly in solution explorer
jmespath, Javascript implementation of JMESPath, a query language for JSON
jmespath/jmespath.js
jq, is a lightweight and flexible command-line JSON processor:
https://stedolan.github.io/jq/
When running indexing for EPiServer find, the “EPiServer Find Content Indexing Job” in admin tools. The episerver find logs were filling up with these errors:
The remote server returned an error: (413) Request Entity Too Large.
Problem connected to restrictions for the developer demo index.
I added this setup method as last setup line to the FindInitializationModule:
private static void DemoIndexSetting()
{
string demoIndexSettings = ConfigurationManager.AppSettings["EnableEPiServerFindDemoIndexSettings"];
bool demoIndexEnabled = false;
if (bool.TryParse(demoIndexSettings, out demoIndexEnabled))
{
if (demoIndexEnabled)
{
/*
* demo index has the following limitations:
Maximum 10000 documents
Maximum 5MB request size
Maximum 25 queries per second
The index will be removed after 90 days
*/
ContentIndexer.Instance.Conventions.ForInstancesOf<IContentMedia>().ShouldIndex(x => false); //dont index any mediafiles, size limit is 5MB
ContentIndexer.Instance.MediaBatchSize = 3; //default 5
ContentIndexer.Instance.ContentBatchSize = 20; //default 100, but demo has limit of 25
}
}
}
Also added this setting to web.config to enable this feature for certain environments. (dev, test etc. using transformations)
<appSettings>
...
<add key="EnableEPiServerFindDemoIndexSettings" value="true" />
Demo developer services:
For me the problem was connected to ReSharper which already implements this function. Solution was to disable the VS 2017 functionality for ctrl+click. (prefer the ReSharper way with built in decompiling)
Goto options -> Text Editor -> General -> uncheck “Enable mouse click…”

Disable the default vs2017 setting.
I got this message ‘fatal: unable to access ‘\/.config/git/config’: Invalid argument’ when opening a GIT based solution in VS 2017.
Solution was to add an environment variable “HOME” with value “c:\” (c: or where your project folder resides).
Solution info here:
Addon for visual studio 2017, lets you preview config file transformations.
New command in right click menu in solution explorer.