Image Renditions in SharePoint are a really useful feature for both content editors and development of solutions, which can confuse the former when the list grows too big. In this article we’ll propose a solution to gain control over this list and make it more user friendly by exploring how the ribbon works.
Meaningful GUIDs
We use GUIDs every day to uniquely identify a variety of elements in our applications. They are a meaningless chunk of letters and digits which don’t give us a clue of what they represent. Or, do they?
Optimizing javascript promises by avoiding redundant requests
Sometimes when working with asynchronous JavaScript we unnecessary send the same HTTP request multiple times from different places. In this article we’ll discuss a technique to avoid these redundant calls and make our promises more efficient, and will present a tool to apply this to our existing code without effort.