Single Responsibility Prinicple
jgauffin's coding den
SRP is one of the easiest principles to learn, but one of the hardest to master. The reason to this is that it can be quite hard to see if a method or class breaks SRP…
Fahlun, Sweden
Expert .NET architect. Loves SOLID, especially SRP.
Specialized in:
a) Networking of all kinds from simple web sites to pure socket applications. Have built several frameworks by just using RFCs as a guide.
b) Code quality, which means everything from creating a flexible architecture using existing frameworks (commercial or open source) to refactor code to make it more robust and maintainable.
c# asp.net-mvc nhibernate nlog autofac wcf unity
remoting
SSAB EMEA AB
2012 - Current
Responsible of all .NET development for two IT-departments.
My job is to make sure that SSAB takes a step forward and uses a more modern approach in it's development.
My role is sort of a mentor for all .NET developers and as the lead architect.
SSAB EMEA AB
2011
I suggested that I should create a software testing portal (web based) to replace the word document templates which is currently used.
Each application can have one or more test templates. The templates are used to create test sessions which is used during the actual testing.
SSAB EMEA AB
2011
Create a web based application which can be used to keep track of all trucks and their current state (functional, awaiting spare parts, repairing).
Also contains an administrative part where charts are used to present service level etc.
SSAB EMEA AB
2010 - 2011
Create a new architecture that is going to be used for all new appliations. The new architecture consists of:
To make it easier two work with the above technologies I've made a few libraries making it easier. The libraries are install in the projects by using a local nuget server which makes it very easy to install and upgrade the framework.
Makes the usage of Unity transparent, all you need is to tag the services with a [Component] attribute.
Logging is done by using a service locator similar to the one in nlog. The difference is that Enterprise library is used for the logging.
Entity Framework 4.1 with CodeFirst (and no data model) is used with a handwritten DataContext interface to make unit testing easier.
A base structure taking care of errors and inversion of control (views, base controller and a error controller + some jquery scripts are installed by the nuget package)
SSAB
May 2010 - Current
My inital assignment was to migrate about 20 applications (asp.net webforms/webservice/windows service/com+) to .net 4.0
I saw some problems in those applications and reported them. They are now going to refactor all applications regarding logging and error handling (to start with) according to my suggestions.
Gauffin Telecom AB
2007 - 2010
My own company which is building a module based unified communications platform / PBX (hosted platform / multi tenant).
It's uses SIP as Voice Over IP protocol and supports lots of different modules like queue system, hotel module, graphical statistics, CRM module, hunt groups.
Each tenant can activate / deactivate modules at any time and their billing will automatically be reconfigured to reflect their changes.
All modules are dynamically loaded when the system is started and the separated interface pattern is used to let modules to talk which each other. An event engine is used to let all modules react on things like incoming calls etc.
The system is built purely in .NET and uses different frameworks like nhibernate and autofac.
Netional AB
2008 - 2008
Create the arcitecture for the website http://www.recordunion.com.
RecordUnion is a site where artists can publish their music. The music is pushed to different music stores like iTunes and Amazon.
All music are stored as wave files which means that the music archive is quite big. Amazon S3 are used for storage. Music is pushed and pulled dynamically depending on what each artist does.
PayPal is used as a payment gateway (to pay each customer and to charge for ID numbers which is required to publish singles/albums)
Everything is built in .NET with a ORM and InversionControlContainer that I made.
Datatal AB
2001 - 2007
C++ developer. I did both client and server applications.
Made a framework which used IO Completion Ports for the socket communication.
Made a complete presence handling system including a switchboard attendant and a server. The system was created for Philips and was branded Philips PhoneWatch.
Made a Contact Center solution using a complex skilled based routing algorithm which I invented. The system could handle fax, SMS, emails and voice calls. The same client application could handle all those sources, and the queue list was personalized for each agent.
EDK AB
2001 - 2001
Needed a new challenge and started working as an IT-consultant.
The management could have been better and I didn't really get any interesting jobs which is worth mentioning here. Which is the reason that I didn't work there for long before switching job.
I did however create a statistics analytic website for Internet Information Server and Apache. The website was created in PHP and used MySQL as backend.
Objecta Systems AB
1996 - 2000
First job. Main assignment was to create interactive voice applications. Could be anything from banking on phone (for one of Swedens largest banks) to a simple informational application.
Also coded some Visual Basic applications. One of them was a voice mail administration application used to administer all voice mail boxes on a company.
All IVRs were coded in a propitiatory script language called VoiceTrain.
Also created a support/ticket management system in classic ASP and MySQL which were used internally by the support department.
Högskolan på Gotland
2004 - 2006
I got max grade on all courses.
I both studied and worked full time.
Favorite course was "Design Patterns" which went through most of the GOF patterns.
An embeddable and extensible web server that supports controllers, dynamic templates (which are recompiled in runtime if changed on disc), haml, multiple web sites, reverse proxying, http digest, http basic auth and more.
Apr 2008 - Current; followed by 145 people; forked 16 times
Author
A contribution project for ASP.NET MVC3
Sep 2011 - Current; followed by 27 people; forked 7 times
My contribution project for ASP.NET MVC3.
A Logging framework for .NET
Jan 2012
Super-easy logging framework for .NET (which I created)
A table plugin for jQuery
Jan 2012 - Current; followed by 2 people
A Grid for jQuery with a ASP.NET MVC3 integration package.
I'm the author.
My working copy of Sogeti pattern
Feb 2012
We are streamlining the web development at Sogeti. This project will contain guidelines and code to make MVC3 development easier.
jQuery text editor supporting markdown
Feb 2012 - Current; followed by 61 people; forked 2 times
A Markdown editor for jQuery.
I'm the author
jgauffin's coding den
SRP is one of the easiest principles to learn, but one of the hardest to master. The reason to this is that it can be quite hard to see if a method or class breaks SRP…
jgauffin's coding den
Explanation of LSP, a SOLID principle, with code examples in C#.
jgauffin's coding den
How to perform localization in .NET without using attributes.
CodeProject® - Your Development Resource
Griffin.MvcContrib gives you localization features without any code changes.;
Erich Gamma, Richard Helm, Ralph Johnson, John M. Vlissides
ploeh blog
Commodore 8088
Visual Studio with Resharper
Participated in
Been programming professionally since 1996 in a number of languages ranging from Assembler to C#.
I'm a heavy promoter of using open source frameworks instead of inventing everything by yourself.
An OR/M and an Inversion Of Control container should exist in every serious programmers toolkit. The OR/M speed up development while the IoC container makes it a lot easier to reduce coupling between classes.