摘要: 1 class Queue(): 2 def __init__(self, size): 3 self.queue = [] 4 self.size = size 5 self.head = 0 6 self.tail = 0... 阅读全文
posted @ 2015-07-09 08:55 兔纸不吃草 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 1 class Stack(): 2 def __init__(self, size): 3 self.stack = [] 4 self.size = size 5 self.top = -1 6 7 def push(self,... 阅读全文
posted @ 2015-07-09 08:52 兔纸不吃草 阅读(691) 评论(0) 推荐(0) 编辑
摘要: 1. 人生规划2. 开销记录 阅读全文
posted @ 2015-01-29 16:56 兔纸不吃草 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 中国程序员的发展之路 阅读全文
posted @ 2015-01-29 16:54 兔纸不吃草 阅读(151) 评论(0) 推荐(0) 编辑
摘要: A great and very detailed reference:Kanban vs Scrum To have an overall idea about Kanban and Scrum quickly, please read Chapter 2. Quick Access:... 阅读全文
posted @ 2015-01-26 11:44 兔纸不吃草 阅读(206) 评论(0) 推荐(0) 编辑
摘要: Preparation1. JIRA server2. Downloaded jar file of the add-onInstallation1. Go to Setting -> Add-ons -> ATLASSIAN MARKETPLACE -> Manage add-ons 2. Cli... 阅读全文
posted @ 2015-01-26 11:15 兔纸不吃草 阅读(536) 评论(0) 推荐(0) 编辑
摘要: 微信公众平台SDK!Senparc.Weixin.MP.dllhttp://weixin.senparc.com/ 阅读全文
posted @ 2015-01-16 15:35 兔纸不吃草 阅读(197) 评论(0) 推荐(0) 编辑
摘要: The following solutions use self-signed certificates. You can see more details about self-signed steps athttp://xiaohuafyle.iteye.com/blog/1538719.Cer... 阅读全文
posted @ 2015-01-08 10:57 兔纸不吃草 阅读(615) 评论(0) 推荐(0) 编辑
摘要: Preparation:Before start, you can check:- whether your domain supports SSLv3 athttps://www.ssllabs.com/ssltest/analyze.html- whether your browser supp... 阅读全文
posted @ 2015-01-08 10:56 兔纸不吃草 阅读(678) 评论(0) 推荐(0) 编辑
摘要: To set up JIRA on server (Windows) through remote desktop connection, first we need to download JIRA from Atlassian. There are JIRA installer and WAR ... 阅读全文
posted @ 2015-01-08 10:55 兔纸不吃草 阅读(309) 评论(0) 推荐(0) 编辑