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

推荐订阅源

S
Schneier on Security
F
Fortinet All Blogs
B
Blog
GbyAI
GbyAI
P
Proofpoint News Feed
量子位
The Register - Security
The Register - Security
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
B
Blog RSS Feed
WordPress大学
WordPress大学
Recorded Future
Recorded Future
Recent Announcements
Recent Announcements
V
Vulnerabilities – Threatpost
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Secure Thoughts
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Webroot Blog
Webroot Blog
AWS News Blog
AWS News Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
The GitHub Blog
The GitHub Blog
爱范儿
爱范儿
O
OpenAI News
月光博客
月光博客
H
Hacker News: Front Page
S
Security Affairs
W
WeLiveSecurity
The Hacker News
The Hacker News
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Help Net Security
Help Net Security
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
T
The Blog of Author Tim Ferriss
Spread Privacy
Spread Privacy
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
S
Securelist
Microsoft Azure Blog
Microsoft Azure Blog
TaoSecurity Blog
TaoSecurity Blog
T
Threat Research - Cisco Blogs
M
MIT News - Artificial intelligence
A
About on SuperTechFans

博客园 - 朱永光

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/

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