-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1040 lines (1018 loc) · 36.2 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>
<head>
<title>Arktis :: Sigve Sebastian Farstad</title>
<meta charset="utf8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
type="text/css"
href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"
/>
<link rel="stylesheet" type="text/css" href="css.css" />
</head>
<body>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-25881803-1"]);
_gaq.push(["_setDomainName", ".arkt.is"]);
_gaq.push(["_trackPageview"]);
(function () {
var ga = document.createElement("script");
ga.type = "text/javascript";
ga.async = true;
ga.src =
("https:" == document.location.protocol
? "https://ssl"
: "http://www") + ".google-analytics.com/ga.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
<div class="container">
<header>
<h1>Arktis :: Sigve Sebastian Farstad</h1>
</header>
<div class="row">
<div class="col-sm-12">
<div class="box">
<p>
<a href="-"></a> Hello people. Here is a list of things I've been
working on recently. If you want to contact me, I can be reached
at
<a href="mailto:[email protected]">[email protected]</a
>.
</p>
<p>
For Ninjadev music inquiries, please contact me at one of the
following email addresses:
</p>
<ul>
<li>[email protected]</li>
<li>[email protected]</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.hyre.se/">
<img src="/images/hyre.png" />
<h2>Hyre in Stockholm</h2>
</a>
</div>
<p>
<a href="https://www.hyre.se"
>Hyre - Smidig hyrbil när du behöver det</a
>
has just launched in Sweden. Hooray!
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.pouet.net/prod.php?which=88627">
<img src="/images/color.png" />
<h2>Color</h2>
</a>
</div>
<p>
<a href="https://www.pouet.net/prod.php?which=88627">Color</a>
is a browser-based WebGL Demo by Ninjadev, nominated for "Best
High-End Demo 2021" at the Meteoriks awards.
<a href="https://www.youtube.com/watch?v=XFqs7CiJzlE"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.fiveletters.xyz/">
<img src="/images/fiveletters.png" />
<h2>Five Letters</h2>
</a>
</div>
<p>
<a href="https://www.fiveletters.xyz/">Five Letters</a>
is a challenging word puzzle game where you try to guess the
secret five letter word.
<a href="https://www.fiveletters.xyz">Play now for free!"</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.pouet.net/prod.php?which=86224">
<img src="/images/smoothie.png" />
<h2>Smoothie</h2>
</a>
</div>
<p>
<a href="https://www.pouet.net/prod.php?which=86224">Smoothie</a>
is a 64kb Windows demo made for the very last Solskogen demo
party. Sit back and enjoy this cool, fresh smoothie prepared just
for you!
<a href="https://www.youtube.com/watch?v=la20wrrNUm8"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div
style="
padding: 0 0 51.724137931%;
height: 0;
width: 100%;
position: relative;
"
>
<div
style="
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: green;
"
>
<iframe
scrolling="no"
frameborder="no"
width="100%"
height="100%"
allow="autoplay"
src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/856562764&color=%23ff5500&auto_play=false&hide_related=true&show_comments=false&show_user=false&show_reposts=false&show_teaser=false&visual=true"
></iframe>
</div>
</div>
<div class="image">
<h2>When Everyone Else Has Gone To Sleep</h2>
</div>
<p>
When Everyone Else Has Gone To Sleep is an executable piece of
music. That is, it is a standalone 16kb Windows executable that,
when run, generates and plays this song in real-time.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div
style="
padding: 0 0 51.724137931%;
height: 0;
width: 100%;
position: relative;
"
>
<div
style="
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: green;
"
>
<iframe
scrolling="no"
frameborder="no"
width="100%"
height="100%"
allow="autoplay"
src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/856563439&color=%23ff5500&auto_play=false&hide_related=true&show_comments=false&show_user=false&show_reposts=false&show_teaser=false&visual=true"
></iframe>
</div>
</div>
<div class="image">
<h2>Until dusk</h2>
</div>
<p>
Until Dusk is a music track released at the last ever Solskogen
demo party.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://tabletpractice.arkt.is">
<img src="/images/tablet-practice.png" />
<h2>Tablet Practice</h2>
</a>
</div>
<p>
<a href="https://tabletpractice.arkt.is">Tablet Practice</a> is a
simple practicing app for improving drawing accuracy using
Wacom-style digital drawing tablets and computer drawing pads.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a
href="https://arkt.is/when-you-play-this-you-will-shoot-bricks"
>
<img
src="/images/when-you-play-this-you-will-shoot-bricks.png"
/>
<h2>When You Play This You Will Shoot Bricks</h2>
</a>
</div>
<p>
<a href="https://arkt.is/when-you-play-this-you-will-shoot-bricks"
>When you play this you will shoot bricks</a
>
is a quick 48 hour game jam game made during Global Game Jam 2020.
The theme of the jam was "Repair".
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://stianj.com/flat-shade-society/">
<img src="/images/flat-shade-society.png" />
<h2>Flat Shade Society</h2>
</a>
</div>
<p>
<a href="https://stianj.com/flat-shade-society/"
>Flat Shade Society</a
>
is the official invitation for
<a href="https://www.solskogen.no">Solskogen 2019</a>, Norway's
largest demoparty. It was released at Revision 2019, where it
landed the 7<sup>th</sup> place.
<a href="https://www.youtube.com/watch?v=gr7ueMPRNDs"
>Watch on YouTube.</a
>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/construct.html">
<img src="/images/construct.png" />
<h2>Construct</h2>
</a>
</div>
<p>
<a href="/construct.html">Construct</a> is a WebGL demo made for
Solskogen 2019. The demo won 1<sup>st</sup>
place in the PC Demo compo.
<a href="https://www.youtube.com/watch?v=NIJ2_MU8ReE"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://stianj.com/look-closer/">
<img src="/images/look-closer.png" />
<h2>Look Closer</h2>
</a>
</div>
<p>
<a href="https://stianj.com/look-closer/">Look Closer</a> is a
WebGL demo made for TRSAC 2018. The demo won 3<sup>rd</sup>
place in the PC Demo compo.
<a href="https://youtu.be/5ajVQe6ujC4">Watch on YouTube.</a>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://heroesofthestorm.ideavote.arkt.is/top">
<img src="/images/ideavote.png" />
<h2>Ideavote</h2>
</a>
</div>
<p>
<a href="https://heroesofthestorm.ideavote.arkt.is/top"
>Ideavote</a
>
is a community product feedback tool that helps you figure out the
needs and desires of your customers.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://stianj.com/pinky-frinky.png.html">
<img src="/images/pinky-frinky.png" />
<h2>Pinky Frinky</h2>
</a>
</div>
<p>
<a href="https://stianj.com/pinky-frinky.png.html"
>Pinky Frinky</a
>
is a WebGL demo made for Solskogen 2018. The demo won 2<sup
>nd</sup
>
place in the PC Demo compo.
<a href="https://www.youtube.com/watch?v=MSGCKu2H7mI"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/sigvef/github-pull-request-colorizer">
<img src="/images/pull-request-colorizer.png" />
<h2>GitHub Pull Request Colorizer</h2>
</a>
</div>
<p>
<a href="https://github.com/sigvef/github-pull-request-colorizer"
>GitHub Pull Request Colorizer</a
>
is a must-have browser extension for GitHub if you work with many
active pull requests across multiple repositories in a small team
using the "NDV" workflow.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/no-invitation/">
<img src="/images/no-invitation.png" />
<h2>No Invitation</h2>
</a>
</div>
<p>
<a href="/no-invitation/">No Invitation</a> is the official
invitation for
<a href="https://2018.revision-party.net/start">Revision 2018</a>,
the world's largest demoparty. It was released at Under
Construction 2017, where it won the 1<sup>st</sup> place.
<a href="https://www.youtube.com/watch?v=YxLCvjuW9c4"
>Watch on YouTube.</a
>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/sigvef/github-better-image-paster">
<img src="/images/image-paster.png" />
<h2>GitHub Better Image Paster</h2>
</a>
</div>
<p>
<a href="https://github.com/sigvef/github-better-image-paster"
>GitHub Better Image Paster</a
>
is a browser extension that automatically resizes and formats
images pasted into text fields on GitHub. Especially useful for
portrait screenshots from mobile devices.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/sigvef/git-praise">
<img src="/images/git-praise.png" />
<h2>Git Praise</h2>
</a>
</div>
<p>
<a href="https://github.com/sigvef/git-praise">Git Praise</a> is a
nicer git blame for the terminal.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/drop/">
<img src="/images/drop.png" />
<h2>Drop</h2>
</a>
</div>
<p>
The <a href="/drop/">interactive web player</a> of my third album
release, "Drop".
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.hyre.no"
><img src="/images/hyre.png" />
<h2>Hyre</h2></a
>
</div>
<p>
<a href="https://www.hyre.no">Hyre</a> is car sharing made easy!
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/zeven"
><img src="/images/zeven.png" />
<h2>Zeven</h2></a
>
</div>
<p>
<a href="/zeven">Zeven</a> is a THREE.js WebGL demo made for
Solskogen 2017. The demo won 3rd place in the Newschool Demo
compo.
<a href="https://www.youtube.com/watch?v=fLoIKX_1nwQ"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://sigvef.github.io/splashjam/"
><img src="/images/splashjam-2017.png" />
<h2>Splashjam 2017</h2></a
>
</div>
<p>
<a href="https://sigvef.github.io/splashjam/">Splashjam 2017</a>
is a game made for Splashjam 2017. The theme for the jam was
rotations.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/what-are-you-syncing-about"
><img src="/images/what-are-you-syncing-about.png" />
<h2>What Are You Syncing About?</h2></a
>
</div>
<p>
<a href="/what-are-you-syncing-about"
>What Are You Syncing About?</a
>
is a THREE.js WebGL demo made for Revision 2017. The demo won 4th
place in the PC Demo compo.
<a href="https://www.youtube.com/watch?v=UYU5POqHdeA"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/crankwork-steamfist"
><img src="/images/crankwork-steamfist.png" />
<h2>Crankwork Steamfist</h2></a
>
</div>
<p>
<a href="/crankwork-steamfist">Crankwork Steamfist</a> is a
THREE.js WebGL demo made for Solskogen 2016. The demo won 3rd
place in the Newschool Demo compo.
<a href="https://www.youtube.com/watch?v=oDtGu8RjBb4"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://dwitter.net/top"
><img src="/images/dwitter.png" />
<h2>Dwitter</h2></a
>
</div>
<p>
<a href="https://dwitter.net/top">Dwitter</a> is a social platform
for tweet-sized demos. 140 bytes is all you get! Check out the
code at
<a href="https://github.com/lionleaf/dwitter"
>https://github.com/lionleaf/dwitter</a
>
.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.zombocam.com"
><img src="/images/zombocam.png" />
<h2>Zombocam</h2></a
>
</div>
<p>
<a href="https://www.zombocam.com">Zombocam</a> is a browser
extension that allows you to put filters and effects on your
webcam. It works on every website that uses your webcam!
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/ninjadev/harmonin"
><img src="/images/harmonin.png" />
<h2>Harmonin</h2></a
>
</div>
<p>
<a href="https://github.com/ninjadev/harmonin">Harmonin</a> is an
FL to Web MIDI API bridge and all-in-one synthesizer built for js
demos.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://www.musicvideodispenser.com"
><img src="/images/music-video-dispenser.png" />
<h2>Music Video Dispenser</h2></a
>
</div>
<p>
<a href="https://www.musicvideodispenser.com"
>Music Video Dispenser</a
>
is an online YouTube music video generation service. Turn your mp3
into an mp4!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://sigvef.github.io/texturegen"
><img src="/images/texturegen.png" />
<h2>Texturegen</h2></a
>
</div>
<p>
<a href="https://sigvef.github.io/texturegen">Texturegen</a> is a
procedural texture generation framework and editor tool. It was
made to explore procedural asset generation techniques for
demoscene productions.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/ninjacon2016"
><img src="/images/ninjacon.png" />
<h2>Ninjacon</h2></a
>
</div>
<p>
<a href="/ninjacon2016">Ninjacon</a> is Ninjadev's annual hacker's
conference. It usually lasts 3-5 days and consists of a variety of
different talks, workshops and competitions.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="http://lionleaf.org/shrinequest/client"
><img src="/images/shrine-quest-light-and-dark.png" />
<h2>Shrine Quest: Light and Dark</h2></a
>
</div>
<p>
<a href="http://lionleaf.org/shrinequest/client"
>Shrine Quest: Light and Dark</a
>
is a browser-based online multiplayer top-down objective-based
shooter hacked together over a weekend for Global Game Jam 2016.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/everything-is-fashion"
><img src="/images/everything-is-fashion.png" />
<h2>Everything is Fashion</h2></a
>
</div>
<p>
<a href="/everything-is-fashion">Everything is Fashion</a> is a
THREE.js WebGL demo made for Solskogen 2015. The demo won 2nd
place in the newschool demo compo.
<a href="https://www.youtube.com/watch?v=gVcshkaV4oc"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://feat.fm"
><img src="/images/feat-fm.png" />
<h2>Feat.fm</h2></a
>
</div>
<p>
<a href="https://feat.fm">Feat.fm</a> brings you live, interactive
concerts with up-and-coming artists from all over the world!
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/heatseeker"
><img src="/images/heatseeker.png" />
<h2>Heatseeker</h2></a
>
</div>
<p>
<a href="/heatseeker">Heatseeker</a> is a THREE.js WebGL demo made
for AbelLAN Autumn 2014 demo compo, in which it won 1st place.
Heatseeker was made using the eminent Ninjadev demotool nin.
<a href="https://www.youtube.com/watch?v=fu8FdRjeDiY"
>Watch on YouTube.</a
>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/sigvef/elma"
><img src="/images/elma-python-library.png" />
<h2>Elma Python Library</h2></a
>
</div>
<p>
<a href="https://github.com/sigvef/elma">Elma Python Library</a>
is an open-source python module that enables high-level
programmatic parsing and manipulation of binary level and replay
files for the 2000 game Elastomania.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/sigvef/github-notification-snoozer"
><img src="/images/github-notification-snoozer.png" />
<h2>GitHub Notification Snoozer</h2></a
>
</div>
<p>
<a href="https://github.com/sigvef/github-notification-snoozer"
>GitHub Notification Snoozer</a
>
is a Google Chrome extension that allows users to selectively mute
notifications based on the originating repositories. This is a
useful tool to help maintain a clearly defined boundary between
work and spare time for people who use the same GitHub account for
work and for personal activity.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/ninjadev/nin"
><img src="/images/nin.png" />
<h2>Nin</h2></a
>
</div>
<p>
<a href="https://github.com/ninjadev/nin">Nin</a> is ninjatool.
That is, nin is Ninjadev's internal demotool. It is an open-source
tool for easing development of browser-based WebGL demoscene
productions. The tool itself also runs in the browser, and uses
well-known metaphors from video editing software to manipulate a
real-time visual coding environment.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="http://arkt.is/evolving-cellular-automata-in-materio.pdf"
><img src="/images/evolving-cellular-automata-in-materio.png" />
<h2>Evolving Cellular Automata in-Materio</h2></a
>
</div>
<p>
<a href="http://arkt.is/evolving-cellular-automata-in-materio.pdf"
>Evolving Cellular Automata in-Materio</a
>
is my Master's thesis written at the Norwegian Univerity of
Science and Technology. The thesis explores the possibility of
implementing Cellular Automata as a computational abstraction on
top of a single-walled carbon nanotube and polymer composite
material.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/inakuwa-oasis"
><img src="/images/inakuwa-oasis.png" />
<h2>Inakuwa Oasis</h2></a
>
</div>
<p>
<a href="/inakuwa-oasis">Inakuwa Oasis</a> is a THREE.js WebGL
demo made for Solskogen 2014. The demo won 1st place in the
newschool demo compo. Inakuwa Oasis is the inaugural demo of
Ninjadev's new demotool nin.
<a href="https://www.youtube.com/watch?v=VFh7AuDcslQ"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/old-computers-never-die"
><img src="/images/old-computers-never-die.png" />
<h2>"Old Computers Never Die!"</h2></a
>
</div>
<p>
<a href="/old-computers-never-die">"Old Computers Never Die!"</a>
is a 3D web-demo written for the first demo competition of AbelLAN
in Trondheim. The theme of the competition was "old school". The
demo won 1st place in the competition.
<a href="https://www.youtube.com/watch?v=cZv_q444cW8"
>Watch on YouTube.</a
>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="http://pdftotext.github.io"
><img src="/images/pdftotext-github-io.png" />
<h2>pdftotext.github.io</h2></a
>
</div>
<p>
<a href="http://pdftotext.github.io">pdftotext.github.io</a>
claims to be the best online service for easily extracting text
from your PDF files. It leverages the newest HTML5 technologies to
forego server-side work. Since all computation is done
client-side, it can be hosted statically on GitHub Pages, which
indeed it is.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/barricelli"
><img src="/images/barricelli.png" />
<h2>Barricelli</h2></a
>
</div>
<p>
<a href="/barricelli">Barricelli</a> is a specialized genetic
algorithm computer designed and built by 9 other students and
myself at the Norwegian University of Science and Technology. It
is a computer designed to quickly find good approximation
solutions to hard problems using a custommade hardware-accelerated
genetic algorithm solver.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/cute-animals-inc"
><img src="/images/cute-animals-inc.png" />
<h2>Cute Animals Inc.</h2></a
>
</div>
<p>
<a href="/cute-animals-inc">Cute Animals Inc.</a> is an addictive
incremental game written during a 48-hour-long game-jam called
Bacon Game Jam 06. The theme of the the jam was "Rainbow". The aim
of the game is to protect a pot of gold from evil monsters using
rainbow-powered lasers. The game won 3rd place in the jam.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://wikipendium.no"
><img src="/images/wikipendium.png" />
<h2>Wikipendium</h2></a
>
</div>
<p>
<a href="https://wikipendium.no">Wikipendium</a> is the compendium
that anyone can edit. Wikipendium's goal is to provide freely
available compendiums for every course. At the moment, most of the
compendiums on Wikipendium are for courses offered at NTNU.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/tunl-mntn-wter"
><img src="/images/tunl-mntn-wter.png" />
<h2>TUNL-MNTN-WTER</h2></a
>
</div>
<p>
<a href="/tunl-mntn-wter">TUNL-MNTN-WTER</a> is a THREE.js WebGL
demo made for Solskogen 2013. It ended up on 5th place in the PC
demo compo.
<a href="https://www.youtube.com/watch?v=x65kLjzgDwY"
>Watch on YouTube.</a
>
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/honeycomb"
><img src="/images/honeycomb.png" />
<h2>HONEYCOMB</h2></a
>
</div>
<p>
<a href="/honeycomb">HONEYCOMB</a> is the first THREE.js WebGL
demo I've been a part of, made for Solskogen 2012. It won 1st
place in the web compo. The demo features what was probably the
world's first timing-correct pure javascript midi-playing
synthesizer when it was released.
<a href="https://www.youtube.com/watch?v=8KCCiSwM8jg"
>Watch on YouTube.</a
>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/firefly"
><img src="/images/firefly.png" />
<h2>Firefly</h2></a
>
</div>
<p>
<a href="/firefly">Firefly</a> is a game written during a
48-hour-long game jame called Bacon Game Jam 05. The aim was to
make a game from scratch built around the theme of the jam:
"Lights Out".
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/windwill"
><img src="/images/windwill.png" />
<h2>Windwill</h2></a
>
</div>
<p>
<a href="/windwill">Windwill</a> is a game written during a
48-hour-long game jam called Bacon Game Jam 03. The theme of the
jam was: "Wind-powered". Windwill is quite playable on iPad, so
you should try that if you have one.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="/eventhandler"
><img src="/images/event-handler.png" />
<h2>Event Handler</h2></a
>
</div>
<p>
<a href="/eventhandler">Event Handler</a> is a game written during
a 48-hour-long game jam called Bacon Game Jam 02. The aim was to
make a game from scratch built around the theme of the jam:
"Reverse Perspective". Event Handler was written in about 24 hors.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="box">
<div class="image">
<a href="https://github.com/sigvef/sigvehtml"
><img src="/images/sigvehtml.png" />
<h2>Sigvehtml</h2></a
>
</div>
<p>
<a href="https://github.com/sigvef/sigvehtml">Sigvehtml</a> is an
ASCII-art-oriented document description language that compiles to