Machine Learning Crash Course With ML.NET
We will go over what machine learning is, what it can be used for and we will create a model using C# & ML.NET
Jon Wood YouTube Channel:
http://youtube.com/c/JonWood
Code:
https://github.com/jwood803/MLNet_CrashCourse/blob/master/MLNetCrashCourse/Program.cs
Data:
https://www.kaggle.com/camnugent/
New 35 Flutter Tips and Tricks
This is 35 Flutter tips and tricks that you must know. This list of tips is great for flutter beginners, advanced and pro developers. This is the new tips and tricks series from Flutter Mapp, in this on we show you 35 flutter ticks and tips that you can start to implement today. You will code apps f
ScaffoldMessenger (Widget of the Week)
Learn more about ScaffoldMessenger → https://goo.gle/3HYoySY
Ever have difficulties showing SnackBars to users while they navigate? If so, have no fear, ScaffoldMessenger is here!
This video is also subtitled in Chinese, Indonesian, Italian, Japanese, Korean, Portuguese, Spanish, Hindi, Ar
What’s New in Flutter 2.10
I can’t believe it’s time again for a Flutter stable release! Hello and welcome to Flutter 2.10. It has been less than two months since our last release, but even in that short time we’ve had 1,843 issues closed and 1,525 PRs merged from 155 contributors worldwide.
What’s New in Flutter 2.8
It’s that time of year in the northern hemisphere: the leaves are turning, the temperature is cooling and the final stable release of the year is here. Hello and welcome to Flutter 2.
responsive_scaffold : Flutter Package
View the online demo here! On mobile it shows a list and pushes to details and on tablet it shows the List and the selected item.
Microsoft shares Windows 11 TPM check bypass for unsupported PCs
Microsoft has published a new support webpage where they provide an official method to bypass the TPM 2.0 check and have Windows 11 installed on unsupported systems.
Linux losetup command
It is possible to specify transfer functions (for encryption/decryption or other purposes) using one of the -E and -e options. There are two mechanisms to specify the desired encryption: by number and by name.
What’s new in Flutter 2.5
Hello and welcome to Flutter 2.5! This is a big release, with the 2nd highest stats in the history of Flutter releases: 4600 issues closed and 3932 PRs merged from 252 contributors with 216 reviewers.
Restarting USB subsystem in CentOS
After a long uptime specific (cheap) devices or components connected to the USB ports lock up or malfunction. Unplugging and plugging them usually fixes issues, but physical access to the system (especially a remote server) is neither always possible or desirable.
.NET 5 REST API Tutorial – Build From Scratch With C#
Learn how to create a REST API end-to-end from scratch using the latest .NET 5 innovations and Visual Studio Code. The API will be written in C#.
💻 Get the code: https://youtube.dotnetmicroservices.com/net5restapi-10
✏️ Course developed by Julio Casal. Check out his channel: https://www.you
WJS
View original aricle @
Steps to configure port forwarding on windows using netsh
Webmasters can easily configure network port forwarding on Windows using netsh, without using any third-party tools. As a part of our Server Management Services, we help our Customers with Windows related requests regularly.
On Font Weight
On Font Weight 1. Example: Lucida Basic font weights. Lucida Basic font weight names combine traditional weight names with CSS font-weight numbers.
Migrate from ASP.NET Core 3.1 to 5.0
This article explains how to update an existing ASP.NET Core 3.1 project to ASP.NET Core 5.0. ASP.NET Core 5.0 is currently in preview.
Using Github Actions With Flutter
In this article, we will see how to use Github Actions which is a continuous integration and continuous delivery tool with a Flutter Application. Github Actions is an automation software that helps in continuous integration and continuous delivery.
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...