摘要: 博主之前在给公司的虚拟云主机开启SSL。经参考两个博客,总结出以下流程,亲测。 <http://blog.csdn.net/newjueqi/article/details/9789659> @2017-04-17 <http://www.cnblogs.com/IT--Loding/p/60718 阅读全文
posted @ 2017-04-18 14:36 兔纸不吃草 阅读(2036) 评论(0) 推荐(0) 编辑
摘要: 1. http://askubuntu.com/questions/17062/how-to-open-a-directory-folder-and-a-url-through-terminal 阅读全文
posted @ 2016-12-07 14:02 兔纸不吃草 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1. http://www.2cto.com/os/201405/297802.html 2. http://www.microsofttranslator.com/bv.aspx?ref=SERP&br=ro&mkt=zh-CN&dl=en&lp=ZH-CHS_EN&a=http%3a%2f%2f 阅读全文
posted @ 2016-12-07 14:00 兔纸不吃草 阅读(216) 评论(0) 推荐(0) 编辑
摘要: __author__ = 'zenglinwang' class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ ... 阅读全文
posted @ 2016-08-05 10:49 兔纸不吃草 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #include #include /** * Definition for singly-linked list. * struct ListNode { * int val; * struct ListNode *next; * }; */ struct ListNode { int val; struct ListNode *next... 阅读全文
posted @ 2016-08-05 10:48 兔纸不吃草 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #include // 5. Longest Palindromic Substring // Given a string S, find the longest palindromic substring in S. // You may assume that the maximum length of S is 1000, // and there exists one uniq... 阅读全文
posted @ 2016-08-05 10:46 兔纸不吃草 阅读(146) 评论(0) 推荐(0) 编辑
摘要: #include #include // 7. Reverse Integer // Difficulty: Easy // Reverse digits of an integer. // Example1: x = 123, return 321 // Example2: x = -123, return -321 // https://leetcode.com/problems/re... 阅读全文
posted @ 2016-08-05 10:45 兔纸不吃草 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include #include #include // 9. Palindrome Number // Determine whether an integer is a palindrome. Do this without extra space. // https://leetcode.com/problems/palindrome-number/ // Algorith... 阅读全文
posted @ 2016-08-05 10:43 兔纸不吃草 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Question 1. Problem statement: Consider a row of n coins of values v1 . . . vn, where n is even. We play a game against an opponent by alternating tur 阅读全文
posted @ 2016-06-18 12:00 兔纸不吃草 阅读(230) 评论(0) 推荐(0) 编辑
摘要: Example[1] tar xfj /directory/src.tar.bz2Reference[1]tar命令的详细解释[2]The 'tar'command 阅读全文
posted @ 2015-12-03 12:58 兔纸不吃草 阅读(148) 评论(0) 推荐(0) 编辑