11 2022 档案

摘要:Decrypt string in C# that was encrypted with PHP openssl_encrypt 回答1 Well this was fun to work out and required jumping into the PHP source code with 阅读全文
posted @ 2022-11-30 20:21 ChuckLu 阅读(78) 评论(0) 推荐(0) 编辑
摘要:example1 https://www.w3schools.com/php/phptryit.asp?filename=tryphp_func_string_echo 把内容替换掉 <?php encryptalgo=AES256CBC;encrypt_key = 'SEC_K 阅读全文
posted @ 2022-11-30 19:35 ChuckLu 阅读(266) 评论(0) 推荐(0) 编辑
摘要:Transfer Size vs. Resource Size The size of the resources (images, JavaScript files, CSS files, etc.) web applications deliver to end-users directly i 阅读全文
posted @ 2022-11-30 11:22 ChuckLu 阅读(218) 评论(0) 推荐(0) 编辑
摘要:What is the difference between "transferred" and "resources" in Chrome DevTools Network tab? 回答1 "Transferred" is the compressed size of all resources 阅读全文
posted @ 2022-11-30 11:05 ChuckLu 阅读(93) 评论(0) 推荐(0) 编辑
摘要:Add new connections The steps in this article show how to connect to a database in the Visual Studio IDE. You can use these steps to work directly wit 阅读全文
posted @ 2022-11-28 16:47 ChuckLu 阅读(25) 评论(0) 推荐(0) 编辑
摘要:EF Core | Passing navigation properties in JSON body to API controller as POST request Here's the official docs on avoiding graph cycles in JSON: lear 阅读全文
posted @ 2022-11-28 12:57 ChuckLu 阅读(29) 评论(0) 推荐(0) 编辑
摘要:作业,发帖次数。 AI智能 新建合成,16秒。 导入图片,不需要导入序列。因为每张图片,都需要做关键帧。 不操作的图片,防止误点,可以锁定。操作的图片show出来,不操作的隐藏起来。 图像隐藏了,但是还是可以操作到。所以,需要锁定。 内圈发光,外圈有模糊效果。 01 图片 【内圈第一个】 缩放10% 阅读全文
posted @ 2022-11-26 12:37 ChuckLu 阅读(29) 评论(0) 推荐(0) 编辑
摘要:Decompressing GZip Stream from HTTPClient Response 回答1 Just instantiate HttpClient like this: HttpClientHandler handler = new HttpClientHandler() { Au 阅读全文
posted @ 2022-11-25 12:23 ChuckLu 阅读(27) 评论(0) 推荐(0) 编辑
摘要:2022-11-25 11:03:52.057 +08:00 [FTL] Application startup exceptionSystem.InvalidOperationException: Unable to resolve service for type 'Microsoft.AspN 阅读全文
posted @ 2022-11-25 11:34 ChuckLu 阅读(238) 评论(0) 推荐(0) 编辑
摘要:HTTP/1.1 502 Fiddler - Connection FailedDate: Fri, 25 Nov 2022 02:59:58 GMTContent-Type: text/html; charset=UTF-8Connection: closeCache-Control: no-ca 阅读全文
posted @ 2022-11-25 11:03 ChuckLu 阅读(118) 评论(0) 推荐(0) 编辑
摘要:HttpWebRequest and GZip Http Responses The Client Side This takes care of the server side and if you're using a browser, GZip support is pretty much a 阅读全文
posted @ 2022-11-25 10:15 ChuckLu 阅读(19) 评论(0) 推荐(0) 编辑
摘要:GZip/Deflate Compression in ASP.NET MVC Compression Caveats Http compression is very cool and pretty easy to implement in ASP.NET but you have to be c 阅读全文
posted @ 2022-11-25 10:00 ChuckLu 阅读(22) 评论(0) 推荐(0) 编辑
摘要:HTTP Compression The <httpCompression> element specifies the HTTP compression settings for Internet Information Services (IIS) 7. HTTP compression can 阅读全文
posted @ 2022-11-25 09:59 ChuckLu 阅读(42) 评论(0) 推荐(0) 编辑
摘要:LINQ to SQL tools in Visual Studio LINQ to SQL was the first object-relational mapping technology released by Microsoft. It works well in basic scenar 阅读全文
posted @ 2022-11-24 15:34 ChuckLu 阅读(54) 评论(0) 推荐(0) 编辑
摘要:How to open .dbml in designer mode with VS? 问题 After installing Visual Studio 2017, my LINQ To SQL .dbml definitions open in a XML editor instead of t 阅读全文
posted @ 2022-11-24 14:35 ChuckLu 阅读(28) 评论(0) 推荐(0) 编辑
摘要:SQL Server ':setvar' Error 回答1 The :setvar only works in SQL command mode, so you are possibly within normal SQL execution in the management studio an 阅读全文
posted @ 2022-11-21 10:31 ChuckLu 阅读(22) 评论(0) 推荐(0) 编辑
摘要:How to find event listeners on a DOM node in JavaScript or in debugging? 回答1 Chrome, Firefox, Vivaldi and Safari support getEventListeners(domElement) 阅读全文
posted @ 2022-11-20 14:46 ChuckLu 阅读(20) 评论(0) 推荐(0) 编辑
摘要:JS监听浏览器TAB被激活或者被离开 监听窗口被离开或者被选中可以使用以下方法来实现 document.addEventListener('visibilitychange', function () { // 用户息屏、或者切到后台运行 (离开页面) if (document.visibility 阅读全文
posted @ 2022-11-20 14:34 ChuckLu 阅读(1949) 评论(0) 推荐(0) 编辑
摘要:Understanding RGB Color, and Gamma It is a long page. First the color systems, and then the details of RGB below. There are other color systems, but t 阅读全文
posted @ 2022-11-19 19:42 ChuckLu 阅读(84) 评论(0) 推荐(0) 编辑
摘要:【python问题解决】UnicodeDecodeError :'gb2312' codec can't decode bytes:illegal multibyte sequence 错误提示:UnicodeDecodeError :'gb2312' codec can't decode byte 阅读全文
posted @ 2022-11-19 15:07 ChuckLu 阅读(2849) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/66cdf4a2df9c Keylight 效果和预设,搜索keylight(1.2),拖动到蓝幕的照片上。 或者菜单效果-->Keying-->Keylight 设置ScreenColor,吸管吸取要扣除的颜色 screen gain 屏幕增益。 阅读全文
posted @ 2022-11-19 12:48 ChuckLu 阅读(137) 评论(0) 推荐(0) 编辑
摘要:python 3 open() default encoding 回答1 The default UTF-8 encoding of Python 3 only extends to byte->str conversions. open() instead uses your environmen 阅读全文
posted @ 2022-11-19 10:34 ChuckLu 阅读(156) 评论(0) 推荐(0) 编辑
摘要:How to setup Visual Studio Code to detect and set the correct encoding on file open 回答1 Add guide by image : File >> Preferences >> Settings Enter aut 阅读全文
posted @ 2022-11-19 10:24 ChuckLu 阅读(21) 评论(0) 推荐(0) 编辑
摘要:How to run python interactive in current file's directory in Visual Studio Code? 问题 When executing "Run Selection/Line in Python Terminal" command in 阅读全文
posted @ 2022-11-19 09:34 ChuckLu 阅读(79) 评论(0) 推荐(0) 编辑
摘要:UnicodeDecodeError:'gbk' codec can't decode byte 0x80 in position 0 illegal multibyte sequence 回答1 if you will open file with utf-8,then you need writ 阅读全文
posted @ 2022-11-19 09:06 ChuckLu 阅读(84) 评论(0) 推荐(0) 编辑
摘要:https://www.chebiao.com.cn/chebiao/woerwo.html 罗尔斯·罗伊斯汽车的标志图案采用两个“r”重叠在一起,象征着你中有我,我中有你,体现了两人融洽及和谐的关系。 而著名的欢庆女神 [1] 标志则是源于一个美丽的爱情故事。 凯迪拉克的车标是一个卡罗拉盾徽,代表 阅读全文
posted @ 2022-11-17 00:36 ChuckLu 阅读(140) 评论(0) 推荐(0) 编辑
摘要:Architectural principles Dependency inversion The direction of dependency within the application should be in the direction of abstraction, not implem 阅读全文
posted @ 2022-11-16 15:37 ChuckLu 阅读(26) 评论(0) 推荐(0) 编辑
摘要:Dependency injection in ASP.NET Core By Kirk Larkin, Steve Smith, Scott Addie, and Brandon Dahler ASP.NET Core supports the dependency injection (DI) 阅读全文
posted @ 2022-11-16 15:32 ChuckLu 阅读(14) 评论(0) 推荐(0) 编辑
摘要:ASP.NET Core Dependency Injection Best Practices, Tips & Tricks In this article, I will share my experiences and suggestions on using Dependency Injec 阅读全文
posted @ 2022-11-16 15:30 ChuckLu 阅读(23) 评论(0) 推荐(0) 编辑
摘要:Dependency Injection ABP's Dependency Injection system is developed based on Microsoft's dependency injection extension library (Microsoft.Extensions. 阅读全文
posted @ 2022-11-16 15:29 ChuckLu 阅读(21) 评论(0) 推荐(0) 编辑
摘要:Relationships, navigation properties, and foreign keys public class Course { public int CourseID { get; set; } public string Title { get; set; } publi 阅读全文
posted @ 2022-11-15 15:17 ChuckLu 阅读(23) 评论(0) 推荐(0) 编辑
摘要:What is Owned Entity? When and why to use Owned Entity in Entity Framework Core? 回答1 What does this look like without owned entities? If you create an 阅读全文
posted @ 2022-11-15 14:37 ChuckLu 阅读(42) 评论(0) 推荐(0) 编辑
摘要:System.InvalidOperationException: The entity type 'Vehicle' cannot be configured as owned because it has already been configured as a non-owned. If yo 阅读全文
posted @ 2022-11-15 14:19 ChuckLu 阅读(246) 评论(0) 推荐(0) 编辑
摘要:EF Core HasMany vs OwnsMany 回答1 From documentation: EF Core allows you to model entity types that can only ever appear on navigation properties of oth 阅读全文
posted @ 2022-11-15 10:46 ChuckLu 阅读(508) 评论(0) 推荐(1) 编辑
摘要:使用ASP.NET Core Diagnostics for IIS/IIS Express Cannot locate runtime config file HttpApi.Host\HttpApi.Host.runtimeconfig.json https://dotnet.microsoft 阅读全文
posted @ 2022-11-14 14:13 ChuckLu 阅读(1929) 评论(0) 推荐(0) 编辑
摘要:How I can obtain the collation of a specific table in a database? 回答1 Collation at the table level is on a per column basis, so it is possible to have 阅读全文
posted @ 2022-11-14 14:09 ChuckLu 阅读(16) 评论(0) 推荐(0) 编辑
摘要:Use Where Clause With Merge There is no WHERE in that part of the MERGE statement. See MERGE (Transact-SQL) in the documentation for syntax help. Ther 阅读全文
posted @ 2022-11-14 10:50 ChuckLu 阅读(18) 评论(0) 推荐(0) 编辑
摘要:Standard deviation Bessel's correction 贝塞尔校正 为什么样本方差(sample variance)的分母是 n-1? 非常好的问题,探索这个问题的答案,不仅能更好的了解自己和这个世界,还能避免被征收“偏差税 ”Bias Tax! 先说结论,样本标准差的分母写成 阅读全文
posted @ 2022-11-12 16:15 ChuckLu 阅读(453) 评论(0) 推荐(0) 编辑
摘要:新建一个蓝色的纯色层 菜单栏:窗口-->效果和预设 菜单栏:效果-->扭曲-->波形变形 新建一个蓝色的纯色层,拖动波形变形的效果。 波浪类型,正方形。 设置波形宽度400,设置方向为0,波形速度5.0 设置波形高度的关键帧,0秒高度0,1秒设置波形高度600或者500。2秒再把波形高度设置为0。3 阅读全文
posted @ 2022-11-12 12:37 ChuckLu 阅读(20) 评论(0) 推荐(0) 编辑
摘要:Strings and Character Data in Python String Slicing Python also allows a form of indexing syntax that extracts substrings from a string, known as stri 阅读全文
posted @ 2022-11-12 10:25 ChuckLu 阅读(31) 评论(0) 推荐(0) 编辑
摘要:Nature子刊:重磅!无症状感染者,没有新冠后遗症 新冠病毒,通常通过呼吸道感染人类,并造成呼吸系统和人体各个器官的损伤。自2019年底首次爆发至今,新型冠状病毒仍在全球肆虐,对世界经济、社会造成极大的负面影响。 疫情两年多以来,越来越多的证据表明,新冠不只是一种呼吸系统疾病,而是会影响人体多个组 阅读全文
posted @ 2022-11-11 18:40 ChuckLu 阅读(85) 评论(0) 推荐(0) 编辑
摘要:执行这个命令 dotnet ef dbcontext scaffold "connection string" Microsoft.EntityFrameworkCore.SqlServer -o ./EntityFrameworkTest/Models -t dbo.Test 报错1 Your s 阅读全文
posted @ 2022-11-11 11:35 ChuckLu 阅读(376) 评论(0) 推荐(0) 编辑
摘要:.Net Core 3.0 possible object cycle was detected which is not supported 回答1 Instead of using NewtonsoftJson I used System.Text.Json.Serialization For 阅读全文
posted @ 2022-11-09 12:54 ChuckLu 阅读(24) 评论(0) 推荐(0) 编辑
摘要:The entity type 'ExtraPropertyDictionary' requires a primary key to be defined. If you intended to use a keyless entity type, call 'HasNoKey' in 'OnMo 阅读全文
posted @ 2022-11-08 18:13 ChuckLu 阅读(894) 评论(0) 推荐(1) 编辑
摘要:Always Encrypted with Azure Key Vault 阅读全文
posted @ 2022-11-08 15:01 ChuckLu 阅读(10) 评论(0) 推荐(0) 编辑
摘要:Rotate Always Encrypted keys using SQL Server Management Studio Rotate Column Master Keys The rotation of a column master key is the process of replac 阅读全文
posted @ 2022-11-08 14:17 ChuckLu 阅读(29) 评论(0) 推荐(0) 编辑
摘要:Entity Framework Core Migrations When developing applications, the model is likely to change often as new requirements come to light. The database nee 阅读全文
posted @ 2022-11-08 13:25 ChuckLu 阅读(79) 评论(0) 推荐(0) 编辑
摘要:Always Encryption: Failed to decrypt a column encryption key using key store provider: 'MSSQL_CERTIFICATE_STORE' 需要注意的是,证书必须在Local Machine里面,在证书上的右键菜单 阅读全文
posted @ 2022-11-08 10:36 ChuckLu 阅读(280) 评论(0) 推荐(0) 编辑
摘要:Anchor Point vs. Position Hi Everyone, I’ve seen a few recent tutorials that suggest using anchor point instead of position key frames to move video a 阅读全文
posted @ 2022-11-06 05:51 ChuckLu 阅读(20) 评论(0) 推荐(0) 编辑
摘要:全部选中,U键显示所有关键帧 选中关键帧,右键,定格关键帧。一次放大,前一帧定住不动,到了下一个关键帧才开始变化。 没有定格关键帧的话,默认是逐渐放大的。 全景-->近景-->特写 视图-->显示标尺 椭圆工具,按shift画出圆形。 用蒙版来遮掉圆形的一部分,来插入文字。 形状图层,右键,预合成。 阅读全文
posted @ 2022-11-05 13:06 ChuckLu 阅读(20) 评论(0) 推荐(0) 编辑
摘要:Fiddler 2 Wipes My Internet Explorer Proxy Settings 回答1 Fiddler changes your proxy settings on startup and reverts them back to what they were before 阅读全文
posted @ 2022-11-04 17:04 ChuckLu 阅读(14) 评论(0) 推荐(0) 编辑
摘要:Web Application Development Tutorial - Part 1: Creating the Server Side Creating the Solution Before starting the development, create a new solution n 阅读全文
posted @ 2022-11-04 14:59 ChuckLu 阅读(47) 评论(0) 推荐(0) 编辑
摘要:现根据https://docs.abp.io/en/abp/latest/Getting-Started 配置好开发环境 Setup your development environment Creating a new solution Running the solution Create a 阅读全文
posted @ 2022-11-04 10:56 ChuckLu 阅读(94) 评论(0) 推荐(0) 编辑
摘要:1、n=名词,noun的缩写 2、u=不可数名词,uncountable noun的缩写 3、c=可数名词,countable noun的缩写 4、v=动词,verb的缩写 5、vi=不及物动词,intransitive verb的缩写 6、vt=及物动词,transitive verb的缩写 7、 阅读全文
posted @ 2022-11-02 14:47 ChuckLu 阅读(2076) 评论(0) 推荐(0) 编辑

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