上一页 1 2 3 4 5 6 7 ··· 9 下一页

2019年7月6日

centos python3.7 报错 No module named ‘_ctypes’ make: ***

摘要: 1、先装好python的依赖 2、yum install libffi-devel -y(解决) 阅读全文

posted @ 2019-07-06 13:29 风声风语 阅读(466) 评论(0) 推荐(0) 编辑

2019年6月19日

pycharm注册码

摘要: 56ZS5PQ1RF-eyJsaWNlbnNlSWQiOiI1NlpTNVBRMVJGIiwibGljZW5zZWVOYW1lIjoi5q2j54mI5o6I5p2DIC4iLCJhc3NpZ25lZU5hbWUiOiIiLCJhc3NpZ25lZUVtYWlsIjoiIiwibGljZW5zZVJ 阅读全文

posted @ 2019-06-19 23:19 风声风语 阅读(228) 评论(1) 推荐(0) 编辑

2019年6月3日

【hive 日期函数】Hive常用日期函数整理

摘要: 1、to_date:日期时间转日期函数 select to_date('2015-04-02 13:34:12');输出:2015-04-02122、from_unixtime:转化unix时间戳到当前时区的时间格式 select from_unixtime(1323308943,’yyyyMMdd 阅读全文

posted @ 2019-06-03 18:55 风声风语 阅读(2408) 评论(0) 推荐(0) 编辑

2019年5月30日

nohup和&后台运行,进程查看及终止

摘要: 原文链接:https://www.cnblogs.com/baby123/p/6477429.html 1.nohup 用途:不挂断地运行命令。 语法:nohup Command [ Arg … ] [ & ] 无论是否将 nohup 命令的输出重定向到终端,输出都将附加到当前目录的 nohup.o 阅读全文

posted @ 2019-05-30 12:13 风声风语 阅读(15777) 评论(0) 推荐(0) 编辑

2019年5月16日

一键干掉占用某个端口的进程的脚本

摘要: #!/bin/bashread -p "输入你要kill的端口号 " afor i in `lsof -i:$a | awk '{print $2}' | grep -v 'PID'`;do kill -9 $i;done 阅读全文

posted @ 2019-05-16 14:56 风声风语 阅读(329) 评论(0) 推荐(1) 编辑

mac 安装brew mac安装expect mac一键登录服务器脚本

摘要: mac 安装brew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" mac安装expect(需要先安装brew,没有安装的话看上边) brew in 阅读全文

posted @ 2019-05-16 14:54 风声风语 阅读(3750) 评论(0) 推荐(0) 编辑

2019年4月9日

Python字典树实现

摘要: class Trie: # word_end = -1 def __init__(self): """ Initialize your data structure here. """ self.root = {} self.word_end = -1 def insert(self, word): 阅读全文

posted @ 2019-04-09 14:48 风声风语 阅读(243) 评论(0) 推荐(0) 编辑

2019年4月2日

缓存、队列(Memcached、redis、RabbitMQ)

摘要: 本章内容: Memcached 简介、安装、使用 Python 操作 Memcached 天生支持集群 redis 简介、安装、使用、实例 Python 操作 Redis String、Hash、List、Set、Sort Set 操作 管道 发布订阅 RabbitMQ 简介、安装、使用 使用 AP 阅读全文

posted @ 2019-04-02 11:18 风声风语 阅读(182) 评论(0) 推荐(0) 编辑

2019年4月1日

Neo4j之Cypher学习总结

摘要: Cypher 语句 Cypher是图形数据库Neo4j的声明式查询语言。 Cypher语句规则和具备的能力: Cypher通过模式匹配图数据库中的节点和关系,来提取信息或者修改数据。 Cypher语句中允许使用变量,用来表示命名、绑定元素和参数。 Cypher语句可以对节点、关系、标签和属性进行创建 阅读全文

posted @ 2019-04-01 17:21 风声风语 阅读(1399) 评论(0) 推荐(0) 编辑

2019年3月28日

div块元素垂直水平居中方法总结

摘要: 1、已知块级元素的宽和高,使用绝对定位+外边距设定水平垂直居中。 父元素position:relative,子元素position:absolute;top:50%;left:50%;margin-top:-height/2;margin-left:-width/2; 效果图如下 代码: <div 阅读全文

posted @ 2019-03-28 18:20 风声风语 阅读(284) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 9 下一页

导航