forked from fennifith/fennifith.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1469 lines (893 loc) · 61.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="author" content="James Fenn">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="generator" content="James Fenn">
<title>James Fenn</title>
<meta name="theme-color" content="#FFFFFF">
<meta name="mobile-web-app-capable" content="yes">
<link rel="manifest" href="/manifest.json">
<meta name="application-name" content="James Fenn">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-tooltip" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="msapplication-config" content="/ieconfig.xml">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="icon" sizes="16x16" href="/favicon.ico">
<link rel="icon" sizes="24x24" href="/images/favicon-24.ico">
<link rel="icon" sizes="32x32" href="/images/favicon-32.ico">
<link rel="icon" sizes="48x48" href="/images/favicon-48.ico">
<link rel="icon" sizes="64x64" href="/images/favicon-64.ico">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<meta name="apple-mobile-web-app-title" content="James Fenn">
<link rel="apple-touch-icon-precomposed" href="/images/favicon-152.png">
<link href="https://fonts.googleapis.com/css?family=Miriam+Libre|Roboto|Vollkorn" rel="stylesheet">
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="/css/styles.css" rel="stylesheet">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@fennifith">
<meta name="twitter:site" content="@fennifith">
<meta name="twitter:title" content="James Fenn">
<meta name="twitter:description" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="twitter:image" content="https://jfenn.me/images/me.jpg">
<meta name="og:title" content="James Fenn">
<meta name="og:type" content="profile">
<meta name="profile:first_name" content="James">
<meta name="profile:last_name" content="Fenn">
<meta name="profile:username" content="fennifith">
<meta name="og:image" content="https://jfenn.me/images/headers/snowytrees.jpg">
<meta name="og:url" content="https://jfenn.me/">
<meta name="og:description" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="og:locale" content="en_US">
<meta name="og:site_name" content="James Fenn">
</head>
<body>
<black-lives></black-lives><br>
<script src="https://unpkg.com/i-stand/black-lives.js" type="module"></script>
<nav class="nav">
<a class="nav__item" href="#home" selected>
<i class="nav__item__icon material-icons">home</i>
<span class="nav__item__title">Home</span>
</a>
<a class="nav__item" href="#blog">
<i class="nav__item__icon material-icons">notes</i>
<span class="nav__item__title">Blog</span>
</a>
<a class="nav__item" href="#projects">
<i class="nav__item__icon material-icons">code</i>
<span class="nav__item__title">Projects</span>
</a>
<a class="nav__item" href="#community">
<i class="nav__item__icon material-icons">people</i>
<span class="nav__item__title">Community</span>
</a>
<a class="nav__item" href="#about">
<i class="nav__item__icon material-icons">info</i>
<span class="nav__item__title">About</span>
</a>
</nav>
<main id="main" class="tabs container">
<div id="blog" class="h-feed">
<p class="markdown">
These are my blogs. I usually talk about why I make certain projects, what they are supposed to do, and how they supposedly accomplish it. I do not post often,
as it takes quite a while to write these posts, but you can subscribe for updates through <a href="http://feeds.feedburner.com/fennifith">Feedburner</a>.
</p>
<h1 class="p-name">The Blogs</h2>
<p>
<h2>2020</h2>
<a class="h-entry link" href="/blog/2020-05-09-Animating-SVG-Icons/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2020-05-09 00:00:00 +0000">May 09</time></code> </span>
<span class="link__title">Animating SVG Icons on the Web</span>
</a>
<a class="h-entry link" href="/blog/2020-02-27-AIGHT/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2020-02-27 00:00:00 +0000">Feb 27</time></code> </span>
<span class="link__title">AIGHT: a Low-effort Productivity Tool</span>
</a>
<a class="h-entry link" href="/papers/2020-01-24-Ethics-of-AI/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2020-01-24 00:00:00 +0000">Jan 24</time></code> </span>
<span class="link__title">Ethics of Artificial Intelligence</span>
</a>
<h2>2019</h2>
<a class="h-entry link" href="/blog/2019-12-15-Federated-Social-Networks/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-12-15 00:00:00 +0000">Dec 15</time></code> </span>
<span class="link__title">Federated Social Networks</span>
</a>
<a class="h-entry link" href="/blog/2019-10-30-Ethical-Source/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-10-30 00:00:00 +0000">Oct 30</time></code> </span>
<span class="link__title">Ethical Source and Subjectivity</span>
</a>
<a class="h-entry link" href="/blog/2019-10-28-Free-Software-RMS/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-10-28 00:00:00 +0000">Oct 28</time></code> </span>
<span class="link__title">Free Software and RMS</span>
</a>
<a class="h-entry link" href="/papers/2019-10-15-Open-Source-in-Education/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-10-15 00:00:00 +0000">Oct 15</time></code> </span>
<span class="link__title">Open Source in Education</span>
</a>
<a class="h-entry link" href="/blog/2019-08-02-JavaScript-Proofs/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-08-02 00:00:00 +0000">Aug 02</time></code> </span>
<span class="link__title">JavaScript: Productivity over Proof</span>
</a>
<a class="h-entry link" href="/blog/2019-06-13-Aptoide-Play-Fair-Response/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-06-13 00:00:00 +0000">Jun 13</time></code> </span>
<span class="link__title">Thoughts About Aptoide's 'Play Fair' Campaign</span>
</a>
<a class="h-entry link" href="/papers/2019-04-14-Right-to-Repair/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-04-14 00:00:00 +0000">Apr 14</time></code> </span>
<span class="link__title">Right to Repair</span>
</a>
<a class="h-entry link" href="https://unicorn-utterances.com/posts/introduction-to-android-framework/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-03-18 00:00:00 +0000">Mar 18</time></code> </span>
<span class="link__title">🔗 Introduction to Android: Contexts, Intents, and the Activity lifecycle | unicorn-utterances.com</span>
</a>
<a class="h-entry link" href="https://unicorn-utterances.com/posts/joining-freenode-irc/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2019-03-06 00:00:00 +0000">Mar 06</time></code> </span>
<span class="link__title">🔗 Joining Freenode IRC: A Guide | unicorn-utterances.com</span>
</a>
<h2>2018</h2>
<a class="h-entry link" href="https://unicorn-utterances.com/posts/travis-ci-for-android/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-11-14 00:00:00 +0000">Nov 14</time></code> </span>
<span class="link__title">🔗 Continuous Integration with Travis CI for Android | unicorn-utterances.com</span>
</a>
<a class="h-entry link" href="/blog/2018-10-26-CSS-Submodules/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-10-26 00:00:00 +0000">Oct 26</time></code> </span>
<span class="link__title">CSS Submodules</span>
</a>
<a class="h-entry link" href="/blog/2018-09-25-Exceptional-Traveler/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-09-25 00:00:00 +0000">Sep 25</time></code> </span>
<span class="link__title">Exceptional Traveler</span>
</a>
<a class="h-entry link" href="/blog/2018-09-17-Pricing-Models/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-09-17 00:00:00 +0000">Sep 17</time></code> </span>
<span class="link__title">Pricing Models</span>
</a>
<a class="h-entry link" href="/blog/2018-09-01-AAAAAAAAAH/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-09-01 00:00:00 +0000">Sep 01</time></code> </span>
<span class="link__title">AAAAAAAAAAAAAAAAAAAAAAAHHH</span>
</a>
<a class="h-entry link" href="/blog/2018-08-19-Client-Side-JavaScript/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-08-19 00:00:00 +0000">Aug 19</time></code> </span>
<span class="link__title">Client-Side JavaScript</span>
</a>
<a class="h-entry link" href="/blog/2018-08-17-Attribouter/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-08-17 00:00:00 +0000">Aug 17</time></code> </span>
<span class="link__title">Attribouter</span>
</a>
<a class="h-entry link" href="/blog/2018-07-28-Hello-World/" style="display: flex; align-items: start;">
<span class="link__title" style="white-space: nowrap;"><code><time class="dt-published dt-updated" datetime="2018-07-28 00:00:00 +0000">Jul 28</time></code> </span>
<span class="link__title">Hello World</span>
</a>
</p>
</div>
<div id="projects">
<div id="projectsCategories" class="categories">
<div id="android-app" class="h-feed">
<h2 class="p-name">Android Apps</h2>
<div id="android-applist" class="layout--grid">
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/alarmio/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Alarmio/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/alarmio/">Alarmio</a>
<span class="p-summary">A simple alarm clock focused on design, readability, and internet radio.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/apreader/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/APReader/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/apreader/">AP Reader</a>
<span class="p-summary">A small app that displays Android Police articles without waiting for the website to load.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/bagels/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Bagels/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/bagels/">Bagels</a>
<span class="p-summary">A live wallpaper that blurs the screen after a period of time without any actions.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/cleaner/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Cleaner/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/cleaner/">Cleaner</a>
<span class="p-summary">The only storage saving app that actually works! :D</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/cronhub-monitor/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Cronhub-Monitor/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/cronhub-monitor/">Cronhub Monitor</a>
<span class="p-summary">A native CronHub notification client for Android.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/feedage/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Feedage/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/feedage/">Feedage</a>
<span class="p-summary">A basic "news reader" that sorts posts from various RSS feeds into categories.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/hackna-notes/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/hackna-notes/">Hack NA Notes</a>
<span class="p-summary">A small sample project created for a workshop at HackNA.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/medianotification/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/MediaNotification/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/medianotification/">Media Notification</a>
<span class="p-summary">Slightly unstable attempt to replace all media notifications with Android O styled copies.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/metronome-android/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Metronome-Android/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/metronome-android/">Metronome Android</a>
<span class="p-summary">A lightweight, well designed metronome app for Android.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/monkeytester/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/MonkeyTester/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/monkeytester/">Monkey Tester</a>
<span class="p-summary">Determines whether a user is a monkey, a goat, or both, based on values obtained from android's ActivityManager and UserManager.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/pasta-for-spotify/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Pasta-for-Spotify/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/pasta-for-spotify/">Pasta for Spotify</a>
<span class="p-summary">A material design Spotify client for Android</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/portauthorityfeedbackreporter/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/PortAuthorityFeedbackReporter/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/portauthorityfeedbackreporter/">Port Authority Feedback Reporter</a>
<span class="p-summary">A small application to make it easier for riders to report issues to the Pittsburgh Port Authority bus system.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/status/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Status/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/status/">Status</a>
<span class="p-summary">A no-root status bar replacement for Android.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/wearlocker/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/WearLocker/master/wear/src/main/res/mipmap-xxxhdpi/ic_launcher_web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/wearlocker/">Wear Locker</a>
<span class="p-summary">A basic lock screen that prevents accidental touches on Android Wear 2.0.</span>
</div>
</div>
</div>
<div id="android-library" class="h-feed">
<h2 class="p-name">Android Libraries</h2>
<div id="android-librarylist" class="layout--grid">
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/adaptiveiconview/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/adaptiveiconview/">Adaptive Icon View</a>
<span class="p-summary">A library to allow easy implementation of pre-Oreo adaptive icon support in Android launchers.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/androidutils/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/androidutils/">Android Utils</a>
<span class="p-summary">A bunch of util classes that I use in almost every project I write.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/attribouter/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/attribouter/">Attribouter</a>
<span class="p-summary">A lightweight "about screen" library to allow quick but customizable attribution in Android apps.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/colorpickerdialog/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/colorpickerdialog/">Color Picker Dialog</a>
<span class="p-summary">A simple dialog making it quick and easy to add color picking functionality to any app.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/crasher/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/crasher/">Crasher</a>
<span class="p-summary">An easy to use crash reporting library for Android.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/palettegetter/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/palettegetter/">Palette Getter</a>
<span class="p-summary">A library that can get the color scheme of any app.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/radiallayout/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/radiallayout/">Radial Layout</a>
<span class="p-summary">A scrollable-ish view that arranges images in circles extending from the center of the screen.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/signalstrengths/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/signalstrengths/">Signal Strengths</a>
<span class="p-summary">A library and sample application with the purpose of getting an accurate signal strength on different Android phones.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/slideactionview/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/slideactionview/">Slide Action View</a>
<span class="p-summary">An Android view which provides a nice slide-to-left/right interaction.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/sunrisesunsetview/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/sunrisesunsetview/">Sunrise Sunset View</a>
<span class="p-summary">A lightweight Android view used for displaying and/or editing sunrise and sunset times.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/timedatepicker/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/timedatepicker/">Time Date Picker</a>
<span class="p-summary">A simple Android library containing several time/date pickers and dialogs.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/wearcolorpicker/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/wearcolorpicker/">Wear Color Picker</a>
<span class="p-summary">A lightweight color picker library for Android Wear.</span>
</div>
</div>
</div>
<div id="android-game" class="h-feed">
<h2 class="p-name">Android Games</h2>
<div id="android-gamelist" class="layout--grid">
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/asteroid/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Asteroid/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/asteroid/">Asteroid</a>
<span class="p-summary">A simple Android game based on avoiding incoming asteroids</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/monochrome/';">
<img class="lozad item--box__img"
src="/images/ic/code.svg"
data-src="https://raw.githubusercontent.com/fennifith/Monochrome/master/app/src/main/ic_launcher-web.png"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/monochrome/">Monochrome</a>
<span class="p-summary">A monochromatic pixelated adventure game.</span>
</div>
</div>
</div>
<div id="cli" class="h-feed">
<h2 class="p-name">Scripts</h2>
<div id="clilist" class="layout--grid">
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/aah/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/aah/">AAH</a>
<span class="p-summary">A basic cmdline program for Linux to help me do basic things I should already know. Ex: "AAH drive mount"</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/asciimg/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/asciimg/">Asciimg</a>
<span class="p-summary">A command line tool to display images in ASCII.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/markdowntojupyter/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/markdowntojupyter/">Markdown To Jupyter</a>
<span class="p-summary">NodeJS script to execute & convert code blocks in markdown files to a JupyterLab Notebook.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/mdjavadoc/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/mdjavadoc/">Mdjavadoc</a>
<span class="p-summary">A script that generates markdown javadocs for use in Jekyll and GitHub Pages.</span>
</div>
</div>
</div>
<div id="website" class="h-feed">
<h2 class="p-name">Websites</h2>
<div id="websitelist" class="layout--grid">
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/bugiver/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/bugiver/">Bugiver</a>
<span class="p-summary">A small website that gives you an issue to fix when there is nothing to do.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/cellularmusic/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/cellularmusic/">Cellularmusic</a>
<span class="p-summary">A "cellular automaton" based music generation tool, written with p5js.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/fennifith.github.io/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/fennifith.github.io/">Fennifith.github.io</a>
<span class="p-summary">My personal website.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/music/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/music/">Music</a>
<span class="p-summary">A collection of my piano compositions and other music-related projects.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/p5samples/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/p5samples/">P5Samples</a>
<span class="p-summary">Stuff I made messing around with p5js in my free time.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/photos/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/photos/">Photos</a>
<span class="p-summary">A collection of my photography, published under the Creative Commons License.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/pixularautomaton/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/pixularautomaton/">Pixularautomaton</a>
<span class="p-summary">A basic cellular automaton that makes pretty animations from images.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/scrurl/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/scrurl/">Scrurl</a>
<span class="p-summary">Scrolling urls, a.k.a. the second worst website I've ever made.</span>
</div>
<div class="h-entry item item--box" onclick="location.href = 'https://jfenn.me/projects/styles/';">
<img class="lozad item--box__img link__img"
src="/images/ic/code.svg"
data-src="https://jfenn.me/images/ic/code.svg"
alt="Project icon">
<a class="p-name u-url item__title" href="https://jfenn.me/projects/styles/">Styles</a>
<span class="p-summary">A collection of all my CSS styles, organized and documented.</span>
</div>
</div>
</div>
</div>
</div>
<div id="community">
<div class="markdown">
<h2>Open Source</h2>
<p>
I have a strong distaste for projects that purposefully attempt to hide the way that they function from their users.
There are many reasons to justify this distaste, but things such as <a href="https://en.wikipedia.org/wiki/Dark_pattern">
Dark Patterns</a>, <a href="https://cryptojackingtest.com/">Cryptojacking</a>, or even old-school
<a href="https://en.wikipedia.org/wiki/Keystroke_logging">keyloggers</a> stand out as the most offensive. To oppose this,
I strive to make all of my projects accessible to the public so that it is possible for anyone to not only see how they
are built, but also contribute to their development and benefit from their existence in other ways than just using the
product. Nearly every one of my projects is published under some form of <a href="https://opensource.org/licenses">Open
Source license</a>, and I try to accept every pull request that is created (or at least provide some helpful criticism
so that not all effort is wasted if it is not merged).
</p>
<p>
If you have a question about any of my projects, posts, or... really anything, I can be contacted through many of the
"places" listed in <a href="/?home">/home</a>, emailed at <a href="mailto:[email protected]">[email protected]</a>, or cord...ed (?)
in the Discord server below.
</p>
<iframe class="lozad" data-src="https://discordapp.com/widget?id=514625116706177035&theme=dark" width="350" height="450" style="width: 100%; max-width: 350px;" allowtransparency="true" frameborder="0"></iframe>
<h2>The Community</h2>
<p>
While I have come far since I first started, I did not gain this much knowledge by myself; many people, one way or another,
have helped me to solve problems and learn new things along the way.
</p>
<p>If you find my projects interesting and want to see more, it is definitely worth the time to check out some of their work!</p>
<p>
<a href="https://ajd.sh">ajd.sh</a> •
<a href="https://af.codes">af.codes</a> •
<a href="https://akshathjain.com">akshathjain.com</a> •
<a href="https://linkedin.com/in/alexandrepiveteau">linkedin.com/in/alexandrepiveteau</a> •
<a href="https://github.com/AlexLionne">github.com/AlexLionne</a> •
<a href="https://github.com/benrucker">github.com/benrucker</a> •
<a href="https://dirtyunicorns.com">dirtyunicorns.com</a> •
<a href="https://github.com/Briceronie">github.com/Briceronie</a> •
<a href="http://blog.sqisland.com">blog.sqisland.com</a> •
<a href="https://github.com/chug2k">github.com/chug2k</a> •
<a href="https://github.com/codebleu13">github.com/codebleu13</a> •
<a href="https://github.com/crazeeadil">github.com/crazeeadil</a> •
<a href="https://crutchcorn.dev">crutchcorn.dev</a> •
<a href="https://github.com/danielhickman">github.com/danielhickman</a> •
<a href="darinsdesign.ml">darinsdesign.ml</a> •
<a href="https://github.com/DhruvNath">github.com/DhruvNath</a> •
<a href="http://petersoboyejo.com/">petersoboyejo.com/</a> •
<a href="https://github.com/epicstar">github.com/epicstar</a> •
<a href="https://erikboesen.com">erikboesen.com</a> •
<a href="https://heinrichreimer.eu">heinrichreimer.eu</a> •
<a href="https://abhattacharyea.dev">abhattacharyea.dev</a> •
<a href="https://twitter.com/hector6872">twitter.com/hector6872</a> •
<a href="https://solus-project.com/">solus-project.com/</a> •
<a href="https://jacksonhayes.tv">jacksonhayes.tv</a> •
<a href="https://jahir.dev/">jahir.dev/</a> •
<a href="https://jakewharton.com">jakewharton.com</a> •