- http://www.errorify.com/ - source maps
- http://errorception.com/ - translate error messages to English
- http://www.exceptionhub.com/
- http://jserrlog.appspot.com/
- http://www.muscula.com/ - source maps, translate error messages to English
- https://www.airbrake.io/ - tracekit, source maps
- http://www.errorstack.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unexpected exception: Object reference not set to an instance of an object. | |
at Microsoft.VisualStudio.Editor.Implementation.VsTextBufferAdapter.GetData_VsBufferEncoding() | |
at Microsoft.VisualStudio.Editor.Implementation.VsTextBufferAdapter.GetData(Guid& riidKey, Object& pvtData) | |
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) | |
at Microsoft.VisualStudio.VSIP.NativeMethods.ThrowOnFailure(Int32 hr, Int32[] expectedHRFailure) | |
at VisualSVN.VS.AbstractLockedTextBuffer.GetEncoding() | |
at VisualSVN.Core.MarkerBuilder.BuildMarkers(ILockedTextBuffer lockedTextBuffer, IFileContentProvider fileContentProvider, IBufferContentProvider bufferContentProvider, IsPathVersionedDelegate isPathVersioned, Client client) | |
at VisualSVN.Core.QuickDiffUpdater.BuildMarkers(ILockedTextBuffer lockedTextBuffer) | |
at VisualSVN.Core.QuickDiffUpdater.Process() | |
StackTrace: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using WebApi.Delta; | |
namespace Hst.Deals.API.Infrastructure | |
{ | |
internal class CompiledPropertyAccessor<TEntityType> : PropertyAccessor<TEntityType> where TEntityType : class | |
{ | |
private Action<TEntityType, object> _setter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
gulpif = require('gulp-if'), | |
less = require('gulp-less'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
rename = require('gulp-rename'), | |
clean = require('gulp-clean'), | |
runSequence = require('run-sequence'), | |
concat = require('gulp-concat'), | |
uglify = require('gulp-uglify'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<system.web> | |
<httpModules> | |
<remove name="ExceptionlessModule"/> | |
<add name="ExceptionlessModule" type="Exceptionless.Web.ExceptionlessModule, Exceptionless.Web" /> | |
</httpModules> | |
</system.web> | |
</configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
internal static readonly TraceSource _traceSource = new TraceSource("MyLogSource"); | |
ExceptionlessTraceListener traceListener = Trace.Listeners.OfType<ExceptionlessTraceListener>().FirstOrDefault(); | |
if (traceListener != null) | |
_traceSource.Listeners.Add(traceListener); | |
OR | |
<system.diagnostics> | |
<sharedListeners> | |
<add name="DiskLog" type="System.Diagnostics.TextWriterTraceListener" traceOutputOptions="DateTime" initializeData="MyLog.log" /> |
A curated list by Eric Elliott and friends. Suggest links in the comments below.
This is a very exclusive collection of only must-have JavaScript links. I'm only listing my favorite links. Nothing else makes the cut. Feel free to suggest links if you think they're good enough to make this list. The really curious should feel free to browse the comments to find other links. I can't guarantee the quality of links in the comments.
Some of these links are affiliate links, meaning that if you make a purchase, I might earn a little money. This has absolutely no bearing on whether or not links make the list. None, whatsoever. However, it does allow me more resources to fight poverty with code. Every little bit counts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Exceptionless", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"id": 0, | |
"color": "#7EB26D", | |
"alias": "", | |
"pin": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// There are two ways to create an plugin: | |
public class UniqueUserIdentifierPlugin : IEventPlugin { | |
public void Run(EventPluginContext context) { | |
if (!ctx.Client.Configuration.IncludePrivateInformation) | |
return; | |
// Only update it if it's not currently set. | |
var user = context.Event.GetUserIdentity(); | |
if (user != null) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Required changes if you are using Exceptionless.Mvc --> | |
<system.web> | |
<httpModules> | |
<add type="Exceptionless.Mvc.ExceptionlessModule, Exceptionless.Mvc" name="ExceptionlessModule"/> | |
</httpModules> | |
</system.web> | |
<!-- Required changes if you are using Exceptionless.Web --> | |
<system.web> | |
<httpModules> |
OlderNewer