Skip to content

Commit

Permalink
Site updated: 2024-07-17 16:27:19
Browse files Browse the repository at this point in the history
  • Loading branch information
yanggeorge committed Jul 17, 2024
1 parent f18fa6c commit 329b6d0
Show file tree
Hide file tree
Showing 50 changed files with 4,421 additions and 1,776 deletions.
4 changes: 2 additions & 2 deletions 2017/03/12/2017-3-12-leetcode-329/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,9 @@ <h2 id="进一步优化"><a href="#进一步优化" class="headerlink" title="
<article class="post-prev col-6">


<a href="/2018/11/08/2018-11-8-leetcode-352/" title="[leetcode 352]原创解法">
<a href="/2017/03/23/2017-3-23-compile-and-run-clojure/" title="编译和运行Clojure分支20081217源码">
<i class="iconfont icon-arrowleft"></i>
<span class="hidden-mobile">[leetcode 352]原创解法</span>
<span class="hidden-mobile">编译和运行Clojure分支20081217源码</span>
<span class="visible-mobile">上一篇</span>
</a>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@
<meta http-equiv="x-ua-compatible" content="ie=edge">

<meta name="theme-color" content="#2f4154">
<meta name="author" content="[email protected]">
<meta name="author" content="Ming Yang">
<meta name="keywords" content="">

<meta name="description" content="Clojure branch 20081217为啥要做这件事情呢? Clojure是一门jvm语言,使用了asm。 branch 20081217是最初的版本便于研究。">
<meta property="og:type" content="article">
<meta property="og:title" content="编译和运行Clojure分支20081217源码">
<meta property="og:url" content="http://threelambda.com/2022/02/06/2017-3-23-compile-and-run-clojure/index.html">
<meta property="og:url" content="http://threelambda.com/2017/03/23/2017-3-23-compile-and-run-clojure/index.html">
<meta property="og:site_name" content="CodeCraft">
<meta property="og:description" content="Clojure branch 20081217为啥要做这件事情呢? Clojure是一门jvm语言,使用了asm。 branch 20081217是最初的版本便于研究。">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2022-02-06T08:15:16.681Z">
<meta property="article:modified_time" content="2024-07-17T07:03:55.579Z">
<meta property="article:published_time" content="2017-03-22T16:00:00.000Z">
<meta property="article:modified_time" content="2024-07-17T08:25:56.687Z">
<meta property="article:author" content="[email protected]">
<meta property="article:tag" content="java">
<meta property="article:tag" content="clojure">
Expand Down Expand Up @@ -241,8 +241,8 @@

<span class="post-meta">
<i class="iconfont icon-date-fill" aria-hidden="true"></i>
<time datetime="2022-02-06 16:15" pubdate>
2022年2月6日 下午
<time datetime="2017-03-23 00:00" pubdate>
2017年3月23日 凌晨
</time>
</span>

Expand Down Expand Up @@ -400,19 +400,19 @@ <h2 id="运行"><a href="#运行" class="headerlink" title=" 运行"></a><a name
<div class="license-box my-3">
<div class="license-title">
<div>编译和运行Clojure分支20081217源码</div>
<div>http://threelambda.com/2022/02/06/2017-3-23-compile-and-run-clojure/</div>
<div>http://threelambda.com/2017/03/23/2017-3-23-compile-and-run-clojure/</div>
</div>
<div class="license-meta">

<div class="license-meta-item">
<div>作者</div>
<div>[email protected]</div>
<div>Ming Yang</div>
</div>


<div class="license-meta-item license-meta-date">
<div>发布于</div>
<div>2022年2月6日</div>
<div>2017年3月23日</div>
</div>


Expand Down Expand Up @@ -444,18 +444,18 @@ <h2 id="运行"><a href="#运行" class="headerlink" title=" 运行"></a><a name
<article class="post-prev col-6">


<a href="/2023/01/12/2023-1-12-8-queens-chatgpt/" title="通过ChatGPT实现Rust语言的八皇后算法">
<a href="/2017/05/19/2017-5-19-javacc-minilisp/" title="Write a simple parser for MiniLisp by using JavaCC">
<i class="iconfont icon-arrowleft"></i>
<span class="hidden-mobile">通过ChatGPT实现Rust语言的八皇后算法</span>
<span class="hidden-mobile">Write a simple parser for MiniLisp by using JavaCC</span>
<span class="visible-mobile">上一篇</span>
</a>

</article>
<article class="post-next col-6">


