技术专区

  • 小红书数据 小红书爬虫 小红书接口 xhs

    小红书数据 小红书接口 小红书api(小红书爬虫 xhs xiaohongshu 红书) 最新小红书APP接口稳定运行,主流接口都已部署,支持并发请求! 只抓取公开数据供作学习用途,不做引流上赞上粉业务,如有侵权,联系删除,谢…

    编程笔记 2022年8月22日
  • vue3项目-小兔鲜儿笔记-01-项目初始化

    1.pinia基础 store/modules/user.ts import { defineStore } from 'pinia' // 用户模块 const useUserStore = defineStore('user', { state: () => { return { // 用户信息 profile: {} as UserProfile } }, act…

    编程笔记 2022年8月22日
  • 通过 css3 自定义、修改滚动条的样式

    ::-webkit-scrollbar { width: 4px !important; background-color: #012d58 !important; border-radius: 4px !important; } ::-webkit-scrollbar-thumb { border-radius: 4px !important; background-image: linear…

    编程笔记 2022年8月22日
  • MyBatisPlus 日常使用

    1.maven引入  <!--mybatis-plus-->         <dependency>             <groupId>com.baomidou</groupId>             <artifactId>mybatis-plus-boot-starter</artifactId>   …

    编程笔记 2022年8月22日
  • PowerShell教程 - 数值管理(Working With Number)

    更新记录转载请注明出处。2022年8月22日 发布。2022年8月18日 从笔记迁移到博客。 数值管理(Working With Number) 生成随机数 Get-Random 实例:限制范围:注意:包括最小数,但不包括最大数 Get-Random -Minimum…

    智能运维 2022年8月22日
  • PowerShell教程 - 进程管理(Process Management)

    更新记录转载请注明出处。2022年8月22日 发布。2022年8月18日 从笔记迁移到博客。 进程管理(Process Management) 开启进程 Start-Process 结束进程 Stop-Process 等待进程 Wait-Process 获得进程 Get-Process 实…

    智能运维 2022年8月22日
  • PowerShell教程 - 用户和组管理(User && Group)

    更新记录转载请注明出处。2022年8月22日 发布。2022年8月18日 从笔记迁移到博客。 用户和组管理(User && Group) 获得计算机本地用户 Get-LocalUser 获得计算机本地组 Get-LocalGroup

    智能运维 2022年8月22日
  • 第十章 对象的示例化内存布局与访问定位

    遍地都是月光,可月亮只有一个 1.对象的实例化 创建对象的方式 new:最常见的方式、单例类中调用getInstance的静态方法、XXXFactory的静态方法。 Class的newInstance方法:反射的方式,在JDK9里面被标记为过时的方…

    智能运维 2022年8月22日
  • VMware虚拟机迁移到openstack平台

    1.检查内核是否支持virtio驱动 grep -i virtio /boot/config-$(uname -r) 2.如果内核没有virtio驱动需要指定virtio驱动 cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak mkinitrd -f --wi…

    智能运维 2022年8月22日
  • windows创建SSH key

    安装Git for windowshttps://git-scm.com/download/win 创建密钥对 打开命令行, 输入以下命令$ ssh-keygen -t rsa -C "ZhangSan<youremail@example.com>" -f ZhangSan-Usage 在密钥中有一个注释字段,用-C (…

    智能运维 2022年8月22日