Skip to main content

Posts

Showing posts from February, 2023

Join us for Hack Together: Microsoft Graph and .NET

Join us for Hack Together, our virtual hackathon to learn how to build powerful apps with Microsoft Graph and .NET and win exciting prizes . If you’re a beginning coder, a student, or an expert looking for an opportunity to learn a new skill, don’t miss this opportunity! Hack Together is a virtual hackathon to get started building apps with Microsoft Graph and .NET . In this hackathon, you will kick-start learning how to build apps with Microsoft Graph – the API to access data and insights from Microsoft 365, and develop apps based on some of the most popular Microsoft Graph scenarios. You’ll also have a chance to win exciting prizes and meet Microsoft Graph and .NET Product Group Leaders, Cloud Advocates, MVPs and Student Ambassadors. Hack Together will run online from March 1-15, 2023. Hear from our speakers – why you should join us. Register today ! Why join Hack Together and add Microsoft Graph to your skillset? Millions of people across the globe use Microsoft apps in their

Sentence Similarity in ML.NET Model Builder

ML.NET is an open-source, cross-platform machine learning framework for .NET developers that enables integration of custom machine learning models into .NET apps. A new version of Model Builder is now released! What’s new? The following are highlights from this release. You can find a list of all the changes in the Model Builder release notes . To get started with these new features, install or upgrade to the latest versions Model Builder 16.14.4 or later. Sentence Similarity in Model Builder Sentence similarity is a task that compares how similar two texts are to each other. A common use case for sentence similarity is information retrieval. For example, give a search query, return the most similar (relevant) documents. A few months ago we released a preview of the Sentence Similarity API which enables you to train a custom sentence similarity machine learning model using your own data. It does so by integrating a TorchSharp implementation of NAS-BERT into ML.NET. This i

AlphaZero from Scratch – Machine Learning Tutorial

Curriculum for the course AlphaZero from Scratch – Machine Learning Tutorial In this machine learning course, you will learn how to build AlphaZero from scratch. AlphaZero is a game-playing algorithm that uses artificial intelligence and machine learning techniques to learn how to play board games at a superhuman level. 🔗 Trained Models + Code for each Chapter: https://github.com/foersterrobert/AlphaZeroFromScratch 🔗 AlphaZero-Paper: https://arxiv.org/pdf/1712.01815.pdf ✏️ Robert Förster created this course. Website: https://robertfoerster.com/ ⭐️ Contents ⭐️ ⌨️ (0:00:00) Introduction ⌨️ (0:01:35) Overview – Part 1 ⌨️ (0:05:43) MCTS-Explained ⌨️ (0:27:03) AlphaMCTS-Explained ⌨️ (0:39:05) Overview – Part 2 ⌨️ (0:45:14) Chapter 1: TicTacToe ⌨️ (1:00:32) Chapter 2: MCTS ⌨️ (1:34:54) Chapter 3: Model ⌨️ (2:03:09) Chapter 4: AlphaMCTS ⌨️ (2:16:39) Chapter 5: AlphaSelfPlay ⌨️ (2:35:13) Chapter 6: AlphaTrain ⌨️ (2:47:15) Chapter 7: AlphaTweaks ⌨️ (3:08:18) Chapter 8: ConnectFour ⌨️

Introducing F# Inline Type & Parameter Name Hints in Visual Studio

We are constantly working on improving the F# editor experience in the Visual Studio and now we are launching a highly requested features, Hinting. Hints for F# mean that you will no longer have to hover to get information when coding, check it out: https://devblogs.microsoft.com/dotnet/wp-content/uploads/sites/10/2023/02/hints-demo-1.mp4 Code type Song = { Artist: string Title: string } let whoSings song = song.Artist let artist = whoSings { Artist = "Arcade Fire"; Title = "Wake up" } Overview We currently support two kinds of hints: inline type hints and inline parameter name hints. Both are useful when the names of identifiers in code aren’t intuitive. With hints, you won’t need to hover over them and will see the necessary info right away. Hints are available for the majority of the F# features, including tuples and type constructors: Code type Song = { Artist: string Title: string } type Playlist(songs) = member this.Add(ar

Introducing F# Inline Type & Parameter Name Hints in Visual Studio

We are constantly working on improving the F# editor experience in the Visual Studio and now we are launching a highly requested features, Hinting. Hints for F# mean that you will no longer have to hover to get information when coding, check it out: https://devblogs.microsoft.com/dotnet/wp-content/uploads/sites/10/2023/02/hints-demo-1.mp4 Code type Song = { Artist: string Title: string } let whoSings song = song.Artist let artist = whoSings { Artist = "Arcade Fire"; Title = "Wake up" } Overview We currently support two kinds of hints: inline type hints and inline parameter name hints. Both are useful when the names of identifiers in code aren’t intuitive. With hints, you won’t need to hover over them and will see the necessary info right away. Hints are available for the majority of the F# features, including tuples and type constructors: Code type Song = { Artist: string Title: string } type Playlist(songs) = member this.Add(ar

Enjoy Your Hard Drives! (Computer Basics)

