forked from cornelligem/WikiWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotebook.html
More file actions
937 lines (844 loc) · 54.5 KB
/
notebook.html
File metadata and controls
937 lines (844 loc) · 54.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
<!DOCTYPE html>
<html class="no-js">
<style> /********************************* WIKI RESET ********************************/
#sideMenu, #top_title {
display:none;
}
#content {
padding:0px;
width:100% !important;
margin-top:-26px;
margin-left:0px ;
font-family:"Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; !important;
}
body {
background-color: black;
font-family:"Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; !important;
}
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 {
font-family:"Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; !important;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Notebook</title>
<meta name="description" content="notebook">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Stylesheets-->
<link rel="stylesheet" href="http://2017.igem.org/Team:Cornell/bootstrapCSS?action=raw&ctype=text/css">
<link rel="stylesheet" href="http://2017.igem.org/Team:Cornell/styles?action=raw&ctype=text/css"> <!--For nav bar text-->
<link rel="stylesheet" href="http://2017.igem.org/Team:Cornell/mainCSS?action=raw&ctype=text/css">
<!-- JavaScript Files-->
<script src="http://2017.igem.org/Team:Cornell/jquerymin?action=raw&ctype=text/javascript" type="text/javascript" type="text/javascript"></script>
<script src="http://2017.igem.org/Team:Cornell/mainJS?action=raw&ctype=text/javascript" type="text/javascript"></script>
</head>
<!------------------------NAV BAR------------------------>
<body class="ex-layout">
<div class="main-nav-wrapper nav-wrapper-1-creative">
<nav>
<div class="main-nav main-nav-1 creative-page nav-content-toggle">
<div class="container">
<div class="nav-logo">
<a href="home"><img src="http://2017.igem.org/wiki/images/1/1d/CornellOxyponicsLogo.png" alt="Oxyponics"></a>
</div>
<ul class="nav-main-menu nav-content-item">
<li><a href="http://2017.igem.org/Team:Cornell/home">HOME</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Description">ABOUT</a></li>
<li class="mega-menu menu-5-col"><a href="#">TOOLKIT</a>
<ul class="mega-menu-content">
<li class="menu-title"><a href="#">WET LAB</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Proof">HYDROSENSE</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Parts">PARTS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Protocol">PROTOCOLS</a></li>
</ul>
</li>
<li class="menu-title"><a href="#">PRODUCT DEVELOPMENT</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/productdevoverview">OVERVIEW</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Hardware">OXYPONICS SYSTEM</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Software">DASHBOARD</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Design">DESIGN PROCESS</a></li>
</ul>
</li>
<li class="menu-title"><a href="#">MATHEMATICAL MODELING</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Model">MODELING</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Animation">ANIMATION</a></li>
</ul>
</li>
<li class="menu-title"><a href="#">DOCUMENTATION</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Notebook">NOTEBOOK</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Safety">SAFETY</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">HUMAN CENTERED DESIGN</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/HP/Gold_Integrated">PRACTICES</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Policies">POLICIES</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Entrepreneurship">ENTREPRENEURSHIP</a></li>
</ul>
</li>
<li><a href="#">OUTREACH</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Connections">CONNECTIONS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Engagement">PUBLIC ENGAGEMENT</a></li>
</ul>
</li>
<li><a href="#">TEAM</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Team">BIOS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Sponsors">SPONSORS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Attributions">ATTRIBUTIONS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/officialprofile">OFFICIAL PROFILE</a></li>
</ul>
</li>
</ul>
<ul class="nav-main-menu small-screen">
<li><a href="http://2017.igem.org/Team:Cornell/home">HOME</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Description">ABOUT</a>
</li>
<li><a href="#">TOOLKIT</a>
<ul>
<li><a href="#">WET LAB</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Proof">HYDROSENSE</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Parts">PARTS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Protocol">PROTOCOLS</a></li>
</ul>
</li>
<li><a href="#">PRODUCT DEVELOPMENT</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/productdevoverview">OVERVIEW</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Hardware">OXYPONICS SYSTEM</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Software">DASHBOARD</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Design">DESIGN PROCESS</a></li>
</ul>
</li>
<li><a href="#">MATHEMATICAL MODELING</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Model">MODELING</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Animation">ANIMATION</a></li>
</ul>
</li>
<li><a href="#">DOCUMENTATION</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Notebook">NOTEBOOK</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Safety">SAFETY</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">HUMAN CENTERED DESIGN</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/HP/Gold_Integrated">PRACTICES</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Policies">POLICIES</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Entrepreneurship">ENTREPRENEURSHIP</a></li>
</ul>
</li>
<li><a href="#">OUTREACH</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Connections">CONNECTIONS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Engagement">PUBLIC ENGAGEMENT</a></li>
</ul>
</li>
<li><a href="http://2017.igem.org/Team:Cornell/Team">TEAM</a>
<ul>
<li><a href="http://2017.igem.org/Team:Cornell/Team">BIOS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Sponsors">SPONSORS</a></li>
<li><a href="http://2017.igem.org/Team:Cornell/Attributions">ATTRIBUTIONS</a></li>
<li><a href="">OFFICIAL PROFILE</a></li>
</ul>
</li>
</ul>
<div class="nav-hamburger-wrapper">
<div class="cell-vertical-wrapper">
<div class="cell-middle">
<div class="nav-hamburger"><span></span></div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<main>
<!------------------------END NAV BAR------------------------>
<!------------------------CONTENT------------------------>
<div class="container-fluid solid-banner-wrapper">
<svg width=100% height="300">
<rect width=100% height="300" style="fill:rgb(86,113,81);fill-opacity:0.3;" />
<text text-anchor="middle" alignment-baseline="middle" text-anchor="middle" x=50% y=50% style="font-family:Crimson Text" font-size="65">Notebook</text>
</svg>
</div>
<section class="content-wrapper notebook container-fluid">
<!-----********/////*****------ ENTERING MARCH -------*******/////*******--->
<div class="row top">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">FEBRUARY 27TH TO MARCH 5TH </div>
<div class="notebookp">
<b>Wet Lab:</b> Wet Lab members began training, starting with sterile technique, growing cultures, miniprep, and PCR.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development members began familiarizing themselves with Fusion 360.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned the basics of HTML/CSS during an hour-long HTML class, and worked on an HTML/CSS Project due Thursday, 3/16.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MARCH 6TH TO MARCH 12TH </div>
<div class="notebookp">
<b>Wet Lab:</b> Wet Lab members split up into training groups and performed PCR reactions of gblocks used for last year’s bacteriocin project. Team members also performed miniprep to extract the H plasmid on cells.
</div>
<div class="notebookp">
<b>Product Development:</b>Team members began working on an exercise to create a CAD design of their phones.
</div>
<div class="notebookp">
<b>P & P:</b>P&P discussed the function of P&P as a subteam, goals for the upcoming year and started brainstorming ideas for outreach.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned about Typography, White Space, and Color during an hour-long Design class. They worked on an exercise in Adobe Illustrator.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MARCH 13TH TO MARCH 19TH </div>
<div class="notebookp">
<b>Wet Lab:</b> Wet lab members learned about restriction digests, ligation, agarose gel electrophoresis and cleanup, as well as OE PCR, Gibson, and 3A assembly.
</div>
<div class="notebookp">
<b>Product Development:</b> Team members learned how to create 3D objects in Fusion 360.
</div>
<div class="notebookp">
<b>P&P:</b> P&P researched successful P&P applications of past projects from other teams and discussed the pros and cons of those projects.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned about JavaScript and jQuery during an hour-long HTML class. They successfully submitted their HTML/CSS Project due Thursday, 3/16. They started working on their JavaScript and jQuery project.
</div>
<div class="notebookp">
<b>Business:</b> Team members reviewed their requirements and spoke about expectations for the upcoming year.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MARCH 20TH TO MARCH 26TH </div>
<div class="notebookp">
<b>Wet Lab:</b> Wet lab members practiced restriction digest, agarose gel electrophoresis, and ligation of bacteriocin genes into a vector.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development decided to work in a Hardware Accelerator program at Rev: Ithaca Startup Works.
</div>
<div class="notebookp">
<b>P&P:</b> P&P started planning for Splash! at Cornell, our first outreach event.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned about Composition during an hour-long Design class. They successfully submitted their JavaScript and jQuery project Milestone 1.
</div>
<div class="notebookp">
<b>Business:</b> Team members wrote their sponsorship letters and started preparing the sponsorship packet.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MARCH 27TH TO APRIL 2ND</div>
<div class="notebookp">
<b>Wet Lab:</b> Wet lab members learned about restriction digests, ligation, agarose gel electrophoresis and cleanup, as well as OE PCR, Gibson, and 3A assembly.
</div>
<div class="notebookp">
<b>Product Development:</b> Team members learned how to create 3D objects in Fusion 360.
</div>
<div class="notebookp">
<b>P&P:</b> P&P continued to work on the presentation for Splash!.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam successfully submitted their JavaScript and jQuery project Milestone 2.
</div>
<div class="notebookp">
<b>Business:</b> Team members explored different ways to raise funds for the upcoming year.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<!-----********/////*****------ ENTERING APRIL -------*******/////*******--->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">APRIL 10TH TO APRIL 16TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Wet lab members learned about DNA sequencing and plasmid transformation into competent cells.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development began to learn how to use Arduino by making an LED flash at certain time intervals.
</div>
<div class="notebookp">
<b>P&P:</b> P&P finalized the presentation and planned our hands-on experiments for Splash!. We began preparing for our next outreach events: Raw Expo, MakerFaire, and a Lab Demo/Tabling for potential Cornell students in the Women in Engineering program (WiE). We also began brainstorming redox sensor applications, including air pollution, water quality, soil chemistry, and medicine.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned about Interaction & Motion during an hour-long Design class. They began working on their Bootstrap and GitHub project due 4/28.
</div>
<div class="notebookp">
<b>Business:</b> Team members edited each other’s sponsorship letters and edited the content for the sponsorship packet.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">APRIL 17TH TO APRIL 23RD</div>
<div class="notebookp">
<b>Wet Lab:</b> Wet lab members trained in transforming their ligated plasmids into competent cells.
</div>
<div class="notebookp">
<b>Product Development:</b> Team members continued to learn how to use Arduino with some example exercises.
</div>
<div class="notebookp">
<b>P&P:</b> P&P did the lab demo and tabling for the WiE program. We finished all the preparation for Splash!.
</div>
<div class="notebookp">
<b>Business:</b> Team members wrote their sponsorship letters and started preparing the sponsorship packet.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">APRIL 24TH TO APRIL 30TH</div>
<div class="notebookp">
<b>Wet Lab:</b> The team members researched oxidative stress and possible applications to pursue.
</div>
<div class="notebookp">
<b>P&P:</b> On April 27th, the team showcased last year’s project, Legendairy, amongst a diverse range of other undergraduate projects at Cornell, including architecture, fashion design, engineering, and agriculture. On April 29th, the team showcased Legendairy at Makerfaire amongst other engineering projects and project teams. On April 29th at Splash!, the team taught local high schoolers about synthetic biology, teaching them how to load a gel and encouraging conversation about bioethics. P&P continued brainstorming applications for the redox sensor and started contacting researchers about our project.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam successfully submitted their Bootstrap and GitHub project.
</div>
<div class="notebookp">
<b>Business:</b> Team members made final edits to their sponsorship letters, explored mailing tools such as mailchimp, and discussed possibility of obtaining food sponsors.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<!-----********/////*****------ ENTERING MAY-------*******/////*******--->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MAY 1ST TO MAY 7TH</div>
<div class="notebookp">
<b>Product Development:</b> Product Development discussed possible designs for a redox sensor.
</div>
<div class="notebookp">
<b>P&P:</b> P&P continued following up with contacts regarding an application for the redox sensor. We narrowed down the choices to water quality, beer/wine fermentation, and air pollution.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned the competition rules and coding rules for the iGEM wiki.
</div>
<div class="notebookp">
<b>Business:</b> Team members reached out to old sponsors to update them about our progress and started designing team t-shirts.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MAY 8TH TO MAY 14TH</div>
<div class="notebookp">
<b>Product Development:</b> Product Development collaborated with the P&P subteam to discuss applications, brainstorm interview questions, and interviewee list.
</div>
<div class="notebookp">
<b>P&P:</b> P&P met with PD to discuss feasibility of the possible applications. We settled on air pollution, specifically tobacco smoke. We started brainstorming potential contacts for this application, from researchers to local Ithacans. P&P also discussed who was in charge of social media pages.
</div>
<div class="notebookp">
<b>Business:</b> Team members discussed summer plans and started preparing for the crowdfunding campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">MAY 28TH TO JUNE 3RD</div>
<div class="notebookp">
<b>Product Development:</b> Product Development participated in the hardware accelerator training program and learned the procedure to conduct customer outreach correctly.
</div>
<div class="notebookp">
<b>P&P:</b> P&P spoke with Dr. Gregory Wood at Frostburg State University to hear about the social impact of smoking. Dr. Wood studied smoking in the workplace throughout the 20th century and social factors that led to its decline to current levels.
</div>
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
</section>
<section class="content-wrapper notebook container-fluid">
<!-----********/////*****------ ENTERING JUNE-------*******/////*******--->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JUNE 4TH TO JUNE 7TH</div>
<div class="notebookp">
<b>Product Development:</b> Product Development conducted interviews with various hydroponic farmers and gathered data on how to build a mechanical component that would be most useful to them.
</div>
<div class="notebookp">
<b>P&P:</b> Together, P&P and Product Development spoke to Dr. Bill Miller at Cornell about the feasibility of our project as well as major aspects and issues with hydroponic agriculture. Furthermore, the team reached out to Rebecca Ireland-Perry at the Cornell Cooperative Extension to learn about hydroponic education in the community, and her interactions with growers, both traditional and hydroponic. Eli at Planted Earth Hydroponics gave team members a better idea of the operations and obstacles of commercial hydroponics. Through Product Development’s work at Rev, the team was able to make contact with PureSpinach, a hydroponic startup aimed at growing hydroponic spinach more efficiently. They spoke to the team about setting up a hydroponic system and their model.
</div>
<div class="notebookpcont">
Interviews: Alex Liu (Plant Sciences Undergraduate at Cornell), Gabriel Green (PureSpinach), Kyle Valachovic (PureSpinach), Dr. Bill Miller (Cornell School of Integrative Plant Science), Eli (Planted Earth Hydroponics), Rebecca Ireland-Perry (Cornell Cooperative Extension), Michael (Petal (Rev))
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JUNE 8TH TO JUNE 10TH</div>
<div class="notebookp">
<b>P&P:</b> Product development and P&P continued to interview hydroponic growers. The team received important feedback from them, including their needs. One key theme we found in our interviews was a need for a simple, continuous, real-time monitoring system. Furthermore, they learned that there were several sources of abiotic stress, including excess heat, insects, humidity, and pH fluctuations. They also found that many hydroponic growers were open to testing new methods and technology. The group also reached out to the Rasheed Hislop Community Garden in New York City to consider the ramifications of placing genetically-engineered bacteria in such close proximity to people’s food. While it isn’t common, team members did find that some hydroponic growers, such as those at
Terrapin Farms in Maryland, do use bacteria in their setup to provide benefits to crops.
</div>
<div class="notebookpcont">
Interviews: Craig Ellins (10 Mile Hydroponics), Jenny Harris (AmHydro), John McMahon (Schuyler Greens), Cameron Willingham (Vertical Harvest Hydroponics), Chester Bullock (HydroStackers), Jeremy Moon (Fresh Coasts), Kohlie Frantzen (Helical Outpost), Omega Gardens, Terrapin Farms, Rasheed Hislop Community Gardens
</div>
<div class="notebookp">
<b>Business:</b> Subteam lead reached out to crowdfunding campaign organizers and formed a more concrete plan for the campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JUNE 11TH TO JUNE 14TH</div>
<div class="notebookp">
<b>P&P:</b> Interviews continued, now with a greater diversity of consumers. The team reached out to some traditional and non-traditional hydroponic growers, as well as hydroponic researcher Dr. Neil Mattson at Cornell. Dr. Mattson discussed some of the specific disease problems that arise in hydroponic agriculture as well as the role of oxidative stress in those diseases. Members of product development and P&P also spoke with more hydroponic growers, and they learned that disease can kill hydroponic crops extremely quickly. Many of the non-traditional growers, such as J.J. Reidy at Urban Pastoral, who uses an old shipping container for his setup, had similar complaints about energy usage and monitoring as the traditional hydroponic growers did. Another hydroponic farm, Urban Crop Solutions, told the team about its own use of oxidants such as ozone to sterilize the hydroponic solution.
</div>
<div class="notebookpcont">
Interviews: Andrew Blume (Agritecture), Nathaniel Shaw (Karma Farms), Dr. Neil Mattson (School of Integrative Plant Science), ShuShan Valley HydroFarm, Filipous Charalambous (Urban Crop Solutions), Henry (Agritecture), JJ Reidy (Urban Pastoral)
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JUNE 15TH TO JUNE 18TH</div>
<div class="notebookp">
<b>Product Development:</b> Product Development created a list of possible ways to incorporate redox-sensitive bacteria into a hydroponic system. After researching and interviewing nearly 30 farmers and businesses, we decided that a deep-water culture system would work best due to its slow circulation of water.
</div>
<div class="notebookp">
<b>P&P:</b> Interviews continued, now with a greater diversity of consumers. The team reached out to some traditional and non-traditional hydroponic growers, as well as hydroponic researcher Dr. Neil Mattson at Cornell. Dr. Mattson discussed some of the specific disease problems that arise in hydroponic agriculture as well as the role of oxidative stress in those diseases. Members of product development and P&P also spoke with more hydroponic growers, and they learned that disease can kill hydroponic crops extremely quickly. Many of the non-traditional growers, such as J.J. Reidy at Urban Pastoral, who uses an old shipping container for his setup, had similar complaints about energy usage and monitoring as the traditional hydroponic growers did. Another hydroponic farm, Urban Crop Solutions, told the team about its own use of oxidants such as ozone to sterilize the hydroponic solution.
</div>
<div class="notebookpcont">
Interviews: Andrew Blume (Agritecture), Nathaniel Shaw (Karma Farms), Dr. Neil Mattson (School of Integrative Plant Science), ShuShan Valley HydroFarm, Filipous Charalambous (Urban Crop Solutions), Henry (Agritecture), JJ Reidy (Urban Pastoral)
</div>
<div class="notebookp">
<b>Business:</b> Subteam lead worked on creating crowdfunding campaign content.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JUNE 19TH TO JUNE 25TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Team ran PCR reactions to amplify pR and FixK2 promoters as well as Hydrazinase and NADPH gblocks. The team verified these PCR reactions with agarose gel electrophoresis followed by PCR cleanup. Primarily 1.5% agarose gels were prepared. The PCRs for GSH Independent Formaldehyde, 2-Nitropropane Dioxygenase, and L-Asparaginase were not successful.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development began prototyping the planter cups and assembling the hydroponic tank. Team members also setup the Raspberry Pi and created the first web design mock-ups.
</div>
<div class="notebookp">
<b>P&P:</b> P&P designed a lesson plan for 4H Career Explorations focusing on the the principles of synthetic biology, biology entrepreneurship, and designing a biobrick device. The lesson involved wheat germ DNA extraction using the Building with Biology kit for a hands-on experiment. There was also an interview with Maria Harrison specializing the symbiosis between plants, fungi, and bacteria.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JUNE 26TH TO JULY 2ND</div>
<div class="notebookp">
<b>Wet Lab:</b> Successfully performed PCR with Tsa2, RxRFP and RoGFP2 gBlocks. Ran failed orp1 PCR. Reran PCR on the GSH-independent formaldehyde dehydrogenase and L-asparaginase gBlocks. Troubleshooting of PCR reactions throughout the week.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development began their second round of customer discovery. They also began brainstorming ideas for waterproofing the electronics and how to move the sensor around the tank.
</div>
<div class="notebookp">
<b>P&P: </b> On June 28th and June 29th, the team taught a class for the 4H Career Explorations Program. We focused on the intersection between biology and business, teaching children how to design a plasmid and helping them create a business model for said plasmid. For our hands-on experiment, we extracted DNA from wheat germ.
</div>
<div class="notebookp">
<b>Business: </b>Subteam lead worked on crowdfunding campaign content.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<!-----********/////*****------ENTERING JULY-------*******/////*******--->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JULY 3RD TO JULY 9TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Attempted overlap extension PCR to create fusion proteins of promoter and gblock (pR-2ND, for example). Troubleshooting overlap extension PCR and successfully performed PCR on orp1.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development decided to have a waterproof case to hold the electronics. We made a CAD of a mount to hold the camera and Raspberry Pi.
</div>
<div class="notebookp">
<b>P&P:</b> P&P decided to split up the contacts into categories, such as researchers, legislators, and farmers. We made initial contact with Stony Brook and began discussing a possible collaboration. We started trying to figure out how to build a small hydroponics setup.
</div>
<div class="notebookp">
<b>Business: </b>Team Lead met with Dr. Jocelyn Rose to talk about Biotech Sponsorship.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JULY 10TH TO JULY 16TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Ligated rxRFP into pSB1C3 vector. Transformed into competent cells and grew on chloramphenicol plates. The bacteria did not grow. Continued troubleshooting overlap extension PCR of promoter and gblocks. (pR - NADPH, Fixk2 - hydrazinase, etc.). Attempted PCR of YF1 and FixJ, was unsuccessful.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development set-up the server and project configuration for the dashboard.
</div>
<div class="notebookp">
<b>P&P:</b> On July 11th, P&P had a skype call with Stony Brook to discuss collaborations. We decided to create a survey to to assess attitudes towards synthetic biology in Long Island and Ithaca. We began filming our short, educational videos for our YouTube channel.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JULY 17TH TO JULY 23RD</div>
<div class="notebookp">
<b>Wet Lab:</b> Changed from phusion polymerase to Q5 polymerase. Attempted once again to ligate rxRFP into vector and transformed into competent cells. Succeeded in performing first step of OE PCR for roGFP2-Orp1 and rxRFP-Tsa2. Successfully performed PCR for FixJ and YF1.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development setup the router, individual pages, profile, and login system for the dashboard.
</div>
<div class="notebookp">
<b>P&P:</b> P&P brainstormed questions for the survey with Stony Brook. We began sorting out logistics for the New York State Fair during the Fall semester and discussed the possibility of attending the World MakerFaire in NYC. P&P discussed goals for the rest of the summer.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam learned about project and discussed possible designs.
</div>
<div class="notebookp">
<b>Business: </b> Members proofread content for crowdfunding campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JULY 24TH TO JULY 30TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Attempted second step of OE PCR for roGFP2-Orp1 and rxRFP-Tsa2. Attempted OE PCR of YF1 and FixJ. When run on a gel, both overlap reactions seemed to produce products and dimerize primers, but no bands were present at the desired fragment lengths. Gels also smeared, producing no distinct bands.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development learned React to be used for building the UI of the dashboard. PD decided to use servos to rotate the sensors to maximize coverage of the plants.
</div>
<div class="notebookp">
<b>P&P:</b> P&P continued filming videos.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam presented possible wiki designs for home page and regular page. They decided on a final design for the wiki homepage & standard page with a few tweaks.
</div>
<div class="notebookp">
<b>Business: </b> Subteam lead added final edits to the crowdfunding campaign. Team members were invited as Ambassadors for the campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">JULY 31ST TO AUGUST 6TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Continued OE PCR troubleshooting with modified PCR protocols and asymmetric PCR before OE PCR of rxRFP-Tsa2. Performed touchdown PCR of Fixk2, hydrazinase, and Tsa2. Separate annealing and extension PCR reactions were performed, yet the samples still formed smears when run on a gel
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development implemented the general layout of the dashboard.
</div>
<div class="notebookp">
<b>P&P:</b> P&P had multiple calls with Stony Brook to finalize the questions on the survey. We made contact with Dr. Sparks regarding the hydroponics application and visited Dr. Turkon at Ithaca College to see her hydroponics set up again. We talked to Dr. Hong from Dr. Roeder’s lab for insight on hydroponics growing solutions.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki subteam presented final designs for team page & home page and made collaborative edits to those designs.
</div>
<div class="notebookp">
<b>Business: </b> Team members went through their Ambassador training for the crowdfunding campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<!-----********/////*****------ENTERING AUGUST-------*******/////*******--->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">AUGUST 7TH TO AUGUST 13TH</div>
<div class="notebookp">
<b>Wet Lab: </b>Found some success with touchdown PCR for PCR of Hydrazinase gBlock with Q5 Polymerase.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development worked on a pitch deck to present to Rev, and finalized the content.
</div>
<div class="notebookp">
<b>Business: </b> Subteam lead added bios for project owners and created levels for crowdfunding campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">AUGUST 14TH TO AUGUST 20TH</div>
<div class="notebookp">
<b>Wiki: </b> Wiki subteam decided on final designs for the team page, homepage, and standard page.
</div>
<div class="notebookp">
<b>Business: </b> Subteam lead added finishing touches to the crowdfunding campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">AUGUST 21ST TO AUGUST 27TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Began brainstorming for new approaches for cloning the gBlocks into the plasmids.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development brainstormed the next steps for the development of the final product.
</div>
<div class="notebookp">
<b>P&P:</b> Policy and Practices worked this week to do one last check on the survey with Stony Brook, and began administration of the survey. We traveled to the Ithaca Farmers’ Market and collected responses from 30 people. We also began planning a public debate with Debates in Science and Health, another student organization on campus.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki team hosted the first wiki workday! We uploaded pics to the wiki server, added font files to the homepage, transferred homepage to wiki, and began coding the standard page. We finalized delegating assignments for all the wiki writing and then set this week’s writing action items for each subteam. We also met with subteams to assess which writings would be possible to write in the coming weeks based on the progress of the project.
</div>
<div class="notebookp">
<b>Business:</b> The Business Team brainstormed the business plan’s organization, and contacted other subteams about the progress over the summer. Subteam lead got ready for the launch of crowdfunding and had a call with Jon Crenshaw to make any last minute edits to the campaign.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">AUGUST 28TH TO SEPTEMBER 3RD</div>
<div class="notebookp">
<b>Wet Lab:</b> Cloned Orp1 and Superoxide Dismutase into pSB1C3. Began the characterization of a BioBrick, BBa_K1758335, a lead inducible promoter under the control of a T7 promoter linked to mRFP for detection. Wrote a protocol to obtain fluorescence and colony counts for in vivo testing.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development made a plan to print the hardware component case and waterproof it. We also started the CAD of the railing system for the hydroponic pond.
</div>
<div class="notebookp">
<b>P&P:</b> P&P tabled at the NY State Fair on Sept 2nd. We gathered more responses for our survey and engaged the public about synthetic biology. We took photos for our campaign, Humans of SynBio, and we brought a small activity for kids to complete.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki team hosted the second wiki workday! We created all the links to the nav bar and linked them in the nav bar itself. We transferred the homepage to the wiki website and made edits to the homepage. We started coding the notebook page, team page, and standard page. We started designing Policy & Practice website. We set weekly writing action items for each team.
</div>
<div class="notebookp">
<b>Business:</b> The business subteam worked to finalize the first draft of the business plan.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<!-----********/////*****------ENTERING SEPTEMBER-------*******/////*******--->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">SEPTEMBER 4TH TO SEPTEMBER 10TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Began the characterization of the lead-inducible promoter BBa_K1758335 by starting to grow the colonies. Cloned Tsa2
</div>
<div class="notebookp">
<b>Product Development:</b> PD worked on the development for the code for the camera.
</div>
<div class="notebookp">
<b>P&P:</b> The policy and practice team collaborated with organization “Dignity and Justice” on campus and rehearsed the workshop for minority middle schoolers. The workshop will take place on Oct 19th.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki team finished coding bios page. We started coding sponsors section in bios page and attributions page. We are working on finalizing Policy & Practice page design.
</div>
<div class="notebookp">
<b>Business:</b> The business team used the business canvas model as an interactive visualization of the finalized business plan draft. We also listed potential professors to contact for feedback on our business plan.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">SEPTEMBER 11TH TO SEPTEMBER 17TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Cloned YF1, FixJ, pR, and NADPH gBlocks into pSB1C3. Performed the digestion of Tsa2 gblock with HindiIII and EcoRV and PCRed.
</div>
<div class="notebookp">
<b>Product Development:</b> PD participated in JavaScript training for coding the camera to recognize the intensity level of the light it detects.
</div>
<div class="notebookp">
<b>P&P:</b> The Policy & Practice team started our new outreach event with Ithaca High School. We contacted the AP bio teacher at IHS and started planning our meeting and mentorship workshop with them.
</div>
<div class="notebookp">
<b>Wiki:</b> We added the sponsors to the bios page, finished the attributions page, and finalized the Policy & Practices page design. We checked on Policy & Practices, Product Dev, and Business team’s progress for wiki action items. We sent out weekly action items for all four subteams. We are working on finalizing the standard page, making edits to the fonts, designing the business page, and coding the Notebook page.
</div>
<div class="notebookp">
<b>Business:</b> The business team contacted other team members to ensure the business plan aligns with the progress of each subteam. After getting feedback and edits from the rest of the team, we finalized our business plan and sent it out to professors to receive feedback.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">SEPTEMBER 18TH TO SEPTEMBER 24TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Began germination of basil seeds. Attempted to grow colonies of bacteria transformed with pR and NADPH oxidase.
</div>
<div class="notebookp">
<b>Product development:</b> Product Development team CADed and 3-D printed waterproofing component to house electronics. The software team also worked on code for detecting red light and ignoring any external noise.
</div>
<div class="notebookp">
<b>P&P:</b> We contacted the workshop along with on campus organization “Dignity and Justice” on Oct.19th. The workshop aimed to introduce local high schoolers to synthetic biology and its application and try to inspire them to become bio-engineers.
</div>
<div class="notebookp">
<b>Wiki:</b> We updated the bios page, homepage, and attributions with new styling. We checked in with P&P - they finished most of Public Engagement, but need to work on writing the interviews for Practices. We set a deadline of Oct 15th for Wet Lab Wiki Content. We worked with the business team to finish the business design. We sent weekly action items to each subteam. We will be coding the Notebook page, business page, Safety page, Protocols page, and P&P page and making edits to the bio page, homepage, and attributions page this week. We will also update the nav bar with the right links and updated wiki structure and transfer the standard page to the wiki.
</div>
<div class="notebookp">
<b>Business:</b> The business team received feedback from Professor Callister on the team’s business plan. The business team is starting to edit the business team based on the feedback.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">SEPTEMBER 25TH TO OCTOBER 1ST</div>
<div class="notebookp">
<b>Wet Lab:</b> Began cultures of rxRFP and roGFP2-His. Plated colonies transformed with all of the plasmids that we ordered. Performed a touchdown PCR of L-Asparaginase GBlock. Double digested hydrazinase and ligated it into pSB1C3. Started a liquid culture of roGFP-Orp1 bacteria.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development CADded the railing system for a proof of concept. The software team continues refining the code for the red light detection.
</div>
<div class="notebookp">
<b>P&P:</b> The policy and practice team had a phone interview with NY Assemblywoman Barbara Lifton to ask her questions on hydroponic regulations.
</div>
<div class="notebookp">
<b>Wiki:</b> The bio page, attributions page, safety page, and protocols page are done. Banner pic was updated on homepage. Navigation bar was updated on all created pages (attributions, bio, safety page). We’re working on the business page, P&P page, About page, Public Engagement page, and gathering banner pics.
</div>
<div class="notebookp">
<b>Business:</b> Team members continued to work on Business plan. The team also explored the option of getting hats as a new team item.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<!-----********/////*****------ENTERING OCTOBER-------*******/////*******--->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">OCTOBER 2ND TO OCTOBER 8TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Miniprepped rxRFP and roGFP in plasmids from cultures.
</div>
<div class="notebookp">
<b>Product Development:</b> Software team finished up the code for the detection of red light by the camera.
</div>
<div class="notebookp">
<b>P&P:</b> On October 2nd, Policy and Practices team went to Apple Fest at Ithaca Commons and collected more data on the survey collaborating with StonyBrook iGEM team.
Our team also made our first trip to Ithaca High School where we got to know the High School students interested in BioBuilder competition and helped them brainstorm their initial idea.
</div>
<div class="notebookp">
<b>Wiki:</b> We continued developing the business page, P&P page, About page, and Public Engagement page and continued gathering banner pics.
</div>
<div class="notebookp">
<b>Business:</b> Continued refining the business plan and entrepreneurship wiki content. Also came up with more designs for the wiki business page.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row gray">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">OCTOBER 9TH TO OCTOBER 15TH</div>
<div class="notebookp">
<b>Wet Lab:</b> Biobricking hydrazinase gblock into pSB1C3. Performed a quickchange rxFP to remove the NcoI cut-site and performed PCR to remove the insert. Cut roGFP-orp1 with NcoI and SpeI to get rid of the roGFP2 insert, then ligated and transformed into DH5A.
</div>
<div class="notebookp">
<b>Product Development:</b> Product Development made some edits to the code for the camera and made a video rendering of the hardware components and assembly.
</div>
<div class="notebookp">
<b>P&P:</b> Policy and Practices team began working on data analysis and interpretation of the Stony Brook-Cornell public perception survey.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki team finished About page. Wiki team worked on wiki fixes to ensure designs is consistent throughout all pages. Wiki team continued to work on P&P page, business page, Public Engagement page (due to in-progress content), and standard page.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
<div class="row">
<div class="col-sm-1"></div>
<div class="col-sm-10">
<div class="content-title center">OCTOBER 16TH TO OCTOBER 23RD</div>
<div class="notebookp">
<b>Wet Lab:</b> Characterized the lead-sensitive red fluorescent protein qualitatively by observing the appearance of the cells when grown in media with and without lead. Tested the time and dose dependence of pDawn. Grew a 1L culture of rxRFP-Orp1 in BL21 cells. Grew mRFP for testing the camera, since rxRFP was not expressing strongly enough.
</div>
<div class="notebookp">
<b>P&P:</b> Policy and Practices team finished up data analysis and interpretation of the survey.
</div>
<div class="notebookp">
<b>Wiki:</b> Wiki team worked on standardizing page styling into 1 CSS style sheet and uploading that to the wiki. Wiki team communicated with other sub teams about writing deadlines, judging form, and gathering other content such as videos and images.
</div>
</div>
<div class="col-sm-1"></div>
</div> <!-- row -->
</section> <!--container-fluid-->
<!------------------------END CONTENT------------------------>
<!------------------------FOOTER------------------------>
<footer class="footer-preset-04 footer bgc-gray">
<div class="social-04">
<a class="footerIconWrapper" href="https://www.facebook.com/cornelligem/">
<div class="overlay"></div>
<img src="http://2017.igem.org/wiki/images/0/0b/CornellFacebookIcon.png" alt="Facebook" height="20"></a>
<a class="footerIconWrapper" href="https://twitter.com/cugem">
<div class="overlay"></div>
<img src="http://2017.igem.org/wiki/images/5/50/CornellTwitterIcon.png" alt="Twitter" height="20">
</a>
<a class="footerIconWrapper" href="https://www.instagram.com/cugem/">
<div class="overlay"></div>
<img src="http://2017.igem.org/wiki/images/3/36/CornellInstagramIcon.png" alt="Instagram" height="20">
</a>
<a class="footerIconWrapper" href="https://www.youtube.com/channel/UCJt-5JfyoucUJXC1EsTllhg">
<div class="overlay"></div>
<img src="http://2017.igem.org/wiki/images/5/50/CornellYoutubeIcon.png" alt="Youtube" height="20">
</a>
</div>
</footer>
<!------------------------END FOOTER------------------------>
</main>
</body>
</html>