12 2018 档案
摘要:GETTING DDD STARTED SURROUNDED BY LEGACY SYSTEMS ByEric Evans
阅读全文
摘要:相关链接: Separation of Concerns 原文 The Art of Separation of Concerns Introduction In software engineering, Separation of Concerns refers to the delineati
阅读全文
摘要:原文 The Hollywood Principle states, “Don’t Call Us, We’ll Call You.” It’s closely related to the Dependency Inversion Principle, and illustrates a diff
阅读全文
摘要:Explicit Dependencies Principle The Explicit Dependencies Principle states: Methods and classes should explicitly require (typically through method pa
阅读全文
摘要:原文 The principle of Persistence Ignorance (PI) holds that classes modeling the business domain in a software application should not be impacted by how
阅读全文
摘要:MultipleCanonicalModels Scratch any large enterprise and you'll usually find some kind of group focused on enterprise-wide conceptual modeling. Most c
阅读全文
摘要:原文 BoundedContext Bounded Context is a central pattern in Domain-Driven Design. It is the focus of DDD's strategic design section which is all about d
阅读全文
摘要:Tight Coupling, Legos, and Super Glue
阅读全文
摘要:ASP.NET - 使用依赖关系注入在 ASP.NET Core 中编写干净代码
阅读全文
摘要:How to register a service with multiple interfaces in ASP.NET Core DI
阅读全文
摘要:ASP.NET Core Middleware
阅读全文
摘要:Configuration in ASP.NET Core App configuration in ASP.NET Core is based on key-value pairs established by configuration providers. Configuration prov
阅读全文
摘要:Options pattern in ASP.NET Core
阅读全文
摘要:原文 "If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." - Gerald We
阅读全文
摘要:The SOLID principles The SOLID principles of Object Oriented Design include these five principles: SRP – Single Responsibility Principle OCP – Open/Cl
阅读全文
摘要:New is Glue When you’re working in a strongly typed language like C# or Visual Basic, instantiating an object is done with the new keyword. It’s impor
阅读全文
摘要:Static Cling Sticking Your Code To Things Unnecessarily Static Cling is a code smell used to describe the undesirable coupling introduced by accessing
阅读全文
摘要:原文 github地址 ASP.NET Core supports the dependency injection (DI) software design pattern, which is a technique for achieving Inversion of Control (IoC)
阅读全文
摘要:Validator.destroy() Destroys this instance of validator freeing up resources and unregistering events. jQuery.validator.methods Object holding all val
阅读全文
摘要:原文 :unchecked Selector Selects all elements that are unchecked. jQuery( ":unchecked" ) Inversion of :checked. jQuery( ":unchecked" ) Inversion of :che
阅读全文
摘要:step method step method Makes the element require a given step. step( value ) value Type: Number Step value required step( value ) value Type: Number
阅读全文
摘要:原文 .validate() validate( [options ] ) options Type: Object debug (default: false) Type: Boolean Enables debug mode. If true, the form is not submitted
阅读全文
摘要:jQuery validator 主页 github地址 demo学习 效果: Validate forms like you've never validated before! 自定义Validate: doesn't jQuery make it easy to write your own
阅读全文
摘要:1.add method 2.validate事件绑定 3.调用 4.其他 相关html 相关js引用 C# 单个email的正则验证 参考资料: (multiple) emails in jQuery Validated text input example Javascript multiple
阅读全文
摘要:实体关系 本页展示了 AdWords 实体的关系图,其中的可点击图片可帮助您找到最合适的文档。 表示法图例 实体:链接到相关性最高的指南。 基数:允许的实例数量。例如,1..\* 表示允许一个或多个。这并不意味着最大数量存在任何上限。 对象/类:链接到最新的参考页。 实线框表示必要分组。例如,广告系
阅读全文
摘要:使用入门 AdWords API 可让应用直接与 AdWords 平台互动,大幅提高管理大型或复杂 AdWords 帐号和广告系列的效率。一些典型的用例包括: 自动帐号管理 自定义报告 基于产品目录的广告管理 基于业务数据的出价管理 您可以使用 AdWords API 来构建软件,在客户级至关键字级
阅读全文
摘要:部分失败 某些 AdWords 服务允许您请求执行有效操作,而对失败的操作返回错误。此功能(称为部分失败)允许您在结束时单独处理失败的操作。 技术细节 要使用此功能,您需要设置此可选的 SOAP 标头: <partialFailure>true</partialFailure> 该服务将执行没有错误
阅读全文
摘要:批处理 大多数服务都提供同步 API,要求您发出请求然后等待响应,但 BatchJobService 允许您对多项服务执行批量操作,而无需等待操作完成。 与各服务的特定 mutate 操作不同,BatchJobService 中的单个作业可以处理由广告系列、广告组、广告、条件、标签和 Feed 项组
阅读全文
摘要:速率限制 为了向遍布全球的 AdWords API 用户提供可靠的服务,我们使用令牌桶算法来衡量请求数并确定每秒查询数 (QPS) 速率。这样做的目的是阻止恶意的或不可控的软件大量入侵 AdWords API 服务器,影响其他用户。 例如,如果某个失控的客户端意外产生数以千计的线程来同时调用 AdW
阅读全文
摘要:最佳做法 本指南介绍了一些最佳做法,您可以运用它们来优化 AdWords API 应用的效率和性能。 日常维护 为确保您的应用不间断运行,可采取以下做法: 确保 AdWords API 中心中的开发者联系电子邮件是最新的,这是我们在与您联系时使用的别名。如果我们无法就 API 条款及条件的遵从事宜与
阅读全文
摘要:对象、方法和服务 AdWords API 主要供 AdWords 的高级用户使用。如果您是 AdWords 新手,或需要复习 AdWords 基本概念,请查看 AdWords 基础知识页面。 对象层级结构和范围 可以将每个 AdWords 帐号视为由多个对象组成的层级结构。 每个帐号下都有一个或多个
阅读全文
摘要:开发 相关知识: 单一归因与多重归因 当展示广告网络上发生一次展示时,您可按单一归因或多重归因记录对展示起到影响作用的条件。 单一归因 在使用单一归因时,系统只为指定的展示记录一个触发条件(如展示位置、年龄、关键字等)。展示可能是由多项条件触发的,但是在单一归因报告中,展示及其所有统计信息仅归因于单
阅读全文
摘要:介绍: 所有有关本地化的数据获取,都是从统一的一个资源文件中获取 1.创建虚拟类、资源文件,用于作为本地化数据的获取源 2.Configure localization:支持view、data annotation、mvc 3.Localization middleware: 默认排序为 可以更改顺
阅读全文
摘要:官网文档 nuget地址 创建资源文件 添加资源文件 实施策略 配置本地化 本地化中间件 使用 视图本地化 DataAnnotations 本地化 Make the app's content localizable
阅读全文
摘要:错误、警告的说明: 示例一: 严重性:警告 代码:MSB3106 说明 :程序集强名称“C:\Users\$(computerName)\.nuget\packages\$(packageName)\$(version)\lib\netstandard$(version)\$(componentNa
阅读全文
摘要:docker:负责image、container的管理 kubernetes负责service、deployment、pods、ingress的管理 docker history docker images docker image history
阅读全文
摘要:以管理员身份运行如下PowerShell命令,清除Skype for Business缓存记录 Skype for business-Screen sharing option not available
阅读全文
摘要:1.页面翻译 2.UI优化 vue.js reactive.js 3.Hadoop生态学习 Spark、Kafka、Druid……
阅读全文