What do you consider when building a new application?

When you’re starting a new project and thinking about what you’re going to use in your application, what factors do you consider? Sometimes this depends on what your role is, so a develop will jump straight in with just use X coding language and continue on their way. Whereas other might want to play with whatever the new and latest technology is. Then there is people like myself that likes to think about the whole picture, and so here are some of the key factors I consider when building a new application.

How to get a PDF from Server Side to Client Side?

So you generate a PDF in the C# code or any back end code, but need to send it back to the JavaScript doing the AJAX request. The trouble is how you return a file back to the client side and is the same problem I faced. There are loads of methods of how to do this that I have seen on the line, but these are the ways I found worked with C#.NET and JavaScript.

Resharper DotCover Analyse for Visual Studio Team Services

Do you use Visual Studio Team Services (VSTS) for Builds and/or Releases? Do you use Resharper DotCover? Do you want to use them together? Then boy do I have an extension for you!

That might be a corny introduction, but it is exactly what I have here.

Keeping an images ratio on resize in JavaScript

A little tricky task was given to the team I am working in, to keep an image at its aspect ratio. However the catch is that it needs to be able to go as large as it can to fill the screen at all times, while the user can resize the screen and keeping theContinueContinue reading “Keeping an images ratio on resize in JavaScript”

How to Iterate multiple folders/files in Gulp

When searching for a method to loop not just the first level of files and folders, but also all the levels below. Asking to much I wanted the files name, its folder location and also the files content. I found it… I found the Gulp plugin ‘src’ and ‘tap’… Gulp-tap > https://www.npmjs.com/package/gulp-tap Gulp-src > https://www.npmjs.com/package/gulp-srcContinueContinue reading “How to Iterate multiple folders/files in Gulp”