Hello MicroK8s: A simpler Kubernetes
Kubernetes is rapidly becoming the de facto platform for container-based applications. Kubernetes automates the deployment and scaling of containerized applications and simplifies maintenance tasks such as updates and upgrades. ...
How YOU can Dockerize a .Net Core app
This is the first part of a series of posts on using Docker and containerization with .Net Core. In the title, we call what we are about to do dockerizing. It's called dockerizing after Docker. View original article
Test and deploy an iOS App with GitHub Actions
Github announced Github Actions last summer. With this new tool, you can analyze, build, test and deploy your projects on any platform, any language and any cloud. Our goal is to automate building, testing and deploying an iOS project without the need for external...
flexible pubsub for the modern web
Nchan is a scalable, flexible pub/sub server for the modern web, built as a module for the Nginx web server. It can be configured as a standalone server, or as a shim between your application and hundreds, thousands, or millions of live subscribers. [mgamazon...
Taking browser screenshots with javascript? Yes, it is possible.
With HTML2CANVAS
1962 Monaco GP in 60FPS HD / Onboard & Air footage | Ferrari 156, Porsche 804, etc.
Remastered onboard footage shot during the 1962 Monaco Grand Prix weekend.(Not in the race) This is a 60FPS HD video, so please watch in 1080p60 or 720p60. [Scenes from the race - https://youtu.be/gGmoy1rXWKI] This footage is from the 1962 West German documentary film...
Toonify Yourself!
Toonify Yourself! Sorry Toonify Yourself is offline for the moment! Seems like it was a popular idea and server costs were going up quickly so we decided to turn it off. Thanks for everyone who tried out the model and shared the results. View...
Announcing Flutter 1.22
We’re delighted to introduce our latest release of Flutter, with extensive support for iOS 14 and Android 11. Flutter 1.22 builds on the foundation set by previous releases by enabling developers to build fast, beautiful user experiences for multiple platforms from a...
Server-side Showdown: Apache vs NGINX
Web servers are at the core of the internet. Without web server software such as Apache and NGINX, the web would be nothing like what we see today. However, they’re not interchangeable. View original article
Updates on Flutter and Firebase
Flutter is more than just an engine, a set of widgets, and some tools; it also includes a large ecosystem of packages to add functionality to your apps beyond what comes out of the box. Some of the most popular packages are the set that supports Firebase (aka...
Announcing Flutter 1.20
Our ongoing vision with Flutter is to provide a portable toolkit for building stunning experiences wherever you might want to paint pixels on the screen. With every release, we continue to push towards ensuring that Flutter is fast, beautiful, productive and open for...
Flutter Hooks, say goodbye to StatefulWidget and reduce boilerplate code.
Flutter Hooks, say goodbye to StatefulWidget and reduce boilerplate code. Flutter hooks have been available for a while now but they didn't get a lot of love or visibility since then. I am wondering why, because they are awesome! View original...
flutter/samples
A Flutter sample app that shows a state management approach using the Provider package. This is the app discussed in the Simple app state management section of flutter.dev. Here the app sets up objects it needs to track state: a catalog and a shopping cart. [mgamazon...
Why we think Flutter will help us scale mobile development at Nubank
An overview of the criteria and study we conducted to decide to use Flutter as our main technology for cross-platform mobile development. Nubank has been a mobile-first Fintech from the beginning. View original article
Flutter Login Screen with Firebase Auth and Facebook Login
This beautiful login screen is made using ClipPath, CustomClipper, ClipOval, BoxDecoration etc. All the shapes are made programtically. View original article
Flutter Web and PaginatedDataTable
Note: For changes to data, we have used Provider….This article won’t be explaining how the changes gets notified…. Data is read lazily from from a DataTableSource. View original article
Flutter : How to do user login with Firebase
Flutter is an open source mobile SDK developed by Google to build high quality applications for Android and iOS. It allows developers to not only build application with beautiful design, smooth animation and fast performance, but also able to integrate new features...
BLoC in Flutter: Implement Clean, Flux-like Architecture
How to architect a Flutter application is a question that has no easy answer. Dart, being a multi-paradigmatic language, lets you mix and match OOP and functional programming approaches. View original article
Introducing .NET Multi-platform App UI
You can build anything with .NET. It’s one of the main reasons millions of developers choose .NET as the platform for their careers, and companies invest for their businesses. With .NET 5 we begin our journey of unifying the .NET platform, bringing . [mgamazon...
Don’t write your Web API Client code
Web APIs are heavily gaining traction in the software world, replacing the (good?) old Web Services. Virtually every API that is born today is likely to be REST and being built using frameworks like WCF (if you’re brave enough), ASP.NET MVC WebAPI or Spring. [mgamazon...
GitHub is now free for teams
We’re happy to announce we’re making private repositories with unlimited collaborators available to all GitHub accounts. All of the core GitHub features are now free for everyone. 🎉 View original article
Flutter web: Navigating URLs using named routes
Named routes can be used to navigate between pages inside a Flutter mobile app, but they also work for URLs in Flutter web apps. This article explains how to add named routes to your app, and how you can customize them, to have pattern matching inside the routes....
How to choose which Flutter Animation Widget is right for you? – Flutter in Focus
In previous episodes of Flutter in Focus, we learned how to implement animations using Implicit widgets, Explicit widgets, and learned even more about how animations work. There are a lot of different animation widgets and figuring out which one is most appropriate...
Here’s A Flutter Boilerplate(Starter Kit) with BLoC pattern, splash screen, sample pages, Google Admob ready
Building a Flutter app is simply amazing! Even more amazing is the fact that you can reuse your code in multiple projects! But there are times you simply need to kick-off a fresh project without having to copy from another project. View...
An architectural review of the Invoice Ninja Flutter app
We’ve been working on our Flutter mobile app for a few months now, I thought it may helpful to share some of the techniques we’re using to help keep our code maintainable. Keep your code DRY (don’t repeat yourself). View original...