码迷,mamicode.com
首页 > 2021年04月06日 > 全部分享
安装Adobe Photoshop CC修改默认安装磁盘
1、修改默认安装磁盘 打开安装根目录下的resources文件夹内,找到Config文件将<ShowInstallOptions>false</ShowInstallOptions>改为<ShowInstallOptions>true</ShowInstallOptions> 2、安装完成后打开Ph ...
分类:其他好文   时间:2021-04-06 14:21:42    阅读次数:0
jquery 事件触发二
一 动画效果 1. show(3000); 3秒这后出来2. hide(3000);3秒后隐藏3. toggle(3000); 反着来,如果之前是隐藏,现在就是出现4. slideDown(3000); 宽度不变,高度变化 卷拉门5. slideUp(3000); 6. $('.c1').fadeI ...
分类:Web程序   时间:2021-04-06 14:21:28    阅读次数:0
Electron常用总结
1. 避坑总结 版本10以前默认开启webPreferences的enableRemoteModule,版本10以后需要手动开启,默认为false 2. 常用模块 remote remote 模块为渲染进程(web页面)和主进程通信(IPC)提供了一种简单方法 shell shell 模块提供与桌面 ...
分类:其他好文   时间:2021-04-06 14:21:16    阅读次数:0
Shortcut Keys Configure of Typora
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:其他好文   时间:2021-04-06 14:21:02    阅读次数:0
AI基础架构Pass Infrastructure
AI基础架构Pass Infrastructure Operation Pass OperationPass : Op-Specific OperationPass : Op-Agnostic Dependent Dialects Initialization Analysis Management ...
分类:其他好文   时间:2021-04-06 14:20:42    阅读次数:0
Python3.7源码编译安装
1. 下载源码包 2. 上传服务器并解压到指定位置 3. 安装依赖库 ~]# yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel libffi-deve ...
分类:编程语言   时间:2021-04-06 14:20:30    阅读次数:0
CentOS7自定义镜像
1. 安装需要的软件 ~]# yum install -y vim net-tools sysstat createrepo mkisofs rsync syslinux 2. 创建目录及文件拷贝 创建本地yum源 ~]# mount /dev/sr0 /mnt #挂载镜像或者U盘,如果是U盘就是/ ...
分类:其他好文   时间:2021-04-06 14:20:16    阅读次数:0
LDAP3
### [RFC4511 Result Code](https://datatracker.ietf.org/doc/rfc4511/?include_text=1) ``` success (0), operationsError (1), protocolError (2), timeLimit ...
分类:其他好文   时间:2021-04-06 14:19:59    阅读次数:0
GitLab CI/CD入门
在项目的根目录下放置.gitlab-ci.yml文件来达到持续集成和部署的目的。 .gitlab-ci.yml被runner进程读取,从而完成CI/CD的任务。默认情况下有三个阶段的流水线阶段:build、test、deploy。 简而言之,具体的CI所需要的步骤就两步: 添加.gitlab-ci. ...
分类:其他好文   时间:2021-04-06 14:19:41    阅读次数:0
Spring Cloud 升级之路 - 2020.0.x - 1. 背景知识、需求描述与公共依赖
1. 背景知识、需求描述与公共依赖 1.1. 背景知识 & 需求描述 Spring Cloud 官方文档说了,它是一个完整的微服务体系,用户可以通过使用 Spring Cloud 快速搭建一个自己的微服务系统。那么 Spring Cloud 究竟是如何使用的呢?他到底有哪些组件? spring-cl ...
分类:编程语言   时间:2021-04-06 14:19:20    阅读次数:0
[CF864E] Fire - 背包dp
某人的房子着火了,他想从大火中带走价值总和尽量多的物品,每次他只能带走一个,分别给出挽救某物品需要的时间t,该物品开始燃烧的时间d(在d时间开始燃烧就不能再挽救该物品了),该物品的价值p。约束:n(1<=n<=100) ti(1<=ti<=20),di(1<=di<=2000),pi(1<=pi<=... ...
分类:其他好文   时间:2021-04-06 14:18:55    阅读次数:0
github.com 慢
原来命令: git clone https://github.com/fanux/sealos 改为这个: git clone https://github.com.cnpmjs.org/fanux/sealos 变化:增加了".cnpmjs.org" ...
分类:其他好文   时间:2021-04-06 14:18:29    阅读次数:0
个人瞎搞之 typescript获取指定位置处的参数类型
type GetIndexType_0<T> = T extends [infer T0, ...infer TS] ? T0 : never; type GetIndexType_1<T> = T extends [infer T0, infer T1, ...infer TS] ? T1 : n ...
分类:其他好文   时间:2021-04-06 14:18:10    阅读次数:0
[LeetCode] 781. Rabbits in Forest
In a forest, each rabbit has some color. Some subset of rabbits (possibly all of them) tell you how many other rabbits have the same color as them. Th ...
分类:其他好文   时间:2021-04-06 14:17:51    阅读次数:0
滑动窗口 (单调队列)
题目描述: 给定一个大小为 n≤106n≤106 的数组。 有一个大小为 kk 的滑动窗口,它从数组的最左边移动到最右边。 你只能在窗口中看到 kk 个数字。 每次滑动窗口向右移动一个位置。 以下是一个例子: 该数组为 [1 3 -1 -3 5 3 6 7],kk 为 33。 窗口位置最小值最大值 ...
分类:其他好文   时间:2021-04-06 14:17:23    阅读次数:0
vue技能总结
1:传值 隔代传值通过v-bind = “$attrs”. 2:传方法 v-on=“$listeners” 就可以在子组件调用父组件的方法 ,this.$emit("methodsFromParent") 3:子传父 slot 孩子: <slot name="aa" :foo="'foooooooo ...
分类:其他好文   时间:2021-04-06 14:17:01    阅读次数:0
JSON学习
什么是JSON JSON(JavaScript Object Notation, JS 对象标记) 是一种轻量级的数据交换格式,目前使用特别广泛。 采用完全独立于编程语言的文本格式来存储和表示数据。 简洁和清晰的层次结构使得 JSON 成为理想的数据交换语言。 易于人阅读和编写,同时也易于机器解析和 ...
分类:Web程序   时间:2021-04-06 14:16:43    阅读次数:0
234条   上一页 1 ... 8 9 10 11 12 13 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!