-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdatabaseFill.py
More file actions
857 lines (832 loc) · 38.8 KB
/
databaseFill.py
File metadata and controls
857 lines (832 loc) · 38.8 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
# coding: utf-8
# In[5]:
import sys
import getopt
import http.client
import urllib
import json
from random import randint
from random import choice
from datetime import date
from time import mktime
# In[33]:
def main(argv):
# Server Base URL and port
baseurl = "localhost"
port = 4000
# Python array containing name and email and password
names = ['Kelvin', "james", "john", "robert", "michael", "william", "david", "richard", "charles", "joseph"]
# Server to connect to (1: url, 2: port number)
conn = http.client.HTTPConnection(baseurl, port)
# HTTP Headers
headers = {"Content-type": "application/json", "Accept": "text/plain"}
# Array of user IDs
userIDs = []
userNames = []
userEmails = []
for i in range(len(names)):
params = json.dumps(
{'isStudent': 'false', 'name': names[i], 'email': names[i] + "@illinois.edu", 'password': '123'})
# POST the user
conn.request("POST", "/api/user/create", params, headers)
response = conn.getresponse()
data = response.read()
d = json.loads(data)
# Store the users id
userIDs.append(str(d['data']['_id']))
userNames.append(str(d['data']['name']))
userEmails.append(str(d['data']['email']))
graderPost = [
# CS
{'userId': userIDs[0],
'jobName': 'CS101 Intro Computing: Engrg & Sci grader',
'salary': 0,
'major': [5, 6, 7, 10],
'standing': [0, 1, 2, 3],
'contactEmail': 'Davis@illinois.edu',
'contactName': 'Davis, N',
},
{'userId': userIDs[0],
'jobName': 'CS 126 Software Design Studio CA',
'salary': 0,
'major': [6],
'standing': [1, 2, 3],
'contactEmail': 'Evans@illinois.edu',
'contactName': 'Evans, G',
},
{'userId': userIDs[0],
'jobName': 'CS 242 Programming Studio grader',
'salary': 0,
'major': [6],
'standing': [1, 2, 3],
'contactEmail': 'Woodley@illinois.edu',
'contactName': 'Woodley, M',
},
{'userId': userIDs[0],
'jobName': 'CS 357 Numerical Methods I CA',
'salary': 1,
'major': [5, 6, 10],
'standing': [1, 2, 3],
'contactEmail': 'Silva@illinois.edu',
'contactName': 'Silva, M',
},
{'userId': userIDs[0],
'jobName': 'CS 374 Introduction to Algorithms & Models of Computation assistants',
'salary': 1,
'major': [5, 6],
'standing': [1, 2, 3],
'contactEmail': 'Borisov@illinois.edu',
'contactName': 'Borisov, N',
},
{'userId': userIDs[0],
'jobName': 'CS 410 Text Information Systems CA',
'salary': 1,
'major': [5, 6],
'standing': [2, 3],
'contactEmail': 'Zhai@illinois.edu',
'contactName': 'Zhai, C',
},
{'userId': userIDs[0],
'jobName': 'CS 412 Introduction to Data Mining CA',
'salary': 1,
'major': [5, 6],
'standing': [2, 3],
'contactEmail': 'jiawei@illinois.edu',
'contactName': 'Han, J',
},
{'userId': userIDs[0],
'jobName': 'CS 413 Intro to Combinatorics CA',
'salary': 1,
'major': [5, 6],
'standing': [2, 3],
'contactEmail': 'james@illinois.edu',
'contactName': 'james, J',
},
{'userId': userIDs[0],
'jobName': 'CS 450 Numerical CA',
'salary': 1,
'major': [5, 6, 10],
'standing': [2, 3],
'contactEmail': 'Olson@illinois.edu',
'contactName': 'Olson, L',
},
{'userId': userIDs[0],
'jobName': 'CS498AML grader',
'salary': 1,
'major': [5, 6],
'standing': [2, 3],
'contactEmail': 'William@illinois.edu',
'contactName': 'William, K',
},
{'userId': userIDs[0],
'jobName': 'CS 425 Distributed Systems grader',
'salary': 1,
'major': [5, 6, 7],
'standing': [2, 3],
'contactEmail': 'Gupta@illinois.edu',
'contactName': 'Gupta, I',
},
{'userId': userIDs[0],
'jobName': 'CS 438 Communication Networks CA',
'salary': 1,
'major': [5, 6],
'standing': [2, 3],
'contactEmail': 'AlHassani@illinois.edu',
'contactName': 'Al-Hassanieh, H',
},
# Chem
{'userId': userIDs[1],
'jobName': 'CHEM 102 General Chemistry I grader',
'salary': 0,
'major': [1, 2, 3, 11],
'standing': [0, 1, 2, 3],
'contactEmail': 'Huang@illinois.edu',
'contactName': 'Huang, T',
},
{'userId': userIDs[1],
'jobName': 'CHEM 103 General Chemistry Lab I CA',
'salary': 0,
'major': [1, 2, 3, 11],
'standing': [0, 1, 2, 3],
'contactEmail': 'Marville@illinois.edu',
'contactName': 'Marville, K',
},
{'userId': userIDs[1],
'jobName': 'CHEM 104 General Chemistry II CA',
'salary': 0,
'major': [1, 2, 3, 11],
'standing': [0, 1, 2, 3],
'contactEmail': 'Marville@illinois.edu',
'contactName': 'Marville, K',
},
{'userId': userIDs[1],
'jobName': 'CHEM 232 Elementary Organic Chemistry I grader',
'salary': 0,
'major': [1, 2, 3, 11],
'standing': [1, 2, 3],
'contactEmail': 'Axelson@illinois.edu',
'contactName': 'Axelson, J',
},
{'userId': userIDs[1],
'jobName': 'CHEM 237 Structure and Synthesis CA',
'salary': 0,
'major': [1, 2, 3, 11],
'standing': [1, 2, 3],
'contactEmail': 'Heberer@illinois.edu',
'contactName': 'Heberer, N',
},
{'userId': userIDs[1],
'jobName': 'CHEM 312 Inorganic Chemistry grader',
'salary': 1,
'major': [1, 2, 3, 11],
'standing': [2, 3],
'contactEmail': 'Bouley@illinois.edu',
'contactName': 'Bouley, B',
},
{'userId': userIDs[1],
'jobName': 'CHEM 317 Inorganic Chemistry Lab CA',
'salary': 1,
'major': [1, 2, 3, 11],
'standing': [2, 3],
'contactEmail': 'Bruske@illinois.edu',
'contactName': 'Bruske, E',
},
{'userId': userIDs[1],
'jobName': 'CHEM 360 Chemistry of the Environment grader',
'salary': 1,
'major': [1, 2, 3, 11],
'standing': [2, 3],
'contactEmail': 'Bruske@illinois.edu',
'contactName': 'Bruske, E',
},
{'userId': userIDs[1],
'jobName': 'CHEM 420 Instrumental Characterization grader',
'salary': 1,
'major': [1, 2, 3, 11],
'standing': [2, 3],
'contactEmail': 'Han@illinois.edu',
'contactName': 'Han, H',
},
{'userId': userIDs[1],
'jobName': 'CHEM 437 Organic Chemistry Lab CA',
'salary': 1,
'major': [1, 2, 3, 11],
'standing': [2, 3],
'contactEmail': 'Bock@illinois.edu',
'contactName': 'Bock, M',
},
# PHYS
{'userId': userIDs[2],
'jobName': 'PHYS 211 University Physics: Mechanics grader',
'salary': 0,
'major': [0, 4, 8, 9, 12],
'standing': [1, 2, 3],
'contactEmail': 'Gadway@illinois.edu',
'contactName': 'Gadway, B',
},
{'userId': userIDs[2],
'jobName': 'PHYS 212 University Physics: Elec & Mag CA',
'salary': 0,
'major': [0, 4, 8, 9, 12],
'standing': [1, 2, 3],
'contactEmail': 'Stelzer@illinois.edu',
'contactName': 'Stelzer, T',
},
{'userId': userIDs[2],
'jobName': 'PHYS 213 Univ Physics: Thermal Physics CA',
'salary': 0,
'major': [0, 4, 8, 9, 12],
'standing': [1, 2, 3],
'contactEmail': 'Wagner@illinois.edu',
'contactName': 'Wagner, L',
},
{'userId': userIDs[2],
'jobName': 'PHYS 213 Univ Physics: Thermal Physics CA',
'salary': 0,
'major': [0, 4, 8, 9, 12],
'standing': [1, 2, 3],
'contactEmail': 'Wagner@illinois.edu',
'contactName': 'Wagner, L',
},
{'userId': userIDs[2],
'jobName': 'PHYS 214 Univ Physics: Quantum Physics grader',
'salary': 0,
'major': [0, 4, 8, 9, 12],
'standing': [1, 2, 3],
'contactEmail': 'Wagner@illinois.edu',
'contactName': 'Wagner, L',
},
{'userId': userIDs[2],
'jobName': 'PHYS 325 Classical Mechanics I grader',
'salary': 1,
'major': [0, 4, 8, 9, 12],
'standing': [2, 3],
'contactEmail': 'Weaver@illinois.edu',
'contactName': 'Weaver, R',
},
{'userId': userIDs[2],
'jobName': 'PHYS 326 Classical Mechanics II grader',
'salary': 1,
'major': [0, 4, 8, 9, 12],
'standing': [2, 3],
'contactEmail': 'Adshead@illinois.edu',
'contactName': 'Adshead, P',
},
{'userId': userIDs[2],
'jobName': 'PHYS 402 Light CA',
'salary': 1,
'major': [0, 4, 8, 9, 12],
'standing': [2, 3],
'contactEmail': 'Abbamonte@illinois.edu',
'contactName': 'Abbamonte, P',
},
{'userId': userIDs[2],
'jobName': 'PHYS 427 Thermal & Statistical Physics CA',
'salary': 1,
'major': [0, 4, 8, 9, 12],
'standing': [2, 3],
'contactEmail': 'Oono@illinois.edu',
'contactName': 'Oono, Y',
},
{'userId': userIDs[2],
'jobName': 'PHYS 470 Subatomic Physics grader',
'salary': 1,
'major': [0, 4, 8, 9, 12],
'standing': [2, 3],
'contactEmail': 'Peng@illinois.edu',
'contactName': 'Peng, J',
},
# TAM
{'userId': userIDs[3],
'jobName': 'TAM 210 Introduction to Statics CA',
'salary': 0,
'major': [3, 4, 10, 11, 13],
'standing': [1, 2, 3],
'contactEmail': 'Dronadula@illinois.edu',
'contactName': 'Dronadula, M',
},
{'userId': userIDs[3],
'jobName': 'TAM 212 Introductory Dynamics assistants',
'salary': 0,
'major': [3, 4, 10, 11, 13],
'standing': [1, 2, 3],
'contactEmail': 'William@illinois.edu',
'contactName': 'William, K',
},
{'userId': userIDs[3],
'jobName': 'TAM 251 Introductory Solid Mechanics grader',
'salary': 0,
'major': [3, 4, 10, 11, 13],
'standing': [1, 2, 3],
'contactEmail': 'Margotta@illinois.edu',
'contactName': 'Margotta, A',
},
{'userId': userIDs[3],
'jobName': 'TAM 270 Design for Manufacturability grader',
'salary': 0,
'major': [3, 4, 10, 11, 13],
'standing': [1, 2, 3],
'contactEmail': 'Dancholvichit@illinois.edu',
'contactName': 'Dancholvichit, N',
},
{'userId': userIDs[3],
'jobName': 'TAM 324 Behavior of Materials CA',
'salary': 1,
'major': [3, 4, 10, 11, 13],
'standing': [2, 3],
'contactEmail': 'Freund@illinois.edu',
'contactName': 'Freund, J',
},
{'userId': userIDs[3],
'jobName': 'TAM 335 Introductory Fluid Mechanics grader',
'salary': 1,
'major': [3, 4, 10, 11, 13],
'standing': [2, 3],
'contactEmail': 'Freund@illinois.edu',
'contactName': 'Freund, J',
},
{'userId': userIDs[3],
'jobName': 'TAM 412 Intermediate Dynamics grader',
'salary': 1,
'major': [3, 4, 10, 11, 13],
'standing': [2, 3],
'contactEmail': 'Berent@illinois.edu',
'contactName': 'Berent, Z',
},
{'userId': userIDs[3],
'jobName': 'TAM 445 Continuum Mechanics CA',
'salary': 1,
'major': [3, 4, 10, 11, 13],
'standing': [2, 3],
'contactEmail': 'Amiri Hezaveh@illinois.edu',
'contactName': 'Amiri Hezaveh, A',
},
{'userId': userIDs[3],
'jobName': 'TAM 456 Experimental Stress Analysis CA',
'salary': 1,
'major': [3, 4, 10, 11, 13],
'standing': [2, 3],
'contactEmail': 'Hutchens@illinois.edu',
'contactName': 'Hutchens, S',
},
{'userId': userIDs[3],
'jobName': 'TAM 456 Experimental Stress Analysis CA',
'salary': 1,
'major': [3, 4, 10, 11, 13],
'standing': [2, 3],
'contactEmail': 'Hutchens@illinois.edu',
'contactName': 'Hutchens, S',
},
# ECE
{'userId': userIDs[4],
'jobName': 'ECE110 Introduction to Electronics grader',
'salary': 0,
'major': [5, 7],
'standing': [1, 2, 3],
'contactEmail': 'Choi@illinois.edu',
'contactName': 'Choi, H',
},
{'userId': userIDs[4],
'jobName': 'ECE120 Introduction to Computing grader',
'salary': 0,
'major': [5, 7],
'standing': [1, 2, 3],
'contactEmail': 'Jones@illinois.edu',
'contactName': 'Jones, D',
},
{'userId': userIDs[4],
'jobName': 'ECE205 Electrical and Electronic Circuits CA',
'salary': 0,
'major': [5, 7],
'standing': [1, 2, 3],
'contactEmail': 'Cheng@illinois.edu',
'contactName': 'Cheng, Z',
},
{'userId': userIDs[4],
'jobName': 'ECE210 Analog Signal Processing grader',
'salary': 0,
'major': [5, 7],
'standing': [1, 2, 3],
'contactEmail': 'Lahiri@illinois.edu',
'contactName': 'Lahiri, P',
},
{'userId': userIDs[4],
'jobName': 'ECE211 Analog Circuits & Systems CA',
'salary': 0,
'major': [5, 7],
'standing': [1, 2, 3],
'contactEmail': 'Lahiri@illinois.edu',
'contactName': 'Lahiri, P',
},
{'userId': userIDs[4],
'jobName': 'ECE220 Computer Systems & Programming grader',
'salary': 0,
'major': [5, 7],
'standing': [1, 2, 3],
'contactEmail': 'Hu@illinois.edu',
'contactName': 'Hu, Y',
},
{'userId': userIDs[4],
'jobName': 'ECE310 Digital Signal Processing CA',
'salary': 1,
'major': [5, 7],
'standing': [2, 3],
'contactEmail': 'Katselis@illinois.edu',
'contactName': 'Katselis, D',
},
{'userId': userIDs[4],
'jobName': 'ECE316 Ethics and Engineering grader',
'salary': 1,
'major': [5, 7],
'standing': [2, 3],
'contactEmail': 'Hillmer@illinois.edu',
'contactName': 'Hillmer, P',
},
{'userId': userIDs[4],
'jobName': 'ECE317 ECE Technology & Management CA',
'salary': 1,
'major': [5, 7],
'standing': [2, 3],
'contactEmail': 'He@illinois.edu',
'contactName': 'He, W',
},
{'userId': userIDs[4],
'jobName': 'ECE329 Fields and Waves I grader',
'salary': 1,
'major': [5, 7],
'standing': [2, 3],
'contactEmail': 'Goddard@illinois.edu',
'contactName': 'Goddard, L',
},
{'userId': userIDs[4],
'jobName': 'ECE330 Power Ckts & Electromechanics CA',
'salary': 1,
'major': [5, 7],
'standing': [2, 3],
'contactEmail': 'Sauer@illinois.edu',
'contactName': 'Sauer, P',
},
{'userId': userIDs[4],
'jobName': 'ECE333 Green Electric Energy grader',
'salary': 1,
'major': [5, 7],
'standing': [2, 3],
'contactEmail': 'O\'Connell, T@illinois.edu',
'contactName': 'O\'Connell, T',
}
]
for i in range(len(graderPost)):
graderPost[i][
'description'] = 'Grading Quizzes, Exams, require less than 6 hr/week, Must getting A and above for the course'
graderPost[i]['type'] = 0
graderPost[i]['term'] = 2
# Loop 'taskCount' number of times
for i in range(len(graderPost)):
# POST the task
conn.request("POST", "/api/posts/add", json.dumps(graderPost[i]), headers)
response = conn.getresponse()
data = response.read()
d = json.loads(data)
researchPost = [
{'userId': userIDs[9],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Energy Transport Research Laboratory)',
'description': 'This project involves flow boiling of refrigerants in modified internal tubes. Heat transfer coefficients, pressure drops and temperature fluctuations would be measured to compare the performance of these modified tubes to those of internal tubes. \n The undergraduate researcher\'s primary responsibility would be to assist in running the experiments. The student would be trained and shown how to run tests for the first few weeks. Surface fabrication and data analysis would also be integral components of this project. Start date is summer and research credits via an independent study would be given for summer. The researcher can opt to stay on for future semesters, if interested. ',
'type': 2,
'salary': 1,
'major': [3, 9, 11],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': userEmails[0],
'contactName': userNames[0],
},
{'userId': userIDs[9],
'jobName': 'RESEARCH ASSISTANT (Radiation Surface Science and Engineering Laboratory)',
'description': 'Work with a state-of-the-art surface analysis facility to evaluate material response/evolution as they are subject to different simulated environments, in particular, those pertaining to plasma-material interactions in fusion energy applications. Design, manufacture and characterize novel material systems with enhanced performance in the harsh environments found in fusion energy devices.',
'type': 2,
'salary': 1,
'major': [11, 13],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'kapat2@illinois.edu',
'contactName': 'Aveek Kapat',
},
{'userId': userIDs[8],
'jobName': 'RESEARCH ASSISTANT (Data Analysis and Programming)',
'description': 'Fertilizer use remains below recommended rates in most of Sub-Saharan Africa, contributing to low agricultural productivity, pervasive poverty, and food insecurity. Small farmers have voiced suspicion that fertilizer is often adulterated, and evidence suggests that these suspicions lead to inefficient fertilizer use: too much in some cases, and too little in others. A key problem is that the quality and efficacy of mineral fertilizer, its available nutrient content, is unobservable to the uninformed eye at the point of purchase.',
'type': 2,
'salary': 1,
'major': [5, 6, 10, 14],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'hopecm@illinois.edu',
'contactName': 'Hope Michelson',
},
{'userId': userIDs[8],
'jobName': 'SUMMER UNDERGRADUATE RESEARCH IN PHARMACOLOGY & CANCER BIOLOGY',
'description': 'Duke University\'s Department of Pharmacology and Cancer Biology runs the Summer Undergraduate Research in PHarmacology and Cancer Biology (SURPH) fellowship program, which targets rising juniors and seniors at any U.S. university or college who are interested in future graduate study to obtain a PhD.\nThe 10-week summer research experience focuses on learning how scientific discovery at the bench can be translated to treatment of disease. Students will train with a faculty mentor and carry out an independent research project in Duke’s Department of Pharmacology and Cancer Biology.\nSURPH fellows will be 1) immersed in areas of biomedical science such as pharmacology that are not readily accessible on undergraduate campuses, 2) exposed to the connection between biomedical research and drug discovery, and 3) given networking opportunities to pursue graduate study in biomedical science.',
'type': 2,
'salary': 0,
'major': [2, 3],
'standing': [1, 2],
'term': 1,
'contactEmail': userEmails[8],
'contactName': userNames[8],
},
{'userId': userIDs[7],
'jobName': 'RESEARCH ASSISTANT (Sottos-White Research Group)',
'description': ' The research project proposes to develop microcapsules that exhibit controlled response to pH stimuli (i.e., acidic/basic conditions). These microcapsules can then be incorporated into other materials for developing smart multifunctional materials or drug carriers. One of the applications being explored here is the use of these microcapsules to develop smart self-protecting and self-healing coating systems which can release anti-corrosive agents to local sites when an acidic pH is encountered during the onset of pitting corrosion. This can drastically reduce maintenance and testing costs associated with corrosion due to increased lifetime of these coatings.\nThe goals of the project include to synthesize pH responsive polymers and then successfully encapsulate model cargo materials in these polymeric shells. These microcapsules would then be incorporated into commercial coatings and its stability will be investigated. The release profiles would also be characterized by studying the dissolution of the polymer in acidic aqueous media.',
'type': 2,
'salary': 1,
'major': [3, 11, 12],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': 'thakare2@illinois.edu',
'contactName': 'Dhawal Thakare',
},
{'userId': userIDs[7],
'jobName': 'RESEARCH ASSISTANT (Jensen Lab)',
'description': 'Successful candidates will help us combine robotics, machine learning, and computational biology to automate biomedical discovery. The software engineering team will\n 1. Design databases for storing, processing, and mining phenotypic and imaging data \n 2. Interface commercial and custom laboratory robots, sensors, and instruments\n 3. Build workflows and interfaces for managing large biological screening experiments\n Multiple openings for undergraduate software engineers. ',
'type': 2,
'salary': 1,
'major': [5, 6],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': 'openings@jensenlab.net',
'contactName': 'Paul Jensen',
},
{'userId': userIDs[6],
'jobName': 'REU ON THE INTERNET OF THINGS (IoT) AT UCF',
'description': 'The Computer Science Department at the University of Central Florida (Orlando, FL) will hold an 8‐week, 2019 Summer Research Experience for Undergraduates (REU) on the Internet of Things (IoT). REU students will be trained in research‐based theory and applications of IoT technologies, which extends the connected nature of computing devices to objects of the physical world. The REU students will join well‐established research groups under the close supervision of faculty with expertise in various IoT research areas such as smart cities, smart healthcare, and smart grids. Many of the research topics will require the students to utilize state-of-the-art techniques of artificial intelligence, machine learning and data analytics.',
'type': 2,
'salary': 2,
'major': [4, 5, 6, 7, 12],
'standing': [1, 2, 3],
'term': 0,
'contactEmail': 'turgut@cs.ucf.edu',
'contactName': 'Damla Turgut',
},
{'userId': userIDs[6],
'jobName': 'RESEARCH ASSISTANT (Smart Structures Technology Laboratory)',
'description': 'Image annotator. The Smart Structures Technology Laboratory (SSTL) is looking for an hourly research assistant to help with image annotation for research towards automated image-based inspection of civil infrastructure. The research assistant will be expected to annotate a few hundred images per week by precisely painting over or highlighting with input tools (similar to MS paint or Photoshop) regions in the image that correspond to certain structural defects or structural components using software tools developed by SSTL researchers. The research assistant will be acknowledged in published research articles and online.',
'type': 2,
'salary': 2,
'major': [4],
'standing': [0, 1, 2, 3],
'term': 2,
'contactEmail': 'hoskere2@illinois.edu',
'contactName': 'Vedhus Hoskere',
},
{'userId': userIDs[5],
'jobName': 'RESEARCH ASSISTANT (Health Care Engineering Systems Center)',
'description': 'Summer 2019 part-time undergraduate hourly positions in the area of medical simulation and virtual reality. Experience working in UNITY; prior experience using Steam VR plugin for HTC Vive is highly preferred. Prior knowledge or experience in virtual reality. Willingness to learn and explore new applications for virtual reality in Health Care.',
'type': 2,
'salary': 1,
'major': [2, 5, 6, 7],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': 'hcesc@illinois.edu',
'contactName': userNames[5],
},
{'userId': userIDs[5],
'jobName': 'UNDERGRADUATE OFFICE ASSISTANT (Undergraduate Research, Engineering)',
'description': ' Engineering Undergraduate Research is looking for undergraduate students to assist in day-to-day administrative activities during the 2019-2020 academic year. The student assistant will report directly to the coordinator of undergraduate research. This is a paid hourly position with up to 15 hours per week that starts in fall 2019. \nPrimary responsibilities include creating, maintaining and entering information into databases, gathering research-related information, helping prepare for events, performing general office work and other activities as needed.',
'type': 2,
'salary': 2,
'major': [4, 5, 6, 7, 10, 14],
'standing': [0, 1, 2, 3],
'term': 3,
'contactEmail': 'nmamaril@illinois.edu',
'contactName': 'Dr. Natasha Mamaril',
},
{'userId': userIDs[5],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Extracellular Vesicles and Cancer Research)',
'description': ' Students will work with Dr. Amy Baek in the Department of Bioengineering to study the role of extracellular vesicles in promoting breast cancer progression.',
'type': 2,
'salary': 2,
'major': [4, 5, 6, 7, 10, 14],
'standing': [0, 1, 2, 3],
'term': 2,
'contactEmail': 'aeb@illinois.edu',
'contactName': 'Dr. Amy Baek',
},
{'userId': userIDs[5],
'jobName': 'MACHINE DATA ANALYTICS INTERN (Caterpillar)',
'description': ' student will be involved in developing new analytics tool customized for Caterpillar applications.',
'type': 2,
'salary': 2,
'major': [5, 6],
'standing': [2, 3],
'term': 3,
'contactEmail': 'aeb@illinois.edu',
'contactName': 'Dr. Amy Baek',
},
{'userId': userIDs[4],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Nuzzo Research Group)',
'description': 'Current work in the Nuzzo group focuses on the development of responsive and functional (conductive, magnetic, etc.) polymer-based inks for the 3D printing of soft materials.',
'type': 2,
'salary': 2,
'major': [1, 2, 3, 4, 5, 6, 11, 12],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'chenw4@illinois.edu',
'contactName': 'Chen Wang',
},
{'userId': userIDs[4],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Lange Research Group)',
'description': 'Undergraduates will assist with mixing and mechanical testing of cellular concrete samples. May work on some analysis of results as well.',
'type': 2,
'salary': 1,
'major': [1, 2, 3, 4, 5, 6,7, 8,9,10, 11, 12, 13, 14],
'standing': [1, 2],
'term': 1,
'contactEmail': 'jvclark3@illinois.edu',
'contactName': 'Jamie Clark',
},
{'userId': userIDs[3],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Laboratory of Integrated Bio Medical Micro/Nanotechnology and Applications)',
'description': 'Graduate student is seeking two (2) undergraduate students to assist in 1) 3D printing (SolidWorks), and 2) cell culture and tissue engineering (basic cell culture techniques).',
'type': 2,
'salary': 2,
'major': [1, 2, 3, 4, 5, 6,7, 8,9, 10, 11, 12, 13, 14],
'standing': [2, 3],
'term': 2,
'contactEmail': 'jw18@illinois.edu@illinois.edu',
'contactName': 'Jiaojiao Wang',
},
{'userId': userIDs[3],
'jobName': 'ENGINEERING INTERN (Applied Research Associates)',
'description': 'ARA is committed to hiring new graduates and student interns who are among the best and brightest in their class. Interns will be involved in technically challenging projects which will enhance their learning experience. Additionally, upon graduation, interns with outstanding performance frequently move into full-time positions at ARA.',
'type': 2,
'salary': 1,
'major': [1, 2, 3, 4, 5, 6,7, 8,9, 10, 11, 12, 13, 14],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'nmamaril@illinois.edu',
'contactName': 'Dr. Natasha Mamaril',
},
{'userId': userIDs[3],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Automation and Digital Manufacturing Lab)',
'description': 'This position offers students an opportunity to advance their future career in the era of digital manufacturing. Supports for technical elective credits and other campus-wide undergraduate research programs will be provided.',
'type': 2,
'salary': 2,
'major': [1, 2, 3, 4, 5, 6,7, 8,9, 10, 11, 12, 13, 14],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': 'chshao@illinois.edu',
'contactName': 'Prof. Chenhui Shao',
},
{'userId': userIDs[3],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (AEROSOL RESEARCH LAB)',
'description': 'The project will involve developing new instrument, field sampling and a suite of laboratory experiments.',
'type': 2,
'salary': 2,
'major': [1, 2, 3, 4, 5, 6,7, 8,9, 10, 11, 12, 13, 14],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': 'isurprogram@illinois.edu',
'contactName': 'Prof. Vishal Verma',
},
{'userId': userIDs[3],
'jobName': 'SUMMER UNDERGRADUATE RESEARCH INTERNSHIP (HCESC JUMP ARCHES)',
'description': 'Jump Trading Simulation and Education Center and the University of Illinois Health Care Engineering Systems Center are pleased to announce the Jump ARCHES summer internship opportunity in Medical Simulation and Virtual Reality.',
'type': 2,
'salary': 2,
'major': [2, 6, 7],
'standing': [1, 2, 3],
'term': 1,
'contactEmail': 'hcesc@illinois.edu',
'contactName': 'Health Care Engineering Systems Center (HCESC)',
},
{'userId': userIDs[2],
'jobName': 'UNDERGRADUATE RESEARCH INTERNSHIP (STATE FARM R&D CENTER)',
'description': 'The Fall 2019 Internship Program at the State Farm Research and Development Center (RDC) provides an opportunity for paid research work with a top Fortune 500 Company. The RDC offers students a unique internship at its University of Illinois Research Park location, working on projects that have direct application to State Farm\'s research work.',
'type': 2,
'salary': 1,
'major': [2, 6, 7],
'standing': [0, 1, 2, 3],
'term': 1,
'contactEmail': 'nmamaril@illinois.edu',
'contactName': 'State Farm Research Center',
},
{'userId': userIDs[2],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT',
'description': 'Innovate 3D microplasma photonic crystal for achieving highly tunable and reconfigurable material systems for electromagnetic responses in the millimeter wave',
'type': 2,
'salary': 1,
'major': [5, 7, 12],
'standing': [0, 1, 2, 3],
'term': 1,
'contactEmail': 'peterpsun.experiment.2018@gmail.com',
'contactName': 'Peter P. Sun',
},
{'userId': userIDs[2],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Health Care Engineering Systems Center)',
'description': 'Spring/Summer 2019 part-time undergraduate hourly positions in the area of medical simulation and virtual reality',
'type': 2,
'salary': 2,
'major': [2, 5, 6, 7],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'hcesc@illinois.edu',
'contactName': 'Health Care Engineering Systems Center',
},
{'userId': userIDs[1],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (HCESC - Virtual Reality Lab)',
'description': 'The HCESC Virtual Reality Lab is looking for undergraduate students who can commit to 10 hours per week for at least one semester to work on any of the two projects: 1) Developing AR/VR games for rehabilitation 2) Robotic Hand - Hand Exoskeleton',
'type': 2,
'salary': 2,
'major': [5, 6, 7],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'hsharif2@illinois.edu',
'contactName': 'Hajar Sharif',
},
{'userId': userIDs[1],
'jobName': 'UNDERGRADUATE HOURLY PROGRAMMER (NCSA)',
'description': 'The National Center for Supercomputing Applications (NCSA) is looking for a number of students (5 positions available) to work as part of a software team to develop a novel platform for the seamless and intuitive integration of an increasingly rich world of internet services.',
'type': 2,
'salary': 2,
'major': [5, 6, 7],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'mchenry@illinois.edu ',
'contactName': 'Dr. Kenton McHenry',
},
{'userId': userIDs[1],
'jobName': 'UNDERGRADUATE OFFICE ASSISTANT (Undergraduate Research, Engineering)',
'description': 'Engineering Undergraduate Research is looking for undergraduate students to assist in day-to-day administrative activities during the 2019-2020 academic year. The student assistant will report directly to the coordinator of undergraduate research. This is a paid hourly position with up to 15 hours per week that starts in fall 2019. ',
'type': 2,
'salary': 2,
'major': [5, 6, 7],
'standing': [1, 2, 3],
'term': 2,
'contactEmail': 'nmamaril@illinois.edu',
'contactName': 'Dr. Natasha Mamaril',
},
{'userId': userIDs[1],
'jobName': 'SUMMER UNDERGRADUATE RESEARCH IN PHARMACOLOGY & CANCER BIOLOGY',
'description': 'Duke University\'s Department of Pharmacology and Cancer Biology runs the Summer Undergraduate Research in PHarmacology and Cancer Biology (SURPH) fellowship program, which targets rising juniors and seniors at any U.S. university or college who are interested in future graduate study to obtain a PhD. ',
'type': 2,
'salary': 2,
'major': [5, 6, 7],
'standing': [2, 3],
'term': 2,
'contactEmail': 'baize@duke.edu',
'contactName': 'Jamie Baize-Smith',
},
{'userId': userIDs[1],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Sottos-White Research Group)',
'description': 'The research project proposes to develop microcapsules that exhibit controlled response to pH stimuli (i.e., acidic/basic conditions). These microcapsules can then be incorporated into other materials for developing smart multifunctional materials or drug carriers.',
'type': 2,
'salary': 2,
'major': [3, 4, 11, 12, 13, 14],
'standing': [2, 3],
'term': 2,
'contactEmail': 'thakare2@illinois.edu',
'contactName': 'Dhawal Thakare',
},
{'userId': userIDs[0],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Energy Transport Research Lab)',
'description': 'In this project, the student will help apply and test surface coatings that both (1) delay the frost formation and (2) allow for efficient removal of the frost.',
'type': 2,
'salary': 2,
'major': [3, 4, 11, 12, 13, 14],
'standing': [0, 1, 2, 3],
'term': 2,
'contactEmail': 'jscarpe2@illinois.edu',
'contactName': 'James Carpenter',
},
{'userId': userIDs[0],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Cyber Physical Computing Group)',
'description': 'In this project, we are going to build a fuel-saving routing service for general public use. You are going to learn how to combine multi modal data sources and machine learning to produce industry level systems running on our server cluster. We want to improve user experience by providing better UI and interaction design, on Android app and Web page.',
'type': 2,
'salary': 2,
'major': [3, 4, 11, 12, 13, 14],
'standing': [1, 2],
'term': 2,
'contactEmail': 'zhao97@illinois.edu',
'contactName': 'Yiran Zhao',
},
{'userId': userIDs[0],
'jobName': 'UNDERGRADUATE RESEARCH ASSISTANT (Advanced Reactors and Fuel Cycles)',
'description': 'he student will read, review, and edit draft reports, presentations, and articles regarding original research by the Advanced Reactors and Fuel Cycles group as they are generated. The student will review and edit these items for clarity, technical accuracy, grammar, format, flow, etc. This project is ideal for engineering undergraduates interested in learning about nuclear energy and improving their technical writing skills. A successful, interested student may be promoted to directly conducting computational nuclear engineering research in this group. This is a paid undergraduate hourly position which will require up to 10 hours per week on average.',
'type': 2,
'salary': 2,
'major': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14],
'standing': [0, 1, 2, 3],
'term': 2,
'contactEmail': 'kdhuff@illinois.edu',
'contactName': 'Prof. Kathryn Huff',
}
]
for i in range(len(researchPost)):
# POST the task
conn.request("POST", "/api/posts/add", json.dumps(researchPost[i]), headers)
response = conn.getresponse()
data = response.read()
d = json.loads(data)
# Exit gracefully
conn.close()
print(str(len(names)) + " users added at " + baseurl + ":" + str(port))
if __name__ == "__main__":
main(sys.argv[1:])