-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
817 lines (432 loc) · 23.6 KB
/
index.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
<!DOCTYPE html>
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Goofy's Blog</title>
<meta name="author" content="Goofy">
<meta name="description" content="折腾octopress的时候,遇到很多generate出错的情况,而提供的出错信息很难看出问题在哪,一般只能看到某个rb文件某行出了什么错,这个时候ruby的调试工具debugger就可以派上用场了。 1. 首先安装debugger gem 1
2
3
4
$ gem install …">
<!-- http://t.co/dKP3o1e -->
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="http://javame.tk">
<link href="/favicon.png" rel="icon">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="/atom.xml" rel="alternate" title="Goofy's Blog" type="application/atom+xml">
<script src="/javascripts/modernizr-2.0.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="./javascripts/lib/jquery.min.js"%3E%3C/script%3E'))</script>
<script src="/javascripts/octopress.js" type="text/javascript"></script>
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33768320-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body >
<header role="banner"><hgroup>
<h1><a href="/">Goofy's Blog</a></h1>
<h2>Focus on Web Technology</h2>
</hgroup>
</header>
<nav role="navigation"><ul class="subscription" data-subscription="rss">
<li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
</ul>
<form action="http://google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:javame.tk" />
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
</fieldset>
</form>
<ul class="main-navigation">
<li><a href="/">Blog</a></li>
<li><a href="/blog/archives">Archives</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/05/15/debug-with-jekyll-rubygem/">Debug With Jekyll(rubygem)</a></h1>
<p class="meta">
<time datetime="2013-05-15T14:12:00+08:00" pubdate data-updated="true">May 15<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><p>折腾octopress的时候,遇到很多generate出错的情况,而提供的出错信息很难看出问题在哪,一般只能看到某个rb文件某行出了什么错,这个时候ruby的调试工具<a href="https://github.com/cldwalker/debugger">debugger</a>就可以派上用场了。</p>
<h3> 1. 首先安装debugger gem </h3>
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
</pre></td><td class='code'><pre><code class='bash'><span class='line'><span class="nv">$ </span>gem install debugger
</span><span class='line'>
</span><span class='line'><span class="c"># If install fails, try passing headers path</span>
</span><span class='line'><span class="nv">$ </span>gem install debugger -- --with-ruby-include<span class="o">=</span>PATH_TO_HEADERS
</span></code></pre></td></tr></table></div></figure>
<h3> 2. 如果使用bundler,把gem添加到Gemfile </h3>
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class='bash'><span class='line'>gem <span class="s1">'debugger'</span>
</span></code></pre></td></tr></table></div></figure>
<h3> 3. 在执行出错的rb文件中添加断点 </h3>
<figure class='code'><figcaption><span>xxx.rb</span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
</pre></td><td class='code'><pre><code class='ruby'><span class='line'><span class="c1">#在出错的语句前添加</span>
</span><span class='line'><span class="nb">require</span> <span class="s1">'debugger'</span><span class="p">;</span> <span class="n">debugger</span>
</span></code></pre></td></tr></table></div></figure>
<p>然后重新执行出错的rake task, 程序会停在断点处,直接输入变量名来查看变量,输入help查看命令列表。debugger用法详见<a href="http://bashdb.sourceforge.net/ruby-debug.html">debugger tutorial</a>。</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/05/13/using-variables-and-shell-commands-in-sed/">Using Variables and Shell-commands in Sed</a></h1>
<p class="meta">
<time datetime="2013-05-13T11:48:00+08:00" pubdate data-updated="true">May 13<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><p>VIA:(<a href="http://blog.csdn.net/linwhwylb/article/details/7184748">http://blog.csdn.net/linwhwylb/article/details/7184748</a>)</p>
<p>在使用sed对日志或者其它文本进行parse的过程当中,有时候我们需要引用外部变量的值,</p>
<p>或者获取一个shell命令执行的结果,以便达到更加可观的输出结果。这里介绍如何做到。</p>
</div>
<footer>
<a rel="full-article" href="/blog/2013/05/13/using-variables-and-shell-commands-in-sed/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/04/24/volatile-in-java/">Volatile in Java</a></h1>
<p class="meta">
<time datetime="2013-04-24T00:00:00+08:00" pubdate data-updated="true">Apr 24<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><p><strong>VIA: <a href="http://ifeve.com/jmm-faq-volatile/">http://ifeve.com/jmm-faq-volatile/</a></strong></p>
<hr />
<p>原文:<a href="http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html#volatile">http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html#volatile</a></p>
<p>译者:Alex</p>
<p>Volitile字段是用于线程间通讯的特殊字段。每次读volitile字段都会看到其它线程写入该字段的最新值;实际上,程序员之所以要定义volitile字段是因为在某些情况下由于缓存和重排序所看到的陈旧的变量值是不可接受的。编译器和运行时禁止在寄存器里面分配它们。它们还必须保证,在它们写好之后,它们被从缓冲区刷新到主存中,因此,它们立即能够对其他线程可见。相同地,在读取一个volatile字段之前,缓冲区必须失效,因为值是存在于主存中而不是本地处理器缓冲区。在重排序访问volatile变量的时候还有其他的限制。</p>
</div>
<footer>
<a rel="full-article" href="/blog/2013/04/24/volatile-in-java/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/03/21/enter-special-char-in-linux/">How to Enter Special Characters in Ubuntu(Linux)</a></h1>
<p class="meta">
<time datetime="2013-03-21T00:00:00+08:00" pubdate data-updated="true">Mar 21<span>st</span>, 2013</time>
</p>
</header>
<div class="entry-content"><blockquote><p>To enter a character by its code point, hold down <code>Ctrl</code> and <code>Shift</code>, type <code>u</code> followed by the four-character code point,
then release <code>Ctrl</code> and <code>Shift</code>. If you often use characters that you can’t easily access with other methods, you might find
it useful to memorize the code point for those characters so you can enter them quickly.</p></blockquote>
<p>Ref: <a href="https://help.ubuntu.com/lts/ubuntu-help/tips-specialchars.html#ctrlshiftu">Ubuntu Documentation</a></p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/03/05/How_to_Recover_Files_Deleted_by_Mistake_in_Git/">How to Recover Files Deleted by Mistake in Git</a></h1>
<p class="meta">
<time datetime="2013-03-05T00:00:00+08:00" pubdate data-updated="true">Mar 5<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><ol>
<li>找到commit记录如:f5810e08df0cb7cf82608d65cdb709cb430df2ea</li>
<li>
执行以下命令即可恢复删除的文件
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class='bash'><span class='line'>git checkout f5810e08df0cb7cf82608d65cdb709cb430df2ea path/to/file
</span></code></pre></td></tr></table></div></figure>
</li>
<li>重新commit push</li>
</ol>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/03/05/Goodbye_Microsoft_Hello_Facebook/">Goodbye Microsoft, Hello Facebook!</a></h1>
<p class="meta">
<time datetime="2013-03-05T00:00:00+08:00" pubdate data-updated="true">Mar 5<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><p>VIA: <a href="http://www.36kr.com/p/201666.html">36kr.com</a></p>
<p>编者注:Philip Su在1998年加入微软,开始时是一位软件工程师。12年后,Philip Su从微软辞职,当时是微软的主群经理(Principal Group Manager),又一次以一位普通软件工程师的身份加入Facebook。Philip Su现任Facebook 伦敦办公室的主管。Philip Su在当时的离职信中写了他在微软工作12年比较独到的一些体会,希望对在职场的读者们有一些启发。这封离职信写于2010年9月3日。</p>
</div>
<footer>
<a rel="full-article" href="/blog/2013/03/05/Goodbye_Microsoft_Hello_Facebook/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/03/04/doc-referring-tech-solution/">开发中心资源管理技术方案</a></h1>
<p class="meta">
<time datetime="2013-03-04T00:00:00+08:00" pubdate data-updated="true">Mar 4<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><h2>需求背景</h2>
<p>一些公用的脚本,不方便互相引用,浪费人力。考虑把开发中心的文档作为资源,用于文档间互相引用,或者被任务引用</p>
</div>
<footer>
<a rel="full-article" href="/blog/2013/03/04/doc-referring-tech-solution/">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2013/01/25/hashmap-entryset-tip/">A Trap When Iterate on HashMap.entrySet()</a></h1>
<p class="meta">
<time datetime="2013-01-25T00:00:00+08:00" pubdate data-updated="true">Jan 25<span>th</span>, 2013</time>
</p>
</header>
<div class="entry-content"><blockquote><p>If the map is modified while an iteration over the set is in progress (except through the iterator’s own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined.</p></blockquote>
<h2>Wrong code:</h2>
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
</pre></td><td class='code'><pre><code class='java'><span class='line'><span class="k">for</span> <span class="o">(</span><span class="n">Entry</span><span class="o"><</span><span class="n">String</span><span class="o">,</span> <span class="n">Long</span><span class="o">></span> <span class="n">entry</span> <span class="o">:</span> <span class="n">sizeMap</span><span class="o">.</span><span class="na">entrySet</span><span class="o">())</span> <span class="o">{</span>
</span><span class='line'> <span class="k">if</span> <span class="o">(</span><span class="n">xxx</span><span class="o">=</span><span class="n">xxx</span><span class="o">)</span> <span class="o">{</span>
</span><span class='line'> <span class="n">sizeMap</span><span class="o">.</span><span class="na">remove</span><span class="o">(</span><span class="n">entry</span><span class="o">.</span><span class="na">getKey</span><span class="o">());</span><span class="c1">//这里删除会造成下载迭代时抛出java.util.ConcurrentModificationException异常</span>
</span><span class='line'> <span class="o">}</span>
</span><span class='line'><span class="o">}</span>
</span></code></pre></td></tr></table></div></figure>
<h2>Right code:</h2>
<figure class='code'><figcaption><span></span></figcaption><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
<span class='line-number'>6</span>
</pre></td><td class='code'><pre><code class='java'><span class='line'><span class="k">for</span> <span class="o">(</span><span class="n">Iterator</span><span class="o"><</span><span class="n">Entry</span><span class="o"><</span><span class="n">String</span><span class="o">,</span> <span class="n">Long</span><span class="o">>></span> <span class="n">itr</span> <span class="o">=</span> <span class="n">sizeMap</span><span class="o">.</span><span class="na">entrySet</span><span class="o">().</span><span class="na">iterator</span><span class="o">();</span><span class="n">itr</span><span class="o">.</span><span class="na">hasNext</span><span class="o">();)</span> <span class="o">{</span>
</span><span class='line'> <span class="n">Entry</span><span class="o"><</span><span class="n">String</span><span class="o">,</span> <span class="n">Long</span><span class="o">></span> <span class="n">entry</span> <span class="o">=</span> <span class="n">itr</span><span class="o">.</span><span class="na">next</span><span class="o">();</span>
</span><span class='line'> <span class="k">if</span><span class="o">(</span><span class="n">xxx</span><span class="o">=</span><span class="n">xxx</span><span class="o">)</span> <span class="o">{</span>
</span><span class='line'> <span class="n">itr</span><span class="o">.</span><span class="na">remove</span><span class="o">();</span>
</span><span class='line'> <span class="o">}</span>
</span><span class='line'><span class="o">}</span>
</span></code></pre></td></tr></table></div></figure>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2012/07/31/hello-blog-on-github/">Hello Blog on Github</a></h1>
<p class="meta">
<time datetime="2012-07-31T00:00:00+08:00" pubdate data-updated="true">Jul 31<span>st</span>, 2012</time>
</p>
</header>
<div class="entry-content"><h1>Hello World!</h1>
<h2>Nihao!</h2>
<p>Come on!</p>
<div>
<pre><code class='java'>package com.github.abop
public class MyClass{
public int main(){
return null;
}
}</code></pre>
</div>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2012/07/31/basic-linux-shell-commond-include-vim/">Basic Linux Shell Commond (Include Vim)</a></h1>
<p class="meta">
<time datetime="2012-07-31T00:00:00+08:00" pubdate data-updated="true">Jul 31<span>st</span>, 2012</time>
</p>
</header>
<div class="entry-content"><h2>linux</h2>
<ul>
<li>执行命令后面加 & , 可以让任务后台运行</li>
<li>jobs查看当前任务</li>
<li>fg jobnumber切换某任务到前台</li>
<li>普通任务执行时ctrl+z挂起到后台,但任务会暂停</li>
<li>bg jobnumber让挂起任务运行</li>
<li>fg 切换到前台</li>
</ul>
<p>====</p>
<h2>vim</h2>
<ul>
<li>ctrl+L refresh screen buffer</li>
<li>:split 分栏</li>
<li>ctrl+ 方向键 切换分栏</li>
<li>:e 打开文件</li>
<li>:ls 查看当前打开的buffer(文件)</li>
<li>:b num 切换文件(其中num为buffer list中的编号)</li>
<li>:bn — next buffer in the buffer list</li>
<li>:bp — previous buffer in the buffer list</li>
<li>:b# — previous buffer you was in</li>
<li>gg=G格式化文件(”start=end”)</li>
</ul>
</div>
</article>
<div class="pagination">
<a class="prev" href="/blog/page/2/">← Older</a>
<a href="/blog/archives">Blog Archives</a>
</div>
</div>
<aside class="sidebar">
<section>
<h1>新浪微博</h1>
<iframe
width="100%"
height="300"
class="share_self"
frameborder="0"
scrolling="no"
src="http://widget.weibo.com/weiboshow/index.php?language=&width=0&height=300&fansRow=2&ptype=1&speed=0&skin=1&isTitle=0&noborder=1&isWeibo=1&isFans=0&uid=1164102725&verifier=fafe682b&dpc=1"
></iframe>
</section>
<section>
<h1>分享</h1>
<!-- JiaThis Button BEGIN -->
<div class="jiathis_style_32x32" >
<a class="jiathis_button_tsina"></a>
<a class="jiathis_button_tqq"></a>
<a class="jiathis_button_googleplus"></a>
<a class="jiathis_button_twitter"></a>
<a class="jiathis_button_fb"></a>
<a class="jiathis_button_readitlater"></a>
<a class="jiathis_button_weixin"></a>
<a class="jiathis_button_linkedin"></a>
<a class="jiathis_button_digg"></a>
<a href="http://www.jiathis.com/share"
style="display: inline-block!important;float: none!important;"
class="jiathis jiathis_txt jiathis_separator jtico jtico_jiathis" target="_blank"></a>
<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" >
var jiathis_config={
sm:"douban,tsohu,reddit,tumblr",
summary:"",
ralateuid:{
"tsina":"tGoofy"
},
hideMore:false
}
</script>
<script type="text/javascript" src="http://v3.jiathis.com/code_mini/jia.js" charset="utf-8"></script>
<style>
.jiathis_style_32x32 a {
display: inline-block;
height: 32px;
margin-top: 12px;
}
</style>
<!-- JiaThis Button END -->
</section>
<section>
<h1>Categories</h1>
<ul id="categories">
<li class='category'><a href='/blog/categories/dev/'>Dev (2)</a></li>
<li class='category'><a href='/blog/categories/java/'>Java (1)</a></li>
<li class='category'><a href='/blog/categories/blabla/'>blabla (1)</a></li>
<li class='category'><a href='/blog/categories/career/'>career (1)</a></li>
<li class='category'><a href='/blog/categories/jekyll/'>jekyll (1)</a></li>
<li class='category'><a href='/blog/categories/linux/'>linux (2)</a></li>
<li class='category'><a href='/blog/categories/ruby/'>ruby (1)</a></li>
<li class='category'><a href='/blog/categories/shell/'>shell (2)</a></li>
<li class='category'><a href='/blog/categories/vim/'>vim (1)</a></li>
<li class='category'><a href='/blog/categories/work/'>work (1)</a></li>
</ul>
</section>
<section>
<h1>Recent Posts</h1>
<ul id="recent_posts">
<li class="post">
<a href="/blog/2013/05/15/debug-with-jekyll-rubygem/">Debug with jekyll(rubygem)</a>
</li>
<li class="post">
<a href="/blog/2013/05/13/using-variables-and-shell-commands-in-sed/">Using Variables and Shell-commands in Sed</a>
</li>
<li class="post">
<a href="/blog/2013/04/24/volatile-in-java/">Volatile In Java</a>
</li>
<li class="post">
<a href="/blog/2013/03/21/enter-special-char-in-linux/">How to Enter Special Characters in Ubuntu(Linux)</a>
</li>
<li class="post">
<a href="/blog/2013/03/05/How_to_Recover_Files_Deleted_by_Mistake_in_Git/">How to Recover Files Deleted by Mistake in Git</a>
</li>
</ul>
</section>
<section>
<h1>GitHub Repos</h1>
<ul id="gh_repos">
<li class="loading">Status updating…</li>
</ul>
<a href="https://github.com/abop">@abop</a> on GitHub
<script type="text/javascript">
$(document).ready(function(){
if (!window.jXHR){
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = '/javascripts/libs/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
github.showRepos({
user: 'abop',
count: 0,
skip_forks: true,
target: '#gh_repos'
});
});
</script>
<script src="/javascripts/github.js" type="text/javascript"> </script>
</section>
<section class="googleplus">
<h1>
<a href="https://plus.google.com/goofy.lp?rel=author">
<img src="http://www.google.com/images/icons/ui/gprofile_button-32.png" width="32" height="32">
Google+
</a>
</h1>
</section>
</aside>
</div>
</div>
<footer role="contentinfo"><p>
Copyright © 2013 - Goofy -
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
</p>
</footer>
<script type="text/javascript">
var disqus_shortname = 'abop';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
<script type="text/javascript">
(function() {
var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
script.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
})();
</script>
<script type="text/javascript">
(function(){
var twitterWidgets = document.createElement('script');
twitterWidgets.type = 'text/javascript';
twitterWidgets.async = true;
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
})();
</script>
</body>
</html>