Skip to main content

Posts

Showing posts from April, 2018

Deeplinks in apps

Deeplinks in apps are essential to offer a seamless, interleaved experience of the app with E-Mails Websites Push messages Messengers (iMessage, Whatsapp, ...) Supporting external deeplinks prove very useful for Onboarding Marketing Sales Re-activation of users ...that all can independently work on their subjects without having to be supported by the developers (after they created the deeplinks!). Checkout: AirBnB DeepLinkDispatch (Android, 2,862 stars!) joeldev/JLRoutes (iOS, 4,300 stars!) dudego/DeepLinkHandler  (iOS, 28 stars...) Google Firebase Dynamic Links iOS: How to open Deep Links, Notifications and Shortcuts React Native Deep Linking for iOS and Android

Serverless

Serverless The serverless application framework. Over 21,000 GitHub stars and counting. Medium.com How we migrated our startup to serverless The team decided to ditch all of our EC2 containers and instances in favor of using AWS Lambda within a serverless architecture. To help us orchestrate all of our AWS Lambda functions, we selected the Serverless Framework. A cloud guru

iOS and Android native App Install Banner

Android Native App install banners are similar to Web app install banners, but instead of adding to the home screen, they will let the user install your native app without leaving your site. Developer Google iOS Promoting Apps with Smart App Banners: Safari has a new Smart App Banner feature in iOS 6 and later that provides a standardized method of promoting apps on the App Store from a website. Developer Apple

AWS Lambda lifecycle and in-memory caching

The ephemeral nature of AWS Lambda functions might have you believe that techniques like in-memory caching cannot be utilized like you would with a conventional server, but that’s not the case! Let’s check out why. TJ Holowaychuk on Medium.com Even though you can't fully rely on them, our experimentation has shown that global variables can be used for some opportunistic caching. Amazon Lambda launches a number of computer instances to run function invocations, and keeps them alive for an unspecified period of time, which may be several hours. During this time, Lambda functions can access cached data previously stored in global variables. When a function invocation happens to run on a fresh instance, data has to be fetched from a more persistent source again. Amazon AWS Lambda data caching solutions compared

Learn Swift 4 with Bob

Very nice, focussed reference! Purpose As a developer whose first programming language is Swift, I've taken online courses from major platforms. However, I have been frustrated by a lack of detailed explanations from instructors. They tend to focus on final products, thus missing out the fundamentals. I was confused by which design principles to follow, and why. After I've been blogging for the last 5 months, I've discovered this isn't the only problem of mine. I've received hundreds of emails and questions regarding how to write code that does not violate principles such as DRY, modularity, and readability. As a result, I've decided to create this course dedicated for my younger self. I believe it all comes down to the fundamentals which I lacked in the beginning. Learn Swift with Bob