forked from eric-velocity/CodeSchool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
populate_database.py
1469 lines (1464 loc) · 533 KB
/
populate_database.py
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
# -*- coding: utf-8 -*-
import sqlite3
db = sqlite3.connect('database.db')
# skills
db.execute("CREATE TABLE skills (id INTEGER PRIMARY KEY, title CHAR(100) NOT NULL, description CHAR(255) NOT NULL, url CHAR(255) NOT NULL, image_path CHAR(255) NOT NULL)")
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Actor", "actor", "https://d1973c4qjhao9m.cloudfront.net/patches/actor_icon_small.png", "Actors bring characters to life. We conjure up emotion and laughter with our words and stories. The world is our stage, and we are players in it.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Angler", "angler", "//d1973c4qjhao9m.cloudfront.net/patches/angler_icon.png", "Anglers find and catch fish. We take clues from our environment – reading currents, predicting feeding behaviors. We even make our own lures that resemble what local fish are eating.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Animator", "animator", "//d1973c4qjhao9m.cloudfront.net/patches/animator_icon.png?4", "Animators are the magicians of movies. We create the illusion that something is moving by taking tons of pictures of little movements.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Archer", "archer", "//d1973c4qjhao9m.cloudfront.net/patches/archer_icon.png", "Bows and arrows and a steady hand - these are the tools of an Archer. This ancient skill was once a necessary requirement of survival and defense. Now it\'s just awesome.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Architect", "architect", "//d1973c4qjhao9m.cloudfront.net/patches/architect_icon.png", "Architects design buildings and structures. We try to design around people – what they need from the building, and how it will make them feel.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Astronomer", "astronomer", "//d1973c4qjhao9m.cloudfront.net/patches/astronomer_icon.png?2", "Astronomers investigate everything between Earth and the farthest reaches of the Universe. Some of us are pros that use fancy tech, but amateurs with simple tools discover new things all the time.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Athlete", "athlete", "//d1973c4qjhao9m.cloudfront.net/patches/athlete_icon.png", "Athletes go further, faster, stronger. We push our bodies to the edge and transform ourselves. We\'re dedicated to improving our physical abilities but we\'re driven by an inner fire.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Backend Dev", "backenddev", "//d1973c4qjhao9m.cloudfront.net/patches/backenddev_icon.png", "Backend Devs write scripts for servers which communicate with the apps and websites we all use. We\'re the masters of fast responses and requests.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Backyard Farmer", "backyardfarmer", "//d1973c4qjhao9m.cloudfront.net/patches/backyardfarmer_icon.png", "Backyard Farmers walk out their door to harvest – you can\'t beat that freshness. With dirt under our nails and hunger in our gut, we are way into growing food.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Baker", "baker", "//d1973c4qjhao9m.cloudfront.net/patches/baker_icon.png", "We are the Bakers and we make the bread. There’s a fine art to controlling giant colonies of microorganisms that expand flour and water into pillowy dough.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Beatmaker", "beatmaker", "//d1973c4qjhao9m.cloudfront.net/patches/beatmaker_icon.png", "Beatmakers produce tracks that make heads nod and butts move. We compile samples, drums, clicks, and claps to create fresh rhythms.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Beekeeper", "beekeeper", "//d1973c4qjhao9m.cloudfront.net/patches/beekeeper_icon.png", "Many plants can\'t create a seed, nut, berry, or fruit without the help of bees. Bee populations have been mysteriously declining, but we do have the power to revive bee colonies ourselves. There\'s also honey to be had.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Bike Mechanic", "bikemechanic", "//d1973c4qjhao9m.cloudfront.net/patches/bikemechanic_icon.png?4", "Bike Mechanics are obsessed with bicycles, it\'s as simple as that. We understand the parts, tools, and little details that go into building and maintaining our bikes.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Biologist", "biologist", "//d1973c4qjhao9m.cloudfront.net/patches/biologist_icon.png?2", "Biologists are into the processes of life in all its forms. We study microscopic cells, vast ecosystems, and everything in between. Our discoveries can lead to new medicines and new theories of the past and future.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Bitster", "bitster", "//d1973c4qjhao9m.cloudfront.net/patches/bitster_icon.png", "Bitsters use electronics to explore, tinker and build awesome prototypes. We dream up crazy contraptions and helpful devices and turn them into reality using littleBits.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Botanist", "botanist", "//d1973c4qjhao9m.cloudfront.net/patches/botanist_icon.png", "Botanists are way into plants. We know the stories behind the plants around us – how they grow, how they evolved, how they can be used, and which ones to avoid.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Camper", "camper", "//d1973c4qjhao9m.cloudfront.net/patches/camper_icon.png?2", "As Campers, we pack our homes on our backs and sleep under the stars. We wake with the sun, hike through mountains, and encounter animals we\'ve never met - it\'s awesome.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Cardboarder", "cardboarder", "//d1973c4qjhao9m.cloudfront.net/patches/cardboarder_icon.png", "The fastest way to make a physical prototype is to build it out of cardboard. We\'re experts at cutting, folding, and constructing any shape imaginable from this rigid, light, and free material.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Cartographer", "cartographer", "//d1973c4qjhao9m.cloudfront.net/patches/cartographer_icon.png?4", "Cartographers make maps to help people understand places. Anything can be placed on a map, so we decide what\'s important to include – be it trails, forests, landmarks, or ice cream.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Chef", "chef", "//d1973c4qjhao9m.cloudfront.net/patches/chef_icon.png?2", "Chefs are dedicated to flavor and to the skill of cooking. We must be chemists, artists, and inventors all at once. An advanced appreciation for the deliciousness of food is what drives our passion.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Chemist", "chemist", "//d1973c4qjhao9m.cloudfront.net/patches/chemist_icon.png", "Chemists examine how atoms attach, break apart, and reconnect to create different molecular structures. With our powers, we can create both really helpful and really horrible things.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Chiller", "chiller", "//d1973c4qjhao9m.cloudfront.net/patches/chiller_icon_small.png", "Chillers are well-practiced in the techniques of relaxation. Being a true Chiller is knowing how to take time out from making to recharge your body and mind.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Circuit Bender", "circuitbender", "//d1973c4qjhao9m.cloudfront.net/patches/circuitbender_icon.png?4", "Circuit Benders can customize and hack technologies to do things they aren\'t designed to do. We hack toys into musical instruments and transform household gadgets into awesome experiments.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Clothing Maker", "clothingmaker", "//d1973c4qjhao9m.cloudfront.net/patches/clothingmaker_icon.png", "Clothing Makers tailor and stitch clothing – pants, skirts, shirts, jackets, and hats. Our custom, handmade clothing has no rival in charm or fit.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Club Member", "clubmember", "//d1973c4qjhao9m.cloudfront.net/patches/clubmaker_icon.png", "A DIY Club practices skills, builds epic projects and goes on adventures. Club Members meet regularly to make their Club awesome!")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Cryptographer", "cryptographer", "//d1973c4qjhao9m.cloudfront.net/patches/cryptographer_icon.png", "Cryptographers make systems that scramble and unscramble secret information. In the Information Age, we\'re essential to maintaining privacy and security.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Dancer", "dancer", "//d1973c4qjhao9m.cloudfront.net/patches/dancer_icon.png", "Dancers are movement artists. We learn complex steps, be we also just go nuts and freestyle. Dancers know how to communicate in ways that language can’t.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Darkness Engineer", "darknessengineer", "//d1973c4qjhao9m.cloudfront.net/patches/darknessengineer_icon.png", "October 31st would be just another day, if not for the great Darkness Engineers of our time. With technology developed by Darkness Engineers, the world is a scarier place for us all.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Data Visionary", "datavisionary", "//d1973c4qjhao9m.cloudfront.net/patches/datavisionary_icon.png?", "Data is just a series of measurements, but locked inside is a story. Data Visionaries transform rows of numbers into understandable imagery. We bring complex facts to life.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Detective", "detective", "//d1973c4qjhao9m.cloudfront.net/patches/detective_icon.png", "Detectives are masters of observation, able to recreate events looking only at what\'s left behind. The size of the mystery doesn\'t matter - we won\'t rest until the truth has been revealed.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Entomologist", "entomologist", "//d1973c4qjhao9m.cloudfront.net/patches/entomologist_icon.png?4", "Entomologists study insects – the most numerous creatures of Earth. We seek to know how these bugs live, how they build their own societies, and how they effect us.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Entrepreneur", "entrepreneur", "//d1973c4qjhao9m.cloudfront.net/patches/entrepreneur_icon.png", "Entrepreneurs take risks and inspire others to achieve big ideas. We figure out what people need and how to make it possible for them. If we fail, we just try again until we get it right.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Fabric Hacker", "fabrichacker", "//d1973c4qjhao9m.cloudfront.net/patches/fabrichacker_icon_small.png", "Fabric Hackers infuse everyday clothes and fabrics with electronics. We use conductive fabrics and threads, fiber optics, and electroluminescent wire to merge fashion and hardware.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Fashion Designer", "fashiondesigner", "//d1973c4qjhao9m.cloudfront.net/patches/fashiondesigner_icon.png?", "Fashion Designers push the boundaries of style. We use fabric, color, texture and form to express a vision. Clothing is art.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Filmmaker", "filmmaker", "//d1973c4qjhao9m.cloudfront.net/patches/filmmaker_icon.png", "Filmmakers make sharable dreams. We write, direct, shoot, and edit – to craft awesome experiences for our friends.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Forager", "forager", "//d1973c4qjhao9m.cloudfront.net/patches/forager_icon.png", "Foragers hunt and gather food that grows in the wild – stuff like greens, fruits, mushrooms, seeds, nuts, and herbs. We have cunning instincts and enough know-how to not get poisoned.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Forester", "forester", "//d1973c4qjhao9m.cloudfront.net/patches/forester_icon.png", "Foresters work to keep a forest ecosystem healthy. We use selective cutting, burning, and planting to manage large areas over long periods of time.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Frontend Dev", "frontenddev", "//d1973c4qjhao9m.cloudfront.net/patches/frontenddev_icon.png", "Frontend Developers code the HTML, CSS and Javascript elements that make up websites. We push the limits of what can be built on the web.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Game Designer", "gamedesigner", "//d1973c4qjhao9m.cloudfront.net/patches/gamedesigner_icon.png", "Game Designers create new worlds where the rules are a little different. We think about the basic elements of play and strategy as we design awesome experiences.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Game Dev", "gamedev", "//d1973c4qjhao9m.cloudfront.net/patches/gamedev_icon.png", "Game Devs create the code, art, and sound that make a video game playable. We make interactive experiences.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Gamer", "gamer", "//d1973c4qjhao9m.cloudfront.net/patches/gamer_icon.png?2", "Gamers use computer games as tools to design, build, and strategize. With games, we can go beyond the limits of the real world.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Gardener", "gardener", "//d1973c4qjhao9m.cloudfront.net/patches/gardener_icon.png?5", "Gardeners care for plants by keeping soil, water, and sun in balance. With dirt under our nails – we dig, we plant, we prune, and we chill in the garden.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Geneticist", "geneticist", "//d1973c4qjhao9m.cloudfront.net/patches/geneticist_icon.png", "Geneticists explore the secret code of DNA. We reveal why living things are the way they are and do what they do.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Geologist", "geologist", "//d1973c4qjhao9m.cloudfront.net/patches/geologist_icon.png?2", "Geologists hunt for secrets locked in the Earth’s crust. High on a cliff, or deep in a cave, we find clues inside rocks that reveal Earth\'s mysterious past. Woah.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Graphic Designer", "graphicdesigner", "//d1973c4qjhao9m.cloudfront.net/patches/graphicdesigner_icon.png", "Graphic Designers communicate ideas with text and images. We design icons, layout pages, and dial in typography – all with the utmost finesse and precision.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Hardware Hacker", "hardwarehacker", "//d1973c4qjhao9m.cloudfront.net/patches/hardwarehacker_icon.png?2", "Hardware Hackers combine electronic components to make super awesome stuff. Things get weird when we hack together microcontrollers, circuit boards, sensors, and LED\'s.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Historian", "historian", "//d1973c4qjhao9m.cloudfront.net/patches/historian_icon.png", "Historians try to understand the past. We combine many forms of evidence – writing, photography, scientific data, and others – to craft a sense of what happened and when.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Holiday Hacker", "holidayhacker", "//d1973c4qjhao9m.cloudfront.net/patches/holidayhacker_icon.png", "In winter, Holiday Hackers gather together to make things. Our mission is to build a magical world at home and around our town.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Home Builder", "homebuilder", "//d1973c4qjhao9m.cloudfront.net/patches/homebuilder_icon.png", "A house isn\'t a home until it\'s been customized by those who live there. Home Builders are handy and full of ideas. Bit by bit, we transform our houses and neighborhoods.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Illustrator", "illustrator", "//d1973c4qjhao9m.cloudfront.net/patches/illustrator_icon.png?2", "Illustrators tell stories visually with drawings and paintings. We portray emotions, explain concepts, and invent unforgettable characters.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Industrial Designer", "industrialdesigner", "//d1973c4qjhao9m.cloudfront.net/patches/industrialdesigner_icon.png", "Industrial Designers work to make the objects in our lives more usable. We design for people, solving important problems with unexpected solutions.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Innovator", "innovator", "//d1973c4qjhao9m.cloudfront.net/patches/innovator_icon_small.png", "Innovators help make the world a better place. We try to understand people, identify problems and create new solutions.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Instrument Maker", "instrumentmaker", "//d1973c4qjhao9m.cloudfront.net/patches/instrumentmaker_icon.png", "Instrument Makers set the stage for great music. Any object that makes sound can be an instrument, but gorgeous music starts with our expert design and craftsmanship.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Interior Designer", "interiordesigner", "//d1973c4qjhao9m.cloudfront.net/patches/interiordesigner_icon.png", "Interior Designers imagine and create spaces that perfectly suit the people who use them. We craft spaces that welcome you in. Our rooms inspire great things to happen inside them.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Jewelry Designer", "jewelrydesigner", "https://d1973c4qjhao9m.cloudfront.net/patches/jewelrydesigner_icon_small.png", "Jewelry Designers create wearable art. We use jewels, precious metals, beads and wire to create new styles and timeless heirlooms.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Journalist", "journalist", "//d1973c4qjhao9m.cloudfront.net/patches/journalist_icon.png", "Journalists report the goings on of the world. We seek the interesting and unique, to share with everyone. Our great challenge is finding and reporting the truth, and making that truth intriguing to others.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Knotter", "knotter", "//d1973c4qjhao9m.cloudfront.net/patches/knotter_icon.png", "Knotters know the knots in times of need. With nimble fingers and a sharp memory, we loop, tie, fasten and secure.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("LEGO® Master", "legomaster", "//d1973c4qjhao9m.cloudfront.net/patches/legomaster_icon.png", "LEGO® Masters achieve artistic and engineering excellence with just plastic bricks. We push the limits of LEGO construction by exploring new possibilities.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Landscaper", "landscaper", "//d1973c4qjhao9m.cloudfront.net/patches/landscaper_icon.png", "Landscapers design and build organic environments. With natural patterns in mind, we make self-sustaining ecosystems of plants animals, insects, and humans.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Linguist", "linguist", "//d1973c4qjhao9m.cloudfront.net/patches/linguist_icon_small.png", "Language shapes who we are and what we think. Linguists seek to understand the meaning of languages - how they work, how they\'re used, and how they evolve.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Magician", "magician", "//d1973c4qjhao9m.cloudfront.net/patches/magician_icon.png", "Magicians craft illusions that baffle the senses and confuse our reasoning. We plan like scientists, but perform as artists. Only through long and disciplined preparation do we succeed.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Maker", "maker", "//d1973c4qjhao9m.cloudfront.net/patches/maker_icon.png?2", "Welcome to DIY. Get excited and make stuff. Do challenges to earn a skill patch and be awesome.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Makeup Artist", "makeupartist", "//d1973c4qjhao9m.cloudfront.net/patches/makeupartist_icon.png", "Makeup Artists use the face as a canvas. We have the power to transform ourselves into anything we want to become.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Mechanic", "mechanic", "//d1973c4qjhao9m.cloudfront.net/patches/mechanic_icon.png", "Machines keep civilization humming along, and Mechanics are the ones who keep them working. We can diagnose any ailment – we\'re doctors with wrenches.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Mechanical Engineer", "mechanicalengineer", "//d1973c4qjhao9m.cloudfront.net/patches/mechanicalengineer_icon.png", "Mechanical Engineers design and build machines. By applying physics and material science we can make engines, power plants, food processors, and robotic arms. We extend the power of humans.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Medic", "medic", "//d1973c4qjhao9m.cloudfront.net/patches/medic_icon.png", "Burns, bruises, or broken bones – Medics are first on the scene. Sooner or later, everyone finds themselves in a great emergency, but while others may panic, we stay calm, at the ready.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Meme Hacker", "memehacker", "//d1973c4qjhao9m.cloudfront.net/patches/memehacker_icon.png", "Meme Hackers practice the science of LOLs. We make ideas that other people want to remake!")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Meteorologist", "meteorologist", "//d1973c4qjhao9m.cloudfront.net/patches/meteorologist_icon.png", "Meteorologists collect data to study the forces at work in the Earth\'s atmosphere. We track temperature, pressure, moisture, and movement, on a quest to predict the unpredictable.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Minecrafter", "minecrafter", "//d1973c4qjhao9m.cloudfront.net/patches/minecrafter2_icon.png", "Minecrafters build with virtual blocks. We take pride in various expertise: defeating monsters, making structures, mastering redstone logic, and what not.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Musician", "musician", "//d1973c4qjhao9m.cloudfront.net/patches/musician_icon.png?", "Musicians make music! We perform songs, jams, anthems, and symphonies. We use all manner of instruments to create such works. While we do make a lot of noise, we actually listen as much we play.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Mycologist", "mycologist", "//d1973c4qjhao9m.cloudfront.net/patches/mycologist_icon.png?", "Mycologists are obsessed with mushrooms – the fruit of underground fungal networks. This network eats dead things to create soil, and connects to the roots of plants. Without fungus, there would be no forests.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Oceanographer", "oceanographer", "//d1973c4qjhao9m.cloudfront.net/patches/oceanographer_icon.png", "It\'s up to Oceanographers to understand the seas that cover our blue planet. Like Astronauts, we explore where none have gone before, unlocking mysteries that help us use our oceans wisely.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Open Sourcerer", "opensourcerer", "//d1973c4qjhao9m.cloudfront.net/patches/opensourcerer_icon.png", "We share how we make things so others can use them or contribute to make them better. The open source community is an ever growing, vibrant and important part of technology today.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Ornithologist", "ornithologist", "//d1973c4qjhao9m.cloudfront.net/patches/ornithologist_icon.png", "Ornithologists observe and study birds. We\'re keen on identifying and knowing the avian species around us. In our field, amateurs can often make big contributions.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Painter", "painter", "//d1973c4qjhao9m.cloudfront.net/patches/painter_icon.png", "Painters are passionate about how the world appears. We get excited about little details of light, shadow, and color. We know our brushes, oils, watercolors, and canvas, but our most important tool is our eyes.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Papercrafter", "papercrafter", "//d1973c4qjhao9m.cloudfront.net/patches/papercrafter_icon.png?2", "Papercrafters can make any shape through elegant folds, cuts, and connections. Often the quickest way to make a prototype or model is to build it with paper or cardboard.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Philosopher", "philosopher", "https://d1973c4qjhao9m.cloudfront.net/patches/philosopher_icon_small.png", "Philosophers think about the big stuff. We rationalize answers to life\'s most fundamental questions. We philosophize, therefore we are.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Photographer", "photographer", "//d1973c4qjhao9m.cloudfront.net/patches/photographer_icon.png?3", "Photographers capture windows into time and space. We use focus, perspective, depth-of-field, focal length, exposure, and shutter speed to create images that are just the way we want them to be.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Physicist", "physicist", "//d1973c4qjhao9m.cloudfront.net/patches/physicist_icon.png", "Physicists seek to understand the laws and forces that govern the Universe. From the very small world of atoms to the very large world of black holes, we use experiments and math to prove how it all works.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Pioneer", "pioneer", "//d1973c4qjhao9m.cloudfront.net/patches/pioneer_icon.png", "When you\'re ready to stop getting everything in a bag from the store, you\'re a Pioneer. We\'re the brave and crazy ones with the skills to provide for ourselves, to make new places, to build our own world.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Potter", "potter", "//d1973c4qjhao9m.cloudfront.net/patches/potter_icon.png?2", "Potters can shape mud clay into bowls, plates, pots, and vases. We use ancient techniques of throwing, glazing, and firing to make useful objects.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Prankster", "prankster", "//d1973c4qjhao9m.cloudfront.net/patches/prankster_icon.png", "Pranksters surprise people with ridiculousness. Our victims may feel awkward at first, but a good prank is easily reversible and leaves everybody bustin\' up and slappin\' knees.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Printmaker", "printmaker", "//d1973c4qjhao9m.cloudfront.net/patches/printmaker_icon.png", "Printmakers etch and carve plates that are inked and stamped onto paper or cloth. We can make art, shirts, books, posters using this ancient technique.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Puppeteer", "puppeteer", "//d1973c4qjhao9m.cloudfront.net/patches/puppeteer_icon.png", "Puppeteers can transform a sock into a hero, or a shadow into a dragon. We make puppets and then we make them move. We\'re all about charming the audience with subtle tricks and clever techniques.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("RCer", "rcer", "https://d1973c4qjhao9m.cloudfront.net/patches/rc_icon_small.png", "RCers are inventors and pilots of radio controlled vehicles. We have a special touch with the remotes, and know best how to hack these teeny machines.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Radographer", "radographer", "//d1973c4qjhao9m.cloudfront.net/patches/radographer_icon.png", "Radographers seek the most epic and awesome moments of life. We make stories with head-mounted cameras, capturing the unique sensation of life through our eyes.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Rapid Prototyper", "rapidprototyper", "//d1973c4qjhao9m.cloudfront.net/patches/rapidprototyper_icon.png", "Rapid Prototypers are the vanguard of a new way to make. We use 3d designs and machines like laser cutters, 3d printers and CNC routers to make objects in minutes. The future is here.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Rocketeer", "rocketeer", "//d1973c4qjhao9m.cloudfront.net/patches/rocketeer_icon.png?3", "Rocketeers put a man on the moon. Yup, a human, on the moon. What more do you want? We use pressure, combustion, or chemical reactions to launch stuff up - it\'s rocket science.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Sailor", "sailor", "//d1973c4qjhao9m.cloudfront.net/patches/sailor_icon.png", "Sailors use the wind to travel for sport and adventure. We\'re brave, self-reliant, quick with knots, and super observant of the natural conditions - our life depends on it.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Salvager", "salvager", "//d1973c4qjhao9m.cloudfront.net/patches/salvager_icon.png?3", "Salvagers see value and purpose where others see trash. We seek out the unappreciated treasures everywhere around us.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Sculptor", "sculptor", "//d1973c4qjhao9m.cloudfront.net/patches/sculptor_icon.png?2", "Sculptors bring art into 3d space. Since ancient times we\'ve sculpted - in stone, wood, clay – now with all things imaginable. We make beauty and strength that stands on its own.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Sensor Hacker", "sensorhacker", "//d1973c4qjhao9m.cloudfront.net/patches/sensorhacker_icon.png", "Sensor Hackers can detect conditions in the environment. Different sensors can measure temperature, light, sound, magnetism and motion. We build devices that help us understand and interact with the world.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Shelter Builder", "shelterbuilder", "//d1973c4qjhao9m.cloudfront.net/patches/fortbuilder_icon.png?4", "Shelter Builders design and build handmade shelters – like caves, nooks, huts, tents, houses. Our instinct is to build a hideout, a space of our own.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Shoemaker", "shoemaker", "//d1973c4qjhao9m.cloudfront.net/patches/shoemaker_icon.png?2", "Shoemakers have been making footwear for 10,000 years. We\'re sort of like physicians, engineers, and artists all at once.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Skater", "skater", "//d1973c4qjhao9m.cloudfront.net/patches/skater_icon.png", "Where others just see boring stairs, handrails, curbs, and roads, we see a stage for awesomeness. Skaters reinvent the possible – with style, and some serious courage.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Solar Engineer", "solarengineer", "//d1973c4qjhao9m.cloudfront.net/patches/solarengineer_icon.png", "The Sun gives off enough energy in an hour to power the world for a year. Solar Engineers take advantage of this, by creating systems that generate electricity or heat buildings and water.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Special Effects Wizard", "specialeffectswizard", "//d1973c4qjhao9m.cloudfront.net/patches/specialeffectswizard_icon.png", "Special Effects Wizards craft the illusions seen in movies and games. We use sculpting, painting, animation, and compositing to tell stories of strange and unreal events.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Stitcher", "stitcher", "//d1973c4qjhao9m.cloudfront.net/patches/stitcher_icon.png?3", "Stitchers are masters of needle and thread. Since the Stone Age we’ve attached materials together in this way. Clothing, books, shoes, puppets, sails, baseballs – where glue fails, a stitch holds strong.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Summerologist", "summerologist", "//d1973c4qjhao9m.cloudfront.net/patches/summerologist_icon.png", "Summerologists achieve maximum relaxation. We also get stuff done, go adventuring, and make money. It\'s the summer, this is our time.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Sys Admin", "sysadmin", "//d1973c4qjhao9m.cloudfront.net/patches/sysadmin_icon.png", "Sys Admins keep servers and networks protected and ship shape. They rock the command line and write scripts to automate all kinds of common tasks.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Tape Ninja", "tapeninja", "//d1973c4qjhao9m.cloudfront.net/patches/tapeninja_icon.png", "Duct Tape is like the force – it has a light side, a dark side, and it holds the universe together. The Tape Ninjas of our time have mastered this force. They ask not what can be done with tape, but what can\'t?")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Toy Maker", "toymaker", "//d1973c4qjhao9m.cloudfront.net/patches/toymaker_icon.png", "Toy Makers design objects that invite people to interact and explore. We know that people learn and grow by just playing around with things.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Tracker", "tracker", "//d1973c4qjhao9m.cloudfront.net/patches/tracker_icon.png", "Trackers read the stories that animals leave as they move across the land. We can deconstruct the depth of a pawprint, the angle of a broken twig, the splatter of a puddle.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Transport Engineer", "transportengineer", "//d1973c4qjhao9m.cloudfront.net/patches/transportengineer_icon.png?2", "Transport Engineers design our roads, railways, and vehicles. We make systems that are safe, efficient, durable, convenient, and fun!")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Urban Designer", "urbandesigner", "//d1973c4qjhao9m.cloudfront.net/patches/urbandesigner_icon.png", "Urban Designers shape cities and towns into great places that feel alive. We decide how bike lanes, building heights, parking, trees, paths, and sidewalks will all come together to create our urban environment.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Veterinarian", "veterinarian", "//d1973c4qjhao9m.cloudfront.net/patches/veterinarian_icon.png", "Vets can diagnose a dog, bandage a bull, and tend to a tortoise, all in one day. We have compassion for patients who can\'t speak for themselves.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Weaver", "weaver", "//d1973c4qjhao9m.cloudfront.net/patches/weaver_icon.png?3", "Weave, knit, knot, crochet, felt – these are the ways of crossing together yarns and fibers to create textiles. Before Weavers, all we had were animal skins. We can\'t leave this important skill to the machines only.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Web Designer", "webdesigner", "//d1973c4qjhao9m.cloudfront.net/patches/webdesigner_icon.png", "The internet is full of info, and its up to Web Designers to make it clear, usable, and good looking. A good site leads a user to just the right thing, in the right order. When we succeed, the internet is a joy to navigate.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Wind Engineer", "windengineer", "//d1973c4qjhao9m.cloudfront.net/patches/windengineer_icon.png?2", "Wind Engineers have changed the world, first with great sailing ships and now with renewable energy. We harness a powerful force, with sails, kites, and turbines.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Woodworker", "woodworker", "//d1973c4qjhao9m.cloudfront.net/patches/woodworker_icon.png?2", "Woodworkers make objects of timeless utility and beauty. In every cut and every joint of cabinet, clock, or table you can see our craftsmanship.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Writer", "writer", "//d1973c4qjhao9m.cloudfront.net/patches/writer_icon.png", "Writers put words together to tell stories and describe ideas. Language is our tool, and communication our goal. We try hard to be observant, honest, and insightful.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Yeti", "yeti", "//d1973c4qjhao9m.cloudfront.net/patches/yeti_icon.png", "A large, hairy creature resembling a human or bear. Is said to live in the snowy mountains everywhere.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("Zoologist", "zoologist", "//d1973c4qjhao9m.cloudfront.net/patches/zoologist_icon.png", "Zoologists study the great animal kingdom – all things that crawl, walk, swim or fly. With a keen sense for animal biology, behavior and habitat, we puzzle over the mysteries of evolution.")')
db.execute('INSERT INTO skills (title, url, image_path, description) VALUES ("n00b", "n00b", "//d1973c4qjhao9m.cloudfront.net/patches/n00b_icon.png?4", "Becoming a n00b is the first step to becoming a programmer. We instruct computers to perform tasks and create games, software, and websites.")')
# challenges
db.execute("CREATE TABLE challenges (id INTEGER PRIMARY KEY, image_url CHAR(255) NOT NULL, description CHAR(255) NOT NULL, title CHAR(100) NOT NULL, skill_id INTEGER NOT NULL, FOREIGN KEY(skill_id) REFERENCES skills(id))")
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/263c20c72a11e3bd1cd9667edd7f15/tongue_twister.jpg", "Make a video describing and showing your acting warmup. Acting warmups can be tongue twisters, quick reaction games, or emotion exercises. ", "Create an Acting Warm Up", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/be/293980d25611e38c744bbc518ba14f/Screen-Shot-2014-05-02-at-5.07.22-PM.jpg", "Stage combat is planned to a tee and practiced repeatedly, not only to ensure the safety of the actors, but also so it looks like the real thing. Share a video of your stage combat, and share any tips and secrets that you used to make it look real. ", "Do Stage Combat", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/76/720ca0c74a11e3a48a4d624e45e556/Screen-Shot-2014-04-18-at-3.42.15-PM.jpg", "Read throughs are a great way to familiarize yourself with a script. Film a short video as you and your friends do a read through of something you\'ve written, or pull from an existing script. There\'s a link in the examples. ", "Do a Read Through", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/54/48e6d0d18b11e3acbaa71c37c5a0ed/Screen-Shot-2014-05-01-at-4.52.12-PM.jpg", "Film a 1-2 minute dialogue between you and someone else. You can wrote your own dialogue, or pull one from your favorite book or movie. Costumes are a great addition. ", "Film a 2 Person Dialogue", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/32/455b00c73f11e3bd1cd9667edd7f15/Screen-Shot-2014-04-18-at-2.21.33-PM.jpg", "Film a 1-2 minute video of yourself reciting a memorized monologue. Try to recite it from memory rather than read from a page or screen. That way, it sounds more natural. And... ACTION!", "Memorize a Monologue", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/72/feb6c0e08311e3b3a85539c6aed9ce/Screen-Shot-2014-05-20-at-6.04.19-PM.jpg", "Improv is when you make up an acting scene on the spot. Gather some friends to do this because the best improv scenes are created by different actors reacting to each other in unexpected ways. Record a video of your improv. ", "Perform Improv", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f9/2875f0bb9011e3960c95b5c00121b1/The-company-of-Musical-Theatre-West_s-A-CHORUS-LINE..jpg", "Perform a number from your favorite musical. You can sing a capella or use the soundtrack. Just be sure to belt it out and record a video with good sound quality. ", "Perform Musical Theater", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/83/2b0a20bf7d11e3a0a3ad71d0319892/romeo1.jpg", "Shakespeare is the most famous english playwright. Perform and film a 2-5 minute scene from a Shakespeare play.", "Perform Shakespeare", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a2/73f8b0c72a11e3a6f77d020075559b/Screen-Shot-2014-04-18-at-11.52.46-AM.jpg", "Record a 15 Second Intro impersonating a famous celebrity or character. Make sure it\'s one that everyone knows. If you\'re feeling it, wear a costume. A video is a must. ", "Perform a 15 Second Intro Impersonation", 1)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/53/0fc1b3998b427338dd55bcf7d5a758/225406_ts.jpg", "Tackle boxes can take many forms, but all have plenty of compartments. Find a box to use, or build your own, and fill it with the bait and tools you need to catch fish. ", "Assemble a Tackle Box", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d6/44a0fa341e2b3bcda3e14bfe45f193/Screen-Shot-2013-08-16-at-9.47.07-PM.jpg", "Head to your fishing hole and see what you can catch. Once you\'ve hooked one, reel it in, measure it, and snap a photo of you with your catch.", "Catch a Fish", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/21/94600119eb126efe1040b7972054dc/Screen-Shot-2013-08-21-at-11.46.39-AM.jpg", "Once you\'ve caught and cleaned your fish, cook it and eat it. Share any recipes you use and take a picture or video of the cooked fish.", "Eat What You Catch", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/95/9bc53b2681ed5da8b5d6f575713da7/Screen-Shot-2013-08-17-at-8.55.51-AM.jpg", "Share photos of your fish before and after filleting it and remember to be extra careful when using a fillet knife – they\'re super sharp.", "Fillet a Fish", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/11/fc032d4aafb37914b209dc3de8a768/earthworms.jpg", "Live bait is oftentimes the best way to catch fish. Learn how to find and gather bait then share a video of your techniques.", "Find Live Bait", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/93/0d627f62e006f6d37a5b9939edc84b/noodling-fish-caught1.jpg", "Anyone can catch a fish with a rod, but can you catch one with your arm? See if you have what it takes to noodle a catfish.", "Go Noodling", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cc/154f91ad6ac6e361228cdce032b176/Screen-Shot-2013-08-21-at-2.13.43-PM.jpg", "Fish don\'t like to live in water that\'s polluted. Find ways to keep your water clean and share it with a video.", "Keep the Water Clean", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/24/9d033481288ff9ceef316b80fa35f4/Screen-Shot-2013-08-17-at-7.54.32-AM.jpg", "Fly Fishing is art form that takes years to master. Record a video of you practicing your cast.", "Learn to Fly Cast", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a3/6698421b35e220e0c954d63cc2d877/how-to-make-fishing-bait-lures-and-jigs-from-dollar-store-materials-for-fathers-day-complete.jpg", "Design and fabricate a custom lure however you\'d like. Share photos or video of your process and the finished lure.", "Make Your Own Lures", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/66/d336ee74359a046d28f73025c93958/Screen-Shot-2013-07-16-at-3.35.33-PM.jpg", "Casting allows anglers to place their lures exactly where the fish are. Record a video of your perfect cast.", "Practice Your Cast", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f4/9513e2c53eb1f018b5ceb1064d3e2f/Screen-Shot-2013-08-17-at-8.44.37-AM.jpg", "Making flies for you fly rod will allow you to have the right fly for any season and fish. Give fly tying a shot and post photos of your creations.", "Tie Your Own Flies", 2)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/be/528988ec1e0d09bd0977a4c7fc3a89/Screen-Shot-2013-07-03-at-1.35.53-PM.jpg", "Animate with a series of drawings, then upload the video.", "Animate 2D Drawings", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2f/5f8df075c862e2e3ec321bc4c32c64/Screen-Shot-2013-07-03-at-1.52.14-PM.jpg", "Show the natural movement of fire, water, wind, landslides, or falling leaves in an animation movie. Observe nature, then recreate it with an animation.", "Animate Natural Patterns", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0f/33f58d6d55884b0c13c197003e3260/Screen-Shot-2013-07-03-at-3.08.54-PM.jpg", "Real people make great animated puppets! Make it look like they\'re performing magic or levitating.", "Animate People", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/52/02947b7ce82061be04a97bf9bb59e0/Screen-Shot-2013-05-23-at-10.38.21-PM.jpg", "Breath life into a toy or other figure by making a stop-motion puppet movie. A figure with wire inside, or one with stiff, posable joints, works best.", "Animate a Doll or Figure", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/51b9248d16df968ebff6764e2dacdd/Screen-Shot-2013-07-03-at-1.13.17-PM.jpg", "Move something a little and take a picture. Repeat. Small movements and many frames works best. Upload a video of your stop-motion", "Do Stop-Motion with Objects", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4e/38fbca5fedcc23721ab7189cac55bf/Screen-Shot-2013-05-23-at-9.42.29-PM.jpg", "Do stop-motion with clay, called \'Claymation\'.", "Make Claymation", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/67/8f854bd5213ac847a5681457c98a67/body-types.jpg", "Design a character that you want to turn into animation. Tell as much as possible about the character through your drawing.", "Make a Character Design", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d9/19b06fe8f3194892f33dc80282453f/Screen-Shot-2013-07-03-at-1.56.51-PM.jpg", "Make a rendered movie with a computer animation program. These days, most animated movies are made on a computer.", "Make a Computer Animation", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/64/a12042db658fd1a1df37a0b5637d3a/Screen-Shot-2013-07-03-at-2.56.48-PM.jpg", "Make a flip book on a small notebook or a stack of index cards, then upload the project as a video.", "Make a Flip Book Movie", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d3/7f1ec18f8ff9c23311c75b465fba84/027b.jpg", "Make a grid, or use ours, then fill it in shot-by-shot for every scene of a story you want to animate.", "Make a Storyboard", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/836e2c93a122c534c650529c890373/Screen-Shot-2013-07-03-at-1.49.54-PM.jpg", "To add realism to your scene, shoot your animation over a background painting or in sculpted scenery, then upload the video.", "Make an Animation Background", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/22/f734608dcf48560339955893b8aadc/Screen-Shot-2013-07-03-at-3.31.54-PM.jpg", "A sandbox can become a desert, a hole in a tree can be a cave. Send your characters on outdoor adventures, or just make leaves and stones dance.", "Make an Animation Outdoors", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/f612f6a9f021f74a1c1866c2a2f70d/atlantis_overview.jpg", "Special cameras, lights, tools, and computer programs are used in animation. Get them together and you\'ve got an animation studio!", "Make an Animation Studio", 3)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/598f40684211e38880cfcd9b5550cc/Screen-Shot-2013-12-18-at-4.16.10-PM.jpg", "Add inserts to your arrow shafts so you can attach points, or haft a wooden shaft. Explain how you did it with a quick video.", "Add Arrow Points", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/93/204b70676211e3873333c340008f36/archer_build_a_target.jpg", "Build something solid to shoot at. Take a picture of your target after you hit it with your arrow.", "Build A Target", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d3/dc4170684b11e38880cfcd9b5550cc/archer_make_a_bow.jpg", "Completely customize your archery experience by creating your own bow! Shoot some arrows with your custom bow and post a video.", "Build a Bow", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/86/f470f0681711e3b46a49c464d413b8/Screen-Shot-2013-12-18-at-11.08.24-AM.jpg", "Get artistic and add some flare to your arrow shafts. Paint your arrows and share by posting a photo or video of your completed crest.", "Crest Arrows", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cf/741840683e11e38f7b1d84e5cbe97b/Archer_fletch_an_arrow.jpg", "Add a personal touch by putting feathers on your arrows! Post a photo or video of arrows you have fletched.", "Fletch an Arrow", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/33/f73240681f11e3b46a49c464d413b8/archer_make_a_bowstring.jpg", "Turn several strands of fiber into strong string for your bow. Don\'t forget to add knocking points! Share a video showing your technique or explain how you did it. ", "Make a Bowstring", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/222810678111e394ddbd335a606674/Screen-Shot-2013-12-17-at-5.10.28-PM.jpg", "You can use all sorts of materials to create a system for holding your arrows. Get creative and build one! Record a video of your quiver in use.", "Make a Quiver", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/da1ff07e2e11e3b4ee451a143bdb7e/Screen-Shot-2014-01-15-at-1.44.28-PM.jpg", "The right form comes from practice and is essential for a good shot. Take a video or clear picture as you practice your shot. Share any tips you have.", "Practice Your Shot", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e7/96c630676611e3bb5effff9e0dfabf/archer_set_up_your_bow.jpg", "Do some research and find a bow that fits you just right. Take a video explaining why your bow is right for you.", "Set Up Your Bow", 4)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/d9191127dd572af1b198dd436531b5/Screen-Shot-2013-07-31-at-5.16.48-PM.jpg", "Upload a model of a design you created with 3d software, like Sketchup.", "Build a 3D Model", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e3/bc88e26aca990d47a5a92db3f55ef2/Screen-Shot-2013-07-29-at-5.40.24-PM.jpg", "Make a floor plan – as if you were looking down on your building from above. Include details about rooms, doors and windows.", "Draft a Floor Plan", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d2/b2945f2e6756af6d0f7a905dbb4ab7/Screen-Shot-2013-07-31-at-3.52.31-PM.jpg", "Draw a two-point perspective view of a building. This type of drawing mimics how we actually see things in space.", "Draft a Perspective View", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1d/d0676dda070b38095c42c2bb940c10/Screen-Shot-2013-07-29-at-3.07.01-PM.jpg", "Draw a sliced open side view – also called a Section – of your building.", "Draft a Section", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0f/c10aba3971582d15125aaa80b97183/Screen-Shot-2013-10-07-at-3.04.53-PM.jpg", "Draft an Elevation. Elevations are straight-on drawings of the faces of a building: front, sides or rear.", "Draw an Elevation", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/02/7401c48d66d55845f7a9a7bdf4789a/Screen-Shot-2013-08-06-at-11.40.22-AM.jpg", "Create a detailed, colored illustration of your fantasy building in its environment.", "Draw an Imaginary Building", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/94/838c0b8c1a4601c3c29f818d5f388a/Screen-Shot-2013-07-29-at-5.25.47-PM.jpg", "Use Minecraft to build an architectural model.", "Make Architecture in Minecraft", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/de/e35f492084b9dbcf3f50119d16683e/Screen-Shot-2013-04-23-at-1.22.37-PM.jpg", "Make a video of yourself describing an architectural style that is common in your area.", "Make a Local Architecture Documentary", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8d/9d1a1e2ba87e7d7981b29d363bbb28/Screen-Shot-2013-07-31-at-5.22.39-PM.jpg", "Present your own model or design in an intelligent spoken description to friends or family. Record it with a video.", "Make a Presentation Video", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a6/b67d71b76168090d30f394e7fe61e5/Screen-Shot-2013-07-31-at-5.34.28-PM.jpg", "Build a detailed, to-scale model of a design you created. Use materials like cardboard, chipboard, wood, sticks and glue. Lots of glue!", "Make a Scale Model Building", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/44/a8ced0e067f0728e9a8482cb80704f/Screen-Shot-2013-07-29-at-3.57.26-PM.jpg", "Make an Axon, or Axonometric, drawing. This type of drawing is not actually how we see, but can be helpful in showing the overall view.", "Make an Axon Drawing", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/ed3b1f55ab6ad72afd383ecb44bcf6/Screen-Shot-2013-07-29-at-2.52.14-PM.jpg", "Make a sketch from a real building. Choose a detail of the building you love to look at.", "Sketch a Real Building", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b3/a61af522b5dfebc9b7280b3ed1903c/Screen-Shot-2013-04-17-at-2.38.17-PM.jpg", "Create a building sketch in the style of an architect. Use straight, confident lines, square corners, and patterns for shadows and surface texture.", "Sketch like an Architect", 5)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6d/d35c3e840b04715fa3f46338e0eb07/Screen-shot-2012-08-20-at-11.34.24-PM.jpg", "Make a scale model of the solar system to try and grasp its massive size. Use labels when necessary.", "Build a Model Solar System", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b1/06156dfbfba78bb54e2b20edfaf923/DSC_0154.jpg", "Build your own dome and projector to immerse your audience in the wonder of the night sky. Take a video and show it off.", "Build a Planetarium Dome and Projector", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d5/0b5aa9976ad1cbfb919d7625a507e9/astrolabe.jpg", "Build an astrolabe and measure the height of the tallest thing in your neighborhood. Record a video and mention how tall you think it is.", "Build an Astrolabe", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f8/00597f9f064c9f77ab482d62ceb057/Screen-Shot-2013-07-02-at-2.51.11-PM.jpg", "Astronomy flashlights allow you to set up telescopes and read star charts without losing your night-vision. Red light is cool that way.", "Build an Astronomy Flashlight", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/60fb293eb83c1df2542e99840a7f77/FHTUT7LGQWFKA9G.jpg", "Get yourself a near space balloon and attach a cheap camera to it. Take a video from the edge of space!", "Launch a Near-Space Balloon", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/90/362504673dbc51152b6d6664ed7488/Pinhold-Projector.jpg", "Make a solar viewer and take a picture of the sun through it.", "Make a Solar Viewer", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0b/027f77df7d3a6cf3235f3eb60f83cb/316681630_01835dc023_b.jpg", "Create your own spectrometer and take a picture through the eyepiece as you look at an object", "Make a Spectroscope", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fc/bf25a845b0e0a9da2ca5fecbfd8e55/Screen-Shot-2013-07-02-at-4.01.26-PM.jpg", "Make a sundial and compare its reading to an actual clock. How far off is it? Take a side-by-side picture to show the two readings.", "Make a Sundial", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/53/2829ceff59b3d0eb3c271e4cdcdc0a/Screen-Shot-2012-08-30-at-2.42.31-PM.jpg", "Build a telescope with real lenses. Take a picture of your creation along with a photo looking through the eyepiece.", "Make a Telescope", 6)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/39/74caff0c9d451b88a3ccdf9b1cd73e/Screen-Shot-2013-07-08-at-12.40.28-PM.jpg", "Find a tree, building or boulder, whatever...just make sure it\'s safe! Take a video yourself climbing it or snap a pic that provides a good reference to it\'s height.", "Climb Something Taller Than You", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d3/ad6bda61dbe48728da3d09252ec684/Screen-Shot-2013-07-08-at-4.48.12-PM.jpg", "Have someone film you as you start the race and cross the finish line.", "Complete a Race", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/64/0fbfad39ab03f69916085e29476d9f/Screen-Shot-2013-04-02-at-6.11.00-PM.jpg", "Find a recipe suited for your athletic endeavors, cook it, and then take a snapshot.", "Cook an Athletic Diet", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3f/12d685c7952f9093367fac56f5875c/Screen-Shot-2013-07-08-at-12.46.28-PM.jpg", "Snap video of yourself showing how you build strength.", "Develop Strength", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/be08a4a36d66c5fbff6e531d32a826/Screen-Shot-2013-07-08-at-4.53.05-PM.jpg", "Show off your athletic prowess by performing an extreme sport.", "Go Extreme!", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f8/ff1338775f49be924848ef18c1acf0/Screen-Shot-2013-07-08-at-1.21.19-PM.jpg", "Let your creativity and athleticism shine and make up your own game! Explain the rules with a video.", "Invent an Athletic Game", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/693f62ba1ceffadbbd0cc8dfd199d3/Screen-Shot-2013-07-08-at-12.48.33-PM.jpg", "Take videos of your gymnastics to track your progress and share your tips and tricks.", "Perform Gymnastics", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a1/bb0606343b930bce450a3a65e628ee/Screen-Shot-2013-07-08-at-4.20.02-PM.jpg", "Snap a video of some basic martial arts moves or put together a routine.", "Perform Martial Arts", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1c/3c20ca205df52a63494be300ffa10a/Screen-Shot-2013-07-08-at-4.06.59-PM.jpg", "Take a video as you make the city your playground.", "Perform Parkour", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c9/8cb5e72c0fa3a0bd226ff999a8e3a4/Screen-Shot-2013-07-08-at-12.54.14-PM.jpg", "Find a pick up game in your area or join a team at school.", "Play a Team Sport", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/27/346f6479a8d5f42fc0e122a33b9331/Screen-Shot-2013-07-08-at-4.50.39-PM.jpg", "Explain all of the obstacles in your course and then take a video as you complete it.", "Run an Obstacle Course", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/65/cee450dc5711e380bcc5d86242f043/Screen-Shot-2014-05-15-at-10.38.47-AM.jpg", "Swimming is a great form of exercise. Swim 10 laps, tread water for 60 seconds, compete in a race, or explain how to do your favorite stroke. You\'re going to need to be in water for this challenge. Share everything with a video. ", "Swim", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e3/20f8a7ab9f8b1f2661133e8f1f0b1c/Screen-Shot-2013-07-08-at-4.43.32-PM.jpg", "Before competing you have to train hard. Share your training routine with pics or video.", "Train for a Competition", 7)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/d77a91358bf149ebb0401fd391692e/diyintro.jpg", "Learn about NPM an use a Node.js module to see how fast your server is. Take a screenshot of your speed!", "Clock Server Speed", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/48/9cace40ab4b3cbf97d7d1dfc105f67/diyintro.jpg", "Create a server that talks to other servers – a proxy! Follow the intro and get your DIY Stream\'s API, then take a screenshot of the JSON!", "Create a Proxy Server", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9c/65f577f33ec45fc23c0f8a9b883203/diyintro.jpg", "Use the intro and Heroku to deploy, and upload a screenshot of your live web app.", "Deploy a Web App", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/55/256f00dc5e11e3a8b5b99d477cc2b0/Screen-Shot-2014-05-15-at-11.28.28-AM.jpg", "APIs are the way servers translate the data they give to websites and other apps. Query DIY\'s API and upload a screenshot of your result.", "Query an API", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e2/cf6ab2dabc6d3620bb5b7a1b36e4c5/diyintro.jpg", "Run the Node.js server we\'ve made and see just how browsers and servers talk to each other. Upload a screenshot of the server when it has started.", "Run a Node.js Server", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/26/9c9f3f43b692c353fe44169830bb5e/Screen-Shot-2013-07-09-at-4.32.06-PM.jpg", "Install Node.js, Google Chrome Browser and Sublime Text editor. Take a screenshot with these programs open.", "Set up a Development Environment", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/34/3ec73818861563fa4b8ddca5204dd8/Screen-Shot-2013-03-20-at-5.02.51-PM.jpg", "Now that you get what a web server does, use Node.js to write your own! Use the resources here and submit a screenshot of your new server code.", "Write a Simple HTTP Server", 8)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/6a160699fa2e057e8377f994b2f0c7/Screen-Shot-2013-07-10-at-2.57.26-PM.jpg", "Building a barn, coop, shed, or pen will keep your animals (and your plants) happy, healthy, and safe. Show off your build with a video.", "Build an Animal Enclosure", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2b/855d2bf74c568c093a6e309c2c6b5f/Screen-Shot-2013-07-10-at-3.02.07-PM.jpg", "Take the guesswork out of your watering by building an irrigation system for your backyard farm.", "Build an Irrigation System", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/52/aa97fdc4b1eb5d56fc2ff510cd326c/Screen-Shot-2013-03-29-at-11.20.29-PM.jpg", "Save seeds from the best of your harvest to plant the following season. Take a video and share techniques on how to collect and store seeds.", "Collect and Save Seeds", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/58/190d91c35ce55f782059fbd3800792/6a00e008cbe8b58834016760f924e7970b.jpg", "Draw a map of your land with your garden plans, water sources, and areas that get sun and shade and add labels.", "Draw a Map of Your Farm", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/28/c3b29780cb2c1ebf84f0723da3150b/zones.jpg", "Find the hardiness zone of your area and list three plants that work best in that zone.", "Find Your Hardiness Zone", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5e/4de79ac9ddacd8b56c1196f6592616/chinense-pepper-2-smalljpg-937ee6c8a3b4685d.jpg", "Research your crops before picking them to make sure you\'re harvesting at the right time. Share what you\'ve picked with a video.", "Harvest Crops", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3a/81a051f24307acc337c43121c80cc3/030.jpg", "Milk, eggs, wool, honey... all good things that come from animals. Explain what you\'re harvesting and how you plan on using it.", "Harvest an Animal Product", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/26/bfc455c1f42ed5a276ea44000fb669/Screen-Shot-2013-07-10-at-2.42.45-PM.jpg", "Raised beds are a great way to grow things when you don\'t have a big yard. Shoot a video of your raised bed and explain how you made it.", "Make a Raised Bed", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/77/81ce9d4c7f8b6cba57c8a070f3a162/soil-test01.jpg", "Start by testing to see how much sand, silt, and clay your soil has has. No matter what, adding compost always helps the situation!", "Manage Soil", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b9/2d477579e7b9256b1e09e3469380a9/Screen-Shot-2013-03-29-at-3.46.18-PM.jpg", "Go take a good look at your land. What areas get sun or shade? Where is it wet or dry? Record your observations and share them with a video.", "Observe Your Land", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/5d5decd2e13c7afba2bcb8377f98de/Screen-Shot-2013-03-29-at-1.24.39-PM.jpg", "Unlike perennial crops, annual vegetables need to be replanted every year. Start early enough and you can grow your plants from seed.", "Plant Annual Crops", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ba/e7af3c2eb1e5b1c1428a287216dd25/IMG_2121-768x1024.jpg", "Perennial plants come back year after year, often producing bigger and better harvests as they grow. Try and plant a local perennial.", "Plant Perennial Crops", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/87/4781fb65d4e27f706f4892d9a20514/30361_food_frozen_raspberries.jpg", "You may find yourself with far more produce than you can use at one time. Dry, can, freeze, or ferment extra food so you can enjoy it year-round.", "Preserve Your Harvest", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d4/0da053410b13a65b950534d99050b8/red-worms-in-compost.jpg", "A backyard farm will produce a lot of waste. Don\'t let that waste go to waste! Create a composting system to recycle nutrients back into your soil.", "Produce Compost", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/609b33d0c2a079fedbfb0bae278cd3/Domestic_goat_feeding_on_capeweed.jpg", "Show off all of your livestock and explain how you take care of them. Make sure your photo or video clearly shows your livestock.", "Raise Livestock", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/7de5a0c73f05dcec6c9915b00aa663/vegetables-green-vegetable-basket.jpg", "Often the best thing about creating something is sharing it with others. Start a CSA, take your produce to market, or give your bounty to a friend.", "Share Your Harvest", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b7/ae8cabc43f2af9310c8cf3714456b6/Screen-Shot-2013-07-09-at-9.28.35-PM.jpg", "Give a tour of your backyard farm. Talk about what you planted, what animals you have, what you want to do in the future.", "Show Off Your Backyard Farm", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0e/dd7750c292be025480948a1b853856/Planting-a-Fruit-Tree1.jpg", "With careful planting and timely pruning, fruit trees can bring shade, beauty, and, of course, food! Plant a new tree or care for an existing one.", "Tend a Fruit Tree", 9)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ee/ab4226672100711d8aa46b707abd59/GF-sandwich-bread-thin-slice-4.jpg", "Some people have an allergy to gluten. You can make your own gluten free flour, or buy it in a store. Bake something tasty with it.", "Bake Gluten-Free", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2b/5cd688c05a53311055ca0a97379dfc/minecraft.jpg", "Creeper, Steve, Angry Birds, Mario, Spongebob and any other character you can think of, all make sweet looking cakes.", "Bake a Character Cake", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/20d1e5b68e2d0efb64a28f30b4a857/Screen-shot-2012-11-02-at-2.14.53-PM.jpg", "A simple loaf of bread uses flour, water, salt, and yeast. Take a picture of your loaf before AND after baking.", "Bake a Loaf", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/e88c95ea110d17527805a79a22d927/Screen-Shot-2013-07-11-at-2.04.18-AM.jpg", "Cakes, brownies, cookies, banana bread, biscuits, cornbread, muffins, pancakes or scones. It\'s all good.", "Bake a Quick Bread", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/39/724e6cd05db0c5dfe9bfb7abcb608b/wheat-procurement.jpg", "There\'s no better way to appreciate the process of bread than by growing the grains yourself. Find a patch of land and start growing!", "Grow Grain", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/be/f4a6227869f78cba1d9c5749887680/Screen-Shot-2013-07-11-at-2.22.16-AM.jpg", "Try putting different things in it, knead it differently, use weird yeasts... Write down your instructions and ingredients, and snap a photo of it.", "Invent a Baking Recipe", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/86/93392e5a894c71a57c44b5e59dd15f/sd.jpg", "Once you\'ve made your sourdough culture, you\'ll need to keep it alive by feeding it flour. Take a picture a week and keep it alive for at least a month.", "Maintain a Sourdough Culture", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/49/e1dff96b1fab0c70721dca55116ac7/pastry-dough-divided.jpg", "Pastry techniques vary, but two key ingredients remain the same — flour and butter. Show us your process as well as the finished product.", "Make a Pastry", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9b/c8b5ff0a3dac0064964067388e01d2/Sourdough-starter-003.jpg", "There are commercial yeasts, which are fast acting and quick to use, but wild yeast creates more complex flavors, texture, and nutrition.", "Make a Sourdough Culture", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/88/fbbc55cbebe67eb3bac2e01c494e11/Screen-Shot-2013-07-11-at-2.46.43-AM.jpg", "In the old days, bakers made their own ovens, usually from bricks or cob. Build an oven that can withstand high heat and take a video.", "Make an Oven", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/9ef52f9b9165d971b13a3e6e643dd1/Screen-Shot-2013-09-05-at-1.16.23-PM.jpg", "Once you\'ve made your pizza dough, grab your video camera and give it a toss! Try and catch it five times without it ripping like an old pair of jeans.", "Make and Toss Pizza Dough", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b9/74d403b1fc5c234f561704771c3049/Screen-Shot-2013-07-11-at-2.31.09-AM.jpg", "Most recipes list ingredients by volume, but measuring by weight is more accurate. Show how you measure ingredients with a video.", "Measure Ingredients", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/bf10a4c556cc56e853791bcd84e600/Screen-Shot-2013-07-11-at-2.35.26-AM.jpg", "There are all kinds of mills designed for the home kitchen. You can even use an old juicer or a high-powered blender to make your own flour.", "Mill Grain", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/80/aa9b7fac727ea0584c10bb48b8276e/IMG_8709.jpg", "Transform your stale bread into anything from French toast to crunchy croutons. Share what you made with a video.", "Revive Stale Bread", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/63/aa8c9b1a77e68f936153adbfd3a4b8/120318-2478.jpg", "By scoring (or slashing) your bread, you not only make it look cool, but you help it to expand and grow during the baking process.", "Score Your Bread", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b4/2a93dc2b31b1c091c88b286ab8533e/PC028456.jpg", "Gather all of your ingredients and utensils that you\'ll need for baking, lay them out and take a video. Bonus points if you explain what each item is for. ", "Set Up a Bake Space", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7c/cbecdedeb795be494f0f0422d2d98e/Screen-Shot-2013-07-11-at-2.44.21-AM.jpg", "Once you\'ve mastered your skill, sell your products to restaurants, grocery stores, farmer\'s markets, or anywhere else people crave good baking.", "Start a Bakery", 10)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/04/c0a5b930496c1aa16ce1f5cdb550f8/Screen-Shot-2013-11-25-at-11.54.33-AM.jpg", "If you\'re making a beat from samples, you\'ll want to find the most awesome and rare sources, not just stuff everybody knows. That\'s why beatmakers go digging for old records.", "Dig for Records", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2b/2bd639eba8426f8cbe7709834062a3/Screen-Shot-2013-11-25-at-11.18.26-AM.jpg", "By using your lips, breath, and voice you can sound incredibly close to a real instrument, or sounds that have never been heard.", "Do Vocal Percussion", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2e/f7430f44e8c9998b75791a4df8f7d3/Screen-Shot-2013-08-20-at-7.41.34-PM.jpg", "Get back to the basics – drum a beat on a real drum or any other object.", "Drum a Beat!", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/8bc8eebb7e6803cf28b262494403db/Screen-Shot-2013-08-20-at-4.34.52-PM.jpg", "Create a musical interface by building an electronic instrument from various parts.", "Make Beats with a Custom Music Interface", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9d/ba0de97b0b2870e7a08bb19ae0ef4f/Screen-Shot-2013-11-25-at-10.45.22-AM.jpg", "Electronic dance music has a fast beat made for dancing. A synthesizer often appears instead of vocals.", "Make Electronic Dance Music", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/87/b17f019f3fd68e6a56a12c52b5e1d8/Screen-Shot-2013-08-21-at-1.35.07-PM.jpg", "Layer your looped beats up into a track! Learn the tools like Audacity or Garageband that will help you.", "Make Multi-Track Music", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d6/359b685a81d809095c5438bb49b39d/Screen-Shot-2013-08-21-at-5.31.34-PM.jpg", "Find a computer or analog synth and make a beat with it. A synth, or synthesizer, is an electronic instrument used for making drum beats and other sounds.", "Make a Beat with a Synth", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/54/c2a15b4aaf4b424243fea9eff61032/Screen-Shot-2013-08-21-at-5.34.16-PM.jpg", "DJ a dance party for 3 or more that makes everyone move!", "Make a Dance Party", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/11/ce3dfcdfa28dfa41320a2579f9f6bd/Screen-Shot-2013-08-21-at-6.41.48-PM.jpg", "Make a Hip Hop song using software, or just bust out with some household objects.", "Make a Hip Hop Beat", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/eccea01ba811aca16817b974f2e644/Screen-Shot-2013-08-21-at-9.13.32-PM.jpg", "Make a looped recording, or drum the basic ingredient of a beat – usually counted in groups of four.", "Make a Looped Beat", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0e/aa70849d89fedafba6fb64a0b7413b/Screen-Shot-2013-11-25-at-11.42.33-AM.jpg", "Polyyrhythms are beats that contain multiple rhythms, instead of just sticking to the same meter. They are more complex, and sometimes more interesting to the ear.", "Make a Polyrhythm", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/96/d7e96f06e299eaae44101d6e766e60/Screen-Shot-2013-08-21-at-4.22.03-PM.jpg", "Use editing software to remix a song you like, or do it the old school way – with turntables! You can even sample the catchiest part for a brand new track.", "Remix a Song", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/3c8bc370fc187315c255973c619e18/Screen-Shot-2013-10-28-at-10.25.54-AM.jpg", "Find a track on DIY and remix it. Make sure to mention where it came from, and share it with a video. ", "Sample a Beat from DIY", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/80/d07cefe3402dde66a94fe6d48006af/Screen-Shot-2013-11-25-at-11.57.30-AM.jpg", "Record a sound – any sound – and bring it into editing software, or make it playable on a drum pad.", "Sample a Real Instrument or Voice", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1b/e09e063d18694c4edc6cb4dfe340d6/Screen-Shot-2013-08-21-at-7.47.56-PM.jpg", "Upload a track to Soundcloud, then share your link in the comments. Soundcloud is a website where electronic musicians often share their work.", "Upload a Song to Soundcloud", 11)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1f/4aded44b8873fb0bc8443f0e4175d4/Bees-Purple-Flowers_ForestWander.jpg", "Plant blue or yellow flowers to attract bees, since these are the colors they like the most. Take a picture of your flower, preferably with bees on it.", "Attract Bees with Plants", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/11/0aa42c2220efae5c6139831a981962/beehive.jpg", "A bee hive isn\'t just a home for bees. It\'s also the place where they store their honey. Take pictures of your materials and finished hive.", "Build a Bee Hive", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3e/f06277cf7e30b0496eee62573ee8a0/mason-1.jpg", "Mason bees don\'t sting, and they\'re 100 times better than honeybees at pollinating flowers. Build a home for mason bees.", "Build a House for Mason Bees", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/2ba2086d56ed0f54c116626d5f0eb2/Screen-Shot-2013-07-11-at-3.03.15-AM.jpg", "Snap a video of honeybees doing the Waggle Dance or a video of you doing your own version.", "Discover the Waggle Dance of the Honey Bee", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/29/b2025fc7c58a6215effebbe9d0eacd/Honey_comb.jpg", "One of the perks of beekeeping is the honey! You can harvest it by spinning it out or melting the wax comb. Take a picture of the natural comb.", "Harvest Honey", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/11/c91ebf23bd4c5aab26ad7da82b7bfc/Screen-Shot-2013-12-03-at-2.08.43-PM.jpg", "Beekeeping suits cover your whole body and are sealed from any gaps that could allow bees to sneak in. Make one from things you already have.", "Make a Beekeeping Suit", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9f/c68e96356dbee4b20c2c37b32cc331/bee-smoker-5.jpg", "Smoke makes bees calm and docile. Build a smoker from things found at home and upload a video of it smoking.", "Make a Homemade Bee Smoker", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c7/d8ac51203df1005422b4fd2a3cf6ae/beeswax.jpg", "Once you\'ve gotten all of the honey from the comb, you can melt it down to render the beeswax. Weigh your wax and post a picture of it.", "Render Beeswax", 12)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e5/d09a18717403667575461c1f6ddfa0/800px-Shimano_105_rear_derailleur.jpg", "Set up a video camera and film while you adjust your rear derailleur and help make your bike shift smoothly!", "Adjust a Rear Derailleur", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/9d95d2a4101953ceb418a823f10774/FAMKCM3FJNELAI1.LARGE.jpg", "Cycling at night is dangerous without a proper light. Build one and show us how bright it is with a video at night.", "Build a Bike Light", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/91/0fe80e74fd76b6457eb6f42da871f5/Screen-Shot-2013-12-03-at-3.40.09-PM.jpg", "A bike trailer can help you carry large loads over long distances. Design your own bike trailer, construct it and show us how much stuff you can haul!", "Build a Bike Trailer", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/72/4595d12e70c7a8224b8e0379c67182/FYBSYN1HR2EP27SJNP.LARGE.jpg", "Construct a bicycle repair stand using easy to find parts and share your creation with a video.", "Build a Repair Stand", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c7/712e9f943588a96a27160140c8e185/DSC_0019.jpg", "Clean and lube your chain and create a how-to and show everyone else how to maintain that smooth ride.", "Create a Chain Lube How-To", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/75/29536d83aa616614227faf1cf07512/white-unicorn-bicycle-02.jpg", "Wacky colors, custom seat covers, crazy frame mods, and whatever else you can think of.", "Customize Your Bike", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c4/06e6b8f2f2ab3d5e3db19f7f2cc5c3/Screen-Shot-2013-07-11-at-3.39.53-PM.jpg", "You ran over glass. Bummer. Turn lemons into lemonade and take a how-to video as you either patch the flat or replace the tube.", "Fix a Flat", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/8f82aa1e5dbf53edd657ef2bfaf53d/FDB1N9UHLIDD94I.LARGE.jpg", "Make your own fenders, install them on your bike and keep your back clean of mud and water.", "Make Bike Fenders", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b8/a945265ade86b982dd145804ef963e/Screen-Shot-2013-07-11-at-4.10.18-PM.jpg", "Old rusty bikes are easy to find at garage sales or even in your own garage! Find an unloved bike, restore it to it\'s former glory and ride it.", "Restore an Old Bike", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/16/26796a4ae0acd69a1235554d681741/EdPgblOMXBG4KKxa.jpg", "Every so often, your bike can get so dirty that you\'ll want to do a complete tear down. Take a video of your entire process and share it.", "Tear Down, Clean & Reassemble a Bike", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9c/e6e5be42f695d4283b3103791c7905/Screen-Shot-2013-07-11-at-3.49.28-PM.jpg", "Wrap your own handlebars and show off your craft!", "Wrap Handlebars", 13)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/ee7d8f82e0f573ed51576194e45e62/004.jpg", "Some living things are easy to see, but others require special tools to observe. Create something that will let you look at life in a different way.", "Build a Bio-Observer", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8c/270fe77b3bcc31442ea02ea3339178/DSC_1455-1024x685.jpg", "Use food dye to see how plants get the water and nutrients they need through tiny capillary tubes.", "Demonstrate Capillary Action", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b6/f25d9c5e6ffcaa5b3b038fc09b04df/Screen-Shot-2013-09-03-at-1.00.55-PM.jpg", "Use a dissection software, or dissect a worm, frog, snake or fish. Take screenshots or pictures along the way. If you\'re using a real specimen, be mindful that it was once a living, breathing thing. ", "Dissect a Specimen", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f0/04e86bf3b0f940d3a00671d6a5c1b0/Screen-Shot-2013-07-15-at-1.07.02-PM.jpg", "Use food to demonstrate the biological process called Osmosis. Take a video or time-lapse to show its effect.", "Do Osmosis with Food", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fb/e0f23e3cbcdc354562292d6d03b6fc/Screen-Shot-2013-05-24-at-10.13.42-PM.jpg", "Draw a food web to show how different life forms in an ecosystem depend on each other for survival.", "Draw a Food Web", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5e/a94f11d8b1c8ea0b7a502dfc55e85e/8000566934_fc4f583c2d_b.jpg", "Use enzymes to remove the long DNA strand from its cell. DNA is too small to cut out with a knife, but enzymes break down material into smaller pieces. Try this on yourself, a strawberry, or any other form of life.", "Extract DNA", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1d/9f6346dac31f335832923bdc3cf07d/Screen-Shot-2013-07-15-at-1.32.12-PM.jpg", "Harvest live bacteria and grow it in a petri dish. Bacteria are some of the smallest living things – but they\'re everywhere! Some are harmless, some make us sick, and some we can\'t live without.", "Grow a Bacteria Culture", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/c680b3ab653f3572f866143f67bace/Screen-shot-2012-08-26-at-6.47.19-PM.jpg", "Biologists can use their knowledge of an organism to help it survive. Learn about moss, then help it grow in some unusual ways.", "Make Living Art with Moss", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/203933f1c049986a480dc34934a47c/Screen-Shot-2013-10-24-at-11.16.37-AM.jpg", "There are millions of living organisms all around you, hiding just outside your range of vision! Build a microscope and check them out.", "Make a Microscope", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5d/a9542d3fb4bc160c5f8abf7e3f3f6c/Screen-Shot-2013-12-03-at-4.33.38-PM.jpg", "Make a model of a cell. Research the anatomy of a cell, then make it out of food, clay, or any other material.", "Make a Model Cell", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4c/e5a68ae0454d6eccce60edb82c7c66/Screen-Shot-2013-07-15-at-12.43.27-PM.jpg", "Create a model of double helix DNA strand. These are the microscopic set of instructions that tells cells how to replicate themselves.", "Make a Model of DNA", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/33/c608cc09ffba1854934a10eb15bd30/Screen-Shot-2013-07-15-at-1.25.07-PM.jpg", "Bring a specimen back to your laboratory and preserve it. Make sure not to disturb a natural habitat. Take a video of your preserved specimen.", "Preserve a Natural Specimen", 14)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/84/6f8466601f84b733818864da79f6f3/Screen-Shot-2013-08-13-at-2.07.36-PM.jpg", "Use littlebits to create a wheel or vehicle that can change speeds and go fast or slow.", "Alter a Vehicle’s Speed", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bf/4bc0663b685ceae9e6def609534cee/Screen-Shot-2013-08-13-at-12.30.30-PM.jpg", "There are lots of toys without electronic components. Choose one to \'bitify\' with an electronic circuit.", "Bitify a Toy", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/63/95933f947a7737e895ac82391d6797/Screen-Shot-2013-08-14-at-12.31.21-PM.jpg", "Use the sound sensor to create a project that\'s controlled by noise. Your voice works perfectly for this.", "Build a Sound-Triggered Circuit", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8c/8b7e29996c0e9166e429179365384d/Screen-Shot-2013-08-13-at-11.44.05-AM.jpg", "Use the fan bit to harness the power of the wind to propel a toy, blow a huge bubble or create a confetti cannon.", "Build a Wind Tunnel", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/88/11a03ccec45a05700d6b6b5652fafb/Screen-Shot-2013-08-13-at-11.54.39-AM.jpg", "Decorate your room or window with an animated sign that lights up.", "Create a Flashing Sign", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/11/bff8c28e9e7312ab7532b54d1d85db/Screen-Shot-2013-08-13-at-1.55.42-PM.jpg", "If you get the Bits to interact with each other, you can create a sweet Rube Goldberg machine.", "Create a Rube Goldberg Machine", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/30/41d0484b6977e65383253c4bd2742b/Screen-Shot-2013-08-13-at-1.12.03-PM.jpg", "Increase circulation by crafting a windmill out of Bits and craft materials.", "Create a Windmill", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/805c0dc449cc57fe4c903ef74ad857/Screen-Shot-2013-08-13-at-12.33.54-PM.jpg", "Keep score with a littleBits game! Use Bits and craft materials to create a game that at least two people can play.", "Design a Game for Friends", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f6/0930ea8ad1c71ada2e3f0e13832261/Screen-Shot-2013-08-14-at-2.02.01-PM.jpg", "Use your littleBits and create something BIG. Four foot sharks, gigantic puppets and monster Ferris wheels are all really cool.", "Make Something BIG", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/89/c0e66fabd8dd7f199fa778163271a7/Screen-Shot-2013-08-14-at-11.32.12-AM.jpg", "Fashion an accessory using Bits and craft materials. The light wire is especially useful here.", "Make a Wearable Circuit", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/76/f6289fbd1f0054b477431c3279b8e7/Screen-Shot-2013-08-13-at-11.26.43-AM.jpg", "Use littleBits to make a bot that combines craft materials like crayons, paint and markers to produce a work of art.", "Make an Art Bot", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f0/ec1a328791452065c8b14c4388d05a/Screen-Shot-2013-08-13-at-11.46.15-AM.jpg", "Make a light-activated alarm to rise and shine with the sun.", "Wake Up with the Sun", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/25490073df0f94d22cfb73e7d7aadc/Screen-Shot-2013-08-14-at-12.35.25-PM.jpg", "Secure your room from parents or siblings by making a noisy littleBits alarm.", "Ward Off Intruders", 15)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c7/8ed8fbf424f044739f2ba0076ecc4e/il_fullxfull.366793222_g60k.jpg", "A botanist kit contains items like tweezers, a sharp knife and a needle tipped probe. Create a cool case for your tools and put it all together.", "Assemble a Botany Kit", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/58/4299cf5d103f9c9f3fa428456147ab/popbottle1.jpg", "Greenhouses keep heat and moisture trapped so your plants can grow stronger and faster. You can make one from scrap wood and plastic wrap.", "Build a Greenhouse", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/26/50fd83b9cab9595d4f6cec9d5e0300/Screen-Shot-2013-12-03-at-5.28.39-PM.jpg", "You can make a plant press from simple materials that you already have. Press some plants and show how your press works.", "Build a Plant Press", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2c/109d7a6a2a7f85840af571664c5e89/Save-Tomato-Seeds-With-Preservation.jpg", "Collect at least 20 small seeds (apple, tomatoes, carrots) or 5 large seeds (avocado, coconut), and snap a clear photo of them. Store bought seeds don\'t count — these must be collected by you!", "Collect Seeds", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a2/e65ef5bcce194caa4593113c6fdd66/Screen-Shot-2013-04-22-at-6.24.15-PM.jpg", "A great way to share your plant prowess is to make a plant ID book. You can draw the illustrations yourself or use pressed plants. Label everything!", "Create a Local Plant Guide", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e9/45fdd61b3fc057fe8bf3cee571d365/pressed.jpg", "By mounting and labeling pressed plants, you can have something that is both beautiful and informative. Bonus points for framing them.", "Display Pressed Plants", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6b/b0e37f9432886691f7d00fe2146eb2/Screen-Shot-2013-07-22-at-11.14.50-AM.jpg", "Shoot a video of yourself dissecting a plant. Point out at least 3 plant parts.", "Dissect a Plant", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b6/f156b4022252e5539d8691443dde9a/Screen-Shot-2013-07-22-at-11.59.27-AM.jpg", "A microscope is the perfect tool to get a closer peek at plants. Once you\'ve focused your lens and you have a good view, try and snap a picture.", "Explore Plants Microscopically", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/44/42b0d479b3f2f87d4d2db2929a11e1/Screen-Shot-2013-05-14-at-10.04.38-AM.jpg", "Pick some seeds and germinate them in different ways. A good start is using paper towels vs soil. Be sure to document the results!", "Germinate Seeds", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/abaa09cd1af6d5bf0caff649eaa725/Screen-Shot-2013-12-03-at-5.44.43-PM.jpg", "Grafting lets you combine the best traits of two plants. Show how grafting is done by making a How-To video.", "Graft a Plant", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e3/1956bfc3fdcc5fe863542c314f1df3/Top_view_of_a_dandelion.jpg", "Do your research and find a plant that can be used as medicine. Name the plant and describe its use in a video. ", "Identify Medicinal Plants", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/66/ca3f1269a311d90dbe65cb58b40947/poison-oak.jpg", "Identify a poisonous plant and explain what would happen if you rub up against it or ingest it.", "Identify a Poisonous Plant", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1f/4cda232abc80581025a1101bf0c0fa/Screen-Shot-2013-05-13-at-1.39.54-PM.jpg", "Take a video as you (correctly) identify a plant.", "Record Yourself Identifying a Plant", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/2efc74b435da7e0bf189bfe8a20079/Screen-Shot-2013-07-22-at-11.09.01-AM.jpg", "Take a picture a day of a growing plant for at least 10 days and turn it into a time-lapse video.", "Time-Lapse a Plant\'s Growth", 16)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/50/a8bf8a7c4c189fd1cf12dca5581383/mess-kit-pizza.jpg", "Learn and share the methods of backcountry cooking. Making meals full of proteins, fats and calories will keep you fueled for the hike.", "Cook on a Campfire", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/5607a16ed99b1cf496015a9e9e19cd/EDC_Mini_Survival_Kit_Emergency_BOB13.jpg", "Make your own backpack, survival kit, or stove. Tailor your camping experience to your own needs!", "Make Your Own Gear", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1f/add085e67144776c15de300480aa89/campfire.jpg", "Protect the wilderness by making a low impact campfire. A ground cloth or tarp piled with earth will protect the topsoil and completely remove traces that you were ever there.", "Make a Low Impact Campfire", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e0/2d5c0b66a4cc3c42a7d557c533804e/how-i-pack-lrg.jpg", "Open up your hiking pack and describe the things you\'ve packed to go on a camping expedition. Upload a video of your packed bag. ", "Pack a Backpack", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f2/00314c740692361dd6f0486a0330ac/Willow19.jpg", "Learn a survival skill to help you survive in the wilderness, then demonstrate it through photo or video. It may save your neck one day!", "Practice Survival Skills", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/aa/86211b6df07b6b36e79d617a837fe2/examining-ligustrum-with-biologist-chris-warren.jpg", "Protect native plants and animals by clearing out invasive species, or gather the trash left by others. Leave the wild better off than when you arrived.", "Protect the Wild", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/04/d031a130eb65c7a29853bc3298b29b/F1M3EMGGQBCI07H.LARGE.jpg", "Use a filter, special chemicals, or boiling to purify water you collect for drinking. Show your process with a video.", "Purify Water", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ac/2812258e5fb0fd0f0af37f58c01651/79b2ece9.jpg", "Set up a shelter in the wild using a rope and tarp, or logs and sticks. Take a picture or video of yourself inside it.", "Set up a Shelter in the Wild", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/96/afed8735b0f47a00289b6c13262b7d/Screen-Shot-2013-05-28-at-11.28.51-PM.jpg", "Capture a dramatic photo or video of yourself as you travel a wilderness trail.", "Travel a Trail", 17)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b5/ea5d37a932c57c3609c09b1ab44b52/IMG_0119.jpg", "Print out a few paper templates, glue them to your cardboard, and cut them out. A contraption should move, so take a video of it in action.", "Build a Cardboard Contraption", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/59/a1a8a9ecb76966ce02d2063f7a8c88/Screen-Shot-2013-05-02-at-5.59.45-PM.jpg", "Cardboard vehicles are more about novelty than reliability, but they\'re still pretty fun. Make something that moves out of cardboard and video it.", "Build a Cardboard Vehicle", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c1/8dcca224ff31be2e23cffea059b502/owl.jpg", "Build an animal, a dragon, or a space alien – anything! Or why not try adding a face or arms to some object that might not already have them.", "Build a Creature with Cardboard", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/9c5595ff16e4b613670c05a804ac65/IMG_0534.jpg", "Join the Imagination Foundation\'s yearly Global Cardboard Challenge, or create your own Cardboard Challenge. Capture everything with video.", "Host a Cardboard Challenge", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e4/7456485c4d457eb8f81c441ddae425/Screen-Shot-2013-05-10-at-12.52.34-PM.jpg", "Use cardboard as a sculpture medium for your designs and dreams. White and yellow glue hold best. Take a picture of your masterpiece.", "Make Cardboard Art", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e4/7729ad774e48be0deecdf4bc5ce7e7/chair-outside.jpg", "Cardboard furniture isn\'t just for prototypes. By folding and gluing, you can create a super-strong piece of furniture. Once you\'re done, snap a photo.", "Make Cardboard Furniture", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ca/7c66cc38c315d5fadce2daba652a9e/Cardboard-Office-Interior-01-800x533.jpg", "Make an entire building, or create a cardboard room. Use lots of layer for a solid structure. Take us on a video tour once you\'re finished.", "Make a Cardboard Building", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e7/cb26007d4611e383352becf0c2a81d/cardboarder_make_a_cardboard_costume.jpg", "Build your own costume from cardboard.", "Make a Cardboard Costume", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0a/5b6c6f7ab4d44b448b5ccfde827e10/Screen-Shot-2013-05-15-at-10.51.11-PM.jpg", "You can make just about any game using cardboard. Create a marble run, or get creative and make something totally new. Capture it with a video or pictures clearly showing the game.", "Make a Cardboard Game", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4c/1c826854f60210b47751114eb6906b/Jon_Almeda_Cardboard_Guitar_Dobro_2.jpg", "Flutes, Guitars and Xylophones are just some of the instruments you can make with cardboard. Build an instrument, then take a video of it in action.", "Make a Cardboard Instrument", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/56/d6a9007d4911e391a54302811bb231/cardboarder_make_a_cardboard_toy.jpg", "Use cardboard to invent your own toy, or a new version of your favorite design.", "Make a Cardboard Toy", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/40/517283667481545037a1156416e30a/cardcam1.jpg", "Make a prop for a game, make believe, or just fooling around, then take a picture or movie of it in action.", "Make a Prop from Cardboard", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/25/ede68941ec5073860c2f66a342413f/toilete-paper-rolls-art-11.jpg", "Cardboard tubes are versatile. You can make art, or you can make something that\'s strong and sturdy. Take a picture when you\'re done.", "Make with Cardboard Tubes", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/54b6496018915a9591dd920527f30d/Screen-Shot-2013-06-24-at-6.40.37-PM.jpg", "Build a cardboard shelf, a toolbox, anything that helps you get organized. Show a before and after picture once your stuff finds a new home.", "Organize Using Cardboard", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/51/4a218beaed471bfbc33b444b65e836/12mar-painting-cardboard.jpg", "Some enjoy the plain look of cardboard, but finishing it with paint or varnish will help it last longer. Take a video and describe your finished peice.", "Paint and Finish Cardboard", 18)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/48/7ea9704149fd5c74e270e099c7fc3f/Screen-Shot-2013-07-26-at-1.43.31-PM.jpg", "A surveyor\'s job is to find the topography of the land. Build a surveying tool and show how it\'s used with a video.", "Build Surveying Equipment", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/dcd3ef92febd520015f11389a19dfa/Screen-Shot-2013-07-26-at-1.53.24-PM.jpg", "Some digital maps let you explore the Earth\'s terrain in 3D. Make a video flying tour in Google Earth to share a part of the Earth of your choice.", "Create a Virtual Flying Tour", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6d/78dc1a2556fe2e673e89d75ffd0ed9/Screen-Shot-2013-12-05-at-2.21.07-PM.jpg", "There are many ways to edit or contribute to digital maps. Show the map before and after your edit with a screenshot.", "Edit a Digital Map", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ed/cfc1b778821844e719d0ec881b5d35/Screen-Shot-2013-07-26-at-1.49.38-PM.jpg", "Collect your own data, such as where people in your house travel, or where your bus goes, and map it. Share it with a picture or screenshot.", "Make a Data Visualization Map", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c4/b83d4bb0097722e2fe688b482c4efa/Screen-Shot-2013-07-26-at-1.47.26-PM.jpg", "A topographic map displays changes in elevation. You can make one out of nearly anything. Share yours with a clear picture or video.", "Make a Topographic Map", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8c/8fef2b6fa3eadea2f019b062441ad1/Screen-Shot-2013-05-30-at-4.37.41-PM.jpg", "Find all the places you\'ve been or all the places you want to go. Pin them on a paper map, or use a digital one, and post a picture.", "Make a Travel Map", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c5/b665185eb2df6ab0d0237129fa9eb9/treasure-map.jpg", "Hide a treasure somewhere and make a map, or geolocate it, so people can find it again. Be sure to leave plenty of hints, marks, and clues.", "Make a Treasure Map", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ef/dc4c74002f43176ae66945acc38cf6/berann1.jpg", "Some people love a good park, others their house. Create a map of the place where you like to hang out the most.", "Map Your Favorite Spot", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/04/1e6ac33f680c31939fbbaf3647411b/A_Map_of_Middle-earth_and_the_Undying_Lands_color-_1_.jpg", "Pick a fictional city like Harry Potter\'s Hogwarts, map it, then share it with a photo or video.", "Map your Favorite Fictional World", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/cfa9381b678fe27c63b3d895ee3718/miscellaneous-old-compass-and-map-wallpaper.jpg", "Find your way through unfamiliar territory using map and compass. Record your voyage with a video.", "Voyage with a Map and Compass", 19)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/78/d95debd9f6fa251ad5a20032f741cb/nokneadbread10.jpg", "Homemade bread uses simple ingredients, but is super tasty. Bake a loaf of your choosing and share with a picture.", "Bake Bread", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/12/2631af97c0fee9132fa114abb41ae4/Tasty-Kitchen-Blog-Bacon-Stuffed-Whole-Roasted-Chicken-with-Cauliflower-11.jpg", "The best place to source meat is from a farm where you know the animals were treated right. Pick your favorite meat, cook it, and snap a photo.", "Cook a Meat Dish", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cd/7df38f4143162e8c4db5bf69e93271/breakfast-enchiladas-1.jpg", "Cook a meal that is big enough for six people. One pizza is not enough to feed six people. Take a picture of the prepared food and then eat away!", "Cook for a Party of Six or More", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/f16ebef295abca3f1576cb0686be82/Screen-Shot-2013-05-23-at-2.59.29-PM.jpg", "Carefully cut an entire fruit or vegetable into super thin slices – take a picture of them next to a ruler to prove their thinness.", "Cut 1/4 Inch (6mm) Thin Slices", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/27/4e65ae4a8c26ddeb4b798bee465d4e/Screen-Shot-2013-05-30-at-4.36.17-PM.jpg", "Make an omelette filled with all of your favorite ingredients and share that tasty fold of eggs with a picture or video.", "Fold Eggs into an Omelette", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/27/ed19811599d841223721ec5e1ba4de/Screen-Shot-2013-07-31-at-3.27.07-PM.jpg", "Store bought noodles don\'t count; you must make them from scratch. Show a picture of your pasta dough as well as the finished noodle.", "Make Noodles from Scratch", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5d/79a8cb6fe2994a78048992a0efb42d/Pesto.jpg", "A condiment is a sauce that adds flavor and texture to a meal. Take a picture of your ingredients, and then the finished condiment.", "Make a Condiment", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bf/4790f737e70733bee55cbc40f3ac19/Screen-Shot-2013-05-30-at-5.14.00-PM.jpg", "Cookies, cakes, pies and puddings — just a few reasons why we save room for dessert. Take pictures of the process and finished treat.", "Make a Dessert", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/55/1f38500649e4cf87b7a2259bed094c/hamburger-in-braised-red-cabbage-dressing-sandwich.jpg", "Make a patty from meat, potatoes, noodles, even veggies. Take pictures of your patty before and after it\'s cooked.", "Make a Patty", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f2/caebd086ea7c1d982760b759e4d06e/PumpkinBerry_DT.jpg", "Grab a blender and throw in fruits, ice cream, veggies and anything else you can think of and make a tasty smoothie. Share with a picture.", "Make a Smoothie with a Food Processor", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/73/d7c2fea8e8a9386882ba903661b03c/IMG_7095.jpg", "Vegetables look pretty and taste great. Even broccoli. Make a vegetable dish using local produce and take a picture before you scarf it.", "Make a Vegetable Dish", 20)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e9/16d3e0fa2bd8829f78e7b8d3e15850/chemist-make_a-molecular_model.jpg", "Molecules are groupings of two or more atoms through chemical bonds. Make a scale model of a molecule and tell everyone what it is in a video.", "Build a Molecular Model", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/07/2b58b61c517359f2549f851942d33a/chemist_chemically_manufacuture_a_product.jpg", "Use chemical processes to create cleaners, chalk, paint, and other useful products. Show how your product works with a video.", "Chemically Manufacture a Product", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e5/4b866cc85ed57e7f7732973748e7da/HCM-incompatibles.jpg", "Design a system to collect, label, and store your chemicals in a safe and logical way. Snap a clear picture of your chemicals and legible labels.", "Collect and Label Chemicals", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/48/b2100e5ee95d09460b89ad38068e7f/chemist_create_a_foam_explosion.jpg", "Some chemicals go nuts when you mix them. Mix together two chemicals (like vinegar and baking soda) and let the explosions begin. Video is a must.", "Create a Foam Explosion", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4b/fad47f8d75262bbceafbcc22204c4f/media_httpfarm4static_jtGvn1.jpg.scaled10001.jpg", "See how soap breaks surface tension, collects oils, even expands in a microwave! Share your results with a picture or video.", "Experiment With Soap", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a2/8e8a277b8ca1c723246f6a79279d02/Screen-Shot-2013-08-02-at-3.44.03-PM.jpg", "While they make look similar, liquids have different densities and don\'t always mix. Layer different liquids on top of one another and film it.", "Experiment with Density", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b2/80d863f5c03f22202370017b295823/Screen-Shot-2013-08-02-at-3.41.18-PM.jpg", "Build your own battery and take a video as it powers an LED.", "Light an LED with a Homemade Battery", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ae/891cd3d651f5b3d7d1349fa2b7bf2f/Screen-Shot-2013-08-07-at-4.16.05-PM.jpg", "Sodium acetate is a solution that can be supercooled, meaning it will instantly turn from a liquid to a solid. Take a video as your cools in a super way.", "Make Hot Ice (Sodium Acetate Trihydrate)", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f8/7fc24e580d255242f8560499c33692/Screen-Shot-2013-07-31-at-3.41.57-PM.jpg", "Crazy things happen when you mix cornstarch with water. Make ookbleck and take a video as you experiment with it.", "Make Oobleck", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ec/4b5c07ac1be30c0234c176de593093/8bb58172a9f150882cc423ff9c9dbfe9.jpg", "Chemical indicators change color when they come into contact with certain substances. Make your own and film the results.", "Make a Chemical Indicator", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/20/a6417a7dae984e19a394fbfb532ffc/chemist_set_up_a_lab.jpg", "Chemical reactions often require precise tools, temperatures and timing. This is why a lab is a must. Take us through a your of yours with a video.", "Set Up a Chemistry Lab", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4a/1153e47945cee1b6b59f91d2dd318d/Screen-Shot-2013-06-02-at-11.51.39-PM.jpg", "Show your chemical message before and after it\'s activated. Video is the best way to do it.", "Write a Chemical Message", 21)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fb/f92620a56b11e39df1612f2ac77f5f/Screen-Shot-2014-03-06-at-12.19.37-PM.jpg", "Meditation is being mindful. Some practice breathing in quiet places and others meditate in their day to day. Make a video describing how you meditate.", "Describe Meditation Techniques", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/a1cc30a32611e3b1983d6056add197/foot.jpg", "It\'s amazing how just walking through a natural setting can relax you. Shoot some video or take some pics as you hike your favorite trail. ", "Go Hiking in Nature", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/8b2790cfdf11e39922fb4572512c55/DSC_0066.jpg", "Hammocks are great napping devices. You can whip one up with a large sheet and rope, or make a really stellar one with ripstop nylon. Make a quick video explaining how you made your hammock and show how it supports your body as you chillax in it. ", "Make a Hammock", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/80/776480a33111e387832fcf6dc2f322/12813-Leaf-cutting-Ants.jpg", "Amazing things are happening all around us! Keep your eyes peeled for something that you find incredible and share it with a video or cool picture! A video with narration is highly recommended. ", "Observe the Life Around You", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d1/565600a3f811e3821721ef335b30fc/Screen-Shot-2014-03-04-at-4.03.02-PM.jpg", "Ping Pong is a great way to get the blood pumping and creative juices flowing when taking a break from making. Play a game or twenty with some friends and see who can volley the longest! Post a video of your chill spin shots!", "Play Ping Pong", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/87/0b7780a63511e3b8d64faa19f6b354/Screen-Shot-2014-03-07-at-12.22.45-PM.jpg", "Yoga, Chi Gong, Tai Chi, and many forms of dance are all incredibly effective techniques for increasing your sense of well-being. Show us how you practice body movement.", "Practice Body Movement", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/dd/6774c0a63111e39325914c719d345d/chillerfood3.jpg", "The most delicious way to find blissful pleasure is by eating great food. Take the time to focus on your sensations of taste as you eat healthy, fresh, and flavorful food. Show us all the great food you enjoy and share the experience of eating!", "Really Enjoy Food", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/73/f75280a63611e3b33be189830cfcaf/Screen-Shot-2014-03-07-at-12.29.16-PM.jpg", "Reading a good book is about as relaxing as it gets. Make a video and explain what book you\'ve read and why it\'s so great. ", "Review a Book", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d5/eed7a0a3fd11e3bb5bb1635faedb8b/3back-to-the-future-original.jpg", "Movies from the 80\'s were – and are – super chill. Watch a movie from one of the chillest decades in cinema, then post your thoughts on the movie with a video.", "Review an 80\'s Movie", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/69/6a2540a56911e382141d1746593300/Screen-Shot-2014-03-06-at-12.01.19-PM.jpg", "Many teas have calming effects that sooth your nerves. The ritual of heating water and pouring it over leaves is also incredibly chill. Make a video and show how you make your favorite tea. ", "Take Time for Tea", 22)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f4/9970e1d6be7d31795db6e21a7766c4/circuitbender_build_a_555_timer_circuit.jpg", "555 timers are a simple and cheap way to mod sounds or flash lights. Take a video explaining what you made.", "Build a 555 Timer Circuit", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c2/a647ca5712fce1f90e04ccbda1f7d5/circuitbender_build_an_atari_punk_console.jpg", "Forrest M. Mims III created the Atari Punk Console (APC). Build your own take your first step towards becoming an audio electronics wiz.", "Build an Atari Punk Console", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e5/f4711df3281103584ea40c3ed82577/Screen-Shot-2012-07-22-at-9.21.14-PM.jpg", "Hack your way to weirdness by modifying a battery-powered toy. Film it, with sound.", "Circuit Bend a Battery-Powered Toy", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/d3bd18472d52380567dceab62ba9e4/circuitbender_make_a_pocket_amplifier.jpg", "Amplifiers come in all shapes and sizes, from amps that are used in concert venues to tiny amplifier circuits that are used in iPods. In this challenge you\'ll build a super high quality pocket amplifier (called a CMOY) using some basic parts and soldering skills.", "Construct a Pocket Amplifier", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/a6172fb031fdf2c8a188c6aebdea65/circuitbender_make_a_battery_powere_circuit.jpg", "Invent a battery powered circuit that creates art or washes the dishes. Snap a video of your invention.", "Invent a Battery Powered Circuit", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9c/3dcaf3a26939b8107c93e8b933f6c7/circuitbender_make_a_contact_mic.jpg", "A contact mic senses audio vibrations through solid objects. Build your own and take a video of every sound you can capture with it.", "Make a Contact Mic", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b0/420571ebdaf896670688cfd35ec6d7/circuitbender_solder.jpg", "Soldering is a great skill for anyone interested in electronics. Take a close up, in focus picture of your soldering job. Better yet, make a how-to.", "Solder", 23)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/74/aa460611022acce54814bf01f581a7/clothingmaker_attach_fasteners.jpg", "Buttons, snaps and hooks are all great examples of fasteners that fasten. Add one to an outfit and take pictures to show a before and after.", "Attach Fasteners", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fc/3e208093b1d8989095d40e46f2e76f/Screen-Shot-2013-08-12-at-5.31.50-PM.jpg", "Sleeves can be a bit tricky, so it\'s best to dedicate some time to learning how they\'re made. Upload a video or photos of your attempt at a sleeve.", "Construct a Sleeve", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/79/bd73bb7919718cd0e1febd9ba61767/clothingmaker_draft_or_mod_a_pattern.jpg", "By making your own pattern or modding a pre-made one, you can sew clothes with a personal touch. Upload a pic of your custom pattern.", "Draft or Mod a Pattern", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8e/6143f9a50eeababc66a6d1a54339c3/Screen-Shot-2013-08-12-at-5.23.55-PM.jpg", "Measuring someone for an outfit is a simple but super important step when making clothes. Your a video as you measure someone for an outfit.", "Fit Someone for an Outfit", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/10b5d4864ce893eb1dd09b234e78c2/clothingmaker_mod_your_clothes.jpg", "Take something you already have and mod it by adding pockets or changing the way it fits. Before and after pictures, please.", "Mod Your Clothing", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/ea23ca9b1eb917860a84d459f6a9cf/clothingmaker_set_up_a_sewing_space.jpg", "Gather everything you need for sewing and get it organized. Snap a photo of your sewing space.", "Set up a Sewing Space", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2c/bb0b1b14391a5e12d8864e81602cc2/clothingmaker_sew_a_character_hat.jpg", "Sew a hat that resembles a character you\'re into.", "Sew a Character Hat", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/96/8565f63d5f6d65d7c83748793a276d/Screen-Shot-2013-08-12-at-5.42.23-PM.jpg", "Once you\'ve got a few stitches under your belt, it’s time to make a garment. Show all of your steps with pictures or video.", "Sew a Garment", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2e/c8bef400b6fe2aea26f014b3eecd6d/clothingmaker_sew_a_hat.jpg", "Hats add style to your head. Find a pattern or create your own and then sew a hat. Takes pictures as you go and one of the finished hat.", "Sew a Hat", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1c/f68d82b70113ec8bc75d4f9db978a9/clothingmaker_sew_from_a_pattern.jpg", "Find a pattern that looks great, take measurements to find your size, and then cut and sew it! Take a ton of pics to share every detail of the process.", "Sew from a Pattern", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8b/2bf859e3ec6a6d60bf357c9496ba12/bottom-pin-next-to-zipper.jpg", "Add a zipper to an existing outfit, or practice on scrap fabric. Take pictures along the way to show each step.", "Sew in a Zipper", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/f1b623ef9aa6499629114e731889b7/clothingmaker_sew_on_patches.jpg", "Tweak your outfit or fix a hole by adding a sweet looking patch.", "Sew on Patches", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6d/e5d00e0125a8d9025e61e45fcbe162/clothingmaker_stitch_pleats_darts_tucks_and_ruffles.jpg", "Pleats, darts, tucks and ruffles are simple ways to add spunk or make an outfit fit better. Sew one type or sew all four! Take video or pictures.", "Stitch Pleats, Darts, Tucks and Ruffles", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e2/738a2fde0cada430eb7c38cecc4c94/clothingmaker_stitch_a_pocket.jpg", "Pockets give you a place to put your hands, hold your keys or phone, and look good to boot. Take pics as you sew your pocket.", "Stitch a Pocket", 24)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4e/b33983634b855e94f3d377aa806f57/Build-a-Fire-Intro-Version-2.jpg", "Get to know the members of your Club. If there are members who are new to DIY help them get started by creating an account. Take a behind the scenes video of your first meeting or include pictures that clearly show the DIY club in action!", "Capture the First Meeting", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ab/ad89295c1189e098aa6ab2e453e2228a/11zek1.jpg", "Club meetings are always better with food. Take turns with the other Club Members cooking for your club. Post photos or videos of your spread at the next meeting.", "Cook for Your Club", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/212ff875dd3401dfbcd5d3d642fb56/superman-shield-evolution.jpg", "Design a finished logo that you can use anywhere to represent your DIY Club. Creating a logo that lets the world know what your club is all about.", "Design Your Club\'s Logo", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c7/2c4cccfb93f961c0626927d11ba2dc/boat.jpg", "Now that you’ve got a DIY Club you can collaborate with one another to tackle projects you couldn’t do alone. Combine your Skills to make something great.", "Do an Epic Project", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3e/3d919724c32cf2efc350982ebc33f4/Screen-Shot-2013-05-31-at-2.32.54-PM.jpg", "A DIY Club meets regularly to get Skills. Find the right place to meet that will help you get the Skills your club is after. Make a video tour once you\'ve found the right spot!", "Find a Space", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/89/4cc0828a6f33c49f47482a0611cfeb/Screen-Shot-2013-06-04-at-4.31.02-PM.jpg", "The best part of DIY Clubs are the friends you have to join adventures. Go visit a creative place to see how other makers make, or take a trip out into the wild. Document what you experience.", "Go On an Adventure", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/25/0d3c19eb1a0e555e47afe1d50a2eb4/226675_456962234370995_461981734_n.jpg", "So, you\'ve built an amazing project, learned a few things, maybe broke a few rules – now\'s the time to share it. Beyond your house and the internet are Maker Faires, Science Fairs, and more. Go outside and show your work to others in a public way.", "Have a Show", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/50/28be78cc21847bda218a4b50f6fff9/Screen-Shot-2013-08-13-at-5.09.51-PM.jpg", "Don\'t be shy, track down a expert of the skill you want to learn. Make a video of the interview so the knowledge can be spread across DIY! And if you earn their trust and respect, they might even let you use their shop, borrow tools, and mentor you.", "Interview an Expert", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/28/7c442a95ed0669b2598a5c5aacb8ea/Screen-Shot-2013-05-31-at-2.37.47-PM.jpg", "Make a flag that you can take wherever your Club goes. Make it out of fabric to last. No paper.", "Make a Flag", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/2e1ebd4632098e3f8432d487ecf4c2/Screen-Shot-2013-06-24-at-2.46.04-PM.jpg", "Create a place where your club can post photos of group projects, schedule future meetings, and let others know what your club is all about. Post a link.", "Make a Website", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/54/e77d291048fe749aee3b2c68db2643/Screen-Shot-2013-08-13-at-4.46.18-PM.jpg", "Send an email, make a phone call, write a letter, make a flyer to pin up, or tell them about it in person. Capture how you invited your friends to DIY with pictures or a video. DIY is even better if all your friends are on the site, too.", "Recruit Club Members", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/76/cc0a0aa686cecd503f7d9625c70917/Screen-Shot-2013-03-07-at-5.18.47-PM.jpg", "Everyone has a special skill. Share your favorite project with your fellow makers, and see what they have to share with you. Record your lesson.", "Teach a Project", 25)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/67/d3819de3a43092a55e4830bc5440b4/cryptographer_make_a_cipher_device.jpg", "Cipher devices help you create coded messages that you can share with friends. Code a message and take video explaining how your cipher works.", "Create a Cipher Device", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/a6466e3b06ff6f7eb4597be001ed4d/Screen-Shot-2013-06-04-at-4.46.31-PM.jpg", "A keyword cipher uses transposition plus a secret keyword. Create, encode and decode a secret message! Take pictures, or better yet, video.", "Create a Keyword Cipher", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8f/28a80044bc1863d039849949184b2d/base64.jpg", "SWYgeW91J3JlIHJlYWRpbmcgdGhpcywgdGhlbiB5b3UndmUgY29tcGxldGVkIHRoZSBjaGFsbGVu Z2UgYnkgZGVjb2RpbmcgdGV4dCB0aGF0J3MgYmVlbiBlbmNvZGVkIHRvIEJhc2U2NC4gQXdlc29t ZSEgVGFrZSBhIHNjcmVlbnNob3Qgb2YgaG93IHlvdSBkaWQgaXQgdG8gY29tcGxldGUgdGhlIGNo YWxsZW5nZSE=", "Decode a Message in Base64", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/48/f0d34a97e5e149d9fa87c6af3e9839/Screen-Shot-2013-08-13-at-5.46.05-PM.jpg", "A playfair cipher uses a 5x5 grid and keyword. Decode the DIY Playfair cipher and take a snapshot of your work.", "Decode a Playfair Cipher", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/7dc3acf44de3d98640b8a565dc3f26/cryptographer_Encrypt_Using_OpenSSL.jpg", "Generate a public key that\'s safe to share using OpenSSL (Secure Socket Layer). Upload a screencast and explain how you did it.", "Encrypt Using OpenSSL", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a6/bf7405c8b848b020368381a2890cbb/Screen-Shot-2013-02-19-at-3.59.49-PM.jpg", "Create your own substitution cipher or learn how to use the Vigenere . Upload your encrypted message as well as the solution.", "Encrypt with a Substitution Cipher", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/12/a3f9385d0568318168f73106d7be35/Screen-Shot-2013-11-18-at-1.19.20-PM.jpg", "A transposition cipher is an encryption method that shifts letters. Take pictures of your encrypted message and have friends decrypt it.", "Make a Transposition Cipher", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/73/6be3ffc641fb7567b42f78697e50dc/maxresdefault.jpg", "Learn about the different ways to encrypt and choose a method to send an encrypted message. Upload your encryption to complete the challenge.", "Send an Encrypted Message", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/872d1bca4589a38385c6a918bbce7a/cryptographer_make_a_skytale.jpg", "Take a snapshot of your coded message on its own as well as wrapped around your scytale.", "Share Secret Messages with a Scytale", 26)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0a/66c6fdf6cb3546677410bb6848c009/Choreograph-a-Dance-Step-9.jpg", "Try experimenting with lots of different ideas and styles as your create your own dance. Make big and small shapes with your body, zig-zap, curve, and spiral through space, communicate different emotions, move with lighting speed or go in slow motion.", "Choreograph a Dance", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/5314760adffac81492387ed169f8f7/Screen-Shot-2013-08-15-at-5.45.09-PM.jpg", "Find the beat in your favorite song, then count 1 to 8, and repeat. Upload a video of yourself clapping along.", "Count Sets of 8", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/8b76f177cf467edc5b92dfb7988243/Screen-Shot-2013-08-15-at-6.41.13-PM.jpg", "Dance is more fun when done together. Form a crew, and try new styles and steps, improve your skills, and expand your repertoire.", "Form a Dance Group", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4d/227cae843318b5df77628e7297ac2c/Screen-Shot-2013-05-31-at-4.41.03-PM.jpg", "Everyone is secretly an amazing dancer. The best dancing happens when you don\'t care what people will think.", "Improvise a Dance", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2b/2c54ffdc20bb9a4972f2afb6ae9bc7/Screen-Shot-2013-08-15-at-5.54.37-PM.jpg", "Choose a song you love to dance to. Shoot a choreographed dance to it, then edit it all together into a full-length music video.", "Make a Dance Music Video", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/0e088a478f7864ba9799b7866fe38a/Screen-Shot-2013-08-15-at-6.18.09-PM.jpg", "Memorize a dance routine, then perform it and upload a video.", "Memorize a Routine", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/e7181ac538f02eea8fcc69b7f5e9a8/Screen-Shot-2013-08-15-at-6.24.24-PM.jpg", "Most classical dance moves begin and end with one of five basic positions. Upload a video to show off all five.", "Perform 5 Basic Ballet Positions", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2c/196126af6209ca8c7f55f370978f87/Screen-Shot-2013-08-15-at-6.39.25-PM.jpg", "Many dances of the past are the best example of the people who came before. Learn a traditional dance and record it on video.", "Perform a Traditional Dance", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/15/d4eb58c605b1d5ecf727cc397d4eea/Screen-Shot-2013-08-15-at-6.48.11-PM.jpg", "Flash mobs seem to appear out of nowhere, bringing audiences joy through spontaneity and surprise. Make sure it\'s filmed and upload a video.", "Stage a Flash Mob", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/91/d97fb87ed036a2dc51abe7d6daef07/Swan-Lake-03.jpg", "Make your own costumes and props, build a stage, draw up a playbill, and invite friends and family to watch. Record your performance.", "Stage a Performance", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/58/6823d82542cac4e420fddcc7b1cd89/hornpipe_conf_3.jpg", "Notation is to dance what notes are to music. Scribbles, symbols, and drawings allow choreographers to capture and preserve their dances.", "Write Dance Notation", 27)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e2/6d0f4c86d5345de3be396084d62f7d/ice.jpg", "Throw a party or transform your house into a frightening theme park. Create scary and fun surprises around every corner.", "Create a Haunted House", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/17/47225e08c275f3c2e3c35f5b8415f7/Screen-Shot-2013-10-01-at-5.08.00-PM.jpg", "Turn an ordinary pumpkin into a head turning masterpiece by getting creative and carving something far beyond a normal Jack O\' Lantern.", "Decorate a Pumpkin", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c4/d526224e82ba02e18bdaf0f0872bb4/Screen-Shot-2013-10-01-at-3.36.10-PM.jpg", "Make your costume glow by adding at least 5 LEDs.", "Light Up Your Costume", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3c/333a56fdda4d49682bf23601bd8ee0/darknessengineer_make_a_costume.jpg", "Make a costume by hand using materials that you already have. Cardboard and scrap fabric are great things to use.", "Make A Costume", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d7/73a240822411e392352528b9a0542c/Screen-Shot-2014-01-20-at-2.50.02-PM.jpg", "Props can add realism to the halloween character you\'ve created. Use materials you have at hand and make a prop for your costume.", "Make a Costume Prop", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b8/0123ab0f08c2de5975ebbf1133ebad/FUW0ZY9GT19NK8M.LARGE.jpg", "Food can make a great building material. Bring out what\'s magical, scary, or gross about food, and share it with a picture or video.", "Make a Halloween Treat", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b3/d9ae216f31915c4a0ab6c3945b6dc7/Screen-Shot-2012-08-10-at-11.02.43-AM.jpg", "Grab the attention of others with a surprising new identity and make a mask to make your costume epic.", "Make a Mask", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8d/b9d08581337a0ed6231e8b1972af2b/Screen-Shot-2012-08-16-at-8.24.55-AM.jpg", "The experience of making a horror movie can be chilling one. Create a scene that makes your skin crawl and capture it with a video.", "Make a Scary Movie", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/22/3648a9c57aad0cf8791ff8596d3a6d/Screen-shot-2013-10-01-at-4.09.47-PM.jpg", "Incorporate an epic illusion into your costume that will confuse and amuse others.", "Make an Illusion Costume", 28)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/21/8c34b0675311e39b07c7f28b02331e/Screen-Shot-2013-12-17-at-10.35.50-AM.jpg", "Use D3 (Data Driven Documents) to create a web visualization, then upload a screenshot and link.", "Code an Interactive Visualization", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ed/163950675311e38939d9559141e558/datavisionary_collect_data.jpg", "Gather data on paper, a spreadsheet, or a survey form. You can record jellybean flavors or family member heights – anything that you can count.", "Collect Data", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/42/4e6b1dee339bbffe7983a0916d2b2d/datavisionary_create_a_timeline.jpg", "A timeline is a way to visualize data about events that occur over time. Create a timeline about your life or another subject and upload an image of it.", "Create a Timeline", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bd/721be0541f86e95e3acb2e0fe39a5c/datavisionary_design_an_infographic.jpg", "An infographic is a series of charts and illustrations create a story out of complex data. Use a computer or draw by hand to create an infographic.", "Design an Infographic", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/64/741104f26207d91e612dcbab179e1b/datavisionary_find_datasets.jpg", "There\'s a ton of data out there that\'s already been collected. It\'s your job to find it! Take a screenshot of a dataset you want to turn visual.", "Find Datasets", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/be/5cf9199c520a754d4401a8f59e3785/datavisionary_make_a_data_graph.jpg", "Use a bar graph, pie chart or line graph and show the compelling story in your data. You can plot your data by hand, or use a spreadsheet.", "Make a Data Graph", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/17/6a3c35c9533e351ca3451ad488bf7e/datavisionary_map_data.jpg", "Draw a data map by hand or create a digital map using Mapbox, Google Maps or other tools. Upload a photo of your finished map full of data.", "Map Data", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/22/378550675211e383b21fd0494fb003/datavisionary_quantify_yourself.jpg", "You can record how much you walked, where you went or how many apples you eat a week. Display the information in a stylish way.", "Quantify Yourself", 29)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cc/723d2ae5674a5087307947e2d483e7/Screen-shot-2013-02-18-at-1.30.44-PM.jpg", "Keep all five senses on alert for evidence and document yourself as you investigate--collect, record, or photograph what you find.", "Analyze the Scene", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/78/50a2a0822811e3a892e76195640fad/Screen-Shot-2014-01-20-at-3.16.00-PM.jpg", "Show photographs of your evidence and explain in a video how it could help you solve the case.", "Collect and Analyze Evidence", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/af/c17fbce3d9e8f30a6102408f6e168d/Screen-shot-2013-02-19-at-10.17.48-AM.jpg", "Build a surveillance system and take a picture or video of what you can see with it.", "Create a Distance Surveillance System", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ab/d1237efd1afb8956ac8002cf4ea21e/Screen-Shot-2013-11-14-at-12.03.00-AM.jpg", "Lift fingerprints off of a surface, then use a stamp pad and a piece of paper to collect prints from your suspect.", "Dust for Fingerprints", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/42/3edc62a99c6e78d84978e2a0f339af/Screen-shot-2013-02-18-at-3.40.07-PM.jpg", "If no one around you has witnessed a crime recently, practice your technique by asking detailed questions about any experience. Video the interview.", "Interview a Witness", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/71/022bf0822711e3a892e76195640fad/counterfeit-money-604cs050213.jpg", "Take an object and demonstrate if it is a forgery or the real thing. Use video or the comments section to explain how you know.", "Spot a Forgery", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/96/32533a06408321045699f8e0e4d76d/Screen-shot-2013-02-20-at-5.12.55-PM.jpg", "Photograph your stakeout location and take video of what you saw.", "Stake Out a Location", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e7/fd517206fa39a07b38f6c425827270/Screen-shot-2013-02-19-at-12.24.36-PM.jpg", "Practice your tailing technique by giving a friend a head start, then trying to keep up with them without being detected. Take a video of the chase.", "Tail a Suspect", 30)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/74/9ab223d11f7204db97455617ce24a5/04-Fontenot-3A.jpg", "Construct a butterfly net using common household parts and put it to use.", "Assemble a Butterfly Net", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9a/3629307a2b11e39edd59d26fd0e42d/entomologist_make_a_compound_eye.jpg", "Learn to see like an insect by building your own compound eye.", "Build a Compound Eye", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ff/19eb9b408f2cbe61931696f69f4b9f/pond-viewer.jpg", "Build a water viewer to see what insects might be living in the murky waters. Snap a video of what you see.", "Build a Water Viewer", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c7/d5259069c711e398c2019b5d1cf5d2/entomologist_construct_an_ant_farm.jpg", "Find a queen ant and build an ant farm. Take a video showing their tunnels.", "Construct an Ant Farm", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/aff30b3f0a5df56bde2b4956c8cd4d/insect_habitat_yup83.jpg", "Create an insect habitat by drilling holes in a log, or building an insect house.", "Create an Insect Habitat", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d6/24903069be11e3af9a07984d9d273b/entomologist_identify_an_insect.jpg", "Safely capture an insect, then figure out what it is, snap a photo of it and write it in the title.", "Identify an Insect", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f1/0c00ba16754c3bbf51e834d3403fb7/Burlese-Funnel-1.jpg", "Berlese funnels are used to collect insects that live in top soil and ground debris. Snap a picture of yours.", "Make a Berlese Funnel", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/af/dc4992c96006af542ce9a9a773408e/insect-trap-4.jpg", "Create a bug catcher, catch some bugs, snap a video, and then set the bugs free!", "Make a Bug Catcher", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/19/af52a5e7f28ae1baa432844a2191cc/light-trap-2.jpg", "Build a light trap and shoot a video of it in action.", "Make a Light Trap", 31)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4d/a783fdbc5763b8453eae472ddc5f96/helpwanted.jpg", "A joy of entrepreneurship is creating a job that someone loves. When your business can afford it, hire someone to help. Show how they contribute.", "Create a Job", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/e278cabfa78486948b9722e14b26fb/CAM.jpg", "To practice marketing, pick something you don\'t need anymore and find someone who wants it. Show how you sold the item.", "Find Something Used to Sell", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ef/5a81c2090074ecd873805147051957/carlosmeliablog.jpg", "The best entrepreneurs are good listeners. Figure out a way to get feedback from your customers to improve your business, and share the results.", "Get Customer Feeback", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/eb/41350ce931f47530570bc9cb2ebe38/ht_Willow_Tufano_and_sister_Iris_Family_Demo_Day_Facebook_jt_121016_wg.jpg", "When you start making a profit, do something smart with the money. Invest in your own business or try investing in someone else\'s business.", "Invest your profits", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9f/bec63069d411e38226ef987609378f/entrepreneur_make_something_to_sell.jpg", "Make a physical object that you think people will pay money for. Take a quality picture of it, and share how you plan on selling it, either with a video or by writing in the comments. ", "Make Something to Sell", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e9/4d454069d611e3b93a237b95168413/entrepreneur_design_a_logo.jpg", "A logo is a simple graphic to identify your business. Study the logos of your favorite companies and then make your own. Upload a photo.", "Make a Logo For Your Business", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e6/685d13b546776406e275dad9e3c62c/3-Goodsie-online-store-on-mevvy.com_.jpg", "Websites are a cost effective way to market your business. Make one for a product you invented or service you provide. Share screenshots and a link.", "Make a Website For Your Business", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/af32e560d2df01580968d4a00d15e4/IMG_1474.jpg", "You don\'t always have to make, sometimes you can just do. Perform a valuable service for your family or neighbor and ask for fair pay.", "Offer a Service for Sale", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0e/aaf17cb63039538fbf960c22c86df5/account-book.jpg", "As your business grows it\'s important to keep track of the money you earn and the costs to run it. Keep a ledger for at least a month.", "Record Your Profits and Losses", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/ab251069cd11e398c2019b5d1cf5d2/entrepreneur_review_a_product_or_service.jpg", "Pick anything you love, praise it for what it does well and suggest new ways to make it better. Make a video of the review.", "Review a Product or Service", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d4/239baae844b8973d883a175f46a632/PSC0612_IN_058.jpg", "Now a real challenge! Invent something to solve a problem for you or someone in your family.", "Solve a Problem with an Invention", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/52/a9aa234abfb8ad9f00a639b97bc7d0/temp.KIVA.jpg", "Social entrepreneurs prioritize their positive impact on society. Create and manage a venture to achieve a desired social change.", "Try Social Entrepreneurship", 32)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7e/3e2091df9f445f5375300790eeed1b/bandsensor.jpg", "You can use conductive thread, conductive fabric, and simple microcontrollers to actually sense things out in the world like the bend of an object, how much pressure is on something, or even the distance between your object and another.", "Build A Wearable Sensor", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c4/b68511ac8bab30657f6021cc89f610/neonshoes.jpg", "Electro-Luminescent (EL) wire is a great way to get solid yet flexible strips of light onto your wearable project. Learn how to use it and incorporate some into your next project.", "Construct A Wearable Using EL Wire", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/dc/2b7c5493f09afd7801d96c5ea4f035/11833-01.jpg", "Felt is a fun material to work with, and is available at pretty much any craft store. Let\'s see what you can do to make your own sewable circuit using felt!", "Construct a Piece of Felt Electronics", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3c/b1ca263f4219c0ca30f47d432a3a5e/small_bracer12.jpg", "A glove is a great place to think about adding electronics - we use our hands for all sorts of motions and gestures that make hacking a glove a definitely project for any serious Fabric Hacker.", "Hack A Glove", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ee/6773f09d7a9ceba25302069b6d20a5/lilypad_tutorial---14.jpg", "Bored with your t-shirt collection? Make your shirt stand out by sewing a circuit into it - trace along a pattern, sew on a sweet patch, or use a sensor that changes the color of LEDs as you swing your arms.", "Hack A T-Shirt", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/67/999809e15bdde719ea464ff979373d/FiberOpticFairy.jpg", "Make the best fairy wings ever by sprucing them up with some LEDs, EL wire, or fiber optics!", "Make Wearable Fairy Wings", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ca/34b8957f523e7fa0878b0336352fb4/braceLED.jpg", "Add some bling to your accessories by making a bracelet that incorporates electronic textiles.", "Make a Fabric Hacker Bracelet", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/17/99aad6fd7dc8fb9e1ce229d763adbc/sensorsuit.jpg", "Time to get serious. Make a large garment that covers at least half your body, can sense something about your body, AND react to it.", "Make a Half or Full Body Sensor Suit", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f4/f1e35d7a58e2222136950ca16a21c2/fabricbutton.jpg", "Not every switch looks like the ones in your house you use to turn on the lights. Experiment with making a switch from conductive fabric - there are all sort of variations that you can use in your project.", "Make a Switch with Conductive Fabric", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/26/b0d949cfd161384d3716178472384d/Screen-Shot-2013-06-22-at-9.59.26-AM.jpg", "If you\'re comfortable with sewing conductive thread, it\'s time to try sewing with (and lighting up) an LED, or light-emitting diode (just think of it as a small light). Shiny!", "Sew a Single-LED Circuit", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/df9569cab12504c740f34586630fcf/51475dc3ce395f175e000000.jpg", "Conductive thread is the wire of fabric hacking. It connects your parts together and allows electricity to flow through your circuit, making it the perfect solution for putting electronics on your clothing. It\'s even washable!", "Sew with Conductive Thread", 33)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/71/97d4eb805597a391e567774f9724d6/fashiondesigner_assemble_an_ensemble.jpg", "Try different combinations of tops, bottoms, and accessories, then take a picture or video and share!", "Assemble an Ensemble", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/03/2fa7ca3d701b7274c27ecc0ff1e43c/fashiondesinger_create_an_origonal_garment.jpg", "Sew an original garment from scratch – turn one of your out-there ideas into a maximum reality!", "Create an Original Garment", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a4/dea3e626b88b11a80fb48552b9f0d2/fashiondesinger_design_clothing_from_unusual_materials.jpg", "Create a design with a material not normally used for clothing – it DOES have to be wearable.", "Design Clothing From Unusual Materials", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9a/839f4b91ce130c2683ab6e80124c3a/fashiondesigner_do_nails.jpg", "Turn up the volume on your nails with some color and gloss!", "Do Nails", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b8/5b3976e4d970043a31d5e440c39bff/fashiondesinger_draft_a_pattern.jpg", "Make a pattern from an existing garment, or draft a new one from scratch. Clothing makers sew together cut-out pieces of fabric using these patterns as a guide.", "Draft a Pattern", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/6d597981abb22da8b31d2a68aa7266/fashiondesigner_draw_a_fashion_illustration.jpg", "Draw a figure wearing clothing you dream up. Drawing is a first step in creating a new look.", "Draw a Fashion Illustration", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/bc01187c2c13f94653adf6a46402aa/fashiondesigner_gather_inspiration.jpg", "Gather at least three samples of fashion inspiration from magazines or the internet. Explain why they inspire you with a video. ", "Gather Inspiration", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/49/42770a088f5f6885d3a4a5bffa60f6/fashiondesigner_make_jewelery.jpg", "Make a necklace, pin, bracelet or ring to help you complete an outfit. Jewelry is a great way to explore and express your personal style.", "Make Jewelry", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/d5ccc62b7d0aca452a44772edea860/fashiondesinger_make_a_bag_or_pouch.jpg", "Express yourself with a sweet bag you make yourself. Use duct tape, newspaper, or stitch real fabric.", "Make a Bag or Pouch", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2d/4f66c54f5fd92a258377c1c043e8fb/fashiondesinger_make_a_fashion_show_or_film.jpg", "Take your design skills to the next level by creating an entire collection of clothes that are all one style!", "Make a Collection", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6c/4713e239da17f7ae5e20ba617c66fc/fashiondesinger_make_a_fashion_hack.jpg", "Take an ordinary piece of clothing and paint, cut, patch, or stitch it into something completely new!", "Make a Fashion Hack", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/87/e2542e4ee5b76e6f86a3383f1a2ee5/fashiondesinger_make_a_fashion_show_or_film.jpg", "Use sound, staging, and lights to film a fashion show or a music video that shows off your collection. Make it real by finding models, crew, and audience.", "Make a Fashion Show or Film", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/27/b9ad1bcbcd6a4ade9b40904da3a48e/fashiondesinger_make_a_mini_mock_up.jpg", "Before investing the time and energy into making a full-sized outfit, make a scale model, or a mini mock-up.", "Make a Mini Mock-Up", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d5/9182b9dd2fa544f2da46a703839c51/fashiondesigner_make_or_mod_your_shoes.jpg", "Give your shoes a colorful mod podge makeover or build some new shoes from scratch.", "Make or Mod Your Shoes", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a8/639a9589e7c2d8a53451ae2e36e10c/fashiondesigner_mod_your_hairstyle.jpg", "Mod your own or someone else\'s hair with pins, braids, color, or a new cut. Find a look that\'s new and surprising.", "Mod Your Hairstyle", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cd/838f2da971936f1f694a9f74175111/fashiondesinger_rock_used_clothes.jpg", "Get your clothes from a thrift store, Craigslist, or a clothing swap. When you wear used clothing, you not only save money, but you find fashions that may be ready for a comeback – rock your grandpa\'s clothes!", "Rock Used Clothes", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/91/af6545218d671f943bf1a73caebdd6/fashiondesigner_stage_a_fashion_photoshoot.jpg", "Find a good location and shoot awesome pictures of a model wearing your fashion creation.", "Stage a Fashion Photoshoot", 34)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a5/1b59f0674e11e3be417bbaa7db4535/filmmaker_direct_actors.jpg", "Get a great performance from an actor. Ask yourself, \'Does it feel real?\'", "Direct Actors", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/d69d20674511e39e0c9ffdecb2dcca/filmmaker_edit_a_film.jpg", "Combine multiple video clips to create an edited film. All films can be improved by a good editor with a sense of timing and style. Upload your finished, edited video. Bonus points for screenshots of your edits in action. ", "Edit a Film", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/0d0470674f11e383b21fd0494fb003/filmmaker_film_a_one_take_movie.jpg", "Use planning and rehearsal to make a movie that\'s captured in one shot – at least one minute long.", "Film a One-Take Movie", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b8/baefb0674511e3b2cf85fb789611b9/filmmaker_hack_your_film_gear.jpg", "Make your shots look better by building a custom tripod, lens, or other film gear.", "Hack Your Film Gear", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/45/113d60674c11e3968943fe2a851660/filmmaker_make_a_3d_movie.jpg", "Take two pictures together to create the illusion of 3d.", "Make a 3d Movie", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/77/458950674f11e3a1ad0b67e07641ac/filmmaker_make_a_comedy.jpg", "Tell jokes, be a fool, make \'em laugh! Sometimes the funniest stuff is played totally seriously.", "Make a Comedy", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/95/da1640674c11e3b2cf85fb789611b9/filmmaker_make_a_documentary.jpg", "Use real people and events to tell a story – Truth is stranger than fiction!", "Make a Documentary", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/45/01a79974bcf4bc5f1a5acc3a95c37f/filmmaker_make_a_movie_trailer.jpg", "Make a trailer for an imaginary film, or a fan trailer for a film you love.", "Make a Movie Trailer", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/bc127a99fdd1adab8d6bbd98951def/filmmaker_make_a_music_video.jpg", "Start with music you like and then shoot and edit your film around it. It can be a performance or a far out film experiment.", "Make a Musical Video", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/16/01a250674f11e3b21b6576b71ee5d6/filmmaker_make_a_scifi_fantasy_film.jpg", "Shoot a Science Fiction or Fantasy film that bends reality.", "Make a Sci-Fi Fantasy Film", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/54b66e1d6a20def1a0a6b2e499ca1a/filmmaker_make_a_storyboard.jpg", "A storyboard is like a cartoon of a film. They are widely used to help plan a future film.", "Make a Storyboard", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4f/50d1d0675311e3968943fe2a851660/filmmaker_take_a_time_lapse_movie.jpg", "Create the sense of time speeding up with a time lapse app or editing program. (NOTE: THIS IS NOT STOP-MOTION)", "Make a Time Lapse Movie", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/05/9d5b10675011e3aff573fd8b526f95/filmmaker_write_a_screenplay.jpg", "Write a screenplay and use Justpaste.it to share it.", "Write a Screenplay", 35)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/15/0984bfff8798672ad81c686c18d947/forager_collect_wild_berries.jpg", "Blackberries, blueberries, raspberries, strawberries and even grapes can be found in the wild. Share your wild berry bounty with a video.", "Collect Wild Berries", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/75/8e85beb7db1ece1f30ac4a51650d9e/forager_dumpster_dive_for_free_food.jpg", "Be smart and safe when dumpster diving. Oh, and if you score big, share the wealth.", "Dumpster Dive for Free Food", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/00e664e1e8d7f6cb6d07dbb3fb6a7d/forager_forage_for_wild_greens.jpg", "Collect edible wild greens. Some greens are great raw, and others need to be cooked before eating. Prep your greens for eating and snap a picture.", "Forage for Wild Greens", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3c/69f374a68cd64136d2f0a758852193/forager_forage_wild_nuts_and_seeds.jpg", "Consult a guidebook and harvest nuts or seeds that grow in the wild.", "Forage for Wild Nuts and Seeds", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ef/4c8b8af340b6b20c821519596272c7/forager_forage_from_a_fruit_tree.jpg", "Find a tree with ripe fruit and pick some – be sure to ask if the tree belongs to someone else.", "Forage from a Fruit Tree", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/79/03d574a7a2baf334524287f0f85260/forager_glean_for_food.jpg", "Find a farmer or gardener and harvest the leftover crops they don\'t want.", "Glean for Food", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/67/ccec3f4deea1706f994deaa32c4e94/forager_hunt_for_edible_mushrooms_2.jpg", "Collect and identify edible wild mushrooms. Describe what you think you\'ve found with a video.", "Hunt for Edible Mushrooms", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9a/7a87b8444fc7281a63ed580e4aae82/forager_forage_for_medicinal_herbs.jpg", "Before we had Peroxide or Aspirin, we used plants! Take a video and explain the medicinal purpose your plant or clearly identify it in the comments.", "Identify a Medicinal Herb", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7d/c5822e67718f4e67692a7b8b81da6b/forager_identify_a_poisonous_plant.jpg", "Find a poisonous plant, then describe what it is in a video. If you don\'t know it, don\'t eat it. Eating the wrong plant can kill you – or worse!", "Identify a Poisonous Plant", 36)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/28/95182bb228627dbbc37801c94ddd8f/rings2x.jpg", "Try calculating a tree’s age by counting it\'s rings.", "Calculate a Tree\'s Age", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1d/28558068ec11e3971f1b350338c935/forester_make_a_landslide_model.jpg", "Build a model to show how a landslide happens. Record a video of your experiment in action.", "Design a Landslide", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ba/faaac068eb11e3971f1b350338c935/forester_fell_a_tree.jpg", "Very carefully and with permission, record a video of you felling a tree. Foresters frequently cut down trees for lumber or safety.", "Fell a Tree", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9f/66deb6990339e5ca094b9ade1eaf75/axekindlingx.jpg", "Learn about what can be used as fuel in your local forest, gather what you can find, and share a photo with details about your collection.", "Harvest Fuel from the Forest", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a6/bfaa4068f211e39cc1a757fe4f4e19/forester_identify_a_tree.jpg", "Walk around your neighborhood and snap photos of the trees you identify. Put their names in the project title.", "Identify Local Trees", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/44/c8592068ef11e3971f1b350338c935/forester_map_a_park.jpg", "Draw a map of a park, marking the location, species and height of its trees.", "Map a Park", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/78/6c5b5068ea11e3832cd37683649b10/forester_measure_the_height_of_a_tree.jpg", "Make an clinometer (also called Inclinometer) and calculate the height of the tallest tree in your neighborhood.", "Measure the Height of a Tree", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/96/4fbd2c76587937a82c463d9804c55c/drawknifex.jpg", "Find a small log and mill it into boards using hand tools. Upload a photo of the lumber you made.", "Mill a Log", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6a/3db16068ee11e3971f1b350338c935/forester_model_erosion.jpg", "Build a model to demonstrate how grass, roots, and tree litter help hold soil in place.", "Model Erosion", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/72/ac890068eb11e3832cd37683649b10/forester_plant_a_forest.jpg", "Get together with a restoration group and plant a forest of native trees, shrubs, and grasses.", "Plant a Forest", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/02/c0fab068f311e3990f1bfdf3e61e06/plant_a_native_species.jpg", "Figure out what kinds of trees, shrubs, and grasses are native to where you live and plant one. Explain how you chose what kind of tree to plant.", "Plant a Native Species", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5e/5495e95051454f8af0ae288fe68e2a/plantingcrop.jpg", "Find a tree at a farm or nursery. Plant it somewhere and share some info about its species.", "Plant a Tree", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/73/e64f4068f011e3971f1b350338c935/forester_take_a_soil_sample.jpg", "Take a soil sample and describe your soil type.", "Take a Soil Sample", 37)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4a/59aec90fb093336203d3241dae64d2/poster-cssanimate.jpg", "The most recent versions of HTML and CSS allow for some pretty neat things on your website - moving parts! Learn a few of the new tricks and add them to your jsfiddle.net site.", "Animate with CSS in JSFiddle", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/0b1a4094693cb4cb866d8160b4a49c/Screen-Shot-2013-02-05-at-1.32.52-PM.jpg", "When you\'re ready to compose a whole site it\'s easiest to use a text editor. Install Sublime and build a site in it. Install Chrome to view your page. Take a screenshot of your page in Sublime and upload it to complete the challenge.", "Code in a Text Editor", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8e/f6cb4cbabbd3fef28f8bc6f1ff8be9/html-101-01.jpg", "HTML, or \'markup\', is what browsers read and turn into websites, so you\'ll need it for every website you make. Create a basic HTML site on www.jsfiddle.net and upload a screenshot and link.", "Create a Basic HTML Website with JSFiddle", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d7/9c8c6a473616ea23fedeefed16ce83/Screen-Shot-2013-03-07-at-4.39.55-PM.jpg", "A invaluable tool inside your browser allows you to find where errors are coming from and quickly test CSS ideas. Take a screenshot of your website with the inspector open on it.", "Find Bugs with Web Inspector", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b7/d43020bbacf7a3f24857185fbceec5/substack-cats.jpg", "All browsers understand the JavaScript programming language. Use Javascript to change the color properties of your site. Edit your jsfiddle.net site, upload a screenshot and link to complete the challenge.", "Flash Colors with JavaScript in JSFiddle", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/08/aadeb95e398d23e76eb380efbad5ac/poster-intro.jpg", "GitHub is one way to host websites - all you have to do is put the files in a branch on your repo named gh-pages. Set one up and upload a link and screenshot!", "Host your Website", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fb/c21477fe5693229fdbe5b4f93490ed/Screen-Shot-2013-03-08-at-10.44.07-AM.jpg", "Go further with Javascript and code some neat interactions and experiences on a website - like build a calculator to do multiplication for you! Upload a screenshot of the site you make.", "Make a Calculator with Javascript", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5b/0277b1f962dd3d9caaa6cce4cff214/Screen-Shot-2012-07-26-at-2.18.06-PM.jpg", "Get acquainted with the insides of websites by remixing one of your favorites. Use X-Ray Goggles to hack a website and upload a screenshot of your remix to complete the challenge!", "Remix a Website", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9d/8f1e1900e6d00ba20db23b815d0afd/poster-intro.jpg", "CSS is what you\'ll use to give your website\'s HTML elements some style - like colors, fonts and a lot more. Jazz up a simple site at jsfiddle.net so everyone can learn from each others code.", "Style your Website with CSS with JSFiddle", 38)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/30/f20ae07a2e11e3bbeb09df5d06d5f9/gamedesigner_create_a_ball_game.jpg", "Ball game possibilities are infinite – invent your own!", "Create a Ball Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e3/7c5b7aa8a12381456e3bf918e9e079/scratch.jpg", "Graphical computer games use art and sound to tell a story. Using free programs you can find online, you can make your own videogame.", "Create a Graphical Videogame", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7c/5be00f0d9e93824659dffbcb0efe87/legoball.jpg", "Puzzles or solitaire games are things that help us focus and give us a challenge when we\'re alone. Record a video of your puzzle game creation. ", "Create a Puzzle Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8e/37eb32c76f0af5afaa91d7ccb31e26/ninja.jpg", "All a body game needs is a human body! They help us explore how our bodies relate to what\'s around them or to themselves.", "Design a Body Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6f/163aac258138dfedd9c8af774164d9/spit.jpg", "Card games feature luck and chance. Using a deck of playing cards or some index cards and a pen, you can make your own.", "Design a Card Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/b3dd807a2c11e383d681fc54e63b57/gamedesigner_introduce_a_new_rule_to_tage.jpg", "Add a new rule to the game of \'Tag\' to make it yours! Tag is an old folk game: one person\'s \'it\' and has to tag everyone else before they make it home.", "Introduce a New Rule to Tag", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0b/e53ca73ba48605fad199cb6e5cdb25/wordshift.jpg", "Word games let us explore language and vocabulary. They\'re easy to make with pen and paper, or they can be entirely vocal.", "Invent a Word Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bc/c0a8bfa4e05a1381d6b9b80c875d43/folium.jpg", "A board game has some spatial component: the board itself could be anything, a piece of cardboard, an arrangement of playing cards.", "Make a Board Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/95/0c75007a2f11e3a438894f7b422550/gamedesigner_make_a_pen_and_paper_game.jpg", "Make a game using just a piece of paper, pen or pencil, and a set of rules.", "Make a Pen and Paper Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/de/4e7860230f6369a11fbb70d68282af/storycubes.jpg", "Story games encourage us to role-play or to make up stories. Let us hear part of the story that comes out of yours.", "Make a Story Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f1/dfa13e0e989a5d0f24f5caa67ccfe2/capturetheflag.jpg", "Big games make us think about how we relate to a space or environment. Play them outdoors or in a big, cavernous building.", "Orchestrate a Big Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4e/77be306e150eb2cdd7e7f0adcb11b7/1000blankwhitecards.jpg", "1000 Blank White Cards is a game where all the players make their own cards. Show us the most interesting one from your game!", "Play 1000 Blank White Cards", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/33/b4a5cb11edb9f6f831cb7516b5c854/shiga.jpg", "A Choose Your Own Adventure is a branching story. Write a zine, draw a comic - but give it CHOICES!", "Write a Choose Your Own Adventure", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1e/b66caa7fd8715cce8f90f3d4250f95/twine.jpg", "Twine is a free program for making Choose Your Own Adventure stories on the computer. Upload yours and post the link!", "Write a Twine Game", 39)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6a/84add9a4e0e7de28261139c3c86d49/Screen-Shot-2013-04-08-at-5.17.52-PM.jpg", "Blender is 3D modeling software, use it to create custom 3D elements for your game and import them back into Unity. For this challenge, upload a screenshot of the awesome 3D things you make.", "Build 3D Game Elements in Blender", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/86/acf19082fb11e39aa97d8ca62fff29/screenshot_4.jpg", "Sprites are images that contain all the frames or faces of an animation and are used in building games (and web apps, too!). Use either Pickle or Scratch to make it, then upload a screenshot!", "Create a Sprite Sheet", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d3/bbc20ec9d6f06666bacd5b877f45fb/Screen-Shot-2013-04-08-at-4.27.37-PM.jpg", "Texture tiles are repeated patterns used to create the background environment in games. Think: all the blocks in Minecraft have texture tiles. Use Pickle or Scratch to create your own environment textures and upload them to complete the challenge!", "Make Environment Textures", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/02496fb791ba7273e9b213f3bbb623/Screen-Shot-2013-04-09-at-10.59.08-AM.jpg", "Use the sprites and textures you\'ve created to build a 2D game. Use Stencyl or Scratch, and upload a screenshot of your game and a link to the actual game so other Makers can play it and be inspired!", "Make a 2D Game", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1a/e52449024ce7272e2bd4bda22b4c3c/Screen-Shot-2013-04-09-at-12.24.54-PM.jpg", "Unity is a free and powerful 3D game engine. Its got audio, lighting, physics and more built in. Go through some of the tutorials and then make your own 3D game! Upload a screenshot and link to your game to complete the challenge.", "Make a 3D Game in Unity", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/be72da19d47afbfce203d8e21a9dae/Screen-Shot-2013-04-08-at-11.57.19-AM.jpg", "If you know JavaScript well you can build or, as they say, \'roll\' your own game engine that does exactly what you want it to. Checkout these resources for learning how and when you\'ve rolled your own upload a screenshot and share the code on GitHub!", "Roll Your Own JavaScript Game Engine", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7a/9f2397f5d00bcda9b71c1f4b4252c0/Screen-Shot-2013-04-09-at-11.06.42-AM.jpg", "Web browsers are powerful enough to host some awesome games these days - they\'re built with HTML5 and JavaScript. See what\'s possible by using some pre-existing JavaScript game engines. Upload screenshots and and a link to your game to complete the challenge.", "Use a JavaScript Game Engine", 40)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/05/0db23c5d9760f90387fe688045e39c/Screen-Shot-2012-07-23-at-2.29.11-PM.jpg", "Some games let you use external tools to create radically different levels. Post a shot of your Game Level and explain it in the comments.", "Author a Game Level From Scratch", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/65838977a54dda5d5ed9e0729c49ce/Screen-Shot-2012-07-23-at-2.32.51-PM.jpg", "Many games have built-in level editors that let you invent your own worlds. Take a screen shot and list the game you used in the comments.", "Design a Game Level with an In-Game Editor", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ed/6a80f9615e7d5ece165632c1036503/Screen-Shot-2012-07-28-at-5.47.37-PM.jpg", "Engineer a mechanism and explain how it works in a video or in the comments section.", "Engineer a Mechanism Using A Physics Simulator", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5e/e8f44861d5b2bbe51b6a932952d644/Screen-Shot-2012-07-25-at-9.01.18-PM.jpg", "Post a screen grab or video of a character you designed.", "Make a Character with an In-Game Editor", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0b/50a76e9381ce2bbb08f5e5b0c18f0c/Screen-Shot-2013-06-05-at-2.59.49-PM.jpg", "Garry\'s Mod lets you take models from your favorite games and change them in cool ways. Explain your mod with video or in the comments.", "Make something rad in Garry\'s Mod", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/97/9b56147cfe546e724eb3ad7cc6c002/dwarf-fortress.jpg", "Some games are capable of modeling civilizations. Post a shot of your civilization and mention what game you used in the comments.", "Manage a Simulated Civilization", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/7a8eeafb8e89d868ddc5d7b04cd647/Screen-Shot-2013-03-20-at-10.30.40-AM.jpg", "Play a Co-Op game with your friends and take a screen shot or screencast video of you and your team in action.", "Play a Co-Op Game with Friends", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2e/64333be86d9e563a2f14d467e31731/Screen-Shot-2012-07-23-at-2.14.21-PM.jpg", "Set up your own game server so you can host your friends and soon-to-be-friends and take a screenshot showing how you made it happen.", "Set up a Game Server", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/00/d84a1575569ae5f9d694770560947d/Screen-Shot-2013-10-24-at-11.48.04-AM.jpg", "Upload a screenshot of art you made in a game.", "Use A Game To Make Art", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c1/e835417f8b00f0dd9cc0400dbaba91/Portal-guide.jpg", "Explore new areas in a game and learn how the game itself works. Share your findings with a video.", "Write A Guide Explaining A Game", 41)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b5/796d90677711e394ddbd335a606674/gardener_build_a_greenhouse.jpg", "Build a greenhouse and create a little extra warmth and moisture for your plants.", "Build a Greenhouse", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/52/da8a70677711e394ddbd335a606674/gardener_build_an_irrigation_system.jpg", "Make a slow-drip watering system – Most plants like their roots to be damp, but not muddy.", "Build an Irrigation System", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f2/ef7880677d11e382b4a5073c11f386/gardener_collect_rainwater.jpg", "Capture rain and store it in a barrel to use again in the summer months.", "Collect Rainwater", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/75/515aa0677411e39db0d743467b4de7/gardener_grow_plants_in_a_container.jpg", "Raise plants in pots, jugs, cans – Remember to make a drain hole in the bottom.", "Grow Plants in a Container", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f6/e84770677111e3873333c340008f36/gardener_grow_a_seedling.jpg", "Raise a seedling indoors, then share when the seed has started to grow. Starting indoors protects young plants.", "Grow a Seedling", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0a/9c7170677b11e394ddbd335a606674/gardener_harvest_seeds_leaves_fruits_flowers_or_roots.jpg", "Share a picture or video of your garden bounty!", "Harvest Seeds, Leaves, Fruits, Flowers, or Roots", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f8/4fe990677811e394ddbd335a606674/gardener_make_compost.jpg", "Create compost by mixing kitchen scraps with garden clippings, or make a worm bin compost.", "Make Compost", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/919f966b44bddfbbdbb889c7900037/Screen-Shot-2013-06-12-at-11.53.59-AM.jpg", "Seed tape makes it easier to plant small seeds in neat rows.", "Make Seed Tape", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/80/afb010677c11e394ddbd335a606674/gardener_make_a_habitat_for_creatures.jpg", "Rock piles for snakes, ponds for frogs, birdhouses or wildflowers – Invite natural predators into your garden to eat your pests.", "Make a Habitat for Creatures", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0d/e17c90677611e38f597790cb0b6007/gardener_plant_an_outdoor_garden_bed.jpg", "Plant seeds or starts in good soil, outside, in a garden box or hole you dig.", "Plant an Outdoor Garden Bed", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/50/848850677e11e382b4a5073c11f386/gardener_prepare_a_garden_bed.jpg", "Build a bed by filling it with good soil.", "Prepare a Garden Bed", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2c/12fdc0677a11e394ddbd335a606674/gardener_protect_your_garden_from_pests.jpg", "Come up with techniques to battle pests and invite useful bugs to your garden.", "Protect Your Garden From Pests", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b5/f10b60677311e3873333c340008f36/gardener_timelapse_a_growing_plant.jpg", "Create a sped up film of a plant growing with a time lapse app or editing program.", "Timelapse a Growing Plant", 42)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/58/6507957569ad7ab55f8479773894e0/geneticist_build_a_spiral_dna_model.jpg", "Learn about the spiral structure of DNA by building your own model.", "Build a Spiral DNA Model", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/03/3a4352a5b8c4fb3508bc9527115dc0/geneticist_describe_a_gmo_food.jpg", "Find a genetically modified organism (GMO) and explain how it was modified in a video. Usually a GMO is food, but it can be anything living.", "Describe a GMO", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bb/f886af82169694453a7e9205151442/geneticist_extract_your_dna.jpg", "Use simple household materials to extract DNA from a fruit, vegetable, or even your self!", "Extract DNA", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/69/b33993e2def4bb087c967e7ef06105/Screen-Shot-2013-12-12-at-10.28.54-PM.jpg", "Study a genetic process such as cellular mitosis or DNA transcription, then make your version with a colored drawing or animation.", "Illustrate or Animate a Genetic Process", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/47d69d473f8e44e6f30ed623a4b1ef/geneticist_make_a_pedigree_chart.jpg", "Draw a chart or make a photo collage tracking genetic traits through several generations of your family.", "Make a Family Tree", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/86/b696b517569608dccb056ceeacf0f9/geneticist_predict_animal_traits.jpg", "Fill in Punnett Squares for a pair of animals you want to mate. Explain the variety of traits you can expect from the combination of those two animals.", "Predict Animal Traits", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/36/8db5fbb4818990b0efe56f3134ad94/geneticist_solve_a_protien_puzzle_in_foldit.jpg", "Solve a protein puzzle in an online game called FoldIt, then upload your score. Help real scientists see and understand the structure of new proteins.", "Solve a Protein Puzzle in FoldIt", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/fa352efe0d93a2900d9a750a0d3051/geneticist_take_the_supertaster_test.jpg", "People that taste bitterness on a higher level are called Supertasters! Record a video of yourself performing a PTC test and find out if you\'re one, too.", "Take the Supertaster Test", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fa/a25c0d2cead0f9cc86ed7ee2c08776/Screen-Shot-2013-11-18-at-1.02.30-PM.jpg", "Fingerprints are unique but share similar patterns. Take a fingerprint of your thumb, and compare it with a parent or sibling. Label the patterns.", "Uncover Genes from a Fingerprint", 43)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4e/101a107a4f11e3950ae1789c70b59c/geologist_break_open_a_rock.jpg", "Break open a rock and show what\'s inside – it\'s a Geologist\'s magic trick!", "Break Open a Rock", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1d/4a5d9f253903f914fc9c29b29a2235/Screen-Shot-2012-08-23-at-11.11.20-AM.jpg", "The rocks, minerals, and organic matter found in soil give clues to its history. Geologists can use this information to do anything from offer forensic evidence in a court case to suggesting the right soil amendments for a healthy garden.", "Conduct a Soil Test", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/24/c79bd91a9f1b2826d62e10ee37b23d/Screen-shot-2012-08-21-at-6.37.18-PM.jpg", "Once you\'re familiar with the kinds of rocks and minerals around you, condense your observations into a map. A colorful key will help your readers decipher the map, whether it\'s as big as a planet or as small as patch of garden.", "Draw a Geological Map", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/11/a265207a4e11e39cb019e3a1409e37/geologist_grow_crystals.jpg", "Use evaporation to create intricate crystals on sugar, salt, or ice. Diamonds take thousands of years, but these can grow much faster.", "Grow Crystals", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0a/e922cfb7fb1b1fc02fc3e50f77cc0e/Screen-shot-2012-08-21-at-3.49.52-PM.jpg", "You can experiment with the same forces that create rocks in nature: temperature, pressure, and different chemicals and minerals.", "Make Rocks", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/67/6ba45abfce2bc5010097670da490f8/Clinometer.jpg", "A compass, a clinometer, and some calculations are all you need to discover the angle of a cliff, slope, or rock bed. Explain how it works with a video. ", "Make a Clinometer", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a0/02501c0341add2bc7caa84116b746b/Bill-Nye-Earths-Magnetic-Field.jpg", "Make your own compass to measure the powerful magnetic fields produced by the Earth.", "Make a Compass", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/a7fcebf434a4e2e0832f96841c3aa9/Screen-Shot-2012-08-22-at-11.42.05-PM.jpg", "Geologists often use scale models to understand the behavior of physical things. Create a table top experiment that demonstrates a geological event taking place.", "Make a Geological Model", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cd/8201187600ea927da12e028447cb64/Screen-Shot-2012-08-22-at-9.47.31-PM.jpg", "Glaciers are huge ice forms that build up when snow falls and doesn\'t melt. Freezing and melting over millennia has shaped mountains. Now, glaciers are melting very fast because of changes in the climate – if we understand them, we may keep them from disappearing.", "Make a Glacier Simulation", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/02/0b00b7026caba079e27d4b8c3c12f7/Screen-shot-2012-08-17-at-10.42.49-AM.jpg", "From a marble balanced on top of a pencil to the Sudden Motion Sensor in a laptop computer, many different things can be used to make a seismometer that will measure movement in the ground around you.", "Make a Seismometer", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/48/3870707a4411e3896483424bb50033/geologist_start_a_rock_collection.jpg", "Start a rock collection – be sure to label each one. If you don\'t know the exact rock, label it with clues like color, heft, hardness and streak.", "Start a Rock Collection", 44)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a5/0007dd1648f2648e0d6579404fe99e/Screen-Shot-2013-09-17-at-3.34.06-PM.jpg", "Design your own custom business card that communicates what it is you do. Don\'t use your real information (name, address, etc.)", "Create a Business Card", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/0f31c6f130727324d7436f2b53f8f9/Screen-Shot-2013-07-25-at-5.15.27-PM.jpg", "Pick a book, CD or DVD you like and design a cover for it. It should make people want to read, listen or watch it.", "Design a Cover", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/6b7ea132c653190ce39d7ced2c0fa0/Screen-Shot-2013-09-17-at-12.06.02-PM.jpg", "Design your own packaging or find a product you love to use and redesign its packaging. If redesigning, show the original along with the new design.", "Design a Package", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/00/2a0adc3ee42a4b92989d543b885c28/Screen-Shot-2013-07-25-at-2.29.29-PM.jpg", "Create a picotgram that conveys an action, place, thing or idea.", "Design a Pictogram", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a5/2b02760e31bfe781a45f8acf8a2e0b/Screen-Shot-2013-07-19-at-3.11.22-PM.jpg", "Design a typeface with all the letters of the alphabet, plus 0-9, and use it to write your username.", "Design a Typeface", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7e/ba9066a3b9513051e4021513ac7562/Screen-Shot-2013-07-19-at-11.46.05-AM.jpg", "Hand draw or use a program to create an infographic.", "Design an Infographic", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3b/580a22cb1bf9575812ccfe88ce1051/graphic_designer_design_for_print.jpg", "When printing professionally, you\'ll need to follow certain guidelines. Share two ways in which you\'ve designed something for print.", "Design for Print", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f7/e122a29de691b99cf52c226d25e23d/Screen-Shot-2013-07-24-at-4.38.14-PM.jpg", "A good logo is more than just a quick pencil drawing. Create your own logo or redesign your favorite logo so it\'s fresh and awesome. You can use a computer program or draw it by hand. Just make sure it\'s looks professional. ", "Make a Logo", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/77/8ee03861c2cc9b63a1dc051bf3ddbf/voila.jpg", "Think of something awesome to print, then carve out a block of wood or linoleum and print it.", "Make a Relief Print", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4f/eb7f648a89dc909d4e91abad91b2a9/Screen-Shot-2013-07-25-at-5.17.22-PM.jpg", "Use a computer program or hand draw a t-shirt design. Use the blank t-shirt as your canvas.", "Make a T-Shirt Design", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f2/1ccb4c9e9538bd19f0e7c1ea1251b8/IMG_0719.jpg", "Screen print a design onto a t-shirt, poster, postcard, or anything else that\'s flat. Show the process with pictures of video.", "Screen Print a Design", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/33ad923cde3bd24e11e13f97a7667f/Screen-Shot-2013-09-17-at-2.53.28-PM.jpg", "Grid systems help keep things ordered and looking good. Design something using the grid system and outline your grid so it really pops.", "Use a Grid System", 45)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e6/7d6f5cfc24a44b472b4fa76b4c334a/FPC0NE4FOHU3GVE.jpg", "Remembering to water your garden can be a real pain. Why not hack together a circuit that can do it for you? Build an automated garden and shoot a video of it.", "Automate Your Garden", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d0/a3333069cf11e3a1f1930fdce091e7/hardwarehacker_build_a_rainbow_led_mixer.jpg", "Use \'RGB LEDs\' to make a color mixer that can change colors between red, green, and blue.", "Build a Rainbow LED Mixer", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3f/4902ba0a892c4cc77e513569b90a34/eGHpLn5Uewik5ITP.jpg", "One thing that modern electronics are really good at is sound. Find a stuffed animal, build some electronic guts that make it talk, then share your franken-critter with DIY.", "Build a Talking Stuffed Animal", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/ee8f06768d4752fef5fae972f49f3d/Screen-Shot-2012-08-16-at-3.28.04-PM.jpg", "Joysticks and video game controllers for your computer can be pretty nifty, but wouldn\'t it be better if you could design and build your own? In this challenge you\'ll invent your own computer input device and take a video of you using it.", "Build a Video Game Controller", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ea/e1a04c72e2d9f4fcbbfaf890de2c23/472.jpg", "Why check the weather yourself when you can have a robot do it? Build a weather station using common sensors and an Arduino and show it off with a video. ", "Build an Arduino Powered Weather Station", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2f/82ee38e64f2b23b416e1edbb3b4096/Screen-Shot-2012-08-16-at-2.06.20-PM.jpg", "A sensor can be used to measure all manner of different things including temperature, light, vibrations... heck even air quality and your heartbeat! By connecting a sensor to the internet you can monitor it from anywhere and share it with your friends.", "Connect a Sensor to the Internet", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1f/18bf079392d26648532231b18a5a5a/xUVyVGp4fcYSsEMf.jpg", "Who doesn\'t like booby traps? Build a \'trip wire\' security alarm for a room and take a video of someone setting it off.", "Construct a \'Trip\' Alarm", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/55/5a9b53db829b5ee4efea602538af43/Screen-Shot-2012-08-16-at-3.14.58-PM.jpg", "Our five senses (hearing, sight, touch, smell and taste) are great and all, but why not build something to give us more? How about being able to \'feel\' distance or what about being able to \'hear\' magnets? Build a circuit and show off your invention with a video. ", "Give Yourself Extra Sensory Perception", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2b/522f8069cf11e3b93a237b95168413/hardwarehacker_make_music_with_a_microcontroller.jpg", "Make music or just some really strange tones to annoy your friends. Share it with a video.", "Make Music with a Microcontroller", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/94/571fc069bd11e3af9a07984d9d273b/hardwarehacker_make_an_led_blink_with_an_arduino.jpg", "Use an Ardiuno, a computer, and a USB cable to make an LED blink. Record it blinking with a video.", "Make an LED blink with an Arduino", 46)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fb/0c7d765c3957bb3caadbd792743dee/Screen-Shot-2013-08-15-at-5.38.48-PM.jpg", "Make a timeline telling the history of a place, object or group. Use color and shapes to enhance your timeline!", "Draw a Historical Timeline", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bf/f64e23f3e9fea66037d8fe92b9c707/Screen-Shot-2013-08-22-at-1.37.14-PM.jpg", "Dig around in the ground or in your grandparent\'s attic and find an artifact that is older than 1970. Explain what it is and where you found it.", "Find Old Artifacts", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/81df6c983535e9bb93ab267552ddcc/axe.jpg", "Before hardware stores, people made their own tools. Try you hand at making these simple objects.", "Make Ancient Tools", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/22/43e980a2b564820b23a7681a978311/Screen-Shot-2013-09-03-at-8.21.28-PM.jpg", "Research a local landmark or historic event and film yourself telling us about it. Tell us where you got your info.", "Make a 1-Minute History Video", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/00/638e11821b3c22ed9a920109704150/docu.jpg", "History is full of riveting stories. Make a documentary that tells the story of a person, place or movement.", "Make a History Documentary", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/66/51a6362160414009570146a87a8f8f/Screen-Shot-2013-09-04-at-12.08.02-PM.jpg", "Time Capsules are filled with objects from the present and opened in the future. Film a video of you explaining what you put in your capsule and why.", "Make a Time Capsule", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/62/3a6f9a5ecc4f6c6d006a86319dc444/CreeksMap.jpg", "Examine maps to learn about the history of your town. Make a map that shows how the place changed over time.", "Map the Past", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/34/9af0d20108f17dd699ce8bd9ae382c/oral-history.jpg", "Everybody has an important history. Collect someone\'s life story or ask them about an important moment. Record a video with sound.", "Record Oral History", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/33/6c507c57ed5d62432255f1782cdc34/Screen-Shot-2013-08-23-at-12.13.33-PM.jpg", "Research an era of the past and live just as they did, or visit a historic reenactment. Film a video of your experience in the past.", "Spend a Day in the Past", 47)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/03/2914d642f185bf1d50515763a70c9d/Screen-Shot-2013-12-02-at-10.29.52-AM.jpg", "The best way to share the love is to cook. That\'s the oldest rule in the world. Cook for the whole family and show off your spread with a video.", "Cook for Everybody", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1d/d89b0ed0ea4d5fb53d2170b0366383/Screen-Shot-2013-12-02-at-10.52.01-AM.jpg", "Nothing says \'You\'re all right!\' like a handmade card. Sketch out a design and then craft your card. Bonus points for pop-up cards.", "Craft a Gift Card", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4b/11b58fa104ba7bae50cb0d65b77449/Screen-Shot-2013-12-02-at-10.21.12-AM.jpg", "Make ornaments, snowflakes, trees and lanterns, and transform your space into a place that feels inviting and warm for others.", "Decorate the House", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a1/adad046a2a652c990471ec1e585ddd/Screen-Shot-2013-12-02-at-11.57.00-AM.jpg", "Stalking out into the woods and returning with a small piece of your local forest is an honorable tradition that brings the outdoors in.", "Forage for Natural Decorations", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ef/a56f1bf5380f33cbe07da5939a36ce/vol.jpg", "There\'s a lot of people who don\'t have it as good as you. Find volunteer opportunities in your town and give a helping hand to your friends in need.", "Give to the Less Fortunate", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8f/113e1fd748b27d82a236d0b72da1c3/book-safe.jpg", "The most cherished gifts are handmade. Think of something awesome to make for someone, and then make it! Video the finished gift.", "Make a Gift", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/d8e1e24b639f784c4f1beca3bd2c94/Screen-Shot-2013-12-02-at-10.36.25-AM.jpg", "Transform yourself with an ingenious holiday costume and you\'ll be the life of any party! Shoot a video as you liven things up a bit.", "Make a Holiday Costume", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/34/d667f2ef6d8a58aa79429cf591cd60/Screen-Shot-2013-12-02-at-11.11.22-AM.jpg", "There\'s something about foliage laid in a circle that\'s really cool. Make a wreath with a wire coat hanger and foliage from trees in your neighborhood.", "Make a Wreath", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/73/7dce1c3ace3859a1dff3d51f4e2e47/guit.jpg", "Those holiday tunes are so darn catchy - and heartwarming. Sing, whistle, hum, or play an instrument to bring holiday cheer to people around you.", "Perform a Holiday Song", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f3/dd22068b05f6a62c5a00d95295fc55/Screen-Shot-2013-12-02-at-10.45.44-AM.jpg", "A special present deserves special wrapping. Recycle something unwanted and play with materials that nobody else would think of!", "Wrap a Gift", 48)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4d/3d15660e215a97abd3993c31d66c7c/Screen-Shot-2013-06-14-at-12.11.26-PM.jpg", "Building your own furniture isn\'t just making a chair to sit on or a table to eat at. It\'s a way to add character to a room while learning basic construction. Sketch a few designs and pick the best one to build.", "Build Custom Furniture", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/1ce210780211e392209b086b0ea8c3/epu_vineyard.jpg", "A home can be something as simple as a tiny cabin or shelter. Find a spot of land, gather all your supplies and tools, and build a place to live.", "Build a Home", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/35/163db0780011e3b76e6fe77aa1ac25/homebuilder_build_a_shelf.jpg", "Build more space on your wall using shelf brackets.", "Build a Shelf", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/65/39a070780211e3b76e6fe77aa1ac25/homebuilder_fix_something_basic.jpg", "Find something broken around your home and fix it.", "Fix Something Basic", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/d218f2a2888d843f8aa298d6407386/Screen-Shot-2013-06-14-at-12.22.23-PM.jpg", "Leaky faucets, clogged drain and running toilets are problems we\'ve all experienced. Instead of shelling out tons of cash by calling a plumber, you can fix it yourself. Take a video showing how you did it.", "Fix a Plumbing Problem", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d8/12fbb6a67fe9fd556530838ee92212/Screen-Shot-2013-04-30-at-2.18.26-PM.jpg", "Ceiling fans, sconces and chandeliers all require basic wiring as well as something solid to fasten them to. Take a time-lapse or video of your hang.", "Hang a Fixture", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/6fe700780411e3beed95f3d416e1b6/Screen-Shot-2014-01-07-at-5.26.46-PM.jpg", "Walkways allow us to focus more on what\'s around uss than what\'s below our feet. Use logs, pavers, bricks or anything else you can think of.", "Make a Walkway", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/59/d58f90780311e392209b086b0ea8c3/homebuilder_paint_a_wall.jpg", "Pick out a cool color for your wall and get to painting!", "Paint a Wall", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/66/c959c7a35e7cec89a27dddc8f42d7d/Screen-Shot-2013-06-14-at-12.04.43-PM.jpg", "The yard can be an extension of your house if done right. You can plant trees for shade or fruit, as well as flowers and vegetables. Create a space that people can\'t help but want to use.", "Plant a Garden", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/59/9a13b50425012397bb2d7217de2d60/Air-Conditioning-Repair.jpg", "Dimming your screen is a good start to saving energy, but for this challenge you need to take it to the next level. Changing your home\'s lighting to energy efficient bulbs, turning down your hot water heater, and using timers on your thermostat are great start.", "Save Energy", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a3/6945e6a3f13c1742324f2b889144d0/Screen-Shot-2013-06-14-at-12.18.43-PM.jpg", "Knowing how to wire a plug or switch is a great skill to have. Always make sure to shut off the breaker and use a voltage reader to check for power. Take a video and explain the process of wiring a plug or switch.", "Wire a Plug or Switch", 49)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1e/adde50773511e3a06f192adbded793/illustrator_draw_animals.jpg", "Draw and animal using a photo – or even real life – as your reference.", "Draw Animals", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3e/fb305a973f7706e59e36df68fc0561/Screen-Shot-2012-10-16-at-3.48.48-PM.jpg", "Block your vision with a folder or piece of cardboard while you look at an object. Now, draw what you see, but don\'t peek at your hand as it moves. Set up a camera to film the whole thing, and share your drawing at the end. ", "Draw Blind", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2b/6aeea0755eb6f2eb6810970a4733a2/Screen-Shot-2013-06-05-at-3.23.56-PM.jpg", "Tree bark, flowing water, rough rocks, oozing blobs, hair, jagged crystals – these are just a few of the natural, repeating patterns that surround us. Learning to draw these from memory, in your own unique way, is a skill that shapes your style as an Illustrator.", "Draw Natural Patterns", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/83/aefd739e9c9c9694edbd9ac359c18a/Screen-Shot-2012-08-22-at-5.38.19-PM.jpg", "When you draw from a picture, and the picture is upside down, you don\'t recognize what it is, and it actually becomes way easier to just draw what you see. Its an amazing trick of the brain, to switch from recognizing something to just seeing the shapes.", "Draw Upside Down", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/38/4d0d80773611e382b3e7742ac00b7e/illustrator_draw_your_diy_avatar.jpg", "Draw your own version of your DIY Avatar – make it even better!", "Draw Your DIY Avatar", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/41/346a84ba3b27bd75dbe58f6c985e4b/Screen-Shot-2012-10-26-at-4.22.28-PM.jpg", "Buildings, cars, streets, and landscapes are some of the best subjects for a picture. There is no end to the variety and surprises that are everywhere around you.", "Draw Your Environment", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5b/d58d10773911e3ba2343a12dbd1514/illustrator_draw_a_face.jpg", "Draw faces with the proportions and character of a real person.", "Draw a Face", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e9/1570c866eeffb4a26dad4f2e0ccefc/Screen-Shot-2012-08-24-at-4.12.22-PM.jpg", "Copying from a photo is an awesome way to practice your detailing and shading skills. Using a grid system, you can accurately blow up a small photo with perfect proportions.", "Draw from a Photograph", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ee/56f82f7589bc4343943a845f88df9e/Screen-Shot-2012-10-18-at-3.02.55-PM.jpg", "With a few simple guidelines, you can create the illusion of perspective in your drawings. Its so easy! When you can draw with perspective techniques, your scenes and worlds will come to life with a sense of realism.", "Draw in Perspective", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5e/3cb15d7bc1281f35f154f56e5667e0/Screen-Shot-2012-10-17-at-5.50.11-PM.jpg", "Understanding how the natural world works is often only possible when we can visualize it. You can help people grasp scientific concepts easier by drawing out a natural process or structure in a clear way, with indications of movement and labels.", "Illustrate Science", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f0/f16dbe45f8a112ada6b45020a79ab9/Screen-Shot-2012-10-16-at-4.22.09-PM.jpg", "Handmade gifts are the warmest, most personal gifts of all. Drawing an illustrated card is about communicating something special to one other person. Think of something only they would appreciate, and bring it to life with illustration.", "Illustrate a Card", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/38c59364d633fc72ae7c070088c25a/Screen-Shot-2012-08-27-at-5.41.39-PM.jpg", "Tell a story with pictures. Invent a character and give them a challenge, or pick a theme and explore its many sides.", "Illustrate a Picture Book", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6f/87deafaed5b19a295b14442f295e83/Screen-Shot-2012-10-18-at-12.55.01-PM.jpg", "Good painting is knowing how to mix colors you imagine. You can practice this by painting a color wheel. Or you can try to mix paint to match a color you like, then take a picture of them side by side.", "Mix Color Paints", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a4/cd9e4b562f72fc5c5399a45b429518/Screen-Shot-2012-08-22-at-3.11.56-PM.jpg", "Anatomy sketches use just lines and shading to recreate the appearance of the human body and its various parts. Figure drawing has long been an important learning exercise for young artist – its important to memorize the body and be able to draw it accurately.", "Sketch Human Anatomy", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5b/9e7a1b640ad30cae9f70e4fca00e28/Screen-Shot-2012-10-26-at-12.39.52-PM.jpg", "By using many dots or short strokes, you can create forms with a sense of dynamic movement and complex, vibrant tones.", "Use Various Drawing Styles", 50)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b6/33482431cc7e884c24402c2b399066/prototypeusb.jpg", "A great way to see if a new design works is to build a prototype of it. Some prototypes are simple, just made to get a feel for size or shape. Other prototypes actually work exactly like a real product.", "Build a Prototype", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1f/acb559323aa380614c5a49c24fe0c3/package-29.jpg", "A package is more than just a product container. A good package design speaks to the consumer. It begs to be picked up and touched. It also sets itself apart from a competitor\'s product by making the best use of shape, color, texture, and even font type.", "Create a Package Design", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a0/4d5f50846711e3af7ed7c05c322760/tchair1.jpg", "Draw or build a prototype chair. It\'s nice if the chair looks great, even better if it\'s comfortable to sit in – that\'s Ergonomics!", "Design a Chair", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f7/a00080848211e3a8abcf6926c8c349/car.jpg", "Do a drawing of a vehicle that excites you, or even build the prototype!", "Design a Vehicle", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/24/b6ef9f69f5e5c239355cd3da227338/Screen-Shot-2012-11-05-at-5.32.39-PM.jpg", "CAD, also called Computer Aided Design, allows designers to quickly create a 3D object on their computer. CADs model can be changed and tweaked before ever having to build, or even be printed directly with a 3d printer.", "Design in 3D CAD Software", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/43/7a48dd316e86f79d15ac7fa88fb9c5/Screen-Shot-2012-09-07-at-2.29.19-PM.jpg", "A big part of an industrial designer\'s job is making a product sustainable. Where do your materials come from and where they will end up after the product\'s life is over? Make a product that is more energy efficient and build it using green and recycled materials.", "Make a Green Design", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3d/521010848211e3b47f1d853b8eafaf/camera.jpg", "Make a drawing that clearly communicates your design idea – it can be doodles, technical drawings, or anything in between.", "Sketch a Design", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fd/206f86a95e4b026b00bc8d6604723c/IMG_3023-1.jpg", "When a problem arises, a great product provides an eloquent and simple solution to it. Remember, sometimes the simplest solution is the best solution.", "Solve a Problem With Design", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1a/6a5915c7182e2aded76f0317d7fecf/SciF_EngrDesignGuide_Notebook_Leonardo_CodexAtlanticus-thumb.jpg", "Keep a notebook to capture thoughts, brainstorm problems, and sketch ideas. The best way to have good ideas is to have LOTS of ideas first, then later take your pick of the best ones.", "Start an Idea Notebook", 51)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ae/ca5d009b3011e385a7531b3fc027af/01-brainstorm.jpg", "Brainstorming is a fun way to think about solutions to a problem in many different ways. Pick a problem and solve it together with friends. Sketch your 10 ideas.", "Brainstorm with Friends", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/72/7026809b2311e386f3731fbc7bc150/IMG_0606.jpg", "Prototypes help innovators test their ideas quickly and make improvements to their designs. Build three different solutions to a design problem.", "Build 3 Quick Prototypes", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f2/ec0a132ea4929ca4937c87cdd50e3b/Screen-Shot-2013-11-12-at-3.53.29-PM.jpg", "Create an app that encourages people to move. Sketch what the screens look like and build a prototype. Have a friend try it out and give you feedback.", "Design an App to Get People Moving", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f4/e22be09b3211e3815a3f5671bcbd3c/Future-Design-with-Futuristic-Houses-Cool-1024x640.jpg", "Innovators are always thinking about what life will be like in the future. Imagine yourself sixty years from now and design something that will help you live a better life in old age. Think about how you will travel, communicate and live.", "Design for the Future You", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f9/a25df09b3011e3b36b9141aff54b7c/4634073507_15ca4c4d29_o.jpg", "Ask friends what they wish for in a summer camp. Draw a layout of the camp and plan a few of its activities. Sketch or build out your ideas, and use them as props in a promotional commercial.", "Design the Ultimate Summer Camp", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d9/23f2709b1f11e3815a3f5671bcbd3c/Screen-Shot-2014-02-21-at-9.48.55-AM.jpg", "Uncover a problem that you or someone around you experiences. Take a video describing how it could be made better.", "Identify Something to Improve", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/77/6753d09b3111e3b55ec1d62bdf268b/chicken.jpg", "Innovators focus on human needs. There are a range of phobias people experience - from fear of heights to fear of chickens. Choose a phobia and design a solution for it.", "Invent a Phobia and Design a Solution", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/af/3109e09da811e38ca43fb3f91735f1/ddn100109crash01_571827a_1.jpg", "Innovators aren\'t afraid to try, which usually means making mistakes so they can figure out a better way. Share something you tried that didn\'t work and what you learned from it.", "Learn From Your Failure", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ae/3cd5f09b2311e39c79ab36535762d7/pet-bottle-purse.jpg", "Innovators often practice by improving things they already love. Add a new feature to something you already own to make it better.", "Make a Life Hack", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/87/52712667b4a5860c4b0d8cd7164353/Screen-Shot-2013-11-13-at-11.38.55-AM.jpg", "Choose a big problem in your community and think up solutions. Explain why they help make your community better and create a video pitch.", "Make a Pitch To Your Local Community", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f9/9b78c09b3311e3aceb59365ae98e79/__________.jpg", "Design a snack to help people eat healthy in a fun way.", "Make a Snack for a Picky Eater", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/308362461034a29fb914ab853b65a1/Screen-Shot-2013-11-13-at-11.01.42-AM.jpg", "Designers begin by observing the world around them. Walk around your neighborhood and talk to a few neighbors about something they wish were improved in your community. Design a tool, service or a space that addresses this need. Make a video about your solution.", "Re-design Your Neighborhood", 52)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c7/e7a492e319cc825862a191d6ac6d75/FJXC0BTG0ZWH83L.jpg", "Bells, Cymbals, Xylophones, Marimbas, and Rattles are all types of idiophones. They are made of rigid material, often in several sections – the length of the section determines the pitch of the note. They must be struck or plucked directly.", "Build an Idiophone", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/24/a04f359e733e22b0bd8496b4547c56/Screen-Shot-2012-07-20-at-2.27.18-PM.jpg", "Mozart called the organ the \'King of Instruments.\' Indeed, it is epic. It makes sound by passing wind through pipes. Some are built 5 stories tall, yet you can build one in a bedroom. To solve this challenge, record video or snap a shot of your organ being played.", "Build an Organ", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/a84e20aae65982a97570ddbfacf436/Screen-Shot-2012-07-23-at-10.52.54-PM.jpg", "A musical scale is a series of notes created by an instrument, and a tuning system is what determines those notes. Alternative scales can be found anywhere that you listen for them. Record a video with sound of your system.", "Invent an Alternative Tuning System", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/38/d99ac07fb511e380fa5571ebc34b69/instrumentmaker_make_an_experimental_instrument.jpg", "Make an experimental musical instrument. Any object that can make a sound is an instrument – but what kind of sounds do you enjoy?", "Invent an Experimental Instrument", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f1/bc97001280aa585160feedc2214ba5/Screen-Shot-2012-07-23-at-8.45.35-PM.jpg", "Trumpet, bugle, horn, trombone, tuba – just some of the instruments in the Brass family. They have tubular bodies that resonate the lip vibrations of the player. Brass instruments don\'t need to be made out of brass, just as woodwinds aren\'t all made of wood.", "Make a Brass Instrument", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fe/6ac3107fb311e38af5d31ee365bac4/instrumentmaker_make_a_stringed_instrument.jpg", "Boxes can all make sounds by adding vibrating strings. Banjos, Guitars, Violins, Sitars, Harps are just a few of the \'Chordophones\'. Share your sound with a video. ", "Make a String Instrument", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e1/e16ca537ed3940dabb1e622803fd7c/Screen-Shot-2012-07-20-at-2.22.10-PM.jpg", "Woodwinds are instruments that make sound when blown, causing air inside a tube to vibrate. Flutes, Recorders, Saxophones, Clarinets, and Bagpipes are all kinds of woodwinds. To do this challenge, record video of your woodwind being played or take a photo of it.", "Make a Woodwind", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/67/225e0694b0dfa4d27b658eeef8eee4/Screen-Shot-2012-07-23-at-7.26.19-PM.jpg", "Synthesizers, keyboards, sequencers, and samplers are a few of the many electronic instruments. They all produce electrical audio signals that vibrate a speaker. There are many ways to play with electronic signals – an infinite variety of amazing sounds await you.", "Make an Electronic Instrument", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b2/8634207fb311e3bfb3290ba1eec481/instrumentmaker_stretch_a_drum.jpg", "Make a drum by stretching a thin material over a rigid frame. The trick is to get the \'membrane\' tight enough, and to have \'resonance heads\' that amplify the sound.", "Stretch a Drum", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/33/3f7d7ff28477c58aa2367fb2a9bd29/Screen-Shot-2012-07-23-at-5.13.08-PM.jpg", "Adjusting the pitch of each of the tones on your instrument is an important skill. You\'ll need to stay in tune to match up with others in the band or to play written songs. To do this challenge, record a video (with sound!) of your tuning job.", "Tune Your Instrument", 53)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4a/d816746aaa35553886d72f03fbbe91/first-apartment-moving-sofa.jpg", "Well-arranged furniture can mean the difference between comfort and collisions. Think about how a room will be used--where will people sit, talk, eat, sleep, and play? It\'s a good idea to draw some plans before you start the heavy lifting!", "Arrange Furniture", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c2/abad6a87d6238ae9930d1adceed4da/Screen-shot-2013-03-11-at-7.34.39-PM.jpg", "Plants bring life, color, and texture to a room, not to mention extra oxygen! Humans are hard-wired to enjoy nature, and studies suggest that we are happier, more productive, and breathing better when plants are around.", "Arrange an Indoor Garden", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b3/66c1db570de66048443006c59bf54a/pallet20chairs.jpg", "Sometimes the perfect piece of furniture doesn\'t exist yet, and it\'s up to Interior Designers to create it. Carefully measure the space and make detailed plans before building your masterpiece. Take pictures of your process along the way!", "Build Custom Furniture", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/80/5f8119b69869364fa1b743c05190ea/Screen-shot-2013-03-11-at-2.47.32-PM.jpg", "Make a collage or color chart with five or more colors for an imaginary room.", "Create a Color Scheme", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/76/384cee6c2ee5477eeebd1d72e2777c/Screen-shot-2013-03-11-at-3.12.59-PM.jpg", "Favorite books, photographs of family and friends, souvenirs from vacation, toys, tickets from a concert--it\'s things like these that remind us of our favorite memories and help us tell our story to others. Create an interesting way to display your collection.", "Curate a Collection", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ce/4547579b932e2723b6be2384990b57/iphone-image.jpg", "Photographs of family and friends, souvenirs from vacation, old toys, tickets from a concert--it\'s things like these that remind us of our favorite memories and help us tell our story to others. Find a creative way to display these kinds of objects in a room.", "Decorate a Wall", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/80/0cd3d16b8c93c891a9938b521ea683/3.jpg", "Interior Designers know that lighting can make or break a room. You may need ambient lighting for an overall glow, or focused lighting for a specific task. A lamp can be simple or a statement, but it should always bring illumination.", "Design Lighting", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8f/278ea0df31254fc323ec545009a169/My_Dream_Bedroom_by_Mudgee1994.jpg", "What would your room look like if you had no limits? Use your favorite medium to create a picture of a room that is focused on awesomeness, not feasibility. This is the time to let your imagination run wild!", "Draw a Fantasy Room", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/d85d90839711e39ab5f3b71079fee8/interiordesigner_make_a_design_board.jpg", "Gather inspiration for the colors, textures, and objects in your room – then make a \'Mood Board\' collage.", "Make a Design Board", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8e/acc560839511e3811f15e2de6fb793/interiordesigner_make_a_model_room.jpg", "Build a real or virtual model of the inside of a room.", "Make a Model Room", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/fd5e2ce6de4b58493095254015a812/Creative-Book-Furniture-Household-Items-24.jpg", "Everyone needs a secret space--a place where you can shut out the rest of the world. Secret spaces can be temporary or permanent, inside or outside, as big as a house or as small as a sheet draped over a table. Create a space and make it as comfortable as you can!", "Make a Secret Space", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b4/e443dc1c3b807ed0d088c9bd0ab5b5/Screen-shot-2012-12-05-at-10.13.36-AM.jpg", "One of the simplest ways to make a room feel more relaxed and pleasant is to get rid of clutter. It\'s also faster and easier to find things you need when they are organized in a useful and creative way. Take a before and after photo of your organization project!", "Organize Objects", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a2/debb49f9ac8416ccc5e6994039460e/6a00d8358081ff69e20176169597a3970c-800wi.jpg", "Textiles can bring texture, warmth, and comfort to a room in a way that nothing else can. It\'s also quick way to add a burst of color or pattern. Can\'t paint your walls or reupholster your sofa? Just add fabric!", "Transform a Room with Textiles", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/60/f77b7f290ae8dbfa15103d185081ef/IMG_0498-500px.jpg", "Interior Designers aren\'t limited by how an object looks or how it\'s intended to be used. Take something that you have and re-imagine it--add new paint or hardware, put it in an unexpected place or use it in a new way. Be sure to take before and after photos!", "Upcycle Furniture", 54)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a1/eff480982b11e3b326219dbe8d60b2/Screen-Shot-2014-02-17-at-3.35.33-PM.jpg", "Build a sweet looking box or wire tree to hold all of your handmade jewelry. Explain how you made it with a video.", "Build a Jewelry Holder", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/03/d0e52098f811e3a67da3adf4496154/Screen-Shot-2014-02-18-at-3.58.53-PM.jpg", "Jewelry has been made this way for thousands of years. Capture the process with a video, starting with a wax model and ending with a finished piece.", "Cast a Piece of Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2e/d4b4a0983411e3b8ff3f3aefd3a84e/iphone-image-_1_.jpg", "Braid, weave or loop together strands of fabric, rope or wire into a nice looking bracelet or necklace. ", "Create Woven Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4c/917460c9a311e3b9a3892a55d18131/Screen-Shot-2014-04-21-at-3.23.15-PM.jpg", "What\'s a wrist without a bracelet? Make a few eye catching bracelets and snap a picture of them on your wrist. How many can you fit on one arm?", "Create a Bracelet", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/54/99d660983a11e390107561c9794aef/Screen-Shot-2014-02-17-at-5.19.18-PM.jpg", "Sketch by hand or use a CAD program to design a custom piece of jewelry. Give it some thought, take your time, and design something you think people would love to wear.", "Design Custom Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d2/564390cb3911e3a2d88d96098a8f84/Screen-Shot-2014-04-23-at-3.52.07-PM.jpg", "Use a thick wire made from copper or silver and create a pendent, bracelet, or a set of earrings. Snap a few photos or explain your process with a video.", "Fashion Jewelry from Wire", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2f/8f1f70983e11e385cb2df48c5a27bb/6a00e3981de7fa88330154366197f0970c.jpg", "Beads look really cool as a necklace, bracelet, even a toe ring. Grab some string and a handful of beads and share what you made.", "Make Beaded Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a4/59760098d111e3a0091b3d34d5a07f/FM5RCN4FXP6OEYD.LARGE.jpg", "Bright beads are a staple of jewelry. Make your own from clay, plastic, paper, rocks – just about anything, really. Snap a shot of your finished beads. No less than five. ", "Make Custom Beads", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/3b04b09dab11e3a0b3675edb225b93/earring-lg.jpg", "Earrings can be made from just about anything. Create a funky pair of earrings and share with a few photos.", "Make Earrings", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5c/6f17c098d411e3a67da3adf4496154/Screen-Shot-2014-02-18-at-11.43.28-AM.jpg", "Rainbow looms are so hot right now. Weave some rubber bands into a sweet looking piece of jewelry and share with a photo. How many bracelets do you think you can make?", "Make Rainbow Loom Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b5/dbe66098ef11e3a2b833eb16d94192/Screen-Shot-2014-02-18-at-2.59.04-PM.jpg", "A clasp is how you hold together a bracelet or necklace. Use copper or silver wire and share your technique with a video. ", "Make a Clasp", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/26/68dc40c9a511e3959163ab64de9854/Screen-Shot-2014-04-21-at-3.35.16-PM.jpg", "Decorate your neck with a handmade necklace! Show your progress and the final piece with a set of pictures or a video.", "Make a Necklace", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b4/ad983098f211e3b9cca98bc3068884/5fda30_5ae96d39413ce76c40e8fbc266836ba3.jpg_srz_3264_1840_85_22_0.50_1.20_0.jpg", "This method is a bit tough to do, but the outcome is really slick looking. Find a coin, drill a hole, hammer a bit, and voilà, you have a coin ring. Take a series of photos or a video to show the process. ", "Make a Ring from a Coin", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/47/7f63e098f411e3bb9fd7fbcb3e7e83/karboojeh-tags-and-earrings4.jpg", "Once you get good at jewelry making, you\'re going to want to share your gift with other jewelry lovers. Etsy is a great place to sell such things. Take a screen grab or video as proof of your first sell, and a link to your site if you have one. ", "Sell Handmade Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e5/d59030982411e3a416dd2c649d6ca3/Metal-Soldering.jpg", "Solder, heat and flux are used to join together pieces of metal. Careful now. Your heat has to be super hot in order to work correctly. That means you need a torch with a sharp, accurate flame. Have someone film while you add flux and flow solder into your joint.", "Solder Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/33/fd28f0983311e3b81dabbf6d4caf9f/recycled_bike_tube_feather_earrings__62607.1351988859.800.800.jpg", "You can make some funky looking jewelry with stuff you find around the house or in the trash. Take a picture of your junk to jewels and mention what materials you used in the comments.", "Transform Junk to Jewelry", 55)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a5/122b6278e7c39e86a8e88ab3286185/Radio-Studio.jpg", "Tell a true story. Choose a tale others would like to hear. Record and then edit out the dull parts. Use iMovie or the iMovie app, then upload as a video.", "Craft a Radio Story", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0c/fa8cb4c0de15352162fe3f060c9ae2/Tennessee.jpg", "Go to a game and take brief notes. Report the score and any interesting details. Be sure to tell us where you get your info.", "Do Sports News", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bf/71bab07a5411e3984337ced377f5e0/journalist_film_a_30_second_field_report.jpg", "Go to where news is happening and film a report – keep it around 30 seconds.", "Film a 30 Second Field Report", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/af/f59b707a5311e3b23a97de76555850/journalist_interview_an_expert.jpg", "Record an interview with an expert using an audio recorder or your phone.", "Interview an Expert", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e9/911d90d6a16715e7dde6d054dc59cd/documentaryfilm.jpg", "Tell a true story. Edit your footage into a tight documentary.", "Make a Documentary Film", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c0/12b26e851157072422e7111470ae01/Screen-Shot-2013-07-31-at-1.06.59-PM.jpg", "Dress nice, slick your hair back, and sit down in the studio to bring the world the news. Have a friend film your news report. Don\'t forget to prepare notes!", "Present the Nightly News", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ec/0b35dda2c5311f1f4f6ed3ffb25897/Radio_Interview.jpg", "Edit down a raw interview. Select only the most interesting bits and discard the rest. Record with iMovie or the iMovie app; upload as a video to DIY.", "Produce a Radio Interview", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c4/470d6db392b2bb202f5c437ca4748c/news.jpg", "Publish a physical newspaper. Gather articles, do layout, then print. Circulate your newspaper.", "Publish Print Journalism", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/90/2c5ce40e75d914679c85b321e33777/Screen-Shot-2013-11-22-at-10.47.39-AM.jpg", "Zines are self-published magazines usually produced with photocopiers. Pick a topic you love and make a zine to trade with a friend.", "Publish a Zine", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/fba52d734d57e036efcbc54f5cabaa/Screen-Shot-2013-07-29-at-4.09.23-PM.jpg", "Introduce someone interesting to the world. Keep it short. Keep it compelling.", "Report a Personal Story", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ec/40e1e1f91bfc8222f51205e85db8ad/blackandred.jpg", "Scientists are making discoveries daily. Report on the latest research. Tell us where your information is from.", "Report on Science News", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/917ed9ebe98c32414d05af5f67af98/Screen-Shot-2013-07-29-at-5.18.41-PM.jpg", "Photojournalists tell stories with pictures. Take a series of images that craft a narrative.", "Shoot a Photo Essay", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b9/20daf27ca9ae11fab1605d0dba5f8d/Screen-Shot-2013-08-14-at-11.51.10-AM.jpg", "Publish news through the internet. You can write from your opinion or choose to be objective. Post at least three articles.", "Write a News Blog", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/02/a48ada8f440b2fc0b9944c3fb2e7c0/Screen-Shot-2013-07-29-at-5.36.13-PM.jpg", "Choose a newsworthy story. Dig up the details. And then write a short article. Publish your piece to justpaste.it and put the link in the comments.", "Write an Article", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/07/b58258ad24f0e14e3e04990de9a4ba/op-ed.jpg", "Choose a single topic you have a strong opinion on and tell us why. Be concise and persuasive. Upload through justpaste.it.", "Write an Op-Ed", 56)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8f/a52575f2e009fb63ff468fc279e4a9/originaltrivet.jpg", "Try your hand at making a mat to protect a table or place at your doorstep.", "Craft Rope Coasters", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/82/8e8b2975002ea6bc37eba14415c886/Screen-Shot-2013-07-16-at-4.52.23-PM.jpg", "Craft a quick survival net or make a trendy net tote bag! Use your net to catch a fish or stow your stuff.", "Create a Net", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b9/0f5e21883192dd73f48e75b79bfe4e/Screen-Shot-2013-07-10-at-4.34.13-PM.jpg", "Learn to properly store and organize your rope. Any specialist must take care of their tools.", "Keep Rope Shipshape", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/29/8f3eefbe9802b11b8a3e65363a3998/Lashing.jpg", "Lashing is when you join poles together with rope. Try your hand at lashing a quick stool from branches or build yourself a sweet lookout.", "Lash a Structure", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fb/a9091f19876e6478bdc835e33fa666/RopeRing.jpg", "Hang something from an eye you make or splice a never-ending ring.", "Learn to Splice", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/fd53a2735eab743b298f091c346ff2/monkeysfist.jpg", "Sennits make for great lanyards, Monkey\'s Fist or a Star Knot make an excellent key fob. Make your own.", "Make a Knot Key Chain", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/38/c9191cd348f41215352e867992403a/rope-ladder.jpg", "Good for climbing into secret tree-houses or escaping from an evil witch\'s tower, rope ladders are surprisingly easy to make! Shoot video of you climbing your ladder!", "Make a Rope Ladder", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f8/e2ced0848411e3ac847158b9f97d19/owline.jpg", "Take a clear photo showing you\'ve mastered a loop knot. You can use it to do anything from hanging a rope ladder to tying a dog’s leash!", "Master Loop Knots", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/50/ac7184154ef0c428b78f7dfd97a98b/Screen-Shot-2013-07-17-at-1.20.02-PM.jpg", "Fool your friends with knots that are not! Film a video of you performing knot magic.", "Perform Knot Magic", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6d/e61eebd1ab3d183bac50619c55c308/Termination-Knot_Anchor.jpg", "Hitches attach rope to a pole, metal ring, or even another rope. Rig a rope swing or hitch your horse in front of the supermarket.", "Tie a Hitch", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/58/18e5b18520463c897bfbba9163c3a4/Screen-Shot-2013-07-17-at-3.12.07-PM.jpg", "Tie up a paracord bracelet and have a useful rope supply wherever you are.", "Tie a Paracord Bracelet", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/0aba43e7a36b13253d5062017956c0/sailor-can.jpg", "The decorative Turk\'s Head Knot makes for a great bracelet. Try your hand at tying the classic knot.", "Tie a Turk\'s Head Knot", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/79/9c8d785f299b6648d3622513391371/Screen-Shot-2013-07-09-at-5.00.02-PM.jpg", "A bend knot joins two pieces of rope. Tie one, then take a clear picture or video of it.", "Use a Bend", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/1607d6d849604b34f88599f8008712/Screen-Shot-2013-07-10-at-2.37.46-PM.jpg", "Whippings keep rope from fraying, and are beautiful too! You can make it flashier by using colored thread, dental floss or metal wire.", "Whip Frayed Ends", 57)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ec/42b00580854d90af30321cde4b95ec/Screen-Shot-2013-11-04-at-3.20.38-PM.jpg", "Using LEGO® bricks, build a bridge that spans at least a 4 ft (1.2 m) gap. Take a picture or video of your bridge with a measuring tape.", "Bridge a Gap", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/8d043d79ebb219be3511664dd42c37/Screen-Shot-2013-11-04-at-6.26.27-PM.jpg", "Create houses, streets, restaurants, and anything else that belongs in a city and give a video tour of the place.", "Build a LEGO® City", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4d/0e5c9ac4d5708f8ba0ba24f41b6120/Screen-Shot-2013-08-19-at-2.05.38-PM.jpg", "Use a digital design program to build something with LEGO bricks without using physical blocks. Take screenshots.", "Build with Digital LEGO® bricks", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/dd/3b3124b3fa51571eb377b5e515216d/Screen-Shot-2013-11-04-at-3.41.39-PM.jpg", "Get together with a couple of friends and participate in FIRST LEGO League. Take video of the action.", "Compete in FIRST® LEGO® League", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/72/cd6dc919eec613122a3249b70ad50e/Screen-Shot-2013-09-08-at-11.54.13-PM.jpg", "Use LEGO® bricks and build a trebuchet that launches a minifigure.", "Construct a Trebuchet", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4d/538710796e11e3aa3e69b663445232/legomaster_construct_a_vehicle.jpg", "Build a big vehicle or three small ones – use at least 50 LEGO® bricks.", "Construct a Vehicle", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fe/af7f70796c11e38d656dba8c10016a/legomaster_create_lego_pixel_art.jpg", "Use LEGO bricks to create pixel art.", "Create LEGO® Pixel Art", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2f/203294586bede6743e8cd095d18600/Screen-Shot-2013-11-04-at-6.20.42-PM.jpg", "Build a mini-scene (also known as a vignette) using LEGO bricks. Try and tell a story with your vignette.", "Create a Scene", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4b/38d1dc3e1ff3e6708aa5c2b017c39a/Screen-Shot-2013-11-06-at-10.43.10-AM.jpg", "Using bricks you already have, create a step-by-step how-to video or instruction manual for a kit you designed from scratch.", "Design Your Own LEGO® Kit", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d1/ccde3b52131bf52660edc57d91e7f1/Screen-Shot-2013-08-16-at-5.55.36-PM.jpg", "Use LEGO bricks to create three small creatures or one gigantically huge creature.", "Make Creatures Using LEGO® Bricks", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/88/195d73963f538f6c0678dd1b2da885/Screen-Shot-2013-11-12-at-2.46.41-PM.jpg", "Use LEGO to design a font or make a sign. Write something cool. Your name is cool.", "Make Words with LEGO", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/93/ebcd5c0f3976ebcd29edd82f6511c1/Screen-Shot-2013-11-04-at-4.30.37-PM.jpg", "Make a costume or prop inspired by LEGO bricks.", "Make a LEGO® Costume", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/56/d9c173981bdc00a155a2d1fed8754e/Screen-Shot-2013-08-20-at-11.56.00-AM.jpg", "Use LEGO Mindstorms and build a machine of your design. Explain how it works with a video", "Make a LEGO® Mindstorms® machine", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/05/eee580796f11e39b7e353afb1b3e73/legomaster_make_a_lego_stop_motion.jpg", "Create a stop motion movie that makes use of LEGO bricks or figures.", "Make a LEGO® Stop Motion", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/25/9b195caf1f242d1cf89ae00737cc41/Screen-Shot-2013-08-28-at-2.47.39-PM.jpg", "Make a tool using LEGO bricks. Camera dollies, iPhone stands and key holders are all pretty useful things.", "Make a Tool using LEGO® bricks", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/5d5da71750cc4cc207c69a4ef6752c/Screen-Shot-2013-09-08-at-10.27.17-PM.jpg", "Use LEGO® bricks to build a bridge that holds at least 10 pounds.", "Support a Load", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/10/f198cf7275666766b8f374cb4a2a27/Autodesk_123D_Design_05.jpg", "Use a CAD program that uses digital blocks to make cool 3D shapes.", "Use a CAD Program to Build with LEGO", 58)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b6/44179749c0303629c3c11a8d91348d/Screen-Shot-2013-02-27-at-2.25.03-PM.jpg", "You can use potted plants or cover your whole roof with vegetation. Take before and after pics.", "Build a Living Roof", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a2/85185eac5fbbb65ea4fced976f6a93/Screen-Shot-2013-02-27-at-11.10.23-AM.jpg", "Find a quiet place in nature to turn into a sitting spot, or create your own by surrounding yourself with natural things like potted plants.", "Build a Sitting Spot", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3f/2da639b0b591a3c9f0640f36715045/Screen-Shot-2013-02-27-at-12.14.57-PM.jpg", "Water features can be as simple as a birdbath or as complex as a pond. Snap photos of your materials as well as the finished project to create a simple How-To.", "Build a Water Feature", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/aac89dfa2800b3d9547b204160aeb4/st-kilda.jpg", "Find a spot that could use a little play and create a place for you and your friends to enjoy. Take before and after pics or a video explaining what you did.", "Build an Adventureland", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0c/86986d71b73e31ddba5ed9c455e058/Screen-Shot-2013-02-27-at-2.38.14-PM.jpg", "Identity an existing microclimate or create your own. Take a photo and label the microclimate and its effect on the area. Rocks, trees, south facing walls, nearby water sources and soils types can all play a role how an area\'s microclimate behaves.", "Create a Microclimate", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b7/b9c009575261ce630ee938cfbff9ff/retainer-wall-tree.jpg", "Retainer walls come in handy when you need to hold back dirt. Most walls are made from urbanite or stone, but you can use anything large and sturdy, such as tires and logs. Build a retainer wall and takes pictures of your progress as well as the finished wall", "Create a Retaining Wall", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f4/67f262cc9bb26de81ffdf4bd3c2ced/daren-garden.jpg", "Turn a parking spot into a mini-park, or place some potted plants on a sidewalk. Take before and after pictures to show the difference.", "Create an Urban Parklet", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/26/150b30752f9e20b52b7f3544d9512b/hgtv.jpg", "Survey your area and figure out what plants and features work best, then design your layout. Be sure to explain your design!", "Design a Landscape", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3e/54fffa589c34b2fece632ab74cc5a8/Screen-Shot-2013-02-27-at-10.06.44-AM.jpg", "Find a drab spot in your area and transform it. Show before and after pics.", "Guerrilla Garden", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c2/f786b316d10c0678bed67780c18ae2/Screen-Shot-2013-02-28-at-10.39.20-AM.jpg", "There are great ways to harvest water that would otherwise be wasted. Pick a harvesting method, build it out and snap a few pictures.", "Harvest Water", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0d/3232d0839b11e3b8526dd76c2396d6/landscaper_make_a_path.jpg", "Create a path in your yard or land.", "Make a Path", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/51/66c8cb18059af1392342c9935e2d76/Screen-Shot-2013-02-27-at-12.12.23-PM.jpg", "Vertical gardens are great when space is limited. Try and use as many recycled materials as you can, such as pallets and bottles.", "Make a Vertical Garden", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c1/897790839e11e387b6f1bb58c2f0ea/landscaper_mulch_a_landscape.jpg", "Get shredded wood, grass clippings, or other organic mulch and cover all your bare soil.", "Mulch a Landscape", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0d/b329c449ccf9c3f53e86ef5fbffa7f/Screen-Shot-2013-02-28-at-11.12.16-AM.jpg", "Find a list of native perennials and plant a few in your yard or neighborhood. Take a picture and label it. Perennials are plants that live at least two years.", "Plant a Perennial Garden", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/55/7f9470839f11e38e4cb9de50a2b0e3/landscaper_plant_a_tree.jpg", "Determine what types of trees are best suited for your area and plant them.", "Plant a Tree", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6e/1c4e6099c69bd0cdd8fdefccec7bd7/soundsculpt.jpg", "Sculpt your land in a way that helps the Earth, taking before and after photos.", "Sculpt the Land", 59)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/46ba00887b11e3ac000fb2211576a4/670px-Pull-tongue-Step-5.jpg", "Research a dialect or accent not native to you, and try it out. Record your efforts with a video and mention the area of the accent you chose.", "Explore a Dialect or Accent", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fd/2b7c40887a11e3ac571b6eec779a0b/IMG_4849.jpg", "Show off your proficiency by speaking with someone else in another language. Bonus points if it\'s a native speaker and you add subtitles. Take a video.", "Have a Conversation in Another Language", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c3/d7fd50878111e39303d523434ba9d1/maxresdefault.jpg", "In a 15 second video, tell everyone your native language, then introduce yourself in another language.", "Introduce Yourself in Another Language", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/09/b7f780877d11e395bfbd7c1b720761/langs.jpg", "Invented languages are called Conlangs. Create a dictionary for your own Conlang with a minimum of 25 words and share with a picture or video.", "Invent a New Language", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7d/61dbc0888511e3b4d6ed0baea5a5c1/Screen-Shot-2014-01-28-at-5.31.12-PM.jpg", "What language are you trying to learn? Make a video dictionary to help you and your friends remember everyday words in another language.", "Make a Video Dictionary", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/41/fdd800886b11e39b6219debc3d3613/beatles4.jpg", "Record yourself performing a song in another language. You can write your own or sing one of your favorites.", "Perform a Song in Another Language", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6a/1aaef0887d11e384b37b19707ca7e6/indoeuropean-language-family-tree.jpg", "Make a video that dives into the history behind a language you are interested in. Where did it come from, why did it remain separate from languages around it?", "Report on the History of a Language", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/19/fff6e0848c11e3b411b50e99ecda3a/Klingon.jpg", "In a short video, demonstrate a language you\'ve invented by speaking it yourself, or, better yet, having a conversation with a friend.", "Speak Your Invented Language", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d4/58fd00888011e39e0735cf93210d56/IMG_0630.jpg", "Do you think internet slang and txt-speak are ruining language or making it more awesome? State your opinion with a video and give reasons to back up your claim.", "State Your Opinion on Internet Slang", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/fc67d0886f11e389aaad216c613163/duolingo_-_google_search.jpg", "Language learning apps are a really cool way to learn the basics of a new language. Take a video of yourself as you go through a lesson in the app and language of your choice. Feel free to add commentary at the end of your video. ", "Use a Language-Learning App", 60)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ac/5623163ebdee85febe891959f57390/Screen-shot-2012-09-14-at-1.21.19-PM.jpg", "A simple angled mirror is all you need to make objects appear and disappear in a magic box.", "Build a Disappearing Box", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/70/e43597ac9f50bcbc25d95a89666a4a/Screen-shot-2012-09-14-at-6.27.50-PM.jpg", "Some tricks require special devices to be built ahead of time. Practice your skills with some small props that easily let you take your show on the road.", "Build a Pocket-sized Magical Prop", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b7/228081403b9d1fa74a9d9a4ec57056/Screen-shot-2012-09-13-at-4.40.42-PM.jpg", "The best Magicians are not dependent on fancy costumes to wow their audience. However, a few good props can add some style and flourish to your act.", "Create a Costume", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4f/e2460747afc6065c4a1af89484daa9/Screen-shot-2012-09-17-at-6.05.26-PM.jpg", "Mentalism is the branch of magic that deals with predictions, telepathy, hypnotism, and other mind tricks.", "Learn a Mentalist Trick", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ab/1ca07078c411e3a158b9d7d86896f5/magician_make_a_magic_wand.jpg", "Build a magic wand to create the illusion of magical powers.", "Make a Magic Wand", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1a/c4ef9a76abaa14ded66611a19afc21/Screen-shot-2012-09-14-at-10.00.42-PM.jpg", "A simple deck of cards and a lot of practice is all your need to perform hundreds of astounding card tricks.", "Master a Card Trick", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ba/195cc685f0d924e485fdb7ece7ecbb/Screen-shot-2012-09-14-at-9.25.13-PM.jpg", "Whether they\'re using special knots or simple sleight of hand, a skilled Magician can make an ordinary piece of rope do extraordinary things.", "Master a Rope Trick", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/15/b2b2d078c511e392cd9bc33489293f/magician_perform_a_science_trick.jpg", "Amaze your audience with some unusual feats of science!", "Perform a Science Trick", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f0/b939c76e309c1e171866b38f22c3b5/Screen-shot-2012-09-12-at-1.34.21-PM.jpg", "Before they linked rings or sawed a woman in half on stage, many great Magicians practiced their tricks with paper.", "Perform a Trick with Paper", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/02/334da1b3a59b70ffdbb49d4383b7e1/Screen-shot-2012-09-14-at-11.00.03-PM.jpg", "With plenty of practice, Magicians can train their hands to move smoothy and quickly, creating illusions their audience doesn\'t expect.", "Practice Sleight of Hand", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7e/d75884355c404bd4b50b637a4cc6ac/Screen-shot-2012-09-14-at-6.45.00-PM.jpg", "Table tricks need just a little set up and look best when your audience is close...but not too close. Take a video that shows off your sleight of hand. ", "Set Up and Perform a Table Trick", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d4/869a3078bd11e392cd9bc33489293f/magician_set_up_the_angle_of_you_audience.jpg", "Control what your audience sees. Things can appear magical when seen from the right angle.", "Set Up the Angle of Your Audience", 61)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0d/5781f3524d3aad4ff4d06d7c1936c1/Screen-Shot-2013-06-05-at-5.12.08-PM.jpg", "You can shoot stop-motion with our new App. If you take a frame, move something a little, then take another frame, and you keep doing that, you can make something that feels like magic.", "Animate with Objects", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/51/c9cb95ebc010352ae28260ae6e350f/Screen-Shot-2013-05-27-at-2.42.48-PM.jpg", "Build a real-life version of your digital DIY avatar. Drawings don\'t count. Masks definitely do.", "Build Your DIY Avatar", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/aa/224a2917b24ce1f84b6306fa0d392f/Screen-Shot-2013-05-27-at-11.43.37-AM.jpg", "1. Get some cardboard. 2. Cut it out into shapes that you can fold around you. 3. Duct tape it together. 4. Be awesome in your costume.", "Build a Cardboard Costume", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/69/bbe4af04d2e0639c7dcf527389595b/url.jpg", "1. Find some old junk that can be used as a soil container. 2. Poke some holes in the bottom. 3. Put soil in it. 4. Plant a seed or transplant a seedling. 5. Boom, you\'ve got a little micro-garden going.", "Build a Container Garden", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/49/2a61319d16d6a00d8180925f24b48e/Screen-Shot-2013-05-27-at-11.01.29-AM.jpg", "Build yourself a house with sticks. If a woodrat can do it you why can\'t you?", "Build a Stick Fort", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/df/fa0b4fd50519ef1e148a020b0233e7/Screen-Shot-2013-05-27-at-1.03.22-PM.jpg", "There are programs that let you mess with the appearance of websites. Use them to hack DIY.org – surprise us!", "Hack the DIY.org Website", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ee/10fc12a3e82a9a243b1a9adacb1a63/Screen-Shot-2013-05-30-at-10.50.34-AM.jpg", "Make your debut on DIY. Let us know what you\'re into by uploading a VIDEO. NO PHOTOS, please.", "Introduce Yourself in 15 Seconds", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4c/f6b330da2811e3a60f6159bf52352e/Screen-Shot-2014-05-12-at-3.56.22-PM.jpg", "Is there a skill missing on DIY? Invent it! Design the patch and create a list of challenges it should have.", "Invent a Skill", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1e/7c773a8dd9a7d449527827f158f54c/Screen-Shot-2013-05-27-at-2.59.54-PM.jpg", "Build something sweet in Minecraft and take a screen shot.", "Make Minecraft Art", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/445c6cd9f4401b02bac8212a8d244b/Screen-Shot-2013-05-27-at-11.27.08-AM.jpg", "With some cheap batteries and a couple of little metal wires you can power a light or a motor to make an electric toy.", "Make a Battery Powered Circuit", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/46/0ab12c79976ecc217bf0bed971c25e/Screen-Shot-2013-05-27-at-4.08.03-PM.jpg", "All you need is duct tape and scissors! Boom.", "Make a Duct Tape Thing", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/15/2063a714a1cfc6e4b7eeeec6bff00f/Screen-Shot-2013-01-31-at-11.24.43-PM.jpg", "Just show us how you do it.", "Make a How-To Video", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6e/01eff58ad5d388ae7b69662235bcf0/Screen-Shot-2013-05-27-at-12.22.35-PM.jpg", "Make a model car, boat, train, plane, skateboard, sled, bike, helicopter, quadrocycle.... you know where this is going....", "Make a Model Vehicle", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6f/6f73fd1f8e0592f727cef492fdb45a/Screen-Shot-2013-05-27-at-2.37.42-PM.jpg", "Invent a meme and watch the world recreate it over and over. A meme is any idea that can be copied. A good meme is really FUN to copy. We won\'t approve memes that don\'t seem like they\'d be fun to copy.", "Make a Video Meme", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1e/1846cb8451f91a9d42eea0414a687c/Screen-Shot-2013-01-30-at-7.34.26-PM.jpg", "Use the DIY App to shoot something weirder than anything ever before seen.", "Make an Experimental Film", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/78/4e8daa023e00cdd5f84dfe10a50a7a/Screen-Shot-2013-05-27-at-3.31.56-PM.jpg", "Sing, strum, hum, drum, whistle, pluck, play.", "Play a Song", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b0/b2579f173d0cda942dadca69e05b24/Screen-Shot-2012-11-26-at-5.54.41-PM.jpg", "You need to use tools to get skills. It\'s simple. So learn to use them, learn to keep them nice, and be ready for action.", "Set Up your Tools", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cc/d7a9752fd8af8d52d015848b68c162/Screen-Shot-2013-06-14-at-10.56.45-AM.jpg", "The new DIY App has a touch-to-record feature, so you can create seamless in-camera edits!", "Shoot a Movie with the DIY App", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/20/268ebdbd7f1cb08394763e7f301119/Screen-shot-2013-12-02-at-5.31.17-PM.jpg", "Are you a yo-yo master? A beatboxing champ? Really awesome at solving a rubik\'s cube? Show off something that you\'re good at in a short video.", "Show Off Something You\'re Good At", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/f3c1d375e52fbc49e9774bb7374595/Screen-Shot-2013-09-30-at-5.01.59-PM.jpg", "Get your earned patches from the DIY Marketplace, and then stitch it on your backpack, hat, jacket, blanket - anything!", "Stitch Your Patches", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/1fcc1dd735e3022c248bdc8ea0cebf/Screen-Shot-2012-08-08-at-12.28.45-PM.jpg", "Make a cool creature with just some fabric, thread and stuffing.", "Stitch a Creature", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d6/910e10cfce11e39f72f9f8a0180b3f/Screen-Shot-2014-04-29-at-11.49.50-AM.jpg", "Tell a joke, or do a quick bit of standup. The delivery is just as important as the joke itself. Practice a bit in front of your friends, and then record a video or your joke. ", "Tell a Joke", 62)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0f/6de6d29dc43e69f1d5666c5ca81677/Screen-Shot-2013-11-05-at-5.11.18-PM.jpg", "What special products and tricks do you use to make sure your model looks especially good on camera? Share your tips with a video.", "Apply Makeup for a Photo Shoot", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/d8f5e4183dd7cfe2a81c734ec13ab2/hqdefault.jpg", "When someone performs far from the audience, it\'s hard to see their facial features. Use makeup to help them stand out and snap a photo.", "Do Stage Makeup", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8b/48c3d082da11e3aa130d07eaf4bbef/Screen-Shot-2014-01-21-at-12.31.06-PM.jpg", "Apply a full face of makeup- without a mirror. Film the whole thing. Good luck!", "Do the \'No Mirror Makeup Challenge\'", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/da/013e00830011e3b87251c6cd715871/gaga.jpg", "Out of paints and pastels? Draw with makeup! Draw anything you want, or make a plan for how you would put makeup on someone\'s face.", "Draw with Makeup", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b1/879bb082db11e3bfb28176ef8cc480/Screen-Shot-2014-01-21-at-12.35.30-PM.jpg", "Use latex, fake blood, and crazy colored eyeshadows to make scrapes, scars and bruises. Share your gruesome gashes with a picture or video. ", "Fake an Injury with Makeup", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6d/0e59ef4ad55ebb00f0a6711bda4777/natural-moisture-rich-lip-gloss-recipe-1.jpg", "Colored lip glosses are simple to make with ingredients you probably already have, but to go pro, try and make eyeshadow and nail polish.", "Make Your Own Makeup", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/da2db082d811e38e6b6b5133a97c0d/ft.jpg", "What did or didn’t you like about the product you bought? Are you going to continue using it? Share your review with a video.", "Review a Cosmetic Product", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0d/736fb082d911e3acaa59e187ba779e/Screen-Shot-2014-01-21-at-12.20.12-PM.jpg", "Make a video showing other DIYers how you apply makeup. Use at least three different products.", "Shoot a Makeup Tutorial", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a8/4bb4d6cd99e53f1ba96dc6b6d2abee/Screen-Shot-2013-10-30-at-4.32.10-PM.jpg", "Is it wrong to change your appearance, or is makeup a form of self expression? Share your opinion with a video.", "State Your Opinion About Makeup", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/710db4c102a661f577a3d9ff965dde/Screen-Shot-2013-11-04-at-5.59.18-PM.jpg", "Do special-effects makeup to transform a face into someone or something completely different.", "Transform a Face", 63)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1e/60d860879f11e3aacde1d93ae690ed/mechanic_change_your_oil.jpg", "Change the oil in an engine and then snap a picture or video of the process.", "Change Your Oil", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ba/8c433b3db6316b4d37f02bf9740752/PAF_FiberPort_diagram_1050.jpg", "It\'s always a good idea to know the names of the parts in your machine. Draw up a part of the whole device and label it.", "Draw and Label a Mechanical Part", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c3/d5f0a8b1ed3de37bbd4b480c334beb/vacuum2.jpg", "Fix a broken vacuum cleaner. Include a title or video to describe what was wrong with it, and what you did.", "Fix a Vacuum Cleaner", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/43/6a44bf4b41fcb09c86623632f36ee9/Screen-Shot-2013-02-06-at-12.11.18-PM.jpg", "Learn about your particular machine and then open it up and try and fix it. Be sure to document it with video or pictures.", "Fix a Washing Machine", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7e/d8dc8087a211e3b77c5dcf241494e9/mechanic_maintain_a_vehicle.jpg", "Snap a pic or video as you maintain a vehicle, and describe what you did.", "Maintain a Vehicle", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/9abaeaf1058b935f3f47e0018a04a2/Screen-Shot-2013-02-05-at-2.24.47-PM.jpg", "HVAC stands for Heating, Ventilation and Air Conditioning. Snap a photo or video of yourself keeping an HVAC system running smoothly and efficiently.", "Maintain an HVAC System", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/87/4d139c0319c6df0151564f7c1add24/fourboardsfull_thumb.jpg", "Build an organizer from scratch, or modify an existing one, and snap a photo with your tools in it.", "Organize Your Tools", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/22/6299f8102ebbbfcb5955b80056de20/final_rear_hub.jpg", "Take video or pictures as you repair a bike.", "Repair a Bike", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b5/8d8ad7dbceafe7654acb6052538e3d/Screen-Shot-2013-02-05-at-1.53.12-PM.jpg", "Find a machine that isn\'t working properly and film a How-To as you fix it.", "Repair a Sewing Machine", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/eb/83603be0256ea8127e58947af3081a/Screen-Shot-2013-02-06-at-3.58.55-PM.jpg", "Find an engine or motor that’s broke, troubleshoot the problem, and then film yourself while you fix it.", "Repair an Engine or Motor", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7a/99f3d4ae058708d44278787eef4774/Screen-Shot-2013-02-05-at-10.49.33-AM.jpg", "Find a car, go-kart or mower and take video or pictures while you replace its spark plugs.", "Replace a Spark Plug", 64)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/9b597fa51f37c6427de297aa752561/Screen-Shot-2013-06-10-at-5.27.44-PM.jpg", "Build your own catapult or trebuchet and see what you can launch!", "Build a Catapult or Trebuchet", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/51/0dab1f3b81e47ed66d1f80d81869e6/hydraulic6.jpg", "Build a hydraulic device and make something move. Take a video.", "Build a Hydraulic Device", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/78/29a8baf17fdcbcfbad4a8b02dde3a4/robo1.jpg", "When it comes to robotics, many disciplines bring their knowledge and skills to the table. Mechanical Engineers are tasked with all of the moving parts in a Robotic Device. Motors, joints, hydraulics and gears are some of the parts used in building such a device.", "Build a Robotic Device", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/237d0f7e5b230fe19770745ec9170a/stirling7.jpg", "The Stirling engine is known as an external combustion engine because the creation of heat happens on the outside. Record a video of your engine spinning. ", "Build a Stirling Engine", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2c/4429b68db5bded82d6f094cd70ff5e/Screen-Shot-2013-06-10-at-5.31.28-PM.jpg", "Build a vehicle, then record video that shows how it moves.", "Build a Vehicle", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ff/c1aaed3f8d5e721a67986c7239d7e2/geartube.jpg", "Once you\'ve made a few gears of various sizes, you can link together together and experiment with the outcomes. Linking together gears can change the direction of the input as well as increase or decrease the speed of rotation.", "Create a Gear Ratio", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/12/93b5162a4b41ad7160d5dbbf07dd3c/gear-11.jpg", "Find a template and make a gear.", "Design and Make a Gear", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f9/8839f45fabbcf1fc77d4c4dbb81b53/Screen-shot-2012-10-01-at-9.35.43-PM.jpg", "Often times, mechanical devices are so beautiful in their designs that they are considered works of art. Many kinetic artists blend mechanical engineering with other skills in order to produce machines that are mesmerizing.", "Make a Kinetic Machine", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f9/b874a087c111e3a03fd7b7f94912fe/4765691_l5.jpg", "Make use of the Six Simple Machines by combining them in creative, complicated, and comical ways to perform a simple task. You must have at least 5 different mechanisms. Capture your best run with a video. ", "Make a Rube Goldberg Machine", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e4/cb1a73aabfb6756fb3470ef9455297/Screen-Shot-2013-06-11-at-2.13.24-PM.jpg", "Use Tinkercad , 123D or another CAD program, and model something you use everyday. Take a screenshot of your finished model. ", "Model an Object in CAD", 65)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/99/3e1f507ee611e3907cbd818b271e20/medic_assemble_a_first_aid_kit.jpg", "Put together a kit with bandages and medicine, and find a container to carry it all.", "Assemble a First Aid Kit", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5a/6909807ef411e3adde03c4f490b6c6/medic_bandage_an_injury.jpg", "Record yourself carefully bandaging a volunteer. Bandages provide support, help stop bleeding, and protect open wounds. If you don\'t have medical bandages, you can improvise with cloth, old t-shirts, even paper towels.", "Bandage an Injury", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/35/98bcec7622ddb040ea097e4d5c18f2/Screen-shot-2013-02-01-at-2.39.34-PM.jpg", "To quickly diagnose and treat injuries, Medics must understand the different parts of the body and how they work. Add to your knowledge by making a model of a joint, organ, or other body part.", "Construct a Body Part", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5f/66d1eeb9cf6376c80a92e23e79ac1e/Screen-shot-2013-01-29-at-5.23.06-PM.jpg", "A single injury can affect dozens of the complex, interconnected parts of the body. Medics must understand how these parts work together so they can choose the best treatment. Construct a 2D or 3D model of one of the body systems to demonstrate your knowledge.", "Construct a Body System", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/dd7a2d7d2ca79c3bc885f899de6b5e/Screen-shot-2013-01-31-at-1.49.16-PM.jpg", "Most people get hurt far from a hospital and need to travel to get medical help. Broken bones, strained muscles, and dislocated joints can all get worse if they are moved, so Medics practice creating splints and slings out of whatever materials are available.", "Immobilize a Limb", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/56/e15837c7226c49d2f8e527de69d1c7/CIMG1032.jpg", "Medicine men, apothecaries, midwives, healers--humans have been mixing up natural medicines for thousands of years. Research the condition you hope to treat and the ingredients you have to create a tea, salve, or tonic to bring your patients relief.", "Make Medicine", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3a/5c944614c3eb94fed79aace14d1145/Screen-shot-2013-01-29-at-3.52.05-PM.jpg", "Medics are constantly challenged by the need to treat problems they can\'t see. A stethoscope allows Medics to investigate the body by listening to it. Hearing heartbeats, analyzing breathing, and taking blood pressure are all made easier with a stethoscope.", "Make a Stethoscope", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b5/5eacc07ee811e38abce1326ba3a285/medic_measure_vital_signs.jpg", "Document yourself checking a volunteer\'s vital signs, and record your measurements. Pulse, breathing, temperature and blood pressure are signs that tell if a patient is healthy.", "Measure Vital Signs", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/06/28f8302d29caa782aa26f6c68bdbd1/Screen-shot-2013-01-31-at-3.10.43-PM.jpg", "Anytime you treat a condition by cutting or removing something without anesthetic, you are performing minor surgery. Fruit and vegetables make excellent patients if injured humans aren\'t available--try removing a splinter from a tomato without squishing it.", "Perform Minor Surgery", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b8/e7d6a80275758f55235028c825c818/Screen-shot-2013-02-04-at-12.01.25-PM.jpg", "When a bandage isn\'t enough, Medics use small, precise stitches called sutures to close a wound. Practice your suturing technique on fruit, a chicken leg, or a hot dog. If you can\'t find a suturing kit, a standard needle and thread will work as well.", "Suture a Laceration", 66)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/90/34e9674018b83a58fbd53e53612fcb/aled_lewis_3.jpg", "Manipulate an image in Photoshop, GIMP, or in a mobile app to create a far out picture that makes the mundane seem extraordinary.", "Alter an Image", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6b/ae37d098f9be0feb53ad1621a58bac/cat.jpg", "Impact font over an image to create your very own meme! If you\'re uploading from the web, size your image to 960 x 640 so we can see your text.", "Caption an Image", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/dd/66ba5da9b9b15c95b838d69e671ea0/better.jpg", "Showcase your personality, talents, or interests by creating a web series.", "Create a Web Series", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/88/8113010f125bc370f930af36e8ccfc/Screen-shot-2013-07-09-at-3.08.23-PM.jpg", "Record a 5 second skit of you or your friends acting out the mundane or the hilarious. Use your time wisely to make something entertaining to watch!", "Film a 5 Second Skit", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/88/fa23efef718dd995d250cc346f9803/Taylor-Swift-Goat-Edition-of-I-knew-you-were-trouble-vi.jpg", "Create a commentary or spoof of your favorite media phenomenon.", "Film a Spoof Video", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/a727c3c8e42b40e587703f8b82f927/Screen-shot-2013-07-25-at-2.07.53-PM.jpg", "Compose an original song, remake a video, or film yourself doing something hilarious. Create something that you think others will enjoy and try!", "Film a Video Meme", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0f/9019a0839311e39505c788f05fa7cb/memehacker_fork_a_minecraftirl_video.jpg", "Make a MinecraftIRL (In Real Life) video – turn the game into reality!", "Make a #MinecraftIRL Video", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a1/1a6e00839011e38569b512b095a0cc/memehacker_fork_a_doghands_video.jpg", "Do your version of this DIY meme – a \'Meme\' is something funny that gets repeated.", "Make a \'Doghands\' Video", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/cf77817aaff4ed9c2fc42ad60cee6c/Minecraft-Pictures-minecraft-28991529-1920-1080.jpg", "Create a screen recording of you playing your favorite video game. Be sure to provide commentary as you navigate through different worlds.", "Make a Let\'s Play Video", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b3/18ce80d3946455d29fde4410443751/iphone-image-4.jpg", "Remake a popular meme on DIY, such as Hand Surfing, Wolf on Turtle, or Anything But Cup.", "Remake a Popular DIY Meme", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a1/7912b8790d091ad671ab3513461510/JaEOyhx.jpg", "Stage a photo that captures a scene from a movie or something you think would be fun for others to recreate. The possibilities are endless!", "Stage a Scene", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/14/77e2de3a710250b6fc07490a68f9b8/adventuretimecover.jpg", "The web allows for an infinite canvas so style your comic in whichever way you want that makes it easy to read on the web.", "Start a Webcomic", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b6/fabb32b94f41406a6b1d5143905200/Screen-shot-2013-07-15-at-12.55.28-AM.jpg", "Write a short script and create a voiceover for your favorite clip from the internet, a video of your dog, or even a music video.", "Voiceover a Clip", 67)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/42/d6a73dad0377d386bc8c872981bafd/Screen-Shot-2012-11-13-at-5.48.16-PM.jpg", "You can measure temperature, pressure, and humidity in the upper atmosphere by attaching your instrument to a simple weather balloon. Video your launch. ", "Launch a Weather Balloon", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/52/55fe5f1e6b6f603215b41c29f73103/Screen-shot-2012-10-07-at-6.50.17-PM.jpg", "Rub your hair with a balloon, and the same static electricity that makes lightning will make your hair stand on end. These bursts of electricity can make the air nearly 6 times hotter than the surface of the sun! Try and film your lightning in action. ", "Make Lightning", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8e/880c2c15be88b42f3a8ba4c2fed2cd/Screen-shot-2012-10-02-at-1.59.22-PM.jpg", "Make a barometer that shows the changes in atmospheric pressure. Scientists and sailors use these to predict changes in the weather.", "Make a Barometer", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/b43d2ce1a789abf58ddfda4e2b6940/Screen-Shot-2013-06-06-at-12.16.42-PM.jpg", "It\'s a cat! It\'s an elephant! It\'s suspended water vapor condensing around particles in the air! Study how different clouds form in a plastic bottle and up in the sky.", "Make a Cloud", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/82/c14ce7518801c73e007aa69f0f3e8a/Screen-shot-2012-10-02-at-2.47.26-PM.jpg", "The temperature of the atmosphere is one of the first measurements meteorologists make, and they use a thermometer to gather their data. Making one is easier than you would think, and it\'s something that\'s practical and useful all the time.", "Make a Thermometer", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ae/9e1f0614178c54ea3aa82263071693/Screen-shot-2012-10-04-at-11.17.50-PM.jpg", "From dust devils in the desert to hurricanes over the ocean, meteorologists study vortexes to learn more about what causes them and how they operate. Predicting these dangerous storms has saved thousands of lives.", "Make a Vortex", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/64/9faa5c620eb977941cf93602f7a517/Screen-Shot-2012-12-07-at-12.33.00-PM.jpg", "Meteorologists use maps to display data gathered by instruments in the field to create animations or pictures that show us how weather changes move and behave. Find an existing weather map and draw it, or find weather data and plot it yourself on a map.", "Make a Weather Map", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fe/8801a19acb1304be72960ca68f5d13/Screen-Shot-2013-06-06-at-12.23.16-PM.jpg", "Weather stations measure temperature, pressure in the atmosphere, as well as rain, wind and humidity. Build a weather station that includes devices to measure all of these things. Share what each device is called in a video. ", "Make a Weather Station", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f1/1fc998dcf27ca7f43225fdf6488893/Screen-Shot-2013-06-06-at-11.58.53-AM.jpg", "The atmosphere can hold a lot of moisture before it condenses and falls to the ground as rain. Measure the relative humidity of the air with a hygrometer.", "Measure Humidity", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/73/96f85cb323449513408e93a1b70025/Screen-shot-2012-10-04-at-2.08.36-PM.jpg", "Collect rainwater and make a rain gauge to measure how much rain falls in your area.", "Measure Rainfall", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/58/2bf9a88184e02f8d4465ac56eb4e90/Screen-Shot-2013-06-06-at-12.06.45-PM.jpg", "Nor\'easter? So\'wester? Build a wind vane or windsock to measure the direction of the wind and find out!", "Measure Wind Direction", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ed/8c4488bd8fe1c1a031f3fb3c713ece/Screen-Shot-2013-06-06-at-12.12.14-PM.jpg", "Measure how fast the air is moving by building an anemometer. Show it in actin with a video. ", "Measure Wind Speed", 68)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/56/1f93161df8012a034d157d2ba93c52/Screen-Shot-2013-06-24-at-11.26.14-AM.jpg", "The Minecraft world is a vast, infinite land. Walking is simply too slow sometimes. Thankfully, you can build rails!", "Build a Rail System", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/90/b16728b7a6cfd9393509694b9b7149/Screen-Shot-2013-06-20-at-5.01.10-PM.jpg", "All Minecrafters outgrow their first shelter, and inevitably move on to create their dream base.", "Build an Epic Base", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/ffd4d575c3cbc69d761e097b460aa7/spiderman.jpg", "Making your own skin for your character is a way to stand out on the DIY server. Go nuts! But dont\' upload a skin you didn\'t make yourself!", "Create a Minecraft Skin", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/94/fdd635005823ba140b64e62f38421e/Screen-Shot-2013-06-28-at-11.21.04-AM.jpg", "Using Redstone powers, you can build not just by hand, but with electronic logic in Minecraft. Post a shot of your Redstone contraption.", "Create a Redstone Contraption", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/10/be76301973ece559a211c1509429f7/daftpunky.jpg", "It\'s easy to create a simple Redstone contraption, but creating a masterpiece requires time and planning and skills.", "Create a Redstone Masterpiece", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/90/e73dad7f3073d852f0c43a33a86909/wiki-traps.jpg", "Post a video of your trap successfully pranking someone to complete this challenge.", "Create a Trap", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0f/74b34accfae9989ffc00da96a6b03d/Screen-Shot-2013-06-24-at-11.28.25-AM.jpg", "You can essentially build your own themed game worlds inside Minecraft, called adventure maps.", "Create an Adventure Map", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/05/de449cdab4e70ad7e9def967f87d7a/Screen-Shot-2013-06-20-at-4.48.33-PM.jpg", "Minecraft has 2 bosses: Ender Dragon and Wither. They\'re insanely hard to beat, but will reward you greatly. Post a shot of the loot you collect after slaying them.", "Defeat a Boss", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/23/6bb480a59811e3953ec1e62baf3bbc/alltogethernow.jpg", "To play with your friends on Minecraft, you need to have a server. You can join a public server, or make your own!", "Host a Minecraft Server", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d2/045e035772736f63646304a8592f97/Screen-Shot-2013-06-24-at-11.06.09-AM.jpg", "Mods add extra functionality to the game. Post a shot of your favorite mod running.", "Install a Mod", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9c/77cd3ccbb2e19f8a5ae15135c05f1f/newserver2.jpg", "There are many public servers available, including the official DIY server. Post a shot of yourself on a server to complete this challenge.", "Join a Minecraft Server", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f1/d407007ee211e392ce1523f24f2b97/minecrafter_make_art_in_minecraft.jpg", "Make a 2d or 3d art in any style you want in Minecraft.", "Make Art in Minecraft", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/57/71090de50486fd29da1a694738e538/Screen-Shot-2013-06-20-at-4.32.40-PM.jpg", "Unfortunately you can\'t play Minecraft 24/7, because you have to eat, right. Not to worry – you can eat Minecraft too!", "Make Minecraft Food", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/86/e5a63811267cf7b507e1ab1d53c44b/Screen-Shot-2013-06-20-at-4.31.03-PM.jpg", "Make Minecraft stuff IRL (in real life).", "Make Minecraft Papercraft", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c1/927e6e1df50f7d670739b2ac30a176/Screen-Shot-2013-06-24-at-7.31.28-PM.jpg", "Record an awesome video within Minecraft. Genre ideas: comedy, suspense, timelapse building, narrated adventure...", "Make a Minecraft Video", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8e/3361f160ae7d35b1bffe605836e213/beginnersguide.jpg", "Every Minecrafter starts with their first night, and their first shelter. Post a screenshot of your shelter to complete this challenge.", "Survive Your First Night", 69)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/50/5e6b15379d1d0a810eb0f302ac4686/Luckydragonssynth.jpg", "Interfaces allow a Musician to trigger sounds in a computer or analog synthesizer. Invent a musical interface that allows for a new kind of expression.", "Design an Interface", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6c/c1addefd57434e96a71b293abefdc9/corsano.jpg", "There are traditional techniques for playing instruments, and then there are innovations on those techniques. Figure out how to play your instrument in a totally new way, or learn from someone else who is doing something fun.", "Experiment with Musical Technique", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/41/85ef31a31cd1d1f7353ce0e38f4a2e/recycledorchestra.jpg", "Music is way more fun when you\'re playing with your best friends! The best bands and groups are the ones where everyone has something different to bring to it. Shoot a video of your music group in action. ", "Form a Music Group", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/5b/bbead9781507c5b341812ff294a771/Screen-Shot-2013-06-06-at-12.36.30-PM.jpg", "Often the best music comes to a Musician note-for-note on the spot, while they\'re playing. They use their intuition to make up the song as they go!", "Improvise Music", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/47/c503cfe37189f8ea820c74d4a5a622/foxhuntinginsnow.jpg", "To be a good musician, you must always be listening. Train your ears to pick up the tones all around you. To complete this challenge, record a sound of something that stands out to you.", "Listen!", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f1/80bb801f25217a5a87fefae9fa8ddf/soundropdemo.jpg", "Some of the earliest computers were actually musical instruments, called \'player pianos.\' Now, most Musicians use computer software to synthesize sounds, arrange samples, and compose songs. Upload a video with sound to share your music with the community.", "Make Computer Music", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8b/621581760b832af1abad1786cc56a0/beatboxing2.jpg", "There are a bunch of awesome ways to make music with your mouth, besides just singing and rapping. You can make beats, whistles, or crazy noises and you don\'t need anything but yourself!", "Make Mouth Music", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e2/9413a1d105ca8423729fdd370be44f/Screen-Shot-2012-07-23-at-6.16.44-PM.jpg", "Performing in front of complete strangers is every musician\'s rite of passage. Perform a free outdoor concert and make a recording or video.", "Perform Street Music", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/6e/38cb4ed0adc06d724921c5196d331a/ringingrocks.jpg", "Musicians find pitches in everything they hear. Use a found or homemade instrument to play a song that you know, or improvise a new one.", "Play Music on an Improvised Instrument", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2c/4338295121bef92bf0d5161f29e59a/Screen-Shot-2013-06-11-at-12.46.20-PM.jpg", "Upload a video of yourself playing any instrument.", "Play an Instrument", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a9/fba3da054b79aadd7843922f14efb5/imgres-1.jpg", "Play a scale that you\'ve learned or write a new one. Some scales have 5 notes, some have 47! It\'s all up to the person that makes it.", "Play some Scales", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/db/8ec46d01fbcf20a240767d494a67d4/we3kingsong.jpg", "As long as people have been playing music, they\'ve been trying to think of ways to write it down and remember it. While some musical languages are used all over the world, other types of music require their own special notation.", "Read and Write Music Notation", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e4/cedc7c4ed64720b3e60fba9f692500/Screen-Shot-2012-12-17-at-5.13.38-PM.jpg", "Most songs you\'ve heard have been produced by recording each instrument and vocal part separately. Then each track is layered and mixed to create the right balance and effect. Make a multi-track recording to complete this Challenge!", "Record and Mix Multiple Tracks", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/bf/a7f58482127dea45c799b247b532e1/Screen-Shot-2013-06-06-at-12.29.44-PM.jpg", "Sing anything to enjoy the fun of making music with your voice.", "Sing a Song", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/de/60571dacdaefa925bede52e3195525/Screen-Shot-2013-06-11-at-12.52.19-PM.jpg", "Upload a video of yourself performing an original song that you wrote.", "Write and Perform a Song", 70)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/dbfbe0773c11e3ba2343a12dbd1514/mycologist_draw_and_label_a_mushroom.jpg", "Find a mushroom online or in real life, then draw and label the parts. Knowing these helps to identify different species.", "Draw and Label a Mushroom", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/1d/223c9ca563a0aaa50fe8079f496cc4/Screen-Shot-2013-03-04-at-2.12.26-PM.jpg", "Natural dyes come from roots, berries, leaves, lichens, and fungi! By mixing mushrooms with certain color inducers, such as ammonia or salt water, you can achieve some really vibrant colors. Dye a piece of fabric and explain the process with a How-To.", "Dye Clothes With Fungi", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/3a/c6fa3d422f5d5c8599fe111e99194a/Screen-Shot-2013-03-04-at-2.30.23-PM.jpg", "Fungi doesn’t just mean mushrooms. Mycologists worldwide are finding innovative uses for fungi to make the world a better and healthier place. Get inspired and do something creative with fungi!", "Experiment with Fungi", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ea/582610773e11e3b37a8fe799eaee1a/mycologist_find_a_mushroom_habitat.jpg", "Find a place that mushrooms grow and take a picture or video. Mushrooms like damp, shady spots – they wait underground or in rotten wood for rain to help them pop out.", "Find a Mushroom Habitat", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/72/5e551720d12dda2d5f1ca2b4fb80f7/Screen-Shot-2013-06-06-at-1.47.45-PM.jpg", "If you don\'t live in a place where wild mushrooms are rampant, why not grow your own? You can buy a kit online or put one together yourself. Whatever method you decide on, be sure to take pictures as you go along, creating a timelapse of the growth.", "Grow Your Own Mushrooms", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a2/e2850f9b48050eb0359fe64151524b/Screen-Shot-2013-03-04-at-12.13.10-PM.jpg", "Once you\'ve found mushrooms and you know they’re safe to eat, it\'s time to harvest! A basket is always a good harvest companion, as is a sharp knife. Don\'t be greedy! Only harvest what you and your friends can eat. Leave some for the other mushroom hunters!", "Harvest Wild Mushrooms", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/df/d1f210773f11e3ba2343a12dbd1514/mycologist_identify_a_mushroom.jpg", "Get yourself a good mushroom guide and ID a mushroom. Be careful – some are so poisonous that they can make you extremely sick, or worse.", "Identify a Mushroom", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/75/0e1952291e23374cf8c767f4cd15b3/Screen-Shot-2013-03-04-at-6.14.42-PM.jpg", "Mycelium that is ready start growing is called spawn. You can make your own or buy it online in plug form. Once acquired, it will need something to feed on in order to grow. Wet logs, coffee grounds and damp grains and straw make great hosts.", "Inoculate with Spawn", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/12/90c45c24e12367eb2a31e9206428b1/Screen-Shot-2013-03-04-at-5.47.29-PM.jpg", "Kombucha is a fermented tea made from a Symbiotic Colony Of Bacteria and Yeast, or SCOBY. Get a kombucha culture from a friend or the internet, or make your own, and then get to fermenting!", "Make Kombucha", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/be/dcab5e86b1fdac9b491698c19197c6/Screen-Shot-2013-06-06-at-1.41.38-PM.jpg", "Mycelium look a lot like fuzzy spiderwebs. They are the vegetative part of a fungus. You can grow mycelium on an agar plate, cardboard, or coffee grounds. Once it\'s fully started you can transfer it to another medium to grow even more, such as a log or spawn bag.", "Make a Mycelium Starter", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/2a/57b8e686163f2360fda0618b80dcf3/Screen-Shot-2013-03-01-at-2.57.40-PM.jpg", "Spore prints are great for helping you figure out what mushroom you have, collecting spores to propagate, or just for some cool artwork to hang on your wall! Take a picture of your spore print along with the mushroom that made it.", "Perform a Spore Print", 71)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/c5/d84a14fc4d81add24a3af7c1374df8/Screen-shot-2012-09-25-at-4.27.01-PM.jpg", "Oceanographers use buoys for many things, from navigational markers to data gathering tools. Whether they are anchored or free-floating, they need sturdy construction to withstand the wind and waves. Show your buoy floating in water. ", "Build a Buoy", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/56/eaae819c37d700304ef20af06b94f4/Screen-Shot-2013-06-06-at-2.18.39-PM.jpg", "Oceanographers need special vessels to keep themselves and their equipement safe during voyages to the deepest parts of the ocean. Build a submarine that can actually go under water. Capture it with a video. ", "Build a Submarine", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/9c/a232559b301c64fe13048399138b88/Screen-shot-2012-09-30-at-5.15.32-PM.jpg", "Keep your sensitive camera equipment safe on your diving expeditions by building a waterproof case.", "Build a Waterproof Camera Case", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/17/30d873599c15173143164298355508/Screen-shot-2012-09-28-at-4.14.58-PM.jpg", "Remotely operated vehicles (ROV) help oceanographers study parts of the ocean that are too dark, too cold, or too deep for human divers. Build a real underwater ROV, and take a video showing how you control it while it\'s underneath water. ", "Build an Underwater ROV", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/01/367d9b278fe73eace931893e46967f/Screen-Shot-2012-10-08-at-9.54.29-AM.jpg", "The ocean is full of energy! While individual water molecules usually don\'t move very far, their combined force as a wave can be beautiful...or devastating.", "Make Waves", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/b4/6539a9d64e867fbc5a578c8504f289/Screen-shot-2012-10-01-at-8.51.24-AM.jpg", "A Cartesian diver demonstrates the principles of buoyancy that allow fish, scuba divers, and submarines to float at different depths. Show your diver in action by recording a video. ", "Make a Cartesian Diver", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/05/d3462080bf48b48a5a14fb625fecf5/Screen-Shot-2012-09-27-at-5.50.54-PM.jpg", "Study exotic sea creatures, then create your own. Much of the ocean still remains a mystery to be discovered!", "Make a Fantasy Sea Creature", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/cb/045099ecd83ec0ee769061281f0fbe/Screen-Shot-2012-10-08-at-10.34.31-AM.jpg", "The ocean floor has mountains taller than Mt. Everest, trenches deeper than the Grand Canyon, ocean currents are interconnected across the world. Study the ocean and make a map or model of it.", "Make an Ocean Map", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/37/67f7acdb76cde230637d68b0548787/Screen-Shot-2012-10-05-at-5.01.00-PM.jpg", "The ocean is highly affected by trash and chemicals that we put in it, as well as the many fish we take for food. Get to know the ocean\'s populations so you can eat the right fish. Find out what you can do to protect the ocean from contamination.", "Protect the Oceans", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/0b/d36536f0dd816daff3641c4bbe30e4/Screen-Shot-2013-10-15-at-1.42.10-PM.jpg", "Set up your own aquarium at home to observe underwater life up close.", "Set Up an Aquarium", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/79/ae17266c03f5472325b3ce1d8afd83/Screen-shot-2012-10-01-at-10.07.11-AM.jpg", "Make a collection of at least 3 different seashells - include labels if you can identify them.", "Start a Seashell Collection", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/50/32fdb6a1d78a49e418a49d711325fb/Screen-shot-2012-10-01-at-7.26.16-PM.jpg", "Some of the most diverse life in the ocean lives on the border between land and sea. Explore this ecosystem and document what you find.", "Study Intertidal Zones", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/03/30642d8fe653d258e238b372f87681/Screen-shot-2012-10-02-at-12.42.51-PM.jpg", "Capturing the beauty of an underwater world can be a challenge--the water, lighting, and your subject all need to be just right. Whether it\'s in the ocean or the kitchen sink, the key to successful underwater photos is practice.", "Take Photographs Underwater", 72)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/f3/9452caed40f88fc5c7a7d6fecdb523/guide-ref-poster-02.jpg", "Bash makes it easy to to copy files to your computer. Use Bash to copy files from a forked repo so that you can edit them on your computer. Upload a screenshot of your successful clone in Bash.", "Clone your Fork in Bash", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/31/106dda2a710e9600acef878edfa162/intro-poster-06.jpg", "Many people use Github.com to create projects, aka \'repos\', and make them open source. This way everyone can benefit from the work. Join Github.com and create and edit your first repo!", "Create a Repo on GitHub", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/dd/999e8c907972c0835f46cedac67bc5/Screen-Shot-2013-02-23-at-6.51.27-PM.jpg", "You might be surprised to learn that some familiar things are open source. Learn about open source projects and upload a screenshot of one you\'ve heard of but didn\'t know was open source.", "Find Open Source Projects", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e8/591be21d3da70c7ae76b7c72c1dfbb/Screen-Shot-2013-03-04-at-10.25.18-PM.jpg", "To contribute to a project you\'ll need to first fork (aka copy) the project files to your GitHub account. Fork DIY\'s open-sourcerer repo and upload a screenshot of it from your GitHub page.", "Fork a Repo on GitHub", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/75/585fd531ab58a57657d949206879fb/guide-ref-poster-02.jpg", "Git allows you to keep track of changes you make with files. Once you have a GitHub account, install Git on your computer. Upload a screenshot of your Git version in Bash, which you\'ll learn how to use, too!", "Install Git and use Bash", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7d/1d4849a8dd3459d82439644ced737a/Screen-Shot-2013-03-02-at-4.43.42-PM.jpg", "If you find a bug or have a suggestion for a project, you can submit an issue report so that the creator will be alerted to the issue.", "Issue Report on Github.com", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4b/e0120acc9263d1487d3d7e5997b085/guide-ref-poster-02.jpg", "When you\'ve changed a file locally, you\'ll want to push those changes to the servers at Github.com. Use Bash to push your local changes to your fork on Github.com. Take a screenshot of Bash when the push goes through.", "Push Changes in Bash", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/77/609cbf03be5e68b2ac9648df19b18d/guide-ref-poster-02.jpg", "When you make improvements to someone\'s repo, you want to submit the changes for them to incorporate into the original file. Submit a pull request to DIY\'s open-sourcerer repo and upload a screenshot of it.", "Submit a Pull Request on GitHub", 73)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/aa/8b74c92c729e0222827506dbf308c9/Screen-Shot-2013-07-08-at-3.12.36-PM.jpg", "Build a bird call that sounds like a real bird. Shoot a video as you call some birds.", "Build a Bird Caller", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/21/09308087a911e3b4f9710246fb051f/ornithologist_build_a_bird_feeder.jpg", "Build a bird feeder to attract birds.", "Build a Bird Feeder", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/18/2cc7c0a325fb15ef7a7da869f26539/Screen-Shot-2013-07-17-at-11.27.33-AM.jpg", "Build a motion detector birdcam from scratch or put together a kit and capture pics of video of birds.", "Build a Motion Detector Birdcam", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/8a/a50ff1bb622e8f210bf896a75752be/Screen-Shot-2013-07-15-at-2.19.10-PM.jpg", "Build a birdhouse. Keep in mind that the house\'s dimensions will play a role in what kinds of birds will live there.", "Construct a Birdhouse", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/4a/72995aa2e86b8bb0bd8c4f91ba49b1/Screen-Shot-2013-07-10-at-4.49.04-PM.jpg", "Create a local bird guide book that includes at least five birds.", "Create a Bird Guide Book", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7d/205d7087aa11e3a1fae537543f7230/ornithologist_dissect_an_owl_pellet.jpg", "Find or buy yourself an owl pellet and dissect it. Take a video to show all of the cool stuff inside.", "Dissect an Owl Pellet", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/92/716aefafcc4bc34e83ca3420794f08/Screen-Shot-2013-07-15-at-2.07.10-PM.jpg", "Pick a bird in your area and accurately draw it. Name the bird and label at least 5 features, focusing on the distinctive ones.", "Draw and Label a Bird", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/e6/8b9cf4cad7a000a6b5d46661d4938a/Screen-Shot-2013-07-10-at-5.12.25-PM.jpg", "Identify a bird by it\'s size, shape, color, plumage and call. Take a picture or video of the bird and correctly name it.", "Identify a Bird", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/af/6c10b087a711e3b5260dca230fa90b/ornithologist_mimic_a_bird_call.jpg", "Pick your favorite bird and copy its call in a video.", "Mimic a Bird Call", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7a/323ba59f6d13fafa14ab0802a9008f/Screen-Shot-2013-07-18-at-4.40.36-PM.jpg", "If you see a bird in trouble – don\'t touch the animal! Your scent might cause it to be rejected by the mother. Call the Wildlife Rescue in your town and document the event.", "Rescue a Bird", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/d5/690bb7e08349bf096fb9c3233befba/Screen-Shot-2013-07-19-at-10.59.28-AM.jpg", "Go on a guided bird walk or interview a real ornithologist. Share everything with a video.", "Talk to an Expert", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/40/3bdf65ec63ced0cd8d55c8ee911a0f/Screen-Shot-2013-07-19-at-10.45.06-AM.jpg", "Grab a telescopic lens and a camera and snap a zoomed photo or video of a bird. Take a picture of your setup.", "Use a High Powered Lens", 74)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/7e/b76859d84a62e953e165c1311e8a2f/iphone-image.jpg", "Stop and look around – almost any object can be customized using a paintbrush or a stencil. Cleaning, sanding, and priming your surface will help paint stick. After your paint is dry, spraying or painting on a clear finish will help protect it.", "Make a New Paintjob", 75)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/ab/adaee8e91da2c38d5631d628101fc6ba/Screen-Shot-2012-10-29-at-4.43.57-PM.jpg", "Do a painting of a small collection of objects – food, plants, anything. You may find when placing objects that they look better from certain angles. Experiment with light sources to get the right light and shadow before you start to paint.", "Make a Still Life Painting", 75)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/df/b258c66771173a8a3d961b70a3a619/Screen-Shot-2012-10-18-at-2.09.29-PM.jpg", "Learning how colors are combined will help you find the right ones. It will help your colors stay vibrant, rather than getting muddy or grey. A tip – mixing with a \'pallet knife\' or tongue depressor saves time and uses less paint than mixing with a brush.", "Match Colors", 75)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/fa/c05d7078c811e388e391adc89c0588/painter_paint_fantasy_creature.jpg", "Paint a creature character from a favorite story, or one you made up. Include realistic details to make it seem real!", "Paint a Fantasy Creature", 75)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/90/26974faaca26744b9c222eb9517050/Screen-Shot-2012-10-25-at-5.06.08-PM.jpg", "A landscape can be painted from imagination or photos. Or you can take your brushes and materials outside and paint from life. This is called \'plein air\' painting. It can help your understanding of light. You will see nature in new ways.", "Paint a Landscape", 75)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/a4/bf2459abcfa48eb3257b03d6832ae6/Screen-Shot-2012-10-29-at-10.44.56-AM.jpg", "A mural breaks up the mundane surfaces around us and adds color and life to a place. Murals take a while to make, so special care should be taken to make sure that your surface is primed and suitable to paint on. When you start, it helps to have a clear plan.", "Paint a Mural", 75)')
db.execute('INSERT INTO challenges (image_url, description, title, skill_id) VALUES ("https://d3tixod1wp885b.cloudfront.net/04/4cf0e9172930bef8883725ad1ad9ee/Screen-Shot-2012-10-30-at-2.08.42-PM.jpg", "Study a face and you will find many variations of skin tone. Some are more blue, some are red, some are almost grey. One more useful tip – the way the head sits on the neck and shoulders, the posture of a subject, is important in making a good likeness.", "Paint a Portrait", 75)')