前段时间看美剧《纸牌屋》,男主人公的老婆每天早晨都有晨跑的习惯,有一天,她非常自然地跑入了社区的公墓当中。
这个镜头让我印象很深刻。在国外旅游,印象最深刻的是,在社区周围常常可以看到或大或小的成群墓地,其实也不甚肃穆,很多墓前杂草丛生,但感觉并不恐怖凄凉,反而很自然。我每路过一处墓地,总是进去转一圈,是出于非常自私的目的:在死去的人当中,能非常确凿地感受到自己在活着。
我曾经看过一个建筑设计,德国西部的迪伦镇,镇东部墓园已开放成公共公园,公园的墓地间修了一个咖啡馆,人们在那里或交流,或回忆。咖啡馆四周都是反...
[转载]黑夜中也健步如飞的路
大学四年,我听了无数次讲座和演讲。在所有这些演讲中,听众最多的,当然是那些创业成功者来做的演讲。
演讲结束之后,有三个问题被问得最多:“第一,你觉得你成功的最大因素是什么?第二,你的公司去年的营业额是多少?第三,你们公司现在招人么?麻烦给一个发简历的邮箱吧。”而最有趣的是,所有这些以招聘和广告为目的的演...
开源企业邮件系统zimbra安装
1、搭建本地dns
安装bind软件
[root@mail ~]# rpm -q bind
[root@mail ~]# mount /dev/hdc /mnt/
[root@mail ~]# vim /etc/yum.repos.d/rhel-debuginfo.repo
修改:
baseurl=file:///mnt/Server
enabled=1
[root@localhost ~]# yum -y install bind* caching-nameserver
3、配置named.conf文件
[root@mail ~]# vim /var/named/chroot/etc/named.conf
options {
directory "/var/named&qu...
linux多线程执行命令(扫描存活主机)
#!/usr/bin/env python
from threading import Thread
import subprocess
from Queue import Queue
import time
num_threads=10
iprange='192.168.230.'
ips=[]
iplist=range(250)
for i in iplist:
ips.append(iprange+str(i))
#print ips
#time.sleep(5)
#ips=['127.0.0.1','116.56.148.187','192.168.230.1','192.168.230.2','192.168.230.4']
q=Queue()
def pingme(i,qu...
python邮件告警脚本
[root@localhost alertscripts]# pwd
/usr/local/zabbix/share/zabbix/alertscripts
[root@localhost alertscripts]# ls
sendmail.py sendmail.sh.bak
[root@localhost alertscripts]#sendmail.py
[root@localhost alertscripts]# ./sendmail.py ‘收件人’ ‘主题’ ‘内容’
-------------------------------------------------------------------------------------------
#!/usr/bin/env python
#co...
一屏python代码实现文件传送
-------------------------------------------------------------------
服务端: 接收文件 #./file-server.py
#!/usr/bin/python
import SocketServer
# Format: name_len --- one byte
# name --- name_len bytes
# data --- variable length
# Save data to name into current directory
addr = ('192.168.230.128', 1234)
class MyTCPHandler (...
war包的打包与解包
需安装yum install java-1.7.0-openjdk-devel
把当前目录下的所有文件打包成game.war
jar -cvfM0 hello.war ./
-c 创建war包
-v 显示过程信息
-f
-M
-0 这个是阿拉伯数字,只打包不压缩的意思
解压hello.war
jar -xvf hello.war
解压到当前目录
hello.war 是一个测试用的简易war包,再搭建tomcat时可以方便进行测试,下载地址:http://s.zhusl.com/Apache/hello.war...
php5.6 CI的问题(Only variable references should be returned by reference)
A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257
原代码:
return $_config[0] =& $config;
修改后:
$_config[0] =& $config;
return $_config[0];...