ICode9

精准搜索请尝试: 精确搜索
  • 全局配置 moment.js(vue2中使用)2022-06-27 18:02:58

    Moment.js  JavaScript 日期处理类库 时间格式处理绕不过的一个库   http://momentjs.cn/ 1、下载:(npm下载) npm install moment   2、查看:下载完成后在项目最外层的 package.json 内                 3、引入:项目的main.js文件内引入并挂在全局          4、

  • .net 之邮件发送帮助类 MailKit 的使用2022-06-27 14:04:22

      1. nuget 安装 MailKit 的引用 源码: https://github.com/jstedfast/MimeKit   2.MailKitHelper 的具体代码如下, public class MailKitHelper { /// <summary> ///发送邮件 /// </summary> /// <param name="toAddressList"&g

  • 【Linux】centos7安装nginx并配置web前端环境。2022-06-27 14:01:14

    参照: https://segmentfault.com/a/1190000015431830 https://juejin.cn/post/6844904134345228301 https://juejin.cn/post/6990643580809248781 1.安装nginx ~sudo yum install nginx   2.启动nginx ~ systemctl start nginx 3.修改nginx路径配置,/etc/nginx/nginx.conf,我自己的web

  • linux grep命令的-P和-o选项的作用2022-06-27 11:00:42

    linux grep命令的-P和-o选项的作用 # grep 命令的选项有哪些? Usage: grep [OPTION]... PATTERN [FILE]...Search for PATTERN in each FILE or standard input.PATTERN is, by default, a basic regular expression (BRE).Example: grep -i 'hello world' menu.h main.c Regexp se

  • 如何学好数据库2022-06-27 04:00:25

    网站 菜鸟教程:https://www.runoob.com/sql/ W3schools:https://www.w3schools.cn/sql/ 书籍 数据库系统概念_第6版 练习 LeetCode/牛客

  • sql server数据去重复的四种方法2022-06-24 20:31:40

    参考:https://www.zjh336.cn/?id=241 sql查询数据,可能会有重复的数据,那就要用到去重复的方法了,下面讲讲几种去重复的方法。

  • Unity自定义资源导入器(unity实验性功能)2022-06-24 10:02:03

    官方链接:https://docs.unity.cn/cn/2019.4/Manual/ScriptedImporters.htmlhttps://docs.unity3d.com/cn/2018.4/Manual/ScriptedImporters.html(Scripted Importer)https://docs.unity.cn/cn/2019.4/ScriptReference/Experimental.AssetImporters.AssetImportContext.html(AssetI

  • Java 进阶P-11+P-122022-06-23 20:34:18

    文本流 在流上建立文本处理 PrintWriter pw = new PrintWriter()(   new BufferedWriter(     new Out put StreamWriter(       new File OutputStream("avc.txt")     )   ) ); Reader 常用的是Buffered Reader read Line(); Line Number Reader 可以得到行号

  • 将docker镜像仓库源设置为国内加速源2022-06-23 12:05:56

    一、创建daemon.json文件 sudo touch /etc/docker/daemon.json 二、在daemon文件中增加如下内容 { "registry-mirrors": [ "https://docker.mirrors.ustc.edu.cn", "https://hub-mirror.c.163.com", "https://registry.docker-

  • Github 仓库 Action workflow2022-06-22 23:05:10

    ... 参考文档: https://docs.github.com/cn/actions/quickstart https://docs.github.com/cn/actions/learn-github-actions/understanding-github-actions

  • Castle.Windsor2022-06-21 22:03:10

    相关资源 https://github.com/castleproject/Windsor https://www.bookstack.cn/read/Windsor-doc-cn/README.md 快速开始 IWindsorContainer container = new WindsorContainer(); // 注册服务 container.Register(Component.For<Hello>()); container.Register(Component.For

  • 多点触控模拟note2022-06-21 21:05:23

    https://appium.io/docs/cn/writing-running-appium/touch-actions/   1、java:https://blog.csdn.net/weixin_43291944/article/details/97003877   2、python:https://juejin.cn/post/6920762623394840583 from appium.webdriver.common.multi_action import MultiAction fro

  • vue2升级vue3:vue2 vue-i18n 升级到vue3搭配VueI18n v92022-06-21 20:34:03

    项目从vue2 升级vue3,VueI18n需要做适当的调整。主要是Vue I18n v8.x 到Vue I18n v9 or later 的变化,其中初始化: 具体可以参看:https://vue-i18n.intlify.dev/guide/migration/breaking.html Vue I18n v8.x: import Vue from 'vue' import VueI18n from 'vue-i18n' Vue.use(

  • RG500U-CN2022-06-21 19:35:09

    移远通信 RG500U-CN 和 RM500U-CN 模块支持 QuecOpen®方案;QuecOpen®是开源的基于 Linux 的嵌入式开发平台,可简化 IoT 应用的软件设计和开发过程。 wan 数据拨号相关 API - nw 蜂窝网络管理相关 API - dm 设备信息管理相关 API - voice 语音相关 API - sms 短信相关 API - sim S

  • DNS域名服务器2022-06-21 11:02:44

    那么DNS是如何进行工作的?     DNS其实是一组服务器,在这组服务器中,首先有根DNS服务器,会告诉你顶级域名的DNS服务器地址,例如google.cn,会让你去.cn顶级域名DNS服务器中进行查询,到了.cnDNS服务器之后,会根据你的网址,让你去google.cn的权威服务器中进行数据查询。 每一次网络请求,

  • 任务栏显示实践秒数2022-06-21 05:31:07

    第一步:以因为格式在如下加入:ss 第二步:win+r输入regedit打开该软件,进入如下目录 第三步: 右击Advanced,在右侧窗口中新建一个DWORD(32位)值,命名“ShowSecondsInSystemClock”,并赋值为1,然后重新启动电脑。 参考: https://product.pconline.com.cn/itbk/software/win10/1385/1385307

  • Dictionary绑定到ComboBox显示值,实际值2022-06-20 23:36:15

    private void TestAndSetForm_Load(object sender, EventArgs e) { Dictionary<string, string> dic = new Dictionary<string, string>(); BindingSource bs = new BindingSource(); dic["广东省"] = "http://mk.gd.soa.csg.cn";

  • pip install 很慢2022-06-20 11:05:43

    pip下载python库太慢怎么办? - 知乎 (zhihu.com) Python安装库太慢?配置好这个速度飞起 - 知乎 (zhihu.com) 经常听到初学python的小伙伴在抱怨,python安装第三方库太慢,很容易失败报错,如果安装pandas、tensorflow这种体积大的库,简直龟速。 为什么pip会很慢? 先来了解下pip,pip是一个

  • 今天开始学习go2022-06-19 19:37:05

    1、下载安装包进行下一步安装    2、激活步骤看下面两个链接 http://web.52shizhan.cn/ide?k=goland https://mp.weixin.qq.com/s/8Bkqj-mXcDXXGtEOk3xziQ 3、go env pei配置    4、gopath、屏幕窗口大小、字体、鼠标滚轮设置                5、

  • Redis如何实现高可用2022-06-19 19:33:58

    主从复制、哨兵机制:https://blog.csdn.net/itcats_cn/article/details/82428716 持久化:https://blog.csdn.net/itcats_cn/article/details/82432530

  • windows安装VM及ubuntu2022-06-18 12:01:35

    一、官网下载安装 官网地址:https://www.vmware.com/cn.html 二、安装虚拟机 镜像下载地址: 清华大学开源镜像站 https://mirrors.tuna.tsinghua.edu.cn/ 三、安装ubuntu 点击创建新的虚拟机 选择你ios镜像的位置 选择虚拟机安装的位置 尽量选大一点,防止后期扩容麻

  • 音视频浏览器兼容性2022-06-17 17:01:00

    资料 说明 可以同时发布多个音频轨道,SDK 会自动混音。(Safari 12 之前的版本不支持混音,无法使用此特性。) https://docs.agora.io/cn/Interactive Broadcast/publish_and_subscribe_web_ng?platform=Web#发布音视频

  • 买股票的最佳时机2022-06-17 14:36:40

       https://leetcode.cn/problems/best-time-to-buy-and-sell-stock/ func maxProfit(prices []int) int { n:=len(prices) vis:=make([]int,n+1) for i:=n-1;i>=0;i--{ if prices[i]>=vis[i+1]{ vis[i]=prices[i] }else{

  • 通过winbind在centos7上加域2022-06-16 20:05:23

    目录通过winbind在centos7上加域基础环境centos7 的操作效果 通过winbind在centos7上加域 基础环境 域控制器: 版本:windows server 2019 数据中文版 IP:192.168.80.251 根域名:bresee.cn centos7: # 最小化安装,永久关闭防火墙和selinux systemctl disable --now firewalld sed -i 's/S

  • 如何快速破解关注微信公众号才能阅读全文的技术文章 All In One2022-06-16 01:35:56

    如何快速破解关注微信公众号才能阅读全文的技术文章 All In One shit 引流方式

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有