Curriculum for the course Enjoy Your Hard Drives! (Computer Basics) Learn more about computer basics in this course: https://www.youtube.com/watch?v=y2kg3MOk1sY Watch Online Full Course: Enjoy Your Hard Drives! (Computer Basics) Click Here to watch on Youtube: Enjoy Your Hard Drives! (Computer Basics) This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always. Udemy Enjoy Your Hard Drives! (Computer Basics) courses free download, Plurasight Enjoy Your Hard Drives! (Computer Basics) courses free download, Linda Enjoy Your Hard Drives! (Computer Basics) courses free download, Coursera Enjoy Your Hard Drives! (Computer Basics) course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Updated Modern Code Generation for WinForm’s InitializeComponent

When you create a WinForms Form or User Control with the WinForms Designer in Visual Studio, it does not have a special definition or file format like XML or HTML to represent the user interface. From the beginning, the only format WinForms has used is program code. A Form or User Control defined in a WinForms Visual Basic project gets saved into VB Code. In a C# project, that is C# code. That code will be placed in a dedicated Designer file, which sits behind the actual Form code file and contains the code to control the UI. When your Form or User Control needs to be opened again inside of the WinForms Designer, that code is interpreted and – based on the resulting object graph – the Form/User Control gets recreated in the Designer. That is the reason we call the process of saving a Form CodeDOM serialization . CodeDOM here refers to an object model (the Code D ocument O bject M odel ) which allows the developer to define aspects of a program or part of a program by objects of cert

Introduction to Linux – Full Course for Beginners

Curriculum for the course Introduction to Linux – Full Course for Beginners In this machine learning course, you will learn how to build AlphaZero from scratch. AlphaZero is a game-playing algorithm that uses artificial intelligence and machine learning techniques to learn how to play board games at a superhuman level. 🔗 Trained Models + Code for each Chapter: https://github.com/foersterrobert/AlphaZeroFromScratch 🔗 AlphaZero-Paper: https://arxiv.org/pdf/1712.01815.pdf ✏️ Robert Förster created this course. Website: https://robertfoerster.com/ ⭐️ TimeStamps ⭐️ ⌨️ (0:00:00) Introduction ⌨️ (0:01:35) Overview – Part 1 ⌨️ (0:05:43) MCTS-Explained ⌨️ (0:27:03) AlphaMCTS-Explained ⌨️ (0:39:05) Overview – Part 2 ⌨️ (0:45:14) Chapter 1: TicTacToe ⌨️ (1:00:32) Chapter 2: MCTS ⌨️ (1:34:54) Chapter 3: Model ⌨️ (2:03:09) Chapter 4: AlphaMCTS ⌨️ (2:16:39) Chapter 5: AlphaSelfPlay ⌨️ (2:35:13) Chapter 6: AlphaTrain ⌨️ (2:47:15) Chapter 7: AlphaTweaks ⌨️ (3:08:18) Chapter 8: ConnectFour ⌨️

EF Core 8 Preview 1: Raw, lazy, and on-time

The first preview of Entity Framework Core (EF Core) 8 is available on NuGet today ! Basic information EF Core 8, or just EF8, is the successor to EF Core 7, and is scheduled for release in November 2023, at the same time as .NET 8. EF8 currently targets .NET 6. This will likely be updated to .NET 8 as we near release. EF8 will align with .NET 8 as a long-term support (LTS) release. See the .NET support policy for more information. EF8 themes Before looking at the new features in preview 1, let’s take a quick look at the plan for large investments in data access for .NET 8. These investments are covered by five themes: Highly requested features JSON columns Build on EF7 JSON support to further power the document/relational hybrid pattern. Value objects Applications can use DDD-style value objects in EF models. SQL queries for unmapped types Applications can execute more types of SQL query without dropping down to ADO.NET or using third-party libraries. Cloud native and

HTML & Coding Introduction – Course for Beginners

Curriculum for the course HTML & Coding Introduction – Course for Beginners Learn the basics of HTML and how to begin coding in this course for beginners. Are you interested in coding but have never tried it before? Are you curious about how to create your own website or app? If so, then this video course is for you! ✏️ Course developed by @AniaKubow 🔗 Full course: http://codewithania.com/ ⭐️ Contents ⭐️ ⌨️ (0:00:00) Introduction ⌨️ (0:01:34) What is a code editor? ⌨️ (0:03:08) Code editor options ⌨️ (0:03:52) Files files files ⌨️ (0:07:27) HTML Introduction ⌨️ (0:09:27) HTML - what is it exactly? ⌨️ (0:11:53) HTML Syntax ⌨️ (0:17:08) Saving files in your code editor ⌨️ (0:18:19) HTML Anatomy ⌨️ (0:22:50) Headings ⌨️ (0:24:49) Paragraphs ⌨️ (0:26:04) HTML headings, paragraphs and emphasis ⌨️ (0:32:20) Indenting code in HTML ⌨️ (0:34:03) HTML lists ⌨️ (0:38:54) HTML links ⌨️ (0:43:49) Navigating Pages ⌨️ (0:51:20) Images in HTML ⌨️ (0:55:15) Creating tables using HTML ⌨️ (1

