02 2023 档案

摘要:What does Strongly Connected Components mean?Why a single vertex can be a compoent? In a directed graph, a strongly connected component (SCC) is a sub 阅读全文
posted @ 2023-02-28 13:42 ChuckLu 阅读(17) 评论(0) 推荐(0) 编辑
摘要:2023-02-26 write a short story with the following words: premise, oppose, chariot, bracket, parenthesis, mileage, pessimist, network, involve, ironic, 阅读全文
posted @ 2023-02-26 21:47 ChuckLu 阅读(496) 评论(0) 推荐(0) 编辑
摘要:8个优质英语商业播客,快速积累职场口语素材!_哔哩哔哩_bilibili 1. How I built this 创业 2.Money for the rest of us 金融 3.The side hustle show 线下线上的创收,副业 4.The time ferries show 5. 阅读全文
posted @ 2023-02-24 00:20 ChuckLu 阅读(31) 评论(0) 推荐(0) 编辑
摘要:Modern authentication with Azure AD for WinForms (native) apps (cmatskas.com) At this point everything should resolve fine apart from the 'TokenCacheH 阅读全文
posted @ 2023-02-23 17:18 ChuckLu 阅读(14) 评论(0) 推荐(0) 编辑
摘要:Newtonsoft Json.NET do not serialize [Obsolete] property 回答1 Yes, you can use a custom ContractResolver to exclude properties marked obsolete.Here is 阅读全文
posted @ 2023-02-23 17:06 ChuckLu 阅读(22) 评论(0) 推荐(0) 编辑
摘要:What's AD DS user? AD DS stands for Active Directory Domain Services, which is a Microsoft technology that provides centralized authentication and aut 阅读全文
posted @ 2023-02-23 16:01 ChuckLu 阅读(35) 评论(0) 推荐(0) 编辑
摘要:Introduce and explain the DDD architecture, concepts, principles, patterns and building blocks. DDD, or Domain-Driven Design, is an approach to softwa 阅读全文
posted @ 2023-02-22 14:52 ChuckLu 阅读(34) 评论(0) 推荐(0) 编辑
摘要:What does Authorization: Bearer mean? The Authorization: Bearer header is used to send a bearer token in an HTTP request. Bearer tokens are security t 阅读全文
posted @ 2023-02-21 16:02 ChuckLu 阅读(31) 评论(0) 推荐(0) 编辑
摘要:What kind info I need if I want to request user info from graph api of Microsoft? To request user information from Microsoft Graph API, you will need 阅读全文
posted @ 2023-02-21 14:57 ChuckLu 阅读(13) 评论(0) 推荐(0) 编辑
摘要:分享当下较新的30道Vue面试题! (qq.com) The difference between vue and angular? Vue and Angular are both popular JavaScript frameworks used for building web applic 阅读全文
posted @ 2023-02-20 01:13 ChuckLu 阅读(46) 评论(0) 推荐(0) 编辑
摘要:How can I secure a .NET application? There are several ways to secure a .NET application, some of which include: Authentication and authorization: Imp 阅读全文
posted @ 2023-02-19 04:53 ChuckLu 阅读(13) 评论(0) 推荐(0) 编辑
摘要:How can I implement caching in ASP.NET? Caching is a technique used to temporarily store frequently accessed data in memory or on disk in order to imp 阅读全文
posted @ 2023-02-19 04:40 ChuckLu 阅读(12) 评论(0) 推荐(0) 编辑
摘要:What is the role of Global.asax in ASP.NET? The Global.asax file in ASP.NET is used to handle application-level events and set application-level varia 阅读全文
posted @ 2023-02-19 04:34 ChuckLu 阅读(62) 评论(0) 推荐(0) 编辑
摘要:What is the difference between session and application state in ASP.NET? In ASP.NET, Session state and Application state are two different ways to sto 阅读全文
posted @ 2023-02-19 04:32 ChuckLu 阅读(17) 评论(0) 推荐(0) 编辑
摘要:I can help you with that. Here are some common .NET/C# programmer interview questions: What are the key features of C#? What is the difference between 阅读全文
posted @ 2023-02-19 04:06 ChuckLu 阅读(31) 评论(0) 推荐(0) 编辑
摘要:scenario vs scenario outline In Gherkin, the scenario is a simple test case that describes a particular behavior of the system under test. A scenario 阅读全文
posted @ 2023-02-17 18:12 ChuckLu 阅读(60) 评论(0) 推荐(0) 编辑
摘要:To set the proxy for Chrome using Selenium in C#, you can use the following code: using OpenQA.Selenium; using OpenQA.Selenium.Chrome; var proxy = new 阅读全文
posted @ 2023-02-17 17:53 ChuckLu 阅读(54) 评论(0) 推荐(0) 编辑
摘要:Difference between ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,15}$ vs (?=.*[a-z])(?=.*[A-Z])(?=.*\d).{8,15} demonstrate the difference through examples. The d 阅读全文
posted @ 2023-02-17 14:43 ChuckLu 阅读(10) 评论(0) 推荐(0) 编辑
摘要:What does WindowHandles mean in IWebDriver of Selenium? In Selenium, a WindowHandle is a unique identifier assigned to each browser window or tab that 阅读全文
posted @ 2023-02-15 15:22 ChuckLu 阅读(11) 评论(0) 推荐(0) 编辑
摘要:Cucumber and Gherkin What is Cucumber? Cucumber is an open-source, software tool that supports the Behaviour Driven Development (BDD) framework for wr 阅读全文
posted @ 2023-02-14 15:29 ChuckLu 阅读(18) 评论(0) 推荐(0) 编辑
摘要:How To Be Successful I’ve observed thousands of founders and thought a lot about what it takes to make a huge amount of money or to create something i 阅读全文
posted @ 2023-02-12 06:13 ChuckLu 阅读(53) 评论(0) 推荐(0) 编辑
摘要:Is it correct that a .feature file always maps to a step file? Not necessarily. A .feature file in Cucumber or SpecFlow describes a feature or user st 阅读全文
posted @ 2023-02-09 17:45 ChuckLu 阅读(18) 评论(0) 推荐(0) 编辑
摘要:魏王堤 白居易 〔唐代〕 花寒懒发鸟慵啼,信马闲行到日西。何处未春先有思,柳条无力魏王堤。 野次喜雪 李隆基 〔唐代〕 拂曙辟行宫,寒皋野望通。繁云低远岫,飞雪舞长空。赋象恒依物,萦回屡逐风。为知勤恤意,先此示年丰。 https://www.bilibili.com/video/BV1W7411T7 阅读全文
posted @ 2023-02-08 20:50 ChuckLu 阅读(68) 评论(0) 推荐(0) 编辑
摘要:How can I use MFA of Microsoft? Multifactor Authentication (MFA) is a security feature that requires users to provide two or more methods of authentic 阅读全文
posted @ 2023-02-06 10:28 ChuckLu 阅读(53) 评论(0) 推荐(0) 编辑

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