ICode9

精准搜索请尝试: 精确搜索
  • MySQL经典错误2022-04-20 10:00:06

     1.忘记密码,无法登陆  1.1 报错现象     1.2 处理过程 在MySQL中,若密码丢失则无法直接找回,只能通过特殊方式来修改密码。在配置文件中添加如下一行,重启 MySQL 登录则不需要密码。skip-grant-tables   cat /etc/my.cnf     2.修改简易密码报错 2.1 报错现象 alter user ro

  • ARM体系结构与接口技术——ARM汇编伪操作与混合编程2022-04-20 02:31:41

    伪操作的概念 伪操作与伪指令不同。 伪指令虽然不能生成与机器码映射的机器码,但是能被编译成相应的汇编指令,再编译成机器码。 伪操作不会生成任何指令,只在编译期起作用,用来控制编译器,告诉编译器怎么编译指令。所以不同的编译器,它的伪操作是不一样的。 伪操作的作用类似于C语言的条

  • how to share code with gitee?2022-04-19 20:02:40

    1   2  3    4       Successfully created project 'gmall-publisher-test' on Gitee, but initial commit failed: Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config

  • grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)2022-04-12 13:02:17

    GREPgrep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgrep。 基本简介 egrep和fgrep的命令只跟grep有很小不同。

  • linux设置终端git代理2022-04-11 21:01:37

    有时候克隆仓库巨慢无比,需要设置代理. git 可以单独设置代理的. 7890是自己代理的端口 # 设置http代理 git config --global https.proxy http://127.0.0.1:7890 # 设置https代理 git config --global https.proxy https://127.0.0.1:7890 # 取消代理 git config --global --unse

  • Global Round 182022-04-11 18:03:25

    场上 ABCE,准确来说 ABE AB 略 C. Menorah D. X(or)-mas Tree E. Purple Crayon F. LEGOndary Grandmaster G. Maximum Adjacent Pairs H. Reindeer Games

  • 【分布式数据库-Postgresq-XC】集群架构2022-04-09 16:02:31

    Postgres-XC基于PgSQL的shared nothing的分布式关系型数据库集群。     Postgres-XC由三个主要的组件组成,分别为GTM(Global Transaction Manager),Coordinator,Datanode。 GTM提供事务一致性管理,遵循数据库的ACID Coordinator是应用程序的访问入口,它的行为类似传统的PostgreSQL

  • nodejs详细安装+环境配置2022-04-08 19:32:35

    使用npm下载安装vue脚手架(vue-cli)的时候,提示“npm不是内部或外部命令”,于是想着安装npm。npm是nodejs的一个子内容,所以要使用npm,就一定要先安装nodejs。 一.安装nodejs: nodejs下载官网地址: https://nodejs.org/en/ 这里选择红线框里面的,长期支持的(long term support),需要注意的是

  • notpadd++ 颜色2022-04-08 16:31:06

    一、notepad主题设置 设置->语言格式设置 1.主题选择:plastic code wrap 2.调整行间距:Global Styles->Line number margine->字体大小 12 3.选中文本颜色:Global Styles->Selected text colour 背景色->蓝色,前景色->白色 4.双击选中颜色:Global Styles->Smart HighLighting 背景色->

  • 处理github无法push报错2022-04-05 12:33:15

    报错信息 12:06 PM Push failedunable to access 'https://github.com/lyingcode/lemon.git/': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443Show details in console   解决方案 git config --global --unset http.proxy git config --global

  • Git基础教程2022-04-03 21:04:59

    Git 版本控制 版本控制(Revision control)是一种在开发的过程中用于管理我们对文件、目录或工程等内容的修改历史,方便查看更改历史记录,备份以便恢复以前的版本的软件工程技术。 版本控制分类 本地版本控制:RCS 集中版本控制:SVN 分布式版本控制:Git Git与SVN的主要区别 SVN是集

  • python 进程间利用queue 传递参数2022-03-31 12:33:56

    from multiprocessing import Process def chulibkk(bka,q): global connect,con for acc in acca: result=[] aty=str(acc["rootId"]) userid=str(acc['userId']) q.put(userid) def wm0323(q): g

  • 上传文件到github过程及报错2022-03-20 15:06:16

    上传文件到github过程及报错 1. 下载git(官网)   保姆级教程:Git下载安装及设置详细教程_san兄弟的博客-CSDN博客_git下载 2.上传文件夹到github   保姆级教程:如何上传文件夹到GitHub上(配图详解)?_一只青木呀的博客-CSDN博客_github上传文件夹 3.各种报错    在clone/push时报错

  • 出现错误vue-cli · Failed to download repo vuejs-templates/webpack: XXX的解决方法2022-03-20 03:33:50

    C:\Windows\System32\drivers\etc的hosts文件,在里面添加上:192.30.253.112 github.com151.101.88.249 github.global.ssl.fastly.net

  • Reading notes-82022-03-19 14:30:06

    Understanding and quantifying the global methane (CH4) buget is important for assessing realistic pathways to mitigate climate change. Atmospheric emissions and concentrations of CH4 continue to increase, making CH4 the second most important human-influ

  • git 配置 github 用户名密码2022-03-19 11:05:29

    # 配置用户名密码 git config --global user.name username # 使用 token git config --global user.password token git config --global user.email "email" # 输入的用户名密码将被记住,不用每次都输入了 git config --global credential.helper store

  • 查看git 账号密码和修改git账号密码2022-03-19 10:34:03

    1 修改本地git邮箱和账号 查看用户名 :git config user.name 查看密码: git config user.password 查看邮箱:git config user.email 查看配置信息: $ git config --list     修改用户名git config --global user.name "xxxx(新的用户名)" 修改密码git config --global user.passw

  • MySQL设置登录日志2022-03-18 22:33:04

    最近做mysql的安全审计 开启general_log日志,默认文本记录 show global variables like '%general%'; set global general_log = on; show global variables like '%log_output%'; 设置表级别存操作记录 set global log_output = 'TABLE'; use mysql;//存在mysql库 show create

  • Google pixel 原生安卓出现 WiFi 网络受限2022-03-18 19:30:35

    Google pixel 原生安卓出现 WiFi 网络受限、优化网速、网络无法连接问题 谷歌从 Android 5.0 开始就引入了「Captive Portal」机制,主要用来检测 WiFI 网络认证是否正常,默认检测访问的是谷歌服务器。 众所周知谷歌服务器是需要404工具才能正常访问,所以如果你没有404工具的情况

  • 111112022-03-08 21:01:14

    Global Nav 打开菜单 Global Nav 关闭菜单 Apple 购物袋 +   搜索 apple.com.cn 取消 Apple 商店 Mac iPad iPhone Watch AirPods 家居 Apple 独家 配件 技术支持 购物袋 + 取消 快速链接 查找零

  • 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

  • aarch64-translaiton table descriptors 页表描述符-内存属性字段2022-03-07 13:32:52

      摘录自 原文: Linux内存管理(二):ARMv8 地址转换  https://blog.csdn.net/yhb1047818384/article/details/108210044    memory attributes Table descriptor和table entry, block entry中都有attribute的概念 table descriptor(only for stage1):    NSTable NS表

  • mysql的数据字典2022-03-07 12:02:23

    information_schema performance_schema     mysql8 改了一下   mysql 8小时问题 https://www.jianshu.com/p/69dcae4454b3 https://www.cnblogs.com/zhoading/p/11597622.html   set global wait_timeout=31536000set global interactive_timeout=31536000 set session wa

  • CEPHADM 操作之 CEPH 守护进程日志2022-03-04 23:04:15

    记录日志 Ceph 守护进程传统上将日志写入/var/log/ceph。 Ceph 守护进程默认记录到日志中,并且 Ceph 日志由容器运行时环境捕获。它们可通过 journalctl 访问。 笔记: 在 Quincy 之前,ceph 守护进程会输出到stderr。 日志记录示例 例如,要查看具有 ID 5c5a50ae-272a-455d-99e9-32c6

  • Git commit时提示错误时 解决办法2022-03-04 21:04:17

    原文:https://www.cnblogs.com/izengbin/p/7122727.html   vi 编辑 vim 编辑 a 进入编辑模式 esc 退出编辑模式 shift+:    (看见: ) 代表开始执行下一行命名 w->q 保存退出 q->! 不保存退出 cat->空格->文件名 查看文件      * Please tell me who you are.  Run  git confi

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

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

ICode9版权所有