-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakers.json
1506 lines (1506 loc) · 76.6 KB
/
makers.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"ProjectName": "TOSCA presents Music History 101",
"ProjectDescription": "TOSCA is The Oakland Symphony Chorus A la carte, the small music ensemble of the Oakland Symphony Chorus. Join us as we journey through musical history via a beloved and familiar tune, as arranged (and re-arranged) by the inimitable Ward Swingle. You'll learn the differences between Gregorian Chant, a Medieval Round, a Madrigal, a Bach Chorale, a Schubert Lied along with many other vocal styles -- including Jazz and Rap -- so get ready to sing along with us . . . a la TOSCA!",
"WebURL": "http://www.oaklandsymphonychorus.org/",
"URL": "http://groups.yahoo.com/group/TOSCAofOSC/photos/album/2123417375/pic/885774411/view?picmode=&mode=tn&order=ordinal&start=1&count=20&dir=asc",
"Category": "Music!",
"FirstName": "Patricia",
"LastName": "Ravarra",
"ORG": "Oakland Symphony Chorus / TOSCA",
"Twitter": "",
"Email": "[email protected]",
"Address": "2201 Broadway, Suite 300",
"City": "Oakland",
"State": "CA",
"Zip": 94612
},
{
"ProjectName": "The Sense of Things",
"ProjectDescription": "Sensors can track temperature, light, gases, presence in your home. Learn how to build your own inexpensive wireless sensor network using Raspberry Pi, xBee, and Python to track sensor data and store it on the web.",
"WebURL": "http://tinajalabs.com",
"URL": "http://makerfaire.files.wordpress.com/2013/02/tinaja-labs-wsn.jpg",
"Category": "Engineering, Science, home automation",
"FirstName": "Chris",
"LastName": "Jefferies",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "228 Stanford",
"City": "Kensington",
"State": "ca",
"Zip": 94708
},
{
"ProjectName": "Tapigami",
"ProjectDescription": "Danny Scheible is a Sacramento-based artist. His goal is to create art that pushes the limits of his materials and removes barriers between individuals and art. Tapigami is an interactive, ever expanding, self generating, social sculpture and art installation. It is designed to recreate and redefine the way in which we interact with daily life and art. Tapigami is an ever changing mandala of shapes and sculptures. Tapigami teaches you though personal and written instruction how to create Tapigami, and then allows and encourages you to place you own creation inside of the exhibit. It allows you to become the art. Tapigami current incarnation exists in the form of 100,000 tape sculptures 7,000 wire hangers covered with recycled fabrics, a ball pit of cable tie sculptures and on tree of gnowledge made from cut text books.",
"WebURL": "tapigami.com",
"URL": "http://tapigami.com/wp-content/uploads/2012/05/MG_4109.jpg",
"Category": "Art, Young Makers",
"FirstName": "DAnny",
"LastName": "Scheible",
"ORG": "Tapigami",
"Twitter": "Tapigami",
"Email": "[email protected]",
"Address": "2223 4th Ave",
"City": "Sacramento",
"State": "California",
"Zip": 95818
},
{
"ProjectName": "Instrument Petting Zoo with Oakland East Bay Symphony",
"ProjectDescription": "East Bay Performing Arts’ three groups - Oakland East Bay Symphony, Oakland Youth Orchestra, and Oakland Symphony Chorus – aim to engage our community. The EBPA education team brings our Instrument Petting Zoo, small musical ensembles, and “Body Music” interludes to the Faire. The Instrument Petting Zoo gives curious children of all ages a hands-on experience with wind and string instruments, and our team will give demos and engage with families while they explore the instruments. You will hear classical chamber music performances throughout the day, and audience members may interact with our performers by playing along with selected music. An Oakland Symphony Chorus member will lead the “Body Music” interludes and show people how to make music using the one instrument you always have with you: your body! Judith will lead you in making songs using the voice, hands, feet, maybe even your teeth and fingernails! The EBPA education team will also share information about our upcoming education programming. East Bay Performing Arts (EBPA) brings together orchestral music, choral music, and youth education to strengthen the East Bay community by providing quality live performances, and education for lifetime enrichment.",
"WebURL": "www.eastbayperformingarts.org",
"URL": "https://www.facebook.com/photo.php?fbid=10151066247755658&set=pb.44004960657.-2207520000.1373577733.&type=3&theater",
"Category": "making music",
"FirstName": "Beth",
"LastName": "Vandervennet",
"ORG": "Oakland East Bay Symphony - East Bay Performing Arts",
"Twitter": "",
"Email": "[email protected]",
"Address": "2201 Broadway, Suite 300",
"City": "Oakland",
"State": "CA",
"Zip": 94612
},
{
"ProjectName": "Fixit Clinic",
"ProjectDescription": "Bring your broken, non-functioning things: electronics, appliances, computers, toys, etc. for assessment, disassembly, and possible repair. We'll provide workspace, specialty tools, and guidance to help you disassemble and troubleshoot your item. Whether we fix it or not, you'll learn more about how it was manufactured and how it worked. This is a family-friendly event: children are heartily invited!",
"WebURL": "www.fixitclinic.org",
"URL": "https://plus.google.com/u/0/b/111525193946026734520/photos/111525193946026734520/albums/profile/5804496527483719106?pid=5804496527483719106&oid=111525193946026734520",
"Category": "Engineering",
"FirstName": "Peter",
"LastName": "Mui",
"ORG": "Fixit Clinic",
"Twitter": "fixitclinic",
"Email": "[email protected]",
"Address": "1715 Eola St.",
"City": "Berkeley",
"State": "California",
"Zip": 94703
},
{
"ProjectName": "EGChu Handcrafted",
"ProjectDescription": " Handbound Books, Greeting Cards, Sock Creatures, Duct Tape Wallets, Jewelry",
"WebURL": "etsy.com/shop/EGChuHandcrafted",
"URL": "http://www.etsy.com/listing/108652448/orange-stuffed-animal-sock-creature?ref=shop_home_active",
"Category": "Crafts",
"FirstName": "Elaine",
"LastName": "Chu",
"ORG": "Elaine Chu Graphic Design",
"Twitter": "",
"Email": "[email protected]",
"Address": "105 Windsor Ave",
"City": "Kensington",
"State": "CA",
"Zip": 94708
},
{
"ProjectName": "What is Upcycling?",
"ProjectDescription": "Upholstery fabric samples destined for the landfill get rescued and reused as the raw material for a unique line of tote bags and zipper purses. Just Sew Jana shows you how!",
"WebURL": "http://justsewjana.blogspot.com/2013/07/what-is-upcycling.html",
"URL": "http://justsewjana.blogspot.com/2013/07/what-is-upcycling.html",
"Category": "Homesteading / Sustainability",
"FirstName": "Jana",
"LastName": "Ballinger",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "580 Jean St. #9",
"City": "Oakland",
"State": "CA",
"Zip": 94610
},
{
"ProjectName": "Learn How To Make Glass Beads!",
"ProjectDescription": "(Hey, it's us again! This is from our San Mateo Maker Faire descritption): Learn the secrets of the Venetian Masters! Using a flame of over 4000 degrees, we will melt glass and form it into stunning beads before your very eyes.Round beads, tubular and sculptural beads (especially monsters and horses) are featured.",
"WebURL": "www.nightsidestudios.com",
"URL": "http://home.comcast.net/~nightside99/Bead%20Site%202009/Images/studio%203.jpg",
"Category": "Art, Crafts",
"FirstName": "Ralph",
"LastName": "McCaskey",
"ORG": "Nightside Studios",
"Twitter": "nightsidestudio",
"Email": "[email protected]",
"Address": "2509 Shamrock Dr.",
"City": "San Pablo",
"State": "CA",
"Zip": 94806
},
{
"ProjectName": "Tile Art",
"ProjectDescription": "Free! Come paint a tile! We will fire it at Brushstrokes and it will be ready for pick up in a week at Brushstrokes. Pre-fired tiles will be available for a group mosaic project happening at the booth too!",
"WebURL": "www.brushstrokestudio.com",
"URL": "http://instagram.com/p/aJX_pmEk-J/",
"Category": "Art",
"FirstName": "Jessica",
"LastName": "Williams",
"ORG": "Brushstrokes",
"Twitter": "BrushstrokesInc",
"Email": "[email protected]",
"Address": "745 Page Street",
"City": "Berkeley",
"State": "CA",
"Zip": 94710
},
{
"ProjectName": "House of Honoré",
"ProjectDescription": "Unique and silly hats, plushies, and accessories designed and crafted by Isolde Honoré. Handmade with love.",
"WebURL": "www.houseofhonore.com",
"URL": "https://www.facebook.com/photo.php?fbid=10152868454975191&set=pb.387575020190.-2207520000.1373945301.&type=3&theater",
"Category": "Crafts",
"FirstName": "Isolde",
"LastName": "Honoré",
"ORG": "House of Honoré",
"Twitter": "MeebleBlob",
"Email": "[email protected]",
"Address": "3109 King Street Apt C",
"City": "Berkeley",
"State": "California",
"Zip": 94703
},
{
"ProjectName": "East Bay Brass Band",
"ProjectDescription": "East Bay Brass Band is a SF Bay Area, New Orleans-style brass band that specializes in mash-ups of popular artists from Jelly Roll Morton to AC/DC to Raymond Scott to Paula Abdul to Shostakovich to R.E.M. Born in Oakland in May 2011. The band includes members of Blue Bone Express, MJ's Brass Boppers, Hot Pink Feathers All-Star Marching Band, Roisin Coven, Albino!, Phillip Der Stein, Dr. Abacus, Cyclub, Mercury Falls, Telepathy, and more.",
"WebURL": "https://www.facebook.com/eastbaybrassband/info",
"URL": "https://www.facebook.com/photo.php?fbid=464877930261425&set=pb.173738679375353.-2207520000.1373998481.&type=3&theater",
"Category": "Mash-Ups",
"FirstName": "Kevin",
"LastName": "Brunetti",
"ORG": "East Bay Brass Band",
"Twitter": "",
"Email": "[email protected]",
"Address": "1813 Fremont Drive",
"City": "Alameda",
"State": "CA",
"Zip": 94501
},
{
"ProjectName": "The Crucible",
"ProjectDescription": "The Crucible is a 501(c)(3) non-profit arts education organization that fosters a collaboration of arts, industry, and community. Through training in the fine and industrial arts, The Crucible promotes creative expression, reuse of materials, and innovative design, while serving as an accessible arts venue for the general public in the Bay Area.",
"WebURL": "http://thecrucible.org/about-us/about-the-crucible",
"URL": "",
"Category": "Art, Crafts",
"FirstName": "Andrea",
"LastName": "Lundquist",
"ORG": "The Crucible",
"Twitter": "thecrucible",
"Email": "[email protected]",
"Address": "1260 7th street",
"City": "oakland",
"State": "ca",
"Zip": 94607
},
{
"ProjectName": "Junkyard Couture",
"ProjectDescription": "Edgy clothing and accessories made from salvaged materials like truck and bike inner tubes, leather scraps, and discarded clothing. You can buy an Upcycled Belt Kit, learn how to size it and apply the hardware, and walk away with a super eco-friendly belt!",
"WebURL": "www.etsy.com/shop/krakenwhip",
"URL": "https://www.facebook.com/photo.php?fbid=445002992187494&set=pb.188359511185178.-2207520000.1374169693.&type=3&theater",
"Category": "Crafts",
"FirstName": "Kristin",
"LastName": "Gallup",
"ORG": "KrakenWhip",
"Twitter": "cyberkristin",
"Email": "[email protected]",
"Address": "1636 3rd Ave",
"City": "Oakland",
"State": "CA",
"Zip": 94606
},
{
"ProjectName": "Crow For Day",
"ProjectDescription": "We are a traditional style string band with a few modern touches.",
"WebURL": "",
"URL": "",
"Category": "Music",
"FirstName": "Crash",
"LastName": "Cunningham",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "",
"City": "Oakland",
"State": "Ca",
"Zip": 94610
},
{
"ProjectName": "The Lads",
"ProjectDescription": "Mostly Traditional Irish Music",
"WebURL": "",
"URL": "",
"Category": "Music",
"FirstName": "Crash",
"LastName": "Cunningham",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "",
"City": "Oakland",
"State": "Ca",
"Zip": 94610
},
{
"ProjectName": "Oakland Youth Orchestra",
"ProjectDescription": "We will send a small group from our award winning orchestra to perform for you. OYO is comprised of young orchstral musicians from the age of 12 - 22. We have just returned from an international tour to Argentina and Uruguay. Please visit our website, oyo.org, to learn more about us. We will be having a booth as part of EBPA which will have an instrument petting zoo among other things.",
"WebURL": "",
"URL": "www.oyo.org",
"Category": "music",
"FirstName": "gail",
"LastName": "edwards",
"ORG": "EBPA",
"Twitter": "",
"Email": "[email protected]",
"Address": "2201 broadway, suite 300",
"City": "oakland",
"State": "ca",
"Zip": 94612
},
{
"ProjectName": "Take My Word For It!",
"ProjectDescription": "Creative writers make many things- characters who fascinate us, settings that put us in far away places, stories that teach, inspire and help us recognize ourselves in new ways. Come dive into your imagination, swim around with metaphors and similes, big words and small, use all 5 senses and get to know the writer inside you. We'll write about makers and the things they make, plus a whole lot more!",
"WebURL": "takemywordforit.net",
"URL": "",
"Category": "Young Makers, Writing",
"FirstName": "Sondra",
"LastName": "Hall",
"ORG": "Take My Word For It!",
"Twitter": "tmwfi",
"Email": "[email protected]",
"Address": "",
"City": "Oakland",
"State": "CA",
"Zip": 94602
},
{
"ProjectName": "FLASH.IT",
"ProjectDescription": "FLASH.IT is an interactive climbing wall with computer-controlled LED climbing holds. Participants will be able to climb on the wall and look at examples of light-up holds and the tools used to make them.",
"WebURL": "",
"URL": "https://s3.amazonaws.com/ksr/projects/580694/photo-main.jpg?1373381692",
"Category": "Engineering, Art",
"FirstName": "Christopher",
"LastName": "Merrill",
"ORG": "",
"Twitter": "notspelledright",
"Email": "[email protected]",
"Address": "1611 Church St",
"City": "San Francisco",
"State": "CA",
"Zip": 94131
},
{
"ProjectName": "The Mothership",
"ProjectDescription": "\"wherequestionableengineeringandwhimsycollide\" The Mothership is our Burning Man Mutant Vehicle. It's a 20ft diameter UFO 10 ft high off the ground ... and it's lit up with over 4000 individually controlled RGB LED lights controlled by 5 handmade DMX controllers and driven by Madrix software.",
"WebURL": "http://mothership2013.blogspot.com/",
"URL": "",
"Category": "Engineering, LED Sequencing",
"FirstName": "Bob",
"LastName": "Dow",
"ORG": "",
"Twitter": "bobdow",
"Email": "[email protected]",
"Address": "1091 Calcot Place",
"City": "Oakland",
"State": "CA",
"Zip": 94606
},
{
"ProjectName": "The Enchanted Square",
"ProjectDescription": "Come experience Enchanted Squares hats and accessories. Try out a pattern and ask Ruth for tips on how to improve your crochet.",
"WebURL": "www.enchantedsquare.com",
"URL": "https://sphotos-a-sjc.xx.fbcdn.net/hphotos-prn1/923227_10151432657963068_1279470525_n.jpg",
"Category": "Crafts",
"FirstName": "Ruth",
"LastName": "Tillman",
"ORG": "The Enchanted Square",
"Twitter": "enchantedsquare",
"Email": "[email protected]",
"Address": "2901 Central Ave",
"City": "Alameda",
"State": "CA",
"Zip": 94501
},
{
"ProjectName": "Urban Fruit Trees",
"ProjectDescription": "Visit us to learn how to care for the fruit trees in your yard. Growing food is simple, cheap, and radical. Draw a plan of your garden, and we'll help you decide the best places to put (or move) your trees. We can also answer your questions about fruit quality, pests, installation, irrigation and selection. We're here because the best fruit is the stuff you pick yourself.",
"WebURL": "oaklandorchards.com",
"URL": "",
"Category": "Homesteading / Sustainability",
"FirstName": "Molly",
"LastName": "Bolt",
"ORG": "Molly Goulet Bolt, Arborist",
"Twitter": "",
"Email": "[email protected]",
"Address": "PO Box 3446",
"City": "Oakland",
"State": "CA",
"Zip": 94609
},
{
"ProjectName": "Trum",
"ProjectDescription": "A unique electronic percussion instrument, the Trum employs many sensors and uses sophisticated software sound synthesis. Like a cross between a drum and a Theramin, the Trum can even sense the player's hands in the air when they are not touching the instrument, providing unique expressive capabilities.",
"WebURL": "",
"URL": "http://www.tarantic.com/demos/Trum2.JPG",
"Category": "Engineering",
"FirstName": "Amit",
"LastName": "Shoham",
"ORG": "",
"Twitter": "amitshoham",
"Email": "[email protected]",
"Address": "",
"City": "Oakland",
"State": "ca",
"Zip": 94606
},
{
"ProjectName": "Aerolite Wheels",
"ProjectDescription": "Aerolite Wheels are the worlds first 700c bicycle wheels with a completely integrated lighting system. No hub mounts, additional assembly, external wires, or exposed straps. Simply one of the cleanest LED bike products ever.",
"WebURL": "www.aerolitewheels.com",
"URL": "http://aerolitewheels.files.wordpress.com/2013/07/branded-night-warhol-als-v2.jpg",
"Category": "Engineering, Bicycle Wheels/Electronics",
"FirstName": "Miles",
"LastName": "Foster",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "",
"City": "San Francisco",
"State": "California",
"Zip": 94124
},
{
"ProjectName": "Pen Pop Print Shop",
"ProjectDescription": "Pen Pop Press Shop is a pop-up printers' shop. Print a poster of your own design using fallen leaves and found objects. Learn about some of the tools and techniques of printing and press-work. Create your own methods and innovations using our materials. Help us hack together a printing press! Contribute your poster to the gallery or take it home.",
"WebURL": "http://penpopprintshop.tumblr.com/",
"URL": "http://penpopprintshop.tumblr.com/image/56926884857",
"Category": "Young Makers",
"FirstName": "Julie",
"LastName": "Crossman",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "27 Ramona Ave",
"City": "San Francisco",
"State": "CA",
"Zip": 94103
},
{
"ProjectName": "Art by Robin MacLean",
"ProjectDescription": "Original designs on screen printed apparel for adults, youth and kids. Framed and unframed archival digital prints of vector artwork created in Illustrator.",
"WebURL": "www.etsy.com/shop/RobinMacLean",
"URL": "https://www.etsy.com/listing/130234062/nopales-pricky-pear-cactus-print?ref=shop_home_active",
"Category": "Art",
"FirstName": "Robin",
"LastName": "MacLean",
"ORG": "MacLean Custom Screen Printing",
"Twitter": "",
"Email": "[email protected]",
"Address": "",
"City": "Vallejo",
"State": "CA",
"Zip": 94590
},
{
"ProjectName": "WikiSeat",
"ProjectDescription": "Here at WikiSeat, we make DIY three legged seats a reality for thousands of students around the world.",
"WebURL": "www.wikiseat.org",
"URL": "http://cdn.instructables.com/F2N/2W0M/GJQEBLY4/F2N2W0MGJQEBLY4.MEDIUM.jpg",
"Category": "education",
"FirstName": "nicolas",
"LastName": "weidinger",
"ORG": "WikiSeat",
"Twitter": "@WikiSeat",
"Email": "[email protected]",
"Address": "2429 Adeline",
"City": "Oakland",
"State": "CA",
"Zip": 94607
},
{
"ProjectName": "seaGrass",
"ProjectDescription": "seaGrass consists of a field of thirty 30’ tall towers. The towers are articulated to react to wind and participant input by swaying and self centering. Each tower is also strung with high output, full color LEDs. The LED patterns can be influenced by sound (you can talk to them and they'll respond in surprising ways) and physical input (walk up to them, make them sway or shake and see what happens). Each tower also has a radio so that we can communicate with them to create coordinated full color extremely dynamic patterns.",
"WebURL": "https://www.facebook.com/seagrassProject",
"URL": "https://www.facebook.com/seagrassProject",
"Category": "Art",
"FirstName": "Mauricio",
"LastName": "Bustos",
"ORG": "338.oakland creations",
"Twitter": "mbustosorg",
"Email": "[email protected]",
"Address": "338 63rd Street",
"City": "Oakland",
"State": "CA",
"Zip": 94618
},
{
"ProjectName": "HoneyBee 3d printing store and classes",
"ProjectDescription": "Grand Opening: HoneyBee3d printing store in Montclair/Oakland!! Want to learn about 3d printing? Want to go home after the class with a 3D printed object? Then take one of the classes offered at HoneyBee3D retail printing store! We offer several classes from beginner to advance...age 8 and up...as well as 3D printing services. No experience required! You just need an imagination and be a maker at heart!",
"WebURL": "honeyBee3d.com (launching late August 2013)",
"URL": "https://plus.google.com/104181827213978149757/posts/GzCb4MZaEbY?gpinv=AMIXal81oAbeaPvAf0JvDEH51XAWq0UiOhQR6_K4h7fjD8kfXgvSfRH0izToF5g9XL8q_giLsB6s0IFOb73yiDfzR6DIerYv_8Y7-iutSpeW0yPfjxvkrhQ&cfem=1",
"Category": "Art, Crafts",
"FirstName": "Liza",
"LastName": "Wallach",
"ORG": "HoneyBee3d",
"Twitter": "",
"Email": "[email protected]",
"Address": "6127 LA SALLE AVE",
"City": "OAKLAND",
"State": "California",
"Zip": 94611
},
{
"ProjectName": "Bird of Virtue",
"ProjectDescription": "Handmade + handpainted layered laser cut wooden jewelry + accessories for men + women.",
"WebURL": "www.birdofvirtue.com",
"URL": "",
"Category": "Art, Crafts",
"FirstName": "Linnea",
"LastName": "Oliver",
"ORG": "Bird of Virtue",
"Twitter": "",
"Email": "[email protected]",
"Address": "1704 Noe Street",
"City": "San Francisco",
"State": "CA",
"Zip": 94131
},
{
"ProjectName": "Temescal InSitu",
"ProjectDescription": "Temescal InSitu is a community art project that combine poetry and visual art. 13 installations pieces are scattered through the Temescal neighborhood. Folks can pick up a map at the Temescal library or print one from our web sight and walk through the neighborhood seeing art and reading poetry. We have turned our neighborhood into an art gallery! Come to our booth to learn more about the project and make a piece of your own.",
"WebURL": "Temescalinsitu.org",
"URL": "",
"Category": "Art",
"FirstName": "Sara",
"LastName": "Biel",
"ORG": "Temescal Insitu",
"Twitter": "",
"Email": "[email protected]",
"Address": "5245 Shafter Ave",
"City": "Oakland",
"State": "Ca",
"Zip": 94618
},
{
"ProjectName": "FIRST Tech Challenge Robotics",
"ProjectDescription": "Three FIRST Tech Challenge (FTC) robotics teams will demonstrate their robots on a competition playing field. FTC is a world-wide competitive high school robotics league. Attendees of all ages will be allowed to drive one of their robots.",
"WebURL": "1203 Springwood Way",
"URL": "https://plus.google.com/photos/102546554536195421675/albums/5665199303050777729?banner=pwa&gpsrc=pwrd1#photos/102546554536195421675/albums/5665199303050777729/5665200311872014690?pid=5665200311872014690&oid=102546554536195421675",
"Category": "Engineering",
"FirstName": "Ken",
"LastName": "Filar",
"ORG": "Terra Nova Robotics",
"Twitter": "@TheOneRobot",
"Email": "[email protected]",
"Address": "1203 Springwood Way",
"City": "Pacifica",
"State": "California",
"Zip": 94044
},
{
"ProjectName": "Barbara Nichols Reynolds Photography",
"ProjectDescription": "Beautiful, Relaxing Nature Photography: Handmade Cards, Professionally Printed Calendars, Matted & Framed Enlargements.",
"WebURL": "sites.google.com/site/barbaranicholsreynolds/",
"URL": "",
"Category": "Art",
"FirstName": "Barbara",
"LastName": "Reynolds",
"ORG": "Barbara Nichols Reynolds Photography",
"Twitter": "",
"Email": "[email protected]",
"Address": "450 Mulqueeney St.",
"City": "Livermore",
"State": "California",
"Zip": 94550
},
{
"ProjectName": "HSMM-Pi: Mesh Networking with Raspberry Pi",
"ProjectDescription": "The Raspberry Pi is a cost-effective, highly-accessible platform that can be used to create wireless mesh networks. The HSMM-Pi project makes it easy to turn a Pi into a mesh network node capable of routing traffic and serving as an Internet gateway to other nodes. Mesh networks have been used extensively in scientific, military, and emergency response settings because of their fault-tolerance, easy setup, and relatively low infrastructure requirements. Come see how to build and configure a wireless mesh network built with the Raspberry Pi.",
"WebURL": "https://github.com/urlgrey/hsmm-pi",
"URL": "",
"Category": "Engineering, Science",
"FirstName": "Scott",
"LastName": "Kidder",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "866 Oxford Way",
"City": "Benicia",
"State": "CA",
"Zip": 94510
},
{
"ProjectName": "Hologlyphics",
"ProjectDescription": "3D animations, viewed without glasses, in free space. Volumetric display projecting spatial cartoons, abstract visuals and autostereoscopic movies, interacting with sound.",
"WebURL": "www.hologlyphics.com",
"URL": "http://farm6.static.flickr.com/5148/5613532495_e41130772b.jpg",
"Category": "Art",
"FirstName": "Walter",
"LastName": "Funk",
"ORG": "Hologlyphics",
"Twitter": "Hologlyphics",
"Email": "[email protected]",
"Address": "262 Athol Ave. #4",
"City": "Oakland",
"State": "Ca.",
"Zip": 94606
},
{
"ProjectName": "Bicycle Coffee",
"ProjectDescription": "Bicycle Coffee Co. is a family business based in Oakland. We roast quality coffee grown by sustainable farms and deliver it by bicycle. We design and fabricate much of our own gear including Delivery Trailers, Mobile Coffee Carts, Ceramic Drip Cones, and more.",
"WebURL": "www.BicycleCoffeeCo.com",
"URL": "http://www.flickr.com/photos/taromatsumura/8273520813/sizes/k/in/photolist-dB6Xuz-dBcqN1-dBcqts-dBcsdm-echYa5-ac8q53-eCqZGS-aezK4u-eCWGBe-eCWJBk-dBcu3d-dBcuoU-93Rxbi-azFgbG-azCBe4-azCATH-8qsnge-azCAY4-azCAMT-azCAGB-azFgDj-btNcFC-dX5K6t-8Dhdvz-7M3e37-7NuLjk-9V1VBz-dn76BE-eD3P7q-eCWJ2c-eCWK3K-eCWHyp-82TKc8-9nDwbx-9V1TBT-9V1Voc-9zWKPe-eeoowf-bnoncY-9zWKXB-fgMHv5-8BRwj3-9V1Ux4-9V1Sg4-9V4KNq-9V4Hry-9V1V1r-9V4K3d-9V4GEW-9V1Tkk-9V1S5p/",
"Category": "Bicycles / Food",
"FirstName": "Matthew",
"LastName": "Mckee",
"ORG": "Bicycle Coffee Co.",
"Twitter": "instagram: bicyclecoffee",
"Email": "[email protected]",
"Address": "364 2nd st",
"City": "Oakland",
"State": "CA",
"Zip": 94607
},
{
"ProjectName": "Paper Bead Making",
"ProjectDescription": "Make paper beads with colorful calendar and magazine pages. Then construct a necklace with the beads you've made.",
"WebURL": "Www.caroltanenbaumdesigns.com",
"URL": "http://caroltanenbaumdesigns.com/wp-content/gallery/paper-bead-necklace-collection/tanenbaum_7982.jpg",
"Category": "Crafts",
"FirstName": "Carol",
"LastName": "Tanenbaum",
"ORG": "Carol Tanenbaum Designs",
"Twitter": "CarolTrueBlue",
"Email": "[email protected]",
"Address": "83 Templar Place",
"City": "Oakland",
"State": "California",
"Zip": 94618
},
{
"ProjectName": "UNAVERZ",
"ProjectDescription": "tbd",
"WebURL": "http://unaverz.com/",
"URL": "hmmm. more to come in 15 days",
"Category": "art/sound car",
"FirstName": "Ulan",
"LastName": "McKnight",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "4452 Montgomery Street",
"City": "Albany",
"State": "California",
"Zip": 94611
},
{
"ProjectName": "Arxterra Telerobotic Communities",
"ProjectDescription": "Arxterra is about building telerobotic communities to bring people together and create a forum for ingenuity and artistic expression. The first step to creating a robotic community is to design open source, low cost robots and a cloud based eco-system in which they can live.\n Our current design is our own RObot SCOut or Rosco which is based on the Android/Arduino platforms. This rover can be 3d printed and built for under $200 sans smart phone. A quick download of our Arxrobot app and you will be connected to our servers bringing you together with robots from all over the world to build, create, and explore.",
"WebURL": "www.arxterra.com",
"URL": "http://www.arxterra.com/wp-content/uploads/2013/04/NatashaConsole.jpg",
"Category": "Engineering, Science, Young Makers",
"FirstName": "Sean",
"LastName": "Copp",
"ORG": "Arxterra",
"Twitter": "arxterraparks",
"Email": "[email protected]",
"Address": "16821 algonquin st. #104",
"City": "huntington beach",
"State": "California",
"Zip": 92649
},
{
"ProjectName": "Bike Sim",
"ProjectDescription": "Design, build, and test a building, public park, or even city block. Construct architectural models and place them onto the bike simulator, which allows you to take a \"virtualride\" through the model city. \nThe bike simulator is a large rotating drum that is powered by a bicycle. A miniature world is constructed on the drum and a mini video camera projects the world onto a large screen as the drum rotates, providing riders a simulated bike ride through the world that they helped build.",
"WebURL": "http://www.lawrencehallofscience.org/do_science_now/weinvent",
"URL": "http://www.flickr.com/photos/lhsingenuitylab/9555972781/",
"Category": "Engineering",
"FirstName": "Monika",
"LastName": "Mayer",
"ORG": "Lawrence Hall of Science",
"Twitter": "https://twitter.com/berkeleyscience",
"Email": "[email protected]",
"Address": "1 Centennial Drive",
"City": "Berkeley",
"State": "CA",
"Zip": 94720
},
{
"ProjectName": "Glovetopus",
"ProjectDescription": "Come make a Glovetopus, a stuffed octopus made from a pair of gloves. We'll show you how to make your own cuddly friend from a pair of gloves and a bit of fluff. The activity is free and we provide all the materials. Children under the age of 12 should be accompanied by an adult.",
"WebURL": "glovetopus.com",
"URL": "",
"Category": "Crafts",
"FirstName": "Peter",
"LastName": "Gardner",
"ORG": "Glovetopus",
"Twitter": "glovetopus",
"Email": "[email protected]",
"Address": "",
"City": "Berkeley",
"State": "CA",
"Zip": 94702
},
{
"ProjectName": "Free Radio Berkeley",
"ProjectDescription": "Founded in 1993, Free Radio Berkeley has been instrumental in helping to to create an ever growing micropower broadcasting movement to liberate the airwaves and break the corporate broadcast media's stranglehold on the free flow of news, information, ideas, cultural and artistic creativity. From the beginning, Free Radio Berkeley applied the DIY/Maker ethos to the creation of low power, low cost community broadcast stations by offering FM & TV broadcast transmitter kits and related equipment, technical support and training classes/workshops. Currently, Free Radio Berkeley provides a wide range of broadcast equipment in both kit and assembled form along with classes and workshops programs.",
"WebURL": "www.freeradio.org",
"URL": "http://i1185.photobucket.com/albums/z358/xmtrman/Lima%20Peru%20Free%20Radio%20Workshops/P1010089_zpsdf8223d2.jpg",
"Category": "Engineering",
"FirstName": "Stephen",
"LastName": "Dunifer",
"ORG": "Free Radio Berkeley",
"Twitter": "",
"Email": "[email protected]",
"Address": "1442A Walnut St. #406",
"City": "Berkeley",
"State": "CA",
"Zip": 94709
},
{
"ProjectName": "House of Honoré",
"ProjectDescription": "Unique and whimsical items for the whole family - from silly monster and animal hats in kids and adult sizes, to toys and accessories. Designed by Isolde Honoré and handmade with love.",
"WebURL": "www.houseofhonore.com",
"URL": "https://www.facebook.com/photo.php?fbid=10152868454975191&set=pb.387575020190.-2207520000.1377053576.&type=3&theater",
"Category": "Crafts",
"FirstName": "Isolde",
"LastName": "Honore",
"ORG": "House of Honoré",
"Twitter": "MeebleBlob",
"Email": "[email protected]",
"Address": "3109 King Street Apt C",
"City": "Berkeley",
"State": "California",
"Zip": 94703
},
{
"ProjectName": "Bronze Pour Demonstration",
"ProjectDescription": "Demonstration molten bronze pour with Hopi Breton and Dan Romo. The performance is intended as an educational opportunity to learn about the process of making cast bronze sculpture from beginning to end. It will feature mold making from the initial step, to melting bronze in furnace on site, to pouring the molten bronze into mold, and finally to open the mold and clean up the castings. We will also have several pieces that show the lost wax casting process step by step.",
"WebURL": "www.studioromo.com",
"URL": "",
"Category": "Art",
"FirstName": "Hopi",
"LastName": "Breton",
"ORG": "PDS parents",
"Twitter": "",
"Email": "[email protected]",
"Address": "2821 Van Buren st",
"City": "Alameda",
"State": "CA",
"Zip": 94501
},
{
"ProjectName": "PAPER PUNK",
"ProjectDescription": "Paper Punk is the love child of Mr. Lego and Ms. Origami. Use your hands to transform 2D sheets of brightly patterned paper into 3D masterpieces with a few simple folds. Come get your creativity on!",
"WebURL": "https://paperpunk.com",
"URL": "https://dl.dropboxusercontent.com/u/10332379/PP_Bot_close_2_CMYK.jpg",
"Category": "Crafts",
"FirstName": "Grace",
"LastName": "Hawthorne",
"ORG": "Paper Punk",
"Twitter": "paperpunk",
"Email": "[email protected]",
"Address": "21 Corte Madera Ave., Studio 1",
"City": "Mill Valley",
"State": "CA",
"Zip": 94941
},
{
"ProjectName": "2x4' Jenga and Kapla Blocks",
"ProjectDescription": "Have you ever played Jenga or Kapla blocks? Wood plank toys are a child's form of modular sculpture creations. Here is your chance to play and to create wild modular sculptures at once. We will alternate throughout playing 2x4' Jenga and simply stacking and building modular sculptural forms. Challenge yourself and build a shelter that you can enter, or suspend a mass of blocks on only 3 points, or create a tall patterned tower. Its up to you.",
"WebURL": "",
"URL": "",
"Category": "Art, Young Makers",
"FirstName": "Hopi",
"LastName": "Breton",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "2821 Van Buren st",
"City": "alameda",
"State": "ca",
"Zip": 94501
},
{
"ProjectName": "PIXEL",
"ProjectDescription": "PIXEL is an open-source, interactive framed LED wall display that allows you to send animations and images from an Android device or Windows PC. Kickstarted in March 2013, PIXEL consists of a framed two-way acrylic mirror that houses a programmable, 32-by-32 LED matrix array (quick math: that’s 1,024 RGB LED lights), providing ample room to serve as your digital canvas for creating pixel art. Think of pixel art as Pointillism painting (using painted dots of individual colors to create an image) with tons of LEDs. Pixel art was an interesting phase for games and other mediums because it’s ‘8-bit’ style required a bit of imagination on the part of the user to “fill in the blanks”. Until the 90s, this was par for the course for computer and video games alike, but as graphics improved, pixel art was pushed out of the mainstream. The 8-bit pixel artform is experiencing an exciting resurgence, PIXEL brings this art form to the LED medium.",
"WebURL": "http://ledpixelart.com",
"URL": "http://ledpixelart.com/portfolio-item/misc-pixel-art/",
"Category": "Art",
"FirstName": "Al",
"LastName": "Linke",
"ORG": "Open Gadgets",
"Twitter": "ledpixelart",
"Email": "[email protected]",
"Address": "1285 Main Street",
"City": "Santa Clara",
"State": "CA",
"Zip": 95050
},
{
"ProjectName": "Lee's Haven Jewelry",
"ProjectDescription": "Lee's Haven is handmade Abalone and Shell jewelry. Lee also makes sculptural abalone hangings. Lee is a Mendocino artist, and much of the abalone is collected and cut on the Mendocino and Trinidad coast.",
"WebURL": "",
"URL": "",
"Category": "Crafts",
"FirstName": "Hopi",
"LastName": "Breton",
"ORG": "Lee's Haven",
"Twitter": "",
"Email": "[email protected]",
"Address": "2821 Van Buren st",
"City": "Alameda",
"State": "CA",
"Zip": 94501
},
{
"ProjectName": "Cyclecide",
"ProjectDescription": "Altered bikes and bike rides.",
"WebURL": "cyclecide.com",
"URL": "cyclecide.com",
"Category": "Engineering, Art, Science, Young Makers",
"FirstName": "Cyclecide",
"LastName": "Jarico Reesce",
"ORG": "Cyclecide",
"Twitter": "N?A",
"Email": "Jarico.cyclecide@gmail",
"Address": "1660 Jerrold st. SF, CA 94124 .,",
"City": "Sanfrancisco Ca",
"State": "California",
"Zip": 94124
},
{
"ProjectName": "Obtainium Works",
"ProjectDescription": "Obtainium Works, known for their steampunk inspired vehicles such as the Neverwas Haul, LB&O Trolley, and the Mad Hatter Teapot will be exhibiting Islas, the Mechanical Horse. Named for Mare Island off the city of Vallejo, home of Obtainium Works, Islas is a life-size hobby horse designed and built by Shannon O'Hare and his crew.",
"WebURL": "obtainiumworks.net",
"URL": "http://www.obtainiumworks.net/events",
"Category": "Engineering, Art",
"FirstName": "Shannon",
"LastName": "O'Hare",
"ORG": "Obtainium Works",
"Twitter": "",
"Email": "[email protected]",
"Address": "510 Pennsylvania Street",
"City": "Vallejo",
"State": "CA",
"Zip": 94590
},
{
"ProjectName": "Tea House Glass",
"ProjectDescription": "Lamp work glass beads and jewelry.",
"WebURL": "teahouseglass.com",
"URL": "teahouseglass.com",
"Category": "Art, Crafts",
"FirstName": "Annie",
"LastName": "Kuhn",
"ORG": "Teahouseglass",
"Twitter": "",
"Email": "[email protected]",
"Address": "6400 Pinehaven Rd",
"City": "Oakland",
"State": "California",
"Zip": 94611
},
{
"ProjectName": "Big Solar Oven - Auto Tracking",
"ProjectDescription": "This is an appliance-grade, appliance-size, solar oven that can remain outside all year. It reaches over 400 degrees without food in it, and can maintain 325-350 degrees with food. It tracks the sun's azimuth all day. Tracking is powered by a small photovoltaic panel with special gearing.",
"WebURL": "",
"URL": "http://www.flickr.com/photos/fall_equinox/",
"Category": "Homesteading / Sustainability",
"FirstName": "David",
"LastName": "Skillman",
"ORG": "",
"Twitter": "",
"Email": "[email protected]",
"Address": "4179 Manila Ave.",
"City": "Oakland",
"State": "CA",
"Zip": 94609
},
{
"ProjectName": "The Tea Engine",
"ProjectDescription": "The Tea Engine is a robotically-controlled tea service which allows the user to select how she wishes her tea to be served by selecting the appropriate numeral from the dial. The Tea Engine was built from an antique silver-plated coffee percolator from the mid-1920s. Although the percolator requires 110V AC to heat the water and brew the tea, the tea, milk, and sugar valves only require 12V from a small battery hidden under the base of the sugar bowl. Any type of tea may be brewed; however, the Tea Engine can only serve one type of tea at a time (our preference is for Earl Grey). The serving of tea is controlled by an antique rotary telephone dial (originally a telephone lineman’s testing unit). Rotary telephones work by sending a number of electrical pulses corresponding to the number that one dials. An Arduino microcontroller, a popular open-source microcontroller platform designed for prototyping and tinkering, is concealed inside the telephone dial. The Arduino chip reads the number of pulses dialed, and sends a signal to serve tea, milk, or sugar. The tea, milk, and sugar unit each have an electrically-controlled solenoid valve which is restricting the liquid from pouring out. When the valve receives a signal from the Arduino, it opens for a set number of seconds to dispense the proper amount of tea, milk, or sugar.",
"WebURL": "",
"URL": "http://www.tested.com/tech/robots/454225-meet-mechanical-mixologists-barbot-2013/item/barbot12/",
"Category": "Engineering",
"FirstName": "Katherine",
"LastName": "Becvar",
"ORG": "",
"Twitter": "bluem00ndesigns",
"Email": "[email protected]",
"Address": "654 60th Street",
"City": "Oakland",
"State": "CA",
"Zip": 94609
},
{
"ProjectName": "Rad Dads and Hip Mamas",
"ProjectDescription": "You know that being a Rad Dad or Hip Mama is about putting your politics into practice in the most important of areas: your family. However, knowing and doing are two different things. Join Tomas Moniz, founder, editor, and a writer for the award winning zine Rad Dad and Airial Clark aka The Sex-Positive Parent, to learn age-appropriate communication strategies around issues of sexuality, share stories of confronting racism or classism, and collaborate on how we can support families in our various communities creating the world we want that includes all of us. Based on our own personal and professional experiences as parents, we will share dynamic readings, facilitate conversation and end with an interactive Q&A so bring your questions to ask the panelists! It promises to be a workshop of laughs and thought-provoking discussions about the pains, pleasures and politics of parenting.",
"WebURL": "http://raddadzine.blogspot.com/",
"URL": "http://www.buyolympia.com/q/Item=rad-dad-book",
"Category": "parenting",
"FirstName": "Tomas",
"LastName": "Moniz",
"ORG": "",
"Twitter": "raddadzine",
"Email": "[email protected]",
"Address": "1636 fairview st",
"City": "berkeley",
"State": "ca",
"Zip": 94703
},
{
"ProjectName": "DIY Whole Grain Chips & Crackers",
"ProjectDescription": "DIY chips and crackers: Turn junk food into a healthy snack or appetizer",
"WebURL": "www.wholegrainalice.com",
"URL": "http://www.flickr.com/photos/30358896@N00/9569132143/in/set-72157635189687370",
"Category": "Homesteading / Sustainability",
"FirstName": "Alice",
"LastName": "Friedemann",
"ORG": "Wholegrainalice",
"Twitter": "",
"Email": "[email protected]",
"Address": "6198 Contra Costa Road",
"City": "Oakland",
"State": "CA",
"Zip": 94618
},
{
"ProjectName": "Grow Your Own Spirulina!",
"ProjectDescription": "In just one sunny window, you can grow enough Spirulina to supplement your diet every day! Spirulina microalgae is rich in protein and antioxidants; set up is quick and easy, and harvesting takes only a few minutes a day. It's more productive, less work, and smaller than a veggie patch, and you can wow your friends with your bubbling green stuff... Dr. Baum, NASA algae scientist and author of \"Grow Your Own Spirulina Superfood: A Simple How-To Guide\", will be making hands-on demonstrations of growth and harvest techniques.",
"WebURL": "www.algaelab.org",
"URL": "http://www.flickr.com/photos/100719404@N08/9572137616/",
"Category": "Homesteading / Sustainability, Science",
"FirstName": "Aaron",
"LastName": "Baum",
"ORG": "AlgaeLab.org",
"Twitter": "algaelab",
"Email": "[email protected]",
"Address": "",
"City": "Martinez",
"State": "CA",
"Zip": 94553
},
{
"ProjectName": "Five Ton Crane",
"ProjectDescription": "Five Ton Crane (5TC) is a diverse group of artists, geeks and inventors from the San Francisco Bay Area. The name implies the intention: 5TC does the heavy lifting that the individual artist couldn’t do on their own; by pooling resources, interests and talent to create opportunities for bigger, better and bolder Art.",
"WebURL": "http://fivetoncrane.org",
"URL": "http://fivetoncrane.org/wp-content/uploads/2013/08/5tc_crane_logo_300.jpg",
"Category": "Engineering, Art",
"FirstName": "Jeremy",
"LastName": "Crandell",
"ORG": "Five Ton Crane",
"Twitter": "",
"Email": "[email protected]",
"Address": "3247 Helen St",
"City": "Oakland",
"State": "CA",
"Zip": 94608
},
{
"ProjectName": "Pioneers in Engineering",
"ProjectDescription": "",
"WebURL": "https://pioneers.berkeley.edu/home/",
"URL": "https://tbp.berkeley.edu/gallery/v/fa2011/10-29+PiE+Discovery+Days/pie_discoverydays_51.jpg.html",
"Category": "Engineering",
"FirstName": "Douglas",
"LastName": "Hutchings",
"ORG": "Pioneers in Engineering",
"Twitter": "PiERobotics",
"Email": "[email protected]",
"Address": "1655 Euclid Ave, Unit #3",
"City": "Berkley",
"State": "CA",
"Zip": 94709
},
{
"ProjectName": "Alameda County Beekeepers Association",
"ProjectDescription": "Alameda County Beekeepers Association is a group of beekeepers who meet monthly at the Rotary Nature Center, 600 Bellevue Ave, Oakland, CA for discussions and lectures on how to be good beekeepers. As beekeepers we harvest honey our bees produce. Sometimes we have surplus honey for sale that helps us offset the expense of keeping bees. Please come visit our booth at the maker fair if you are interested in joining the club, learning about honey bees and bee products or if you want to see the queen.",
"WebURL": "http://site.alamedabees.org/",
"URL": "",
"Category": "Homesteading / Sustainability",
"FirstName": "Alice",
"LastName": "Rosenthal",
"ORG": "Bee Happy Solutions / Alameda County Beekeepers Association",
"Twitter": "",
"Email": "[email protected]",
"Address": "1837 Prince Street",
"City": "Berkeley",
"State": "CA",
"Zip": 94703
},
{
"ProjectName": "Hacker Scouts",
"ProjectDescription": "Hacker Scouts provides STEAM education (science, technology, engineering, art, and math) for children 5-14. Hacker Scout Guilds and Open Labs focus on hands-on activities with a high level of mentoring. Through our core values we encourage skill-building, community and family engagement, and the development of a strong moral character and leadership.",
"WebURL": "www.hacker-scouts.org",
"URL": "http://www.stlhackerscouts.org/wp-content/uploads/2013/03/Hacker-Scouts_logo_200.png",
"Category": "Young Makers",
"FirstName": "Shoshana",
"LastName": "Abrass",
"ORG": "Hacker Scouts",
"Twitter": "",
"Email": "[email protected]",
"Address": "3185 Bridle Dr.",
"City": "Hayward",
"State": "California",
"Zip": 94541
},
{
"ProjectName": "Ace Monster Toys",
"ProjectDescription": "Ace Monster Toys: The East Bay's foremost hackerspace. AMT is a non-profit workshop in Oakland which provides infrastructure and instruction for all sorts of maker projects. We have a woodshop, laser cutter, 3d printers, wood and metal cutting CNCs, sewing machines, electronics equipment, and a whole lot more. We are open to everyone, hold regular classes and events, and you should come and visit!",
"WebURL": "www.acemonstertoys.org",
"URL": "http://farm8.staticflickr.com/7348/9147261131_e89a2dcc04_k.jpg",
"Category": "Engineering, Art, Crafts, Science, Young Makers, hackerspace",
"FirstName": "Costa",
"LastName": "Mouratidis",
"ORG": "Ace Monster Toys",
"Twitter": "AMT",
"Email": "[email protected]",
"Address": "6050 lowell st",
"City": "Oakland",
"State": "CA",
"Zip": 94608
},
{
"ProjectName": "Trackers Earth: Berkeley",
"ProjectDescription": "At Trackers we offer courses in outdoor lore and traditional skills. We are champions of land and village; we are navigators of an epic world that needs to exist. In our community we Remember the celebration of hearth, family and a timeless human story. Our labor, profits, joys and hopes are directed to generating resources that help create a village of healthy and happy people connected to the land, family and community.",
"WebURL": "www.trackersbay.com",
"URL": "https://www.facebook.com/photo.php?fbid=304312923014229&set=pb.139145382864318.-2207520000.1377283460.&type=3&theater",
"Category": "Homesteading / Sustainability, Outdoor and wilderness skills",
"FirstName": "Jess",
"LastName": "Liotta",
"ORG": "Trackers Earth",
"Twitter": "trackersearth",
"Email": "[email protected]",
"Address": "3049 Adeline St.",
"City": "Berkeley",
"State": "California",
"Zip": 94703
},
{
"ProjectName": "East Bay Brass Band",
"ProjectDescription": "East Bay Brass Band is a NOLA-style brass band that plays instrumental mash-ups of your favorite hits!",
"WebURL": "https://www.facebook.com/eastbaybrassband",
"URL": "https://www.facebook.com/photo.php?fbid=493365820745969&set=pb.173738679375353.-2207520000.1377287157.&type=3&theater",
"Category": "Brass Band Mash-Ups",
"FirstName": "Kevin",
"LastName": "Brunetti",
"ORG": "East Bay Brass Band",
"Twitter": "",
"Email": "[email protected]",
"Address": "",
"City": "Alameda",
"State": "ca",
"Zip": 94501
},
{
"ProjectName": "This vs That",
"ProjectDescription": "This vs That is the first independently made 6-hour series that uses science to investigate the world within arm's reach. For example, on This vs That, you'll discover: The fastest way to board 100 passengers onto an airplane. The fastest way to navigate through rushhour traffic. The safest roof to have on your house in a hurricane. Which flotation is more likely to save your life if you survive a plane crash, the life vest or the seat cushion? The best way to get red wine stains out of carpet. And LOTS more.",
"WebURL": "http://thisvsthatshow.com",
"URL": "http://thisvsthatshow.com",
"Category": "Science",
"FirstName": "Jon",