Flutter Vignette Showcase
Showcase the capabilities and potential of Flutter.
The true open source database for Windows, Linux, Mac OS X and more
Firebird Project announces the first Release Candidate of Firebird 4.0, the next major version of the Firebird relational database, which is now available for testing on Windows and Linux platforms.
Build Flutter Apps Fast with Riverpod, Firebase, Hooks, and Freezed
» Flutter courses, writeups, and source code on Launch Club 🧠
https://LaunchClub.io
So you want to learn how to build apps quickly. You’re in the right place. Thanks to the thriving universe of Flutter packages on https://pub.dev, we can do just that.
Today, I’m going to teach you how to b
Can Google make cross-platform mobile app development suck less?
Today, Google is holding a developer conference in London for Flutter, a new development environment for developing mobile apps for both Android and iOS. Google calls Flutter a “portable UI toolkit,” and Paul Miller has called it “a Frankenstein’s monster of various Google projects.
Managing Flutter Application State With InheritedWidgets
Everyone has heard that interactive applications can be decomposed into three parts: model, view, and controller. Anyone who has given Flutter a test drive will be familiar with its react-style support for building view/controllers with widgets and callbacks.
Hands-On with WSL: Installing Other Linux Distros
The third article of a five-part series on Microsoft’s Windows Subsystem for Linux (WSL). This article is part three of a five-part series in which I discuss various aspects and functions of the Windows Subsystem for Linux (WSL).
Architect your Flutter project using BLOC pattern
Hi Folks! I am back with another brand new article on Flutter. This time I will be talking and demonstrating to you “how to architect your Flutter projects”. So that you can maintain, scale and test your Flutter projects easily. Before diving into the actual topic.
WebAPI Improvements in .NET 5 – OpenAPI, Better F5, and NSwag
In .NET 5, WebAPI has an important quality of life upgrade. In this video, we are going to look at the integration of OpenAPI into the project, how it works, and then why it is so important. We will also look briefly at NSwag and how to use it to generate API clients for our other applications using
Database to code with a Firebird database
Using example values. The data context class is generated for all Models of the database.
Flutter: a Portable UI Framework for Mobile, Web, Embedded, and Desktop
Today marks an important milestone for the Flutter framework, as we expand our focus from mobile to incorporate a broader set of devices and form factors.
Launching Flutter 1.2 at Mobile World Congress
The Flutter team is coming to you live this week from Mobile World Congress in Barcelona, the largest annual gathering of the mobile technology industry. One year ago, we announced the first beta of Flutter at this same event, and since then Flutter has grown faster than we could have imagined.
Samsung Investigates Massive Data Leak — What You Need To Know
A security researcher has revealed that a whole load of sensitive information has been inadvertently made accessible to the public on GitLab. Nothing so unusual about that you might think. However, the information concerned included source code, credentials and secret keys for various projects.
What is .NET 5? What You Need to Know Before the Release
Microsoft’s .NET 5 is due for release on 10 November 2020 and has some major changes that can significantly impact your organization. You’ll have to migrate to .
Regular Expressions Cookbook, 2nd Edition by Steven Levithan, Jan Goyvaerts
To make VAT numbers easier to read for humans, people often type them in with extra punctuation to split the digits into groups. For instance, a German customer might enter his VAT number DE123456789 as DE 123.456.789.
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. ...
Taking browser screenshots with javascript? Yes, it is possible.
With HTML2CANVAS
From Native to Flutter to Web
Hillel Coren explains he went from native mobile apps, to flutter apps and back to web app (using flutter). Useful tips here. Original article at https://hillel.dev/2020/02/27/flutter-web-things-to-know/ Source at https://github.com/invoiceninja/flutter-client
Top Flutter Tips and Tricks
Programmers: experienced versus beginners
How to use an old iPad as a secondary screen for Windows 10
I have an old iPad 2 lying around. This iPad is getting useless as time goes by, and my 2 monitor setup at home is, sometimes, just not enough. Recently i've found a handy piece of software called Wired XDisplay. The setup is pretty straightforward: Install XDisplay...
Forms in Flutter beta 2 – important limitations
After trying to get Flutter forms to work, mixed with learning Dart and all the Flutter's intricacies, i came to the conclusion that Form support in Flutter is, at best, sub-par. Namely, there seems to be no support to sequence the inputs (e.g. when you insert text in...
Installing .net core runtime 2.0 on CentOS (or RHEL) + Apache reverse proxy for Kestrel asp.net systemd quick start
CentOS 7.x is required, this won't work older versions. First, enable the dotnet repository for yum: yum install centos-release-dotnet Next, install the runtime package: yum info rh-dontnet20 rh-dotnet20-runtime The following packages will be installed:...
Display all glyphs in a WOFF, TTF or OpenType font
Very useful online tool i've found: http://torinak.com/font/lsfont.html - it displays all the font glyphs in a nice, convenient, table.
Meltdown and Spectre in 15 minutes (or less)
Explained by the folks at Computherphile, in some detail in less than 15 minutes. https://www.youtube.com/watch?v=I5mRwzVvFGE&t=297s
ISO 8601 Week number in PHP, MySQL and MSSQL
The following methods calculate the ISO 8601 Week number in PHP, MySQL and Microsoft SQL Server, with the same exact results. All the examples below are using the same week criteria: week stars on Monday. MySQL is easy, as it supports this directly: SELECT...
Centos 6, running PHP7 alongside stock PHP5
I have a couple of servers running PHP 5.x.x on CentOS 6 and i want to migrate some to PHP7, without worrying about the older stuff. So, i could compile PHP7 from source, setup FPM and Opcache for it, etc, etc, but i found out that REMI as a solution for this...
One Keyboard+Mouse, multiple computers, the Microsoft way
From Microsoft Garage, the new "Mouse without Borders" - it supports also keyboard, clipboard and file drag and drop. Its an alternative to Synergy, Input Director and similar solutions. I'll give it a try later. Download it here.
Setup Lighthouse, CentOS, 3 simple steps
Lighthouse analyzes web apps and web pages, collecting modern performance metrics and insights on developer best practices. Here is a simple 3 step setup guide for CentOS: Setup the EPEL yum repository install nodejs and npm using YUM Run npm install -g lighthouse And...
MySQL replication: How to recover from “Event too small corruption” or “Slave SQL: Relay log read failure”
The basic principle is, just restart where the slave left off. The problem arises if a binary log, on the slave side, remains corrupt. The recovery is relatively simple, just follow the recipe: STOP SLAVE SHOW SLAVE STATUS Note down 'Relay_Master_Log_File' and...
SystemD quick cheat sheet
A small collection of Systemd commands, along with the Sysvinit counterparts. Sysvinit Command Systemd Command Notes service frobozz start systemctl start frobozz Used to start a service (not reboot persistent) service frobozz stop systemctl stop frobozz Used to stop...