备注: 本文参考于廖雪峰老是的博客Git教程。依照其博客进行学习和记录,感谢其无私分享,也欢迎各位查看原文。 知识点 ssh-keygen -t rsa -C "youremail@example.com"生成SSh密钥对。私钥保存好,公钥可以添加到Git服务器(如GitHub远程仓库) 添加或关联 ...
分类:
其他好文 时间:
2020-07-13 21:42:20
阅读次数:
127
[在windows上调试 | Debugging on Windows (Guides: Development) - Electron 中文开发手册如果您认为Electron中的崩溃或问题不是由您的JavaScript应用程序引起的,而是由Electron本身引起的,那么调试可能有点棘手,特别是对... ...
[JavaScript 中文开发手册Array.isArray (Array) - JavaScript 中文开发手册Array.isArray()用于确定传递的值是否是一个Array。Array.isArray([1, 2, 3]); // trueArray.isArray({foo: 123}... ...
分类:
编程语言 时间:
2020-07-13 21:19:35
阅读次数:
70
作为18c的新特性,其实在oracle 12.2 引入了Scalable Sequences作为一个隐藏特性,为了改善在高并发系统中,特别是使用seq作为index,大量插入记录导致index的争用,oracle自己实现了以前我们需要人工去自定义seq的方式(instance+sid+seq的类似算 ...
分类:
其他好文 时间:
2020-07-13 15:29:24
阅读次数:
65
摘要: 本文介绍了分布式框架的简单实现,说明了自己的设计思路,以及RPC的一些具体细节。在文末,贴出一些关于rpc的资料。 0x00:什么是RPC wiki给出的定义如下:In distributed computing, a remote procedure call (RPC) is when ...
分类:
其他好文 时间:
2020-07-13 13:47:27
阅读次数:
71
文件下载的实质就是文件拷贝,将文件从服务器端拷贝到浏览器端,所以文件下载需要IO技术将服务器端的文件读取到,然后写到response缓冲区中,然后再下载到个人客户端。 1. 文件名 - 接受前端发来的文件名 获取到前端页面发送过来的要下载的文件的名字 String filenameValue = r ...
分类:
Web程序 时间:
2020-07-13 12:01:45
阅读次数:
71
类的基本使用 class Person(): def __init__(self,name,age): self.name = name self.age = age def info(self): print(f'大家好,我是{self.name},我今年{self.age}岁了') xiaohu ...
分类:
编程语言 时间:
2020-07-13 11:55:05
阅读次数:
71
*** errRun: ['which', 'controller'] /usr/local/bin/controller 0*** errRun: ['grep', '-c', 'processor', '/proc/cpuinfo'] 64 0*** Setting resource limit ...
分类:
其他好文 时间:
2020-07-13 11:28:41
阅读次数:
74
一. 创建远程仓库 二. 创建本地仓库 a. 配置.gitignore b. git init c. git add . d. git commit -m "备注" 三. 将本地仓库推送到远程仓库 git remote add origin url git push origin master 四. ...
分类:
其他好文 时间:
2020-07-13 09:58:46
阅读次数:
60
问题出现: 在eclipse中pull项目至github上出现该问题 查看报错日志 org.eclipse.jgit.api.errors.TransportException: https://github.com/muzhiyi1996/test1.git: cannot open git-up ...
分类:
Web程序 时间:
2020-07-12 22:33:02
阅读次数:
155