Articles tagged with: Development

Don't test only with superusers

Summary: The importance of testing software with normal user accounts, not just admin accounts, to avoid potential issues and ensure functionality for all users.


Building a simple Cache system for Wordpress 3.0

Summary: Building a simple cache system for Wordpress 3.0 to speed up loading times.


My personal Source Code Control evolution

Summary: My personal journey with Source Code Control systems.


Distributed knowledge vs Shared Knowledge

Summary: The difference between distributed knowledge and shared knowledge in companies.


C# String array + File.WriteAllLines vs StringBuilder + File.WriteAllText

Summary: A comparison between using C# String array + File.WriteAllLines and StringBuilder + File.WriteAllText for writing large amounts of data to a file.