04 2019 档案

摘要:geek.exe https://geekuninstaller.com/download Event log message indicates that the Windows Installer reconfigured all installed applications Product: 阅读全文
posted @ 2019-04-30 19:34 ChuckLu 阅读(717) 评论(0) 推荐(0) 编辑
摘要:EvansClassification In his excellent book Domain Driven Design, Eric Evans creates a classification of the different kinds of domain objects that you' 阅读全文
posted @ 2019-04-28 16:21 ChuckLu 阅读(211) 评论(0) 推荐(0) 编辑
摘要:Catalog of Patterns of Enterprise Application Architecture Last Significant Update: January 2003 A short summary of the patterns in Patterns of Enterp 阅读全文
posted @ 2019-04-28 15:58 ChuckLu 阅读(221) 评论(0) 推荐(0) 编辑
摘要:ValueObject When programming, I often find it's useful to represent things as a compound混合物. A 2D coordinate consists of an x value and y value. An am 阅读全文
posted @ 2019-04-28 15:56 ChuckLu 阅读(473) 评论(0) 推荐(0) 编辑
摘要:What is Data Transfer Object? A Data Transfer Object is an object that is used to encapsulate data, and send it from one subsystem of an application t 阅读全文
posted @ 2019-04-28 15:49 ChuckLu 阅读(481) 评论(0) 推荐(0) 编辑
摘要:ASP.NET validation controls validate the user input data to ensure that useless, unauthenticated, or contradictory data don't get stored. ASP.NET prov 阅读全文
posted @ 2019-04-28 15:13 ChuckLu 阅读(246) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/leezhxing/p/4333769.html https://devblogs.microsoft.com/oldnewthing/?p=31113 Aha, but you see, all this time diving into regul 阅读全文
posted @ 2019-04-26 18:12 ChuckLu 阅读(1213) 评论(0) 推荐(0) 编辑
摘要:https://docs.microsoft.com/en-us/dotnet/api/system.runtime.caching.memorycache?view=netframework-4.8 What's the difference between MemoryCache.Add and 阅读全文
posted @ 2019-04-25 11:28 ChuckLu 阅读(240) 评论(0) 推荐(0) 编辑
摘要:https://docs.microsoft.com/en-us/dotnet/api/system.web.ui.page.cache?view=netframework-4.8 Gets the Cache object associated with the application in wh 阅读全文
posted @ 2019-04-24 15:27 ChuckLu 阅读(206) 评论(0) 推荐(0) 编辑
摘要:https://stackoverflow.com/questions/9720143/asp-net-web-application-message-box Or create a method like this in your solution: public static class Mes 阅读全文
posted @ 2019-04-24 10:38 ChuckLu 阅读(935) 评论(0) 推荐(0) 编辑
摘要:https://www.codeproject.com/Questions/56736/How-to-use-Server-Transfer-from-Ajax-UpdatePanel For Server.Transfer to work with UpdatePanel. for getting 阅读全文
posted @ 2019-04-23 18:35 ChuckLu 阅读(337) 评论(0) 推荐(0) 编辑
摘要:https://www.codeproject.com/Articles/775221/Server-Transfer-VS-Response-Redirect-Simplified Introduction In ASP.NET, some of the concepts do the same 阅读全文
posted @ 2019-04-23 17:35 ChuckLu 阅读(261) 评论(0) 推荐(0) 编辑
摘要:https://docs.microsoft.com/en-us/windows/desktop/intl/code-pages Most applications written today handle character data primarily as Unicode, using the 阅读全文
posted @ 2019-04-23 14:00 ChuckLu 阅读(314) 评论(0) 推荐(0) 编辑
摘要:Unicode, UTF, ASCII, ANSI format differences 问题: What is the difference between the Unicode, UTF8, UTF7, UTF16, UTF32, ASCII, and ANSI encodings? In w 阅读全文
posted @ 2019-04-23 13:55 ChuckLu 阅读(276) 评论(0) 推荐(0) 编辑
摘要:Encoding name and code page [Test] public void Test20210519001() { Console.WriteLine(GetEncodingString(Encoding.UTF7)); Console.WriteLine(GetEncodingS 阅读全文
posted @ 2019-04-23 13:52 ChuckLu 阅读(336) 评论(0) 推荐(0) 编辑
摘要:Given a binary tree, return all root-to-leaf paths. Note: A leaf is a node with no children. Example: Input: 1 / \ 2 3 \ 5 Output: ["1->2->5", "1->3"] 阅读全文
posted @ 2019-04-22 13:09 ChuckLu 阅读(146) 评论(0) 推荐(0) 编辑
摘要:传递多个参数 https://stackoverflow.com/questions/28481189/exec-sp-executesql-with-multiple-parameters Here is a simple example: EXEC sp_executesql @sql, N'@ 阅读全文
posted @ 2019-04-22 10:02 ChuckLu 阅读(505) 评论(0) 推荐(0) 编辑
摘要:Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST. According to the definition of LCA on Wikipedia 阅读全文
posted @ 2019-04-19 13:14 ChuckLu 阅读(251) 评论(0) 推荐(0) 编辑
摘要:Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \ 1 3 6 9 Output: 4 / \ 7 2 / \ / \ 9 6 3 1 Trivia: This problem was inspired by this original t 阅读全文
posted @ 2019-04-18 13:09 ChuckLu 阅读(137) 评论(0) 推荐(0) 编辑
摘要:打印代码 阅读全文
posted @ 2019-04-18 13:07 ChuckLu 阅读(290) 评论(0) 推荐(0) 编辑
摘要:安装了vs2019之后,发现有的项目中引用的其他项目的源码,但是无法识别了。 最后发现是因为project guid是大写导致的。 https://stackoverflow.com/questions/36204515/vs-project-references-broken-on-case-se 阅读全文
posted @ 2019-04-12 13:58 ChuckLu 阅读(767) 评论(0) 推荐(0) 编辑
摘要:Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. N 阅读全文
posted @ 2019-04-12 13:00 ChuckLu 阅读(158) 评论(0) 推荐(0) 编辑
摘要:Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as: a binary tree in which the dep 阅读全文
posted @ 2019-04-11 13:18 ChuckLu 阅读(125) 评论(0) 推荐(0) 编辑
摘要:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest l 阅读全文
posted @ 2019-04-10 23:43 ChuckLu 阅读(143) 评论(0) 推荐(0) 编辑
摘要:https://forums.asp.net/t/1139381.aspx?what+are+these+special+tags+and+ 答案1 Those tags can be hard to search for since the are generally discarded by s 阅读全文
posted @ 2019-04-10 17:17 ChuckLu 阅读(242) 评论(0) 推荐(0) 编辑
摘要:<asp:Label ID="lblNoCustomTableItemCheckedInfo" runat="server" CssClass="Hidden"></asp:Label> <asp:Label ID="lblNoCustomTableItemCheckedInfo" runat="s 阅读全文
posted @ 2019-04-10 16:17 ChuckLu 阅读(1002) 评论(0) 推荐(0) 编辑
摘要:CSS display:none and visibility:hidden – What's the Difference? 下图是display:none 下图是visibility:hidden What is the difference between visibility:hidden 阅读全文
posted @ 2019-04-10 15:41 ChuckLu 阅读(189) 评论(0) 推荐(0) 编辑
摘要:What is difference between UniqueID and ClientID in ASP.Net Controls ? Control.ClientID ClientID will be a unique ID string that is rendered to the cl 阅读全文
posted @ 2019-04-10 13:44 ChuckLu 阅读(270) 评论(0) 推荐(0) 编辑
摘要:https://about.gitlab.com/install/?version=ce https://about.gitlab.com/install/?version=ce#centos-7 阅读全文
posted @ 2019-04-10 11:08 ChuckLu 阅读(1001) 评论(0) 推荐(0) 编辑
摘要:https://docs.sonarqube.org/latest/user-guide/issues/#header-4 Understanding which Issues are "New" To determine the creation date of an issue, an algo 阅读全文
posted @ 2019-04-09 17:59 ChuckLu 阅读(571) 评论(0) 推荐(0) 编辑
摘要:https://medium.com/ltunes/custom-quality-profiles-in-sonarqube-part-1-8754348b9369 Creating Custom Quality Profile in SonarQube Firstly, you may ask w 阅读全文
posted @ 2019-04-09 15:59 ChuckLu 阅读(572) 评论(0) 推荐(0) 编辑
摘要:6 of the Best Terminal Emulators for Windows 10 What are the best terminal emulators for Windows? 阅读全文
posted @ 2019-04-09 10:30 ChuckLu 阅读(392) 评论(0) 推荐(0) 编辑
摘要:https://github.com/zeit/hyper https://gist.github.com/coco-napky/404220405435b3d0373e37ec43e54a23 How to install and configure hyper for Windows 10 安装 阅读全文
posted @ 2019-04-09 10:26 ChuckLu 阅读(999) 评论(0) 推荐(0) 编辑
摘要:What is event bubbling and capturing? 答案1 Event bubbling and capturing are two ways of event propagation in the HTML DOM API, when an event occurs in 阅读全文
posted @ 2019-04-08 17:38 ChuckLu 阅读(216) 评论(0) 推荐(0) 编辑
摘要:https://novemberfive.co/blog/windows-jenkins-cake-tutorial/ Where we started, or: why Cake took the cake Before we started using Cake to build our Win 阅读全文
posted @ 2019-04-08 09:54 ChuckLu 阅读(352) 评论(0) 推荐(0) 编辑
摘要:https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/ Given an array where elements are sorted in ascending order, convert it to a 阅读全文
posted @ 2019-04-04 13:51 ChuckLu 阅读(140) 评论(0) 推荐(0) 编辑
摘要:How to check if one path is a child of another path? Unfortunately it's not as simple as StartsWith. Here's a better answer, adapted from this duplica 阅读全文
posted @ 2019-04-04 12:52 ChuckLu 阅读(197) 评论(0) 推荐(0) 编辑
摘要:https://stackoverflow.com/questions/12390971/why-there-is-two-completely-different-version-of-reverse-for-list-and-ienumerabl It is worth noting that 阅读全文
posted @ 2019-04-03 19:54 ChuckLu 阅读(153) 评论(0) 推荐(0) 编辑
摘要:Analyzing with SonarQube Scanner for MSBuild Global Configuration This step is mandatory if you want to trigger any of your analyses with the SonarQub 阅读全文
posted @ 2019-04-03 14:28 ChuckLu 阅读(555) 评论(0) 推荐(0) 编辑
摘要:https://community.sonarsource.com/t/sonarqube-closed-issue-and-reopen-it-next-time-automatically/8408 Server Logs & System Info The System Info page i 阅读全文
posted @ 2019-04-03 11:06 ChuckLu 阅读(3336) 评论(0) 推荐(0) 编辑
摘要:https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1?view=netframework-4.7.2 Represents a first-in, first-out collection of 阅读全文
posted @ 2019-04-02 23:53 ChuckLu 阅读(166) 评论(0) 推荐(0) 编辑
摘要:https://www.geeksforgeeks.org/bfs-vs-dfs-binary-tree/ What are BFS and DFS for Binary Tree? A Tree is typically traversed in two ways: Breadth First T 阅读全文
posted @ 2019-04-02 21:23 ChuckLu 阅读(418) 评论(0) 推荐(0) 编辑
摘要:Depth-first search Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. The algorithm starts at the roo 阅读全文
posted @ 2019-04-02 21:10 ChuckLu 阅读(937) 评论(0) 推荐(0) 编辑
摘要:Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level). For example: Given binary tree [ 阅读全文
posted @ 2019-04-02 12:54 ChuckLu 阅读(261) 评论(0) 推荐(0) 编辑
摘要:How do I check if a type is a subtype OR the type of an object? To check if a type is a subclass of another type in C#, it's easy: typeof (SubClass).I 阅读全文
posted @ 2019-04-01 15:06 ChuckLu 阅读(266) 评论(0) 推荐(0) 编辑

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