-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
executable file
·43 lines (43 loc) · 10.3 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"> <channel>
<title>Y's Blog</title>
<link>http://fexeak.github.io</link>
<pubDate>15 Jan 15 11:28 PST</pubDate>
<item>
<title>just-simpole-compare</title>
<link>http://fexeak.github.io/default/just-simpole-compare/</link>
<pubDate>2015-01-15 12:00:00 +0800</pubDate>
<description><h2>CPU: i5 2.6G Hz <em>10000 times looooooooop</em></h2>

<ul>
<li>c:</li>
</ul>

<p>real 0m0.045s</p>

<p>user 0m0.004s</p>

<p>sys 0m0.012s</p>

<ul>
<li>go:</li>
</ul>

<p><em>runtime</em></p>

<p>real 0m0.286s</p>

<p>user 0m0.120s</p>

<p>sys 0m0.104s</p>

<p><em>compile</em></p>

<p>real 0m0.056s</p>

<p>user 0m0.012s</p>

<p>sys 0m0.016s</p>

<ul>
<li>python:</li>
</ul>

<p>real 0m0.106s</p>

<p>user 0m0.016s</p>

<p>sys 0m0.024s</p>

<ul>
<li>c#: mono</li>
</ul>

<p>real 0m0.168s</p>

<p>user 0m0.016s</p>

<p>sys 0m0.060s</p>

<ul>
<li>java:</li>
</ul>

<p>real 0m0.431s</p>

<p>user 0m0.340s</p>

<p>sys 0m0.180s</p>
</description>
</item>
<item>
<title>golang-knn</title>
<link>http://fexeak.github.io/default/golang-knn/</link>
<pubDate>2015-01-14 12:00:00 +0800</pubDate>
<description></description>
</item>
<item>
<title>DoorDroid-1</title>
<link>http://fexeak.github.io/default/DoorDroid-1/</link>
<pubDate>2014-12-13 12:00:00 +0800</pubDate>
<description><p> 对控件动态产生时的参数 <em>LayoutParams</em> 进行设置时,注意一句话:</p>

<blockquote>
<p>A widget must have the LayoutParams of its <strong>parent</strong>.</p>
</blockquote>

<p> 所以设置的 <em>LayoutParams</em> 应该是父类的 XXXParams.</p>
</description>
</item>
<item>
<title>SingletonFactory</title>
<link>http://fexeak.github.io/default/SingletonFactory/</link>
<pubDate>2014-05-12 12:00:00 +0800</pubDate>
<description><p> 转转看到个 <em>singletonFactory</em> 的实现:</p>

<pre><code>/**
 * this class implements two patterns of Singleton and of Factory, the singleton
 * factory allows to transform in singleton any other class, without changing
 * it&#39;s code.
 * 
 * This version generates the singleton class in the moment the class is loaded.
 * 
 * 
 * @author Giulio
 */
public class SingletonFactory {
 
 static private SingletonFactory singletonFactory = new SingletonFactory();
 
 private AClass aClass=null;
 
 // private constructor, we don&#39;t want the class to be instantiated from
 // others.
 private SingletonFactory() {
	//does nothing
 }
 
 public static SingletonFactory getSingletonFactory() {
	return singletonFactory;
 }
 
 /**
 * returns the AClass object contained in the singleton, the object is created lazily
 * 
 * @return the &#34;singletonized&#34; class
 */
 public AClass getAClass() {
	if (this.aClass == null){
 synchronized ( this ) {
 if ( this.aClass == null ) {
	 this.aClass = new AClass();
 }
 }
	}
	return this.aClass;
 }
 
 
}
</code></pre>
</description>
</item>
<item>
<title>vim-map-localleader-vs-leader</title>
<link>http://fexeak.github.io/default/vim-map-localleader-vs-leader/</link>
<pubDate>2014-02-13 12:00:00 +0800</pubDate>
<description><p> Vim 中 <em>localleader</em> 和 <em>leader</em> 不同之处在于:</p>

<blockquote>
<p>maplocalleader is shared between buffers but mapleader not.</p>
</blockquote>

