Skip to content

Coding and Beyond

A software developer's blog.

  • Home
  • Article Series
    • Architectural Design Patterns
    • Advanced C# Tips
    • C – Bedrock of Software
  • About
  • Contact

Category Level

  • Home
  • Archive by category "Level"
10/09/2024

Advanced C# Tips:Prefer Lazy Initialization for Rarely Used Objects

By Suleyman Cabir Ataman in Advanced, C#, Software Engineering Tag C#, .NET, .NET Core, dotnet, Advanced C# Tips

Lazy loading and eager loading are two contrasting approaches in managing how and when data is loaded into memory in programming, particularly relevant in the context of databases, data processing,…

Read More

03/09/2024

Advanced C# Tips: Avoid Excessive Inlining of Methods

By Suleyman Cabir Ataman in Programming Languages, Advanced, C#, Software Engineering Tag .NET Core, Advanced C# Tips, C#, .NET

Inlining methods is a technique where the compiler replaces a method call with the actual method body's code. While inlining can speed up your program by eliminating the overhead of…

Read More

27/08/2024

Advanced C# Tips: Using Array Segments Instead of Copying Arrays

By Suleyman Cabir Ataman in Intermediate, Advanced, C#, Software Engineering Tag C#, .NET, .NET Core, dotnet, Advanced C# Tips

Even though it is not a very popular C# tool, the ArraySegment<T> is quite old and it was introduced in .NET Framework 2.0, which was released in 2005. It is…

Read More

20/08/2024

Introduction to Cloud Computing for Junior Developers and Testers

By Suleyman Cabir Ataman in Azure, Amazon Web Services, Cloud Computing, Beginner Tag AWS, Cloud Computing, Interview Preperation

Cloud computing is a concept that every developer and tester should understand within software industry in 2020s. Whether you are just starting or changing your career; or preparing for a…

Read More

13/08/2024

Advanced C# Tips: Reuse Objects Where Possible

By Suleyman Cabir Ataman in Intermediate, Advanced, Coding, C#, Software Engineering Tag C#, .NET, .NET Core, dotnet, Advanced C# Tips

Reusing objects in C# is a strategy that aligns with the principles of efficient memory management and application performance optimization. This concept is important in environments where memory resources are…

Read More

06/08/2024

Bedrock of Software – Part 2: C and Unix – A Symbiotic Relationship

By Suleyman Cabir Ataman in Coding, C/C++, Programming Languages, Beginner

The best way to describe the relationship between C and Unix will be mutual evolution. Both were developed at Bell Labs and each played a unique role in the other's…

Read More

30/07/2024

Advanced C# Tips: Utilize ArrayPool for Frequent Array Allocations

By Suleyman Cabir Ataman in Advanced, Coding, C#, Software Engineering Tag C#, .NET, .NET Core, dotnet, Advanced C# Tips

ArrayPool<T> in C# is a very useful but a less known feature. It has been around since .NET 2.0 but has never been popular. In order to understand ArrayPool, we…

Read More

23/07/2024

Advanced C# Tips: Consider Leveraging Bitwise Operations for Simple Calculations If Possible

By Suleyman Cabir Ataman in Advanced, Coding, C#, Software Engineering Tag Advanced C# Tips, C#, .NET, .NET Core, dotnet

Bitwise operators in C# are special tools that let you work directly with the individual bits of a number's binary representation. If you are reading this blog post, I assume…

Read More

16/07/2024

Advanced C# Tips: Use Exceptions Wisely

By Suleyman Cabir Ataman in Advanced, Coding, C#, Software Engineering Tag dotnet, Advanced C# Tips, C#, .NET, .NET Core

Exceptions in C# are definitely a great facility but we need to use them wisely. We should leave the least possible probabilities of throwing an exception since exceptions come with…

Read More

Posts pagination

1 2 3 4 … 8

Article Series

Architectural Design Patterns

Advanced C# Tips

C - Bedrock of Software

Categories

  • Level
    • Beginner
    • Intermediate
    • Advanced
  • Programming Languages
    • C/C++
    • C#
    • Go
    • Java
    • Python
    • TypeScript
  • Databases
    • NoSQL
  • Cloud Computing
    • Amazon Web Services
    • Azure
    • Containerization
  • Web Development
    • Angular
    • React
    • Node.js
  • Software Engineering
  • Testing

Search

Proudly powered by WordPress | Theme: SpicePress by SpiceThemes