搜索内容

感冒的梵高 的文章
  • torch.max()在三维张量中的使用
    好物分享

    torch.max()在三维张量中的使用

    学voxelnet的代码遇到了max()用于三维向量的问题,网上的资料都是二维的,想了很久,虽然还是不太明白,但还是把思考过程发出来,抛砖引玉,希望有高手指点……
    感冒的梵高 2021-12-21
  • python爬虫 中国大学排名
    好物分享

    python爬虫 中国大学排名

    中国大学排名爬取 下面使用到了 xpath解析技术 import requests from lxml import etree def get_content(url ): '''获取页面代码''' try: he……
    感冒的梵高 2021-12-21
  • 编写一个方法统计出字符串s在字符串src中出现的次数
    好物分享

    编写一个方法统计出字符串s在字符串src中出现的次数

    public class StrTimes { public static void main(String[] args) { String s = "qq"; String src = new Scanner(System.in).next();//……
    感冒的梵高 2021-12-21
  • Linux服务器5 — POLL模型优缺点及服务端代码
    好物分享

    Linux服务器5 — POLL模型优缺点及服务端代码

    POLL模型大体实现流程上与SELECT模型无异 1、POLL模型的利弊 优点: 1)单进程让服务端拥有基本的一对多响应能力。 2)实现较为简单(模型比较轻量) 3)POLL模……
    感冒的梵高 2021-12-21
  • 多库多表动态查询dao
    好物分享

    多库多表动态查询dao

    多库多表动态查询dao import com.alibaba.druid.pool.DruidDataSource; import org.apache.commons.dbutils.DbUtils; import org.apache.commons.dbutils.Quer……
    感冒的梵高 2021-12-21
  • HDLBits刷题_Verilog Language_Alwaysblock1
    好物分享

    HDLBits刷题_Verilog Language_Alwaysblock1

    Since digital circuits are composed of logic gates connected with wires, any circuit can be expressed as some combination of modules and assign stat……
    感冒的梵高 2021-12-21
  • typora : excel 直接复制到typora中
    好物分享

    typora : excel 直接复制到typora中

    1 excel --------> html: http://pressbin.com/tools/excel_to_html_table/index.html Copy your Excel spreadsheet data, and paste it into this text box……
    感冒的梵高 2021-12-21
  • 输入输出流
    好物分享

    输入输出流

    文件 文件 文件就是保存数据的地方,word、视频、音频。文件在程序中是以流的方式存在的 流 数据在数据源和程序(内存)之间经历的路程 输入流 数据从数据……
    感冒的梵高 2021-12-21
  • mysql id位数不够前面补0
    好物分享

    mysql id位数不够前面补0

    1,前面补零 LPAD(str,len,padstr) select LPAD(‘1’, 8, 0) 结果为 00000001 2.后面补0 RPAD(str,len,padstr) select RPAD(‘1’, 8, 0) 结果为10000000 '1'换为……
    感冒的梵高 2021-12-21
  • VirtualBox6.0 安装centos网络配置
    好物分享

    VirtualBox6.0 安装centos网络配置

    背景资料 VirtualBox中有4中网络连接方式:     1. NAT     2. Bridged Adapter     3. Internal     4. Host-only Adapter  VMWare中有三种,其实他跟VMWare ……
    感冒的梵高 2021-12-21