<a href="/2022/02/06/leetcode-312/" title="[leetcode 312]Burst Balloons原创解法">
<span class="hidden-mobile">[leetcode 312]Burst Balloons原创解法</span>
<a href="/2017/03/12/2017-3-12-leetcode-329/" title="[leetcode 329]Longest Increasing Path in a Matrix 原创解法">
<span class="hidden-mobile">[leetcode 329]Longest Increasing Path in a Matrix 原创解法</span>
<span class="visible-mobile">下一篇</span>
<i class="iconfont icon-arrowright"></i>
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@
<meta http-equiv="x-ua-compatible" content="ie=edge">

<meta name="theme-color" content="#2f4154">
<meta name="author" content="[email protected]">
<meta name="author" content="Ming Yang">
<meta name="keywords" content="">

<meta name="description" content="MiniLisp是什么?MiniLisp是一个只用几百行代码实现的Lisp。以下是实现的 基本特性。 integers, symbols, cons cells, global variables, lexically-scoped local variables, closures, if conditional, primitive functions, such as +, &#x3D;">
<meta property="og:type" content="article">
<meta property="og:title" content="Write a simple parser for MiniLisp by using JavaCC">
<meta property="og:url" content="http://threelambda.com/2022/02/06/2017-5-19-javacc-minilisp/index.html">
<meta property="og:url" content="http://threelambda.com/2017/05/19/2017-5-19-javacc-minilisp/index.html">
<meta property="og:site_name" content="CodeCraft">
<meta property="og:description" content="MiniLisp是什么?MiniLisp是一个只用几百行代码实现的Lisp。以下是实现的 基本特性。 integers, symbols, cons cells, global variables, lexically-scoped local variables, closures, if conditional, primitive functions, such as +, &#x3D;">
<meta property="og:locale" content="zh_CN">
<meta property="article:published_time" content="2022-02-06T08:15:16.657Z">
<meta property="article:modified_time" content="2024-07-17T07:03:55.236Z">
<meta property="article:published_time" content="2017-05-18T16:00:00.000Z">
<meta property="article:modified_time" content="2024-07-17T08:25:38.370Z">
<meta property="article:author" content="[email protected]">
<meta property="article:tag" content="java">
<meta property="article:tag" content="javacc">
Expand Down Expand Up @@ -241,8 +241,8 @@

<span class="post-meta">
<i class="iconfont icon-date-fill" aria-hidden="true"></i>
<time datetime="2022-02-06 16:15" pubdate>
2022年2月6日 下午
<time datetime="2017-05-19 00:00" pubdate>
2017年5月19日 凌晨
</time>
</span>

Expand Down Expand Up @@ -387,19 +387,19 @@ <h2 id="测试代码"><a href="#测试代码" class="headerlink" title=" 测试
<div class="license-box my-3">
<div class="license-title">
<div>Write a simple parser for MiniLisp by using JavaCC</div>
<div>http://threelambda.com/2022/02/06/2017-5-19-javacc-minilisp/</div>
<div>http://threelambda.com/2017/05/19/2017-5-19-javacc-minilisp/</div>
</div>
<div class="license-meta">

<div class="license-meta-item">
<div>作者</div>
<div>[email protected]</div>
<div>Ming Yang</div>
</div>


<div class="license-meta-item license-meta-date">
<div>发布于</div>
<div>2022年2月6日</div>
<div>2017年5月19日</div>
</div>


Expand Down Expand Up @@ -431,18 +431,18 @@ <h2 id="测试代码"><a href="#测试代码" class="headerlink" title=" 测试
<article class="post-prev col-6">


<a href="/2022/02/06/find-top-n/" title="从大文件中找到出现次数最多的10个数">
<a href="/2017/05/24/2017-5-24-gradle-build-project/" title="Gradle脚本实现web开发框架的一键构建">
<i class="iconfont icon-arrowleft"></i>
<span class="hidden-mobile">从大文件中找到出现次数最多的10个数</span>
<span class="hidden-mobile">Gradle脚本实现web开发框架的一键构建</span>
<span class="visible-mobile">上一篇</span>
</a>

</article>
<article class="post-next col-6">


<a href="/2022/02/06/2022-2-6-leetcode-390/" title="[leetcode 390]Elimination Game原创解法">
<span class="hidden-mobile">[leetcode 390]Elimination Game原创解法</span>
<a href="/2017/03/23/2017-3-23-compile-and-run-clojure/" title="编译和运行Clojure分支20081217源码">
<span class="hidden-mobile">编译和运行Clojure分支20081217源码</span>
<span class="visible-mobile">下一篇</span>
<i class="iconfont icon-arrowright"></i>
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
<meta http-equiv="x-ua-compatible" content="ie=edge">

