ICode9

精准搜索请尝试: 精确搜索
  • Android各系统版本特性导致的问题(不定期更新ing)2022-02-07 16:31:34

    1.java.lang.IllegalStateException:Only fullscreen opaque activities can request orientation Android8特性,原因也给得很清楚了,是当前Activity的Theme设置的透明主题,单单设置透明主题是没问题的,但设置了透明主题又设置了方向,就会异常了。 解决办法是,二者删除其一    

  • Sublime Text4 安装与配置记录2022-02-07 15:33:28

    Sublime Text作为一款优质的Code编辑器,已更新至第4个版本,本文记录关于Sublime Text 4【版本4126】的安装、汉化,以及常用配置方法。 安装 访问官网下载安装包:https://www.sublimetext.com/ 点击下一步以进行安装,直到安装成功 汉化 打开Sublime Text,使用快捷键【Ctrl+Shift

  • openwrt出现read only问题2022-01-31 23:02:52

    由于一不小心安装各种包,目录/ 满了 overlayfs:/overlay 4.1M 4.0M 100.0K 98% / 整个openwrt文件系统变成read only overlayfs:/overlay on / type overlay (ro,noatime,lowerdir=/,upperdir=/overlay/upper,workdir=/overlay/work) 查看dmesg [ 9.002750

  • 从SQL Server数据库导出SQL语句2022-01-20 10:04:55

    不同于直接 备份/恢复 或者 导入/导出 数据库操作. 新版本SQL Server客户端中还可以生成相对应的SQL语句. 非常方便与查看和与其他人共享. 连接上数据库后, 右击数据库, 选择 Generate Scripts …。 选择要导出的内容, 可以多选, 然后下一步。 接下来, 选择要导出的路径, 然后

  • Error:Rule can only have one resource source2022-01-18 15:01:54

     ERROR  Error: Rule can only have one resource source (provided resource and test + include + exclude) in {  "type": "javascript/auto",  "include": [    {}  ],  "use": []} 如果直接npm i -D webpack,则安装的是webpack@5,但是vue-c

  • 前端网络安全——Cookies2022-01-16 10:01:59

    一、Cookies特性 1、前端数据存储 2、后端通过http头设置 3、请求时通过http头传给后端 4、前端可读写 5、遵守同源策略   二、Cookies内容 1、域名 2、有效期,删除cookies是通过更改有效期来实现 3、路径,可以设置指定页面路径层级使用 4、http-only,只提供给http协议使用,即只在发

  • 第二十六章 Centos7下Docker安装Mariadb2022-01-14 14:34:26

    一、查找Mariadb镜像 [root@staging ~]# docker search mariadb:10.0.26 二、拉取Mariadb镜像 [root@staging ~]# docker pull mariadb:10.0.26 三、运行Mariadb [root@staging ~]# docker run \ -itd \ -p 13306:3306 \ -v /data2/mariadb/conf:/etc/mysql/conf.d \ -v /

  • Elasticsearch数据不能写入问题解决方案2022-01-13 15:35:14

    报错起因: 同步数据到es中发生异常,日志报错写入索引异常,报错情况如下 org.elasticsearch.cluster.block.ClusterBlockException: blocked by: [FORBIDDEN/12/index read-only / allow delete (api)]; ElasticSearch进入“只读”模式,只允许删除,ES说明文档中有写明,当ES数据所在目

  • virtualBox + centos7 设置host-only模式静态ip2022-01-07 21:34:42

    cd /etc/sysconfig/network-scripts目录下,会看到存在ifcfg-enp0s3文件,复制一份并修改名称为ifcfg-enp0s8,接下来编辑ifcfg-enp0s8,最终的文件内容如下:

  • 2022-2023学年英语周报七年级第28期答案及试题2022-01-07 16:35:18

    进入查看:2022-2023学年英语周报七年级第28期答案及试题   Considerable diversity in children's oral and written language experiences occurs in these years. In home and child care situations, children go through many different resources and types and degrees of s

  • VirtualBox的网络接入模式解释 Net Host-Only Bridged...2022-01-06 23:01:43

    NAT模式:最简单的实现虚拟机上网的方式,无需配置,默认选择即可接入网络。 虚拟机访问网络的所有数据都是由主机提供的,虚拟机访问网络是先通过VirtualBox转换后再发送出去的,数据接收也是先由VirtualBox接收后再转换发送到虚拟机上的,访问速度较慢;虚机可以直接访问主机,主机不能直接

  • 马尔科夫链2022-01-06 16:35:50

    最重要性质: 未来状态  只依赖于当前状态  ,而不受  这些过去状态的影响 (the future depends on the past only through the present)   转移概率满足   乘法规则特性:  

  • Windows Batch: Remove file extension2022-01-06 10:03:46

    You can use %%~nf to get the filename only as described in the reference for for: @echo off for /R "C:\Users\Admin\Ordner" %%f in (*.flv) do ( echo %%~nf ) pause The following options are available: Variable with modifier Descriptio

  • JMeter-控制器2022-01-05 18:04:55

    常用控制器: 1.仅一次控制器(Once Only Controller)       2.循环控制器(Loop Controller)       3.如果(If)控制器(If Controller)           4.ForEach控制器(ForEach Controller)       5.While控制器(While Controller)  

  • qt 5.15.0 configure --help2022-01-04 16:32:59

    如何配置QT安装的?./configure --help + cd qtbase + /home/deyun/download/qt-everywhere-src-5.15.0/qtbase/configure -top-level --help Usage: configure [options] [assignments] Configure understands variable assignments like VAR=value on the command line. Each u

  • 卷积神经网络AlexNet VGG ResNet DenseNet ShuffleNet MobileNet GhostNet EfficientNet RepVGG2021-12-28 22:58:55

    卷积神经网络AlexNet VGG ResNet DenseNet ShuffleNet MobileNet GhostNet EfficientNet RepVGG 1.ResNet2.DenseNet3.ShuffleNet4.MobileNet5.GhostNet6.EfficientNet7.RepVGG8.BN,SE, 【图像去噪 paper 系列 (1) (2)】 【文档图像二值化数据集 databases】 【文档图像

  • Fiddler抓包-只抓APP的请求2021-12-25 19:33:04

      ​ fiddler抓手机app的请求,估计大部分都会,但是如何只抓来自app的请求呢? 把来自pc的请求过滤掉,因为请求太多,这样会找不到重要的信息了。 环境准备: ​   1.电脑上已装fiddler   2.手机和电脑在同一局域网   一、设置   1.fiddler>Tool

  • Failed to open/create the internal network ‘HostInterfaceNetworking-VirtualBox Host-Only Ethernet2021-12-25 17:31:59

    win11上通过vagrant up启动虚拟机出现以下错误 Stderr: VBoxManage.exe: error: Failed to open/create the internal network ‘HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter’ (VERR_INTNET_FLT_IF_NOT_FOUND). VBoxManage.exe: error: Failed to attac

  • SELECT list is not in GROUP BY clause and contains nonaggregated2021-12-25 13:34:02

      【问题】 【原因】 MySQL 5.7.5及以上功能依赖检测功能。如果启用了ONLY_FULL_GROUP_BY SQL模式(默认情况下),MySQL将拒绝选择列表,HAVING条件或ORDER BY列表的查询引用在GROUP BY子句中既未命名的非集合列,也不在功能上依赖于它们。(5.7.5之前,MySQL没有检测到功能依赖关系,默认情况

  • VirtualBox 同时添加 NAT 和 Host-Only 网卡出现无法上网的情况2021-12-22 07:33:00

    如果网卡1是 NAT,网卡2是 Host-Only,可以 ping 通 baidu.com。 如果网卡1是 Host-Only,网卡2是 NAT,无法 ping 通 baidu.com。 使用 nmcli 修改 NAT 网卡和 Host-Only 网卡的 ipv4.route-metric,分别设置为 1 和 2。这样 NAT 网卡的路由优先级比 Host-Only 网卡更高,可以 ping 通 baidu.

  • runtime-only和runtime-complier的区别2021-12-17 23:02:50

    一、首先我们需要理解vue程序是怎样运行起来的? 下面我们来通过一副图了解          通过图片我们可以知道运行的顺序为:template ->art->render->vdom-ui 二、runtime-only和runtime-complier创建项目有何区别呢?         其实只有main.js中有不同的地方,下面展示

  • 【转】ElasticSearch报错FORBIDDEN/12/index read-only / allow delete (api) ,read_only_allow_delete 设置 windo2021-12-16 14:03:04

    仅供自己记录使用,原文链接:ElasticSearch报错FORBIDDEN/12/index read-only / allow delete (api)_sinat_22387459的博客-CSDN博客 赞作者,细心的指出windows不能识别“ ’ ”, 从其他看到的教程,都没用,提示json格式问题,结果原来是这个原因 ElasticSearch报错FORBIDDEN/12/index read

  • MySQL设置数据库为只读2021-12-13 10:02:02

    前言: 默认情况下,我们的 MySQL 实例是可读写的。但有些情况下,我们可以将整个实例设置为只读状态,比如做迁移维护的时候或者将从库设为只读。本篇文章我们来看下 MySQL 设置只读相关知识。 1.关于 read_only 参数 MySQL系统中,提供有 read_only 和 super_read_only 两个只读参数,参考官

  • Ethical.Hacking.2021.10:PIVOTING AND PRIVILEGE ESCALATION(2)Extracting Password Hashes on Linux2021-12-12 12:05:45

    Linux doesn’t store plaintext passwords. Instead, it stores an HMAC-SHA256 hash of the passwords in the file /etc/shadow.  The permissions on the /etc/shadow/ file indicate that only the owner (root) and the group (shadow) can read the file, and that on

  • Git问题解决:warning: Pulling without specifying how to reconcile divergent branches is discouraged.2021-12-09 16:02:16

    使用git pull命令出现以下的警告: warning: Pulling without specifying how to reconcile divergent branches is discouraged. You can squelch this message by running one of the following commands sometime before your next pull: git config pull.rebase false # me

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

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

ICode9版权所有