Skip to content

Strengthening Global Ties: Bliss Applications in the Middle East

Opinion Articles

As part of our ongoing commitment to international growth and strategic expansion, André Gil (CEO) and Pedro Varela (Head of Commercial and Partnership) from Bliss Applications recently completed a successful 5-day business trip to the Middle East, visiting Dubai and Qatar.

 

The main goals of this journey were to strengthen existing commercial relationships and establish new connections with potential partners and clients. Joao Beato Esteves from United Channels Consulting, our trusted commercial partner in the Middle East, was by our side every step of the way.

Already working with renowned regional financial institutions to deliver digital solutions that support innovation in the banking and fintech sectors, this trip reinforces those relationships while opening doors to new strategic opportunities.

 

Between a full schedule of meetings and business engagements in Dubai, our team had the opportunity to attend GISEC GLOBAL, one of the region’s leading cybersecurity and innovation events. It was a valuable opportunity to connect with tech leaders and stay aligned with emerging trends that impact our industries.

Related articles

Opinion Articles
RxRepository: Building a testable, reactive, network data repository using RxSwift (part 1)

In this series we will tackle the problem of optimizing network access to fetch data from the network, a common theme of networked applications. While it is certainly trivial to fetch data from a server in any modern framework or OS, optimizing the frequency of access to the network, in order to save bandwidth, battery, user frustration, amongst other things, is complex. More so if you want to reduce code duplication, ensure testability, and leave something useful (and comprehensible) for the next engineer to use.

Opinion Articles
RxRepository: Building a testable, reactive, network data repository using RxSwift (part 2)

In part 1 of this series we started tackling a common problem of networked applications, that of optimizing resource usage and user experience, by optimizing network access. We typically do that by avoiding expensive resource usage, as in avoid making network calls. This avoidance is not more than a mere compromise on the type of resource we decide to spare. Trade a network call for memory space, by caching network responses. It also comes with constraint relaxation, as we do not need the latest version of a particular resource. We, thus, avoid a network call. Nevertheless we want that what we have cached to eventually expire, or to be able to forcefully reload a resource.