-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
770 lines (698 loc) · 24.5 KB
/
index.html
File metadata and controls
770 lines (698 loc) · 24.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Jennifer Kruse</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/clean-blog.min.css" rel="stylesheet">
<link href="css/application.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="overlay" style="display: none;">
<div class="overlay-img">
<div class="icon-list">
<b>Jennifer Kruse</b>
<hr class="small" id="line">
<li>
<a href="#" class="blog" id="blog">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-pencil fa-stack-1x fa-inverse"></i>
</span>
</a>Blog
</li>
<li>
<a href="http://github.com/jenkr55" id="git">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github-alt fa-stack-1x fa-inverse"></i>
</span>
</a>Github
</li>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<!-- <div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div> -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li style="z-index: 2">
<a href="about.html">About Me</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="intro-header" style="background-image: url('img/header-me.jpg')">
<!-- when overlay: <div class="container" style="display: none"> -->
<div class="container" style="display: block">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>Jen's Blog</h1>
<hr class="small">
<span class="subheading">my little corner of the internet </span>
</div>
</div>
</div>
</div>
</header>
<div class="container" style="display: block">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<p class="show"> Show: <a class="showLink" id="prog" href="#">Programming</a> | <a class="showLink" id="pers" href="#">Personal</a> | <a class="showLink" id="travel" href="#">Travel</a> | <a class="showLink" id="all" href="#">All</a> </p>
</div></div></div>
<div class="container" style="display: block">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-preview personal">
<a href="covid_vaccine_trial.html">
<h2 class="post-title">
Vaccinated ✔
</h2>
<h3 class="post-subtitle">
My experience participating in the AstraZeneca/Oxford COVID vaccine trial!
</h3>
</a>
<p class="post-meta">Posted on December 16, 2020</p>
<hr>
</div>
<div class="post-preview travel">
<a href="camping_happyjack.html">
<h2 class="post-title">
Arizona Campsite Reviews: Happy in Happy Jack
</h2>
<h3 class="post-subtitle">
Starting my series of local campsite reviews
</h3>
</a>
<p class="post-meta">Posted on December 2, 2020</p>
<hr>
</div>
<div class="post-preview travel">
<a href="oktoberfest.html">
<h2 class="post-title">
Oktoberfest in Munich
</h2>
<h3 class="post-subtitle">
I went to Oktoberfest in Munich last fall! Here are my tips and tricks to ensure a good time.
</h3>
</a>
<p class="post-meta">Posted on July 25, 2019</p>
<hr>
</div>
<div class="post-preview personal">
<a href="theincident.html">
<h2 class="post-title">
The Mystery of the 4,000 Tall Fetishists
</h2>
<h3 class="post-subtitle">
</h3>
</a>
<p class="post-meta">Posted on November 18, 2018</p>
<hr>
</div>
<div class="post-preview personal">
<a href="vitamind.html">
<h2 class="post-title">
The $1000 Vitamin D Pills
</h2>
<h3 class="post-subtitle">
</h3>
</a>
<p class="post-meta">Posted on April 7, 2018</p>
<hr>
</div>
<div class="post-preview personal programming">
<a href="facebookdata.html">
<h2 class="post-title">
Visualizing my Facebook Data
</h2>
<h3 class="post-subtitle">I downloaded all of my Facebook data and organized it into various charts
</h3>
</a>
<p class="post-meta">Posted on March 24, 2018</p>
<hr>
</div>
<div class="post-preview personal">
<a href="sequin.html">
<h2 class="post-title">
DIY Reversible Sequin Dress
</h2>
<h3 class="post-subtitle">
</h3>
</a>
<p class="post-meta">Posted on February 3, 2018</p>
<hr>
</div>
<div class="post-preview programming">
<a href="womenprogramming.html">
<h2 class="post-title">
Why I Almost Didn't Go into Programming
</h2>
<h3 class="post-subtitle">
</h3>
</a>
<p class="post-meta">Posted on August 6, 2017</p>
<hr>
</div>
<div class="post-preview programming">
<a href="http://www.TrumpLibs.io" target="_blank">
<h2 class="post-title">
TrumpLibs
</h2>
<h3 class="post-subtitle">
A reverse mad libs game I made based on Trump's tweets
</h3>
</a>
<p class="post-meta">Posted on July 28, 2017</p>
<hr>
</div>
<div class="post-preview personal">
<a href="https://www.youtube.com/watch?v=gd_Q2zMHofk" target="_blank">
<h2 class="post-title">
My Dog Obeys Kendrick Lamar
</h2>
<h3 class="post-subtitle">
A cute video of Daisy!
</h3>
</a>
<p class="post-meta">Posted on June 30, 2017</p>
<hr>
</div>
<div class="post-preview travel">
<a href="wishknewbeforetaiwan.html">
<h2 class="post-title">
6 Things I Wish I Knew Before I Went To Taiwan
</h2>
<h3 class="post-subtitle">
</h3>
</a>
<p class="post-meta">Posted on April 10, 2017</p>
<hr>
</div>
<div class="post-preview programming">
<a href="markov.html">
<h2 class="post-title">
Markov Chain Reddit Bots in the Worst Subreddits
</h2>
<h3 class="post-subtitle">
I made some Markov chain bots to post in my least favorite subreddits.
</h3>
</a>
<p class="post-meta">Posted on April 5, 2017</p>
<hr>
</div>
<div class="post-preview travel">
<a href="talltaiwan.html">
<h2 class="post-title">
6'5 in Taiwan
</h2>
<h3 class="post-subtitle">
Life as a 6'5 woman in Taiwan
</h3>
</a>
<p class="post-meta">Posted on March 23, 2017</p>
<hr>
</div>
<div class="post-preview personal">
<a href="heartworm.html">
<h2 class="post-title">
Daisy's Heart Worm Treatment Experience
</h2>
<h3 class="post-subtitle">
Heart worm free! Here's everything we went through.
</h3>
</a>
<p class="post-meta">Posted on January 29, 2017</p>
<hr>
</div>
<div class="post-preview personal">
<a href="chalkboardwall.html">
<h2 class="post-title">
DIY $30 Apartment Chalkboard Wall
</h2>
<h3 class="post-subtitle">
I painted a chalkboard wall in my apartment.
</h3>
</a>
<p class="post-meta">Posted on December 5, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="dna.html">
<h2 class="post-title">
Daisy's DNA Results
</h2>
<h3 class="post-subtitle">
I tested Daisy's breed ancestry with the Wisdom Panel 3.0 DNA test
</h3>
</a>
<p class="post-meta">Posted on November 14, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="daisy.html">
<h2 class="post-title">
Love At First Sight
</h2>
<h3 class="post-subtitle">
I got a dog!
</h3>
</a>
<p class="post-meta">Posted on October 9, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="cominghome.html">
<h2 class="post-title">
Coming Home
</h2>
<h3 class="post-subtitle">
Coming home from Taiwan
</h3>
</a>
<p class="post-meta">Posted on October 9, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week12.html">
<h2 class="post-title">
Backpacking Mid/South Taiwan
</h2>
<h3 class="post-subtitle">
For my final week in Taiwan, I backpacked Taizhong, Tainan, and Gaoxiong.
</h3>
</a>
<p class="post-meta">Posted on October 9, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week11.html">
<h2 class="post-title">
Taiwan: Week 11
</h2>
<h3 class="post-subtitle">
Jiufen, Jinguashi, Maokong
</h3>
</a>
<p class="post-meta">Posted on September 18, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week9.html">
<h2 class="post-title">
Taiwan: Week 10
</h2>
<h3 class="post-subtitle">
Tiger Mountain, Sunny Hills, Huashan 1914 Creative Park, Chiang Kai-shek Memorial Hall, Bird Street
</h3>
</a>
<p class="post-meta">Posted on July 31, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="hongkong.html">
<h2 class="post-title">
Hong Kong
</h2>
<h3 class="post-subtitle">
My weekend trip to Hong Kong
</h3>
</a>
<p class="post-meta">Posted on July 27, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week7.html">
<h2 class="post-title">
Taiwan: Week 7 & 8
</h2>
<h3 class="post-subtitle">
Typhoon Nepartak! Taipei Fine Arts Museum, National Palace Museum, Jade, Flower, Artist Markets, Wufenpu, Rechao
</h3>
</a>
<p class="post-meta">Posted on July 27, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week6.html">
<h2 class="post-title">
Taiwan: Week 6
</h2>
<h3 class="post-subtitle">
North Coastal Area, Taipei Zoo, Cat Cafe, Elephant Mountain, Traditional Open Air Market
</h3>
</a>
<p class="post-meta">Posted on July 4, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week5.html">
<h2 class="post-title">
Taiwan: Week 5
</h2>
<h3 class="post-subtitle">
Yangmingshan, Yilan, Luodong, Stinky Tofu, Fruit
</h3>
</a>
<p class="post-meta">Posted on June 26, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week3.html">
<h2 class="post-title">
Taiwan: Weeks 3 & 4
</h2>
<h3 class="post-subtitle">
Dragon Boat Festival, Wulai, Beitou, Tamsui, Bopiliao Historical Block, and life
</h3>
</a>
<p class="post-meta">Posted on June 18, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week2.html">
<h2 class="post-title">
Taiwan: Week 2
</h2>
<h3 class="post-subtitle">
My second week in Taiwan!
</h3>
</a>
<p class="post-meta">Posted on June 4, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="week1.html">
<h2 class="post-title">
Taiwan: Week 1
</h2>
<h3 class="post-subtitle">
My first week in Taiwan!
</h3>
</a>
<p class="post-meta">Posted on May 28, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="japan.html">
<h2 class="post-title">
Sleepless in Japan
</h2>
<h3 class="post-subtitle">
On my way to Taiwan I unexpectedly had to stay in Japan for the night.
</h3>
</a>
<p class="post-meta">Posted on May 23, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="caucus.html">
<h2 class="post-title">
My Caucus Experience
</h2>
<h3 class="post-subtitle">
The good, the bad, and the ugly.
</h3>
</a>
<p class="post-meta">Posted on April 15, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="tattoo.html">
<h2 class="post-title">
My Fake Bernie Sanders Tattoo
</h2>
<h3 class="post-subtitle">
My April Fool's day prank this year.
</h3>
</a>
<p class="post-meta">Posted on April 4, 2016</p>
<hr>
</div>
<div class="post-preview travel">
<a href="taiwan-study-abroad.html">
<h2 class="post-title">
Taiwan Summer 2016
</h2>
<h3 class="post-subtitle">
How I set up my own study abroad trip, and saved thousands of dollars along the way.
</h3>
</a>
<p class="post-meta">Posted on February 20, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="pineapple.html">
<h2 class="post-title">
My Potted Pineapple Plant
</h2>
<h3 class="post-subtitle">
I grew a tiny pineapple in my apartment.
</h3>
</a>
<p class="post-meta">Posted on January 19, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="tall.html">
<h2 class="post-title">
The Weather Up Here
</h2>
<h3 class="post-subtitle">
My perspective of being really tall
</h3>
</a>
<p class="post-meta">Posted on January 18, 2016</p>
<hr>
</div>
<div class="post-preview personal">
<a href="chinesename.html">
<h2 class="post-title">
My Chinese Name
</h2>
<h3 class="post-subtitle">
My Chinese name and how I selected it.
</h3>
</a>
<p class="post-meta">Posted on January 6, 2016</p>
<hr>
</div>
<div class="post-preview programming">
<a href="pry.html">
<h2 class="post-title">
How to Pry
</h2>
<h3 class="post-subtitle">
How to use Pry, the best Ruby debugger.
</h3>
</a>
<p class="post-meta">Posted on December 19, 2015</p>
<hr>
</div>
<div class="post-preview personal programming">
<a href="tinderbot.html">
<h2 class="post-title">
Tinder + Cleverbot = ?
</h2>
<h3 class="post-subtitle">
I combined Tinder and Cleverbot for some hilarious results.
</h3>
</a>
<p class="post-meta">Posted on December 7, 2015</p>
<hr>
</div>
<div class="post-preview programming">
<a href="helloworld.html">
<h2 class="post-title">
Hello World
</h2>
<h3 class="post-subtitle">
How I got into programming.
</h3>
</a>
<p class="post-meta">Posted on December 7, 2015</p>
<hr>
</div>
<div class="post-preview travel">
<a href="washingtonDC.html">
<h2 class="post-title">
Ellie and Jen Do DC
</h2>
<h3 class="post-subtitle">
Spending Spring Break in Washington, DC.
</h3>
</a>
<p class="post-meta">Posted on July 27, 2015</p>
<hr>
</div>
<div class="post-preview programming">
<a href="tinder-bot-tutorial-part2.html">
<h2 class="post-title">
Ruby Tinder Bot: Part 2
</h2>
<h3 class="post-subtitle">
How to program your bot to do what you want.
</h3>
</a>
<p class="post-meta">Posted on July 5, 2015</p>
<hr>
</div>
<div class="post-preview programming">
<a href="tinder-bot-tutorial.html">
<h2 class="post-title">
Ruby Tinder Bot: Part 1
</h2>
<h3 class="post-subtitle">
How to set up your very own Tinder bot
</h3>
</a>
<p class="post-meta">Posted on June 2, 2015</p>
<hr>
</div>
<div class="post-preview personal">
<a href="post20150411.html">
<h2 class="post-title">
My Fake Boyfriend
</h2>
<h3 class="post-subtitle">
The best April Fool's day prank I've ever pulled.
</h3>
</a>
<p class="post-meta">Posted on April 11, 2015</p>
<hr>
</div>
<div class="post-preview programming">
<a href="post20150302.html">
<h2 class="post-title">
Cleverbot on Reddit
</h2>
<h3 class="post-subtitle">
Best moments from my Cleverbot-Reddit bot this past month.
</h3>
</a>
<p class="post-meta">Posted on March 2, 2015</p>
<hr>
</div>
<div class="post-preview personal">
<a href="post20150219.html">
<h2 class="post-title">
Xue Zhong Wen
</h2>
<h3 class="post-subtitle">
My experiences learning Chinese
</h3>
</a>
<p class="post-meta">Posted on February 19, 2015</p>
<hr>
</div>
<div class="post-preview programming">
<a href="twitterbot.html">
<h2 class="post-title">
How to make a Twitter bot using Ruby
</h2>
<h3 class="post-subtitle">
A tutorial about how to make a Twitter bot using the Ruby programming language.
</h3>
</a>
<p class="post-meta">Posted on January 22, 2015</p>
<hr>
</div>
<div class="post-preview programming">
<a href="post20150120.html">
<h2 class="post-title">
Introducing... Decision Bot!
</h2>
<h3 class="post-subtitle">
A twitter bot I made helps hundreds of people make up their minds every day,
but doesn't always give good advice.
</h3>
</a>
<p class="post-meta">Posted on January 20, 2015</p>
</div>
<hr>
</div>
</div>
</div>
<hr>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/clean-blog.min.js"></script>
</body>
</html>
<script>
$( "#all" ).click(function(e) {
$(".personal").show();
$(".programming").show();
$(".travel").show();
e.preventDefault();
});
$( "#prog" ).click(function(e) {
$(".personal").hide();
$(".programming").show();
$(".travel").hide();
e.preventDefault();
});
$( "#pers" ).click(function(e) {
$(".personal").show();
$(".programming").hide();
$(".travel").hide();
e.preventDefault();
});
$( "#travel" ).click(function(e) {
$(".travel").show();
$(".programming").hide();
$(".personal").hide();
$(".programming").hide();
e.preventDefault();
});
</script>
<script>
$( ".blog" ).click(function() {
$(".container").css("display","block");
$(".overlay").css("display", "none");
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59909033-1', 'auto');
ga('send', 'pageview');
</script>