Author: Andreas Plahn
Online regex tester and debugger: JavaScript, Python, PHP, and PCRE
A colleague of mine gave me a tip about this excellent online regex tester.
Whats so good about it?
– It color highlight parts of the regex and explains what each part is doing.
Online regex tester and debugger: JavaScript, Python, PHP, and PCRE.
How to do the most simple divider-control in EpiServer 7?
ASP.NET MVC Unit Testing using NUnit in Visual Studio
Chrome Web Store – James by Logic Agent (debug Google Analytics script)
James is your personal debugging agent for Analytic tags.
We currently support Google Analytics, Google Universal Analytics, Adobe SiteCatalyst, IBM Coremetrics, WebTrends and a lot more. Tags gets updated dynamically all the time.
It will break down all the variable being sent back to the analytic vendor.
EPiServer 7.5 – Custom icons for content types – Epinova
A normal convention when listing files is to give them different icons, to easily distinguish between the different types. EPiServer’s new media system does not do this by default, but there’s a simple fix for this.
Installing EPiServer CMS 7.5 – Ted & Gustaf
Installing EPiServer CMS 7.5
Setting up a new EPiServer website became a lot easier with the release of EPiServer 7.5 The Deployment Center installer has been replaced by a Visual Studio extension using NuGet packages for all dependencies.
Twenty C# Questions Explained
Are you a developer with coding questions? Many new and experienced developers visit Stackoverflow.com to find solutions and to help others resolve their computing questions and issues. This training session focuses on 20 of the top questions surrounding the C# language, based on number of views and votes on stackoverflow. Watch this session, and get your questions answered.
EPiServer Commerce R1 – Trigger Lucene Searching and Indexing
If you want to use certain parts of the Commerce Manager (e.g. Marketing -> Promotion -> “Order: Buy X, get N quantity of Y at a discount”. -> Catalog entries picker, the Commerce default Lucene search indexer must be active.
Else you get this error inside the picker window:
System.IO.FileNotFoundException: no segments* file found in Lucene.Net.Store.FSDirectory
The searchindex creation can be triggered manually through Manager -> Administration -> System settings -> Search Index.
Scheduled jobs should be available in CMS but here is how to trigger the indexing through code:
Build index command
SearchManager searchManager = new SearchManager(applicationName);
searchManager.BuildIndex(false);
Goto file and line number immediately in Visual Studio with ReSharper
Goto file and line number immediately with ReSharper:
Press Ctrl-t and enter filename:[rownumber]
e.g.: Ctrl+t, enter master.css:3990 (opens master.css file and puts caret on line 3990).