ICode9

精准搜索请尝试: 精确搜索
  • unity 发布webGL,shader丢失解决方法2022-07-18 16:02:47

    自定义的 Shader 都要加入到Always Included Shaders中。防止打包之后丢失shader。 【注意事项】 Always Included Shaders:Edit 》 Proejct Settings 》 Graphics 》 Always Included Shaders  

  • zabbix snmp监控(七)2021-10-08 14:34:21

    SNMP初步认识 snmp是简单网络管理协议。 使用snmp优点:snmp属于轻量级,而且通过snmp进行监控不需要安装客户端。 缺点:不太好自定义监控项,在系统层面,系统开放什么,它才能监控什么。   开始安装配置 yum install net-snmp net-snmp-utils     vim /etc/snmp/snmpd.conf #开放所有权

  • python点到向量的距离,夹角2021-10-04 12:35:05

    import numpy as np def angle(v1, v2): dx1 = v1[2] - v1[0] dy1 = -(v1[3] - v1[1]) dx2 = v2[2] - v2[0] dy2 = -(v2[3] - v2[1]) angle1 = math.atan2(dy1, dx1) angle1 = -int(angle1 * 180 / math.pi) if angle1 < 0: angle1 =

  • 【已解决】kafka生产消报错 request included a message larger than the max message size the server will accept.2021-06-21 16:55:57

    文章目录 问题描述 解决方案 问题描述 ERROR Error when sending message to topic xhs-test-topic with key: null, value: 1006615 bytes with error: (org.apache.kafka.clients.producer.internals.ErrorLoggingCallback) org.apache.kafka.common.errors.RecordTooLarg

  • open-falcon ---安装Dashboard时候报错2021-04-11 14:54:57

     在部署open-falcon环境过程中,安装Dashboard时候报错"SSLError: The read operation timed out"。如下:[root@open dashboard]# ./env/bin/pip install -r pip_requirements.txt Downloading/unpacking Flask==0.10.1 (from -r pip_requirements.txt (line 1))   Down

  • warning:In file included from...2021-03-27 11:00:43

                                                   图一:新建工程报错                                      图二:重新选择编译器版本                                                     图三:重新

  • Tower Defense Basic Pixel Art Pack 4.02021-01-26 12:02:23

    Tower Defense Basic Pixel Art Pack 4.0 This pack contains the basic objects to start building your own Tower Defense game.This pack includes 3 different towers: Knight Tower:-It can create 3 knights.-It can update the knights damage.-It can add a shield t

  • 使用cacti监控linux server的接口流量2020-05-26 19:04:50

    1、环境准备cacti服务器一台linux被监控机一台2、linux server 安装net-snmpyum install -y net-snmpsystemctl enable snmpd  # 设置开机自启 编辑配置文件vi  /etc/snmp/snmpd.conf  找到这一行: view systemview included .1.3.6.1.2.1.1 view systemview included .1.3.6

  • python根据坐标点的坐标计算角度2019-12-17 15:58:51

    1.由点转换得到向量 2.由向量计算夹角 参考文档:https://www.jb51.net/article/164697.htm   import math #A(1,-3)B(5,-1)C(4,1)D(4.5,4.5) #AB = [1,-3,5,-1] AB = [5,-1,1,-3] CD = [4,1,4.5,4.5] def angle(v1, v2): dx1 = v1[2] - v1[0] dy1 = v1[3] - v1[1] dx2 =

  • python调用jenkinsapi2019-10-10 10:07:02

    在通过python 调用jenkinsapi的时候,需要对一些作业进行定时对构建     报错: <title>Error 403 No valid crumb was included in the request</title>\n</head>\n<body><h2>HTTP ERROR 403</h2>  原因是在jenkins的安全配置里勾选里下面这个选项,在预防跨站点请求,将其勾掉即可。

  • Python字符串的截取原理,下标的位置图示2019-09-22 17:53:36

    Python字符串截取时总是有些糊涂,从官网上找到一个图示,理解Python字符串是如何标记,的具体含义图示如下:   +---+---+---+---+---+---+ | P | y | t | h | o | n | +---+---+---+---+---+---+ 0 1 2 3 4 5 6-6 -5 -4 -3 -2 -1   >>> word[:2] # character from

  • 无需安装Python,就可以在.NET里调用Python库2019-06-14 16:42:42

    Pythonnet这个屌爆的项目的出现,使得我们可以用一种新的方式,让C#可以和Python之间进行互操作。但是它的设置和部署可能有点问题,真的是这样吗? 本文我会介绍Python.Included这个项目,它不但优雅的解决了这个问题,并且让.NET开发者可以轻松愉快的让.NET与Python进行互操作。作为概念的证

  • Idea添加Jetty时提示JMX module is not included2019-04-04 13:47:58

    添加自己的jetty时弹出框提示JMX module is not included, 此时,我们应该编辑jetty根目录下 start.ini 添加 "--module=jmx" 原因:因为在9.07的时候默认情况是设置了 "OPTIONS=jmx",换到 9.1版本就删除了 ps:jmx是一个为应用程序植入管理功能的框架(通俗点说就是管理配置用的)

  • In file included from adlist.c:34:0: zmalloc.h:50:31: 致命错误:jemalloc/jemalloc.h:没有那个文件或目录2019-02-07 17:47:44

    问题: In file included from adlist.c:34:0:zmalloc.h:50:31: 致命错误:jemalloc/jemalloc.h:没有那个文件或目录 解决: make MALLOC=libc

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

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

ICode9版权所有