ICode9

精准搜索请尝试: 精确搜索
  • 基本工具git和maven2022-09-17 00:04:31

    Git 一些指令 常用 git remote add origin(为别名,可以随便取) git@github.com:yeszao/dofiler.git  # 配置远程git仓库,   git pull origin master  # 下载代码及快速合并 git push origin master  # 上传代码及快速合并 git fetch origin  # 从远程库获取代码  git

  • 安装git2022-09-16 22:00:14

    1. 安装 yum install git 2. 设置全局信息 git config --global user.name "username" git config --global user.email "email" 3. 生成公钥(一路按enter) ssh-keygen -t ed25519 -C "xx@xx.com" 4. 查看公钥,并将公钥复制到gitee网站上(设置-> 安全设置 -> ssh公钥) cat

  • 在Global Mapper中导入点的文本格式2022-09-12 13:02:47

    目录 有时候想在Global Mapper快速显示一个点的具体位置,来不及去创建一个具体的矢量文件。一个最快速的方式就是将这个点写在文本文件中导入: 13149831.629692005 2817252.5824931804 0 P1 导入后会询问你该文本文件的描述形式: 接着选择合适的空间坐标参考,即可在视图中叠加显示:

  • [HTML 5] contenteditable2022-09-11 22:33:03

    The contenteditable global attribute is an enumerated attribute indicating if the element should be editable by the user. If so, the browser modifies its widget to allow editing. <blockquote contenteditable="true"> <p>Edit this c

  • 国内访问github的简单方法2022-09-11 10:02:19

    在微软应用商店搜索Watt Toolkit并安装,勾选github,开启加速 若提示以下类似错误 fatal: unable to access 'https://github.com/xxx.git/': SSL certificate problem: unable to get local issuer certificate可以使用以下命令解决 git config --global http.sslVerify "false"

  • WebAssembly API & MDN All In One2022-09-08 13:00:25

    WebAssembly API & MDN All In One caniuse WebAssembly WebAssembly or "wasm" is a new portable, size- and load-time-efficient format suitable for compilation to the web. https://caniuse.com/?search=webassembly https://github.com/WebAssembly

  • global 声明全局变量、作用域、及重新定义变量值可以让global失效2022-09-06 12:33:51

    global 声明全局变量,非常重要的。# global声明全局变量后,再对此变量赋值是不起作用的# global声明全局变量后,不能再在别的地方global声明相同名称的变量。 global_var = 'b'def test1(): global global_var global_var = 'c' print(global_var)test1() # 执行打印结果

  • git上传项目完整步骤2022-09-05 22:30:10

    具体步骤 git config --global user.name yt git config --global user.name 2214100039@qq.com git init git remote add origin https://gitee.com/ytao99/data-structure.git git add . git commit -m "2022/9/5" git push -u origin master 问题 运行该命令时出错 git pu

  • mysql中 Load data infile 功能2022-09-05 10:31:42

    查看功能是否打开 mysql> show global variables like 'local_infile'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | local_infile | OFF | +---------------+-------+ 1 row in set (0.00 sec) mysql> set global local_

  • postgresql 错误:关系“global/1213”中的块0存在无效项2022-08-31 14:01:19

    问题 Postgresql12 连接时提示 错误:关系“global/1213”中的块0存在无效项 解决方案 提示:此操作将销毁数据,即损坏页面上的所有行!但是,它允许您跳过错误,并从表中可能存在的任何未损坏的页面中检索行。 1.启动psql,查看是否启用了zero_damaged_pages。 postgres=# show

  • RN 调试2022-08-29 14:33:17

    使用前先关闭debugger模式关闭谷歌,在打开调试工具,然后再打开debugger 1.使用谷歌浏览器来调试 不能查看标签结构 不能查看网络请求 2.使用rn推荐的工具react-native-debugger来调试 https://github.com/jhen0409/react-native-debugger/releases 可以查看标签结

  • git时:OpenSSL SSL_read: Connection was reset, errno 100542022-08-29 09:30:08

    OpenSSL SSL_read: Connection was reset, errno 10054 ... 处理方法 Solution1: (原因)更新DNS缓存。在cmd中输入以下命令: ipconfig /flushdns Solution2: (原因)文件太大了。改为500MB,在Git Bash中输入以下命令: git config http.postBuffer 5242880003 Solution3: 修改解除SSL认

  • 利用jenv管理JDK2022-08-27 21:30:34

    参考 简单介绍一下利用Jenv管理JDK。挺多余的其实,因为JDK更新的频率没有那么快。 jEnv支持Linux和MacOS操作系统。如果您使用的是Windows,则需要安装Linux的Windows子系统(或bash模拟器,如GitBash)才能使用它。 jEnv主页上的安装说明安装jEnv 从AdoptOpenJDK网站下载JDK jEnv全局设置

  • cyberspace2022-08-27 16:00:23

    The term "cyberspace" first appeared in the visual arts in the late 1960s, when Danish artist Susanne Ussing (1940-1998) and her partner architect Carsten Hoff (b. 1934) constituted themselves as Atelier Cyberspace. Under this name the two made

  • Git基本命令2022-08-26 23:32:08

    一、Git基本命令 查看所有配置 git config -l 查看系统配置 git config --system --list 查看本地配置 git config --global --list 初始化一个项目 方法一:在对应目录下右键打开Git Bash git init 方法二:克隆远程的项目到本地 ① 到github或gitee等网站克隆项目UI ②

  • [Javascript] Module Pattern2022-08-26 15:33:18

    Module pattern provide a way to have both public and private pieces with the export keyword. This protects values from leaking into the global scope or ending up in a naming collision. secretis a private variable inside Math.js which is not accessible ou

  • PHP 静态局部变量和静态全局变量2022-08-25 16:31:55

    PHP static静态局部变量和静态全局变量总结_胡德咏的博客-CSDN博客  https://blog.csdn.net/u010620626/article/details/43965879 使用静态局部变量的原因是它不能被外部使用,但是它的值依然在每次使用后保留。虽然使用全局变量可以实现相同的功能,但是它经常会造成意外。静态局

  • npm warn config global `--global`, `--local` are deprecated. use `--location=global` instead.2022-08-21 09:00:19

    报错信息: npm warn config global `--global`, `--local` are deprecated. use `--location=global` instead. 报错截图:     如何弃用 npm WARN 配置全局 '–global', '–local'。使用“–location=global”代替“错误发生? 当我尝试使用-g的全局命令时,只是尝试安装使用npm insta

  • 安装vue2022-08-17 17:33:57

    一、使用之前,我们先来掌握3个东西是用来干什么的。 npm: Nodejs下的包管理器。 webpack: 它主要的用途是通过CommonJS的语法把所有浏览器端需要发布的静态资源做相应的准备,比如资源的合并和打包。 vue-cli: 用户生成Vue工程模板。(帮你快速开始一个vue的项目,也就是给你一套vue的结

  • git的命令2022-08-16 23:00:08

    查看配置 git config -l   查看系统config git config --system --list   查看当前用户(global)配置 git config --global --list 创建git的用户标识git config --global user.name "kuangshen" #名称git config --global user.email 24736743@qq.com #邮箱 Workspace:工作区,就

  • 【Python】【Pycharm】新建项目/工程/新环境/继承全局包/New environment using/inherit global site-packages2022-08-14 13:03:49

    1、不勾选inherit global site-packages     2、【推荐】勾选inherit global site-packages  

  • outline.git2022-08-13 01:31:48

    版本控制系统 VCS 版本控制是一种记录一个或若干文件内容变化,以便将来查阅特定版本修订情况的系统。 development 本地版本控制系统 RCS :工作原理 在硬盘上保存补丁集(补丁是指文件修订前后的变化);通过应用所有的补丁,可以重新计算出各个版本的文件内容。 集中式版本控制系统 CVCS Ce

  • MindSpore:CUDA编程(四)Global Memory2022-08-11 18:31:45

    在GPU上,on-board memory包含以下类型: local memory 每个thread一个。线程私有。 global memory 每个grid一个。每个thread都可以读。 constant memory 每个grid一个。只读。每个thread都可以读。 texture memory 每个grid一个。只读。每个thread都可以读。 on-chip memory包含以

  • Dashboard - Codeforces Global Round 13 - Codeforces2022-08-06 12:45:24

    Dashboard - Codeforces Global Round 13 - Codeforces 1.Problem - B - Codeforces 题意:存在n行1e6+2列,然后会有n个障碍物。可以将障碍物水平移动,和垂直移动。都有对应的消费。你需要从起点(1,1)到终点(n,1e6+2).问最少消费多少。 思路:只要存在两个点之间的y距离是大于1的那这条路肯定

  • scrapy 监控 Prometheus 介绍与安装(1)2022-08-05 17:05:44

    一. 概述   Prometheus 是一个开源的服务监控系统和时间序列数据库。包括监控和告警,实现流式监控数据的收集、存储、查询、告警 ,它将指标收集并存储为时间序列数据库(time series data)。大多数 Prometheus 组件都是用Go编写的,这使得它们易于构建和部署为静态二进制文件。   

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

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

ICode9版权所有