05 2020 档案

摘要:Add or Remove Allowed Apps through Windows Firewall in Windows 10 Starting with Windows 10 build 16193, Windows Firewall has been renamed to Windows D 阅读全文
posted @ 2020-05-28 13:23 ChuckLu 阅读(428) 评论(0) 推荐(0) 编辑
摘要:Subquery using Exists 1 or Exists * 回答1 No, SQL Server is smart and knows it is being used for an EXISTS, and returns NO DATA to the system. Quoth Mic 阅读全文
posted @ 2020-05-27 14:50 ChuckLu 阅读(229) 评论(0) 推荐(0) 编辑
摘要:NOT IN vs. NOT EXISTS vs. LEFT JOIN / IS NULL: SQL Server NOT IN ? 1 2 3 4 5 6 7 SELECT l.id, l.value FROM [20090915_anti].t_left l WHERE l.value NOT 阅读全文
posted @ 2020-05-27 14:35 ChuckLu 阅读(277) 评论(0) 推荐(0) 编辑
摘要:Can I disable git pull? I guess the problems you refer to are merge conflicts that may happen if your local branch diverged from the remote. In that c 阅读全文
posted @ 2020-05-26 13:57 ChuckLu 阅读(293) 评论(0) 推荐(0) 编辑
摘要:https://github.com/tonyqus/npoi/commit/9f402aa5f0ee0fc7d77002c9d39d3a84d90a9ecb https://docs.microsoft.com/en-us/dotnet/api/system.xml.xmlreadersettin 阅读全文
posted @ 2020-05-25 19:03 ChuckLu 阅读(159) 评论(0) 推荐(0) 编辑
摘要:Subquery may return more than one row. A subquery can only be scalar, meaning that it can return just one value. Even if you correctly place just one 阅读全文
posted @ 2020-05-25 14:04 ChuckLu 阅读(625) 评论(0) 推荐(0) 编辑
摘要:http://qinghua.github.io/ddd/#%E8%81%9A%E5%90%88%EF%BC%88Aggregate%EF%BC%89 简介 什么是领域 《领域驱动设计》书里写的是:用户会把软件程序应用于某个主体区域,这个区域就是软件的领域。简单来说,就认为是公司的某块业务好了。如果 阅读全文
posted @ 2020-05-21 14:30 ChuckLu 阅读(375) 评论(0) 推荐(0) 编辑
摘要:How do I exit telnet? you have to press Ctrl + ] and only then when telnet> prompt appears enter quit. https://superuser.com/questions/486496/how-do-i 阅读全文
posted @ 2020-05-21 10:58 ChuckLu 阅读(616) 评论(0) 推荐(0) 编辑
摘要:<form method="post" > <input type="hidden" name="provider" value="OpenIdConnect" /> <input type="submit" class="btn btn-primary" value="Sign in with M 阅读全文
posted @ 2020-05-20 18:54 ChuckLu 阅读(259) 评论(0) 推荐(0) 编辑
摘要:https://webpack.js.org/concepts/ At its core, webpack is a static module bundler for modern JavaScript applications. When webpack processes your appli 阅读全文
posted @ 2020-05-19 21:02 ChuckLu 阅读(114) 评论(0) 推荐(0) 编辑
摘要:https://docs.npmjs.com/configuring-npm/folders.html npm puts various things on your computer. That’s its job. This document will tell you what it puts 阅读全文
posted @ 2020-05-19 16:18 ChuckLu 阅读(176) 评论(0) 推荐(0) 编辑
摘要:PS D:\Edenred\UK\UK60\Connect_Incentive_Frontend\vueSrc> node-nightly --inspect-brk .\build\build.jsDebugger listening on ws://127.0.0.1:9229/e17f06ca 阅读全文
posted @ 2020-05-19 13:29 ChuckLu 阅读(3768) 评论(1) 推荐(0) 编辑
摘要:https://webpack.js.org/contribute/debugging/ https://medium.com/webpack/webpack-bits-learn-and-debug-webpack-with-chrome-dev-tools-da1c5b19554 node-ni 阅读全文
posted @ 2020-05-19 11:36 ChuckLu 阅读(267) 评论(0) 推荐(0) 编辑
摘要:> node-nightly --inspect --debug-brk build/build.js Downloading the nightly version, hang on...FetchError: request to https://nodejs.org/download/nigh 阅读全文
posted @ 2020-05-19 10:41 ChuckLu 阅读(4836) 评论(0) 推荐(0) 编辑
摘要:npm-package.json Specifics of npm's package.json handling DESCRIPTION§ This document is all you need to know about what’s required in your package.jso 阅读全文
posted @ 2020-05-18 16:49 ChuckLu 阅读(222) 评论(0) 推荐(0) 编辑
摘要:What is the difference between npm install and npm run build? 回答1 npm install installs dependencies into the node_modules/ directory, for the node pro 阅读全文
posted @ 2020-05-18 16:46 ChuckLu 阅读(274) 评论(0) 推荐(0) 编辑
摘要::checked Selector checked selector Description: Matches all elements that are checked or selected. version added: 1.0jQuery( ":checked" ) The :checked 阅读全文
posted @ 2020-05-18 16:08 ChuckLu 阅读(121) 评论(0) 推荐(0) 编辑
摘要:Attribute Equals Selector [name=”value”] attributeEquals selector Description: Selects elements that have the specified attribute with a value exactly 阅读全文
posted @ 2020-05-18 15:45 ChuckLu 阅读(176) 评论(0) 推荐(0) 编辑
摘要:事件总线知多少(1) 总结出以下几条: 事件总线维护一个事件源与事件处理的映射字典; 通过单例模式,确保事件总线的唯一入口; 利用反射完成事件源与事件处理的初始化绑定; 提供统一的事件注册、取消注册和触发接口。 eShopOnContainers 知多少[5]:EventBus With Rabbi 阅读全文
posted @ 2020-05-14 18:41 ChuckLu 阅读(206) 评论(0) 推荐(0) 编辑
摘要:Explanation of the UML arrows https://www.cnblogs.com/chucklu/p/10623671.html 想要学习设计模式,你得先会看类图,一张图读懂UML 虚线箭头指向依赖dependency; 实线箭头指向关联associate; 虚线三角指向接 阅读全文
posted @ 2020-05-14 16:33 ChuckLu 阅读(350) 评论(0) 推荐(0) 编辑
摘要:DDD理论学习系列——案例及目录 UnitOfWork知多少 『设计模式』之小试牛刀 事件总线知多少(1) 阅读全文
posted @ 2020-05-14 16:30 ChuckLu 阅读(142) 评论(0) 推荐(0) 编辑
摘要:https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019 MSBuild projects that use the standard build process (importin 阅读全文
posted @ 2020-05-13 14:20 ChuckLu 阅读(320) 评论(0) 推荐(0) 编辑
摘要:WaitAll vs WhenAll 回答1 Task.WaitAll blocks the current thread until everything has completed. Task.WhenAll returns a task which represents the action 阅读全文
posted @ 2020-05-12 16:51 ChuckLu 阅读(289) 评论(0) 推荐(0) 编辑
摘要:When does a C# Task actually start? Calling an async method returns a hot task, a task that has already been started. So there is no actual code neces 阅读全文
posted @ 2020-05-12 16:08 ChuckLu 阅读(156) 评论(0) 推荐(0) 编辑
摘要:What are 'closures' in .NET? I have an article on this very topic. (It has lots of examples.) In essence, a closure is a block of code which can be ex 阅读全文
posted @ 2020-05-12 14:46 ChuckLu 阅读(131) 评论(0) 推荐(0) 编辑
摘要:经过测试发现,多线程操作都是安全的。甚至包括在遍历的时候,进行删除操作 https://github.com/ChuckTest/ConcurrentTest class Program { private static readonly ConcurrentDictionary<int, int> 阅读全文
posted @ 2020-05-11 19:15 ChuckLu 阅读(254) 评论(0) 推荐(0) 编辑
摘要:When Iterating Over ConcurrentDictionary and only reading, is ConcurrentDictionary locked? https://referencesource.microsoft.com/#mscorlib/system/Coll 阅读全文
posted @ 2020-05-11 14:11 ChuckLu 阅读(680) 评论(0) 推荐(0) 编辑
摘要:ArrayList.Synchronized Method Returns a list wrapper that is synchronized (thread safe). The following code example shows how to lock the collection u 阅读全文
posted @ 2020-05-11 11:28 ChuckLu 阅读(222) 评论(0) 推荐(0) 编辑
摘要:Programmatically add an application to Windows Firewall 回答1 Not sure if this is the best way, but running netsh should work: netsh firewall add allowe 阅读全文
posted @ 2020-05-10 14:18 ChuckLu 阅读(215) 评论(0) 推荐(0) 编辑
摘要:Three keys to brilliant time management Plan: Understand the purpose of your task and set yourself meaningful goals. Prioritise: Categorise tasks acco 阅读全文
posted @ 2020-05-08 18:44 ChuckLu 阅读(919) 评论(0) 推荐(0) 编辑
摘要:1.put the file under %userprofile% .git_commit_template.txt [Fix] [Refactor] [Reformat] 2. git config --global commit.template ~/.git_commit_template. 阅读全文
posted @ 2020-05-08 16:39 ChuckLu 阅读(209) 评论(0) 推荐(0) 编辑
摘要:ls -d ~//c/Users/clu// ls -d ~/* 阅读全文
posted @ 2020-05-08 16:11 ChuckLu 阅读(1328) 评论(0) 推荐(0) 编辑
摘要:ConcurrentBag of strings and using .Contains in Parallel.ForEach The collection is threadsafe, as in "using it concurrently won't corrupt its state". 阅读全文
posted @ 2020-05-08 13:28 ChuckLu 阅读(187) 评论(0) 推荐(0) 编辑
摘要:cannot implicitly convert type 'bool?' to 'bool'. An explicit conversion exists (are you missing a cast?) As the others stated bool? is not equal to b 阅读全文
posted @ 2020-05-08 11:28 ChuckLu 阅读(915) 评论(0) 推荐(0) 编辑
摘要:git switch branch Git 2.23 came up with the new ‘ git switch ’ command, which is not a new feature but an additional command to ‘switch/change branch’ 阅读全文
posted @ 2020-05-07 14:30 ChuckLu 阅读(880) 评论(0) 推荐(0) 编辑
摘要:Reentrant mutex In computer science, the reentrant mutex (recursive mutex, recursive lock) is a particular type of mutual exclusion (mutex) device tha 阅读全文
posted @ 2020-05-07 13:02 ChuckLu 阅读(647) 评论(0) 推荐(0) 编辑
摘要:Reentrancy (computing) In computing, a computer program or subroutine is called reentrant if multiple invocations can safely run concurrently. The con 阅读全文
posted @ 2020-05-07 12:57 ChuckLu 阅读(286) 评论(0) 推荐(0) 编辑
摘要:Thread-safe List<T> property 回答1 If you are targetting .Net 4 there are a few options in System.Collections.Concurrent Namespace You could use Concurr 阅读全文
posted @ 2020-05-07 11:18 ChuckLu 阅读(295) 评论(0) 推荐(0) 编辑
摘要:The goal of this section is to introduce, discuss, and provide language specific mitigation techniques for HttpOnly. Who developed HttpOnly? When? Acc 阅读全文
posted @ 2020-05-06 15:06 ChuckLu 阅读(489) 评论(0) 推荐(0) 编辑
摘要:Linux/Unix man page syntax conventions In man pages I come across various syntaxes to write Linux/Unix commands, which include square brackets, angula 阅读全文
posted @ 2020-05-05 15:34 ChuckLu 阅读(599) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示