Posts

Interesting Interview Questions asked right now

As you all know that there is a revolution in technology front and if you are a developer who is still stuck in some legacy project and continuing developing you might get a shock If you are applying for a job interview in future. Same thing happened with me. I want to share some of my experience in what new is being asked in technology front. This may help some of you to get through the interview process. 1. Coding test.       a) nearly everybody is asking for coding test now. Asking for complex Questions. What I got surprised are below points.            a.i) Apart from problem-solving using c#. People are asking problem-solving in Javascript as well. currently what companies are looking for is c# as well as javascript expert. So, that developer can handle the movement in technology from .net to node and angular front.            a.ii) The companies are not only looking for c# problem solvin...

How to Practice and Improve your Sql and PLSql Skills

Everybody are you know for preparing for an interview it's very very difficult as we consider ourselves master in technology and feel like we know everything including SQL server. The catch is with the advent of NoSQL and entity framework SQL server is asked rarely in an interview but in case its asked we get a shock because we didn't practice for it. below are good websites I found very useful for practising SQL or PLSQL SQLZoo.net — Provides practice and quizzes to boost your skills SQLTeaching — If you like learn by example introductions to new languages this is the resource for you. SQLCourse — Interactive online SQL training PGExercises — For those who learn by doing, try jumping right in with these exercises SQLFiddle — Completely free-form SQL practice. Build your own schema, run queries, or practice on a sample fiddle. If you like JSFiddle this is a similar tool.

How to Practice and Improve your C# Skills

Today I found our few websites to practice our your language skills for example c#. Being a software developer I had always been learning new languages and always had a feeling like I am expert in c#. But there was no way I can validate it or practice it in my spare time. 1. Codewars.com           This website is too good for practising and improving your skills with c# or other languages like Python, Ruby or Typescript. The best thing I found with this website is you can start with low level and keep practising more and more complex programs unless you achieve mastery in your skill.         The best part is you can contribute by adding problems you find yourself. also, there are more languages you can practice. Currently, I am registered with c#, Javascript and Typescript. 2. Hacker Rank.          This website is very good to practice complex problem solving using c#. This is specifically for prep...

Xiaomi Mi Air 13.3 : How to change the operating system from Chinese to English

go to below link to do it legally http://en.miui.com/thread-338431-1-1.html

Using Unity framework in .net MVC

Image
Here I will just go about the approach needs to be taken when learning to use unity framework. Download the file   . This files explains from basics how and why to use unity. After learning this. Add Nuget Project Unity.MVC in your App. Once added It will add few dlls as below It will add a file as below  App_Start=> UnityMvcActivator.cs In the UnityWebActivator.Start method add a method call at the end. RegisterTypes ( container ); also create a method as below public   static   void  RegisterTypes ( IUnityContainer  container ) {            container . RegisterType < ICompanyRepository ,   CompanyRepository >(); } Add Company.cs class in the Models folder public   class   Company {      public   int  Id  {   get ;   set ;   }      public   string  Name ...

Using Javascript Unit testing tool Jasmine in Visual studio

Steps. 1. we need to download Jasmine using github. 2. get the jasmine.js file and add it to visual studio empty website under newly created folder Jasmine. 3. Create a new file named TestJasmine.js and include below code in that. /// describe("Math.add", function () {     it("can add two numbers", function(){         var result = new Math().add(2, 3);         expect(result).toBe(5);     }); }); var Math = function() {     var add = function (a, b) {         return a + b;     }     return { add: add }; } 4. Install  Chutzpah  in visual studio using Extensions and Update. This will help run Jasmine testing code with visual studio. 5. Add NuGet package of Chutzpah in project. using Nuget Package Manager. 6. Restart the visual studio. 7. right click on  TestJasmine.js  and select option to unit test this file. 8. Happy unit testing.

Building your resume directly from LinkedIn with nice formatting.

use this formatting in your linkedin http://liresume.blogspot.in/2010/12/pro-tip-format-your-resume-using.html Go to  linkedinlabs and import resume from linkedin http://resume.linkedinlabs.com/ Export the resume to pdf. check if formatting is good enough. convert pdf to word using below tool http://www.pdfonline.com/pdf-to-word-converter/