Web Development with Python Tutorial – Flask & Dynamic Database-Driven Web Apps

Curriculum for the course Web Development with Python Tutorial – Flask & Dynamic Database-Driven Web Apps Learn how to develop Dynamic Database-Driven Web Apps with Python, Flask, and MySQL. This course is broken up into two parts. In part one, you will learn how to build and deploy a site using the Flask Python web framework. In part two, you will connect the Flask application from the first part to a cloud MySQL database and learn how to deploy a production-ready database-driven web application. ✏️ Aakash N S created this course. 🔗 Submit your project & earn a certificate: https://jovian.com/learn/web-development-with-python-and-flask 🔗 Check out Jovian’s YouTube channel: https://youtube.com/@jovianhq Notes & references links: 🔗 Part 1: https://jovian.com/aakashns/web-development-with-python 🔗 Part 2: https://jovian.com/aakashns/database-driven-web-applications ⭐️ Contents ⭐️ Part 1 ⌨️ (0:00:00) Introduction ⌨️ (0:02:07) 1.1 Project Setup & Flask Basics ⌨️

Upgrading your .NET projects with Visual Studio

Now you can upgrade any .NET application to the latest version of .NET inside of Visual Studio! We are happy to introduce it as a Visual Studio extension and will upgrade your .NET Framework or .NET Core web- and desktop apps. Some project types are in development and coming soon, see the details below. Get Upgrade Assistant VS extension Why upgrade and to what version? If your applications are built for .NET Framework or .NET Core, now is a great time to upgrade them to .NET 6 (Long Term Support version) or .NET 7 (Standard Term Support version) that have much better performance and give you access to the latest features and capabilities. There have been huge improvements between .NET Framework and the latest .NET, but even if you’re targeting .NET Core 3.1 or earlier, it has reached the end of support in December 2022. We recommend to port to .NET 6 or .NET 7! Between those two, .NET 6 has longer support time and .NET 7 is the latest, so has newer features. We release a new

Improvements to .NET Framework updates for Windows 11, version 22H2

Fewer reboots, more secure Windows feature updates, and more control over preview .NET Framework updates. This post amplifies the announcement made on the Windows IT Pro blog  to our .NET Blog developer and IT Pro audience.    We are excited to announce two new features that will greatly improve the .NET Framework update experience for customers  on Windows 11, version 22H2 . You r device will experience fewer reboot s , and you will have more control over  optional .NET Framework updates.     Experience fewer reboots when moving to Windows 11, version 22H2  We’ve integrated .NET Framework updates into the Unified Update Platform or UUP-based feature update. Moving to Windows 11, version 22H2 via Windows Update will now automatically help secure your device with the latest .NET Framework updates. You’ll now experience one less reboot! Moreover, enable Dynamic Update and experience this improvement of media-based feature updates.    Before this improvement, when y

.NET February 2023 Updates – .NET 7.0.3, .NET 6.0.14

Today, we are releasing the .NET February 2023 Updates . These updates contain security and non-security improvements. Your app may be vulnerable if you have not deployed a recent .NET update. You can download 7.0.3 and 6.0.14 versions for Windows, macOS, and Linux, for x86, x64, Arm32, and Arm64. Installers and binaries: 7.0.3 | 6.0.14 Release notes: 7.0.3 | 6.0.14 | Container images Linux packages: 7.0.3 | 6.0.14 Release feedback/issue Known issues: 7.0 | 6.0 Windows Package Manager CLI (winget) You can now install .NET updates using the Windows Package Manager CLI (winget): To install the .NET 7 runtime: winget install dotnet-runtime-7 To install the .NET 7 SDK: winget install dotnet-sdk-7 To update an existing installation: winget upgrade See Install with Windows Package Manager (winget) for more information. Improvements ASP.NET Core: 7.0.3 | 6.0.14 Entity Framework Core: 7.0.3 Linker: 7.0.3 Runtime: 7.0.3 | 6.0.14 SDK: 7.0.3 Windows Forms

Animated Physics Game with JavaScript - Tutorial

Curriculum for the course Animated Physics Game with JavaScript - Tutorial Learn how to code a JavaScript Game featuring interesting physics and AI mechanics. What makes a great game? Is it about beautiful, polished visuals or about gameplay that feels good and responsive? Is it about unique ideas, or maybe it's the little details, special secrets and Easter eggs? What are the ingredients in a perfect game development recipe? Let's explore fantasy mushroom forest theme and learn all the techniques you need to make your own 2D games with vanilla JavaScript, HTML5, CSS3 and HTML Canvas. ✏️ Course created by @Frankslaboratory ⭐️ Assets ⭐️ All project images: https://www.frankslaboratory.co.uk/downloads/109/all_project_images.zip Background: https://www.frankslaboratory.co.uk/downloads/109/background.png Overlay: https://www.frankslaboratory.co.uk/downloads/109/overlay.png Player: https://www.frankslaboratory.co.uk/downloads/109/bull.png Egg: https://www.frankslaboratory.c