11 2022 档案

摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-sca 阅读全文
posted @ 2022-11-30 21:46 ®Geovin Du Dream Park™ 阅读(24) 评论(0) 推荐(0) 编辑
摘要:nginx启动失败,查看日志报错: 2022/11/29 20:49:09 [emerg] 4344#12776: bind() to 0.0.0.0:1188 failed (10013: An attempt was made to access a socket in a way forbid 阅读全文
posted @ 2022-11-29 21:28 ®Geovin Du Dream Park™ 阅读(106) 评论(0) 推荐(0) 编辑
摘要:https://visionary.com/blog/making-an-animated-svg-checkbox/https://www.svgviewer.dev/ 编辑SVG大小 <!doctype html> <html> <head> <meta charset="utf-8"> <me 阅读全文
posted @ 2022-11-29 12:02 ®Geovin Du Dream Park™ 阅读(30) 评论(0) 推荐(0) 编辑
摘要:RTMP是Real Time Messaging Protocol(实时消息传输 协议 )的首字母缩写。. 该协议基于TCP,是一个协议族,包括RTMP基本协议及RTMPT/RTMPS/RTMPE等多种变种。. RTMP是一种设计用来进行实时数据通信的网络协议,主要用来在Flash/AIR平台和支持 阅读全文
posted @ 2022-11-27 16:27 ®Geovin Du Dream Park™ 阅读(33) 评论(0) 推荐(0) 编辑
摘要:https://playerjs.com/docs/en=hlshttps://github.com/video-dev/hls.js/https://hls-js.netlify.app/api-docs/https://hls-js.netlify.app/demo/https://docs.g 阅读全文
posted @ 2022-11-27 13:01 ®Geovin Du Dream Park™ 阅读(66) 评论(0) 推荐(0) 编辑
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Com 阅读全文
posted @ 2022-11-25 16:26 ®Geovin Du Dream Park™ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:SVG Path - <path>The <path> element is used to define a path. The following commands are available for path data: M = movetoL = linetoH = horizontal l 阅读全文
posted @ 2022-11-24 15:21 ®Geovin Du Dream Park™ 阅读(32) 评论(0) 推荐(0) 编辑
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-sca 阅读全文
posted @ 2022-11-23 23:57 ®Geovin Du Dream Park™ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Com 阅读全文
posted @ 2022-11-23 14:46 ®Geovin Du Dream Park™ 阅读(24) 评论(0) 推荐(0) 编辑
摘要:# This is a sample Python script. from os import listdir import csv import numpy import pandas as pd # C:\\Users\\geovindu\\PycharmProjects\\pythonPro 阅读全文
posted @ 2022-11-21 16:17 ®Geovin Du Dream Park™ 阅读(36) 评论(0) 推荐(0) 编辑
摘要:http://ffmpeg.org/ ffmpeg -version ffplay D:\VR班\Venice.mp4 --播放 ffmpeg -i D:\VR班\Venice.mp4 -c copy D:\VR班\geovindu\Venice.avi --转换为av格式 ffmpeg -i D: 阅读全文
posted @ 2022-11-21 00:45 ®Geovin Du Dream Park™ 阅读(28) 评论(0) 推荐(0) 编辑
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <title>SVG Line Between Divs (multi-point)</title> <style> html, body { margin: 0; padding: 0; } 阅读全文
posted @ 2022-11-17 22:53 ®Geovin Du Dream Park™ 阅读(24) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 外观模式 Facade Pattern /// 银行 /// </summary> public class Bank { public bool IsUntrustworthy(Customer customer, decimal loanAmount) { C 阅读全文
posted @ 2022-11-16 21:15 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0) 编辑
摘要:/// <summary> ///装饰模式 Decorator Pattern 亦称: 装饰者模式、装饰器模式、Wrapper、Decorator /// </summary> public interface IDataSource { /// <summary> /// /// </summar 阅读全文
posted @ 2022-11-15 23:07 ®Geovin Du Dream Park™ 阅读(15) 评论(0) 推荐(0) 编辑
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-sca 阅读全文
posted @ 2022-11-15 16:46 ®Geovin Du Dream Park™ 阅读(43) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 组合模式 Composite Pattern 亦称: 对象树、Object Tree、Composite Pattern /// </summary> public abstract class Gift { /// <summary> /// /// </sum 阅读全文
posted @ 2022-11-14 23:17 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 桥接模式 Bridge Pattern- Structural Pattern /// </summary> public abstract class Document { /// <summary> /// /// </summary> protected r 阅读全文
posted @ 2022-11-13 20:45 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 适配器模式 亦称: 封装器模式、Wrapper、Adapter Adapter Pattern /// </summary> public class Employee { /// <summary> /// /// </summary> public int I 阅读全文
posted @ 2022-11-12 23:58 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 原型模式 Prototype Pattern /// </summary> public interface IColorPrototype { /// <summary> /// /// </summary> /// <returns></returns> IC 阅读全文
posted @ 2022-11-09 23:25 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要:/// <summary> ///单例模式 单件模式、Singleton Pattern /// </summary> public abstract class BaseGreeter { public virtual void Greet() => Console.WriteLine($"Gre 阅读全文
posted @ 2022-11-09 23:11 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0) 编辑
摘要:#region Record Types Record Class in C# 10 /// <summary> /// Positional parameters syntax /// 位置参数的语法 /// </summary> /// <param name="EmployeeId"></pa 阅读全文
posted @ 2022-11-07 23:30 ®Geovin Du Dream Park™ 阅读(39) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 生成器模式 Builder Pattern /// </summary> public enum MeatType { Beef, Pork, Chicken, Turkey, Salami, } /// <summary> /// 生成器模式 Builder P 阅读全文
posted @ 2022-11-07 22:19 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Geovinu.Du.DuAbstractFac 阅读全文
posted @ 2022-11-06 07:05 ®Geovin Du Dream Park™ 阅读(27) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// The Product declares the interface, which is common to all objects /// that can be produced by the creator <see cref="Restaurants.Co 阅读全文
posted @ 2022-11-05 06:26 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0) 编辑
摘要:/// <summary> /// 空对象模式 null object Pattern /// /// </summary> public abstract class Application { /// <summary> /// /// </summary> private static rea 阅读全文
posted @ 2022-11-04 22:41 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0) 编辑
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name= 阅读全文
posted @ 2022-11-04 00:38 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html> <html> <head> <metaCharset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-sc 阅读全文
posted @ 2022-11-03 16:27 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1; /// <summar 阅读全文
posted @ 2022-11-02 21:07 ®Geovin Du Dream Park™ 阅读(23) 评论(0) 推荐(0) 编辑
摘要:/** * 版权所有 2022 涂聚文有限公司 * 许可信息查看: * 描述: * * 历史版本: JDK 17.01 * 2022-09-12 创建者 geovindu * 2022-09-12 添加 Lambda * 2022-09-12 修改:date * 接口类 * 2022-09-12 修 阅读全文
posted @ 2022-11-01 21:50 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示