top of page

Amexis News


Best Practices for Coding with AI: A Professional Guide
The integration of AI assistants into software development workflows has transformed how we write, review, and maintain code. However, maximizing the benefits of AI-powered coding requires understanding both its capabilities and limitations. Here are essential best practices for effective AI-assisted development. Start with Clear Context AI assistants work best when provided with comprehensive context about your project. Before requesting code generation, share relevant infor
Jan 53 min read
Â
Â
Â


Happy Easter from Amexis
As spring blossoms around us, the team at Amexis would like to extend our warmest Easter wishes to our incredible clients, dedicated...
Apr 17, 20252 min read
Â
Â
Â


Celebrating Innovation and Collaboration at Amexathon 2025!
Last week, our internal hackathon, Amexathon , brought together our colleagues to innovate, collaborate, and create. With four teams and...
Feb 25, 20252 min read
Â
Â
Â


Amexathon Kicks Off!
🚀 Innovation is in the air! Today marks the start of our exciting Amexathon - internal hackathon, where four dynamic teams have...
Feb 20, 20252 min read
Â
Â
Â


Amexathon 2025
🚀 Exciting News: Amexathon 2025 is Taking Off!  We're thrilled to announce our first-ever internal hackathon - Amexathon 2025 : Think...
Feb 13, 20251 min read
Â
Â
Â


Merry Christmas and Happy New Year!
In an old tradition, everyone in Amexis is going on holiday until next year. Also by tradition, on the last day of work we have a...
Dec 20, 20241 min read
Â
Â
Â


C# tips and tricks – part 5
yield in C# The yield keyword in C# simplifies the creation of iterators. It allows you to return elements one by one from a collection without having to manually manage the internal state of iteration or build complex data structures. How does yield work? When a method uses yield return, it pauses execution and returns an element in the sequence. The next time the method is iterated, the execution resumes from where it was paused, creating an efficient mechanism for producin
Nov 7, 20241 min read
Â
Â
Â


C# tips and tricks – part 4
Primary Constructors in C# C# is continuously evolving to offer more convenient ways to write clean and readable code. One of the upcoming features planned for future versions is the primary constructor , which aims to simplify object initialization by allowing class members to be initialized directly within the class definition itself. What are Primary Constructors? A primary constructor is a form of constructor that is defined at the class level, instead of being defined in
Oct 17, 20242 min read
Â
Â
Â
bottom of page