dotNET Weekly
Add a link
LoginRegister
PrevSeptember 2018Next
WSMTWTFS
352627282930311
362345678
379101112131415
3816171819202122
3923242526272829
4030123456

Want to receive every Tuesday the best .NET links?

Once subscribed you can login, submit a link and receive the weekly newsletter.

Join more than 4847 .NET professionals!

Connect to Microsoft SQL server from Node

by bill-s, 2018-09-04T02:48:00.074Z

Yes, it’s possible to connect to Microsoft SQL Server from Node JS, even on a Mac OSX environment.

node.jssql-server

Calling REST API Service From SQL Server Using C# SQL CLR

by sai.koona, 2018-09-03T13:55:34.374Z

Fulfilling a requirement where we need to get a data from other sources (REST-based Web Service) and sync with on-premises (local) database. This should be done using a SQL Server Stored Procedure.

.netc#sql-server

Continuous deployment to Azure in Visual Studio Team Service

by ThomasArdal, 2018-09-04T04:49:33.787Z

Tutorial on setting up continuous deployment from Visual Studio Team Services to an Azure website. The post shows how to utilize VSTS release management.

.netvisual-studioazure

Deep-dive into .NET Core primitives, part 2: the shared framework

by bill-s, 2018-08-31T03:06:51.895Z

Shared frameworks have been an essential part of .NET Core since 1.0. ASP.NET Core shipped as a shared framework for the first time in 2.1. You may not have noticed if things are working smoothly, but there have been some bumps and ongoing discussion about its design. In this post, I will dive deep into the shared frameworks and talk about some common developer pitfalls.

.net-core

Fuzzing the .NET JIT Compiler

by bill-s, 2018-09-04T02:58:20.781Z

But before we dive into ‘Fuzzlyn’ and what it does, we’re going to take a quick look at ‘compilation’ in the .NET Framework. When you write C#/VB.NET/F# code (delete as appropriate) and compile it, the compiler converts it into Intermediate Language (IL) code. The IL is then stored in a .exe or .dll, which the Common Language Runtime (CLR) reads and executes when your program is actually run. However it’s the job of the Just-in-Time (JIT) Compiler to convert the IL code into machine code.

.net

Getting Started with Machine Learning using TensorFlow and Docker

by bill-s, 2018-09-04T02:46:47.367Z

Machine Learning (ML) gets a lot of press now days and for good reason. It can be used to gain insight into areas that were difficult to tap into even a few years ago. Want to know what type of object is shown in a picture? Machine learning can tell you. Need help predicting the next big stock to buy based on historical trends? Machine learning can help out there as well. The sky is the limit! Machine Learning (and more specifically a technique for implementing it called Deep Learning (DL)) can help analyze financial information, filter spam, examine healthcare records, assess security exploits, perform face recognition, enable driver-less cars, and much more. It’s one of the key drivers moving artificial intelligence (AI) forward.

machine-learning

.NET Framework August 2018 Preview of Quality Rollup

by bill-s, 2018-09-04T02:43:16.758Z

This release contains the following quality and reliability improvements.

.net

Reviewing FASTER: Digging into the C++ impl

by bill-s, 2018-09-04T02:45:05.713Z

After going over the paper and the managed implementation, I’m ready to start with the C++ implementation. I have higher hopes for this code. As I started browsing the C++ code, it occurred to me that the way the C#’s implementation handles dynamic code generation is pretty much how templates in C++ work. I wonder if this was the trigger for that.

performance

Running smoke tests for ASP.NET Core apps in CI using Docker

by bill-s, 2018-08-31T03:08:38.736Z

In this post I'll discuss a technique I use occasionally to ensure that an ASP.NET Core app is able to start correctly, as part of a continuous integration (CI) build pipeline. These "smoke tests" provide an initial indication that there may be something wrong with the build, which may not be caught by other tests.

asp.net-core

NewslettersAboutPrivacy Policy