<p> 所以 <em>localleader</em> 常常在插件中使用,这样在不同插件环境下有不同的 <em>localleader</em> .</p>
</description>
</item>
<item>
<title>修改gor的Markdown渲染方式</title>
<link>http://fexeak.github.io/default/%E4%BF%AE%E6%94%B9gor%E7%9A%84Markdown%E6%B8%B2%E6%9F%93%E6%96%B9%E5%BC%8F/</link>
<pubDate>2013-12-10 12:00:00 +0800</pubDate>
<description><p> <a href="https://github.com/wendal/gor" rel="nofollow">wendal的gor</a>在遇到code block的时候会不足, 把其markdown部分用官方Blackfriday替代后可以解决。</p>

<hr/>

<p><em>下面是对Markdown语法的一些测试:</em></p>

<hr/>

<h1>The largest heading</h1>

<h2>The second largest heading</h2>

<p>…</p>

<h6>The 6th largest heading</h6>

<blockquote>
<p>Pardon my french</p>
</blockquote>

<p><em>This text will be italic</em></p>

<p><strong>This text will be bold</strong></p>

<p><strong>Everyone <em>must</em> attend the meeting at 5 o’click today.</strong></p>

<ul>
<li>Item</li>
<li>Item</li>

<li><p>Item</p></li>

<li><p>Item</p></li>

<li><p>Item</p></li>

<li><p>Item</p></li>

<li><p>Item 1</p></li>

<li><p>Item 2</p></li>

<li><p>Item 3</p></li>

<li><p>Item 1</p>

<ol>
<li>A corollary to the above item.</li>
<li>A corollary to the above item.</li>
</ol></li>

<li><p>Item 2</p>

<ul>
<li>A corollary to the above item.

<ul>
<li>A corollary to the above item.</li>
<li>A corollary to the above item.</li>
</ul></li>
</ul></li>

<li><p>Item 3</p></li>
</ul>

<p>Here’s an idea: why don’t we take <code>SuperiorProject</code> and turn it into <code>**Reasonable**Project</code>.</p>

<p>Check out this neat program I wrote:</p>

<pre><code>x = 0
x = 2 + 2
what is x
</code></pre>

<p>do_this_and_do_that_and_another_thing.</p>

<p><a href="http://example.com" rel="nofollow">http://example.com</a></p>

<p><del>Mistaken text.</del></p>

<p>Here’s an example:</p>

<pre><code>function test() {
 console.log(&#34;notice the blank line before this function?&#34;);

}
</code></pre>

<pre><code>require &#39;redcarpet&#39;
markdown = Redcarpet.new(&#34;Hello World!&#34;)
puts markdown.to_html
</code></pre>

<table>
<thead>
<tr>
<th>First Header</th>
<th>Second Header</th>
</tr>
</thead>

<tbody>
<tr>
<td>Content Cell</td>
<td>Content Cell</td>
</tr>

<tr>
<td>Content Cell</td>
<td>Content Cell</td>
</tr>
</tbody>
</table>

<table>
<thead>
<tr>
<th>First Header</th>
<th>Second Header</th>
</tr>
</thead>

<tbody>
<tr>
<td>Content Cell</td>
<td>Content Cell</td>
</tr>

<tr>
<td>Content Cell</td>
<td>Content Cell</td>
</tr>
</tbody>
</table>

<table>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>

<tbody>
<tr>
<td>Help</td>
<td><del>Display the</del> help window.</td>
</tr>

<tr>
<td>Close</td>
<td><em>Closes</em> a window</td>
</tr>
</tbody>
</table>

<table>
<thead>
<tr>
<th align="left">Left-Aligned</th>
<th align="center">Center Aligned</th>
<th align="right">Right Aligned</th>
</tr>
</thead>

<tbody>
<tr>
<td align="left">col 3 is</td>
<td align="center">some wordy text</td>
<td align="right">$1600</td>
</tr>

<tr>
<td align="left">col 2 is</td>
<td align="center">centered</td>
<td align="right">$12</td>
</tr>

<tr>
<td align="left">zebra stripes</td>
<td align="center">are neat</td>
<td align="right">$1</td>
</tr>
</tbody>
</table>
</description>
</item>
</channel>
</rss>