Tag Archives: Coding
Variables Scope
I love reading the book Code Complete, by Steve McConnell. The following comes from it, in its Chapter 10: General issues in using variables. ………. “Scope” is a way of thinking about a variable’s celebrity status: how famous is it? Scope, or visibility, refers to the extent to which your variables are known and can be […]
Problem Solving – Coding Interview
Below is a very interesting example of how to interact when solving a problem during a coding interview. Think loud. Clearly. Ask for clarifications. Talk before you write. Think about different solutions. Best case scenario. Worst case. Edge cases. Test your solution in real time.
C# vs Python – Part 2
I have with C# for easily about 8 – 10 years and I love the language. I have worked with Python for much less time. Probably about 1 year in total and I also like the language. There are a lot of discussions on the web in regards to differences, pros and cons betweens specific languages. […]
C# vs Python – Part 1
I have with C# for easily about 8 – 10 years and I love the language. I have worked with Python for much less time. Probably about 1 year in total and I also like the language. There are a lot of discussions on the web in regards to differences, pros and cons betweens specific languages. […]
Everyone should learn about coding
I’m glad you checked out this page. Chances are you already have some kind of connexion with programming, writing code, building software, being in the computers industry… This video gives another reason about why everyone must pay attention to programming, coding. You should do too. No matter which field you are in. Check the video […]
Are you a developer or a tester ? Or can you be both ?
Have you very thought about triple-clicking a button to try breaking an application ? Are unit tests enough ? Do they mean you can ship your product ? Can you have your project fail even with 100% test coverage ? Developers think about the way things should work. Testers, good testers think about what could […]
C# Data Structures
Array, ArrayList, List, LinkedList, Dictionary, HashSet, Stack, Queue Data Structures C#.NET has a lot of different data structures, for example, one of the most common ones is an Array. However C# comes with many more basic data structures. Choosing the correct data structure to use is part of writing a well structured and efficient program. […]