青岛新生儿手续办理事项 1. 准生证办理: 九水路街道,身份证、户口本、结婚证、一胎出生证明2. 出生证明:http://wenda.bendibao.com/live/20191023/86096.shtm区市 签发机构名称 电话 地址 办理时间 李沧区妇幼保健计划生育服务中心 66089569 李沧区永年路20号 周一~周五 青岛市第八人民医院 87612862 李沧区峰山路84号 周二、周五 青岛市第三人民医院 89076587 李.
使用aws elastic beanstalk 部署 java springboot application 参考:https://noise.getoto.net/2016/11/09/deploying-a-spring-boot-application-on-aws-using-aws-elastic-beanstalk/注意最后的端口设置,默认为5000。
packstack allinone install log [root@kilo-rdo ~]# packstack --allinoneWelcome to the Packstack setup utilityThe installation log file is available at: /var/tmp/packstack/20161208-122639-y7lVCr/openstack-setup.logInstalling:C
lxml: Cannot import lxml.html.soupparser.fromstring, depends on outdated BeautifulSoup refer to: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801476When trying to perform the following with Python 3: from lxml.html.soupparser import fromstringThe following error is raised:
selendroid testing android web APP notes 1. 参考http://www.guru99.com/introduction-to-selendroid.html2. 使用下面的网址查看真机是否连接上,http://localhost:4444/wd/hub/status{ "status": 0, "value": { "supportedApps": [ { "appId
如何搭建一个属于自己的直播平台 编译问题总结 1. 如何搭建一个属于自己的直播平台 参考 http://www.open-open.com/lib/view/open1473231814360.html2. nginx build on cygwin运行时出现"the maximum number of files supported by select() is 64", 问题解决参考http://powertech.ite
斯坦福大学自然语言处理第七课“情感分析(Sentiment Analysis)” from: http://52opencourse.com/235/%E6%96%AF%E5%9D%A6%E7%A6%8F%E5%A4%A7%E5%AD%A6%E8%87%AA%E7%84%B6%E8%AF%AD%E8%A8%80%E5%A4%84%E7%90%86%E7%AC%AC%E4%B8%83%E8%AF%BE-%E6%83%85%E6%84%9F%E5%88%86%E6%9E%90%EF
由于SSH配置文件的不匹配,导致的Permission denied (publickey)及其解决方法 from: http://blog.itpub.net/25851087/viewspace-1262468/我的case是cygwin里面的home目录和系统目录不是同一个目录,删除git windows,使用cygwin中的git就可以clone了
Building RESTful APIs with Tornado from: http://www.drdobbs.com/open-source/building-restful-apis-with-tornado/240160382The Tornado Web framework makes it easy to write RESTful APIs in Python. How easy? Have a lookTornado i
Understanding the code inside Tornado, the asynchronous web server from:http://golubenco.org/understanding-the-code-inside-tornado-the-asynchronous-web-server-powering-friendfeed.htmlMy goal here is to have a walk through the lower layers of the Tornadoasynch
JBoss打开RMI调用trace 参考 https://developer.jboss.org/wiki/LoggingRMICalls?_sscc=tyou can enable logging of RMI calls by adding to the AS java start options: -Djava.rmi.server.logCalls=true
Java 7中的TransferQueue from: http://ifeve.com/java-transfer-queue/原文链接,译文链接,作者:Alex Miller,译者:Greenster,校对:梁海舰Java7中加入了JSR 166y规范对集合类和并发类库的改进。其中的一项是增加了接口TransferQueue和其实现类LinkedTransferQueue。TransferQueu
Some notes for Java 1. CallableStatement: The interface used to execute SQL stored procedures, not PreparedStatement, which represents a precompiled SQL statement.2. Hashtable: Neither the key nor the value can be null
Spring Bean 单例模式 1. Refer to >, page 39.2. Spring Bean Creation is Not Thread Saferefer to http://blog.imaginea.com/spring-bean-creation-is-not-thread-safe/When it comes to Java Concurrency no
swingworker类中的哪些方法里面可以写GUI相关的代码? 参考:http://stackoverflow.com/questions/20260372/swingworker-progressbarThere are four rules to follow with SwingWorker. You can refer to this diagram:
Java程序控制CPU使用率 参考: http://stackoverflow.com/questions/1202184/throttling-cpu-memory-usage-of-a-thread-in-javaone way would be to adaptively sleep the threads, similarly as video playback is done in Java. If you
logrotate 里面应该使用copytruncate 1. 参考http://unix.stackexchange.com/questions/33447/why-we-should-use-create-and-copytruncate-together
mysql分表处理基本设计思想和实现 from: http://hi.baidu.com/pplboy/item/faf85093ad9ce11d934f41fd一、概述分表是个目前算是比较炒的比较流行的概念,特别是在大负载的情况下,分表是一个良好分散数据库压力的好方法。首先要了解为什么要分表,分表的好处是什么。我们先来大概了解以下一个数据库执行SQL的过程:接收到SQL --> 放入SQL执行队列 --> 使