-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1179 lines (922 loc) · 38.7 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
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
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>harj0’s Octopress Blog =TEST=</title>
<meta name="author" content="Harj0">
<meta name="description" content="Markdown Copy…. Org-mode didn’t get the job done. Ok, that was a pretty big failure in our last post. The formatting seemed to be …">
<!-- 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://harj0.github.io/index.html">
<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="harj0's Octopress Blog =TEST=" 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/libs/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="//fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
</head>
<body >
<header role="banner"><hgroup>
<h1><a href="/">harj0’s Octopress Blog =TEST=</a></h1>
<h2>A blogging framework for hackers.</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="https://www.google.com/search" method="get">
<fieldset role="search">
<input type="hidden" name="q" value="site:harj0.github.io" />
<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>
</ul>
</nav>
<div id="main">
<div id="content">
<div class="blog-index">
<article>
<header>
<h1 class="entry-title"><a href="/blog/2014-09-22-Yanked.html">Yank-D</a></h1>
<p class="meta">
<time class='entry-date' datetime='2014-09-22T12:11:05-05:00'><span class='date'><span class='date-month'>Sep</span> <span class='date-day'>22</span><span class='date-suffix'>nd</span>, <span class='date-year'>2014</span></span> <span class='time'>12:11 pm</span></time>
</p>
</header>
<div class="entry-content"><p>Markdown Copy….</p>
<ul>
<li><p>Org-mode didn’t get the job done.</p>
<p>Ok, that was a pretty big failure in our last post. The formatting seemed to be completely off,
tabs didnt work, etc.. So I’m gonna just yank the whole thing right here into org-octopress.</p></li>
<li><p>What will happen???</p></li>
<li>What do we expect to work???
<ul>
<li>That wiiide table probably wont</li>
<li>The file: links obviously wont</li>
</ul>
</li>
<li>It /should/ fix all the formating</li>
</ul>
<p>** (How do links look?)</p>
<h2>- <a href="http://harj0.github.io/blog/2014-09-22-testing-org-mode-features.html">http://harj0.github.io/blog/2014-09-22-testing-org-mode-features.html</a></h2>
<h1>+BEGIN_HTML</h1>
<p>/2014-09-22-testing-org-mode-features.html</p>
<h1>+END_HTML</h1>
<p>Lets find out:
<em>YAAANNNKKK</em> <</p>
<ul>
<li><p>Let’s test out some basic org … stuff.</p>
<p>I’m not using org-octopress for this post, havent took the time to look through the code and figure
out exactly what that mode is <em>doing</em>. So this post is just sort of a test to see how default orgmode
is going to render. I find myself constantly doing these types of redundant tests, it may seem silly
but it helps me to learn and understand new things, so … /chill/.</p></li>
</ul>
<p>** (Re)Review</p>
<p> We’ve already seen some basics but that was using org-octopress.el, so we might as well go through
it all again… Watch none of this work and this whole post just comes out as garbage….</p>
<p><em>Some bold text</em>
/Some italisized text/
<em>Some underlined text</em>
+Some strikethough text+
=Some code text=
~Some verbatim text~ - Same thing??</p>
<ul>
<li>Ok, now just a table and maybe a couple misc objects</li>
</ul>
<p>** Make a table out of a random ls’s output.
Blah..</p>
<pre><code> |-------------+---------+-------------+------------|
| 107 | Sep 14 | 06:40 | New.org~ |
| 9393 | Sep 14 | 09:01 | New.html~ |
| 8711 | Sep 14 | 09:08 | New.html |
| 984 | Sep 14 | 09:08 | New.org |
| 89 | Sep 14 | 10:50 | Todo.org~ |
| 11288 | Sep 14 | 11:13 | Todo.html~ |
| 16897 | Sep 14 | 12:10 | Todo.html |
| 1954 | Sep 14 | 12:10 | Todo.org |
| 117 | Sep 15 | 00:06 | index.org~ |
|-------------+---------+-------------+------------|
| 49540 Bytes | Stuff | 19:07 Hours | 9 Files |
</code></pre>
<p>** This will probably be ugly and possibly kill the whole thing..
Wiiiide table
|——+——————————+———————+——————–+————————+————————|
| Edit | [[file:~/.emacs::(require%20’command-log-mode)][.emacs]] | [[file:~/Org]] | [[file:~/.emacs.d]] | [[file:~/.emacs.d/themes]] | [[file:~/.emacs.d/Vendor]] |
| Sys | file:~/.zshrc | file:~/.bashrc | file:~/.zprofile | file:~/.profile | file:~/.xinitrc |
| Org | file:~/Org/FrequentFiles.org | file:~/Org/Todo.org | file:~/Org/New.org | file:~/Org/Notes.org | file:~/Org/Blog.org |
|——+——————————+———————+——————–+————————+————————|</p>
<p>Hmm, I wonder what a time stamp will look like.. <2014-09-22 Mon>
Now maybe and “inactive” time stamp.. [2014-09-22 Mon]
Also, TODO’s:
* TODO Apparently you HAVE to start all Headlines at the <em>first</em> column, Like WTF?
- [ ] Sucky
- [ ] Shity
- [X] Sorry
- [ ] Slobering
- [ ] Soviets</p>
<ul>
<li><p>TODO : Kill all Seven Shity Slobering Sucky Sorry Slow-ass Soviets.</p></li>
<li><p>Oh.. I dunno..</p></li>
</ul>
<p><strong> A little list with org links
Hmmm…
</strong>* Frequently Edited Files</p>
<ul>
<li>[[file:~/.emacs]]</li>
<li>[[file:~/.i3/config]]</li>
<li>[[file:~/.zshrc::plugins%3D(github%20colored-man%20emacs)][zshrc]]</li>
<li>[[file:~/.zprofile]]</li>
<li>[[file:~/i3.conkyrc::TEXT][i3.conkyrc]]</li>
<li>[[file:~/.bashrc::alias%20Running%3D’echo%20Seeing%20if%20@1%20is%20rUnNninG…%20&%20ps%20-A%20|%20grep’][bashrc]]</li>
<li><p>[[file:Todo.org::*My%20app%20in%20PC%20SCHEDULED:%20<2014-11-06%20Thu%2009:15>][FrequentFiles.org]]</p></li>
<li><p>Ok, that was so much fun</p>
<p>Let’s see if it was all just a waste of time and we just created a big dump of garbage..</p></li>
</ul>
<p>-EOP-</p>
<p><em>YAAANNNKKK</em> ></p>
<p>}</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2014-09-22-testing-org-mode-features.html">Testing Org-mode Features</a></h1>
<p class="meta">
<time class='entry-date' datetime='2014-09-22T11:18:32-05:00'><span class='date'><span class='date-month'>Sep</span> <span class='date-day'>22</span><span class='date-suffix'>nd</span>, <span class='date-year'>2014</span></span> <span class='time'>11:18 am</span></time>
</p>
</header>
<div class="entry-content"><ul>
<li><p>Let’s test out some basic org … stuff.</p>
<p>I’m not using org-octopress for this post, havent took the time to look through the code and figure
out exactly what that mode is <em>doing</em>. So this post is just sort of a test to see how default orgmode
is going to render. I find myself constantly doing these types of redundant tests, it may seem silly
but it helps me to learn and understand new things, so … /chill/.</p></li>
</ul>
<p>** (Re)Review</p>
<p> We’ve already seen some basics but that was using org-octopress.el, so we might as well go through
it all again… Watch none of this work and this whole post just comes out as garbage….</p>
<p><em>Some bold text</em>
/Some italisized text/
<em>Some underlined text</em>
+Some strikethough text+
=Some code text=
~Some verbatim text~ - Same thing??</p>
<ul>
<li>Ok, now just a table and maybe a couple misc objects</li>
</ul>
<p>** Make a table out of a random ls’s output.
Blah..</p>
<pre><code> |-------------+---------+-------------+------------|
| 107 | Sep 14 | 06:40 | New.org~ |
| 9393 | Sep 14 | 09:01 | New.html~ |
| 8711 | Sep 14 | 09:08 | New.html |
| 984 | Sep 14 | 09:08 | New.org |
| 89 | Sep 14 | 10:50 | Todo.org~ |
| 11288 | Sep 14 | 11:13 | Todo.html~ |
| 16897 | Sep 14 | 12:10 | Todo.html |
| 1954 | Sep 14 | 12:10 | Todo.org |
| 117 | Sep 15 | 00:06 | index.org~ |
|-------------+---------+-------------+------------|
| 49540 Bytes | Stuff | 19:07 Hours | 9 Files |
</code></pre>
<p>** This will probably be ugly and possibly kill the whole thing..
Wiiiide table
|——+——————————+———————+——————–+————————+————————|
| Edit | [[file:~/.emacs::(require%20’command-log-mode)][.emacs]] | [[file:~/Org]] | [[file:~/.emacs.d]] | [[file:~/.emacs.d/themes]] | [[file:~/.emacs.d/Vendor]] |
| Sys | file:~/.zshrc | file:~/.bashrc | file:~/.zprofile | file:~/.profile | file:~/.xinitrc |
| Org | file:~/Org/FrequentFiles.org | file:~/Org/Todo.org | file:~/Org/New.org | file:~/Org/Notes.org | file:~/Org/Blog.org |
|——+——————————+———————+——————–+————————+————————|</p>
<p>Hmm, I wonder what a time stamp will look like.. <2014-09-22 Mon>
Now maybe and “inactive” time stamp.. [2014-09-22 Mon]
Also, TODO’s:
* TODO Apparently you HAVE to start all Headlines at the <em>first</em> column, Like WTF?
- [ ] Sucky
- [ ] Shity
- [X] Sorry
- [ ] Slobering
- [ ] Soviets</p>
<ul>
<li><p>TODO : Kill all Seven Shity Slobering Sucky Sorry Slow-ass Soviets.</p></li>
<li><p>Oh.. I dunno..</p></li>
</ul>
<p><strong> A little list with org links
Hmmm…
</strong>* Frequently Edited Files</p>
<ul>
<li>[[file:~/.emacs]]</li>
<li>[[file:~/.i3/config]]</li>
<li>[[file:~/.zshrc::plugins%3D(github%20colored-man%20emacs)][zshrc]]</li>
<li>[[file:~/.zprofile]]</li>
<li>[[file:~/i3.conkyrc::TEXT][i3.conkyrc]]</li>
<li>[[file:~/.bashrc::alias%20Running%3D’echo%20Seeing%20if%20@1%20is%20rUnNninG…%20&%20ps%20-A%20|%20grep’][bashrc]]</li>
<li><p>[[file:Todo.org::*My%20app%20in%20PC%20SCHEDULED:%20<2014-11-06%20Thu%2009:15>][FrequentFiles.org]]</p></li>
<li><p>Ok, that was so much fun</p>
<p>Let’s see if it was all just a waste of time and we just created a big dump of garbage..</p></li>
</ul>
<p>-EOP-</p>
</div>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2014-09-22-yankv2.html">Yankv2</a></h1>
<p class="meta">
<time class='entry-date' datetime='2014-09-22'><span class='date'><span class='date-month'>Sep</span> <span class='date-day'>22</span><span class='date-suffix'>nd</span>, <span class='date-year'>2014</span></span> <span class='time'>12:00 am</span></time>
</p>
</header>
<div class="entry-content"><p>
v2 … Made new post <i>within</i> org-octopress …
Come on baby…
</p>
<div id="outline-container-sec-1" class="outline-2">
<h2 id="sec-1">Org-mode didn’t get the job done.</h2>
<div class="outline-text-2" id="text-1">
<p>
Ok, that was a pretty big failure in our last post. The formatting seemed to be completely off,
tabs didnt work, etc.. So I’m gonna just yank the whole thing right here into org-octopress.
</p>
<ol class="org-ol">
<li>What will happen???
</li>
<li>What do we expect to work???
<ul class="org-ul">
<li>That wiiide table probably wont
</li>
<li>The file: links obviously wont
</li>
</ul>
</li>
<li>It <i>should</i> fix all the formating
</li>
</ol>
</div>
<div id="outline-container-sec-1-1" class="outline-3">
<h3 id="sec-1-1">(How do links look?)</h3>
<div class="outline-text-3" id="text-1-1">
<ul class="org-ul">
<li><a href="http://harj0.github.io/blog/2014-09-22-testing-org-mode-features.html">http://harj0.github.io/blog/2014-09-22-testing-org-mode-features.html</a>
</li>
<li></li>
</ul>
/2014-09-22-testing-org-mode-features.html
<p>
Lets find out:
<b>YAAANNNKKK</b> <
</p>
</div>
</div>
</div>
<div id="outline-container-sec-2" class="outline-2">
<h2 id="sec-2">Let’s test out some basic org … stuff.</h2>
<div class="outline-text-2" id="text-2">
<p>
I’m not using org-octopress for this post, havent took the time to look through the code and figure
out exactly what that mode is <b>doing</b>. So this post is just sort of a test to see how default orgmode
is going to render. I find myself constantly doing these types of redundant tests, it may seem silly
but it helps me to learn and understand new things, so … <i>chill</i>.
</p>
</div>
<div id="outline-container-sec-2-1" class="outline-3">
<h3 id="sec-2-1">(Re)Review</h3>
<div class="outline-text-3" id="text-2-1">
<p>
We’ve already seen some basics but that was using org-octopress.el, so we might as well go through
it all again… Watch none of this work and this whole post just comes out as garbage….
</p>
<p>
<b>Some bold text</b>
<i>Some italisized text</i>
<span class="underline">Some underlined text</span>
<del>Some strikethough text</del>
<code>Some code text</code>
<code>Some verbatim text</code> - Same thing??
</p>
</div>
</div>
</div>
<div id="outline-container-sec-3" class="outline-2">
<h2 id="sec-3">Ok, now just a table and maybe a couple misc objects</h2>
<div class="outline-text-2" id="text-3">
</div><div id="outline-container-sec-3-1" class="outline-3">
<h3 id="sec-3-1">Make a table out of a random ls’s output.</h3>
<div class="outline-text-3" id="text-3-1">
<p>
Blah..
</p>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="right" />
<col class="left" />
<col class="right" />
<col class="left" />
</colgroup>
<thead>
<tr>
<th scope="col" class="right">107</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">06:40</th>
<th scope="col" class="left">New.org~</th>
</tr>
<tr>
<th scope="col" class="right">9393</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">09:01</th>
<th scope="col" class="left">New.html~</th>
</tr>
<tr>
<th scope="col" class="right">8711</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">09:08</th>
<th scope="col" class="left">New.html</th>
</tr>
<tr>
<th scope="col" class="right">984</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">09:08</th>
<th scope="col" class="left">New.org</th>
</tr>
<tr>
<th scope="col" class="right">89</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">10:50</th>
<th scope="col" class="left">Todo.org~</th>
</tr>
<tr>
<th scope="col" class="right">11288</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">11:13</th>
<th scope="col" class="left">Todo.html~</th>
</tr>
<tr>
<th scope="col" class="right">16897</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">12:10</th>
<th scope="col" class="left">Todo.html</th>
</tr>
<tr>
<th scope="col" class="right">1954</th>
<th scope="col" class="left">Sep 14</th>
<th scope="col" class="right">12:10</th>
<th scope="col" class="left">Todo.org</th>
</tr>
<tr>
<th scope="col" class="right">117</th>
<th scope="col" class="left">Sep 15</th>
<th scope="col" class="right">00:06</th>
<th scope="col" class="left">index.org~</th>
</tr>
</thead>
<tbody>
<tr>
<td class="right">49540 Bytes</td>
<td class="left">Stuff</td>
<td class="right">19:07 Hours</td>
<td class="left">9 Files</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="outline-container-sec-3-2" class="outline-3">
<h3 id="sec-3-2">This will probably be ugly and possibly kill the whole thing..</h3>
<div class="outline-text-3" id="text-3-2">
<p>
Wiiiide table
</p>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="left" />
<col class="left" />
<col class="left" />
<col class="left" />
<col class="left" />
<col class="left" />
</colgroup>
<tbody>
<tr>
<td class="left">Edit</td>
<td class="left"><a href="file:///home/trey/.emacs">.emacs</a></td>
<td class="left"><a href="file:///home/trey/Org">file:///home/trey/Org</a></td>
<td class="left"><a href="file:///home/trey/.emacs.d">file:///home/trey/.emacs.d</a></td>
<td class="left"><a href="file:///home/trey/.emacs.d/themes">file:///home/trey/.emacs.d/themes</a></td>
<td class="left"><a href="file:///home/trey/.emacs.d/Vendor">file:///home/trey/.emacs.d/Vendor</a></td>
</tr>
<tr>
<td class="left">Sys</td>
<td class="left"><a href="file:///home/trey/.zshrc">file:///home/trey/.zshrc</a></td>
<td class="left"><a href="file:///home/trey/.bashrc">file:///home/trey/.bashrc</a></td>
<td class="left"><a href="file:///home/trey/.zprofile">file:///home/trey/.zprofile</a></td>
<td class="left"><a href="file:///home/trey/.profile">file:///home/trey/.profile</a></td>
<td class="left"><a href="file:///home/trey/.xinitrc">file:///home/trey/.xinitrc</a></td>
</tr>
<tr>
<td class="left">Org</td>
<td class="left"><a href="file:///home/trey/Org/FrequentFiles.html">file:///home/trey/Org/FrequentFiles.html</a></td>
<td class="left"><a href="file:///home/trey/Org/Todo.html">file:///home/trey/Org/Todo.html</a></td>
<td class="left"><a href="file:///home/trey/Org/New.html">file:///home/trey/Org/New.html</a></td>
<td class="left"><a href="file:///home/trey/Org/Notes.html">file:///home/trey/Org/Notes.html</a></td>
<td class="left"><a href="file:///home/trey/Org/Blog.html">file:///home/trey/Org/Blog.html</a></td>
</tr>
</tbody>
</table>
<p>
Hmm, I wonder what a time stamp will look like.. <span class="timestamp-wrapper"><span class="timestamp"><2014-09-22 Mon></span></span>
Now maybe and “inactive” time stamp.. <span class="timestamp-wrapper"><span class="timestamp">[2014-09-22 Mon]</span></span>
Also, TODO’s:
</p>
</div>
</div>
</div>
<div id="outline-container-sec-4" class="outline-2">
<h2 id="sec-4"><span class="todo TODO">TODO</span> Apparently you HAVE to start all Headlines at the <b>first</b> column, Like WTF?</h2>
<div class="outline-text-2" id="text-4">
<ul class="org-ul">
<li><code>[ ]</code> Sucky
</li>
<li><code>[ ]</code> Shity
</li>
<li><code>[X]</code> Sorry
</li>
<li><code>[ ]</code> Slobering
</li>
<li><code>[ ]</code> Soviets
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-5" class="outline-2">
<h2 id="sec-5"><span class="todo TODO">TODO</span> : Kill all Seven Shity Slobering Sucky Sorry Slow-ass Soviets.</h2>
</div>
<div id="outline-container-sec-6" class="outline-2">
<h2 id="sec-6">Oh.. I dunno..</h2>
<div class="outline-text-2" id="text-6">
</div><div id="outline-container-sec-6-1" class="outline-3">
<h3 id="sec-6-1">A little list with org links</h3>
<div class="outline-text-3" id="text-6-1">
<p>
Hmmm…
</p>
</div>
<div id="outline-container-sec-6-1-1" class="outline-4">
<h4 id="sec-6-1-1">Frequently Edited Files</h4>
<div class="outline-text-4" id="text-6-1-1">
<ul class="org-ul">
<li><a href="file:///home/trey/.emacs">file:///home/trey/.emacs</a>
</li>
<li><a href="file:///home/trey/.i3/config">file:///home/trey/.i3/config</a>
</li>
<li><a href="file:///home/trey/.zshrc">zshrc</a>
</li>
<li><a href="file:///home/trey/.zprofile">file:///home/trey/.zprofile</a>
</li>
<li><a href="file:///home/trey/i3.conkyrc">i3.conkyrc</a>
</li>
<li><a href="file:///home/trey/.bashrc">bashrc</a>
</li>
<li><a href="Todo.html">FrequentFiles.org</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="outline-container-sec-7" class="outline-2">
<h2 id="sec-7">Ok, that was so much fun</h2>
<div class="outline-text-2" id="text-7">
<p>
Let’s see if it was all just a waste of time and we just created a big dump of garbage..
</p>
<p>
-EOP-
</p>
<p>
<b>YAAANNNKKK</b> >
</p>
<p>
</div>
<footer>
<a rel="full-article" href="/blog/2014-09-22-yankv2.html">Read on →</a>
</footer>
</article>
<article>
<header>
<h1 class="entry-title"><a href="/blog/2014-09-21-hello-werld.html">2014-09-21-Hello-Werld.org</a></h1>
<p class="meta">
<time class='entry-date' datetime='2014-09-21'><span class='date'><span class='date-month'>Sep</span> <span class='date-day'>21</span><span class='date-suffix'>st</span>, <span class='date-year'>2014</span></span> <span class='time'>12:00 am</span></time>
</p>
</header>
<div class="entry-content"><div id="outline-container-sec-1" class="outline-2">
<h2 id="sec-1">Octopress + Emacs + orgmode + org-octopress</h2>
<div class="outline-text-2" id="text-1">
<p>
Trying out Octopress locally..
Steps taken: (following <a href="http://octopress.org/docs/setup/">http://octopress.org/docs/setup/</a> )
</p>
</div>
<div id="outline-container-sec-1-1" class="outline-3">
<h3 id="sec-1-1">Setup Octopress (commands entered)</h3>
<div class="outline-text-3" id="text-1-1">
<p>
Cloned to ~/git-installs/octopress/octopress/ . This looks bad but its just for testing, chill.
</p>
<ul class="org-ul">
<li><code>gem install bundler</code>
</li>
<li><code>cd ~</code>
</li>
<li><code>git clone git://github.com/sstephenson/rbenv.git .rbenv</code>
</li>
<li><code>echo 'export PATH</code>“$HOME/.rbenv/bin:$PATH”’ >> ~/.zshenv=
</li>
<li><code>echo 'eval "$(rbenv init -)"' >> ~/.zshenv</code>
</li>
<li><code>git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build</code>
</li>
<li><code>source ~/.zshenv</code>
</li>
<li><code>rbenv install 1.9.3-p0</code>
</li>
<li><code>rbenv local 1.9.3-p0</code>
</li>
<li><code>rbenv rehash</code>
</li>
<li><code>cd ~/git-installs/octopress/octopress</code>
</li>
<li><code>bundle install</code>
</li>
<li><code>rake install</code>
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-2" class="outline-3">
<h3 id="sec-1-2">Next Steps</h3>
<div class="outline-text-3" id="text-1-2">
<p>
Chose to use Github Pages for testing.
Following <a href="http://octopress.org/docs/deploying/github/">http://octopress.org/docs/deploying/github/</a> :
</p>
<ul class="org-ul">
<li>Created new repository (on Github) harj0.github.io
</li>
<li><code>rake setup_github_pages</code>
</li>
<li><code>rake generate</code>
</li>
</ul>
<p>
<i>ERROR-</i>
</p>
<div class="org-src-container">
<pre class="src src-sh">Error: No JS runtime.
</pre>
</div>
<ul class="org-ul">
<li><code>sudo apt-get install nodejs</code>
</li>
</ul>
<p>
<span class="underline">Fixed.</span>
</p>
<ul class="org-ul">
<li><code>rake generate</code>
</li>
</ul>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Generating Site with Jekyll</span>
identical source/stylesheets/screen.css
Configuration file: /home/trey/git-installs/octopress/octopress/_config.yml
Source: source
Destination: public
Generating...
done.
Auto-regeneration: disabled. Use --watch to enable.~
</pre>
</div>
<ul class="org-ul">
<li><code>rake deploy</code>
</li>
</ul>
<p>
<i>Semi-ERROR-</i>
</p>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Deploying branch to Github Pages </span>
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Pulling any updates from Github Pages </span>
<span style="color: #bdbdb3; font-weight: bold;">cd</span> _deploy
Warning: Permanently added the RSA host key for IP address <span style="color: #CC5542;">'192.30.252.128'</span> to the list of known hosts.
Enter passphrase for key <span style="color: #CC5542;">'/home/trey/.ssh/id_rsa'</span>:
warning: no common commits
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
From github.com:harj0/harj0.github.io
* [new branch] master -> origin/master
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) <span style="color: #7d7c61; font-weight: bold;">for</span> details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
<span style="color: #bdbdb3; font-weight: bold;">cd</span> -
rm -rf _deploy/index.html
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Copying public to _deploy</span>
cp -r public/. _deploy
<span style="color: #bdbdb3; font-weight: bold;">cd</span> _deploy
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Committing: Site updated at 2014-09-21 02:45:27 UTC</span>
[master 1cf6a4c] Site updated at 2014-09-21 02:45:27 UTC
61 files changed, 1121 insertions(+), 1 deletion(-)
create mode 100644 assets/jwplayer/glow/controlbar/background.png
create mode 100644 assets/jwplayer/glow/controlbar/blankButton.png
create mode 100644 assets/jwplayer/glow/controlbar/divider.png
create mode 100644 assets/jwplayer/glow/controlbar/fullscreenButton.png
create mode 100644 assets/jwplayer/glow/controlbar/fullscreenButtonOver.png
create mode 100644 assets/jwplayer/glow/controlbar/muteButton.png
create mode 100644 assets/jwplayer/glow/controlbar/muteButtonOver.png
create mode 100644 assets/jwplayer/glow/controlbar/normalscreenButton.png
create mode 100644 assets/jwplayer/glow/controlbar/normalscreenButtonOver.png
create mode 100644 assets/jwplayer/glow/controlbar/pauseButton.png
create mode 100644 assets/jwplayer/glow/controlbar/pauseButtonOver.png
create mode 100644 assets/jwplayer/glow/controlbar/playButton.png
create mode 100644 assets/jwplayer/glow/controlbar/playButtonOver.png
create mode 100644 assets/jwplayer/glow/controlbar/timeSliderBuffer.png
create mode 100644 assets/jwplayer/glow/controlbar/timeSliderCapLeft.png
create mode 100644 assets/jwplayer/glow/controlbar/timeSliderCapRight.png
create mode 100644 assets/jwplayer/glow/controlbar/timeSliderProgress.png
create mode 100644 assets/jwplayer/glow/controlbar/timeSliderRail.png
create mode 100644 assets/jwplayer/glow/controlbar/unmuteButton.png
create mode 100644 assets/jwplayer/glow/controlbar/unmuteButtonOver.png
create mode 100644 assets/jwplayer/glow/display/background.png
create mode 100644 assets/jwplayer/glow/display/bufferIcon.png
create mode 100644 assets/jwplayer/glow/display/muteIcon.png
create mode 100644 assets/jwplayer/glow/display/playIcon.png
create mode 100644 assets/jwplayer/glow/dock/button.png
create mode 100644 assets/jwplayer/glow/glow.xml
create mode 100644 assets/jwplayer/glow/playlist/item.png
create mode 100644 assets/jwplayer/glow/playlist/itemOver.png
create mode 100644 assets/jwplayer/glow/playlist/sliderCapBottom.png
create mode 100644 assets/jwplayer/glow/playlist/sliderCapTop.png
create mode 100644 assets/jwplayer/glow/playlist/sliderRail.png
create mode 100644 assets/jwplayer/glow/playlist/sliderThumb.png
create mode 100644 assets/jwplayer/glow/sharing/embedIcon.png
create mode 100644 assets/jwplayer/glow/sharing/embedScreen.png
create mode 100644 assets/jwplayer/glow/sharing/shareIcon.png
create mode 100644 assets/jwplayer/glow/sharing/shareScreen.png
create mode 100644 assets/jwplayer/player.swf
create mode 100644 atom.xml
create mode 100644 blog/archives/index.html
create mode 100644 favicon.png
create mode 100644 images/bird_32_gray.png
create mode 100644 images/bird_32_gray_fail.png
create mode 100644 images/code_bg.png
create mode 100644 images/dotted-border.png
create mode 100644 images/email.png
create mode 100644 images/line-tile.png
create mode 100644 images/noise.png
create mode 100644 images/rss.png
create mode 100644 images/search.png
rewrite index.html (100%)
create mode 100644 javascripts/github.js
create mode 100644 javascripts/libs/jXHR.js
create mode 100644 javascripts/libs/jquery.min.js
create mode 100644 javascripts/libs/swfobject-dynamic.js
create mode 100644 javascripts/modernizr-2.0.js
create mode 100644 javascripts/octopress.js
create mode 100644 javascripts/pinboard.js
create mode 100644 javascripts/twitter.js
create mode 100644 robots.txt
create mode 100644 sitemap.xml
create mode 100644 stylesheets/screen.css
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Pushing generated _deploy website</span>
Enter passphrase for key <span style="color: #CC5542;">'/home/trey/.ssh/id_rsa'</span>:
To [email protected]:harj0/harj0.github.io.git
<span style="color: #7d7c61; font-weight: bold;">!</span> [rejected] master -> master (non-fast-forward)
error: failed to push some refs to <span style="color: #CC5542;">'[email protected]:harj0/harj0.github.io.git'</span>
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: <span style="color: #CC5542;">'git pull ...'</span>) before pushing again.
hint: See the <span style="color: #CC5542;">'Note about fast-forwards'</span><span style="color: #7d7c61; font-weight: bold;"> in</span> <span style="color: #CC5542;">'git push --help'</span> for details.
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Github Pages deploy complete</span>
<span style="color: #bdbdb3; font-weight: bold;">cd</span> -~
</pre>
</div>
<ul class="org-ul">
<li>Seems the tutorial forgot to tell us to commit first(?)
</li>
<li>=git commit . -m ‘Something, Something, Something… DARKSIDE’=
</li>
<li><code>rake gen_deploy</code>
</li>
</ul>
<div class="org-src-container">
<pre class="src src-sh"><span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Generating Site with Jekyll</span>
identical source/stylesheets/screen.css
Configuration file: /home/trey/git-installs/octopress/octopress/_config.yml
Source: source
Destination: public
Generating...
done.
Auto-regeneration: disabled. Use --watch to enable.
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Deploying branch to Github Pages </span>
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Pulling any updates from Github Pages </span>
<span style="color: #bdbdb3; font-weight: bold;">cd</span> _deploy
Enter passphrase for key <span style="color: #CC5542;">'/home/trey/.ssh/id_rsa'</span>:
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) <span style="color: #7d7c61; font-weight: bold;">for</span> details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
<span style="color: #bdbdb3; font-weight: bold;">cd</span> -
rm -rf _deploy/favicon.png
rm -rf _deploy/LICENSE
rm -rf _deploy/blog
rm -rf _deploy/sitemap.xml
rm -rf _deploy/robots.txt
rm -rf _deploy/atom.xml
rm -rf _deploy/index.html
rm -rf _deploy/stylesheets
rm -rf _deploy/images
rm -rf _deploy/assets
rm -rf _deploy/javascripts
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Copying public to _deploy</span>
cp -r public/. _deploy
<span style="color: #bdbdb3; font-weight: bold;">cd</span> _deploy
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Committing: Site updated at 2014-09-21 06:12:50 UTC</span>
[master 4b0d087] Site updated at 2014-09-21 06:12:50 UTC
3 files changed, 3 insertions(+), 25 deletions(-)
delete mode 100644 LICENSE
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Pushing generated _deploy website</span>
Enter passphrase for key <span style="color: #CC5542;">'/home/trey/.ssh/id_rsa'</span>:
Counting objects: 94, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (84/84), done.
Writing objects: 100% (93/93), 188.20 KiB | 0 bytes/s, done.
Total 93 (delta 10), reused 0 (delta 0)
To [email protected]:harj0/harj0.github.io.git
b3842f9..4b0d087 master -> master
<span style="color: #6abd50;">## </span><span style="color: #6aaf50;">Github Pages deploy complete</span>
<span style="color: #bdbdb3; font-weight: bold;">cd</span> -
</pre>
</div>
<p>
<b>HURRAY</b>
</p>
<ul class="org-ul">
<li><code>new_post["Hello Werld']</code>
</li>
</ul>
<p>
<i>ERROR-</i>
</p>
<div class="org-src-container">
<pre class="src src-sh">zsh: no matches found: new_post[Hello Werld]
</pre>
</div>
<ul class="org-ul">
<li>Short answer: zsh globs dont like rake; Yoshi made a quick fix:
</li>