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
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="generator" content="pandoc"/>
<meta name="author" content="Zhiming Wang"/>
<title>dl? cmplnts?</title>
<link rel="apple-touch-icon-precomposed" href="/img/apple-touch-icon-152.png"/>
<meta name="msapplication-TileColor" content="#FFFFFF"/>
<meta name="msapplication-TileImage" content="/img/favicon-144.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/css/normalize.min.css" media="all" rel="stylesheet" type="text/css"/>
<link href="/css/theme.css" media="all" rel="stylesheet" type="text/css"/>
<style type="text/css">.blog-index-year-title { text-align: left; } .blog-index-yearly-index { margin-left: 1em; } .blog-index td { vertical-align: top; } .blog-index-post-date { width: 5em; }</style>
</head>
<body>
<div id="archival-notice">This blog has been archived.<br>Visit my home page at <a href="https://zhimingwang.org">zhimingwang.org</a>.</div>
<nav class="nav">
<a class="nav-icon" href="/" title="Home"><!--blog icon--></a>
<a class="nav-title" href="/"><!--blog title--></a>
<a class="nav-author" href="https://github.com/zmwangx" target="_blank"><!--blog author--></a>
</nav>
<article class="content">
<header class="article-header">
<h1 class="article-title">dl? cmplnts?</h1>
<div class="article-metadata">
</div>
</header>
<p>My name is Zhiming Wang (Simplified Chinese: 王之铭), and I am a Ph.D. student in high energy theory at Princeton Physics (first year as of September 2016). Previously I earned my bachelor's degree in mathematics and physics at Stanford. I enjoy coding in my spare time, for fun and profit — I hate repetitive tasks, so computer programs help me automate and get things done quickly.</p>
<p>My first programming language was Pascal and I consider C my mother tongue, but recently I write most of my stuff in Python and Zsh. My operating system is OS X / macOS, my text editor is Emacs, my interactive (and non-interactive) shell is Zsh, my package manager is Homebrew, and my default browser at the moment is Google Chrome. I use four-space indents when the target language has no established convention that says otherwise. Any source code I publish on the Web is licensed under <a href="http://www.wtfpl.net/">WTFPL</a> unless a license is explicitly declared (usually OSI's MIT, aka Expat). I am on <a href="https://keybase.io/zmwangx">Keybase</a> in case you are security-minded (or use <a href="https://keybase.io/zmwangx/key.asc">this link</a> if you just want my public key). PGP or not, you can reach me at <a href="mailto:zmwangx@gmail.com">zmwangx@gmail.com</a>. You won't and likely never will find me on SNS. What else is there to tell?</p>
<p>This blog could be about anything, but most of the stuff here should be technical. Oh yes, this blog is fully open source, down to how image assets were generated. All tools necessary for reproducing this blog are either in or documented in <a href="https://github.com/zmwangx/zmwangx.github.io/tree/source">the source branch</a> of <a href="https://github.com/zmwangx/zmwangx.github.io">zmwangx/zmwangx.github.io</a>.</p>
<hr>
<div id="toc" class="blog-index">
<h2 class="blog-index-year-title" id="2016">
2016
</h2>
<table class="blog-index-yearly-index">
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-10-26T12:16:22-04:00">Oct 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-10-26-pyenv-compiling-python-with-sqlite-in-nonstandard-location.html">pyenv: compiling Python with SQLite in nonstandard location</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-09-01T20:11:00+08:00">Sep 01</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-09-01-this-blog-is-now-behind-cloudflare.html">This blog is now behind CloudFlare</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-06-24T05:40:01+08:00">Jun 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-06-24-its-2016-and-microsoft-is-the-only-legit-player-who-spams-me-without-unsubscribe-links.html">It's 2016, and Microsoft is the only legit player who spams me without unsubscribe links</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-05-07T18:49:26-07:00">May 07</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-05-07-chrome-is-screwing-with-our-extensions-again.html">Chrome is screwing with our extensions... Again</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-04-10T03:04:19-07:00">Apr 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-04-10-emacss-got-a-redesigned-website.html">Emacs's got a redesigned website!</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-03-06T14:59:45-08:00">Mar 06</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-03-06-google-chrome-keeps-getting-uglier.html">Google Chrome keeps getting uglier</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-01-26T12:18:36-08:00">Jan 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-01-26-dropbox-noteworthy-and-damned-skeuomorphism.html">Dropbox, Noteworthy, and damned skeuomorphism</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-01-24T18:43:28-08:00">Jan 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-01-24-antivirus-app-on-mas-top-chart.html">Antivirus app on MAS top chart?</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-01-18T16:36:40-08:00">Jan 18</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-01-18-me-too-comments-on-github.html">Me-too comments on GitHub</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-01-14T01:02:52-08:00">Jan 14</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-01-14-the-dirtiest-mistakes-of-os-x.html">The dirtiest mistakes of OS X</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2016-01-01T22:21:14-08:00">Jan 01</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2016-01-01-virtualenvs-for-everyone.html">Virtualenvs for everyone</a>
</td>
</tr>
</table>
<h2 class="blog-index-year-title" id="2015">
2015
</h2>
<table class="blog-index-yearly-index">
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-29T15:09:16-08:00">Dec 29</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-29-catches-when-installing-windows-7-with-boot-camp.html">Catches when installing Windows 7 with Boot Camp</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-28T03:15:45-08:00">Dec 28</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-28-why-i-want-lossless-music-on-itunes-music-store.html">Why I want lossless music on iTunes Music Store</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-27T16:47:05-08:00">Dec 27</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.html">Lesson on magic method access of Python new-style classes (from my failed Python3 port of Tomorrow)</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-26T00:15:48-08:00">Dec 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-26-autoenv-with-auto-cleanup.html">autoenv with auto cleanup</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-20T16:03:03-08:00">Dec 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-20-regex-flavor-hell.html">Regex flavor hell</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-16T21:10:08-08:00">Dec 16</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-16-spoiled-by-retina-in-less-than-a-day.html">Spoiled by Retina, in less than a day</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-12-08T00:17:39-08:00">Dec 08</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-12-08-safeguarding-git-repos-against-accidental-rm.html">Safeguarding git repos against accidental rm</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-11-25T15:38:13-08:00">Nov 25</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-11-25-bash-function-exporting-fiasco.html">Bash function exporting fiasco</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-11-15T02:17:05-08:00">Nov 15</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-11-15-we-need-a-programming-keyboard-on-ios.html">We need a programming keyboard on iOS</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-11-06T10:49:51-08:00">Nov 06</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-11-06-microsoft-drops-unlimited-onedrive-storage-after-people-use-it-for-unlimited-storage.html">Microsoft drops unlimited OneDrive storage after people use it for unlimited storage</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-26T00:00:30-07:00">Oct 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-26-att-to-pure-talkusa-one-month-later.html">AT&T to Pure TalkUSA, one month later</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-14T17:07:24-07:00">Oct 14</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-14-sip-for-the-greater-good.html">SIP — For the Greater Good</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-14T12:30:32-07:00">Oct 14</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-14-follow-up-the-sad-state-of-finder-on-el-capitan.html">Follow-up: The sad state of Finder on El Capitan</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-12T14:29:42-07:00">Oct 12</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-12-the-importance-of-dated-detailed-release-notes.html">The importance of dated, detailed release notes</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-10T22:35:15-07:00">Oct 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-10-printing-long-80-character-per-line-plain-text-document-in-two-columns.html">Printing long, 80-character-per-line plain text document in two columns</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-03T03:34:24-07:00">Oct 03</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-03-we-need-an-os-x-security-white-paper.html">We need an OS X security white paper</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-01T15:48:59-07:00">Oct 01</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-01-auto-hidden-menu-bar-dock-maximized-window-is-the-new-full-screen-mode.html">Auto hidden menu bar & dock + maximized window is the new full screen mode</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-10-01T11:46:44-07:00">Oct 01</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-10-01-upgrading-to-el-capitan.html">Upgrading to El Capitan</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-09-25T12:30:25-07:00">Sep 25</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-09-25-removing-google-analytics-from-this-blog.html">Removing Google Analytics from this blog</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-09-24T10:55:38-07:00">Sep 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-09-24-apple-watch-digital-crown-tightness-issue.html">Apple Watch: Digital Crown tightness issue</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-09-21T14:40:36-07:00">Sep 21</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-09-21-zsh-51-and-bracketed-paste.html">Zsh 5.1 and bracketed paste</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-31T06:31:03+08:00">Aug 31</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-31-after-all-these-years-10pt-non-anti-aliased-monaco-is-still-the-best.html">After all these years, 10pt non-anti-aliased Monaco is still the best</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-25T08:16:44-07:00">Aug 25</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-25-automated-os-x-provisioning.html">Automated OS X provisioning</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-20T20:58:55-07:00">Aug 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-20-i-installed-blockparty-and-the-only-thing-i-can-say-is-wow.html">I installed BlockParty, and the only thing I can say is WOW</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-20T01:01:57-07:00">Aug 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-20-ios-9-turn-off-wi-fi-assist.html">iOS 9: turn off Wi-Fi Assist!</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-14T18:32:13-07:00">Aug 14</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-14-laymen.html">Laymen</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-13T02:00:24-07:00">Aug 13</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-13-other-peoples-___.html">Other people's ___</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-05T19:38:37-07:00">Aug 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-05-switching-to-capitalized-commit-messages.html">Switching to capitalized commit messages</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-05T14:09:51-07:00">Aug 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-05-should-apple-split-up-itunes-on-os-x.html">Should Apple split up iTunes on OS X?</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-08-02T22:11:56-07:00">Aug 02</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-08-02-sync-chrome-bookmarks-with-safari-on-os-x.html">Sync Chrome bookmarks with Safari on OS X</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-07-30T23:59:09-07:00">Jul 30</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-07-30-the-sad-state-of-finder-on-el-capitan.html">The sad state of Finder on El Capitan</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-07-25T11:31:54-07:00">Jul 25</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-07-25-dl-cmplntss-web-doesnt-suck.html">dl? cmplnts?'s web doesn't suck</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-07-19T21:58:01-07:00">Jul 19</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-07-19-github-experimental-attachment-formats-pdf-docx-and-pptx.html">GitHub experimental attachment formats: PDF, DOCX and PPTX!?!</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-07-15T09:21:47-07:00">Jul 15</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-07-15-zsh-save-stdout-stderr-and-return-value-of-command-to-different-variables-without-temp-file.html">Zsh: save stdout, stderr, and return value of command to different variables (without temp file)</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-29T23:14:42-07:00">Jun 29</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-29-dl-cmplnts-in-apple-news.html">dl? cmplnts? in Apple News</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-27T21:19:59-07:00">Jun 27</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-27-automatically-clean-up-previous-mobile-applications.html">Automatically clean up "Previous Mobile Applications"</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-26T23:59:28-07:00">Jun 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-26-ios-9-searchable-settings.html">iOS 9: searchable Settings</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-23T21:47:07-07:00">Jun 23</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-23-all-problems-solved.html">All problems solved!?</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-12T14:24:18-07:00">Jun 12</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-12-the-tip-of-the-iceberg.html">The tip of the iceberg</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-10T23:17:05-07:00">Jun 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-10-chrome-disappointment-the-shabby-and-boring-old-bookmark-system-from-stone-age-strikes-back.html">Chrome disappointment: the shabby and boring old bookmark system from Stone Age strikes back</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-08T14:42:50-07:00">Jun 08</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-08-apple-turns-its-homepage-into-a-wwdc-liveblog.html">Apple turns its homepage into a WWDC liveblog</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-06-07T18:58:57-07:00">Jun 07</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-06-07-stackoverflow-review-system-is-completely-bs.html">StackOverflow review system is completely BS</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-30T22:48:57-07:00">May 30</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-30-using-a-personal-helper-package-in-everyday-scripting.html">Using a personal helper package in everyday scripting</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-29T20:40:05-07:00">May 29</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-29-apples-customer-service-is-still-the-best-plus-an-authy-horror-story.html">Apple's customer service is still the best (plus an Authy horror story)</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-22T00:48:19-07:00">May 22</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-22-using-a-command-table-as-wallpaper.html">Using a command table as wallpaper</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-19T18:33:51-07:00">May 19</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-19-bash-the-special-slash-character-in-filename-expansion.html">Bash: the special slash character in filename expansion</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-09T00:32:28-07:00">May 09</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-09-storyboard-reached-01.html">storyboard reached 0.1</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-06T19:29:46-07:00">May 06</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-06-searchable-settings-are-one-honking-great-idea-lets-do-more-of-those.html">Searchable settings are one honking great idea — let's do more of those!</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-05T22:03:39-07:00">May 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-05-graceful-handling-of-sigint-when-using-pythons-multiprocessingprocess.html">Graceful handling of SIGINT when using Python's multiprocessing.Process</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-05T02:42:44-07:00">May 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-05-new-blog-new-start.html">New blog, new start</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-05-03T17:15:49-07:00">May 03</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-05-03-why-oh-my-zsh-is-completely-broken.html">Why Oh My Zsh is completely broken</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-04-26T21:19:14-07:00">Apr 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-04-26-using-python-3-with-emacs-jedi.html">Using Python 3 with Emacs Jedi</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-03-22T16:58:50-07:00">Mar 22</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-03-22-back-up-os-x-app-icons.html">Back up OS X app icons</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-02-24T18:31:19-08:00">Feb 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-02-24-the-new-onedrive-api.html">The new OneDrive API</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-02-21T17:12:32-08:00">Feb 21</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-02-21-all-is-not-lost.html">All is not lost</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-02-20T16:16:10-08:00">Feb 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-02-20-my-dock-and-updated-omnifocus.html">My dock and updated OmniFocus</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-02-17T18:57:19-08:00">Feb 17</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-02-17-microsoft-is-getting-cool-but-not-its-website.html">Microsoft is getting cool (but not its website)</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-02-10T02:18:30-08:00">Feb 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-02-10-monitor-progress-of-your-unix-pipes-with-pv.html">Monitor progress of your Unix pipes with pv</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-01-21T16:30:51-08:00">Jan 21</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-01-21-web-design-microsoft-vs-apple.html">Web design: Microsoft vs Apple</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-01-10T09:30:02-08:00">Jan 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-01-10-fonts-why-chinese-web-design-is-hard.html">Fonts: why Chinese web design is hard</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2015-01-01T22:49:39-08:00">Jan 01</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2015-01-01-os-x-system-ruby-encoding-annoyance.html">OS X system ruby encoding annoyance</a>
</td>
</tr>
</table>
<h2 class="blog-index-year-title" id="2014">
2014
</h2>
<table class="blog-index-yearly-index">
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-23T00:51:05-08:00">Dec 23</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-23-mpv-launcher.html">mpv launcher</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-22T12:42:16-08:00">Dec 22</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-22-10k-images-on-imgur.html">10k images on imgur</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-19T14:08:57-08:00">Dec 19</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-19-app-suggestion-dropzone-3.html">App suggestion: Dropzone 3</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-14T17:42:55-08:00">Dec 14</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-14-the-google-chrome-comic-a-classic.html">The Google Chrome Comic — A classic</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-14T10:06:02-08:00">Dec 14</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-14-speeding-up-emacs-with-emacsclient.html">Speeding up Emacs with emacsclient</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-13T21:47:31-08:00">Dec 13</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-13-the-mac-like-evernote.html">The Mac-like Evernote</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-10T22:45:34-08:00">Dec 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-10-omnifocus-change-sync-behavior-mac-and-ios.html">OmniFocus: change sync behavior, Mac and iOS</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-12-05T21:09:10-08:00">Dec 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-12-05-distraction-free-writing.html">Distraction free writing</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-30T17:20:20-08:00">Nov 30</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-30-opera-style-advanced-keyboard-shortcuts-in-safari.html">Opera-style advanced keyboard shortcuts in Safari</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-28T19:05:59-08:00">Nov 28</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-28-going-diceware.html">Going Diceware</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-28T00:18:19-08:00">Nov 28</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-28-given-infinite-time.html">Given infinite time</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-26T00:22:16-08:00">Nov 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-26-original-images-in-day-one-journal.html">Original images in Day One journal</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-25T16:28:30-08:00">Nov 25</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-25-i-got-16-gigs-of-ram.html">I got 16 gigs of RAM</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-24T20:54:36-08:00">Nov 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-24-why-i-abandoned-mathjax-and-fell-back-to-pdf.html">Why I abandoned MathJax and fell back to PDF</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-24T12:42:25-08:00">Nov 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-24-iphone-photography-frustration.html">iPhone photography frustration</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-20T09:48:15-08:00">Nov 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-20-dropbot-for-geeks(r).html">Dropbot for Geeks®</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-19T20:40:37-08:00">Nov 19</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-19-convolution-of-irreducible-characters.html">Convolution of irreducible characters</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-11T13:31:25-08:00">Nov 11</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-11-re-encoding-everything-for-iphone-6-plus.html">Re-encoding everything for iPhone 6 Plus</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-10T11:11:46-08:00">Nov 10</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-10-average-phone-plan-in-the-u-dot-s-costs-ten-time-as-much-as-that-in-the-u-dot-k.html">Average phone plan in the U.S. costs ten time as much as that in the U.K.</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-07T23:56:31-08:00">Nov 07</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-07-interstellar.html">Interstellar</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-06T11:08:45-08:00">Nov 06</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-06-2014-nobel-prize-in-physics-led-lights-seriously.html">2014 Nobel Prize in Physics — LED lights, seriously?</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-05T22:17:01-08:00">Nov 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-05-apple-is-pushing-yosemite-hard.html">Apple is pushing Yosemite hard</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-05T10:37:58-08:00">Nov 05</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-05-list-youtube-playlist-with-youtube-dl.html">List YouTube playlist with youtube-dl</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-11-02T15:06:07-08:00">Nov 02</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-11-02-vobcopy-dvdbackup-etc.html">vobcopy, dvdbackup, etc.</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-29T11:26:29-07:00">Oct 29</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-29-fun.html">Fun</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-28T20:49:24-07:00">Oct 28</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-28-google-drive-no-selective-subfolder-sync.html">Google Drive — no selective subfolder sync?</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-28T01:57:06-07:00">Oct 28</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-28-mou-1-dot-0-fundraiser-goal-reached.html">Mou 1.0 fundraiser: goal reached</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-27T09:44:51-07:00">Oct 27</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-27-onedrive-goes-unlimited.html">OneDrive goes unlimited</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-26T23:29:47-07:00">Oct 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-26-audio-cd-slash-dvd-to-iso-image-on-os-x.html">Convert Audio CD/DVD to ISO image on OS X</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-26T00:02:22-07:00">Oct 26</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-26-disk-visualizer-daisydisk.html">Disk visualizer: DaisyDisk</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-25T13:26:02-07:00">Oct 25</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-25-os-x-package-receipts.html">OS X package receipts</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-24T16:41:36-07:00">Oct 24</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-24-charles-munger-donated-$65m-to-kitp.html">Charles Munger donated $65M to KITP</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-23T20:03:22-07:00">Oct 23</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-23-ripping-copy-protected-dvd-with-mpv.html">Ripping copy-protected DVD with mpv</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-21T11:40:14-07:00">Oct 21</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-21-get-rolling.html">Get rolling</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-20T17:37:45-07:00">Oct 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-20-help-mou-hit-1-dot-0.html">Help Mou hit 1.0</a>
</td>
</tr>
<tr>
<td class="blog-index-post-date">
<time class="date" datetime="2014-10-20T16:53:00-07:00">Oct 20</time>
</td>
<td class="blog-index-post-title">
<a href="/blog/2014-10-20-hello-octopress.html">Hello, Octopress!</a>
</td>
</tr>
</table>
</div>
</article>
<hr class="content-separator"/>
<footer class="footer">
<span class="rfooter">
<a class="rss-icon" href="/rss.xml" target="_blank" title="RSS feed"><!--RSS feed icon--></a><a class="atom-icon" href="/atom.xml" target="_blank" title="Atom feed"><!--Atom feed icon--></a><a class="cc-icon" href="https://creativecommons.org/licenses/by/4.0/" target="_blank" title="Released under the Creative Commons Attribution 4.0 International license."><!--CC icon--></a>
<a href="https://github.com/zmwangx" target="_blank">Zhiming Wang</a>
</span>
</footer>
</body>
</html>
|