<meta name="theme-color" content="#2f4154">
<meta name="author" content="[email protected]">
<meta name="author" content="Ming Yang">
<meta name="keywords" content="">

<meta name="description" content="问题Java世界里构建项目用什么工具呢,ant,maven和gradle。maven非常流行, 原因无非是maven仓库和项目架构的约定。但是ant构建过程更加容易理解, 因为ant展示了所有的操作。gradle拥有基于groovy语言的DSL语言且继承了 maven仓库的思想所以笔者认为未来是属于gradle的。">
<meta property="og:type" content="article">
<meta property="og:title" content="Gradle脚本实现web开发框架的一键构建">
<meta property="og:url" content="http://threelambda.com/2022/02/06/2017-5-24-gradle-build-project/index.html">
<meta property="og:url" content="http://threelambda.com/2017/05/24/2017-5-24-gradle-build-project/index.html">
<meta property="og:site_name" content="CodeCraft">
<meta property="og:description" content="问题Java世界里构建项目用什么工具呢,ant,maven和gradle。maven非常流行, 原因无非是maven仓库和项目架构的约定。但是ant构建过程更加容易理解, 因为ant展示了所有的操作。gradle拥有基于groovy语言的DSL语言且继承了 maven仓库的思想所以笔者认为未来是属于gradle的。">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="http://threelambda.com/images/2017-5-24-1.gif">
<meta property="og:image" content="http://threelambda.com/images/2017-5-24-2.jpg">
<meta property="article:published_time" content="2022-02-06T08:15:16.664Z">
<meta property="article:modified_time" content="2024-07-17T07:03:55.245Z">
<meta property="article:published_time" content="2017-05-23T16:00:00.000Z">
<meta property="article:modified_time" content="2024-07-17T08:25:38.377Z">
<meta property="article:author" content="[email protected]">
<meta property="article:tag" content="java">
<meta property="article:tag" content="gradle">
Expand Down Expand Up @@ -244,8 +244,8 @@

<span class="post-meta">
<i class="iconfont icon-date-fill" aria-hidden="true"></i>
<time datetime="2022-02-06 16:15" pubdate>
2022年2月6日 下午
<time datetime="2017-05-24 00:00" pubdate>
2017年5月24日 凌晨
</time>
</span>

Expand Down Expand Up @@ -363,19 +363,19 @@ <h2 id="build-gradle文件内容"><a href="#build-gradle文件内容" class="hea
<div class="license-box my-3">
<div class="license-title">
<div>Gradle脚本实现web开发框架的一键构建</div>
<div>http://threelambda.com/2022/02/06/2017-5-24-gradle-build-project/</div>
<div>http://threelambda.com/2017/05/24/2017-5-24-gradle-build-project/</div>
</div>
<div class="license-meta">

<div class="license-meta-item">
<div>作者</div>
<div>[email protected]</div>
<div>Ming Yang</div>
</div>


<div class="license-meta-item license-meta-date">
<div>发布于</div>
<div>2022年2月6日</div>
<div>2017年5月24日</div>
</div>


Expand Down Expand Up @@ -407,18 +407,18 @@ <h2 id="build-gradle文件内容"><a href="#build-gradle文件内容" class="hea
<article class="post-prev col-6">


<a href="/2022/02/06/2018-2-24-robber-3/" title="[leetcode 337]打败了100&amp;#37;的解法">
<a href="/2017/07/09/2017-7-9-resize-fixed-image/" title="How to resize VirtualBox fixed image size and keep contents unchanged ?">
<i class="iconfont icon-arrowleft"></i>
<span class="hidden-mobile">[leetcode 337]打败了100&amp;#37;的解法</span>
<span class="hidden-mobile">How to resize VirtualBox fixed image size and keep contents unchanged ?</span>
<span class="visible-mobile">上一篇</span>
</a>

</article>
<article class="post-next col-6">


<a href="/2022/02/06/find-top-n/" title="从大文件中找到出现次数最多的10个数">
<span class="hidden-mobile">从大文件中找到出现次数最多的10个数</span>
<a href="/2017/05/19/2017-5-19-javacc-minilisp/" title="Write a simple parser for MiniLisp by using JavaCC">
<span class="hidden-mobile">Write a simple parser for MiniLisp by using JavaCC</span>
<span class="visible-mobile">下一篇</span>
<i class="iconfont icon-arrowright"></i>
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
<meta http-equiv="x-ua-compatible" content="ie=edge">

