首页
Song
取消

mysql学习笔记

https://www.runoob.com/mysql/mysql-tutorial.html 连接 mysql -u root -p123 -D database_name -h 可指定ip 本地默认就是 localhost create create table 'tablename'( id int unsigned auto_increment primary k...

git clone ssh方式报错提示无权限

git clone ssh方式报错 提示无权限: Please make sure you have the correct access rights and the repository exists. 重新配置公钥,仍然无效,用 ssh -vvv git@github.com 测试ssh 发现报错,提示信息为 The authenticity of host 'github....

mining of massive datasets

1.1 什么是数据挖掘 机器学习和数据挖掘对比 机器学习相比数据挖掘,可解释性较差。 当挖掘的目标明确时,机器学习竞争力较差。 数据建模 总结数据 比如谷歌的网页排名 比如数据聚合的思想 (水井 伦敦霍乱) 提取数据的主要特征 frequent itemset 频繁项集 (购物篮问题 寻找购...

Maven学习笔记

Maven学习笔记 maven 基本概念 仓库分类 本地仓库 远程仓库 中央仓库 私服(解决版权问题和下载慢的问题(CDN)) 坐标 查包网址 一般三个,用来唯一标识jar包 groupId:项目隶属组织名称 artifactId:maven项目名称 version packaging:项目的...

Spring学习笔记

img_path: /_posts/ Spring 1. Spring 简介 1.1 Spring是什么 开源框架 IoC inverse of control AOP aspect oriented programming 提供了: 展现层 SpringMVC 持久层 Spring JDBCTemplate 业务层事务管理等 1.2 发展历程 ...

磁盘空间不足导致hdfs进入安全模式

问题记录 CatalogException: Failed to truncate table: default.temp_test. Table may be in a partially truncated state. CAUSED BY: SafeModeException: Cannot delete /user/hive/warehouse/temp_test/2d4685ef...

数组排序问题 array sort method

GET the date list between two timestamps

example: ​ input: timestamp1, timestamp2 ​ output: [20220101,20220102…] Get time by timestamp We usually get the timestamp in the form of UNIX which is accurate to seconds. In java, the t...

github pages + jekyll 博客搭建过程小记

1. 建立github仓库 仓库名固定格式 username.github.io 2. 设置githubpages 在仓库设置中配置github pages 3. 配置jekyll主题 4. netlify 部署 国内访问github非常慢,有时候访问不了,可以将网站部署到netlify,原理貌似是,fork了你的github仓库,每次你git push数据后,会快速编译部署,而...

Php 学习笔记

PHP 基础知识 菜鸟教程 https://www.runoob.com/php/php-syntax.html 1. PHP 语法 PHP 脚本可以放在文档中的任何位置。 PHP 脚本以 <?php 开始,以 ?> 结束: PHP 每行代码用 分隔符 ;来区分指令集 注释: //单行 /*....*/多行注释 2. PHP 变量 ...