-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex7.html
More file actions
877 lines (811 loc) · 30.7 KB
/
index7.html
File metadata and controls
877 lines (811 loc) · 30.7 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
<!DOCTYPE html>
<html lang="en-us" prefix="og: http://ogp.me/ns#"
xmlns:og="http://ogp.me/ns#"
xmlns:article="http://ogp.me/ns/article#"
xmlns:blogPosting="http://ogp.me/ns/blogPosting#"
xmlns:fb="http://www.facebook.com/2008/fbml"
xml:lang="en-us">
<head>
<meta charset="utf-8" />
<title>Mandaris Moore</title>
<meta name="author" class="p-author h-card" content="Mandaris" />
<meta property="site_name" content="Mandaris Moore" />
<meta name="description" content="The Pelican website for Mandaris Moore." />
<base href="." />
<meta name="generator" content="Pelican" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#1b5a53" />
<link rel="stylesheet" type="text/css" href="./theme/css/main.css" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="apple-touch-icon-precomposed"
href="/apple-touch-icon-precomposed.png" />
<!-- Feed information -->
<link href="http://mandaris.github.io/feeds/atom.xml"
type="application/atom+xml"
rel="alternate" title="Mandaris Moore ALL Atom Feed" />
<!--- Other Social Media Tags (See README.md) --->
<!-- OpenGraph Info -->
<meta property="og:title" content="Mandaris Moore" />
<meta property="og:type" content="website" />
<meta property="og:description" content="The Pelican website for Mandaris Moore."/>
<meta property="og:url" content="." />
<meta property="og:locale" content="en-us" />
<meta property="og:image" content="./favicon.png" />
<meta property="og:image:alt" content="A person in a gear." />
<!-- IndieWeb sign-in -->
<link href="https://github.com/mandaris"
rel="me" class="u-url" />
<!-- Twitter Specific Info -->
<meta name="twitter:site" content="@mandaris" />
<meta name="twitter:creator" content="@mandaris" />
<meta name="twitter:card" content="summary_large_image" />
<link href="https://twitter.com/mandaris"
rel="me" class="u-url" />
</head>
<body itemscope itemtype="https://schema.org/Blog">
<meta itemprop="description" content="The Pelican website for Mandaris Moore." />
<header role="banner">
<h1 class="websitetitle"><a href=".">Mandaris Moore</a></h1>
<nav itemscope itemtype="https://schema.org/SiteNavigationElement"
class="navmenu" id="navmenu" >
<ul>
<li>
<a class="navitemlink" href="./archives.html">Archive</a>
</li>
<li>
<a class="navitemlink" href="./pages/about.html">About</a>
</li>
<li>
<a class="navitemlink" href="./pages/projects.html">Projects</a>
</li>
</ul>
</nav>
<hr />
</header>
<main class="articlelisting content">
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="Attempting to help «Mandaris Moore»"
href="2018/05/attempting-to-help.html"
itemprop="url">
Attempting to help
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p>My children were working on school reports today. I don't know what it is but neither one of them like to work with me on stuff like that. Maybe I'm too critical and don't give them the benefit of the doubt for writing at that age. </p>
<p>Too often, I destroy my own writing for even small things.</p>
<p>Either way, I'm going to do the best to highlight the good things about it and only make suggestions on how to improve when they ask. </p>
<p>After all, I won't be able to help them with this later on.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="Attempting to help «Mandaris Moore»"
href="2018/05/attempting-to-help.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/parenting.html">
<span itemprop="articleSection">parenting</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-05-07T20:06:18-07:00"
itemprop="dateCreated datePublished">
May 07, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/writing.html">
writing
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="A post for everyday in May «Mandaris Moore»"
href="2018/05/a-post-for-everyday-in-may.html"
itemprop="url">
A post for everyday in May
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p>I just noticed that I have a post here for almost every day thus far in May. I think I'm going to leverage that and try to have a post for every day going forward. Some days won't have anything, but will make them either before or after.</p>
<p>I'm hoping that this will help me get ready for <a href="https://nanowrimo.org/">NaNoWriMo</a> this year.</p>
<p><img alt="The logo for National Novel Writing Month." src="https://d3bhawflmd1fic.cloudfront.net/assets/crest-05e1a637392425b4d5225780797e5a76.png"></p>
<p>If not, at least, I'll have some kind of exercise to increase my communication skills.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="A post for everyday in May «Mandaris Moore»"
href="2018/05/a-post-for-everyday-in-may.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/blog.html">
<span itemprop="articleSection">blog</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-05-06T17:53:27-07:00"
itemprop="dateCreated datePublished">
May 06, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/goal.html">
goal
</a>
<a
class="tag"
rel="category tag"
href="./tag/writing.html">
writing
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="Spending some time playing D&D «Mandaris Moore»"
href="2018/05/spending-some-time-playing-dd.html"
itemprop="url">
Spending some time playing D&D
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p><img alt="Spending sometime with good friends." src="images/fun-with-dnd.jpeg"></p>
<p>I got to spend some time with my friends and play Dungeons and Dragons today. It felt good to spend some time with people who really matter to me. </p>
<p>We've been playing together for years and it was amazing to just get be in the same room and make the magic happen.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="Spending some time playing D&D «Mandaris Moore»"
href="2018/05/spending-some-time-playing-dd.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/personal.html">
<span itemprop="articleSection">personal</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-05-06T15:28:51-07:00"
itemprop="dateCreated datePublished">
May 06, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/dd.html">
d&d
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="Enough with the assholes on TV «Mandaris Moore»"
href="2018/05/enough-with-the-assholes-on-tv.html"
itemprop="url">
Enough with the assholes on TV
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p><img alt="Two recent characters that I dread seeing." src="images/a-holes-on-tv.png"></p>
<p>I recently saw two tv shows, "AP Bio" and "The Mick", and reliezed that they both attempt to make that the now classic Anti-Hero. The Bad Boy who pretends that he doesn't care but secretly has a heart of gold.</p>
<p>But, the thing about this is that the character needs to have some kind of charisma or redeeming quality. As a viewer with lots of options and little time, I'm not going to wait half a season for that kind of pay off.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="Enough with the assholes on TV «Mandaris Moore»"
href="2018/05/enough-with-the-assholes-on-tv.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/review.html">
<span itemprop="articleSection">review</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-05-06T10:08:20-07:00"
itemprop="dateCreated datePublished">
May 06, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/tv.html">
tv
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="More Keyboard Maestro Fun «Mandaris Moore»"
href="2018/05/more-keyboard-maestro-fun.html"
itemprop="url">
More Keyboard Maestro Fun
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p>Another day, another little bit of automation.</p>
<p><img alt="Using keyboard to format the header and category for a blog post." src="images/keyboard-maestro-pelican-header.png"></p>
<p>On my laptop, I have a TextExander shortcut to make the header for my posts, but I haven't installed it on my iMac because I didn't want it to trigger accidently when someone else is working with it. </p>
<p>I thought I would see how well it works for the time being and move forward with other automations to make posting smoother.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="More Keyboard Maestro Fun «Mandaris Moore»"
href="2018/05/more-keyboard-maestro-fun.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/tech.html">
<span itemprop="articleSection">tech</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-05-05T22:07:56-07:00"
itemprop="dateCreated datePublished">
May 05, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/keyboard-maestro.html">
keyboard maestro
</a>
<a
class="tag"
rel="category tag"
href="./tag/automation.html">
automation
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="Where does all the time go? «Mandaris Moore»"
href="2018/05/where-does-all-the-time-go.html"
itemprop="url">
Where does all the time go?
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p>I'm going to spend a couple minutes just writing here. I want to do something more with my time on the computer. </p>
<p>First and foremost, I have to have more of an understanding of where my time is actually going when I'm on the computer. For that, I'm going to use the wonderful <a href="https://timingapp.com/?lang=en">timing.app</a> to track where my time has been spent.</p>
<p><img alt="A graph showing that I spend quite a bit of time surfing the internet" src="images\timings-graph-2018-05-05.png"></p>
<p>I was a little shocked to see that -even though I felt pretty productive this week- I<sup id="fnref:association"><a class="footnote-ref" href="#fn:association">1</a></sup> spent so much time searching the internet or other unproductive time. </p>
<div class="footnote">
<hr>
<ol>
<li id="fn:association">
<p>To be completely honest, I'm not the only one who uses the house computer. <a class="footnote-backref" href="#fnref:association" title="Jump back to footnote 1 in the text">↩</a></p>
</li>
</ol>
</div>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="Where does all the time go? «Mandaris Moore»"
href="2018/05/where-does-all-the-time-go.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/personal.html">
<span itemprop="articleSection">personal</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-05-05T15:40:00-07:00"
itemprop="dateCreated datePublished">
May 05, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/time-management.html">
time management
</a>
<a
class="tag"
rel="category tag"
href="./tag/goals.html">
goals
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="What is on my mind right now «Mandaris Moore»"
href="2018/04/what-is-on-my-mind-right-now.html"
itemprop="url">
What is on my mind right now
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p><img alt="Mindmap of what is on my mind." src="images/what-is-up.png"></p>
<p>I just spent 5 minutes on what are some of the things that are currently on my mind. Honestly, I think I spent more time on the clip art associated with the mindmap than actually thinking about what it means. </p>
<p>I've got a lot of things happening right now and I hoped that putting it in a pretty picture can help me sort it out. So...</p>
<h3 id="whats-up">What’s Up</h3>
<p>Ultimately, I exported the mind map as an outline and decided to expand it here.</p>
<h4 id="work">Work</h4>
<p>The way that I currently make a living. I find that I'm grinding for someone else and not me or my family.</p>
<h5 id="doing-the-work">Doing the work</h5>
<p>I don't feel that I have a huge problem doing what is asked of me. I <em>do</em> have a problem with the amount of things that need to be done and the amount of support that I'm getting from everyone else. I feel as though a lot of people don't understand that things need to be balanced.</p>
<h5 id="dealing-with-the-people">Dealing with the People</h5>
<p>I do not feel that the people that I'm working with are on the same page. Sometimes, I feel like I'm all by myself on a lot of fronts. I have friends at work, but I also have people who are more into their own ego than getting to the next level in life.</p>
<p>Definitely room for more teamwork. </p>
<h4 id="making-ends-meet">Making ends meet</h4>
<p>Money is absolutely horrible. They say it cannot make you happy, but I find that not having it certainly can make you unhappy.</p>
<h5 id="cutting-expenses">Cutting expenses</h5>
<p>No question. Have to cut back on soo many things. I've started taking my lunch and I've long since stopped buying comic books. The problem is that me and my family like to go out to eat quite a bit.</p>
<h5 id="making-more">Making More</h5>
<p>I've been playing around with the idea of getting a second job. It would have to be a night position, but I don't know if I'd be able to pull it off with the lack of sleep that would eventually happen.</p>
<h4 id="being-fulfilled">Being fulfilled</h4>
<p>This one is just about how I feel about myself. I feel as if I lost my direction in life and I'm really questioning if I had one at all. </p>
<h5 id="what-is-my-current-passion">What is my current passion?</h5>
<p>I like messing around with MacOS X. I love the feel of typing and the pleasure of getting things like my website up and running.</p>
<p>But I want to make something else too.</p>
<p>Not just this blog post but something that can help others, like a tutorial or book.</p>
<h5 id="where-do-i-see-myself-in-the-future">Where do I see myself in the future?</h5>
<p>Unfortunately, the future looks grim. I've got upcoming expenses and less time and resources to deal with them.</p>
<h4 id="having-a-family">Having a family</h4>
<p>The most important aspect. I have a responsibility not just to myself but to other people.</p>
<h5 id="being-able-to-communicate">Being able to communicate</h5>
<p>I want to make sure that my family is able to talk to me if they need to and that I work on my active listening.</p>
<h5 id="making-sure-that-everyone-is-cared-for">Making sure that everyone is cared for</h5>
<p>I love my family and it is important to me that they are happy.</p>
<h3 id="in-conclusion">In conclusion</h3>
<p>What a small little rant. I feel much better getting that out of my system and will have to review this moving forward.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="What is on my mind right now «Mandaris Moore»"
href="2018/04/what-is-on-my-mind-right-now.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/personal.html">
<span itemprop="articleSection">personal</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-04-29T19:33:34-07:00"
itemprop="dateCreated datePublished">
April 29, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/goals.html">
goals
</a>
<a
class="tag"
rel="category tag"
href="./tag/mind-map.html">
mind map
</a>
<a
class="tag"
rel="category tag"
href="./tag/feelings.html">
feelings
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="Writing in my home office «Mandaris Moore»"
href="2018/04/writing-in-my-home-office.html"
itemprop="url">
Writing in my home office
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p><img alt="Writing this post in Byword" src="images\writing-in-byword.png"></p>
<p>I like writing. I find it very relaxing and it allows me to get my thoughts together. Recently, I've gotten out of the habit of writing on a regular basis so I'm going to take this as an opportunity to start journaling again in the month of May.</p>
<p>I'll set a goal to start the day with a little bit of yoga followed by some writing on what I want to do with the day. Maybe some introspection as well.</p>
<p>If I had it my way, I'd put this all into DayOne, but it has been kind of stressful having it there where I don't have any control over when it goes away.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="Writing in my home office «Mandaris Moore»"
href="2018/04/writing-in-my-home-office.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/blogging.html">
<span itemprop="articleSection">blogging</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-04-29T18:53:22-07:00"
itemprop="dateCreated datePublished">
April 29, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/writing.html">
writing
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="Moving diagrams to draft «Mandaris Moore»"
href="2018/04/moving-diagrams-to-draft.html"
itemprop="url">
Moving diagrams to draft
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p><img alt="An example diagram created with PlantUML." src="images/plantuml-diagram.png"></p>
<p>I'm going to be changing the pelican posts that I have that use the <a href="https://github.com/getpelican/pelican-plugins/tree/master/plantuml">PlantUML</a> plugin to be in the <code>draft</code> status.</p>
<p>I really enjoy having a way to put my words into a diagram, but I honestly haven't had a need to and having my computer pause for a second as it starts up java to render the diagrams everytime has gotten a little annoying. </p>
<p>Going forward, I'll use an application to create the diagrams and then just add them to my images directory.</p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="Moving diagrams to draft «Mandaris Moore»"
href="2018/04/moving-diagrams-to-draft.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/blogging.html">
<span itemprop="articleSection">blogging</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-04-29T12:40:59-07:00"
itemprop="dateCreated datePublished">
April 29, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/figure.html">
figure
</a>
<a
class="tag"
rel="category tag"
href="./tag/html.html">
html
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
<article
class="post hentry h-entry"
itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h2
itemprop="headline name"
class="title p-name post-title">
<a
rel="bookmark"
class="u-url"
title="A simple test of Grafio «Mandaris Moore»"
href="2018/04/a-simple-test-of-grafio.html"
itemprop="url">
A simple test of Grafio
</a>
</h2>
</header><div class="e-content post-body" itemprop="articleBody">
<p><img alt="A test simple test of Grafio." src="images/graphic-test-diagram.png"></p>
<p>A thought it would be nice to have a better way of making diagrams from my phone. I’ve been lusting after OmniGraffle for years but I don’t have the money or drive to invest into unlocking the full power. </p>
<p>So thought I would try one of the many free apps in the store. I can’t say that I like it too much at this point as it completely deleted an item I was trying to resize. Still, you get what you pay for and I’m starting to rethink my idea of using my iPhone as a place to make something like this. </p>
</div>
<p class="readmore u-url">
<a
rel="bookmark"
title="A simple test of Grafio «Mandaris Moore»"
href="2018/04/a-simple-test-of-grafio.html"
itemprop="url">Permalink
</a>
</p>
<footer>
<p class="articleFooterP">Category:
<a class="p-category" href="./category/blogging.html">
<span itemprop="articleSection">blogging</span>
</a>
<span class="rightside">
<time
class="dt-published"
datetime="2018-04-24T22:42:07-07:00"
itemprop="dateCreated datePublished">
April 24, 2018
</time>
</span>
<br /> <span itemprop="keywords">
<a
class="tag"
rel="category tag"
href="./tag/writing.html">
writing
</a>
<a
class="tag"
rel="category tag"
href="./tag/graphics.html">
graphics
</a>
<a
class="tag"
rel="category tag"
href="./tag/ios.html">
iOS
</a>
</span>
</p>
<details itemprop="author" itemscope itemtype="https://schema.org/Person" class="p-author h-card hidden">
<summary itemprop="name" class="p-name">Mandaris</summary> <img itemprop="image" class="u-photo"
src="https://secure.gravatar.com/avatar/03fb367dd4c7aea56f77dfa496db3725"
alt="Author's Profile." />
<p class="p-note">Mandaris is someone who strives to make himself into a better person</p>
<p><a itemprop="url" class="u-url u-uid"
rel="me" href="https://mandarismoore.com"
title="Author Website.">
Mandaris</a></p>
</details>
</footer>
</article>
<hr />
</main>
<footer itemscope itemtype="https://schema.org/WPFooter"
role="contentinfo" class="baseFooter">
<hr />
<p>All works created by
<span itemprop="author" itemscope itemtype=https://schema.org/Person>
<span class="p-author h-card p-name" itemprop="name">Mandaris</span></span>.
<span class="rightside">Powered by <a href="http://pelican.readthedocs.org">Pelican</a>.</span></p>
</footer>
</body>
</html>