日常生活的交流与学习

首页 新随笔 联系 管理
上一页 1 2 3 4 5 6 7 8 ··· 20 下一页

2024年2月14日 #

摘要: SeerAGV\Program.cs using Seer.SeerSocket; var seer = new SeerSocket(); var msg = seer.Send(0x0410,"""{"motor_names": ["motor1"]}""",19204); Console.W 阅读全文
posted @ 2024-02-14 17:06 lazycookie 阅读(14) 评论(0) 推荐(0) 编辑

2024年2月13日 #

摘要: 分布式缓存\appsettings.Development.json { "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } } } 分布式缓存\appsettings.js 阅读全文
posted @ 2024-02-13 16:17 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

2024年2月12日 #

摘要: 托管服务1\1.txt this is a test file 托管服务1\appsettings.Development.json { "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "War 阅读全文
posted @ 2024-02-12 16:10 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

2024年2月10日 #

摘要: DI魅力渐显_依赖注入\Program.cs services.AddScoped<IDbConnection>(sp => { string connStr = "Data Source=test.db"; var conn = new SqliteConnection(connStr); con 阅读全文
posted @ 2024-02-10 09:44 lazycookie 阅读(10) 评论(0) 推荐(0) 编辑

2024年2月9日 #

摘要: AddLogging的使用 services.AddLogging(logBuilder => { logBuilder.AddConsole(); }); AddLogging的实现 public static IServiceCollection AddLogging(this IService 阅读全文
posted @ 2024-02-09 22:59 lazycookie 阅读(18) 评论(0) 推荐(0) 编辑

摘要: AddConsole方法 // Summary: // Adds a console logger named 'Console' to the factory. // // Parameters: // builder: // The Microsoft.Extensions.Logging.IL 阅读全文
posted @ 2024-02-09 22:54 lazycookie 阅读(32) 评论(0) 推荐(0) 编辑

摘要: 依赖注入的基本使用1/Program.cs using Microsoft.Extensions.DependencyInjection; ServiceCollection services = new ServiceCollection(); // 瞬态服务 services.AddTransi 阅读全文
posted @ 2024-02-09 21:34 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

摘要: 依赖注入的基本使用1/Program.cs using Microsoft.Extensions.DependencyInjection; ServiceCollection services = new ServiceCollection(); // AddTransient的两种方式 // se 阅读全文
posted @ 2024-02-09 21:34 lazycookie 阅读(31) 评论(0) 推荐(0) 编辑

2024年2月6日 #

摘要: 代糖的分类 “代糖” 通常是指替代蔗糖、果糖、葡萄糖、麦芽糖、乳糖发挥甜味作用的甜味剂。 代糖能产生甜味,但是热量很低或是无热量,一般被分为人工代糖、天然代糖、糖醇和其他代糖。 常见的人工代糖包括甜蜜素、阿斯巴甜等; 常见的天然代糖包括甜菊糖苷、罗汉果糖等; 糖醇主要有赤藓糖醇、木糖醇、山梨糖醇等, 阅读全文
posted @ 2024-02-06 23:18 lazycookie 阅读(40) 评论(0) 推荐(0) 编辑

2024年1月31日 #

摘要: MIT许可证:只为作者保留版权,而无任何其他了限制。 它使人们几乎可以对您的项目进行任何操作,即时是制作和分发封闭源代码版本。 Babel,.NET Core和 Rails 使用MIT许可证¹。 BSD许可证:同样鼓励代码共享和尊重原作者的著作权,同样允许代码修改,再发布 (作为开源或商业软件)。 阅读全文
posted @ 2024-01-31 19:31 lazycookie 阅读(100) 评论(0) 推荐(0) 编辑

摘要: RemoteDesktopConnection\src\Program.cs #define debug using System; using System.Text.RegularExpressions; namespace RDP { class Program { static void M 阅读全文
posted @ 2024-01-31 19:06 lazycookie 阅读(38) 评论(0) 推荐(0) 编辑

摘要: RemoteDesktopConnection\src\LogInfo.cs namespace RDP { class LogInfo { public string Ipaddress { get; set; } public string Username { get; set; } publ 阅读全文
posted @ 2024-01-31 18:37 lazycookie 阅读(35) 评论(0) 推荐(0) 编辑

摘要: PropertySupport\Person.cs public class Person { public string Name { get; set; } public string getPropertyName() { return PropertySupport.ExtractPrope 阅读全文
posted @ 2024-01-31 14:39 lazycookie 阅读(9) 评论(0) 推荐(0) 编辑

摘要: BindableBase.cs public abstract class BindableBase : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; // 调用方法 : publ 阅读全文
posted @ 2024-01-31 14:23 lazycookie 阅读(36) 评论(0) 推荐(0) 编辑

2024年1月30日 #

摘要: TightVNC连接命令 使用.vnc文件连接 tvnviewer.exe -optionsfile=C:\Users\AUO\Downloads\1.vnc 命令行明文传递密码连接 tvnviewer 192.168.1.168:5900 -password=123456 TightVNC命令 T 阅读全文
posted @ 2024-01-30 19:26 lazycookie 阅读(309) 评论(0) 推荐(0) 编辑

摘要: ![image](https://img2024.cnblogs.com/blog/1222814/202401/1222814-20240130151835676-1000593919.gif) 阅读全文
posted @ 2024-01-30 15:19 lazycookie 阅读(10) 评论(0) 推荐(1) 编辑

摘要: 数据绑定 SimpleBinding\MainWindow.xaml <Window x:Class="SimpleBinding.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns: 阅读全文
posted @ 2024-01-30 15:14 lazycookie 阅读(7) 评论(0) 推荐(0) 编辑

摘要: event_learn\MyEvent.cs namespace MyEvent; public delegate void MyEventHandler(object sender, EventArgs e); // 定义一个自定义的事件接口,包含一个事件声明 public interface I 阅读全文
posted @ 2024-01-30 14:17 lazycookie 阅读(16) 评论(0) 推荐(0) 编辑

摘要: event_learn\Program.cs // 定义一个派生自 EventArgs 的自定义类,用于封装数据 public class MyEventArgs : EventArgs { // 定义一个公共的字符串属性,用于存储和获取数据 public DateTime? EmitDate { 阅读全文
posted @ 2024-01-30 14:00 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

摘要: event_learn\Program.cs using System; // 定义一个发布者类,它有一个 MyEvent 事件 public class Publisher { // 声明一个事件,使用 EventHandler 委托类型 public event EventHandler MyE 阅读全文
posted @ 2024-01-30 13:49 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

2024年1月25日 #

摘要: Juster.Music\MainWindow.xaml.cs namespace Juster.Music { /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> public partial class M 阅读全文
posted @ 2024-01-25 20:23 lazycookie 阅读(152) 评论(0) 推荐(0) 编辑

摘要: WPF MVVM(Model-View-ViewModel) 设计模式 在 WPF 应用程序中使用 MVVM(Model-View-ViewModel)设计模式的一部分,其中 ViewModel(TempModel)负责封装数据和业务逻辑,而 View(MainWindow.xaml)通过 Data 阅读全文
posted @ 2024-01-25 19:12 lazycookie 阅读(38) 评论(0) 推荐(0) 编辑

2024年1月24日 #

摘要: 02 什么是SECS/GEM? 答:SECS/GEM是半导体行业用于设备(Equipment)与上层控制系统(Host)之间通信的标准协议和接口。 它由SEMI Equipment Communication Standard (SECS) 和 Generic Equipment Model (GE 阅读全文
posted @ 2024-01-24 15:51 lazycookie 阅读(180) 评论(0) 推荐(0) 编辑

摘要: SECS通信协议 什么是SECS/GEM通信协议? 答:SECS/GEM通信协议是由SEMI国际半导体产业协会制定的一套标准通讯接口,主要用于确保半导体、光电和太阳能等高科技工厂中的控制中心(Host)与生产设备(EQP)之间能够有效地交换信息,并实现生产自动化。这套协议定义了各种消息传送的方式和数 阅读全文
posted @ 2024-01-24 15:50 lazycookie 阅读(148) 评论(0) 推荐(0) 编辑

摘要: secs_wpf\MainWindow.xaml.cs using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Do 阅读全文
posted @ 2024-01-24 13:17 lazycookie 阅读(22) 评论(0) 推荐(0) 编辑

2024年1月23日 #

摘要: secs_learn/Program.cs 此文件是应用程序的入口点,用于配置和启动主机。 使用 Host.CreateDefaultBuilder(args) 创建一个默认配置的主机构建器,自动加载环境变量、配置文件等设置。 .ConfigureServices(...) 方法中,通过 servi 阅读全文
posted @ 2024-01-23 22:31 lazycookie 阅读(192) 评论(0) 推荐(0) 编辑

摘要: secs_learn/Program.cs using DeviceWorkerService; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; Host.CreateDefaul 阅读全文
posted @ 2024-01-23 22:26 lazycookie 阅读(251) 评论(0) 推荐(0) 编辑

摘要: 扩展方法 // 定义一个静态类 public static class StringExtension { // 定义一个静态方法,用this关键字指定要扩展的类型 public static string MyReverse(this string s) { // 实现字符串反转的逻辑 char[ 阅读全文
posted @ 2024-01-23 22:23 lazycookie 阅读(17) 评论(0) 推荐(0) 编辑

2024年1月21日 #

摘要: 网址 https://www.geeksforgeeks.org/ 说明 每个文档说明,都会配有代码片,还免费. 阅读全文
posted @ 2024-01-21 14:35 lazycookie 阅读(8) 评论(0) 推荐(0) 编辑

摘要: """convert code to markdown """ import asyncio import datetime import os import platform import re import shutil import xmlrpc.client class ST: # <xxx 阅读全文
posted @ 2024-01-21 13:35 lazycookie 阅读(6) 评论(0) 推荐(0) 编辑

摘要: warning : cell-var-from-loop bing解释 for i in range(10): f = lambda i:i print(f()) The warning message cell-var-from-loop is emitted by Pylint, a Pytho 阅读全文
posted @ 2024-01-21 12:37 lazycookie 阅读(9) 评论(0) 推荐(0) 编辑

2024年1月20日 #

摘要: backup the current project """convert code to markdown """ import datetime import os import platform import re import shutil class CodeToMarkDown: """ 阅读全文
posted @ 2024-01-20 22:53 lazycookie 阅读(20) 评论(0) 推荐(0) 编辑

摘要: efcore-multi-db/MultiDb.sln Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.27130.2024 Minim 阅读全文
posted @ 2024-01-20 12:09 lazycookie 阅读(15) 评论(0) 推荐(0) 编辑

摘要: ef core 的使用 依赖包 efcore-multi-db/MultiDb.Two/MultiDb.Two.csproj <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net7.0</TargetFramew 阅读全文
posted @ 2024-01-20 11:39 lazycookie 阅读(213) 评论(0) 推荐(0) 编辑

摘要: code2md md2code """convert code to markdown """ import datetime import os import re class CodeToMarkDown: """_summary_""" __slots__ = ["path", "md_pat 阅读全文
posted @ 2024-01-20 00:02 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

2024年1月19日 #

摘要: convert code markdown , collect markdown , un collect markdown """convert code to markdown """ import datetime import os import re class CodeToMarkDow 阅读全文
posted @ 2024-01-19 19:49 lazycookie 阅读(5) 评论(0) 推荐(0) 编辑

2024年1月18日 #

摘要: """convert code to markdown """ import os import re from datetime import datetime # 需要过滤的文件夹 exclude_dirs = [ "__pycache__", "venv", "build", "dist", 阅读全文
posted @ 2024-01-18 20:23 lazycookie 阅读(3) 评论(0) 推荐(0) 编辑

摘要: SqliteToOracle\global.json { "sdk": { "version": "7.0.401" } } SqliteToOracle\SqliteToOracle.sln  Microsoft Visual Studio Solution File, Format Versi 阅读全文
posted @ 2024-01-18 19:30 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

2024年1月17日 #

摘要: convert markdown 2 code project by python import os import re import sys def create_from_file_path(base_dir, file_path, content): # Create the full di 阅读全文
posted @ 2024-01-17 07:09 lazycookie 阅读(6) 评论(0) 推荐(0) 编辑

摘要: convert code 2 markdown by python """convert code to markdown """ import os import re import sys from datetime import datetime # 需要过滤的文件夹 exclude_dirs 阅读全文
posted @ 2024-01-17 07:07 lazycookie 阅读(6) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 20 下一页