-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1484 lines (1222 loc) · 71.2 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>
<html lang="en_US">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
if (window.location.search == '?q=node/23') {
window.location.href = 'http://generalapps.davidfisco.com/synonymical/play';
}
if (window.location.search == '?q=node/27') {
window.location.href = 'http://generalapps.davidfisco.com/dcw';
}
if (window.location.search == '?q=node/143') {
window.location.href = 'http://productivity.davidfisco.com/2007/12/gtd-desktop-wallpaper-version-10.html';
}
if (window.location.search == '?q=node/109') {
window.location.href = 'http://productivity.davidfisco.com/2010/02/simple-calc-workbook-for-gtd-version-11.html';
}
if (/^https?:\/\/(www\.)?davidfisco\.com\/node\/201/.test(window.location.href)) {
window.location.href = 'https://foodie.davidfisco.com/2011/05/canola-oil-and-white-cake.html';
}
if (/^https?:\/\/(www\.)?davidfisco\.com\/node\/168/.test(window.location.href)) {
window.location.href = 'http://software.davidfisco.com/2008/09/experimental-code-lies-ahead-it-is.html';
}
if (/^https?:\/\/(www\.)?davidfisco\.com\/synonymical\.php/.test(window.location.href)) {
window.location.href = 'http://generalapps.davidfisco.com/synonymical/play';
}
if (/^https?:\/\/(www\.)?davidfisco\.com\/dcwindex\.php/.test(window.location.href)) {
window.location.href = 'http://generalapps.davidfisco.com/dcw';
}
if (/^https?:\/\/(www\.)?davidfisco\.com\/files\/gtd_desktop\.png/.test(window.location.href)) {
window.location.href = 'https://productivity.davidfisco.com/2007/12/18/gtd-desktop-wallpaper-version-10.html';
}
</script>
<title>David Fisco: Homepage</title>
<meta name="description" content="Content by David Fisco">
<meta name="author" content="David Fisco">
<meta name="theme-color" content="#3F51B5">
<!-- Google Authorship Markup common to all pages -->
<link rel="author" href="https://plus.google.com/116734396562610707415"/>
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@davidfisco">
<meta name="twitter:title" content="David Fisco: Homepage">
<meta name="twitter:description" content="Web content by David Fisco, @davidfisco">
<!-- Twitter summary card with image must be a minimum size of 120x120px. -->
<meta property="og:title" content="David Fisco: Homepage">
<meta property="og:type" content="article">
<meta property="og:url" content="https://www.davidfisco.com/">
<meta property="og:image" content="">
<meta property="og:description" content="Content by David Fisco">
<meta property="og:site_name" content="David Fisco">
<!-- <meta property="fb:admins" content="FACEBOOK NUMBERIC ID"> -->
<link rel='shortcut icon' href='https://www.davidfisco.com/icons/favicon.png'>
<link rel='apple-touch-icon' href='https://www.davidfisco.com/icons/icon-apple.png'>
<link rel="apple-touch-icon-precomposed" href="https://www.davidfisco.com/icons/icon-apple.png">
<link href='https://www.davidfisco.com/icons/favicon.png' rel='shortcut icon'>
<link href='https://www.davidfisco.com/icons/icon-apple.png' rel='apple-touch-icon'>
<link href='https://www.davidfisco.com/icons/icon-apple.png' rel='apple-touch-icon-precomposed'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- <link href='//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.css' rel='stylesheet'> -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.2/css/font-awesome.min.css"> -->
<script src="https://use.fontawesome.com/152f927d19.js"></script>
<style>
body {
margin-top: 2vh;
padding-bottom: 2em;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
@media print {
body {
padding-bottom: 0;
padding-top: 0
}
#dsq-2,
.no-print-fisco {
display: none!important
}
}
#davidfiscobrand {
font-weight: 700;
letter-spacing: .0625em
}
#davidfiscobrand:hover {
cursor: default
}
#site-search-form {
margin-left: 0;
opacity: .8;
padding-left: 0
}
#site-search-form .input-group {
width: 310px
}
#site-search-form input.form-control {
width: 100%
}
#bottom-navbar-bootstrap-fisco .navbar-collapse {
padding-left: 0
}
#variable-setter-fisco {
display: none
}
.addthis-sm-plus-gif {
border: 0;
height: 16px;
width: 16px
}
#payload-fisco>div.well-sm {
margin-top: 2em
}
article>footer {
clear: both;
padding-top: 2em
}
.image-pulled-right {
margin-top: 2em;
margin-left: 2em;
margin-bottom: 2em
}
.fisco-bootstrap-menu-icon-left {
display: inline-block!important;
font-size: 14px!important;
width: 20px!important;
text-align: center!important;
margin-right: 8px!important
}
.navbar-fixed-bottom {
-webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
-moz-box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
box-shadow: 0 -2px 10px rgba(0, 0, 0, .1)
}
.navbar-fixed-top {
-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
-moz-box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}
.twitter-blue {
color: #4099FF
}
.navbar-inverse .topic-label,
.navbar-inverse a.navbar-brand {
color: #f5f5f5!important
}
.navbar-inverse li#main-topic-label a {
color: #fff!important
}
#site-search-form::-webkit-input-placeholder {
color: #000!important
}
#site-search-form:-moz-placeholder {
color: #000!important
}
#site-search-form::-moz-placeholder {
color: #000!important
}
#site-search-form:-ms-input-placeholder {
color: #000!important
}
#site-search-form input:focus::-webkit-input-placeholder {
color: gray!important
}
#site-search-form input:focus:-moz-placeholder {
color: gray!important
}
#site-search-form input:focus::-moz-placeholder {
color: gray!important
}
#site-search-form input:focus:-ms-input-placeholder {
color: gray!important
}
.navbar-inverse .navbar-nav>li>a {
color: #fff;
font-weight: 700
}
.navbar-inverse .navbar-nav>li>a span#schema-article-articlesection:hover,
.navbar-inverse .navbar-nav>li>a:hover {
color: #add8e6
}
li a.history-button-fisco {
font-size: 18px;
padding-right: 0
}
li a.history-button-fisco.up-fisco {
font-size: 22px
}
li a.history-button-fisco {
padding-left: 10px
}
ul li:first-child a.history-button-fisco {
padding-left: 15px
}
.smaller-text-fisco {
font-size: smaller
}
.panel-default {
border-color: #000
}
.prefix-fa-caret-right-fisco:before {
content: "<i class='fa fa-caret-right'></i> "
}
.prefix-fa-caret-down-fisco:before {
content: "<i class='fa fa-caret-down'></i> "
}
#fisco-page-share-bar {
font-size: 1.2em;
text-align: center;
}
#fisco-page-share-bar a {
margin-right: .25em;
}
#fisco-page-share-bar a:last-of-type {
margin-right: 0;
}
#site-bar .contact-icons a {
margin-right: .25em;
}
#site-bar .contact-icons a:last-of-type {
margin-right: 0;
}
span#fisco-page-title-in-breadcrumb {
color: black;
font-size: 1.15em;
font-weight: bold;
}
@media (min-width: 992px) {
.pull-right-md-lg {
float: right;
}
}
iframe.googleDoc {
height: 65vh;
width: 100%;
}
.blogDateBlock {
color: grey;
text-align: right;
}
#site-header-breadcrumbs div.inactive span.addCaret::after {
color: grey;
content: ">";
margin-left: .5em;
margin-right: .5em;
font-size: .9em;
}
#searchDavidFiscoDialogLabel {
text-align: left;
}
.dropdown-menu .accentuate-fisco {
color: black;
font-size: 1.2em;
font-weight: bold;
}
/* FOR BOTTOM-ALIGNING ROWS */
.bottom-align-row {
font-size: 0;
}
.bottom-align-row > * {
float: none;
display: inline-block;
/* font-size: 14px; This MUST be set on the elements because of the directive above. */
}
.bottom-align-row > *:last-child {
vertical-align: bottom;
}
.bottom-align-row p:last-child {
margin-bottom: 0; /* optional */
}
/* Small devices (tablets, 768px and up) */
@media screen and (min-width: 768px) {
#site-bar-row-1 .fisco-brand {
text-align: center;
}
#site-header-breadcrumbs ol {
text-align: center;
}
}
@media screen and (max-width: 767px) {
body {
margin: 1em !important;
}
#site-header-breadcrumbs {
text-align: left;
}
}
@media screen and (max-width: 425px) {
#site-header-breadcrumbs, #fisco-page-header {
margin-bottom: 0 !important;
}
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}
/* Here begins a hack at responsive typography.
This should be removed for Bootstrap v4 */
html, body {
font-size: 14px;
}
@media screen and (min-width: 769px) {
html, body {
font-size: 16px;
line-height: 1.5;
}
}
#payload-fisco {
margin-top: 3vh;
}
#payload-fisco h1 {
font-size: 2.3rem;
}
#payload-fisco h2 {
font-size: 2.1rem;
font-style: italic;
}
#payload-fisco :not(div.popover) h3 {
font-size: 1.9rem;
}
#payload-fisco h4 {
font-size: 1.7rem;
font-style: italic;
}
#payload-fisco h5 {
font-size: 1.5rem;
}
#payload-fisco h6 {
font-size: 1.3rem;
font-style: italic;
}
/* End hack */
</style>
<!--[if lt IE 9]>
<script src="/js/html5shiv-printshiv.min.js"></script>
<![endif]-->
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-39522199-1', 'auto');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
jQuery(function($) {
// Debug flag
var debugMode = false;
// Default time delay before checking location
var callBackTime = 100;
// # px before tracking a reader
var readerLocation = 150;
// Set some flags for tracking & execution
var timer = 0;
var scroller = false;
var endContent = false;
var didComplete = false;
// Set some time variables to calculate reading time
var startTime = new Date();
var beginning = startTime.getTime();
var totalTime = 0;
// Get some information about the current page
var pageTitle = document.title;
// Track the aticle load
if (!debugMode) {
ga('send', 'event', 'Reading', 'ArticleLoaded', pageTitle, {'nonInteraction': 1});
} else {
console.log('The page has loaded. Woohoo.');
}
// Check the location and track user
function trackLocation() {
bottom = $(window).height() + $(window).scrollTop();
height = $(document).height();
// If user starts to scroll send an event
if (bottom > readerLocation && !scroller) {
currentTime = new Date();
scrollStart = currentTime.getTime();
timeToScroll = Math.round((scrollStart - beginning) / 1000);
if (!debugMode) {
ga('send', 'event', 'Reading', 'StartReading', pageTitle, timeToScroll, {'metric1' : timeToScroll});
} else {
console.log('started reading ' + timeToScroll);
}
scroller = true;
}
// If user has hit the bottom of the content send an event
if (bottom >= $('#payload-fisco').scrollTop() + $('#payload-fisco').innerHeight() && !endContent) {
currentTime = new Date();
contentScrollEnd = currentTime.getTime();
timeToContentEnd = Math.round((contentScrollEnd - scrollStart) / 1000);
if (!debugMode) {
if (timeToContentEnd < 60) {
ga('set', 'dimension1', 'Scanner');
} else {
ga('set', 'dimension1', 'Reader');
}
ga('send', 'event', 'Reading', 'ContentBottom', pageTitle, timeToContentEnd, {'metric2' : timeToContentEnd});
} else {
console.log('end content section '+timeToContentEnd);
}
endContent = true;
}
// If user has hit the bottom of page send an event
if (bottom >= height && !didComplete) {
currentTime = new Date();
end = currentTime.getTime();
totalTime = Math.round((end - scrollStart) / 1000);
if (!debugMode) {
ga('send', 'event', 'Reading', 'PageBottom', pageTitle, totalTime, {'metric3' : totalTime});
} else {
console.log('bottom of page '+totalTime);
}
didComplete = true;
}
}
// Track the scrolling and track location
$(window).scroll(function() {
if (timer) {
clearTimeout(timer);
}
// Use a buffer so we don't call trackLocation too often.
timer = setTimeout(trackLocation, callBackTime);
});
});
</script>
<!-- End Google Analytics -->
<script async src="https://static.addtoany.com/menu/page.js"></script>
<link rel="dns-prefetch" href="//disqus.com">
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","@id":"#pageSchema","accountablePerson":{"@type":"Person","@id":"https://www.davidfisco.com/about.html#davidfisco","name":"David Fisco"},"author":{"@type":"Person","@id":"https://www.davidfisco.com/about.html#davidfisco","name":"David Fisco"},"copyrightHolder":{"@type":"Person","@id":"https://www.davidfisco.com/about.html#davidfisco","name":"David Fisco"},"creator":{"@type":"Person","@id":"https://www.davidfisco.com/about.html#davidfisco","name":"David Fisco"},"editor":{"@type":"Person","@id":"https://www.davidfisco.com/about.html#davidfisco","name":"David Fisco"},"genre":"non-fiction","about":{"@type":"Thing","description":"Content by David Fisco"},"audience":{"@type":"Audience","audienceType":[]},"breadcrumb":{"@type":"BreadcrumbList","@id":"#breadcrumblist"},"mainContentOfPage":{"@type":"WebPageElement","@id":"#mainContentOfPage"},"specialty":{"@type":"Specialty","name":[""]},"reviewedBy":{"@type":"Person","@id":"https://www.davidfisco.com/about.html#davidfisco","name":"David Fisco"}}
</script>
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC:700?text=DavidFisco" rel="stylesheet">
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["setDomains", ["*.www.davidfisco.com","*.foodie.davidfisco.com","*.personal-wikis.davidfisco.com","*.philosophy.davidfisco.com","*.productivity.davidfisco.com"]]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.davidfisco.com/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//stats.davidfisco.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</head>
<body>
<div class="container">
<!-- Determine type of page. One of "regular", "topic" or "homepage" -->
<style>
a.page-title-in-breadcrumbs-fisco {
color: inherit;
cursor: default;
display: block;
font-size: 2rem;
line-height: normal;
text-decoration: inherit;
}
.breadcrumb-minor-fisco {
text-transform: uppercase;
}
#site-header-breadcrumbs-wrapper i.fa-angle-double-right {
color: #999999;
}
@media (min-width: 550px) {
a.page-title-in-breadcrumbs-fisco {
font-size: 2.5rem;
}
}
</style>
<!-- 27 -->
<div class="row">
<div class="col-xs-12" id="site-header-breadcrumbs-wrapper" style="margin-top 1vh;">
<a class="toggle-site-sidebar-fisco" title="Toggle Site Menu"><i class="fa fa-bars" aria-hidden="true" style="cursor: pointer;"></i></a>
<a class="breadcrumb-minor-fisco highlight-with-toggle-site-sidebar-fisco toggle-site-sidebar-fisco" style="cursor: pointer;" title="Toggle Site Menu">MENU</a>
<span> <i class="fa fa-angle-double-right" aria-hidden="true"></i> </span>
<span class="breadcrumbs-with-title-fisco" id="site-header-breadcrumbs" itemid="#breadcrumblist" itemscope itemtype="https://schema.org/BreadcrumbList">
<div style="display: inline-block; font-size: 2.5rem; margin-bottom: 2.75vh;"><div style="text-variant: small-caps; font-weight: 900;"><span style="color: darkgray;">DAVID</span>FISCO</div></div>
</span>
</div>
</div>
<script type="application/ld+json">
{
"@id": "#pageSchema",
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Home"
}
</script>
<script type="application/ld+json">
{
"@id": "#pageSchema",
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "Home"
}
</script>
<script type="application/ld+json">
{
"@id": "#pageSchema",
"@context": "https://schema.org",
"@type": "WebPage",
"url": "https://www.davidfisco.com/"
}
</script>
<span id="before-payload-fisco"></span>
<main class="row"
id='payload-fisco'
itemid="#mainContentOfPage"
itemscope itemtype="https://schema.org/WebPageElement">
<div class="col-xs-12">
<style>
.TPublish h4 {
font-size: 1rem !important;
font-style: normal !important;
font-weight: bold;
margin-bottom: 0;
}
</style>
<!-- BEGIN TPUBLISH WEBSITEUPDATES -->
<div class="TPublish">
<h4>14 November 2016</h4>
<p><a href="https://t.co/rH6A598mae">William James' Essays in Radical Empiricism: Personal Wiki 🆓 Based on @TiddlyWiki</a></p>
<h4>2 November 2016</h4>
<p><a href="https://t.co/vmrmtBbyo7">James' Pragmatism: A New Name for Some Old Ways of Thinking: Personal Wiki 🆓 Based on @TiddlyWiki</a></p>
<h4>1 November 2016</h4>
<p><a href="https://t.co/jliBj2MOxb">William James' The Principles of Psychology: Personal Wiki 🆓 Based on @TiddlyWiki</a></p>
<h4>6 October 2016</h4>
<p><a href="https://t.co/LMMjt1s5Eg">Homer's Odyssey: Personal Wiki 🆓 Based on @TiddlyWiki</a></p>
<h4>24 September 2016</h4>
<p><a href="https://t.co/Ru47CxdisZ">Iliad: Personal Wiki
🆓
Based on @TiddlyWiki</a></p>
<h4>29 July 2016</h4>
<p><a href="https://t.co/PLnjkc4zqW">The Malcontent: Personal Wiki</a></p>
<h4>1 July 2016</h4>
<p><a href="https://t.co/TnywFzdHJw">Rote: Declaration of Independence 🇺🇸 🆓</a></p>
<h4>3 June 2016</h4>
<p><a href="https://t.co/xje2qd3YFr">Personal study TiddlyWiki for Aristotle's Politics.</a></p>
<h4>19 May 2016</h4>
<p><a href="https://t.co/IR0TWAMAsV">Personal study wiki for Aristotle's Organon</a></p>
<h4>28 April 2016</h4>
<p><a href="https://t.co/6tYG1cIIQw">Foodie Recipe
#Vegan Garbanzo Bean Almond Cake 🍰 🍴</a></p>
<h4>26 April 2016</h4>
<p><a href="https://t.co/FLiCGBNJXo">Foodie Recipe
Campari "#Champagne" Cocktail Cake 🍰 🍴</a></p>
<h4>21 April 2016</h4>
<p><a href="https://t.co/7l4TpH3IB7">Typography Mind Map for Developers</a></p>
<h4>13 April 2016</h4>
<p><a href="https://t.co/vR1Z2i94DG">Personal study TiddlyWiki for ThomasJefferson's Declaration of Independence</a></p>
<h4>6 April 2016</h4>
<p><a href="https://t.co/r7LuDXCPOy">Personal study wiki for Aristotle's Rhetoric</a></p>
<h4>12 January 2016</h4>
<p><a href="https://t.co/Ktu5KH0DJe">Foodie Recipe
#Strawberry "#Champagne" Cake 🍰 🍴
#Foodporrn foodblogger</a></p>
<h4>9 January 2016</h4>
<p><a href="https://t.co/gduvwGpzxQ">Foodie Recipe
Baked Hummus Lasagna 🍴
#Foodporrn foodblogger</a></p>
<h4>7 January 2016</h4>
<p><a href="https://t.co/IxrNQazfHo">Foodie Recipe
Semi-Sweet Chocolate Cherry Hazelnut Cake for Two 🍰 🍴
#Foodporrn foodblogger</a></p>
<h4>5 January 2016</h4>
<p><a href="https://t.co/aaP2l0sWwi">Foodie Recipe
Hannah Glasse's Pound Cake 2016 🍰 🍴
#Foodporrn foodblogger</a></p>
<h4>2 January 2016</h4>
<p><a href="https://t.co/se2BFa2EGa">Foodie Recipe
Pineapple "Champagne" Cake 🍰 🍴
#Foodporrn foodblogger</a></p>
<h4>30 December 2015</h4>
<p><a href="https://t.co/VTOWyCteDv">Foodie Recipe
Orange "#Champagne" Cake 🍰 🍴
#Foodporrn foodblogger</a></p>
<h4>28 December 2015</h4>
<p><a href="https://t.co/IZC17aPvqU">Foodie Recipe
Deep-Fried Dinner Biscuits
#Foodporrn foodblogger</a></p>
<h4>3 December 2015</h4>
<p><a href="https://t.co/cHrEAz8Fbr">Personal study wiki for Dickens' A Christmas Carol
🆓 📓🎓 🆕 🌲</a></p>
<h4>2 December 2015</h4>
<p><a href="https://t.co/i5TgO8pjLT">Foodie Recipe
Apple Cider Velvet Cake 🍰 🍴
#Foodporrn foodblogger</a></p>
<h4>6 October 2015</h4>
<p><a href="http://t.co/gUVVHBOcJl
#TiddlyWiki">Personal study wiki for Shakespeare's Macbeth (1st Folio and MIT) 🆓 📓🎓 🆕 🎭</a></p>
<h4>30 September 2015</h4>
<p><a href="http://t.co/Jfmdy7XOvn">Personal study wiki for Shakespeare's Antony and Cleopatra (1st Folio and MIT)
🆓 📓🎓 🆕 🎭</a></p>
<h4>8 September 2015</h4>
<p><a href="http://t.co/e7uPZhPos6
#Foodporrn">Foodie Recipe
Grappa Cheesecake 🍰 🍾 🍴 🧀
foodblogger</a></p>
<h4>1 September 2015</h4>
<p><a href="http://t.co/3YvMXSxrnf">3 words (diluvial, intaglio, choleric) added to Synonymical vocabulary game 🎓 🆓</a></p>
<h4>25 August 2015</h4>
<p><a href="http://t.co/ICuaRJ1vt8">Personal study wiki for Shakespeare's A Midsummer Night's Dream (1st Folio and MIT) 🆓 📓🎓 🆕 🎭</a></p>
<h4>14 August 2015</h4>
<p><a href="http://t.co/XtPfZYbGj5">Personal Study Wiki of "The Sketch Book..." by WashingtonIrving (includes SleepyHollow) 🆓 📓🎓 🎃 🆕</a></p>
<h4>14 July 2015</h4>
<p><a href="http://t.co/uwKbUzaDB4">Foodie Recipe Grappa-Orange White Cake Foodporrn foodblogger</a></p>
<h4>8 July 2015</h4>
<p><a href="http://t.co/P87KnHnB9n">Foodie Recipe Grappa Cream Cheese Frosting</a></p>
<h4>7 July 2015</h4>
<p><a href="http://t.co/Y6Kl7liH6g">Foodie Recipe Grappa-Pistachio-Raisin Gelato Foodporrn foodblogger</a></p>
<h4>31 March 2015</h4>
<p><a href="http://t.co/UutaTxEUVt">Personal wiki for study of The Federalist Papers</a></p>
<h4>3 March 2015</h4>
<p><a href="http://t.co/ZcnIoOm4Sz">Personal wiki for study of Republic by Plato</a></p>
<h4>20 February 2015</h4>
<p><a href="http://t.co/C05CYjK9Aq">Personal wiki for study of Euthyphro by Plato</a></p>
<h4>19 February 2015</h4>
<p><a href="http://t.co/QHVmtUcRvd">Personal wiki for the study of Anthem by Ayn Rand</a></p>
<h4>18 February 2015</h4>
<p><a href="http://t.co/nlxcJAJeH6">Personal wiki for Meno by Plato</a></p>
<h4>17 February 2015</h4>
<p><a href="http://t.co/RMC8FR7f8e">Personal wikis for study tailored to your educational needs</a></p>
<h4>12 February 2015</h4>
<p><a href="http://t.co/YKPIcXpqPB">A personal wiki for the study of Hamlet</a></p>
<h4>8 January 2015</h4>
<p><a href="http://t.co/uwMj71vOpi">Foodie Recipe Radical Orange Rum Sherbet</a></p>
<h4>7 January 2015</h4>
<p><a href="http://t.co/eB7Hi50hqz">Foodie Recipe Camelina Oil Cake</a></p>
<h4>6 January 2015</h4>
<p><a href="http://t.co/x70gt6GptE">Foodie Recipe Juniper Berry Traditional Pound Cake</a></p>
<h4>5 January 2015</h4>
<p><a href="http://t.co/RTanRzyf42">Foodie Recipe 51 Packet IceCream</a></p>
<p><a href="http://t.co/S8heDbdPAN">Foodie Recipe Mai Tai Cake</a></p>
<h4>4 January 2015</h4>
<p><a href="http://t.co/eqlXyeYB3l">Foodie Recipe Jaggery Butter/Sauce</a></p>
<h4>31 December 2014</h4>
<p><a href="http://t.co/WbYZpTHsg6">Foodie Recipe Mai Tai Cookies</a></p>
<h4>19 December 2014</h4>
<p><a href="http://t.co/FQhdYQrWkD">New DCW vocabulary exercise posted (choleric, diluvial, intaglioed, orthographers, prevaricated)</a></p>
<h4>7 December 2014</h4>
<p><a href="http://t.co/XtTJaDiXHV">Foodie Recipe Jaggery Frosting</a></p>
<p><a href="http://t.co/7ft6tqowXu">Curated Linux Software Links, updated frequently</a></p>
<h4>5 December 2014</h4>
<p><a href="http://t.co/chv7IknKru">Curated Google Software Links</a></p>
<h4>3 December 2014</h4>
<p><a href="http://t.co/RX1w4WEfDT">Android Software Links: A curated list of resources, updated frequently</a></p>
<h4>1 December 2014</h4>
<p><a href="http://t.co/ysFYpBiPgh">Foodie Recipe Juniper Berry White Cake</a></p>
<h4>24 November 2014</h4>
<p><a href="http://t.co/kGPMYjUvps">Foodie Recipe Radical Dark Rum Sherbert</a></p>
<h4>11 November 2014</h4>
<p><a href="http://t.co/yqLw87sfH7">3 words (mastic, magnum, moued) added to Synonymical vocabulary game</a></p>
<h4>4 November 2014</h4>
<p><a href="http://t.co/AY7s5XWFGT">New DCW vocabulary exercise posted (memento mori, magnum, mastic, meretricious, moued)</a></p>
<h4>11 October 2014</h4>
<p><a href="http://t.co/YpimayocH6">Foodie Recipe Basic Doppio-Zero White Cake</a></p>
<h4>10 July 2014</h4>
<p><a href="http://t.co/cpyaJDNTo5">Foodie Recipe Easy Cherry Cheesecake IceCream</a></p>
<h4>5 July 2014</h4>
<p><a href="http://t.co/KghUm3kSvt">3 words (haggis, flagon, elegiac) added to Synonymical vocabulary game</a></p>
<h4>2 July 2014</h4>
<p><a href="http://t.co/iHpYxv8U35">Foodie Recipe Jaggery Brownies</a></p>
<h4>2 June 2014</h4>
<p><a href="http://t.co/nC8Bulwo7P">Foodie Recipe Rye ChocolateChip Cookies with Orange Zest</a></p>
<h4>27 May 2014</h4>
<p><a href="http://t.co/Dc8c66sgSF">Foodie Recipe Rye ChocolateChip Cookies</a></p>
<h4>9 May 2014</h4>
<p><a href="http://t.co/68meBYvrPG">Foodie Recipe Sables++</a></p>
<h4>23 April 2014</h4>
<p><a href="http://t.co/kmu5MLo5k7">Foodie Recipe Ghee and OrangeJuice Cake</a></p>
<h4>22 April 2014</h4>
<p><a href="http://t.co/bigHRyhoeF">Foodie Recipe Waldorf Lasagna</a></p>
<h4>21 April 2014</h4>
<p><a href="http://t.co/pM2gVyGGBh">Foodie Recipe: Easy Peanut Shortbread</a></p>
<h4>1 April 2014</h4>
<p><a href="http://t.co/sNbTwzQ4uP">New DCW vocabulary exercise posted (commissure, coterminously, elegiac, flagon, haggis)</a></p>
<h4>26 March 2014</h4>
<p><a href="http://t.co/KQMWs41Ww7">Foodie Hazelnut "Bagels" with "Cream Cheese" doughnut dessert recipe</a></p>
<h4>17 March 2014</h4>
<p><a href="http://t.co/w6Y7YNXXcc">StPattys legend and explanation revealed! Happy StPatricksDay</a></p>
<h4>16 March 2014</h4>
<p><a href="http://t.co/w6Y7YNXXcc">Final StPattys clue posted</a></p>
<h4>15 March 2014</h4>
<p><a href="http://t.co/w6Y7YNXXcc">Fifth StPattys clue posted</a></p>
<h4>14 March 2014</h4>
<p><a href="http://t.co/Ivaywj6Aop">Fourth StPattys clue posted</a></p>
<h4>13 March 2014</h4>
<p><a href="http://t.co/w6Y7YNXXcc">Third StPattys clue posted</a></p>
<h4>12 March 2014</h4>
<p><a href="http://t.co/w6Y7YNXXcc">Second StPattys clue posted</a></p>
<h4>11 March 2014</h4>
<p><a href="http://t.co/w6Y7YNXXcc">First StPattys clue posted</a></p>
<p><a href="http://t.co/Xt7gWZAEVb">Frugal LanguageLearning: Save those instructions!</a></p>
<p><a href="http://t.co/RiZCxOPlPY">"Name That Legend: Saint Patrick" begins tomorrow and ends on SaintPatricksDay</a></p>
<h4>12 February 2014</h4>
<p><a href="http://t.co/yqLw87sfH7">5 words (antipode, bathos, captious, druthers, earwig) added to Synonymical vocabulary game</a></p>
<h4>27 January 2014</h4>
<p><a href="http://t.co/WbBGBC7G2H">Recipe Vegan Agave and Canola Oil Apple Cake</a></p>
<h4>24 January 2014</h4>
<p><a href="http://t.co/Ts7W6xxxBu">New DCW vocabulary exercise posted (antipode, bathos, captious, druthers, earwigging)</a></p>
<h4>21 January 2014</h4>
<p><a href="http://t.co/zmVZYHYXrn">Recipe Experiment Caraway Chocolate Chip Cookies</a></p>
<h4>15 January 2014</h4>
<p><a href="http://t.co/ghJvbbXaaF">Recipe: Anise, Orange and Rose Cake</a></p>
<h4>14 January 2014</h4>
<p><a href="http://t.co/uBXqRzKS48">Recipe: ApplePie Lasagna</a></p>
<h4>6 January 2014</h4>
<p><a href="http://t.co/WsOU09vgdP">Recipe: Vegan Canola Oil White Cake</a></p>
<h4>29 December 2013</h4>
<p><a href="http://t.co/m27aLI7gCP">Recipe: Jaggery Walnut Bar Cookies</a></p>
<h4>13 December 2013</h4>
<p><a href="http://t.co/qYhyVkfo9A">Recipe: Zinfandel IceCream with Semi-Sweet Chocolate</a></p>
<h4>6 December 2013</h4>
<p><a href="http://t.co/MG68QTS5dr">Recipe: Sour Apple IceCream</a></p>
<h4>1 December 2013</h4>
<p><a href="http://t.co/FJAE4v8uXW">Recipe: CanolaOil Yellow Cake</a></p>
<h4>17 November 2013</h4>
<p><a href="http://t.co/Pz2rapWvKU">New, simpler site design rolling out</a></p>
<h4>12 November 2013</h4>
<p><a href="http://t.co/yqLw87sfH7">5 words (seraphim, relict, pleonasm, nonpareil, nebbish) added to Synonymical vocabulary game</a></p>
<h4>4 November 2013</h4>
<p><a href="http://t.co/DwOaLD0bMv">New DCW vocabulary exercise posted (nebbish, nonpareil, pleonastic, relict, seraphim)</a></p>
<h4>7 October 2013</h4>
<p><a href="http://t.co/yqLw87sfH7">5 words (coruscate, eidetic, strafe, soigne, recumbent) added to the Synonymical vocabulary game</a></p>
<h4>5 October 2013</h4>
<p><a href="http://t.co/ih5ceeGNeB">Synonymical gets a better user interface</a></p>
<h4>26 September 2013</h4>
<p><a href="http://t.co/EU7bEz9Uox">Foodie addition: Recipe: Warm Chardonnay Cake for Serving IceCream</a></p>
<h4>20 September 2013</h4>
<p><a href="http://t.co/28WnjPZLgh">Productivity update: Criteria for Evaluating "Capture Software"</a></p>
<h4>5 September 2013</h4>
<p><a href="http://t.co/SSYKyyB9ea">Foodie addition: Recipe: New World Spice Ice_Cream</a></p>
<h4>3 September 2013</h4>
<p><a href="http://t.co/8TODBwH7el">Foodie addition: Recipe: The Goat and Duck Cake</a></p>
<h4>11 August 2013</h4>
<p><a href="http://t.co/G6WX2XpgzO">New DCW vocabulary exercise posted (coruscating, eidetic, recumbent, soigne, strafed)</a></p>
<h4>10 August 2013</h4>
<p><a href="http://t.co/s6PF1SXLhy">Foodie addition: Recipe: Ceylon Cinnamon and PeanutButter in French Almond IceCream</a></p>
<h4>21 July 2013</h4>
<p><a href="http://t.co/ufdOZSdoIk">Foodie addition: Recipe: Jaggery French Vanilla IceCream</a></p>
<h4>14 July 2013</h4>
<p><a href="http://t.co/04mwWsZPiH">Foodie addition: Recipe: Easy Red Wine Cake with Canola Oil</a></p>
<h4>23 June 2013</h4>
<p><a href="http://t.co/Cct7f1zszy">Foodie: Tip: Record the Weights of Your Kitchen's Containers</a></p>
<h4>21 April 2013</h4>
<p><a href="http://t.co/eGEHD1GCUj">Foodie addition: Recipe: The Corn Cake Series: Lemon Variation</a></p>
<h4>16 April 2013</h4>
<p><a href="http://t.co/apZnxbokaC">Foodie addition: Recipe: The Corn Cake Series: New World Spice Variation</a></p>
<p><a href="http://t.co/Ih0Xh8I59y">Foodie addition: Recipe: The Corn Cake</a></p>
<h4>25 February 2013</h4>
<p><a href="http://t.co/3YvMXSfPYF">4 words (accretion, aquiline, phatic, scries) added to the Synonymical vocabulary game</a></p>
<h4>24 February 2013</h4>
<p><a href="http://t.co/hOP5Alm2vF">New DCW vocabulary exercise posted (accretion, aquiline, chiaroscuro, phatic, scries)</a></p>
<h4>4 February 2013</h4>
<p><a href="http://t.co/sMmyIUfI">Productivity : Managing Your Long-Term Studies</a></p>
<h4>2 February 2013</h4>
<p><a href="http://t.co/wgfD0ZoN">4 words (epigram, sedulous, tenebrous, fustian) added to the Synonymical vocabulary game</a></p>
<h4>30 January 2013</h4>
<p><a href="http://t.co/SYIDyD4i">New DCW vocabulary exercise posted (epigrams, fustian, sedulousness, tenebrous,vertiginous)</a></p>
<h4>29 January 2013</h4>
<p><a href="http://t.co/wnLMWo8X">Productivity : The Benefits of a Single Tag Set: better tagging for webapps</a></p>
<h4>22 January 2013</h4>
<p><a href="http://t.co/gqTH1uVp">Foodie addition: Recipe: Cherry Coke Cake, a cake with Coca-Cola!</a></p>
<h4>28 November 2012</h4>
<p><a href="http://t.co/nKjyFynU">Foodie addition: Recipe: Warm Beurre Noisette Cake with Banana Sauce</a></p>
<h4>27 November 2012</h4>
<p><a href="http://t.co/9k77JQdJ">Foodie addition: Recipe: Beurre Noisette Buttercream</a></p>
<p><a href="http://t.co/DwMlUXtE">Foodie addition: Recipe: Warm Banana Dessert Sauce</a></p>
<h4>5 September 2012</h4>
<p><a href="http://t.co/whGIeEiC">Foodie addition: Recipe: An Accidental, Extremely Fudgy Chocolate Cake</a></p>
<h4>14 August 2012</h4>
<p><a href="http://t.co/ygVPjLrD">Rote: Shakespeare released! Brush up your Shakespeare! (Google Chrome recommended browser)</a></p>
<h4>22 July 2012</h4>
<p><a href="http://t.co/H3o4LhH3">Foodie addition: Recipe: A Light and Downy (but Rich) White Cake</a></p>
<h4>12 July 2012</h4>
<p><a href="http://t.co/672njOYm">Foodie addition: Lemony Deep-Fried Twinkies</a></p>
<h4>3 July 2012</h4>
<p><a href="http://t.co/JfhfO1ZV">Foodie addition: Quick Sugar-Free Peppermint Ice Cream</a></p>
<h4>21 June 2012</h4>
<p><a href="http://t.co/b5PvTXKV">4 words (toper, pellucid, skinflint, sublunary) added to the Synonymical vocabulary game</a></p>
<p><a href="http://t.co/XDOHD2Oj">Alpha 20 of ProjectMarks available with improvements to embedded resources.</a></p>
<h4>12 June 2012</h4>
<p><a href="http://t.co/LlrV7JeU">New DCW vocabulary exercise posted (factitious, pellucid,skinflint's,sublunary,toper)</a></p>
<p><a href="http://t.co/XDOHD2Oj">Alpha 19 of ProjectMarks available with drag-and-drop for resources.</a></p>
<h4>31 May 2012</h4>
<p><a href="http://t.co/XDOHD2Oj">Alpha 18 of ProjectMarks available with minor bug fixes.</a></p>
<h4>30 May 2012</h4>
<p><a href="http://t.co/XDOHD2Oj">Alpha 17 of ProjectMarks available with resource functionality improvements.</a></p>
<h4>25 May 2012</h4>
<p><a href="http://t.co/XDOHD2Oj">Alpha 16 of ProjectMarks available with a minor cosmetic improvement.</a></p>
<h4>24 May 2012</h4>
<p><a href="http://t.co/XDOHD2Oj">Alpha 15 of ProjectMarks available with support for documents in Google Drive.</a></p>
<h4>23 May 2012</h4>
<p><a href="http://t.co/XDOHD2Oj">Alpha 14 of ProjectMarks available with bug reporting.</a></p>
<h4>22 May 2012</h4>
<p><a href="http://t.co/XDOMaCXt">Alpha 13 of ProjectMarks available with Wikipedia support.</a></p>
<p><a href="http://t.co/wgfHyzxX">4 words (nugatory, exchequer, laconic, Lothario) added to the Synonymical vocabulary game</a></p>
<h4>28 March 2012</h4>
<p><a href="http://t.co/CSWkZ88a">Alpha 12 of ProjectMarks available with StackOverflow and Google Tasks support.</a></p>
<h4>20 March 2012</h4>
<p><a href="http://t.co/8GCyz8Da">Alpha 11 of ProjectMarks available. Now with project resources drag-and-drop!</a></p>
<h4>19 March 2012</h4>
<p><a href="http://t.co/h9Mh5KgH">Alpha 10 of ProjectMarks available. Now with YouTube support!</a></p>
<h4>16 March 2012</h4>
<p><a href="http://t.co/y7PZCP1S">Alpha 8 of ProjectMarks available</a></p>
<h4>14 March 2012</h4>
<p><a href="http://t.co/nMEX87u4">Alpha 6 of ProjectMarks available</a></p>
<h4>16 February 2012</h4>
<p><a href="http://t.co/CRhZfcjn">New DCW vocabulary exercise posted (idée fixe, Lothario, exchequer, laconically, nugatory)</a></p>
<p><a href="http://t.co/a9VKd9sN">Foodie : Recipe : SugarFree PeanutButter Cheesecake</a></p>
<h4>15 February 2012</h4>
<p><a href="http://t.co/YY44tpZ8">First beta of TomatoDoc Timer, Pomodoro web software for Google_Chrome</a></p>
<h4>8 February 2012</h4>
<p><a href="http://t.co/b5PArxLP">3 words (bombinate, pugilist, seneschal) added to the Synonymical vocabulary game</a></p>
<h4>19 January 2012</h4>
<p><a href="http://t.co/fdiUZX3y">New DCW vocabulary exercise posted (bellwether, bombinated, pugilists, raki, seneschal)</a></p>
<h4>17 January 2012</h4>
<p><a href="http://t.co/MrFhAwKm">Foodie : Recipe : Honey Walnut Cheesecake</a></p>
<h4>17 December 2011</h4>
<p><a href="http://t.co/qXsi9UY8">Foodie : A Frugal, Toasted Cake Topping</a></p>
<h4>14 December 2011</h4>
<p><a href="http://t.co/gifqceed">Productivity : Organizing Your Cloud by Project, Using Google_Chrome Bookmarks</a></p>
<h4>7 December 2011</h4>
<p><a href="http://t.co/Qc8TLAXA">4 words added to the Synonymical vocabulary game</a></p>
<h4>28 November 2011</h4>
<p><a href="http://t.co/oynUnT2f">Pumpkin and Devil's Food Cake</a></p>