日用
日常问题
梓莘
zero-->hero 理性+理智。记住一句话:越努力,越幸运。犯其至难,图其至远。努力规划,实现自我。↖(^ω^)↗
展开
-
Jupyter安装使用(Windows版)
什么是JupyterJupyter Notebook是一个开源的Web应用程序,可以创建和共享包含实时代码,方程式,可视化和说明文本的文档。Jupyter的官网:http://jupyter.org/index.html使用Anaconda安装:Anaconda中包含众多python的库,其中也包含Jupyter,所以如果使用的是Anaconda则使用1.安装Anaconda2.安装Jupyter notebookpip3 install jupyter3.jupyter notebook原创 2020-11-10 11:22:12 · 201 阅读 · 0 评论 -
Failed to connect to fuchsia.googlesource.com port 443: Timed out
设置一下代理:git config --global http.proxy 127.0.0.1:1080然后就可以啦原创 2020-10-27 10:02:39 · 835 阅读 · 0 评论 -
Git报错:fatal: Authentication failed for ‘https://gitee.com/.......‘
提交代码到码云,Git报错如下:fatal: Authentication failed for ‘https://gitee.com/…’说明码云的认证失败,即用户名,密码输入错误。 可以使用git config user.name查看一下用户名使用如下指令重置用户名密码:git config --system --unset credential.helper然后再次提交,弹出之后输入用户名密码即可...原创 2020-10-14 10:22:19 · 1202 阅读 · 0 评论 -
【日用】获取pfx证书序列号
一、使用java代码package com.sanglp.util;import java.io.ByteArrayInputStream;import java.io.File;import java.io.IOException;import java.math.BigInteger;import java.security.KeyStore;import java.security.cert.X509Certificate;import java.util.Enumeration;原创 2020-09-02 17:44:12 · 1348 阅读 · 0 评论 -
【日用】Oracle和MySql函数区别 持续更新
一、日期格式化Oracleto_char(data,'YYYYMMDD')MySqldate_format(data,'%Y-%m-%d')%Y:代表4位的年份%y:代表2为的年份%m:代表月, 格式为(01……12)%c:代表月, 格式为(1……12)%d:代表月份中的天数,格式为(00……31)%e:代表月份中的天数, 格式为(0……31)%H:代表小时,格式为(00……23)%k:代表 小时,格式为(0……23)%h: 代表小时,格式为(01……12)%I: 代表小时,格原创 2020-05-09 16:16:55 · 285 阅读 · 0 评论 -
【日用】eclipse中将java项目转为web项目
一、项目上右键点击选择propertiesConvert to faceted form二、选中Dynamic Web Module如果需要修改项目默认的WebContent为WebRoot则点击下侧的Further configuration available修改即可...原创 2020-02-10 18:26:44 · 201 阅读 · 0 评论