自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(7)
  • 资源 (9)
  • 收藏
  • 关注

原创 Redis订阅&发布以及python代码实现

A:命令行服务器端192.168.1.168:7000> subscribe foo barReading messages... (press Ctrl-C to quit)1) "subscribe"2) "redisChat"3) (integer) 111) "message"2) "redisChat"3) "hello!"1) "messag

2015-12-30 17:16:07 3667

原创 彻底解决matplotlib中文乱码问题

1.环境查看a.系统版本查看[hadoop@p168 ~]$ cat /etc/redhat-releaseCentOS Linux release 7.2.1511 (Core) b.系统中文字体查看[hadoop@p168 ~]$ fc-list :lang=zh/usr/share/fonts/wqy-microhei/wqy-microhei.ttc: 文泉驿等宽微

2015-12-27 22:56:06 73615 21

原创 CentOS7.1下python2.7.10安装PyQt4

新人肯定跟我一样,那就是plt.show()在Linux环境下不显示,后来才明白,这是matplotlib依赖图形环境,有兴趣的可以去了解下matplotlib后端(Backend )相关知识.下面安装PyQt4解决.1.安装sip[root@p168 ~]# wget http://downloads.sourceforge.net/project/pyqt/sip/sip-4.

2015-12-16 18:10:59 6291 1

原创 CentOS 7.1安装GNOME,开启VNC Server

A.准备:1.安装GNOME Desktop[root@p161 ~]#yum groupinstall 'GNOME Desktop'2.查看CentOS 版本[root@p161 ~]# cat /etc/redhat-releaseCentOS Linux release 7.1.1503 (Core) ------------------------

2015-12-14 18:49:29 6530 1

原创 CentOS7.1安装Oracle 12.1客户端以及cx_Oracle

1.hostnamectl set-hostname p164 --修改主机名2.vim /etc/hosts --修改hosts,否则出现ORA-21561: OID generation failed,加入本机的解析192.168.1.164 p1643.安装--oracle instantclient依赖软件包即rzsz工具yum -y install l

2015-12-14 15:33:11 5645 1

原创 Sublime Text 3 Python开发环境配置

1.运行Sublime Text Build 3083 x64 Setup.exe,默认安装在C:\Program Files,启动后在帮助菜单输入注册码2.安装Package Control,打开Sublime Text3 按Ctrl+~ 在输入框内贴入:import urllib.request,os; pf = 'Package Control.sublime-package'; i

2015-12-14 14:12:46 2829

原创 Centos7.1搭建pyenv环境并安装python 2.7.10

[root@p168 ~]# cat /etc/redhat-releaseCentOS Linux release 7.1.1503 (Core) -----------------------------------------------------------------------A.安装依赖包yum install readline readline-dev

2015-12-14 12:24:55 3046

spigot-svr-1.16.5.zip

我的世界最新版1.16.5客户端对应的服务器资源,包括Python3开发API插件等

2021-04-18

swagger2.zip

springboot 2.2.7集成swagger2.9.2,并生成markdown格式API文档. io.springfox springfox-swagger2 2.9.2 io.swagger swagger-annotations io.swagger swagger-models io.swagger swagger-annotations 1.6.0 io.swagger swagger-models 1.6.0 io.swagger swagger-core 1.6.0 io.springfox springfox-swagger-ui 2.9.2 org.pegdown pegdown 1.6.0<

2020-05-10

go-mod-test.zip

Golang 1.14 中go module模块功能Demo项目,多模块,含单元测试及Makefile。 ├── Makefile ├── bin │   ├── main │   ├── submain1 │   └── submain2 ├── go.mod ├── go.sum └── src ├── main │   └── demomain.go ├── pk1 │   ├── pk1 │   ├── pk1.go │   └── pk1_test.go ├── submain1 │   └── submain1-main.go └── submain2 └── submain2-main.go

2020-03-30

PlantUML语言参考指引-中文版 (Version 1.2019.3)

在写文档的过程中,经常需要进行画图。虽然说现在有很多类似viso之类的可视化画图工具,但是还是要花费大量时间在拖拉组件上,效率十分低下。最近在网上找到了一款还算不错的绘图工具-- Plantuml, 它本质上是也算一门可以快速画图的设计语言,学习起来也很方便

2020-03-21

autoconfig-demo.zip

手动实现springboot 2.2.5 启动自动装配演示代码 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.5.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.demo.springboot</groupId> <artifactId>autoconfig-demo</artifactId> <version>0.0.1-SNAPSHOT</version> <name>autoconfig-demo</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>

2020-03-20

31302_ResScan_6.0.1.zip

最新版的ResMed呼吸机数据读取分析软件,Windows版本,版本:6.01.9830。

2019-07-21

golang项目自动生产脚本(Windows/mac/linux)

在windows或mac/linux中自动生成go项目结构以及编译脚本,避免频繁修改GOPATH.

2017-07-26

快速配置Hadoop开发环境 Win7+Eclipse&amp;CentOS7+Hadoop2 5 1

本文来自近一周从零开始摸索的操作的笔记 在此过程中得感谢XXTV 感谢互联网 整理出来一是自己备忘 二是希望能初学Hadoop的人一些参考 并节约宝贵时间 本文分两部分 第一部分为Hadoop2 5 1集群的架设 基于CentOS 7操作系统;第二部分是基于Windows 7 64位Eclipse开发环境的配置 若严格按本文步骤执行的话应该可以配置环境完成(没把握的话连空格都不要改动 血的教训 ) 若有问题欢迎各位邮件或到blog中交流 本文最后修改时间:2014年11月14日 15时 ">本文来自近一周从零开始摸索的操作的笔记 在此过程中得感谢XXTV 感谢互联网 整理出来一是自己备忘 二是希望能初学Hadoop的人一些参考 并节约宝贵时间 本文分两部分 第一部分为Hadoop2 5 1集群的架设 基于CentOS 7操作 [更多]

2014-11-14

PAS 55:Publicly Available Specification

This Publicly Available Specification (PAS) was first published in 2004 in response to demand from industry for a standard for asset management. It is applicable to any organization where physical assets are a key or a critical factor in achieving its business goals. This 2008 revision reflects the increasing international consensus about required good practices in the management of such physical assets.

2014-11-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除