<meta name="theme-color" content="#2f4154">
<meta name="author" content="[email protected]">
<meta name="author" content="Ming Yang">
<meta name="keywords" content="">

<meta name="description" content="问题如何更改镜像文件的大小呢,尤其是如何把一个固定大小的镜像变大,并且之前的内容完全不改变。 我尝试了一些方法,比如下面的几个步骤。1.查看信息,2.克隆新的vdi,3.调整大小,4.再查看信息。">
<meta property="og:type" content="article">
<meta property="og:title" content="How to resize VirtualBox fixed image size and keep contents unchanged ?">
<meta property="og:url" content="http://threelambda.com/2022/02/06/2017-7-9-resize-fixed-image/index.html">
<meta property="og:url" content="http://threelambda.com/2017/07/09/2017-7-9-resize-fixed-image/index.html">
<meta property="og:site_name" content="CodeCraft">
<meta property="og:description" content="问题如何更改镜像文件的大小呢,尤其是如何把一个固定大小的镜像变大,并且之前的内容完全不改变。 我尝试了一些方法,比如下面的几个步骤。1.查看信息,2.克隆新的vdi,3.调整大小,4.再查看信息。">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="http://threelambda.com/images/20170710-1.jpg">
<meta property="og:image" content="http://threelambda.com/images/20170710-2.jpg">
<meta property="article:published_time" content="2022-02-06T08:15:16.677Z">
<meta property="article:modified_time" content="2024-07-17T07:03:55.321Z">
<meta property="article:published_time" content="2017-07-08T16:00:00.000Z">
<meta property="article:modified_time" content="2024-07-17T08:24:59.545Z">
<meta property="article:author" content="[email protected]">
<meta property="article:tag" content="image">
<meta property="article:tag" content="resize">
Expand Down Expand Up @@ -244,8 +244,8 @@

<span class="post-meta">
<i class="iconfont icon-date-fill" aria-hidden="true"></i>
<time datetime="2022-02-06 16:15" pubdate>
2022年2月6日 下午
<time datetime="2017-07-09 00:00" pubdate>
2017年7月9日 凌晨
</time>
</span>

Expand Down Expand Up @@ -383,19 +383,19 @@ <h2 id="解决最后的小问题"><a href="#解决最后的小问题" class="hea
<div class="license-box my-3">
<div class="license-title">
<div>How to resize VirtualBox fixed image size and keep contents unchanged ?</div>
<div>http://threelambda.com/2022/02/06/2017-7-9-resize-fixed-image/</div>
<div>http://threelambda.com/2017/07/09/2017-7-9-resize-fixed-image/</div>
</div>
<div class="license-meta">

<div class="license-meta-item">
<div>作者</div>
<div>[email protected]</div>
<div>Ming Yang</div>
</div>


<div class="license-meta-item license-meta-date">
<div>发布于</div>
<div>2022年2月6日</div>
<div>2017年7月9日</div>
</div>


Expand Down Expand Up @@ -427,7 +427,7 @@ <h2 id="解决最后的小问题"><a href="#解决最后的小问题" class="hea
<article class="post-prev col-6">


<a href="/2022/02/06/leetcode-312/" title="[leetcode 312]Burst Balloons原创解法">
<a href="/2017/10/07/leetcode-312/" title="[leetcode 312]Burst Balloons原创解法">
<i class="iconfont icon-arrowleft"></i>
<span class="hidden-mobile">[leetcode 312]Burst Balloons原创解法</span>
<span class="visible-mobile">上一篇</span>
Expand All @@ -437,8 +437,8 @@ <h2 id="解决最后的小问题"><a href="#解决最后的小问题" class="hea
<article class="post-next col-6">


<a href="/2022/02/06/2018-8-18-leetcode-341/" title="[leetcode 341]练练手">
<span class="hidden-mobile">[leetcode 341]练练手</span>
<a href="/2017/05/24/2017-5-24-gradle-build-project/" title="Gradle脚本实现web开发框架的一键构建">
<span class="hidden-mobile">Gradle脚本实现web开发框架的一键构建</span>
<span class="visible-mobile">下一篇</span>
<i class="iconfont icon-arrowright"></i>
</a>
Expand Down
Loading

0 comments on commit 329b6d0

Please sign in to comment.