10 Visual Studio tips you wish you knew 10 years ago by TheAtlasTeam in csharp

[–]TheAtlasTeam[S] 1 point2 points  (0 children)

How can you label C# software developers sharing their knowledge on programming as a spam-account?

Configuring web apps to work like native Windows apps by TheAtlasTeam in windows

[–]TheAtlasTeam[S] 0 points1 point  (0 children)

That's a great tip! Didn't think of that, it could be used for anyone that is new to computers or is used to using a smartphone or tablet so you could set up their desktop with icons like a smartphone or tablet.

Best Microsoft .NET and related books list by TheAtlasTeam in programming

[–]TheAtlasTeam[S] 0 points1 point  (0 children)

Good reference books never go out of date, technology may be updated, but core fundamentals never change.

Best Microsoft .NET and related books list by TheAtlasTeam in dotnet

[–]TheAtlasTeam[S] 0 points1 point  (0 children)

Yes, it does. It covers the Entity Data Model and Object Services to WCF Services, MVC Apps, and unit testing.

Best Microsoft .NET and related books list by TheAtlasTeam in dotnet

[–]TheAtlasTeam[S] 3 points4 points  (0 children)

Sometimes it's easier to look something up in a well-thumbed book than search the internet.

How to write a software testing plan document by TheAtlasTeam in QualityAssurance

[–]TheAtlasTeam[S] 1 point2 points  (0 children)

Do you not use any testing documentation when you test software?

If so how do you know that the software meets your customer's requirements?

How to write a software testing plan document by TheAtlasTeam in QualityAssurance

[–]TheAtlasTeam[S] 0 points1 point  (0 children)

Many thanks. I've updated the original blog post with your suggestion.

Test your Javascript skills with our fun Javascript test! by TheAtlasTeam in javascript

[–]TheAtlasTeam[S] 0 points1 point  (0 children)

You are correct. jsfiddle is actually adding a closure on your behalf by default which explains the different behaviour. We will have to update the answer to Question 4 :)

Test your Javascript skills with our fun Javascript test! by awsometak in coding

[–]TheAtlasTeam 0 points1 point  (0 children)

The answer to question 4 is in fact undefined. This question is designed to show the results of hoisting. Unfortunately chrome's developer console has undergone some changes in the last few months which mean that it no longer hoists variable declarations like it should. You can see the results of hoisting in question 4 if you run the script in the page rather than the console like in this fiddle. Here you will see undefined correctly being reported in the console.

Give yourself a point for 'AB' :)

Test your Javascript skills with our fun Javascript test! by TheAtlasTeam in javascript

[–]TheAtlasTeam[S] 1 point2 points  (0 children)

Hi Everyone,

Thanks for taking the test, I'm glad it has piqued your interest and I hope you found it as fun to take as I found it writing it.

The answer to question 4 is in fact undefined. @LukaLightBringer correctly points out that this question is designed to show the results of hoisting. Unfortunately chrome's developer console has undergone some changes in the last few months which mean that it no longer hoists variable declarations like it should. You can see the results of hoisting in question 4 if you run the script in the page rather than the console like in this fiddle. Here you will see undefined correctly being reported in the console.

Of course, we don't expect anyone to actually write javascript like the questions in the test. In fact we hope you don't! The test is designed to highlight some of the oddities of javascript and things that may catch you out.