-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathelliotthauser.wordpress.2013-07-29.xml
More file actions
1023 lines (868 loc) · 79.5 KB
/
elliotthauser.wordpress.2013-07-29.xml
File metadata and controls
1023 lines (868 loc) · 79.5 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/3.5.2" created="2013-07-29 01:51" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>Elliott Hauser</title>
<link>https://elliotthauser.com</link>
<description>since 1983</description>
<pubDate>Mon, 29 Jul 2013 01:51:33 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://web.unc.edu/</wp:base_site_url>
<wp:base_blog_url>https://elliotthauser.com</wp:base_blog_url>
<wp:author><wp:author_id>1024</wp:author_id><wp:author_login>eah13</wp:author_login><wp:author_email>eah13@unc.edu</wp:author_email><wp:author_display_name><![CDATA[Elliott Hauser]]></wp:author_display_name><wp:author_first_name><![CDATA[Elliott]]></wp:author_first_name><wp:author_last_name><![CDATA[Hauser]]></wp:author_last_name></wp:author>
<generator>http://wordpress.org/?v=3.5.2</generator>
<item>
<title>Welcome</title>
<link>https://elliotthauser.com/welcome/</link>
<pubDate>Tue, 12 Oct 2010 21:58:20 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=33</guid>
<description></description>
<content:encoded><![CDATA[This site is a collection of cool tools, articles, and links I've found. It's for my own reference and convenience and I hope it helps you too! If this site ever seems a little out of date, well, check me on <a href="http://unc.academia.edu/elliott">Academia</a>, <a href="http://linkedin.com/in/elliotthauser">Linkedin</a>, or <a href="http://github.com/eah13">GitHub</a> because I'm probably up to something fun. And, as of 2012 I've been using <a href="http://plus.google.com/101710108233003380197">my G+ page</a> as a blog of sorts.
In general, the topmost categories below are most current.
You'll find my <a href="http://elliott.web.unc.edu/professional-resume/">Resume</a> & <a href="http://elliott.web.unc.edu/academic-cv/">CV</a> under the Pages to the left.
<a title="Disclaimer, Ownership, etc." href="http://elliott.web.unc.edu/other/disclaimer-ownership-etc/">(c) 2011</a>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>33</wp:post_id>
<wp:post_date>2010-10-12 21:58:20</wp:post_date>
<wp:post_date_gmt>2010-10-12 21:58:20</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>welcome</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>1</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[first-post]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Presentations</title>
<link>https://elliotthauser.com/presentations/</link>
<pubDate>Sun, 19 Feb 2012 08:27:06 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=37</guid>
<description></description>
<content:encoded><![CDATA[<a href="http://www.google.com/google-d-s/presentations/">GooglePresentations</a>
Think PowerPoint but easier and everywhere.
Google still doesn't have the tight integration that Office does, but for me that's more than made up for by the ease and access.
<a href="http://prezi.com">Prezi</a>
An excellent tool for creating show-stopping presentations. The software uses vector graphics and takes advantage of that fact to allow near-infinite scalability. What does that mean? Take a look at a Prezi I made about Prezi's innovative user interface:
<em>(press the play button and wait for it to load. use the mouse or arrow keys to navigate)</em>
<div class="prezi-player">
<object id="prezi_8ebyvqarcqhg" width="600" height="500" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="prezi_id=8ebyvqarcqhg&lock_to_path=0&color=ffffff&autoplay=no&autohide_ctrls=0" /><param name="src" value="http://prezi.com/bin/preziloader.swf" /><embed id="prezi_8ebyvqarcqhg" width="600" height="500" type="application/x-shockwave-flash" src="http://prezi.com/bin/preziloader.swf" allowfullscreen="true" allowscriptaccess="always" flashvars="prezi_id=8ebyvqarcqhg&lock_to_path=0&color=ffffff&autoplay=no&autohide_ctrls=0" /></object>
<div class="prezi-player-links">
<a title="Prezi: An Innovative User Interface" href="http://prezi.com/8ebyvqarcqhg/prezi-an-innovative-user-interface/">Prezi: An Innovative User Interface</a> on <a href="http://prezi.com">Prezi</a>
</div>
</div>
My other publicly available Prezis are <a href="http://prezi.com/user/elliott/">here</a>.
I always use Prezi now, unless I'm collaborating with people that prefer Google. As a last resort, and in Enterprise situations, I'll use Microsoft Powerpoint.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>37</wp:post_id>
<wp:post_date>2012-02-19 08:27:06</wp:post_date>
<wp:post_date_gmt>2012-02-19 08:27:06</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>presentations</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[prezi-online-presentation-software]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[prezi]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Diagramming & UI</title>
<link>https://elliotthauser.com/diagramming/</link>
<pubDate>Tue, 18 Oct 2011 22:34:24 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=40</guid>
<description></description>
<content:encoded><![CDATA[<a href="http://www.omnigroup.com/products/omnigraffle/">OmniGraffle</a>
Omnigraffle is the Big Kahuna of diagraming programs. I use it extensively. There are complaints I have about it, but they are the kind of complaints you have when you find a piece of software so useful you know all of its quirks. That said, Omni group's software ergonomics pretty much beat anyone's.
<a href="http://office.microsoft.com/en-us/visio/">Visio</a>
Visio is the de-facto standard for Windows diagramming. I don't like to use Windows, so don't have much experience creating content with Visio. You may like it though. Not to be confused with <a href="http://www.vizio.com/">Vizio</a>.
<a href="http://gliffy.com">Gliffy</a>
Gliffy is a neat web tool that wants to be a web-enabled version of <a href="http://www.omnigroup.com/products/omnigraffle/">OmniGraffle</a>. Not only is it a great diagraming option for Macs, it's one of the best I've found that works with Linux. (sorry, <a href="http://live.gnome.org/Dia">Dia</a>...)
It runs on the web and there is a free version. It's pretty powerful, and certainly more convenient than box-bound software. It's not as powerful as Omnigraffle, though, and the interface isn't as refined (for instance, there's no equivalent to holding down alt to duplicate elements).
I used Gliffy back when I was just starting to learn about ER diagrams:
<img src="http://www.gliffy.com/pubdoc/2272886/S.png" alt="" />
I haven't found it useful enough to upgrade beyond the 5 documents you get for free. Instead, I bought Omnigraffle.
<strong>UX Evaluation</strong>
TechSmith's <a href="http://www.techsmith.com/morae">Morae</a> is an interesting- and very expensive - entry into the UX Analysis Space. It combines screen & webcam capture with indexed notetaking form multiple observers.
I'm sure there are more programs in the UX space. Stay tuned.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>40</wp:post_id>
<wp:post_date>2011-10-18 22:34:24</wp:post_date>
<wp:post_date_gmt>2011-10-18 22:34:24</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>diagramming</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[gliffy-online-diagraming-and-modeling]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[gliffy]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Data Visualization</title>
<link>https://elliotthauser.com/data-visualization/</link>
<pubDate>Mon, 28 Feb 2011 01:00:00 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=143</guid>
<description></description>
<content:encoded><![CDATA[****Update
Via Richard Marciano's Digital Humanities Class:
<strong><a href="http://geocommons.com/">GeoCommons</a>: georeferenced data in the cloud</strong>
GeoCommons is a sharing platform for georeferenced data, from .kml to ArcGIS and other pro formats.
<strong><a href="http://batchgeo.com/">BatchGEO</a>: Upload a spreadsheet, get a map</strong>
Free-as-in-beer mapping. The free version looks quick and easy, and the pro version looks decently powerful.
***Update
This isn't so much data visualization as data presentation, but there're are neat things being done with WebGL fight now...For instance: (note that you may need Chrome to view some of these)
<ul>
<li><a href="http://bodybrowser.googlelabs.com/">Google body</a></li>
<li><a href="http://plumegraph.org/">Visualizing Afghan Civilian Deaths</a></li>
<li><a href="http://www.nmr.mgh.harvard.edu/~rudolph/webgl/brain_viewer/brain_viewer.html">Harvard Brain Anatomy and Tractography Viewer</a></li>
</ul>
*************
<strong>Protovis</strong>
Beck Tench's <a href="http://www.becktench.com/">awesome site</a> has a link to Protovis, a free open source tool developed at <a href="http://vis.stanford.edu/">Stanford's Visualization Group</a>. Click below to check it out:
<p style="text-align: center;"><a href="http://vis.stanford.edu/protovis/ex/"><img class="aligncenter size-full wp-image-427" title="Screen shot 2011-02-09 at 1.22.01 PM" src="http://elliott.web.unc.edu/files/2010/11/Screen-shot-2011-02-09-at-1.22.01-PM.png" alt="" width="437" height="226" /></a></p>
<p style="text-align: left;">I think you'll see if you visit Beck's site, though, that nothing beats<a href="http://becktench.com/writings/piggyback-post-sketching-tools/"> pen and paper</a>...In her hands at least..</p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"> </p>
<strong>Adobe Flex</strong>
[caption id="" align="alignright" width="149" caption="Adobe's Flex is a part of the Flash Platform"]<a href="http://flex.org"><img class=" " title="Adobe's Flash Platform" src="http://flex.org/images/FlexLogo.gif" alt="" width="149" height="77" /></a>[/caption]
I found out about <a href="http://flex.org">Adobe Flex</a> from The <a href="http://nlp.stanford.edu/">Stanford Natural Language Processing Group</a>'s <a href="http://nlp.stanford.edu/projects/dissertations/">Dissertation Topic Visualizer</a>. Looks powerful & clean: google-viz like. Output is .swf. Like a lot that Adobe does, expect it to be slick and powerful.
<del><strong>Microsoft Excel</strong></del>
<span style="color: #000000;"><del>I debated putting</del></span> I went ahead and put Excel in strikethrough. It's the go-to dataviz tool for the masses, and is great at what it's designed to do. But if you have limited needs there may be something easier and freer. And if you have advanced needs, Excel's extremely limited/hard to use visual formatting options will drive you up the wall, as they did to me during my art history <a href="http://www.amazon.com/Mapping-Paintings-1450-1750-European-1100-1800/dp/2503518303">thesis research</a>.
<strong>Linux Tools</strong>
IBM has a great rundown of <a href="http://www.ibm.com/developerworks/linux/library/l-datavistools/">Data Visualization Tools for Linux</a>.
(Via classmate Lisa Speaker)
<strong>Tableau Software</strong>
<a href="http://www.tableausoftware.com">Tableau</a> is an expensive but interesting option geared towards business intelligence. I'm keeping an eye on them... (Not to be confused with<a href="http://www.tableau.com/"> Tableau, LLC,</a> forensic data analysis hardware provider)
<strong>Google Fusion Tables</strong>
<a href="http://tables.googlelabs.com"><img class="alignright" title="Fusion Tables" src="http://www.google.com/images/logos/fusion_tables_logo_beta.gif" alt="" width="256" height="40" /></a>This is a labs product, so don't expect fireworks. But take heart that Google has projects like this up its sleeve. Basically, you connect to or upload data and then select from some canned visualizations. The components of the vis are open to public comment. An interesting but mildly useful feature as implemented.
<strong>More to come! </strong> - Meanwhile, check out this <a href="http://www.inthelibrarywiththeleadpipe.org/2009/not-just-another-pretty-picture/">sweet post</a> on visualization by Hilary Davis. (Thanks to Alex Gallin for being the reason I found Hilary's post)]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>143</wp:post_id>
<wp:post_date>2011-02-28 01:00:00</wp:post_date>
<wp:post_date_gmt>2011-02-28 01:00:00</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>data-visualization</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:comment>
<wp:comment_id>1458</wp:comment_id>
<wp:comment_author><![CDATA[Aldrich]]></wp:comment_author>
<wp:comment_author_email>Katherine@gmail.com</wp:comment_author_email>
<wp:comment_author_url>http://handmade-christmas-gifts.com/</wp:comment_author_url>
<wp:comment_author_IP>178.168.31.223</wp:comment_author_IP>
<wp:comment_date>2011-07-26 13:39:17</wp:comment_date>
<wp:comment_date_gmt>2011-07-26 13:39:17</wp:comment_date_gmt>
<wp:comment_content><![CDATA[hell yea, i want write a dismember wish this but didnt have time, may i repost this Elliott Hauser - subsequently 1983]]></wp:comment_content>
<wp:comment_approved>0</wp:comment_approved>
<wp:comment_type></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
</wp:comment>
<wp:comment>
<wp:comment_id>3538</wp:comment_id>
<wp:comment_author><![CDATA[excel pivot tables]]></wp:comment_author>
<wp:comment_author_email>grazynapride@googlemail.com</wp:comment_author_email>
<wp:comment_author_url>http://www.oodleedoo.com/epopado/link/300</wp:comment_author_url>
<wp:comment_author_IP>46.37.185.175</wp:comment_author_IP>
<wp:comment_date>2013-04-14 18:58:39</wp:comment_date>
<wp:comment_date_gmt>2013-04-14 18:58:39</wp:comment_date_gmt>
<wp:comment_content><![CDATA[My coder is trying to convince me to move to .net from
PHP. I have always disliked the idea because of the
costs. But he's tryiong none the less. I've been using
Movable-type on numerous websites for about a year and am concerned about switching to another platform.
I have heard great things about blogengine.
net. Is there a way I can import all my wordpress content into it?
Any kind of help would be really appreciated!]]></wp:comment_content>
<wp:comment_approved>0</wp:comment_approved>
<wp:comment_type></wp:comment_type>
<wp:comment_parent>0</wp:comment_parent>
<wp:comment_user_id>0</wp:comment_user_id>
<wp:commentmeta>
<wp:meta_key>akismet_result</wp:meta_key>
<wp:meta_value><![CDATA[false]]></wp:meta_value>
</wp:commentmeta>
<wp:commentmeta>
<wp:meta_key>akismet_history</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:4:"time";d:1365965919.704181;s:7:"message";s:28:"Akismet cleared this comment";s:5:"event";s:9:"check-ham";s:4:"user";s:0:"";}]]></wp:meta_value>
</wp:commentmeta>
</wp:comment>
</item>
<item>
<title>Citation & Literature Management</title>
<link>https://elliotthauser.com/citation-literature-management/</link>
<pubDate>Tue, 08 Feb 2011 13:18:07 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=147</guid>
<description></description>
<content:encoded><![CDATA[**Update: Mendeley is now the center of my scholarly workflow. In about 8 months of using it, I've accumulated 1500 scholarly papers from school, the lab, and my personal research, using about a gigbyte of cloud storage. How else could I have managed?
<a href="http://www.mendeley.com/profiles/elliott-hauser/"><img src="http://www.mendeley.com/embed/icon/1/blue/big" alt="Elliott Hauser's citations" border="0" /></a>
It offers syncing with a web account (500MB free), so my citations AND pdfs are always nearby. It allows group joining/sharing of PDFs (though the group has to be closes/restricted access, to avoid copyright violations, I suppose). It's got an excellent full-screen PDF reader and annotator:
<p style="text-align: center;"><a href="http://elliott.web.unc.edu/files/2010/11/Screen-shot-2011-01-18-at-9.05.31-AM.png"><img class="aligncenter size-large wp-image-367" title="Screen shot 2011-01-18 at 9.05.31 AM" src="http://elliott.web.unc.edu/files/2010/11/Screen-shot-2011-01-18-at-9.05.31-AM-1024x640.png" alt="" width="616" height="384" /></a></p>
There's even an iPhone app that lets you read or send citations and papers from your phone.
I really dig it. I'm using it manage all of my class readings (extra love to professors who provide links to PDFs), take notes, and collect interesting citations. Along with [intlink id="340" type="post"]OmniFocus[/intlink], it's an indispensable part of me getting things done.
Highly recommended. It's free-as-in-beer, which means you get some in the hopes that you buy more. I think it's definitely worth it. I'll likely start paying for web space once/if my 500MB gets filled.
<em>Ed.: I started paying for extra space, then got mondo space for free when I became UNC's <a href="http://www.mendeley.com/advisors/">Mendeley Advisor</a> in May 2011. But I'd still be paying the $5/month even it it wasn't free. It's that awesome.</em>
____________
**[Older] Update: I got started on <strong>Mendeley</strong>. Am setting it up now.
[caption id="attachment_261" align="aligncenter" width="567" caption="Mendeley does support Zotero and CiteULike live-updating!"]<a href="http://elliott.web.unc.edu/files/2010/10/Screen-shot-2010-11-18-at-1.24.10-PM.png"><img class="size-full wp-image-261" title="Screen shot 2010-11-18 at 1.24.10 PM" src="http://elliott.web.unc.edu/files/2010/10/Screen-shot-2010-11-18-at-1.24.10-PM.png" alt="" width="567" height="400" /></a>[/caption]
I also have set up Zotero, but don't really like it because it's stuck in Firefox. I use Safari most of the time because Firefox is so dern slow.
[caption id="attachment_265" align="alignright" width="304" caption="Mendeley's link-based importer in my QuickBar in Safari"]<a href="http://elliott.web.unc.edu/files/2010/11/Screen-shot-2010-11-18-at-1.38.21-PM.png"><img class="size-full wp-image-265" title="Screen shot 2010-11-18 at 1.38.21 PM" src="http://elliott.web.unc.edu/files/2010/11/Screen-shot-2010-11-18-at-1.38.21-PM.png" alt="" width="304" height="89" /></a>[/caption]
Even if I don't ever use Zotero myself, this integration means that I can join Zotero-based groups. That was a big concern for me: making sure the system I chose could play well with others. I'm at a grand total of 3 sources right now.
So far I'm impressed with Mendeley's link-based import (even though it utilizes pop-ups).
As I put Mendeley through its paces, I'll pay particular attention to:
<ul>
<li>Adding web-based sources</li>
<li>Adding sources directly from the Library's page</li>
<li>Annotating and noting on sources (e.g. pp. 112-123, or 'as contra Foucault')</li>
<li>Searching through online groups and publically available bibliographies</li>
<li>Searching through others' annotations</li>
</ul>
<strong>Heurist</strong>
I learned of <a href="http://heuristscholar.org">Heurist Scholar</a> during the <a href="http://virtualcitiesdigitalhistories.web.unc.edu/">Virtual Cities Digital Histories Symposium</a>. Haven't tried it.
_________________________________________
<em>The below written before I had chosen a system to try:</em>
When I was an Undergrad at Duke they provided <a href="http://www.endnote.com/">Endnote</a> (it was v4 back then if I recall) as a citation manager. The newer versions of Microsoft Word have had citation support through the powerful, underutilized, and clunky document field functionality (the same features that will give you a Table of Contents or even a linked index).
<a href="http://www.lib.unc.edu/instruct/refworks/whatis.html">RefWorks</a> is UNC's offering to its students and faculty. It's a web-based citation tool and, like all niche tools, has come core functionalities that make it worth considering and some drawbacks that users love to hate.
<a href="http://www.zotero.org/">Zotero</a> is the free open source offering. I'm a big fan of free open source, so I really want Zotero to rock. And it looks like it's come a long way and does rock. See niche software comment above, though. It's first on the list to test because if it's good enough I'm done looking. I'll not be at UNC forever, and I don't want to have to pay for access to my citations if I am using RefWorks.
<a href="http://www.citeulike.org/">CiteUlike</a> is another contender. Recommended by University of Chicago's Mark Olsen.
<a href="http://www.mendeley.com">Mendeley</a> is another contender, with both a web and an application-based client. First mentioned to me by <a href="http://jasonpriem.com/">Jason Priem.</a>
I'm currently selecting from these alternatives because I desperately need to manage my lit. Stay tuned for thoughts and reflections.
Aside: George Mason's <a href="http://chnm.gmu.edu/">Center for History and New Media</a> is the impetus behind Zotero. As this software becomes more and more useful in the production of scholarly work, it's interesting to factor a project like Zotero into the mix. The scholar who provides serious and ongoing help to the production of Zotero may benefit his field- and all of academia- in a way that's hard to measure. Ultimately, unless his institution supports this contribution, his open-source contributions will be deleterious to his tenure chances. I suppose the non-tenure track staff/associate research prof plug belongs here, as well as a big up to tenured profs who spend time & energy on open source.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>147</wp:post_id>
<wp:post_date>2011-02-08 13:18:07</wp:post_date>
<wp:post_date_gmt>2011-02-08 13:18:07</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>citation-literature-management</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Databases</title>
<link>https://elliotthauser.com/databases/</link>
<pubDate>Tue, 29 Nov 2011 12:01:54 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=257</guid>
<description></description>
<content:encoded><![CDATA[<h2><strong>Database Management Software</strong></h2>
<p style="padding-left: 30px;"><strong>SQLite</strong></p>
<a href="http://www.sqlite.org/">SQLite</a> is a simple, lightweight, cross-platform relational database sponsored by, amongst others, <a href="http://www.bloomberg.com/">Bloomberg</a> and <a href="http://www.oracle.com">Oracle</a>.
<p style="padding-left: 30px;"><strong>Access</strong></p>
Believe it or not, I learned Access back in 7th grade. I just remembered that. Nothing I learned really stuck with me because I didn't understand relational databases at the time. See below for more on that. Like most Microsoft products, Access is very powerful and widely misunderstood and underutilized.
<p style="padding-left: 30px;"><strong>Filemaker Pro</strong></p>
Filemaker Pro was bought by Apple at some point. The suite of products includes Bento, a template-centered system for personal information management to Filemaker Pro Server, a multi-user environment.
<p style="padding-left: 30px;"><strong>Oracle</strong></p>
Real men (or hapless students) use the command-line based SQL*Plus. SQL Developer is the graphical interface. These products are database<em> management systems</em>. They both manage Oracle's relational database, called Oracle v11.
<h2>Databases Proper</h2>
Check out my <a href="http://elliott.web.unc.edu/reading/">Reading list</a> for a sense of my perspectives on databases. If you find any inaccuracies or imprecisions in the below, <a href="mailto:eah13@email.unc.edu">let me know</a>.
I'm very interested in different types of databases and their implications for information, knowledge, and scholarly practice. In contrast to the <em>management software</em> discussed above, the below focuses on the underlying structural options for storing and organizing data.
<strong>Relational Databases</strong>
Relational Databases run your life: they contain your eBay account, your Hospital Records, your Drivers License info, etc, etc, etc. These things keep track of your membership in things, your account values, store inventories, etc. They are excellent for 'complete' systems, where the user can define ahead of time what kinds of data will go into the system and, crucially, is <strong>certain</strong> of the content. Big, subtle problems come along, though, when RDBs are misunderstood or stretched beyond their capabilities (or, as I'm investigating, when indeterminacy or functional indeterminacy enters the picture). Much like statistics, this system is only a grammar that relates elements in predefined ways. I'm working on a formal evaluation of the capabilities/pitfalls of RDBs.
There are many ways to use this one basic format Access and FileMaker both support the Relational Model (developed by <a href="http://en.wikipedia.org/wiki/Edgar_F._Codd">E.F. Codd</a>), as does database giant <a href="http://www.oracle.com/">Oracle</a>. <a href="http://en.wikipedia.org/wiki/SQL">SQL</a> is supposed to be a standard interface protocol (it's not really a language) to the relational model.
Relational Databases break related data into tiny bits so that they can be more efficiently coordinated. How do you know where to make a break? Well, there's a whole science to database design (and the dreaded <a href="http://en.wikipedia.org/wiki/Normal_forms">Normal Forms</a>), but essentially you identify fault lines within the data for aspects that vary independently of each other. For instance, 'Author' varies separately from 'Title' in a book (e.g. one Author writes many books, or many people write a text called 'Biology'). But within 'Author', we can specify 'First' and 'Last' names. We could specifiy 'First letter,' 'Second letter', etc of each name. But if, in our case, these series of letters always appear together, we know we've gotten granular enough. Knowing when to stop splitting up your data is the art of database design. There's also a science that can tell you when splitting your data up (e.g. into individual letters) won't be very efficient. That doesn't mean it's not desirable, though: I believe that genetics databases split each nucleotide out and use references to the nucleotide in allele descriptions rather than storing 'ACCG' etc. Ok time to zoom out again.
Many people use databases and they can get very complex. So far I haven't found many people with the technical skills to manipulate them and even fewer who can give a good conceptual overview. Hopefully the above is serviceable. Please do shoot me an email if I've gotten it wrong.
<strong>Data Warehouses ('Atomic Data Stores')</strong>
Large organizations (particularly in Healthcare and Finance) use Data Warehouses to analyze massive amounts of static data. The entire industry of 'Business Intelligence' is pretty much predicated upon their existence. They are a type of Relational Database utilizing a special data model called a Star Schema (or, when it's more complex, a Snowflake Schema). Basically, the schema collapses the standard relational model down into Facts (the 'atom' of atomic) and dimensions. Roughly, the Facts correspond to 'measurements' you've made and Dimensions are aspects you want to analyze. It's all a design question, though.
The difference between a data warehouse and a regular relational database is that the latter is operational: it's updated on the fly. Warehouses are for storage and analysis only. Their schemata (or, for mere English speakers, 'schemas') are optimized for retrieval and comparison. If you start trying to update the 'facts' you'll have to go through all of them to make sure you don't introduce any irregularities.
<strong>Document-Oriented Databases</strong>
(via Lew Hassel)
Above we talked about the field 'Author' and how it might be reasonably broken up into 'First' and 'Last' names. The details of this are part of a database's schema. Think of a schema as a blueprint, or plumbing pipes, or electrical wiring. And just like those systems, if you didn't plan ahead for certain functionality, chances are trying to add it will break the model. So to break the model above, all we have to do is try to add a 'Co-Author'.
Imagine trying to add a sink where there wasn't any plumbing. That's realizing that what you're trying to do wasn't anticipated in the design. It's frustrating.
Document-oriented databases try to circumvent all this by being build around 'documents' instead of into a rigid schema. Think of them like a modular house that you can plug together like legos: you will still get horrible results if you don't plan to have things meet up, but the pieces can be more autonomous and so it's easier to add on as you go.
Document oriented databases allow the functionality we love in Apps like GoogleDocs.
An interesting feature here is that 'documents' are really just a grouping of fields. There are no specified relationships between documents or fields (i.e. no foreign keys), so the relationship between the fields is latent and dependent upon the capabilities of the field's data format. For instance if I want to know if a 'document' (say, this blog post) was created by the same author as the rest of the blog posts here, I'll just search all the posts' 'Author' field and see if they match up. This is a consequence of the document-oriented databases' 'flatness'- their lack of rigid relations.
The document orientation ('persuasion,' if you will..) is great for semi-structured content like blog posts. It would be horrible at tracking your bank account balances.
<strong>Object Oriented Databases</strong>
I don't understand object oriented databases very well. More when I do.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>257</wp:post_id>
<wp:post_date>2011-11-29 12:01:54</wp:post_date>
<wp:post_date_gmt>2011-11-29 12:01:54</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>databases</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Linux</title>
<link>https://elliotthauser.com/linux/</link>
<pubDate>Fri, 02 Dec 2011 19:00:41 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=294</guid>
<description></description>
<content:encoded><![CDATA[There's a big difference between knowing no Linux and knowing a little Linux. I highly recommend getting to a little Linux. It's so easy!
<strong>Try Before You Buy</strong>
...Well, the Linux is free so you'll never have to buy it. But the best way to figure out what it is and play around is using VirtualBox. <strong>You can load Linux within your current operating system. </strong>Killer. Oracle spearheads the free/opensource project, so you know it's got some firepower behind it. One day I'll post a tutorial on setting up VB.
[caption id="attachment_295" align="aligncenter" width="300" caption="My VirtualBox Machines"]<a href="http://elliott.web.unc.edu/files/2010/12/Screen-shot-2010-12-02-at-1.37.57-PM.png"><img class="size-medium wp-image-295" title="Screen shot 2010-12-02 at 1.37.57 PM" src="http://elliott.web.unc.edu/files/2010/12/Screen-shot-2010-12-02-at-1.37.57-PM-300x244.png" alt="" width="300" height="244" /></a>[/caption]
After you load it you'll be able to create new virtual machines. Simply download the .iso for your preferred distribution (see below) and mount it as a virtual CDrom.
<h2>Elliott's Guide to Linux Distributions</h2>
<strong>Start Here: Ubuntu</strong>
Ubuntu is quickly becoming the standard for non-server, non-expert Linux. That said, there is perhaps the largest community of experts working to tweak and improve it. It's also backed by a company- Canonical Ltd- which, despite the philosophical reservations of some idealists, makes the end product higher quality in my opinion. You can even buy hardware pre-installed with Ubuntu from system76.com. Pretty sweet.
Ubuntu is focused on ease-of use, and it delivers. It's also customizable and powerful. A great blend, ready for almost anything you'd like to throw at it.
<strong>Research Computing: the RedHat Clan</strong>
Red Hat is another corporation that backs/spearheads open source projects. RedHat, Fedora, CentOS, and even <a href="http://tarheellinux.unc.edu/wiki/index.php/TarHeel_Linux">TarHeel Linux</a> all owe some aspect of their existence to Red Hat the company. <a href="http://www.redhat.com/rhel/">RedHat Enterprise Linux</a> is their flagship product, and is the backbone for a significant chunk of the Internet we know and love. <a href="http://fedoraproject.org/">Fedora</a> is the community-developed version of their software where they test out new features. It's re-versioned <a href="http://fedoraproject.org/wiki/Time_based_release_schedule">every 6 months or so</a>, whether it needs it or not, so it's great for cutting-edge, not so great for your standard user (that said, it's much much more stable than even a few years ago). <a href="http://www.centos.org/">CentOS </a>is RedHat Linux with the logos taken out. <a href="http://tarheellinux.unc.edu">TarHeel Linux</a> is UNC's version of RedHat Linux supported for research computing. Check out <a href="http://help.unc.edu/6020">Emerald</a>, UNC's research cluster, for info on how to submit massive MatLab or Mathematica jobs to 700 processors.
<strong>The Fun world of RAM only: </strong><strong><a href="http://puppylinux.org">Puppy Linux</a></strong>
Puppy will fit on a small thumb drive. It's blazing fast and tiny. More soon.
<strong>Style, Substance, Slimness: </strong><strong><a href="http://crunchbanglinux.org/">#!CrunchBang Linux</a></strong>
I've just started playing with this distro virtually. It's very slick. More soon.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>294</wp:post_id>
<wp:post_date>2011-12-02 19:00:41</wp:post_date>
<wp:post_date_gmt>2011-12-02 19:00:41</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>linux</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Productivity</title>
<link>https://elliotthauser.com/productivity/</link>
<pubDate>Fri, 18 Feb 2011 09:07:05 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=340</guid>
<description></description>
<content:encoded><![CDATA[Growing up, I was the kid who never took notes or did homework assignments. I would read alot, but not always the things that were assigned for class... The upshot of all this is that I'm uncommonly knowledgeable about random things and have stunted organizational skills.
I do homework now (mostly reading), and man, it takes a lot of time and planning! I've had to impose order on my mind and on my time to get it all done. I started trying to think in a structured way about tasks, priorities, and my capacity to get things done.
<h2>There's an App for that?</h2>
A few months ago I started looking into a to-do list program. There are millions of them. Some are a one basic list, others have nesting and categorization, and some offer syncing across all your devices. The good ones seem to be expensive (though there are some free ones to try too). Dig through <a href="http://wiki.43folders.com/index.php/Category:Todo_Software">this list</a> if you'd like to see some offerings.
So, not wanting a new system before I could prove to myself that I could use a to-do list at all, I decided to use what I already had. Last semester (Fall 2010) I started using the to-do list capabilities of Calendar for Mac, synced using MobileMe. Basic, sturdy, but with an egregious lack of support on the iPhone. The interface was clearly not tweaked, either. Apple seriously fell short on this. Even the recent major calendar update had no changes to the to-do list. Bummer.
But using a to-do list was great! I could put all my readings, etc in there and, though the list itself got HUGE, Calendar let me set it to only display those items due within the timeframe I was looking at (usually a week at a time). Which was great because I also started using the Mac calendar system heavily (again synced with MobileMe), and I could tick off items while planning my week.
Somewhere along the way I started to hear about the <a href="http://www.davidco.com/what_is_gtd.php">Getting Things Done</a> system. This isn't a computer program but a system described in one of those self-help type books on productivity. I'm extremely suspicious of such things. But I'm always willing to give a suspicious listen. The basics of the system are to state your goals, align your projects with your goals, break your projects into actionable items, and do your items within their necessary contexts. I started planning in the GTD style, and quickly found that a simple to-do list won't, so to speak, do. May sound confusing at first, but, as I hope to show with <a href="http://www.omnigroup.com/products/omnifocus/">OmniFocus</a>, the software based on GTD I've decided to use, it's pretty powerful.
I'm still not buying the book, though...
<p style="text-align: left;"><a href="http://www.omnigroup.com/products/omnifocus/"><img class="aligncenter size-full wp-image-342" title="Screen shot 2011-01-14 at 5.25.47 PM" src="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-5.25.47-PM.png" alt="" width="454" height="386" /></a>OmniFocus offers a 14 day free trial period. The first time I tried OmniFocus (spring 2010) I didn't quite get it. Now I know that, before trying a heavy-duty productivity program,</p>
<ol>
<li>you should first start living with a perpetual to-do list and get used to that first and</li>
<li>you have to have a LOT of things to do before nested to-do lists, projects, and contexts really pay off.</li>
</ol>
So my experience with the Mac to-do list wasn't all for nought and my crazy grad school schedule ends up being a plus. I'd suggest picking a free to-do list solution, living with it for a week or two, and then doing the OmniFocus 14-day trial. Make sure it's a busy time, too- otherwise you won't see the benefits.
<em>Aside: There's no free trial on the iPhone version of Omnifocus, but, if you find yourself in the moderately-in-need of a to-do program category, this might be the better solution. It's got most of the major functionality and if most of your to-do aren't connected to links to pdfs (i.e. grad school reading homework), you may not miss the stuff the desktop app has. Also, the desktop software is a whopping $80 ($50 for students), while the iPhone app is only $20. For those of you hesitant to buy software, seriously consider this. It's a great app under active development.</em>
<strong>The Library</strong>
[caption id="attachment_343" align="aligncenter" width="614" caption="This is a focus on school tasks. Notice that in the 'Projects' view in the back, only school-related projects are there. In the 'Due Soon' window on top, I don't see all the to-dos I have for around the house or applying for summer internships."]<a href="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-10.19.14-AM.png"><img class="size-large wp-image-343" title="Screen shot 2011-01-14 at 10.19.14 AM" src="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-10.19.14-AM-1024x658.png" alt="" width="614" height="395" /></a></dt> </dl> <dl id="attachment_343" class="wp-caption aligncenter" style="width: 624px;"> <dd class="wp-caption-dd">Screenshot of my Projects Library. This view is where I do my planning, listing out all the actionable things I can think of for each project. There's even a place, the Inbox, to dump to-dos and assign them to projects later on.</dd> </dl></div>
The Library is where you plan. Think of all of your goals, and make sure you've got a project that corresponds to each. So, if you want to keep in touch with friends, make the Keep in Touch with Friends Project. Then start listing the actionable items (buy stationary, set up facebook account, write a letter to Johnny, friend Martha on facebook) within that project. You can make items recurring (though the recurrence support is a little bit basic...), to support Write Martha a Letter popping up every 2 months, call Johnny every week, etc.
If other Projects are related to each other, such as your classes in grad school, just group them in a folder. You can even nest projects within other projects.
<strong><em>Focusing</em></strong>
A great thing about organizing things this way is that you can highlight a project or folder and Focus (Ctrl-Cmd- F). This will hide everything not connected with the project(s) or folder(s) you selected. This means that you can forget about Martha long enough to get your schoolwork done. It also lets you make a to-do list of fun stuff (yes, fun stuff) that you can focus on during the weekends. Forgetting about other stuff is crucial to getting the thing at hand done, and OmniFocus supports it.
<p style="text-align: left;"></p>
<div class="mceTemp mceIEcenter"><dl id="attachment_434" class="wp-caption aligncenter" style="width: 584px;"> <dt class="wp-caption-dt"><a href="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-02-18-at-9.30.01-AM.png"><img class="size-large wp-image-434 " title="Screen shot 2011-02-18 at 9.30.01 AM" src="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-02-18-at-9.30.01-AM-1024x624.png" alt="" width="574" height="350" /></a>[/caption]
The screenshot above includes an item, 'Revise Personal Productivity Post'. ...Check!
<p style="text-align: left;">Notice that I have lots of folders within 'School' and they're not all relevant all the time. So, for instance, when I'm doing my homework, I'll focus only on the 'Class' folder to screen out stuff like the W-9 I have to fill out, etc.</p>
<strong>Contexts</strong>
[caption id="attachment_345" align="aligncenter" width="572" caption="Omnifocus has this great little menu bar that leads you right to your outstanding tasks"]<a href="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-5.59.29-PM.png"><img class="size-full wp-image-345" title="Screen shot 2011-01-14 at 5.59.29 PM" src="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-5.59.29-PM.png" alt="" width="572" height="422" /></a></dt> </dl> <dl id="attachment_345" class="wp-caption aligncenter" style="width: 582px;"> <dd class="wp-caption-dd">Contexts help you tackle tasks that require similar resources - going to the Library, for instance - at the same time, regardless of which project they're for.</dd> </dl></div>
Contexts are a way of looking at tasks through the lens of what resources you have. For instance, say you're on your Mac and want to get some things done. The Mac context allows you to filter out tasks that requre your girlfriend or being on campus, so you can concentrate on what you can get done now. I really like this view for things like getting library books, filling out paperwork in x office, and going to the grocery store.
Doing what you can now is a great way to be super productive. Need to grab a library book? Add the task, select the Library context, and put it on your calendar during the week. Any other books you add to the list in the meantime will be waiting for you in the Library context so you can make sure to get them all done when you're there. Same thing with groceries, filling out forms in your department's office, and responding to emails. You can even make a person a context, so you can remember to do specific things the next time you see your significant other or your tax guy.
<strong>Interface</strong>
Like <a href="http://www.omnigroup.com/products/omnigraffle/">OmniGraffle</a>, another excellent product from the <a href="http://www.omnigroup.com/">Omni</a>, the interface is excellent. I have some small gripes with it here and there, but in most cases there is a way to do everything I initially complain about that makes better sense than how I would've done it. That's the classic tradeoff in interfaces- intutive may not always equal efficient.
<div class="mceTemp"><dl id="attachment_341" class="wp-caption alignright" style="width: 310px;"> <dt class="wp-caption-dt"><a href="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-10.24.41-AM.png"><img class="size-medium wp-image-341 " title="Screen shot 2011-01-14 at 10.24.41 AM" src="http://elliott.web.unc.edu/files/2011/01/Screen-shot-2011-01-14-at-10.24.41-AM-300x224.png" alt="" width="300" height="224" /></a>[/caption]
That said, in other cases, like the menu bar to the right, it works exactly the way you'd expect. You can tell it to display overdue (red) and/or due-soon (orange) tasks by context (as shown). The icon will always show you the total. (I was busy when I took the screenshot to the right...right now, the icon only says 2, one of which is writing this post...).
As a professional ap, pretty much everything is customizable. So, above, where I told you that Red means overdue...well, you can pick any color you want. The fonts for various sections of the ap are all separately formatable in the preferences. Keep that in mind and take a second look at those screenshots.
<strong>Upcoming: iPhone app review</strong>
OmniFocus supports syncing across multiple macs pretty well, but it also syncs with its spiffy iPhone app. I'll review that app, with screenshots.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>340</wp:post_id>
<wp:post_date>2011-02-18 09:07:05</wp:post_date>
<wp:post_date_gmt>2011-02-18 09:07:05</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>productivity</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Health Records</title>
<link>https://elliotthauser.com/health-records/</link>
<pubDate>Mon, 31 Jan 2011 15:05:34 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=389</guid>
<description></description>
<content:encoded><![CDATA[This is a stub of health records and health informatics standards and resources. As a <a href="http://chip.unc.edu">Carolina Health Informatics Program</a> student, I'm studying all of these.
The department of Medical Informatics at Columbia University maintains the <a href="http://med.dmi.columbia.edu/">Medical Entities Dictionary</a>, a concept-oriented repository with links to many of the vocabularies and codes below.
The Veteran's Association maintains an open source health records/clinical support system called <a href="http://www.virec.research.va.gov/DataSourcesName/VISTA/VISTA.htm">VISTA</a>
<a href="http://www.hl7.org/">HL7</a> is a pioneering data interchange format for health data. It focuses on interpretability between different formats. This allows specialist medical fields to choose best-of-breed equipment and information systems without compromising the ability to communicate with other aspects of the health system.
<a href="http://loinc.org/">LOINC</a> is a controlled vocabulary for clinical and laboratory results. This allows standardization of observations like "patient had a temperature of 105" "Strep positive" etc.
<a href="http://www.ama-assn.org/ama/pub/physician-resources/solutions-managing-your-practice/coding-billing-insurance/cpt.shtml">CPT </a>is an established standard of medical procedures maintained by the American Medical Association. For instance, '26010' is 'Drainage of finger abscess; simple'
<a href="http://en.wikipedia.org/wiki/List_of_ICD-9_codes">ICD-9</a>, ICD-9-CM, and ICD10 are standardized, hierarchical controlled vocabularies that have their origin in linking billing with the patient's chief complaint. Like all controlled vocabularies, they have their problems. Also, since they're used for billing, they're not perfectly representative of diagnoses, etc. They demonstrate the huge potential of standardization, though, and are the basis of many secondary analyses of clinical data.
<a href="http://www.ihtsdo.org/snomed-ct/">SNOMED</a> is another medical controlled vocabulary that focuses on coverage scope and multilingual support.
<a href="http://www.nlm.nih.gov/research/umls/">UMLS</a> is maintained by the National Library of Medicine. It is the most comprehensive system (6.4 million concepts from over 100 source vocabularies) and subsumes and interrelates many of the systems above. It includes a <a href="http://www.nlm.nih.gov/research/umls/knowledge_sources/metathesaurus/index.html">Metathesaurus</a>, a <a href="http://semanticnetwork.nlm.nih.gov/">Semantic network</a>, the <a href="http://lexsrv3.nlm.nih.gov/Specialist/Home/index.html">SPECIALIST Lexicon</a>, and a <a href="http://www.nlm.nih.gov/research/umls/implementation_resources/metamorphosys/index.html">Metamorphosis configuration tool</a>. There have been concerns with this service's efficiency and precision, but it's pretty much the only attempt to unify so many standards.
Check out the <a href="http://www.bioontology.org/">National Center for Biomedical Ontology</a> for more resources and calls for proposals.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>389</wp:post_id>
<wp:post_date>2011-01-31 15:05:34</wp:post_date>
<wp:post_date_gmt>2011-01-31 15:05:34</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>health-records</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_old_slug</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Data Curation</title>
<link>https://elliotthauser.com/data-curation/</link>
<pubDate>Thu, 17 Nov 2011 14:22:45 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=470</guid>
<description></description>
<content:encoded><![CDATA[In early November I was asked to talk about Data Curation for Art Markets research by the Duke Art, Law and Markets Initiative (DALMI) conference. For a small, interdisciplinary, international and growing field like Art Markets, data curation and sharing has the potential to be a powerful catalyst for growth. Currently, sourcing data from archives or previous publications can be a huge part of the work- before analysis begins. Economists may not have the historical background to collect or evaluate appropriate data, while Art Historians may not have the quantitative toolsets they need for effective analysis. Collaboration has been the solution for the field, but shared, vetted, appropriately described data is the way forward.
See all of my [public] Prezis <a href="https://prezi.com/user/elliott">here</a>.
Prezi 1: Data Curation in Art Markets Research
<object id="prezi_91d4a78d8cc6c95e619697c1d9ca714fab3d324e" width="550" height="400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="prezi_id=91d4a78d8cc6c95e619697c1d9ca714fab3d324e&lock_to_path=1&color=ffffff&autoplay=no&autohide_ctrls=0" /><param name="src" value="http://prezi.com/bin/preziloader.swf" /><embed id="prezi_91d4a78d8cc6c95e619697c1d9ca714fab3d324e" width="550" height="400" type="application/x-shockwave-flash" src="http://prezi.com/bin/preziloader.swf" allowfullscreen="true" allowscriptaccess="always" flashvars="prezi_id=91d4a78d8cc6c95e619697c1d9ca714fab3d324e&lock_to_path=1&color=ffffff&autoplay=no&autohide_ctrls=0" /></object>
Prezi 2: DALMI Next Steps
<object id="prezi_c346b52e10b09d53b3ad1181cd42e4075462e6b9" width="550" height="400" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="prezi_id=c346b52e10b09d53b3ad1181cd42e4075462e6b9&lock_to_path=1&color=ffffff&autoplay=no&autohide_ctrls=0" /><param name="src" value="http://prezi.com/bin/preziloader.swf" /><embed id="prezi_c346b52e10b09d53b3ad1181cd42e4075462e6b9" width="550" height="400" type="application/x-shockwave-flash" src="http://prezi.com/bin/preziloader.swf" allowfullscreen="true" allowscriptaccess="always" flashvars="prezi_id=c346b52e10b09d53b3ad1181cd42e4075462e6b9&lock_to_path=1&color=ffffff&autoplay=no&autohide_ctrls=0" /></object>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>470</wp:post_id>
<wp:post_date>2011-11-17 14:22:45</wp:post_date>
<wp:post_date_gmt>2011-11-17 14:22:45</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>data-curation</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kinect Hacking!</title>
<link>https://elliotthauser.com/kinect-hacking/</link>
<pubDate>Thu, 05 Jan 2012 19:11:03 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=484</guid>
<description></description>
<content:encoded><![CDATA[My mother in law gave us an XBox 360 and Kinect for Christmas. My <a href="http://www.amazon.com/Microsoft-Xbox-360-Kinect-Power-Supply/dp/B004IXRXGY/ref=sr_1_2?ie=UTF8&qid=1325790749&sr=8-2">adapter</a> just came in the mail from Amazon (using <a href="http://www.amazon.com/b/?ie=UTF8&node=668781011&tag=googhydr-20&hvadid=13832376099&ref=pd_sl_2f62txde0r_b">free 2 day shipping</a>, of course) and...well, I'm quite excited to start playing.
plenty of <a href="http://kinect.dashhacks.com/">resources</a> out there. I'll let you know what I end up using
<p style="text-align: center;"><a href="http://elliott.web.unc.edu/files/2012/01/Screen-Shot-2012-01-05-at-2.04.02-PM.png"><img class="aligncenter size-large wp-image-485" title="Screen Shot 2012-01-05 at 2.04.02 PM" src="http://elliott.web.unc.edu/files/2012/01/Screen-Shot-2012-01-05-at-2.04.02-PM-1024x420.png" alt="" width="819" height="336" /></a></p>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>484</wp:post_id>
<wp:post_date>2012-01-05 19:11:03</wp:post_date>
<wp:post_date_gmt>2012-01-05 19:11:03</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>kinect-hacking</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>16,000 Words</title>
<link>https://elliotthauser.com/16000-words/</link>
<pubDate>Mon, 02 Apr 2012 00:41:34 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=519</guid>
<description></description>
<content:encoded><![CDATA[In one image:
<p style="text-align: center;"><a href="http://elliott.web.unc.edu/files/2012/04/Exper-IR-Wordle.jpg"><img class="aligncenter wp-image-520" title="Exper IR Wordle" src="http://elliott.web.unc.edu/files/2012/04/Exper-IR-Wordle-1024x791.jpg" alt="" width="717" height="554" /></a></p>
<p style="text-align: left;">...Masters is turned in!</p>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>519</wp:post_id>
<wp:post_date>2012-04-02 00:41:34</wp:post_date>
<wp:post_date_gmt>2012-04-02 00:41:34</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>16000-words</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Phylogenetics</title>
<link>https://elliotthauser.com/phylogenetics/</link>
<pubDate>Wed, 13 Jun 2012 19:13:22 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=530</guid>
<description></description>
<content:encoded><![CDATA[I'm spending the summer of 2012 working on a <a href="http://en.wikipedia.org/wiki/Phylogenetics">Phylogenetics</a> project with <a href="http://www.nescent.org/">NESCent</a>, supported by <a href="http://code.google.com/soc/">Google's Summer of Code</a> program.
I'm about 4 weeks in now and have really enjoyed things so far. For a real-time view into what I'm up to, check the project's <a href="http://bit.ly/ehmiapafolder">public Google Folder</a>, <a href="http://bit.ly/ehmiapawiki">wiki page</a>, and <a href="http://github.com/miapa/miapa-etl">github</a> project page.
For a view into something I'm working on this week, check out <a href="http://bit.ly/ehmiapav01">this recently added wiki page</a>!]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>530</wp:post_id>
<wp:post_date>2012-06-13 19:13:22</wp:post_date>
<wp:post_date_gmt>2012-06-13 19:13:22</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>phylogenetics</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Clojure</title>
<link>https://elliotthauser.com/clojure/</link>
<pubDate>Mon, 25 Jun 2012 21:51:36 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=533</guid>
<description></description>
<content:encoded><![CDATA[I'm learning Clojure. I'd like it to be my primary language.
I spent tons of time evaluating languages, and have compiled my notes into a stub of a curriculum I'd like to teach at UNC one semester. For now though, I thought it might be helpful to throw up a few links that I've found particularly helpful.
<h3>What is Clojure?</h3>
To varying degrees of resolution:
<ul>
<li>a programing language</li>
<li>a <a href="http://en.wikipedia.org/wiki/Lisp_(programming_language)">LISP</a> dialect</li>
<li>Clojure is a dynamic programming language that targets the Java Virtual Machine (<a href="http://github.com/richhickey/clojure-clr" rel="nofollow">and the CLR</a>, and <a href="http://github.com/clojure/clojurescript" rel="nofollow" target="_blank">JavaScript</a>). It is designed to be a general-purpose language, combining the approachability and interactive development of a scripting language with an efficient and robust infrastructure for multithreaded programming. Clojure is a compiled language - it compiles directly to JVM bytecode, yet remains completely dynamic. Every feature supported by Clojure is supported at runtime. Clojure provides easy access to the Java frameworks, with optional type hints and type inference, to ensure that calls to Java can avoid reflection. (from <a href="http://clojure.org/">Clojure.org</a>)</li>
</ul>
<div>The features of Clojure that caught my attention</div>
<div>
<ul>
<li>Edit code at runtime</li>
<li>Prototype blazing fast</li>
<li>Macros: programs that can make other programs at run- or compiletime</li>
<li>LISPy languages make sense to my brain</li>
<li><a href="http://himera.herokuapp.com/index.html">ClojureScript</a></li>
<li>Companies I admire like <a href="http://www.factual.com/">Factual</a> <a href="http://blog.factual.com/clojure-on-hadoop-a-new-hope">like it</a> and <a href="https://github.com/Factual/factual-clojure-driver/">are supportive</a></li>
<li>Big companies don't use it, but many startups do (each of these is a plus)</li>
<li>Runs in JVM</li>
</ul>
<div>What has been built with Clojure? Glad you asked</div>
<div>
<ul>
<li><a href="http://dev.clojure.org/display/community/Clojure+Success+Stories">Clojure success stories</a></li>
<li>Quora: <a href="http://www.quora.com/Clojure/Which-startups-are-using-Clojure">Startups</a> and <a href="http://www.quora.com/Whos-using-Clojure-in-production">Others</a> using Clojure</li>
</ul>
</div>
</div>
<h3>Trying out Clojure with no install</h3>
Trying out Clojure is super easy, thanks to the geniuses who wrote <a href="http://www.4clojure.com/">4Clojure.com</a>.
<ul>
<li>Open a <a href="http://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop">REPL</a> in one tab (<a href="http://tryclj.com/">tryclj.com</a> is a good one)</li>
<li>Open one of the <a href="http://www.4clojure.com/problems">Clojure Problems</a> in another tab</li>
<li>4Clojure problems are fill-in-the-blank code. The REPL will help you test pieces of code.</li>
<li>Submit - If you got a green light, congrats! Move on! If not, repeat from the top</li>
<li>(Optional) Create an account to track your progress and play Code Golf</li>
</ul>
<div>Note there is no compiling needed here. You are running a real Clojure REPL in the browser.</div>
<div></div>
<h3>Installing & Learning More</h3>
The Clojure koans are great for learning. I actually started them before 4Clojure, but I list them after because they require an install.
<ul>
<li><a href="https://github.com/functional-koans/clojure-koans">Get started</a></li>
<li>My setup, shown below, is two terminals, one with VimClojure editing a koan file, the other running the koan script. Edit and save (:w) in vim and the koan script will automatically move on to the next blank (or koan that you got wrong). It still seems magical to me that I'm editing code while a program is running.</li>
</ul>
<p style="text-align: center;"><a href="http://elliott.web.unc.edu/files/2012/06/Screen-Shot-2012-06-25-at-5.22.08-PM.jpg"><img class="aligncenter wp-image-535" title="Screen Shot 2012-06-25 at 5.22.08 PM" src="http://elliott.web.unc.edu/files/2012/06/Screen-Shot-2012-06-25-at-5.22.08-PM-1024x512.jpg" alt="" width="819" height="410" /></a>Note: Getting the cool highlighting and rainbow parens are described below at the VimClojure link.</p>
<h3>Vids</h3>
There are <a href="http://blip.tv/clojure">all sorts of great blip.tv videos</a> on Clojure related topics. (I recommend <a href="http://blip.tv/clojure/hammock-driven-development-4475586">this one</a> featuring Rich Hickey, the originator of Clojure. He's not talking about Clojure per se, but design/programming techniques 'from the hammock', using your 'background mind'. Watch the video to see what he means).
<h3>Getting Serious with Clojure</h3>
I'm just barely serious with clojure, so this is a stub.
<ul>
<li><a href="http://www.vim.org/scripts/script.php?script_id=2501">VimClojure</a> - I started out using pico, which served me well, but now mostly use vim for terminal editing. Set up rainbow parens in <a href="https://github.com/jpalardy/vim-slime">vimslime</a> as described <a href="http://writequit.org/blog/?p=386">here</a>.</li>
<li>Clojure <a href="http://eclipse.org">Eclipse</a> Plugin - Everyone's favorite IDE (ok, a lot of people's favorite) has a Clojure plugin, called CounterClockwise. Instructions for a nice setup are <a href="http://dev.clojure.org/display/doc/Getting+Started+with+Eclipse+and+Counterclockwise">here</a>.</li>
<li>Emacs - Emacs is too smart for me.</li>
</ul>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>533</wp:post_id>
<wp:post_date>2012-06-25 21:51:36</wp:post_date>
<wp:post_date_gmt>2012-06-25 21:51:36</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>clojure</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>#noemailonmyiphone</title>
<link>https://elliotthauser.com/noemailonmyiphone/</link>
<pubDate>Fri, 28 Sep 2012 16:34:55 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">https://elliotthauser.com/?p=549</guid>
<description></description>
<content:encoded><![CDATA[Inspired by <a href="http://blog.harjtaggar.com/time">this post</a> by Harj Taggar, I took email off of my iPhone in September 2012. After a week or two, it's really helped me stay focused while I'm away from the computer. That, combined with <a href="http://www.rescuetime.com/">Rescue Time</a> when I'm at my laptop, has helped me be more efficient with the hours I spend working. I'm interested in this both from an information science perspective (when every device can do everything, how do we make space for thought and focus?) and from a personal perspective (how do I achieve what I want to achieve and leave time for life?). I'll try to pay attention to both aspects.
Harj wrote his post after 6 months, so I'm going to give it plenty of time before I make any sweeping pronouncements. Stay tuned and I'll post my reflections here.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>549</wp:post_id>
<wp:post_date>2012-09-28 16:34:55</wp:post_date>
<wp:post_date_gmt>2012-09-28 16:34:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>noemailonmyiphone</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Raspberry Pi</title>
<link>https://elliotthauser.com/raspberry-pi/</link>
<pubDate>Sat, 16 Feb 2013 16:12:14 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">http://elliott.web.unc.edu/?p=555</guid>
<description></description>
<content:encoded><![CDATA[My wonderful wife Erin bought me a Raspberry Pi for my birthday in November 2012. It's changed the way I think about computers and coding education. I wrote a long form post about my latest ideas <a href="http://hastac.org/blogs/eah13/2012/12/02/code-and-computation-humans-syllabus-sketch">on HASTAC.org</a>. You can read more by checking out my <a href="http://bit.ly/elliottgplus">G+ feed</a>, and below are some selected posts from it.
I started <a href="http://comp-core.org">Comp-core.org</a>, the Computational Core Curriculum, to collect and collaborate on course materials (and code, via our github repos) for those of us who teach this material. It's small now I first got this idea from a panel I moderated in the Fall at UNC called Code in the Classroom. A little wrap-up of that event, which featured profs from Duke and UNC, is <a href="http://hastac.org/blogs/eah13/2012/10/05/code-classroom-wrapup">here</a>.
So check it out and <a href="mailto:eah13@email.unc.edu">shoot me an email</a> or join comp-core's open google group if you want to contribute!
Some G+ Posts I've written about the Pi:
<ul>
<li><a href="https://plus.google.com/101710108233003380197/posts/8fJpYykHB5k">The 30 mpg, 8 passenger computer.</a> Only $35 + $35,000. Or $35/day if you rent the car :)</li>
<li><a href="https://plus.google.com/101710108233003380197/posts/JhrZrrpHMFa">Getting VNC running</a> on Mac OSX or Linux to use your Pi with your existing computer (thanks to a <a href="http://interlockroc.org/2012/12/06/raspberry-pi-macgyver/">nice tutorial from Interloc Rochester</a>)</li>
<li><a href="https://plus.google.com/101710108233003380197/posts/YjNTphGSsEo">Legend of Zelda themed project</a> by Al Sweigart for learning about windowed interfaces and gameworld creating using Python and <a href="http://www.pygame.org/news.html">PyGame</a>.</li>
<li><a href="https://plus.google.com/101710108233003380197/posts/f1C1GN3hbpS">Getting Archlinux and Awesome WM</a> running on the pi for a mouse-free OS experience.</li>
</ul>
<div></div>
<div>VNC running into my Pi from my iMac:</div>
<p style="text-align: center;"><a href="http://elliott.web.unc.edu/files/2013/02/Screen-Shot-2013-02-16-at-10.10.34-AM.png"><img class="aligncenter wp-image-556" title="VNC into the Pi over ethernet." src="http://elliott.web.unc.edu/files/2013/02/Screen-Shot-2013-02-16-at-10.10.34-AM-1024x691.png" alt="" width="717" height="484" /></a></p>
<p style="text-align: left;">Finally, see also <a href="http://hastac.org/blogs/eah13/2013/02/16/how-i-use-hastac-case-study">this post on HASTAC</a>, which is a longer case study of how my VNC project was enabled by the modern Internet.</p>]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>555</wp:post_id>
<wp:post_date>2013-02-16 16:12:14</wp:post_date>
<wp:post_date_gmt>2013-02-16 16:12:14</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>raspberry-pi</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>post</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Posts]]></category>
<wp:postmeta>
<wp:meta_key>_edit_last</wp:meta_key>
<wp:meta_value><![CDATA[1024]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Coursefork</title>
<link>https://elliotthauser.com/coursefork/</link>
<pubDate>Mon, 15 Jul 2013 13:24:42 +0000</pubDate>
<dc:creator>eah13</dc:creator>
<guid isPermaLink="false">https://elliotthauser.com/?p=581</guid>
<description></description>