-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1081 lines (965 loc) · 57.1 KB
/
index.html
File metadata and controls
1081 lines (965 loc) · 57.1 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="./Styles/profile.css">
<!--<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"></script>-->
<script type="text/javascript" src="./Scripts/profile.js" ></script>
<title>Brandon Byskov</title>
<link rel="icon"
type="image/x-icon"
href="./Images/favicon(2).ico">
</head>
<body>
<div class="page_container">
<div class="right_column">
<div class="right_menu_container">
<div class="profile_pic_container"><img src="./Images/312-720x600.jpg" width="100%" height="100%" /></div>
</div>
<div class="close_box" id="close_box">
<div class="close_icon" onClick="hideDetails()"></div>
</div>
</div>
<div class="left_content_container">
<div class="top_menu"><h1>Brandon Byskov</h1>
</div>
<div class="metro_container">
<!-- Begin Metro Details -->
<!--------------------------------------------------------------------------- -->
<div class="metro_details_container" id="about_details">
<div class="metro_details text_details" >
<div class="details_header">About Me</div>
<div class="details_section">
<div class="details_section_header">Facts</div>
<div class="details_section_body">
<ul>
<li>I'm a Haskell programmer with an inclination for writing elegant and well engineered code.</li>
<li>I have a good business sense, I'm into economics, and there's a place in my heart for capital markets.</li>
<li>I'm doing artificial intelligence research as a hobby and lifelong project.</li>
<li>I'm not afraid to tackle hard problems, and I can teach myself anything I need to solve them.</li>
</ul>
</div>
</div>
</div></div>
<div class="metro_details_container" id="work_details">
<div class="metro_details text_details" >
<div class="details_header">Work</div>
<div class="details_section">
<div class="details_section_header"></div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title"></div>
<div class="subtitle"></div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I'm currently open to career opportunities in software development. I'd jump at the chance to work with a functional language such as Haskell, and I'd love to move to a new city or country. I'm a Canadian citizen, so work visas to the United States or Commonwealth countries should be easy to obtain. I'm also eligible to obtain a citizenship in the EU.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
</div>
</div>
<div class="details_section">
<div class="details_section_header">Current Work</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">Haskell Software Engineering Consultant</div>
<div class="subtitle">Started February 2016</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I'm working as a remote Haskell consultant on software projects for companies based in the Atlanta, Georgia area. The work involves writing business applications with the Yesod RESTful web framework and a PostgreSQL database.<br /><br />
I've worked as part of a small team on enterprise software for Paces MedEquip LLC. I was responsible for writing new application features and solving git issues independently with minimal support. I'm now working on a document management and templating application for a law firm, which I've been given more responsibility to architect and build by myself.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
</div>
</div>
<div class="details_section">
<div class="details_section_header">Past Work</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">Web App Developer for eHealth Research</div>
<div class="subtitle">McMaster University, Summer 2012</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I developed a heart failure health management web app as part of a research project between McMaster University and Hamilton Health Sciences. I worked with professors, doctors, nurses and patients to gather requirements and advised on development options. I was solely responsible for all design, implementation and maintenance tasks for the summer, building front-end, back-end and database code. I conducted live user testing with patients, and the app was later deployed and used by nurses and patients.</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment link"></div>
</div>
</div>
</div>
</div>
</div>
</div></div>
<div class="metro_details_container" id="resume_details">
<div class="metro_details pdf_details">
<h1>Resume</h1>
<object class="resume_object" data="./Documents/Brandon Byskov resume.pdf" type="application/pdf">
<p>It appears you don't have a PDF plugin for this browser.
No biggie... you can <a href="./Documents/Brandon Byskov resume.pdf">click here to
download the PDF file.</a></p>
</object>
</div></div>
<!-- Interests details -->
<div class="metro_details_container" id="interests_details">
<div class="metro_details text_details" >
<div class="details_header">Interests</div>
<div class="details_section">
<div class="details_section_header"></div>
<div class="details_section_body">
<ul>
<li>I love to run, I try to run every day.</li>
<li>I really like functional programming. My eyes light up when I see Haskell code.</li>
<li>I read about technology and business every day for a couple hours.</li>
<li>I have a strong interest in discrete math and computer science theory.</li>
<li>I like taking online courses, and lots of them.</li>
<li>I'm interested in finance and investing, and I do invest a bit when I see a good opportunity.</li>
</ul>
</div>
</div>
</div></div>
<!-- Projects details -->
<div class="metro_details_container" id="project_details">
<div class="metro_details text_details" >
<div class="details_header">Projects</div>
<div class="details_section">
<div class="details_section_header">Current Projects</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">Artificial Intelligence Research</div>
<div class="subtitle">November 2012 - Present</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I'm working independently on a personal research project on strong artificial intelligence. I'm developing a theoretical model of intelligence and mathematics that could be used in representing a system with general intelligence. I've been exploring works such as those of Aristotle, George Boole, and Alan Turing, incorporating ideas from philosophy, discrete math, and theoretical computer science.<br /><br />
I'm writing a paper on this work, with about 30 pages written currently, as well as many more pages of notes. As it is a long-term project and interest of mine, it will remain work in progress for the foreseeable future.
</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
</div>
</div>
<div class="details_section">
<div class="details_section_header">Past Projects</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">CS 4ZP6 Capstone: VNC Viewer in Haskell</div>
<div class="subtitle">School Project, Sept 2014-April 2015</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">For my final year capstone project, my group of three students, under the supervision of Dr. Wolfram Kahl, built a VNC (Virtual Network Computing) remote desktop viewer in Haskell. A VNC viewer is a client application that allows a user to access and control a remote desktop over a network.<br /><br />
The VNC viewer was written purely in Haskell. We followed the Remote Framebuffer (RFB) protocol and communicated with the server over TCP. We interfaced with the user using the Unix X11 windowing system, using it to display graphics and receive user inputs. I've used the project as a playground to learn Haskell concepts such as monad transformers, typeclasses and concurrent threads.<br /><br />
The whole development process was documented using <span class="texhtml" style="font-family: 'CMU Serif', cmr10, LMRoman10-Regular, 'Nimbus Roman No9 L', 'Times New Roman', Times, serif;">L<span style="text-transform: uppercase; font-size: 70%; margin-left: -0.36em; vertical-align: 0.3em; line-height: 0; margin-right: -0.15em;">a</span>T<span style="text-transform: uppercase; margin-left: -0.1667em; vertical-align: -0.5ex; line-height: 0; margin-right: -0.125em;">e</span>X</span>. We generated engineering documents for proposals, requirements, specifications, test plans, test report, and a user guide. We generated source code documentation using literate programming. Several presentations were given throughout the process.
</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment link" onClick="event.stopPropagation();window.open('https://github.com/natalieperna/vnc-client');return false;">GitHub Repository</div>
<!--attach github, dosumentation, video-->
</div>
</div>
</div>
<div class="details_item container">
<div class="header">
<div class="title">CS 4F03 Distributed Systems: Mandelbox Distributed Rendering</div>
<div class="subtitle">School Project, April 2015</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I created an ultra high definition video of a mandelbox, a very complicated mathematical object in space. I was given existing code that could very slowly render a single image of a mandelbox using a ray-tracer. I optimized the performance of the C and C++ renderer and also parallelized the rendering process using OpenMP.<br /><br />
I wrote a separate program in C++ to generate the camera and mandelbox parameters that would describe each frame of the 4 minute video. The mandelbox was made to transform throughout the duration, which made to a very interesting video, but required a collision detection algorithm for the camera that passed thorough and observed the box.<br /><br />
I set up and AWS compute server instance to render the frames and compile them into a video using ffmpeg. The performance optimizations and parallelization made the program 28 times faster on a 32-core machine. I was able to render 7200 frames at 3840x2160 resolution in a time of 8 hours.
</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment video" onClick="event.stopPropagation();window.open('https://www.youtube.com/watch?v=BFkJ7bvjyvE');return false;">Youtube Video</div>
<div class="details_item_attachment pdf" onClick="event.stopPropagation();window.open('https://github.com/brandonbyskov/4F03-MandelBox-Project/blob/master/Documentation/Report.pdf');return false;">Report</div>
<div class="details_item_attachment link" onClick="event.stopPropagation();window.open('https://github.com/brandonbyskov/4F03-MandelBox-Project');return false;">GitHub Repository</div>
</div>
</div>
</div>
<div class="details_item container">
<div class="header">
<div class="title">Profile Page Builder</div>
<div class="subtitle">Summer 2014</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">As a personal project, I worked on a website that would allow users to create their own profile page. The profile would act as a portfolio of their achievements and professional details. It was modeled after this profile page you're looking at now. It allowed users to add details, links, and files about everything relevant to them.<br /><br />
I originally started the project at a time when I was dissatisfied with LinkedIn's ability to showcase the portfolios and accomplishments of professionals and hobbyists. I discontinued work on the project after the summer. It seems that some of my ideas we're well justified, as LinkedIn has since improved their product to align more closely with my vision.
</div>
</div>
<div class="details_item_attachment_container">
</div>
</div>
</div>
<div class="details_item container">
<div class="header">
<div class="title">Book Publishing</div>
<div class="subtitle">2012 - 2014</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I've published two philosophy books. I couldn't find affordable or acceptable quality prints of a couple classic philosophy works, so I decided to print them myself. I took the freely available book contents, formatted them in <span class="texhtml" style="font-family: 'CMU Serif', cmr10, LMRoman10-Regular, 'Nimbus Roman No9 L', 'Times New Roman', Times, serif;">L<span style="text-transform: uppercase; font-size: 70%; margin-left: -0.36em; vertical-align: 0.3em; line-height: 0; margin-right: -0.15em;">a</span>T<span style="text-transform: uppercase; margin-left: -0.1667em; vertical-align: -0.5ex; line-height: 0; margin-right: -0.125em;">e</span>X</span>, designed the covers in Adobe InDesign, and had them printed at an online self-publishing shop.
</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment link" onClick="event.stopPropagation();window.open('http://www.blurb.com/user/brandon_b');return false;">Blurb Profile</div>
</div>
</div>
</div>
<div class="details_item container">
<div class="header">
<div class="title">This Profile Website!</div>
<div class="subtitle">December 2013</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">Yes, this website you're looking at right now. I built this profile to showcase myself, my design skills, and to use as a prototype for another project.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item container">
<div class="header">
<div class="title">CS 4HC3 Human-Computer Interaction: UI experiment</div>
<div class="subtitle">School Project: October - December 2013</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I created an HCI experiment that was designed for the McMaster CS 4HC3 class. It tests the readability of different styles and structures in web and application lists. The purpose is to see if there is a good approach to use when designing pages in the modern swiss-style, a style that I see incorporated a lot lately, but not always implemented well. A small group of students participated in the experiment.</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment link" onClick="event.stopPropagation();window.open('./InternalSites/CS4HC3Experiment/index.html');return false;">Check it out.</div>
</div>
</div>
</div>
<div class="details_item container">
<div class="header">
<div class="title">Artificial Intelligence: Automated Computer Design</div>
<div class="subtitle">2010 - 2011</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">My first computer science project. I created a web-based storefront that can design a desktop computer that is personalized to a customer's needs. The website chooses an optimal selection of components based on a customer's usage requirements and budget. This allows mass-customization for each individual customer and also an automated design process that tells the customer what computer is best for them.<br />
(The link below leads to a partially working application, as this server doesn't support PHP)</div>
</div>
<div class="details_item_attachment_container"><div class="details_item_attachment link" onClick="event.stopPropagation();window.open('./InternalSites/INFproject/home.htm');return false;">Check it out.</div></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="metro_details_container" id="contact_details">
<div class="metro_details text_details" >
<div class="details_header">Contact Information</div>
<div class="details_section">
<div class="details_section_header"></div>
<div class="details_section_body">
<p>Please get in touch for any reason!</p>
<div class="details_item contact_container">
<div class="header">
<div class="title">Email</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">brandonbyskov at gmail.com</div>
</div>
<div class="details_item_attachment_container"><div class="details_item_attachment"></div></div>
</div>
</div>
<div class="details_item contact_container">
<div class="header">
<div class="title">Phone</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<table class="contact_table">
<tr>
<td class="label">Cell (preferred)</td>
<td>1 (289) 237-8627</td>
</tr>
<tr>
<td class="label">Home</td>
<td>1 (905) 680-2135</td>
</tr>
</table>
</div>
<div class="details_item_attachment_container"><div class="details_item_attachment"></div></div>
</div>
</div>
<div class="details_item contact_container">
<div class="header">
<div class="title">Social Networking</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description"><a href="http://www.linkedin.com/pub/brandon-byskov/36/55a/610" onClick="event.stopPropagation();" target="_blank">LinkedIn</a></div>
</div>
<div class="details_item_attachment_container"><div class="details_item_attachment"></div></div>
</div>
</div>
<!-- or type in a message here! -->
</div>
</div>
</div></div>
<!-- Academic Papers details -->
<div class="metro_details_container" id="papers_details">
<div class="metro_details text_details" >
<div class="details_header">Skills</div>
<div class="details_section">
<div class="details_section_header">Programming Languages</div>
<div class="details_section_body">
<ul>
<li><b>Functional:</b> Haskell, Standard ML, Scala</li>
<li><b>Imperative:</b> C++, C, MATLAB, Java, Python</li>
<li><b>Web:</b> PHP, JavaScript, HTML, CSS/SASS</li>
<li><b>Other:</b> SQL, Assembly</li>
</ul>
</div>
<div class="details_section_header">Tools and Frameworks</div>
<div class="details_section_body">
<ul>
<li><b>Version Control:</b> Git, Subversion</li>
<li><b>Distributed Systems:</b> OpenMP, MPI</li>
<li><b>Graphics:</b> OpenGL</li>
<li><b>Networking:</b> TCP/IP</li>
<li><b>Typesetting:</b> <span class="texhtml" style="font-family: 'CMU Serif', cmr10, LMRoman10-Regular, 'Nimbus Roman No9 L', 'Times New Roman', Times, serif;">L<span style="text-transform: uppercase; font-size: 70%; margin-left: -0.36em; vertical-align: 0.3em; line-height: 0; margin-right: -0.15em;">a</span>T<span style="text-transform: uppercase; margin-left: -0.1667em; vertical-align: -0.5ex; line-height: 0; margin-right: -0.125em;">e</span>X</span></li>
<li><b>Operating Systems:</b> Linux, Windows</li>
<li><b>Build Systems:</b> make, cabal</li>
</ul>
</div>
</div>
</div></div>
<!-- Learning details -->
<div class="metro_details_container" id="learning_details">
<div class="metro_details text_details" >
<div class="details_header">Learning</div>
<div class="details_section">
<div class="details_section_header">School</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">Computer Science with minor in Business (Honours B.A.Sc.)</div>
<div class="subtitle">McMaster University, 2010 - 2015</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I've studied all the usual computer science topics, with particular emphasis on discrete math and CS theory. Some of the major projects I worked on are described in the <i>Projects</i> section of this website. Some notably difficult ones are a VNC remote desktop client written purely in Haskell and a ray-traced mandelbox video that was rendered on an AWS server and parallelized using OpenMP.<br /><br />
I began university in the business program, before deciding to switch into computer science in my second year. I maintain an interest in business and economics and have a completed a minor in business, studying ares such as operations, management, finance, sales and marketing. I've also participated in the McMaster Investment Club.</div>
</div>
<div class="details_item_attachment_container"><div class="details_item_attachment"></div></div>
</div>
</div>
</div>
</div>
<div class="details_section">
<div class="details_section_header">Languages</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">German, Intermediate level</div>
<div class="subtitle">Started January 2011</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I've taught myself an intermediate understanding of the German language using the Rosetta Stone software, online resources, online videos and movies, and friends.</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment pdf" onClick="event.stopPropagation();window.open('./Documents/Brandon Byskov - Sprachzeugnis.pdf');return false;">Assessment Certificate</div>
</div>
</div>
</div>
</div>
</div>
<div class="details_section">
<div class="details_section_header">Programming</div>
<div class="details_section_body">
<div class="details_item container">
<div class="header">
<div class="title">Project Euler</div>
<div class="subtitle">Started January 2015</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">I solve Project Euler problems to practice programming and because they're fun to do. I solve these math problems using C++ or Haskell. My code is available on GitHub.</div>
</div>
<div class="details_item_attachment_container">
<div class="details_item_attachment link" onClick="event.stopPropagation();window.open('https://github.com/brandonbyskov/Project-Euler-Solutions');return false;">GitHub Repository</div>
<div class="details_item_attachment image"><img style="margin-top:8px;" src="https://projecteuler.net/profile/brandonbyskov.png"></div>
</div>
</div>
</div>
</div>
</div>
<div class="details_section">
<div class="details_section_header">Online Courses</div>
<div class="details_section_body">
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://coursera-course-photos.s3.amazonaws.com/41/569c7574095ce7f5ec3b012380709f/tic_tac_toe_iStock_Natasha-Japp-Photography_webl.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Competative Strategy</div>
<div class="subtitle">Completed August 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This six-week course introduces game theory as a powerful tool to think about business strategy in a systematic way. Participants
learn to identify interdependencies among companies and anticipate the behaviour of competitors in their business decisions.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://s3.amazonaws.com/coursera/topics/comnetworks/small-icon.hover.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Computer Networks</div>
<div class="subtitle">Completed September 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course introduces the fundamental problems of computer networking, from sending bits over wires to running distributed applications, and explores the design strategies used to solve computer networking problems.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://coursera-course-photos.s3.amazonaws.com/f4/d9514067f811e3b0678bee3f464b62/escher_mas.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Critical Perspectives on Management</div>
<div class="subtitle">Completed March 2014, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course offers students the opportunity to explore today's management practices from unexpected perspectives in order to ask provocative questions about the modern business environment. This approach allows us to interrogate key management concepts in order to explore the thinking that informs them and, as importantly, the form of capitalism they foster.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://d15cw65ipctsrr.cloudfront.net/3c/cebe20352d11e49dc56df018365453/large-icon.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Functional Programming Principles in Scala</div>
<div class="subtitle">Completed June 2014, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course introduces the cornerstones of functional programming using the Scala programming language.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://coursera.s3.amazonaws.com/topics/growtogreatness/large-icon.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Grow to Greatness: Smart Growth for Private Businesses, Part I</div>
<div class="subtitle">Completed ???, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This Course is based on research and content from the Darden Graduate School of Business MBA course: "Growing an Entrepreneurial Business," and focuses on the common growth challenges faced by existing private businesses when they attempt to grow substantially.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://coursera-course-photos.s3.amazonaws.com/7c/9268909c2ef573dedeec650adbd3b5/Faded-logo.jpg"/>
</div>
</div>
<div style="float:left;">
<div class="title">Grow to Greatness: Smart Growth for Private Businesses, Part II</div>
<div class="subtitle">Completed June 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This Course is based on research and content from the Darden Graduate School of Business MBA course: "Growing an Entrepreneurial Business," and focuses on the common human resource challenges faced by private businesses when they attempt to grow substantially.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://coursera-course-photos.s3.amazonaws.com/00/621b9b2597807229ed0fa605f96cdc/HighPerformanceComputingIma.jpg"/>
</div>
</div>
<div style="float:left;">
<div class="title">High Performance Scientific Computing</div>
<div class="subtitle">Completed July 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">Programming-oriented course on effectively using modern computers to solve scientific computing problems arising in the physical/engineering sciences and other fields. Provides an introduction to efficient serial and parallel computing using Fortran 90, OpenMP, MPI, and Python, and software development tools such as version control, Makefiles, and debugging.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://s3.amazonaws.com/coursera/topics/insidetheinternet/small-icon.hover.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Internet History, Technology, and Security</div>
<div class="subtitle">Completed August 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This undergraduate (first-year level) course reviews the history of the Internet, explores the technical underpinnings of the Internet and finishes with an overview of how we communicate in a secure manner across the Internet.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://s3.amazonaws.com/coursera/topics/datasci/small-icon.hover.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Introduction to Data Science</div>
<div class="subtitle">Completed June 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course covered a broad set of topics critical to practical data science: relational databases, MapReduce, NoSQL, statistical modeling, basic machine learning, and visualization, and a variety of algorithmic topics.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://coursera-course-photos.s3.amazonaws.com/27/0c882ed4049498e49834ff054421b6/LogoMathPhil11.jpg"/>
</div>
</div>
<div style="float:left;">
<div class="title">Introduction to Mathematical Philosophy</div>
<div class="subtitle">Completed October 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course enumerates, and reflects on, various examples of how to apply mathematical methods to philosophical problems and questions.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://s3.amazonaws.com/coursera/topics/introphil/small-icon.hover.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Introduction to Philosophy</div>
<div class="subtitle">Completed December 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course provided an introduction to some of the main areas of research in contemporary philosophy. Topics included Epistemology, Philosophy of Science, Philosophy of Mind, Moral Philosophy and Metaphysics.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://s3.amazonaws.com/coursera/topics/ml/small-icon.hover.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Machine Learning</div>
<div class="subtitle">Completed November 2012, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course provides a broad introduction to machine learning, datamining, and statistical pattern recognition.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1" >
<img class="course_logo" style="position:relative;right: 20%;" src="https://lagunita.stanford.edu/c4x/Engineering/Nano/asset/Nano2014.jpg"/>
</div>
</div>
<div style="float:left;">
<div class="title">Nanomanufacturing</div>
<div class="subtitle">Completed October 2014, Stanford Online</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course covers current manufacturing technology and engineering challenges involved in the production of various semiconductor chips and components. It covers LCDs and OLEDs, lithography and patterning, process technology, FinFETs, flash memory, packaging, and 3D ICs.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
<div class="details_item logo container">
<div class="header">
<div class="course_logo_container_0">
<div class="course_logo_container_1">
<img class="course_logo" src="https://s3.amazonaws.com/coursera/topics/sna/small-icon.hover.png"/>
</div>
</div>
<div style="float:left;">
<div class="title">Social Network Analysis</div>
<div class="subtitle">Completed December 2013, Coursera.org</div>
</div>
</div>
<div class="details_item_body">
<div class="details_item_description_container">
<div class="details_item_description">This course covers the theory and application of network analysis across a range of domains.</div>
</div>
<div class="details_item_attachment_container"></div>
</div>
</div>
</div>
</div>
</div></div>
<!-- External Links details -->
<div class="metro_details_container" id="links_details">
<div class="metro_details text_details">
<div class="details_header">External Links</div>
<div class="details_section">
<div class="details_section_header"></div>
<div class="details_section_body">
<table class="links_table">
<tr>
<td>
<div class="details_item_attachment link" onclick="event.stopPropagation();window.open('https://www.coursera.org/user/i/c3791b10dd5508c5620d1038f625caae');return false;">Coursera Profile</div>
</td>
</tr>
<tr>
<td>
<div class="details_item_attachment link" onclick="event.stopPropagation();window.open('https://github.com/brandonbyskov');return false;">GitHub Profile</div>
</td>
</tr>
<tr>
<td>
<div class="details_item_attachment link" onclick="event.stopPropagation();window.open('http://www.linkedin.com/pub/brandon-byskov/36/55a/610');return false;">LinkedIn</div>
</td>
</tr>
</table>
</div>
</div>
</div></div>
<!-- Begin Tiles -->
<!-------------------------------------------------------------------------- -->
<div class="all_tiles_container">
<div class="tile_container" onclick="showDetails('about_details')">
<div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content"></div>
</div>
<div class="tile_heading">About Me</div></div>
<div class="tile_container" onclick="showDetails('work_details')"><div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content" id="work_content_item2" style="background-color:#69C;z-index:1;">
<div class="tile_item container">
<div class="header">Current Work</div>
<div class="body">
<div class="description">
<div class="title">Haskell Consultant</div>
<div class="subtitle">Writing Yesod apps with functional goodness.</div>
</div>
</div>
</div>
</div>
<div class="tile_content" id="work_content_item1" style="background-color:#89D;">
<div class="tile_item container">
<div class="header">Past Work</div>
<div class="body">
<div class="description">
<div class="title">Web App Developer</div>
<div class="subtitle">Developed health management software for eHealth research project.</div>
</div>
</div>
</div>
</div>
</div>
<div class="tile_heading">Work</div></div>
<div class="tile_container" onclick="showDetails('resume_details')">
<div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content" id="resume_content_item1" style="background-color:#69C;z-index:1;"><div style="width:calc(25vw - 13.136vh);"><img class="thumbnail" id="resume_thumbnail1" src="./Images/resume.jpg" /></div></div>
<div class="tile_content" id="resume_content_item2" style="background-color:#89D;"><div style="width:calc(25vw - 13.136vh);"><img class="thumbnail" id="resume_thumbnail2" src="./Images/resume.jpg" /></div></div>
<div class="tile_content" id="resume_content_item3" style="background-color:#6BB;"><div style="width:calc(25vw - 13.136vh);"><img class="thumbnail" id="resume_thumbnail3" src="./Images/resume.jpg" /></div></div>
</div>
<div class="tile_heading">Resume</div></div>
<div class="tile_container" onclick="showDetails('interests_details')"><div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content" id="interests_content_item1" style="background-color:#69C;z-index:1;">
<div class="tile_item container">
<div class="header"></div>
<div class="body">
<div style="description">
<table class="tile_table">
<tr>
<td class="label">I like to run :)</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="tile_content" id="interests_content_item2" style="background-color:#89D;">
<div class="tile_item container">
<div class="header"></div>
<div class="body">
<div style="description">
<table class="tile_table">
<tr>
<td class="label">Functional Programming is Cool!</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="tile_content" id="interests_content_item3" style="background-color:#6BB;">
<div class="tile_item container">
<div class="header"></div>
<div class="body">
<div style="description">
<table class="tile_table">
<tr>
<td class="label">I like learning new things. Online courses are great!</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="tile_heading">Interests</div></div>
<div class="tile_container" onclick="showDetails('project_details')"><div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content" id="projects_content_item1" style="background-color:#69C;z-index:1;">
<div class="tile_item container">
<div class="header"></div>
<div class="body">
<div style="description">
<table class="tile_table">
<tr>
<td class="label">Current Projects:</td>
<td>1</td>
</tr>
<tr>
<td class="label">Past Projects:</td>
<td>7</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="tile_content" id="projects_content_item2" style="background-color:#89D;">
<div class="tile_item container">
<div class="header">Current Project</div>
<div class="body">
<div class="description">
<div class="title">Artificial Intelligence Research</div>
<div class="subtitle">Research on theoretical AI and mathematical models.</div>
</div>
</div>
</div>
</div>
<div class="tile_content" id="projects_content_item3" style="background-color:#6BB;">
<div class="tile_item container">
<div class="header">Past Project</div>
<div class="body">
<div class="description">
<div class="title">VNC Viewer in Haskell</div>
<div class="subtitle">Remote desktop client with a touch of lambdas.</div>
</div>
</div>
</div>
</div>
</div>
<div class="tile_heading">Projects</div></div>
<div class="tile_container" onclick="showDetails('contact_details')"><div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content" id="contact_content_item1" style="background-color:#69C;z-index:1;"></div>
<div class="tile_content" id="contact_content_item2" style="background-color:#89D;">
<div class="tile_item container">
<div class="header"></div>
<div class="body">
<div style="description">
<table class="tile_table">
<tr>
<td class="label">Ways to get in touch:</td>
<td>3</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="tile_heading">Contact Information</div></div>
<div class="tile_container" onclick="showDetails('papers_details')"><div class="tile_content_container">
<div class="tile_content_border"></div>
<div class="tile_content" id="skills_content_item1" style="background-color:#69C;z-index:1;">
<div class="tile_item container">
<div class="header">Languages</div>
<div class="body">
<div class="description">
<div class="title">Functional: Haskell, ML, Scala</div>
<div class="subtitle"></div>
</div>
</div>
</div>
</div>
<div class="tile_content" id="skills_content_item2" style="background-color:#89D;">
<div class="tile_item container">
<div class="header">Tools and Frameworks</div>
<div class="body">
<div class="description">
<div class="title">Distributed Systems: OpenMP, MPI</div>
<div class="subtitle"></div>
</div>
</div>
</div>
</div>
<div class="tile_content" id="skills_content_item3" style="background-color:#6BB;">
<div class="tile_item container">
<div class="header">Tools and Frameworks</div>
<div class="body">
<div class="description">
<div class="title">Version Control: Git, Subversion</div>