-
Notifications
You must be signed in to change notification settings - Fork 2
/
fixtures.json
10591 lines (10591 loc) · 360 KB
/
fixtures.json
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
[
{
"pk": 1,
"model": "contests.contest",
"fields": {
"start": "2013-10-26T01:00:00Z",
"theme": "Coincidence",
"number": 1
}
},
{
"pk": 2,
"model": "contests.contest",
"fields": {
"start": "2013-11-01T14:00:00Z",
"theme": "Cuboid",
"number": 2
}
},
{
"pk": 3,
"model": "contests.contest",
"fields": {
"start": "2014-02-01T02:00:00Z",
"theme": "Growing a Beard",
"number": 3
}
},
{
"pk": 4,
"model": "contests.contest",
"fields": {
"start": "2014-03-08T02:00:00Z",
"theme": "Everyday Life",
"number": 4
}
},
{
"pk": 5,
"model": "contests.contest",
"fields": {
"start": "2014-05-17T01:00:00Z",
"theme": "Overkill",
"number": 5
}
},
{
"pk": 6,
"model": "contests.contest",
"fields": {
"start": "2014-07-12T01:00:00Z",
"theme": "Demake",
"number": 6
}
},
{
"pk": 7,
"model": "contests.contest",
"fields": {
"start": "2014-09-20T01:00:00Z",
"theme": "The Sea",
"number": 7
}
},
{
"pk": 8,
"model": "contests.contest",
"fields": {
"start": "2014-11-08T02:00:00Z",
"theme": "Bots",
"number": 8
}
},
{
"pk": 9,
"model": "contests.contest",
"fields": {
"start": "2015-01-24T02:00:00Z",
"theme": "To Be Determined",
"number": 9
}
},
{
"pk": 1,
"model": "contests.category",
"fields": {
"name": "Video Game",
"description": "Entertain me with your coding styles"
}
},
{
"pk": 2,
"model": "contests.category",
"fields": {
"name": "Website/Webapp",
"description": "Something that comes up in a browser"
}
},
{
"pk": 3,
"model": "contests.category",
"fields": {
"name": "Visual Art",
"description": "Paintings, drawings, Photoshoppings, graphic design, etc."
}
},
{
"pk": 4,
"model": "contests.category",
"fields": {
"name": "Musical Thing",
"description": "A recording you playing, computer composed music, a cover of a song, etc."
}
},
{
"pk": 5,
"model": "contests.category",
"fields": {
"name": "Writing",
"description": "Screenplays, novels, comedy sketches, etc."
}
},
{
"pk": 6,
"model": "contests.category",
"fields": {
"name": "Crafts Project",
"description": "A sewing, a knitting, a needleworking, a crocheting, etc."
}
},
{
"pk": 7,
"model": "contests.category",
"fields": {
"name": "Computer Program",
"description": "Something that's not a game and doesn't come up in a browser but made on the computer"
}
},
{
"pk": 8,
"model": "contests.category",
"fields": {
"name": "Food",
"description": "Something you baked, cooked, charbroiled, or assembled from mostly organic materials."
}
},
{
"pk": 1,
"model": "contests.submission",
"fields": {
"category": 5,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Outline for my Novel - Broken Scales",
"receive_ratings": false,
"contest": 1,
"description": "I will be working on writing the majority of writing my outline this weekend.",
"user": 42,
"link_3": "",
"link_2": "",
"link_1": "http://nanowrimo.org/participants/wes118/novels/broken-scales"
}
},
{
"pk": 2,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/lwimw_sketch.jpg",
"image_3": "",
"image_2": "",
"title": "Look What I Made This Weekend - Mature Content",
"receive_ratings": true,
"contest": 1,
"description": "A super quick sketch of what I'm gonna do this weekend. I'll ink it soon and start on the coloring process :)\r\n\r\nNot using the theme btw\r\n\r\nGood luck to everyone else\r\n\r\n! WARNING !\r\nLinks to pictures are MATURE CONTENT\r\n\r\n*EDIT*\r\n\r\nFrom this point I will be linking the Inked version as well as the colored, as they are NSFW and there for have MATURE CONTENT.\r\n\r\nLink 1: Lineart\r\n\r\nLink 2: Colored/Shaded Version 1\r\n\r\nLink 3: Colored/Shaded Version 2\r\n\r\nWhat are the differences between link 2 and 3?\r\nBasically I used different shading styles, I don't know which I prefer more so I did both styles.",
"user": 62,
"link_3": "http://img849.imageshack.us/img849/4005/7uvh.jpg",
"link_2": "http://img89.imageshack.us/img89/9439/dd8b.jpg",
"link_1": "http://img69.imageshack.us/img69/1641/wx5r.jpg"
}
},
{
"pk": 3,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Pixel",
"receive_ratings": true,
"contest": 1,
"description": "Nothing much...",
"user": 68,
"link_3": "",
"link_2": "",
"link_1": "http://pixelgame.fulba.com/"
}
},
{
"pk": 4,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/realgame.jpg",
"image_3": "submission_images/v005.png",
"image_2": "submission_images/v006.png",
"title": "Battle Network : Prototype",
"receive_ratings": true,
"contest": 1,
"description": "Welcome to my entry. I was a fan of Megaman Battle Network series when I was younger so I decided to start this project two days ago! I hope you enjoy it and that you will hear about it later when it actually looks like the game :).\r\n\r\nLink #1: Wiki of the actual game\r\nLink #2: My website\r\nLink #3: Latest executable of the game (v0.07)\r\n\r\nScreenshot #1: Real game (as reference)\r\nScreenshot #2: previously (v0.06)\r\nScreenshot #3: Where I was previously (v0.05)",
"user": 70,
"link_3": "http://www.filedropper.com/v007",
"link_2": "http://pheelbert.co.nf/",
"link_1": "http://en.wikipedia.org/wiki/Mega_Man_Battle_Network"
}
},
{
"pk": 5,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "HTML/Javascript slideshow",
"receive_ratings": true,
"contest": 1,
"description": "Bleh, I was going to make a html/javascript thing to give you the code for this with the images/text arrays already in for you, so you could just copy/paste, but i got angry and the stupid errors and difficulty with onclick and deleted that file. i should probably get it back incase i ever decide to try to fix it.",
"user": 67,
"link_3": "",
"link_2": "http://pastebin.com/GtqS4mHM",
"link_1": "http://pastehtml.com/view/dkigaag0i.html"
}
},
{
"pk": 6,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/1.png",
"image_3": "",
"image_2": "submission_images/Dino_capitalism.png",
"title": "Dino Capitalism",
"receive_ratings": true,
"contest": 1,
"description": "Dino Capitalism\r\n============\r\n\r\nDino capitalism is a game about.. well... capitalism! \r\n\r\nKey features\r\n----------------\r\n* There is no goal. Just make money.\r\n* There is no balance. Everything is broken.\r\n* Dinosaurs\r\n\r\nInstructions\r\n--------------\r\n* You can buy upgrades in the bottom left.\r\n* All of the data you need to know is on the top of the game.\r\n* Events will happen every minute. They are displayed in the red text at the bottom of the screen.\r\n* Taxes affect your overall profits. Try to reduce them or find another way to offset them.\r\n* Factories reduce the batch time by .1 seconds, to a minimum of 2 seconds per batch.\r\n* Workers create dinos based on their productivity( 2D Means 2 dinos per worker, per batch ).\r\n* Your dinosaur prices can be increased through various upgrades to the dinosaurs themselves.\r\n\r\nI may update this some more before the contest is up. I had alot of fun making it, and it is the first game I have ever finished.",
"user": 32,
"link_3": "",
"link_2": "http://www.dooskington.com/data/dino_capitalism/dino_capitalism.rar",
"link_1": "http://www.dooskington.com/data/dino_capitalism/webplayer/Web.html"
}
},
{
"pk": 7,
"model": "contests.submission",
"fields": {
"category": 4,
"image_1": "submission_images/score_0.png",
"image_3": "",
"image_2": "",
"title": "Music Piece for Dooskington's game, \"DinoCapitalism\"",
"receive_ratings": true,
"contest": 1,
"description": "Well. What I expected to take me 48 hours took me only about 48 minutes. At first, I wanted to compose a piece that was very epic and powerful. Then, I thought on doing a jazz piece. It turned out that these ideas would need more than 48 hours of work put into it. When Dooskington messaged and asked if I could compose something for his game, I said, \"Sure, why not.\" So the song I submitted for his game will be my submission as well. Hope you enjoy!",
"user": 25,
"link_3": "",
"link_2": "",
"link_1": "http://musescore.com/user/65219/scores/137579"
}
},
{
"pk": 8,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/scdgoa.png",
"image_3": "",
"image_2": "submission_images/omgkappa.png",
"title": "Super Cool Dance Game Of Awesome",
"receive_ratings": true,
"contest": 1,
"description": "So this is my game. Pretty outstanding, ey. Arrow keys to move, space to shoot.",
"user": 7,
"link_3": "",
"link_2": "",
"link_1": "jordanfitz.com/lwimw/1"
}
},
{
"pk": 9,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Leprechaun Simulator 2014",
"receive_ratings": true,
"contest": 1,
"description": "You are heading towards your pot of gold, when you suddenly find that your rainbow path is being invaded! Santa, rabbit-things, and poptart-cats - oh my! Use your power-ups and dodging skills to get to your beloved pot of gold!\r\n\r\nThis game was created this weekend for the Bacon Game Jam (theme: rainbows), and took about 5 hours of dev (over a period of two days) to create.\r\n\r\nControl your character with the WASD/arrow keys, and avoid death for five minutes - the game will then end as you capture your gold!",
"user": 77,
"link_3": "",
"link_2": "https://bitbucket.org/joeb3219/bgj6/src/",
"link_1": "http://charredgames.com/games/jam/bgj6/leprechaun-simulator.jar"
}
},
{
"pk": 10,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/0fb7677594ef088e4dbbd3898c130441.png",
"image_3": "",
"image_2": "",
"title": "Slippery Slope Climb",
"receive_ratings": true,
"contest": 1,
"description": "In this game you press spacebar once a second to move a red square upward a slippery icy slope. If you press space too fast, the game will tilt, and if you press it too slow, you will fall down. You have strong coffee addiction, and have to click on coffee mugs to not die. Also, there are angry dinosaurs running down the slope and other cool stuff.\r\n\r\nControls:\r\n-Space: climb\r\n-Mouse left click on coffee mugs: collect coffee\r\n-Mouse right click on the player: jump\r\n\r\nI tried to implement all of the themes that dv killed, which include:\r\n-slippery slope\r\n-ice\r\n-tilt\r\n-upside down\r\n-coffee addiction\r\n-relative\r\n-dinosaurs\r\n\r\nDidn't have time (and motivation) to finish everything, but it's working.",
"user": 39,
"link_3": "",
"link_2": "",
"link_1": "http://files.1337upload.net/SlipperySlopeClimb.exe"
}
},
{
"pk": 11,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/Ropes.png",
"image_3": "",
"image_2": "",
"title": "G13",
"receive_ratings": true,
"contest": 1,
"description": "This is a movement system prototype. With ropes.\r\n\r\nControls:\r\nWASD + mouse - regular movement\r\nQ/E - gapling hooks\r\nSpacebar - jump/pull\r\nBackspace - respawn\r\nEnter - mouse lock [technical]",
"user": 57,
"link_3": "",
"link_2": "",
"link_1": "http://dl.dropboxusercontent.com/u/3498386/G13/r50_testrun/r50_testrun.html"
}
},
{
"pk": 12,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Press X to Not Die: THE GAME!",
"receive_ratings": true,
"contest": 1,
"description": "This game is a fucking evil one. 'Nuff said.\r\n\r\nFirst link is game, second link is first dependency, third link is second dependency.",
"user": 43,
"link_3": "http://python-sfml.org/download.html",
"link_2": "http://python.org/download",
"link_1": "https://www.dropbox.com/s/96lw50i45atlirz/LWIMW%201%20-%20Press%20X%20to%20Not%20Die%20the%20Game.zip"
}
},
{
"pk": 13,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "LWIMW Website",
"receive_ratings": false,
"contest": 1,
"description": "I was going to make an animation but then I got burned out in general and I think I need a vacation!\r\n\r\nFortunately, this website sort of counts as an entry, and since other people wanted me to be able to rate their games, I decided to put this site in here without ratings enabled for that purpose.\r\n\r\nCheers and all.\r\nDavid",
"user": 2,
"link_3": "",
"link_2": "",
"link_1": "http://lookwhatimadeweekend.com"
}
},
{
"pk": 14,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Arena Shotter",
"receive_ratings": true,
"contest": 1,
"description": "Awesomeness. \r\nWASD/Arrow Keys to move\r\nClick to shoot\r\n",
"user": 22,
"link_3": "",
"link_2": "",
"link_1": "https://dl.dropboxusercontent.com/u/71526571/LWIMW/win32.zip"
}
},
{
"pk": 15,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "submission_images/LWIMTHINGUSE.png",
"image_3": "",
"image_2": "",
"title": "contests.Subreddit",
"receive_ratings": true,
"contest": 1,
"description": "For the first ever LWIMW I decided to create a community where we could discuss submissions or ideas we had for them on Reddit. (Like a forum!)\r\n\r\nIf you have a reddit account feel free to post your submission and comment on other posts.",
"user": 6,
"link_3": "",
"link_2": "",
"link_1": "http://www.reddit.com/r/LWIMW/"
}
},
{
"pk": 16,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "submission_images/Capture.PNG",
"image_3": "",
"image_2": "",
"title": "Game Dev. Weekend",
"receive_ratings": true,
"contest": 1,
"description": "For Look What I Made Weekend I made my own game competition Game Dev. Weekend. I will be running the first compo soon.",
"user": 37,
"link_3": "",
"link_2": "",
"link_1": "http://www.gamedevweekend.com/"
}
},
{
"pk": 17,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "I made this in an hour, almost does nothing, don't even bother.",
"receive_ratings": true,
"contest": 1,
"description": "I didn't really participate so I just threw something I started working on just today.",
"user": 79,
"link_3": "",
"link_2": "",
"link_1": "https://mega.co.nz/#!SIsXlS6T!UNEMZCWAH8swezdYnXd6yBxFMM8_LXF8BLoOxI4PhQU"
}
},
{
"pk": 18,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/LWIMW_1_-_Gamplay.png",
"image_3": "",
"image_2": "submission_images/LWIMW_1_-_Menu.png",
"title": "Ice Runner",
"receive_ratings": true,
"contest": 1,
"description": "-WASD/Arrow Keys - move/select menu buttons/list items\r\n-Enter - press menu buttons\r\n\r\n-The bottom left shows your current score and the required score to pass the level and unlock the next level\r\n-The bottom right show a cut-off gold coin the more the coin is reveald the closer you are to getting gold\r\n- total of 6 levels\r\n-the obstacles are randomly generated\r\n-the levels change the generation and player mechanics\r\n\r\nbugs:\r\n- add profile may take serveral presses\r\n- adding profile causes a list with no selected item scrolling down will fix this",
"user": 66,
"link_3": "",
"link_2": "",
"link_1": "http://www.mediafire.com/download/2z01asubu25tad5/Ice_Runner.zip"
}
},
{
"pk": 19,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/Title.png",
"image_3": "",
"image_2": "",
"title": "Switch: Interdimensional Puzzling!",
"receive_ratings": true,
"contest": 1,
"description": "Hey Everyone,\r\n\r\nThank you for checking out my entry! This game \"Switch: Interdimensional Puzzling!\" is my FIRST EVER released title, so I am really excited to be able to bring it to you. It's been a lot of work. 25+ Hours across the two days, and a bunch of headaches, plus a last minute mechanic scrap because Game Maker refused to work, but after all that, I'm happy with the final product. (Could do without the \"Made With Game Maker Light\" watermark, though.)\r\n\r\nSwitch is a game about speedrunning through levels, completing tasks in a particular order in order to move through the levels. Discovering which routes or techniques are fastest, how to use and abuse the collision/physics engine, and trying to figure out which tasks are necessary/worth doing will all help you get the fastest time.\r\n\r\nThere are a few bugs and errors, and the collision system is meh, but I actually think that the collision makes the game better in a way, allows for a little but more free, not so rigid movement system, where some of the rules of how to move are determined by how you play (If that makes sense to anyone but me.) \r\n\r\nControls:\r\n\r\nArrow Keys Or WASD: Move\r\n\r\nSpace: Swap Worlds\r\n\r\nEnter: Go Through Door\r\n\r\nMay continue this game, will probably be making a Post-Mortem, and will fix any bugs or errors that are brought to my attention to help the game play better. (You can send bugs, etc to [email protected]) The person to post of screencap of the end screen with the lowest score + highest gems by Monday will be given 2500 Creds ($25.00) to spend @ 0credsstore.tumblr.com (Please don't break the game or use Photoshop, I'm trying to make things fun for you all, and all I ask is that you don't take advantage of my kindness.)\r\n\r\nThe First Link Below Is The COMPO Version, The Second Will Be The Continually Updated POST COMPO Version. (There are a few bugs in the first version, mainly, the game doesn't note your score.) (Cause I'm an idiot) (And cause I forgot to check \"Visible\")... #WhyIDoDis\r\n\r\nThanks Again Everyone,\r\n\r\n- 0Creds",
"user": 64,
"link_3": "",
"link_2": "https://www.dropbox.com/s/qb8pd3fqgyaa1sz/Switch-0-1-2.exe",
"link_1": "https://www.dropbox.com/s/25h1fnjhg0476og/Switch.exe"
}
},
{
"pk": 20,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/lwimw2-post.PNG",
"image_3": "",
"image_2": "",
"title": "Peoples",
"receive_ratings": true,
"contest": 2,
"description": "A couple of pixel people I drew that will be in my next entry for LWIMW 3...",
"user": 68,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 21,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "submission_images/screen_1.png",
"image_3": "",
"image_2": "",
"title": "Customisable Tardis",
"receive_ratings": true,
"contest": 2,
"description": "Customisable Tards is an online computer program that allows you to customise the colour and speed of your own tardis.",
"user": 37,
"link_3": "",
"link_2": "",
"link_1": "http://www.technocf.co.uk/lwimw/2/"
}
},
{
"pk": 22,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/pixelcuboid.png",
"image_3": "",
"image_2": "",
"title": "Pixel Cuboid",
"receive_ratings": true,
"contest": 2,
"description": "A Pixel-atex Cuboid created for LWIMW 2.",
"user": 92,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 23,
"model": "contests.submission",
"fields": {
"category": 7,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Segfault's Core Dump",
"receive_ratings": true,
"contest": 3,
"description": "Trololololol.\r\nThis is a spam writer (not a spam*bot*; it doesn't send the messages, you do) that I wrote in about 5 minutes to help troll DV. It's extremely small, extremely customisable, and extremely easy to use. It spits output to stdout, so you can pipe it to a text file if the need arises.",
"user": 43,
"link_3": "",
"link_2": "http://hastebin.com/xugawakewe.py",
"link_1": "https://www.dropbox.com/s/sjg32i699cu87ts/spammajamma.py"
}
},
{
"pk": 24,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "submission_images/preLWIMW.png",
"image_3": "submission_images/trail-magic-2_1.png",
"image_2": "submission_images/trail-magic_1.png",
"title": "Trail Magic",
"receive_ratings": true,
"contest": 3,
"description": "My project is an interactive website that will be part of the companion site to a book my friend is writing.\r\n\r\nI didn't quite start from scratch on this project. The first image below is the progress I had made before the weekend, and the second and third images show the current status after the weekend.\r\n\r\nI made a lot of progress this weekend. I added GPS routes to the map, added a table of contents, added marker clustering, improved the graphic design (CSS and basemap), and added about 25% of the final content.\r\n\r\nThe only essential things I have left to do are adding the rest of the content, working with my friend on palette and graphics, and tweaking some small things.",
"user": 110,
"link_3": "",
"link_2": "",
"link_1": "http://gtg339g.com/trailmagic/LWIMW.html"
}
},
{
"pk": 25,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/Screen_Shot_2014-02-02_at_12.08.37_AM.png",
"image_3": "submission_images/Screenshot_2014-02-02_22.04.09.png",
"image_2": "submission_images/Screen_Shot_2013-12-31_at_10.31.08_PM.png",
"title": "A Peasant's Tale (My RPG) Combat System",
"receive_ratings": true,
"contest": 3,
"description": "Ok so this was my first LWIMW. In fact, this was actually my first jam ever so yay!\r\n\r\nThis weekend, I made the combat system for my 2D RPG called A Peasant's Tale. I'm really happy with what I got done since I did even more than what I originally set out to do in the first place. I added a health system, created an entity removal system, made it so that when an entity is killed it is removed from the level, added sounds for hitting an enemy and being hit, added knockback for hitting enemies, added a blocking mechanic, and made blood particles shoot out of something (the player or the enemy) when it is hit.\r\n\r\nThe only thing I didn't get to was making good art for everything (I just threw together some basic coder art), but I'm really not too worried about that since I really just wanted to focus on coding the actual mechanics of everything.\r\n\r\nOverall, this was a great weekend and I can't wait for LWIMW IV.\r\n\r\nI wasn't able to make a submission video in time, but I'll definitely put one up on Monday, so I'll link you guys to my Youtube channel so you can check it out when it's uploaded (also feel free to look at all my other development videos of my game). :)\r\n\r\nAnd, yes, the enemies are squids, cuz why not? :P",
"user": 115,
"link_3": "",
"link_2": "",
"link_1": "https://www.youtube.com/CRAZEERUSKEE"
}
},
{
"pk": 26,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/beard.jpg",
"image_3": "",
"image_2": "",
"title": "I Grew A Beard",
"receive_ratings": true,
"contest": 3,
"description": "I spent a few hours growing a beard this weekend. It fit the theme incredibly well.",
"user": 117,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 27,
"model": "contests.submission",
"fields": {
"category": 7,
"image_1": "submission_images/abe-of-squares_0.jpg",
"image_3": "submission_images/abe-of-squares_3.jpg",
"image_2": "submission_images/abe-of-squares_1.jpg",
"title": "Clover",
"receive_ratings": true,
"contest": 3,
"description": "Clover was originally meant to be a collage-evolver. As I got into development, my goals changed some when I recognized some feasibility issues, but I'm happy with how it turned out for a weekend project.\r\n\r\nThough it wasn't exactly what I was going for, I *did* end up generating some pretty cool images, so I'm calling it a success. I hosted my project on GitHub and you can access it at the link below.\r\n\r\nI've included filmstrip images of selected generations from a few of the best results. Unfortunately, none of them produced a fully recognizable version of the reference image, but some of them still look pretty swanky.",
"user": 72,
"link_3": "",
"link_2": "",
"link_1": "https://github.com/stett/clover"
}
},
{
"pk": 28,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Lego Movie",
"receive_ratings": true,
"contest": 3,
"description": "Yeah... I know I'm submitting this after the weekend. But just to let you know, this is what I did over the weekend. I was able to write the script, film, and get the voice actors during the weekend. My computer started having issues while editing. But I was able to edit within 5 hours. So, this is what my project was this weekend. If you don't want to judge me because it's being submitted after the weekend, I understand.",
"user": 25,
"link_3": "",
"link_2": "",
"link_1": "https://www.youtube.com/watch?v=WAo1sR6yq3s"
}
},
{
"pk": 29,
"model": "contests.submission",
"fields": {
"category": 8,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Banana Bread! Oh my gut!",
"receive_ratings": true,
"contest": 4,
"description": "It's a food!\r\n\r\nI noticed that there was like 10 overripe bananas in my house, so I just decided to make banana bread. It turned out pretty good, considering that I am an awful chef.\r\n\r\nThe start:\r\n![start](http://i.imgur.com/JVGkeDF.jpg)\r\n\r\nThe creaming of the stuff:\r\n![start](http://i.imgur.com/inzL86x.jpg)\r\n\r\nThe mashing of the bananas:\r\n![start](http://i.imgur.com/NT0JN6h.jpg)\r\n\r\nThe combining of the things:\r\n![start](http://i.imgur.com/lD2705B.jpg)\r\n\r\nThe panning:\r\n![start](http://i.imgur.com/ik3Ydy2.jpg)\r\n\r\nThe insertion:\r\n![start](http://i.imgur.com/iakvOKq.jpg)\r\n\r\nThe done:\r\n![start](http://i.imgur.com/zAhoRtG.jpg)\r\n\r\nThe aftermath:\r\n![start](http://i.imgur.com/LN2cvhh.jpg)\r\n\r\n",
"user": 32,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 30,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/BlackSmith.png",
"image_3": "",
"image_2": "submission_images/BlackSmith2.png",
"title": "Black Smith - LWIMD 4",
"receive_ratings": true,
"contest": 4,
"description": "This is a Model I am making for my game. \r\nHe is a blacksmith. \r\nHe is fully rigged and pose-able. \r\n\r\nMade in blender. \r\nVerticies = 27934\r\nEdges = 24963\r\nFaces = 24963\r\n\r\nTexture Size. = 2048x2048",
"user": 122,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 31,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/IMG_0759.JPG",
"image_3": "",
"image_2": "",
"title": "My creation for LWIMW4",
"receive_ratings": true,
"contest": 4,
"description": "This is my greatest creation. It took me a whole 5 minutes. I am good at art. ",
"user": 7,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 32,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "The mona lisa of colgan",
"receive_ratings": true,
"contest": 4,
"description": "Link 1 is a link to my biblical master piece of art. It's a hand-drawn picture of Colgan, in case you couldn't tell",
"user": 123,
"link_3": "",
"link_2": "",
"link_1": "http://i.imgur.com/jBqOWE8.png"
}
},
{
"pk": 33,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/Everyday_life4.png",
"image_3": "",
"image_2": "",
"title": "Everyday I'm modellin",
"receive_ratings": true,
"contest": 4,
"description": "So I decided to make a scene of what I normally do on a day to day basis I modeled the scene within blender and rendered it using the cycles render engine. Granted my desk is not normally that clean.",
"user": 118,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 34,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/screen1.PNG",
"image_3": "",
"image_2": "",
"title": "Improved Entity System Game Engine",
"receive_ratings": true,
"contest": 4,
"description": "I have taken my Ludum Dare 28 game entry and worked to improve the engine part of it. I have worked off of [this article about the Ash ECS framework](http://www.richardlord.net/blog/what-is-an-entity-framework) and applied it to my Javascript version. My original goal was to completely port my game over to this new engine, but that proved to be too much to get done in one weekend, especially since I only finished the engine part after about a day and a half. But, I feel like that engine is worth a submission on its own, because I feel like I will be able to make games in a much more robust way for game jams and larger projects.\r\n\r\nSource is available on Githhub. Unfortunately there isn't really anything to see, so you'll have to take my word for it that it is \"really really good.\"\r\n\r\nMade with Javascript, NodeJS, GruntJS, Pixi.JS, Lodash, and John Resig's Javascript class implementation.",
"user": 2,
"link_3": "",
"link_2": "",
"link_1": "https://github.com/dcolgan/lessboringengine"
}
},
{
"pk": 35,
"model": "contests.submission",
"fields": {
"category": 7,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "The Kapulator",
"receive_ratings": true,
"contest": 4,
"description": "I had trouble figuring what to do, so I decided to create a calculator that is like no other.\r\n\r\nInstall instructions\r\n---------------------\r\n\r\n1) Download the Zip file\r\n2) run vcredist_x86.exe\r\n3) run the LWIMW4.exe\r\n4) Enjoy",
"user": 42,
"link_3": "",
"link_2": "https://github.com/cyrus31/LWIMW4",
"link_1": "http://www.mediafire.com/download/v9k53bvv79z7235/CyrusLWIMW4.zip"
}
},
{
"pk": 36,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Trypharic Portal",
"receive_ratings": true,
"contest": 4,
"description": "This is a website where you can upload your games/share them for free. Complete with commenting, profiles, and many more features to come. I've worked extensively on features for it this weekend such as editing previously added games, better game page, and more.",
"user": 63,
"link_3": "",
"link_2": "",
"link_1": "portal.trypharic.com"
}
},
{
"pk": 37,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/snapshot.PNG",
"image_3": "",
"image_2": "",
"title": "Cake Simulator",
"receive_ratings": true,
"contest": 5,
"description": "An extremely simple \"Cake Simulator\" in which you can bake, eat, and smell...",
"user": 68,
"link_3": "",
"link_2": "https://bitbucket.org/napen123/lwimw-5",
"link_1": "http://www.mediafire.com/download/cfn6nvqpzuldg81/LWIMW.exe"
}
},
{
"pk": 38,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/Step1.png",
"image_3": "submission_images/Screenshot_1.png",
"image_2": "submission_images/step2.png",
"title": "Hotdog Seller Simulator",
"receive_ratings": true,
"contest": 5,
"description": "*Follow the steps in order to get dis teh rite way.\r\n\r\nDis is a java console program, so you need to follow me pictures, Or die trying.\r\n\r\nPost your highest moneyz or hungerz.\r\n\r\nDis game was made in 5 minutes by amazing Lundiiee.\r\nCompile Time: 4 hours and 5 minutes.",
"user": 141,
"link_3": "",
"link_2": "",
"link_1": "https://www.dropbox.com/s/jzy9h9zxhm82oqc/HotDogs.jar"
}
},
{
"pk": 39,
"model": "contests.submission",
"fields": {
"category": 2,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "My new website!",
"receive_ratings": true,
"contest": 5,
"description": "I redesigned my website for LWIMW, and this is the result! :D",
"user": 7,
"link_3": "",
"link_2": "",
"link_1": "http://jordanfitz.com/"
}
},
{
"pk": 40,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/overkill.png",
"image_3": "",
"image_2": "",
"title": "Overkill Egg",
"receive_ratings": true,
"contest": 5,
"description": "Overkill Egg render made in Blender.",
"user": 37,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 41,
"model": "contests.submission",
"fields": {
"category": 7,
"image_1": "submission_images/app_small_1.jpg",
"image_3": "submission_images/vlc.jpg",
"image_2": "submission_images/notify_1.png",
"title": "Twitch viewing helper app",
"receive_ratings": true,
"contest": 5,
"description": "contests.finally motivated me enough to write this little app I have been thinking about for a while. It's a small desktop app that shows me all streamers I follow that are live, notifies me when somebody goes live and allows me to start streams in frameless VLC windows with one click.\r\n\r\nI mainly wrote it because I've missed the start of a lot of streams because twitch sometimes takes really long to send out live notification emails. I also like to watch streams in VLC instead of chrome because FlashPlayer performance and CPU usage in Mac OS is horrible, so it's very nice to have hardware accelerated playback in frameless windows I can completely freely resize and move everywhere on my screen.\r\n\r\nStuff used: node.js, anuglarjs, node-webkit, coffeescript, bootstrap, ...\r\nIt's not very pretty, only quickly thrown together in a few hours, but it works.",
"user": 147,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 42,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/Screenshot_2014-05-18_20.57.17.png",
"image_3": "submission_images/Screenshot_2014-05-18_20.58.09.png",
"image_2": "submission_images/Screenshot_2014-05-18_20.57.52.png",
"title": "A Peasant's Tale Pre-Alpha Build 7 - Mining and Lighting Update",
"receive_ratings": true,
"contest": 5,
"description": "Ok so I spent this weekend working on the lighting and mining systems for my game, A Peasant's Tale. I finished a day/night cycle that I'm really happy with and a glowing tile (the flowers for now). I'm really proud of the randomized flickering effect I gave the light emitters - when I change them to be actual flames it'll look really cool. I also added mining so that you can get iron ore. Just walk up to a node of iron and click it. You can't do anything with the oe just yet, but it's nice to have the feature implemented.\r\n\r\nI would have gotten a lot more done if I hadn't had a freakin' term paper to do! >:( :P",
"user": 115,
"link_3": "",
"link_2": "Give me a like of Facebook: https://www.facebook.com/APeasantsTale",
"link_1": "Follow my progress on Youtube: https://www.youtube.com/CRAZEERUSKEE"
}
},
{
"pk": 43,
"model": "contests.submission",
"fields": {
"category": 6,
"image_1": "submission_images/image.jpeg",
"image_3": "submission_images/image_2.jpeg",
"image_2": "submission_images/image_1.jpeg",
"title": "Chicken Coop",
"receive_ratings": true,
"contest": 5,
"description": "We successfully finished our chicken coop! It took all day, but we managed to get both windows finished, door fastened, perches installed, vinyl flooring laid, sand dumped, and chickens moved. We had to wake the chickens up after they went to bed, but they explored their new home and seemed excited...at least as excited as chickens can get.\r\n\r\nThe first picture gives you a view of how the coop looks from the outside. The second shows you a view from inside; the sliding door that leads to the ramp is visible on the left. The final image contains a good view of the perches and the hens in their new home. The ones on the top from left to right are: Bellatrix, Severus, Chick Norris, Chicken, Buffy, Veronica, and Clove. Minerva is on the bottom.",
"user": 145,
"link_3": "",
"link_2": "",
"link_1": ""
}
},
{
"pk": 44,
"model": "contests.submission",
"fields": {
"category": 1,
"image_1": "submission_images/commandBlocks.png",
"image_3": "",
"image_2": "submission_images/OKCPic.png",
"title": "Minecraft Mod - OverkillCraft",
"receive_ratings": true,
"contest": 5,
"description": "My mod is OverkillCraft. The main idea of it is using Diamond blocks and my new Ore called Molybdenum Ore to create OP tools. Craft 2 diamond blocks like you do with wood planks to make a diamond stick. then make tools normally",
"user": 42,
"link_3": "",
"link_2": "https://www.mediafire.com/?w3m7mvoo8m2hmvk",
"link_1": "https://github.com/BLannon/ModJam4"
}
},
{
"pk": 45,
"model": "contests.submission",
"fields": {
"category": 4,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Hexode - Untitled EP for LWIMW",
"receive_ratings": true,
"contest": 6,
"description": "Hey guys, Seg here.\r\nI make music under the name Hexode. Therefore I haven't been doing much open software stuff lately (there's two in-house secret projects but that's about it) as I've been focusing on music. Anyway, I made a five-track EP for LWIMW. The second link will take you to my Bandcamp page for the EP, whereas the first link is just a dropbox download.",
"user": 43,
"link_3": "",
"link_2": "http://hexode.bandcamp.com/album/untitled-ep",
"link_1": "https://www.dropbox.com/s/ae9zewme7svm4rj/Hexode%20-%20Untitled%20EP%20for%20LWIMW.zip"
}
},
{
"pk": 46,
"model": "contests.submission",
"fields": {
"category": 4,
"image_1": "submission_images/clairdelune.jpg",
"image_3": "",
"image_2": "submission_images/dvlive.jpg",
"title": "A piano performance, along with version two of DVLive!",
"receive_ratings": true,
"contest": 6,
"description": "Here's the description of from youtube, since I don't feel like writing another one. \r\n\r\nI guess this is a demake because the quality is pretty bad, and I made quite a few mistakes. Hooray for following the theme!\r\n\r\nAlso, I redid DVLive because it broke when chrome updated it's notifications API. I've also redesigned it, and I've removed the SRL channel, since it isn't currently active. ",
"user": 7,
"link_3": "https://github.com/JordanFitz/DVLive",
"link_2": "https://chrome.google.com/webstore/detail/dvlive/afdlbldphlnnmodmfcbjbcncaoooocdn",
"link_1": "https://www.youtube.com/watch?v=-_TLVzY_cH8"
}
},
{
"pk": 47,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "",
"image_3": "",
"image_2": "",
"title": "Unity 2D Tutorial - A Mario Bros. Clone",
"receive_ratings": true,
"contest": 6,
"description": "The goal of this tutorial was to show some of the simple features of Unity. In this video, we create a new project, explain some of the project settings, show how to code and save player preferences, and finally, make some basic sprite interactions.",
"user": 174,
"link_3": "",
"link_2": "https://onedrive.live.com/redir?resid=B4365DD707150852!81927&authkey=!AI3PgikK2BSW3is&ithint=file%2c.zip",
"link_1": "http://youtu.be/PNuncX98a7M"
}
},
{
"pk": 48,
"model": "contests.submission",
"fields": {
"category": 3,
"image_1": "submission_images/lwimw.png",
"image_3": "",
"image_2": "",