惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 朱永光

Dapr云原生应用开发系列6:绑定构建块 Dapr云原生应用开发系列7:工作流集成 Dapr微服务应用开发系列5:发布订阅构建块 Dapr微服务应用开发系列4:状态管理构件块 Dapr微服务应用开发系列3:服务调用构件块 Dapr微服务应用开发系列2:Hello World与SDK初接触 Dapr微服务应用开发系列1:环境配置 Dapr微服务应用开发系列0:概述 利用Azure Functions和k8s构建Serverless计算平台 我如何通过K8S开发认证(CKAD)考试 对Windows桌面应用程序进行UI自动化测试 Service Fabric是什么? 如何把遗留的Java应用托管在Service Fabric中 如何在本地数据中心安装Service Fabric for Windows集群 当TFS/VSTS遇上Power BI .NET英文技术文章导读(2017-03-23) Power BI入门教程 数据分析师的福音——VS 2017带来一体化的数据分析开发环境 如何把Power BI嵌入到Web应用中
.NET英文技术文章导读(2017-02-09)
朱永光 · 2017-02-09 · via 博客园 - 朱永光

关键字:Docker、.NET Core、Apache、ASP.NET Core、Logic App、C#7、.NET Standard

使用Docker和.NET Core构建DockNetFiddle

作者:Daniel Jimenez Garcia

链接:http://www.dotnetcurry.com/windows-azure/1339/docknetfiddle-using-docker-dotnet-core

点评:这篇文章分享了作者在使用Docker和.NET Core开发一个dotNetFiddle克隆项目的经验之谈,图文并茂,脚本代码一应俱全。不失为很好的Docker开发的入门教程。

开发人员对Docker无感的10个神话

作者:derick bailey

链接:https://derickbailey.com/2017/01/30/10-myths-about-docker-that-stop-developers-cold/

点评:作者列举了10个开发人员不原因使用Docker的神话(其实就是使用痛点),并给出了相应的解决方案。比如不能使用IDE的调试器这类的问题。

使用Apache来构建和部署ASP.NET Core应用程序

作者:Jeffrey T. Fritz

链接:https://www.codeproject.com/Articles/1168100/Build-and-Deploy-Your-ASP-NET-Core-Application

点评:通过使用自服务的运行模式并发布为自包含的应用程序包,就可以把ASP.NET Core部署到任何Web Server中,比如Apache。

从HTML表单中调用Logic App

作者:Jeff Hollan [MSFT]

链接:https://blogs.msdn.microsoft.com/logicapps/2017/01/30/calling-a-logic-app-from-an-html-form/

点评:Logic App是Azure App Service中提供的处理流程应用的特性,由于提供了标准的REST接口,所以可以从一个纯粹的HTML表单中直接调用运行其中的流程。

C#7新特性:本地函数

作者:Jeff Yates

链接:http://blog.somewhatabstract.com/2017/01/30/c7-local-functions/

点评:本地函数从字面上可以理解为就是在函数内部直接写另外一个函数供内部调用。可以让代码变得清晰的同时,不必写更多的标准函数出来。

在.NET平台和.NET Standard间共享代码

作者:Jonathan Mezach

链接:https://blogs.infosupport.com/sharing-code-across-net-platforms-with-net-standard/

点评:之前我也有这么的实践,可惜还没有来得及分享,已经有老外写了一篇很详细的向导了。