How to resize VirtualBox fixed image size and keep contents unchanged ? 问题如何更改镜像文件的大小呢,尤其是如何把一个固定大小的镜像变大,并且之前的内容完全不改变。 我尝试了一些方法,比如下面的几个步骤。1.查看信息,2.克隆新的vdi,3.调整大小,4.再查看信息。 2017-07-09 #image #resize #virutalbox
Gradle脚本实现web开发框架的一键构建 问题Java世界里构建项目用什么工具呢,ant,maven和gradle。maven非常流行, 原因无非是maven仓库和项目架构的约定。但是ant构建过程更加容易理解, 因为ant展示了所有的操作。gradle拥有基于groovy语言的DSL语言且继承了 maven仓库的思想所以笔者认为未来是属于gradle的。 2017-05-24 #java #gradle #build
Write a simple parser for MiniLisp by using JavaCC MiniLisp是什么?MiniLisp是一个只用几百行代码实现的Lisp。以下是实现的 基本特性。 integers, symbols, cons cells, global variables, lexically-scoped local variables, closures, if conditional, primitive functions, such as +, = 2017-05-19 #java #javacc #lisp
编译和运行Clojure分支20081217源码 Clojure branch 20081217为啥要做这件事情呢? Clojure是一门jvm语言,使用了asm。 branch 20081217是最初的版本便于研究。 2017-03-23 #java #clojure #jvm
[leetcode 329]Longest Increasing Path in a Matrix 原创解法 题目概述原题链接 Given an integer matrix, find the length of the longest increasing path From each cell, you can either move to four directions: left, right, up or down. You may NOT move diagonally or move 2017-03-12 #leetcode #算法 #python
How to call java code in Grails 3.2.6 解决方法我的Grails的环境是 grails -v | Grails Version: 3.2.6 | Groovy Version: 2.4.7 | JVM Version: 1.8.0_71 2017-03-06 #java #grails #gradle
[leetcode 295]Find Median from Data Stream 原创解法 题目概述原题链接 Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value. Examples: `[2,3,4]` , 2017-01-31 #leetcode #算法 #python
解决python3使用system-site-packages创建虚拟环境时没有pip的问题 python虚拟环境从python3.5开始,使用venv创建虚拟环境已经成为官方推荐的方案。 查看官方文档,可以看到如果想要创建一个干净的虚拟环境。方式如下 python -m venv myenv 2017-01-18 #python #venv
在WIN10下使用Cython CythonCython不是CPython的简称,而是一种提升Python代码执行效率的解决方案。 据说一般达到30x。一会我们来看看是不是真的。这个技术对老鸟来说已经是好多 年前的了。但是很多情况下python用户真的用不上,所以不知道也无妨。 2017-01-12 #python #Cython
[leetcode 327]Count of Range Sum 原创解法 题目概述原题链接 Given an integer array nums, return the number of range sums that lie in [lower, upper] inclusive. Range sum S(i, j) is defined as the sum of the elements in nums between indices i and j (i 2016-12-31 #leetcode #算法 #python