上一页 1 2 3 4 5 6 7 ··· 65 下一页
摘要: wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.shsudo chmod +x ./dotnet-install.shsudo ./dotnet-install.sh --channel 6.0 echo 'export DOT 阅读全文
posted @ 2023-09-06 20:05 94cool 阅读(313) 评论(0) 推荐(0)
摘要: 容器操作 查看正在运行的容器:docker ps该命令用于列出当前正在运行的容器。 查看所有容器(包括停止的容器):docker ps -a使用该命令可以查看所有容器的列表,包括已经停止的容器。 启动容器:docker start使用该命令可以启动指定ID的容器。 停止容器:docker stop使 阅读全文
posted @ 2023-07-03 09:51 94cool 阅读(346) 评论(0) 推荐(0)
摘要: 有时候镜像在开发测试环境中是可以下载的,但在某些生产环境中是无法访问外网进行镜像的拉取。这时候就只能在测试或者开发环境先保存镜像,然后复制到生产的机器,然后加载到生产本地机器,下面就来介绍下该如何操作。 1、下载镜像到本地 docker pull weijishu/nginx 将镜像下到本地 2、保 阅读全文
posted @ 2023-07-03 09:33 94cool 阅读(304) 评论(0) 推荐(0)
摘要: using System.Diagnostics; using System.Runtime.Versioning; namespace ConsoleApp1 { class Program { [SupportedOSPlatform("windows")] static void Main(s 阅读全文
posted @ 2023-06-08 10:58 94cool 阅读(324) 评论(0) 推荐(0)
摘要: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //去掉标题栏 this.requestWindowFeature(Window.FEATURE_NO 阅读全文
posted @ 2023-04-06 17:15 94cool 阅读(409) 评论(0) 推荐(0)
摘要: 设置Button为透明状态,有两种最简单的方式: 1. 在layout.xml文件中的Button节点下,设置Button的Alpha属性,因为该属性在0~255范围内取值,0表示完全透明,255表示完全不透明; 但是此方法有一个缺点,当设置为0后,Button上的文字也看不见了。所以在项目中使用了 阅读全文
posted @ 2023-03-31 15:08 94cool 阅读(965) 评论(0) 推荐(0)
摘要: from:https://mp.weixin.qq.com/s/yF5h7dslESaa3Gt5rE6IbQ 引言 一、性能怪兽-Nginx概念深入浅出 二、Nginx环境搭建 三、Nginx反向代理-负载均衡 四、Nginx动静分离 五、Nginx资源压缩 六、Nginx缓冲区 七、Nginx缓存 阅读全文
posted @ 2023-03-29 10:02 94cool 阅读(80) 评论(0) 推荐(0)
摘要: from: https://blog.csdn.net/idoits/article/details/125542973 1、部署环境操作系统:windows10 2、服务资源 nginx-1.7.11.3-Gryphon+rtmpModule+Native HLS Playback插件+ffmpe 阅读全文
posted @ 2023-02-27 17:18 94cool 阅读(717) 评论(0) 推荐(0)
摘要: from:https://blog.csdn.net/qq_41339126/article/details/116596465 https://lbs.amap.com/demo/javascript-api/example/marker/replaying-historical-running- 阅读全文
posted @ 2023-02-23 12:12 94cool 阅读(692) 评论(3) 推荐(0)
摘要: from:https://thaddeusjiang.com/blog 背景: 公司项目是 toB 内容管理系统,由于某些不可抗力因素,不得不对应 CKEditor 4。但是 CKEditor 4 并不支持 js 模块,所以不能使用 import。 传统做法,使用 <script> 标签。 // i 阅读全文
posted @ 2023-02-16 15:50 94cool 阅读(937) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 65 下一页