Blog Archives

How to fix IntelliSense in VisualStudio for Razor ViewEngine.

If you don’t have IntelliSense in VisualStudio for Razor view, you might be using wrong project type like class library or your configuration is wrong. For last one it is enough adjust your web.config file in Views folder. But for

Posted in Development

JsonForm

we saw a lot of json-schema implementations nowadays. What I like about json schema that’s based on json – most popular an open standard used primarily to transmit data between a server and web application, as an alternative to XML.

Posted in Development, Startup

DataContracts VS MessageContracts

Lastly I was asked explain MessageContracts need. Typically when building web service, developers pay close attention to the data structures and serialization issues and do not need to concern themselves with the structure of the messages in which the data

Posted in Development

WordPress Tips and Tricks

Have you ever seen shitty code ?  Open wordpress and you will see. I mean open as developer, try change something what is not in the theme options 🙂 Whole decade I was trying avoid such thing like wordpress regarding

Posted in Development

Demystifying Google API and OAuth2

Saturday morning usually I start with chess but now I decided play with some code. It really hurts when you start some software development and try use such beast like Google API – huge amount of information, huge amount of

Posted in Development

AngularJs – Saving global variable into localStorageService

Hey, I have interesting task with AngularJs (Just trying learn AngularJs and expand my knowledge here). Let me explain what I want to achieve. For example we have app for finding accommodation(s). One list represents flats another houses. As end

Posted in Development

Proxying unknown server

How can you get data from unknown format web service and persist that data to your storage ? By creating proxy and using your primary ORM mapper ? What if the metadata of web service doesn’t provide metadata itself or

Posted in Development

Export web service metadata for REST Client

Currently in the market you can see a lot of REST clients. You can probably remember the Fiddler as primary tool for watching of what’s happening on your local machine and doing GET, POST and other Http requests. More and

Posted in Development

MVC Paging

From project to project we use the same paging technique independently of persisting storage. It might be NHybernate(Fluent NHybernate), Entity framework or even Mongo (mongo C# driver). I will try put every code piece you need for paging functionality :

Posted in Development

Sending Emails with RazorMail

My new colleagues asked me for advise regarding mail sending from .NET project. Of course we have SmtpClient out of the box. Of course we are using xml configuration into web.config file Debug case (when delivering mails to specified directory)

Posted in Development