blog.jonathanchannon.com
Jonathan Channon Blog
http://blog.jonathanchannon.com/archive
Curated by Jonathan Channon. Building all and current dotnet core projects in VSCode. July 13, 2016). Porting OWIN middleware to ASP.Net Core. June 27, 2016). What is a Hypermedia client? April 28, 2016). VQ Communications Funds NancyFX to run on CoreCLR. March 30, 2016). Profiling a CoreCLR application with dotMemory. February 11, 2016). Introducing Negotiator - a GoLang content negotiation library. November 16, 2015). Introducing PoGo - a GoLang, Twitter favourites to Pocket importer. October 27, 2015).
blog.jonathanchannon.com
Jonathan Channon Blog
http://blog.jonathanchannon.com/page2
Curated by Jonathan Channon. Introducing Negotiator - a GoLang content negotiation library. November 16, 2015. And eventually decided upon Goji. Introducing PoGo - a GoLang, Twitter favourites to Pocket importer. October 27, 2015. August 07, 2015. In my day job I'm responsible for a HTTP API (notice I didn't use REST) and some months ago I spoke to Glenn Block around a general discussion about hypermedia. Glenn put this on YouTube if you want to watch it. April 27, 2015. November 24, 2014. I was going to...
jonaskello.wordpress.com
VB.NET lambda expressions intellisense not working for Repository(Of T) | Kello's Code Corner
https://jonaskello.wordpress.com/2009/01/13/vbnet-lambda-expressions-intellisense-not-working-for-repositoryof-t
Kello’s Code Corner. January 13, 2009. VBNET lambda expressions intellisense not working for Repository(Of T). Filed under: .NET. 8212; jonaskello @ 21:54. When designing an IRepository(Of T) implementation with lambda expressions in VB.NET I found out that there is a bug in the VB.NET intellisense of Visual Studio 2008 SP1. VBNET is not working. Known bug said to be resolved in next Visual Studio. It is reported here. Step 1, VB.NET is not working. Public Class Repository(Of T) Public Function Find(ByVa...
blog.jonathanchannon.com
Jonathan Channon Blog - Nancy, ASP.Net vNext, OSX and Sublime Text
http://blog.jonathanchannon.com/2014/08/05/nancy-aspnetvnext-osx-sublime-text
Curated by Jonathan Channon. Nancy, ASP.Net vNext, OSX and Sublime Text. August 05, 2014. One of the great things that ASP.Net vNext is bringing is the ability to use it cross platform with Microsoft actively testing their libraries against Mono. Along with this MS are developing a web server that is cross platform and goes by the name of Kestrel. At the time of writing the official binary for Mono is 3.4.0 and this does not include some features needed for ASP.Net vNext to run so we are goin...And insta...
blog.jonathanchannon.com
Jonathan Channon Blog - Microsoft Endorsing C# as a First Class Citizen in Sublime Text
http://blog.jonathanchannon.com/2014/11/12/csharp-first-class-citizen-sublime-text
Curated by Jonathan Channon. Microsoft Endorsing C# as a First Class Citizen in Sublime Text. November 12, 2014. At the end of my last post. On using ASP.Net vNext with Sublime Text I briefly mentioned a plugin. That aimed at giving intellisense for C# within the editor. Well 2 months later and I'm happy to announce that intellisense works and I've added a slew of other features that will hopefully make you feel at home away from Visual Studio. I discovered the plugin thanks to Jason Imison. Which is a -.
codeopinion.com
Query Objects with a Mediator - CodeOpinion
http://codeopinion.com/query-objects-with-a-mediator
Skip to main content. Query Objects with a Mediator. February 27, 2015. First we will create an interface that will be used on all of our query objects. Public interface IQuery out TResponse . Now we need to create an interface that all of our query handlers will implement. Public interface IHandleQueries in TQuery, out TResponse where TQuery : IQuery TResponse { TResponse Handle(TQuery query); }. Public interface IMediate { TResponse Request TResponse (IQuery TResponse query); }. Now in our controller, ...
codeopinion.com
Mediator Pattern using MediatR and Unity - CodeOpinion
http://codeopinion.com/mediator-pattern-using-mediatr-and-unity
Skip to main content. Mediator Pattern using MediatR and Unity. April 23, 2015. In a couple previous posts I’ve discussed using Query Objects instead of Repositories. And the Mediator pattern. I find creating query objects being used with the command pattern much cleaner than polluting repositories with a ton of query methods. Created by Jimmy Bogard. It is incredibly simple and only has one dependency, CommonServiceLocator. Has a good set of docs. With different dependency injection containers. Thankful...
localghost.io
localghost.io
http://localghost.io/articles/getting-your-c-sharp-on-with-atom-2014-11-12
Getting your C# on with Atom. One of the last web projects I did before starting my current gig at Elasticsearch. Was every developers dream, 3 week POCO search interface, no fixed scope, have fun. One of my internal goals of the project was to proof that developing C# on a mac did not have to suck. The team consisted of me and a frontend developer who also worked on OSX and was happiest if all he had to open was Sublime and a terminal. Hosted in OWIN self host (Helios in production). HECK TO THE YES.
blog.jonathanchannon.com
Jonathan Channon Blog - NancyFX and Hypermedia
http://blog.jonathanchannon.com/2015/08/07/hypermedia-and-nancyfx
Curated by Jonathan Channon. August 07, 2015. I've been slowly educating my self on hypermedia; what it is, how does it help and how to use it. I must say I've found it a very interesting topic and I thought it was time I put some information into a blog post just in case the 2 people that read this blog might find it useful. The app will need to go back to the entry point of the API then traverse. What happens if the user presses the refresh button in the browser? And he wondered if I'd be interested in...