ICode9

精准搜索请尝试: 精确搜索
  • mediapipe 打包exe 加入库2022-04-02 15:02:22

    pyinstaller dome.py --add-data="D:\Program Files\Python39\Lib\site-packages\mediapipe\modules;mediapipe\modules" -F -w     文章  源  https://blog.csdn.net/u012219045/article/details/114841287  

  • [wireshark] 添加someip插件2022-03-26 11:31:33

    增加someip插件的步骤: 1.找到安装目录 我的安装路径为:C:\Program Files\Wireshark 2.右键编辑init.lua 在最后增加如下: *dofile("someip.lua") 3.将someip.lua放到安装目录C:\Program Files\Wireshark 4.查看someip的pcap文件:

  • 6.opengl-EBO索引缓冲对象使用2022-03-19 21:02:13

    1.介绍 如果我们要通过两个三角形来绘制一个正方形,而正方形的顶点只有4个,而两个三角形的顶点却有6个,这意味着有两个顶点是重合了,所以为了避免额外开销,opengl提供了ebo索引缓冲对象(Element Buffer Object)。 2.ebo使用 首先定义顶点数组和索引号数组,代码如下所示: flo

  • IDEA遇到问题npm : 无法加载文件 D:\Program Files\nodejs\node_global\npm.ps1,因为在此系统上禁止运行脚本。2022-03-07 21:01:09

    今天IDEA上Terminal输入npm语句的时候报错:npm : 无法加载文件 D:\Program Files\nodejs\node_global\npm.ps1,因为在此系统上禁止运行脚本。 后面解决了,参考链接是:https://blog.csdn.net/weixin_43336281/article/details/107064733

  • 转载 Program size: Code, RO-data , RW-data, ZI-data 学习 (RW + ZI就是你的程序总共使用的RAM字节数)2022-02-25 17:03:56

    Keil 编译内存信息:Program size: Code, RO-data , RW-data, ZI-data 学习     Keil 编译内存信息:Program size: Code, RO-data , RW-data, ZI-data 学习   一、用keil编译程序后会打印对应的内存分配信息,例如如Program Size: Code=97782 RO-data=9578 RW-data=2992 Z

  • window系统安装 java 环境2022-02-25 14:03:58

    一、下载JDK 1.首先需要下载java开发工具包JDK,下载地址:http://www.oracle.com/technetwork/java/javase/downloads/index.html 2.进行安装,本机为64位,所以安装了64位版本 二、配置环境变量 1、高级系统设置 win7     win10    2、环境变量 3、在"系统变量"中设置属性,JAVA_HO

  • 'chromedriver' executable needs to be in PATH2022-02-25 10:02:03

    1、下载的chromedriver和chrome版本对应 2、chromedriver.exe 需放到chrome文件下 和python 的根目录下 例如G:\tools\Python310   3、查看桌面中chrome所在文件位置  C:\Program Files\Google\Chrome\Application 4、配置环境变量 path 中添加该路径  

  • COBOL2022-02-25 01:03:15

    COBOL (/ˈkoʊbɒl, -bɔːl/; an acronym for "common business-oriented language") is a compiled English-like computer programming language designed for business use. It is imperative, procedural and, since 2002, it is an object-oriented language. COB

  • 方法的递归2022-02-21 16:02:01

    1.方法的递归 自己调用自己 static void Main(string[] args) { //Console.WriteLine("Hello World!"); Program pr = new Program(); pr.Count(3); } public void Count(int intVal) { i

  • 【C#异常处理】堆栈溢出2022-02-19 19:32:57

    栈溢出:死循环、递归调用,C# 的堆栈大小对于 32 位进程只有 1 MB,对于 64 位进程只有 4 MB如下: Main(args); static void Main(string[] args) { Main(args); } /* 输出: Stack overflow. Repeat 24090 times: -------------------------------- at Program.<<Main>$>g__

  • Core dump2022-02-18 09:35:20

    抄点不一样的:https://wiki.archlinux.org/title/Core_dump $ pgrep -f firefox 2071 firefox $ gdb -p 2071 (gdb) generate-core-file Saved corefile core.2071 (gdb) quit In computing, a core/memory/crash/system dump consists of the recorded state of the working mem

  • Creating .deb to install bash script program2022-02-15 23:31:08

    https://stackoverflow.com/questions/12288357/creating-deb-to-install-bash-script-program   Basically (install and) run dh-make to set up the debian/ directory, edit the generated files (mainly remove the many you do not need, and fill in a package descrip

  • bat更换图片提取程序2022-02-15 12:34:57

    @echo onset prog_jk=AutoRunProgramTZTQ.exeset pa=%cd%set dir=tztqset program=ConvertMp4ToDadset suffix=.exeset suf_jk=监控程序taskkill /F /IM %prog_jk%echo %program%%%i%suffix%for /l %%i in (1,1,6) do taskkill /F /IM %program%%%i%suffix%for /l %%i in (1,1,6)

  • 【C++学习】- Recursion(递归)2022-02-15 12:32:33

    Resurcion The usual method is to make the recursive call part of an if statement. Wtih luck or foresight, tesst eventually becomes false, and the chain of calls is broken. void recurs(argumentlist) { statements1 if (test) recurs(arguments) statements

  • 箅略授权 Requirement 扩展2022-02-15 11:02:42

    1、定义 IUserService 接口接收传入数据          2、定义 UserService 类实现 IUserService 接口         3、定义 QQEmailRequirement 类实现 IAuthorizationRequirement 接口(空接口)       4、定义 QQHandler 类继承 AuthorizationHandler<QQEmailRequirement

  • boost 操作系统相关的库- program_options系统 (命令行,配置文件,环境变量中解析)2022-02-14 18:34:43

    program_options具体含义 https://blog.csdn.net/weixin_39766005/article/details/121790676 以下功能:  首先从命令行解析,如果没有设置,则从配置文件中解析,如果配置文件也没设置,则从环境变量中解析 #include<iostream> #include<cstdlib> #include<string> #include<vector> #in

  • 按照TomCat版本重新配置web.xml文件2022-02-09 22:34:00

    在TomCat的目录:C:\Program Files\Apache Software Foundation\Tomcat 9.0_Tomcat9.2\webapps\ROOT\WEB-INF下的web.xml文件,把默认的配置改成tomcat版本的配置:(删除掉没有用的最简单的版本) <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jc

  • #systemverilog# 关键字之 program2022-02-09 18:01:42

    一  概览 关键字 program ,是在 systermverilog 中才引入的。通常,module 是Verilog世界中的基本构建块。module 中可以包含其他模块的层次结构module 、wire、任务和函数声明,以及过程语句 always 或者 initial  。这个结构对于描述硬件非常有效。然而,对于测试台来说,重点不在

  • html解析图片url,并用继承Thread类的多线程下载2022-02-07 16:04:48

    html解析图片url,并用继承Thread类的多线程下载 pom依赖Java代码 把对应网页的img元素,通过继承Thread类的多线程下载下来。 pom依赖 <dependencies> <!--实现文件下载--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</a

  • CSAPP:Machine Level Programming part 12022-02-07 15:01:34

    Machine Level Programming machine code <-> assembly code code -> low level, how to generate by GCC intel 64(x86) instruction set(hardware designers provide to users) register Turning C into object code C program(.c) -(Compiler)-> A

  • pycaret 使用 conda install pycaret 安装2022-02-07 10:03:12

    不知道你有没有遇到我的如下问题:使用pip 安装pycaret: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pycaret 出现如下报错: (本人使用anconda虚拟环境) ERROR: Command errored out with exit status 1:    command: 'D:\Anaconda\python.exe' 'D:\Anaconda\lib\sit

  • QML for android开发环境配置2022-02-07 10:01:53

    D:\Program Files\Java\jdk-16.0.1\ jdk 安装好文 变量名:JAVA_HOME 变量值:C:\Program Files\Java\jdk1.8.0_144 变量名:CLASSPATH 变量值:.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar 注意%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar前面还有一个.; https://blog.csdn.net/weixi

  • (三)node 命令行 inquirer2022-02-06 16:30:49

    Inquirer:问答式 inquirer.js —— 一个用户与命令行交互的工具_xhsdnn的专栏-CSDN博客_inquirer #! /usr/bin/env node const program = require('commander') const shell = require('shelljs') const path = require('path') const inquirer = require('inqui

  • ELF(WIKI) && ELF格式分析实践【转】2022-02-04 19:03:39

    转自:https://blog.csdn.net/happylzs2008/article/details/106611046 https://wiki.osdev.org/Executable_and_Linkable_Formathttps://www.cnblogs.com/chengxuyuancc/p/3474623.html http://blog.sina.com.cn/s/blog_b4ef897e0102vmxt.html   ELF格式分析实践https://www.jians

  • ELF【转】2022-02-04 19:01:18

    转自:https://wiki.osdev.org/ELF ELF (Executable and Linkable Format) was designed by Unix System Laboratories while working with Sun Microsystems on SVR4 (UNIX System V Release 4.0). Consequently, ELF first appeared in Solaris 2.0 (aka SunOS 5.0), which is

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

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

ICode9版权所有