-
Notifications
You must be signed in to change notification settings - Fork 5
/
akademise.db
1548 lines (1162 loc) · 79.9 KB
/
akademise.db
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 13.1 (Debian 13.1-1.pgdg100+1)
-- Dumped by pg_dump version 13.1 (Debian 13.1-1.pgdg100+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: collab_requests; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.collab_requests (
id integer NOT NULL,
"requesterId" integer NOT NULL,
"requestedId" integer NOT NULL,
"projectId" integer NOT NULL,
"requestType" integer NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.collab_requests OWNER TO root;
--
-- Name: collab_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.collab_requests_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.collab_requests_id_seq OWNER TO root;
--
-- Name: collab_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.collab_requests_id_seq OWNED BY public.collab_requests.id;
--
-- Name: departments; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.departments (
department character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.departments OWNER TO root;
--
-- Name: event_favs; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.event_favs (
"userId" integer NOT NULL,
"eventId" integer NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.event_favs OWNER TO root;
--
-- Name: event_tags; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.event_tags (
id integer NOT NULL,
tag character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.event_tags OWNER TO root;
--
-- Name: events; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.events (
id integer NOT NULL,
"userId" integer,
type text,
"isPublic" boolean,
title text,
body text,
link text,
location text,
date timestamp with time zone,
other text,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.events OWNER TO root;
--
-- Name: events_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.events_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.events_id_seq OWNER TO root;
--
-- Name: events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.events_id_seq OWNED BY public.events.id;
--
-- Name: follows; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.follows (
id integer NOT NULL,
follower_user_id integer NOT NULL,
followed_user_id integer NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.follows OWNER TO root;
--
-- Name: follows_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.follows_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.follows_id_seq OWNER TO root;
--
-- Name: follows_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.follows_id_seq OWNED BY public.follows.id;
--
-- Name: notifications; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.notifications (
id integer NOT NULL,
"projectId" integer NOT NULL,
type integer NOT NULL,
"accepterId" integer NOT NULL,
"participantId" integer NOT NULL,
"receiverId" integer NOT NULL,
body text NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.notifications OWNER TO root;
--
-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.notifications_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.notifications_id_seq OWNER TO root;
--
-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id;
--
-- Name: project_collaborators; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.project_collaborators (
id integer NOT NULL,
project_id integer,
user_id integer
);
ALTER TABLE public.project_collaborators OWNER TO root;
--
-- Name: project_collaborators_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.project_collaborators_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_collaborators_id_seq OWNER TO root;
--
-- Name: project_collaborators_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.project_collaborators_id_seq OWNED BY public.project_collaborators.id;
--
-- Name: project_files; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.project_files (
id integer NOT NULL,
project_id integer,
file_name character varying(255),
file_type character varying(255),
file_path character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.project_files OWNER TO root;
--
-- Name: project_files_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.project_files_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_files_id_seq OWNER TO root;
--
-- Name: project_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.project_files_id_seq OWNED BY public.project_files.id;
--
-- Name: project_milestones; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.project_milestones (
id integer NOT NULL,
project_id integer,
date timestamp with time zone,
title character varying(255),
description text,
type character varying(255),
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.project_milestones OWNER TO root;
--
-- Name: project_milestones_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.project_milestones_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_milestones_id_seq OWNER TO root;
--
-- Name: project_milestones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.project_milestones_id_seq OWNED BY public.project_milestones.id;
--
-- Name: project_tags; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.project_tags (
id integer NOT NULL,
tag character varying(255),
project_id integer
);
ALTER TABLE public.project_tags OWNER TO root;
--
-- Name: project_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.project_tags_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.project_tags_id_seq OWNER TO root;
--
-- Name: project_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.project_tags_id_seq OWNED BY public.project_tags.id;
--
-- Name: projects; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.projects (
id integer NOT NULL,
"userId" integer,
title character varying(255),
summary text,
privacy boolean,
requirements text,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL,
description text,
status integer
);
ALTER TABLE public.projects OWNER TO root;
--
-- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.projects_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.projects_id_seq OWNER TO root;
--
-- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;
--
-- Name: tags; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.tags (
tag character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.tags OWNER TO root;
--
-- Name: titles; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.titles (
title character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.titles OWNER TO root;
--
-- Name: universities; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.universities (
university character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.universities OWNER TO root;
--
-- Name: user_interests; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.user_interests (
user_id integer NOT NULL,
interest character varying(255) NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.user_interests OWNER TO root;
--
-- Name: user_ups; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.user_ups (
id integer NOT NULL,
upper_user_id integer NOT NULL,
upped_user_id integer NOT NULL,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.user_ups OWNER TO root;
--
-- Name: user_ups_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.user_ups_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.user_ups_id_seq OWNER TO root;
--
-- Name: user_ups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.user_ups_id_seq OWNED BY public.user_ups.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: root
--
CREATE TABLE public.users (
id integer NOT NULL,
name character varying(255) NOT NULL,
surname character varying(255) NOT NULL,
profile_picture_url character varying(255),
scholar_profile_url character varying(255),
email character varying(255) NOT NULL,
password character varying(255) NOT NULL,
validation character varying(255),
"isValidated" boolean,
university character varying(255),
department character varying(255),
title character varying(255),
bio character varying(255),
citations integer,
"iIndex" integer,
"hIndex" integer,
"last5Year_citations" integer,
"last5Year_iIndex" integer,
"last5Year_hIndex" integer,
projects text,
"createdAt" timestamp with time zone NOT NULL,
"updatedAt" timestamp with time zone NOT NULL
);
ALTER TABLE public.users OWNER TO root;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: root
--
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO root;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: root
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: collab_requests id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.collab_requests ALTER COLUMN id SET DEFAULT nextval('public.collab_requests_id_seq'::regclass);
--
-- Name: events id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.events ALTER COLUMN id SET DEFAULT nextval('public.events_id_seq'::regclass);
--
-- Name: follows id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.follows ALTER COLUMN id SET DEFAULT nextval('public.follows_id_seq'::regclass);
--
-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.notifications ALTER COLUMN id SET DEFAULT nextval('public.notifications_id_seq'::regclass);
--
-- Name: project_collaborators id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.project_collaborators ALTER COLUMN id SET DEFAULT nextval('public.project_collaborators_id_seq'::regclass);
--
-- Name: project_files id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.project_files ALTER COLUMN id SET DEFAULT nextval('public.project_files_id_seq'::regclass);
--
-- Name: project_milestones id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.project_milestones ALTER COLUMN id SET DEFAULT nextval('public.project_milestones_id_seq'::regclass);
--
-- Name: project_tags id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.project_tags ALTER COLUMN id SET DEFAULT nextval('public.project_tags_id_seq'::regclass);
--
-- Name: projects id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.projects ALTER COLUMN id SET DEFAULT nextval('public.projects_id_seq'::regclass);
--
-- Name: user_ups id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.user_ups ALTER COLUMN id SET DEFAULT nextval('public.user_ups_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: root
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: collab_requests; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.collab_requests (id, "requesterId", "requestedId", "projectId", "requestType", "createdAt", "updatedAt") FROM stdin;
72 35 20 38 1 2021-01-26 11:06:24.303+00 2021-01-26 11:06:24.303+00
6 5 1 17 0 2021-01-25 07:09:22.015+00 2021-01-25 07:09:22.015+00
7 6 5 18 1 2021-01-25 07:10:03.407+00 2021-01-25 07:10:03.407+00
8 5 1 18 0 2021-01-25 07:18:01.928+00 2021-01-25 07:18:01.928+00
77 18 27 64 0 2021-01-30 13:52:28.426+00 2021-01-30 13:52:28.426+00
79 18 20 64 0 2021-01-30 13:52:28.436+00 2021-01-30 13:52:28.436+00
80 18 35 64 0 2021-01-30 13:52:28.441+00 2021-01-30 13:52:28.441+00
81 18 38 64 0 2021-01-30 13:52:28.445+00 2021-01-30 13:52:28.445+00
82 18 40 64 0 2021-01-30 13:59:40.105+00 2021-01-30 13:59:40.105+00
83 18 7 64 0 2021-01-30 13:59:40.112+00 2021-01-30 13:59:40.112+00
84 18 33 64 0 2021-01-30 13:59:40.116+00 2021-01-30 13:59:40.116+00
85 41 28 47 1 2021-01-30 17:43:56.612+00 2021-01-30 17:43:56.612+00
86 41 28 53 1 2021-01-30 17:44:06.154+00 2021-01-30 17:44:06.154+00
22 5 6 12 0 2021-01-25 11:43:08.242+00 2021-01-25 11:43:08.242+00
24 6 25 46 1 2021-01-25 12:29:35.768+00 2021-01-25 12:29:35.768+00
25 6 25 12 0 2021-01-25 12:31:11.899+00 2021-01-25 12:31:11.899+00
26 25 6 12 1 2021-01-25 15:11:12.46+00 2021-01-25 15:11:12.46+00
48 5 6 18 0 2021-01-25 18:34:55.723+00 2021-01-25 18:34:55.723+00
49 5 6 17 0 2021-01-25 19:46:46.486+00 2021-01-25 19:46:46.486+00
52 28 25 47 0 2021-01-25 20:45:59.576+00 2021-01-25 20:45:59.576+00
65 30 20 38 1 2021-01-26 08:58:26.333+00 2021-01-26 08:58:26.333+00
67 33 25 46 1 2021-01-26 09:08:24.681+00 2021-01-26 09:08:24.681+00
\.
--
-- Data for Name: departments; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.departments (department, "createdAt", "updatedAt") FROM stdin;
CmpE 2021-01-24 13:36:15.838+00 2021-01-24 13:36:15.838+00
Computer Engineering 2021-01-24 13:41:49.735+00 2021-01-24 13:41:49.735+00
Mechanical Engineering 2021-01-24 22:44:06.646+00 2021-01-24 22:44:06.646+00
IE 2021-01-25 12:05:28.057+00 2021-01-25 12:05:28.057+00
Chemistry 2021-01-26 11:21:02.333+00 2021-01-26 11:21:02.333+00
\.
--
-- Data for Name: event_favs; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.event_favs ("userId", "eventId", "createdAt", "updatedAt") FROM stdin;
25 9 2021-01-25 16:36:25.298+00 2021-01-25 16:36:25.298+00
18 7 2021-01-25 19:59:36.27+00 2021-01-25 19:59:36.27+00
8 9 2021-01-25 20:22:20.671+00 2021-01-25 20:22:20.671+00
18 21 2021-01-25 20:44:32.727+00 2021-01-25 20:44:32.727+00
20 29 2021-01-25 22:23:36.994+00 2021-01-25 22:23:36.994+00
33 29 2021-01-26 09:22:29.12+00 2021-01-26 09:22:29.12+00
28 9 2021-01-26 11:54:40.327+00 2021-01-26 11:54:40.327+00
37 26 2021-01-26 11:57:25.303+00 2021-01-26 11:57:25.303+00
38 49 2021-01-26 13:05:59.078+00 2021-01-26 13:05:59.078+00
42 9 2021-01-30 21:39:18.939+00 2021-01-30 21:39:18.939+00
\.
--
-- Data for Name: event_tags; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.event_tags (id, tag, "createdAt", "updatedAt") FROM stdin;
29 Computer Science 2021-01-25 11:54:38.956+00 2021-01-25 11:54:38.956+00
43 Football 2021-01-25 18:51:08.234+00 2021-01-25 18:51:08.234+00
43 Basketball 2021-01-25 18:51:08.235+00 2021-01-25 18:51:08.235+00
43 Decision Trees 2021-01-25 18:51:08.236+00 2021-01-25 18:51:08.236+00
44 Mathematics 2021-01-25 18:57:08.366+00 2021-01-25 18:57:08.366+00
44 Computer Science 2021-01-25 18:57:08.368+00 2021-01-25 18:57:08.368+00
48 Computer Science 2021-01-25 23:22:44.098+00 2021-01-25 23:22:44.098+00
49 Computer Science 2021-01-26 09:19:56.351+00 2021-01-26 09:19:56.351+00
49 Chess 2021-01-26 09:19:56.353+00 2021-01-26 09:19:56.353+00
58 Computer Science 2021-01-26 11:58:12.174+00 2021-01-26 11:58:12.174+00
59 Computer Science 2021-01-26 13:03:28.301+00 2021-01-26 13:03:28.301+00
60 Computer Science 2021-01-26 13:07:16.538+00 2021-01-26 13:07:16.538+00
61 Computer Science 2021-01-31 20:29:12.377+00 2021-01-31 20:29:12.377+00
73 Computer Science 2021-01-31 20:34:04.297+00 2021-01-31 20:34:04.297+00
73 Computer Engineering 2021-01-31 20:34:04.299+00 2021-01-31 20:34:04.299+00
74 Computer Science 2021-01-31 20:37:40.503+00 2021-01-31 20:37:40.503+00
75 Computer Science 2021-01-31 20:40:40.232+00 2021-01-31 20:40:40.232+00
75 Robotics 2021-01-31 20:40:40.233+00 2021-01-31 20:40:40.233+00
\.
--
-- Data for Name: events; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.events (id, "userId", type, "isPublic", title, body, link, location, date, other, "createdAt", "updatedAt") FROM stdin;
7 8 Meet-up t Competitive Algorithm Meet-up We are going to meet with competitive algorithm enthusiasts from all parts of Turkey. www.codewithus.com Istanbul, Turkey 2013-05-13 12:58:26+00 2021-01-24 15:32:31.445+00 2021-01-24 15:32:31.445+00
9 8 Meet-up t Competitive Algorithm Meet-up We are going to meet with competitive algorithm enthusiasts from all parts of Turkey. www.codewithus.com Istanbul, Turkey 2013-05-13 12:58:26+00 2021-01-24 16:21:49.695+00 2021-01-24 16:21:49.695+00
21 20 Meet-up t Ronan Anderson Tribute Dinner The Annual Ronan Anderson Tribute Dinner is one of St. Thomas’ premier community events. This annual dinner celebrates the life and legacy of Dr. Ronan Anderson, the valedictorian of St. Thomas' Class of 1966, an ex-public school teacher, who was awarded the Presidential Medal of Freedom in 2016. In addition to celebrating the achievements of Dr. Anderson's family and many friends, the dinner provides the opportunity for faculty and students to come together and help support St. Thomas St. Thomas Research Facility Llounge 2021-03-18 16:30:27+00 2021-01-25 10:41:50.321+00 2021-01-25 10:41:50.321+00
26 20 Summit t IOCON 2021 Tech Summit A dialogue session which aims to discuss the technological aspects of the LEO launch vehicle program. The dialogue session is supported by the French space agency CNES. This includes a panel discussion among experts in order to share expertise on this subject.\n\nWho: French space industry representatives, international partners, and space agencies.\n\nWhen: March 18, 2019, 4:30 – 7:00 PM local time (Paris, time zone UTC +1).\n Paris 52408 2021-03-18 11:05:38+00 2021-01-25 11:05:58.143+00 2021-01-25 11:05:58.143+00
28 20 Meet-up t Karlsruhe Alumni Paris Meetup Let's get together. Goethe Institute Paris Marbois 2021-02-19 10:00:23+00 2021-01-25 11:13:27.705+00 2021-01-25 11:13:27.705+00
29 18 Conference t Introduction Level Computer Science Open Lecture This is an introductory-level open course that no prior knowledge about the field is needed. Participants from any branch are welcome. www.biletburda.com/introduction-to-computer-science İstanbul / Tuzla, İdris Güllüce Culture Center 2021-01-30 12:00:31+00 2021-01-25 11:54:38.946+00 2021-01-25 11:54:38.946+00
43 25 Conference f 2st Robotics Conference This conference to discuss state-of-art properties of robots. robotics.com Istanbul, Turkey 2020-05-10 00:00:00+00 You are expected to have a knowledge about.. 2021-01-25 18:51:08.231+00 2021-01-25 20:57:27.636+00
44 25 Conference f 1st Deep Learning Conference We aim to discuss state-of-art algorithms deeplearning.com London 2021-03-12 00:00:00+00 payment is requires for the registration 2021-01-25 18:57:08.363+00 2021-01-25 20:59:16.322+00
58 37 Conference t Introduction to Basics of Quantum Mechanics An introductory conference about quantum mechanics. If you are interested or you want to learn about quantum mechanics this is the right place. No prior knowledge is needed. Boğaziçi University, North Campus, BM A2 2021-01-30 17:59:01+00 2021-01-26 11:58:12.17+00 2021-01-26 11:58:12.17+00
59 28 After Party t After party of final milestone It is only for group 6 zoom.link online 2020-01-26 19:00:00+00 zoom 2021-01-26 13:03:28.298+00 2021-01-26 13:03:28.298+00
60 38 Conference t Introduction to Basics of Quantum Mechanics An introductory conference about quantum mechanics. If you are interested or you want to learn about quantum mechanics this is the right place. No prior knowledge is needed. Boğaziçi University, North Campus, BM A2 2021-02-23 13:00:50+00 2021-01-26 13:07:16.536+00 2021-01-26 13:07:16.536+00
48 18 Meet-up t Coding Workshop We are going to code and learn together. Turkey, Ankara 2021-02-19 07:30:52+00 2021-01-25 23:22:44.095+00 2021-01-25 23:22:44.095+00
49 25 After Party t After party of final milestone I want to make a after party of this presentation zoom.link zoom 2021-01-26 19:00:00+00 It will be for only group 6 2021-01-26 09:19:56.349+00 2021-01-26 09:19:56.349+00
61 6 Conference t Progress of Projects Progress presentations will be performed during conference. moodle.boun.edu.tr zoom 2021-02-21 15:30:00+00 2021-01-31 20:29:12.373+00 2021-01-31 20:29:12.373+00
73 6 After Party t CmpE Boat Party To get away from the semesters stress and enjoy with professors and other students, all CmpE members are invited. cmpe.boun.edu.tr Boat at Arnavutkoy 2021-04-17 00:00:00+00 Pizza and Lahmacun will be served 2021-01-31 20:34:04.295+00 2021-01-31 20:34:04.295+00
74 5 Conference t ICMI Machine Intelligence Conference www.waset.org Melbourne 2021-02-01 00:00:00+00 The conference will take 2 days. 2021-01-31 20:37:40.5+00 2021-01-31 20:37:40.5+00
75 5 Conference t ICIS Intelligent Systems Conference www.waset.org Bangkok 2021-02-04 00:00:00+00 The conference will take 2 days 2021-01-31 20:40:40.228+00 2021-01-31 20:40:40.228+00
\.
--
-- Data for Name: follows; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.follows (id, follower_user_id, followed_user_id, "createdAt", "updatedAt") FROM stdin;
1 20 8 2021-01-25 00:45:08.18+00 2021-01-25 00:45:08.18+00
2 20 7 2021-01-25 00:45:09.455+00 2021-01-25 00:45:09.455+00
3 5 6 2021-01-25 11:43:19.608+00 2021-01-25 11:43:19.608+00
5 18 17 2021-01-25 12:11:05.752+00 2021-01-25 12:11:05.752+00
8 18 6 2021-01-25 12:11:20.2+00 2021-01-25 12:11:20.2+00
9 6 25 2021-01-25 12:25:00.469+00 2021-01-25 12:25:00.469+00
18 28 25 2021-01-25 20:18:50.895+00 2021-01-25 20:18:50.895+00
21 25 28 2021-01-25 22:01:14.105+00 2021-01-25 22:01:14.105+00
22 30 18 2021-01-26 08:57:46.961+00 2021-01-26 08:57:46.961+00
23 33 8 2021-01-26 09:07:43.804+00 2021-01-26 09:07:43.804+00
24 33 25 2021-01-26 09:08:07.655+00 2021-01-26 09:08:07.655+00
26 35 8 2021-01-26 11:23:58.919+00 2021-01-26 11:23:58.919+00
27 35 20 2021-01-26 11:24:01.88+00 2021-01-26 11:24:01.88+00
28 35 6 2021-01-26 11:24:24.654+00 2021-01-26 11:24:24.654+00
30 35 27 2021-01-26 11:25:02.58+00 2021-01-26 11:25:02.58+00
31 35 36 2021-01-26 11:30:57.238+00 2021-01-26 11:30:57.238+00
32 35 30 2021-01-26 11:30:57.976+00 2021-01-26 11:30:57.976+00
33 35 17 2021-01-26 11:31:15.934+00 2021-01-26 11:31:15.934+00
34 37 7 2021-01-26 11:48:29.146+00 2021-01-26 11:48:29.146+00
35 37 28 2021-01-26 11:48:56.594+00 2021-01-26 11:48:56.594+00
36 27 17 2021-01-26 12:41:55.351+00 2021-01-26 12:41:55.351+00
37 27 34 2021-01-26 12:41:56.711+00 2021-01-26 12:41:56.711+00
38 27 36 2021-01-26 12:42:27.936+00 2021-01-26 12:42:27.936+00
39 38 7 2021-01-26 12:53:51.6+00 2021-01-26 12:53:51.6+00
40 35 7 2021-01-26 12:53:51.854+00 2021-01-26 12:53:51.854+00
42 38 28 2021-01-26 12:54:24.663+00 2021-01-26 12:54:24.663+00
43 35 38 2021-01-26 12:55:29.811+00 2021-01-26 12:55:29.811+00
45 41 28 2021-01-30 17:43:48.785+00 2021-01-30 17:43:48.785+00
46 28 38 2021-01-30 19:38:41.564+00 2021-01-30 19:38:41.564+00
\.
--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.notifications (id, "projectId", type, "accepterId", "participantId", "receiverId", body, "createdAt", "updatedAt") FROM stdin;
81 18 0 27 27 5 user 27 accepted collaboration request concerning project 18 2021-01-26 08:17:26.377+00 2021-01-26 08:17:26.377+00
86 46 0 25 30 30 user 25 accepted collaboration request concerning project 46 2021-01-26 09:13:20.034+00 2021-01-26 09:13:20.034+00
89 47 0 28 34 34 user 28 accepted collaboration request concerning project 47 2021-01-26 09:36:07.327+00 2021-01-26 09:36:07.327+00
90 47 1 34 34 7 user 34 joined to project 47 2021-01-26 09:36:07.33+00 2021-01-26 09:36:07.33+00
97 60 5 35 35 36 User 35 followed user 36 2021-01-26 11:30:57.241+00 2021-01-26 11:30:57.241+00
98 60 5 35 35 30 User 35 followed user 30 2021-01-26 11:30:57.979+00 2021-01-26 11:30:57.979+00
99 60 5 35 35 17 User 35 followed user 17 2021-01-26 11:31:15.937+00 2021-01-26 11:31:15.937+00
100 60 5 37 37 7 User 37 followed user 7 2021-01-26 11:48:29.149+00 2021-01-26 11:48:29.149+00
103 47 1 37 37 7 user 37 joined to project 47 2021-01-26 11:52:36.779+00 2021-01-26 11:52:36.779+00
104 47 1 37 37 34 user 37 joined to project 47 2021-01-26 11:52:36.781+00 2021-01-26 11:52:36.781+00
105 60 5 27 27 17 User 27 followed user 17 2021-01-26 12:41:55.354+00 2021-01-26 12:41:55.354+00
106 60 5 27 27 34 User 27 followed user 34 2021-01-26 12:41:56.713+00 2021-01-26 12:41:56.713+00
107 60 5 27 27 36 User 27 followed user 36 2021-01-26 12:42:27.939+00 2021-01-26 12:42:27.939+00
108 60 5 38 38 7 User 38 followed user 7 2021-01-26 12:53:51.602+00 2021-01-26 12:53:51.602+00
109 60 5 35 35 7 User 35 followed user 7 2021-01-26 12:53:51.856+00 2021-01-26 12:53:51.856+00
110 60 5 35 35 25 User 35 followed user 25 2021-01-26 12:54:19.716+00 2021-01-26 12:54:19.716+00
112 60 5 35 35 38 User 35 followed user 38 2021-01-26 12:55:29.814+00 2021-01-26 12:55:29.814+00
113 47 0 28 38 38 user 28 accepted collaboration request concerning project 47 2021-01-26 12:59:01.973+00 2021-01-26 12:59:01.973+00
114 47 1 38 38 7 user 38 joined to project 47 2021-01-26 12:59:01.976+00 2021-01-26 12:59:01.976+00
115 47 1 38 38 34 user 38 joined to project 47 2021-01-26 12:59:01.978+00 2021-01-26 12:59:01.978+00
116 47 1 38 38 37 user 38 joined to project 47 2021-01-26 12:59:01.98+00 2021-01-26 12:59:01.98+00
118 46 1 28 28 30 user 28 joined to project 46 2021-01-30 15:58:44.31+00 2021-01-30 15:58:44.31+00
120 60 5 28 28 6 User 28 followed user 6 2021-01-30 16:38:16.269+00 2021-01-30 16:38:16.269+00
121 64 -1 36 36 18 User 36 rejected collaboration request of user 18 concerning project 64 2021-01-30 16:54:51.063+00 2021-01-30 16:54:51.063+00
123 60 5 28 28 38 User 28 followed user 38 2021-01-30 19:38:41.567+00 2021-01-30 19:38:41.567+00
79 35 1 5 5 5 user 5 joined to project 35 2021-01-25 21:48:19.531+00 2021-01-25 21:48:19.531+00
\.
--
-- Data for Name: project_collaborators; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.project_collaborators (id, project_id, user_id) FROM stdin;
12 42 20
14 35 25
23 47 7
28 35 5
30 18 27
32 46 30
34 47 34
35 59 28
36 47 37
37 47 38
38 46 28
39 53 25
\.
--
-- Data for Name: project_files; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.project_files (id, project_id, file_name, file_type, file_path, "createdAt", "updatedAt") FROM stdin;
2 38 deneme text/plain \N 2021-01-25 00:44:43.713+00 2021-01-25 00:44:43.713+00
3 38 Formulaire_OFII_visite_medicale-2.pdf application/pdf \N 2021-01-25 23:06:57.362+00 2021-01-25 23:06:57.362+00
5 47 Art.txt text/plain \N 2021-01-26 12:03:36.509+00 2021-01-26 12:03:36.509+00
\.
--
-- Data for Name: project_milestones; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.project_milestones (id, project_id, date, title, description, type, "createdAt", "updatedAt") FROM stdin;
2 35 2021-02-27 00:00:00+00 Deadline Presentation Deadline \N 2021-01-24 23:14:34.97+00 2021-01-24 23:14:34.97+00
4 38 2021-03-13 00:00:00+00 Submission Deadline Papers will be submitted to IOCON2021 \N 2021-01-24 23:35:19.942+00 2021-01-24 23:35:51.94+00
7 44 2025-12-25 00:00:00+00 Event 1 I want to send a paper to this evetn \N 2021-01-25 12:11:33.558+00 2021-01-25 12:11:33.558+00
8 45 2021-12-12 00:00:00+00 Finishing Paper Named Cats First step of the project is this. \N 2021-01-25 12:17:28.224+00 2021-01-25 12:17:28.224+00
9 46 2030-12-15 00:00:00+00 Deadline it is the deadline \N 2021-01-25 12:23:40.018+00 2021-01-25 14:17:32.409+00
16 51 2021-01-01 00:00:00+00 Conference I want to attend this conference with this project. \N 2021-01-25 19:48:11.55+00 2021-01-25 19:48:11.55+00
17 52 2025-01-01 00:00:00+00 Final Milestone It is the date that all the deliverables must be completed and done. \N 2021-01-25 19:57:26.464+00 2021-01-25 19:57:26.464+00
18 53 2022-12-18 00:00:00+00 Conference I want to attend this conference with multiple paper. \N 2021-01-25 20:29:54.511+00 2021-01-25 20:29:54.511+00
22 46 2023-12-12 00:00:00+00 Milestone 1 I want to sent a paper to this conference \N 2021-01-26 09:15:09.504+00 2021-01-26 09:15:31.282+00
23 59 2022-01-19 00:00:00+00 Delivery Date Delivery Date \N 2021-01-26 09:33:07.446+00 2021-01-26 09:33:31.591+00
13 47 2023-06-20 00:00:00+00 Deadline It is the date that project must be completed. \N 2021-01-25 19:34:05.274+00 2021-01-26 09:38:19.034+00
6 12 2022-12-25 00:00:00+00 Event 1 We want to present demo to audience \N 2021-01-25 11:36:03.598+00 2021-01-26 10:59:32.762+00
10 12 2023-02-22 00:00:00+00 Final Action We will complete our tasks and perform the outcome. \N 2021-01-25 13:02:09.054+00 2021-01-26 11:01:22.617+00
25 42 2021-02-26 00:00:00+00 Submission We will submit our papers to Vac 21 \N 2021-01-26 11:01:28.315+00 2021-01-26 11:01:50.999+00
3 35 2021-01-12 00:00:00+00 Progress presentation We will prepare a demo about the progress that we have done. \N 2021-01-24 23:15:19.402+00 2021-01-26 11:06:11.953+00
27 62 2022-01-31 00:00:00+00 Final Delivery Date Final Delivery Date \N 2021-01-26 12:56:22.397+00 2021-01-26 12:56:39.358+00
28 47 2023-12-12 00:00:00+00 Conference 2 I want to submit a paper to this conference \N 2021-01-26 13:00:41.913+00 2021-01-26 13:00:41.913+00
24 47 2023-12-12 00:00:00+00 Conference 1 I want to prepare two papers for this conference \N 2021-01-26 09:37:49.147+00 2021-01-26 13:01:02.494+00
29 63 2022-01-31 00:00:00+00 Watch NBA NBA match will take place \N 2021-01-27 19:11:55.689+00 2021-01-31 20:13:05.831+00
31 68 2021-11-20 00:00:00+00 First Try We will try to film 7D movie \N 2021-01-31 20:17:05.833+00 2021-01-31 20:17:05.833+00
32 69 2021-02-23 00:00:00+00 First Gathering Everybody will get to know each other \N 2021-01-31 20:23:02.911+00 2021-01-31 20:23:02.911+00
\.
--
-- Data for Name: project_tags; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.project_tags (id, tag, project_id) FROM stdin;
104 Computer Science 62
105 Texture 47
106 Basketball 63
107 Physical Reactions 63
109 Computer Science 64
12 Gaming 12
18 Nanonetworking 17
19 Machine Learning 18
20 Gaming 18
40 Foreigners 12
44 Trains 38
45 Mechanics 38
46 Mathematics 38
55 Chess 35
59 Computer Science 42
60 Computer Science 44
61 Data Science 44
62 Mathematics 44
63 Decision Trees 44
64 Animals 45
65 Segmentation 45
66 Cats 45
68 Animals 46
69 Robotics 46
73 generative 47
74 art 47
79 Computer Science 51
80 Mathematics 51
81 automata 51
82 Mathematics 52
83 ROS 52
84 Robotics 52
85 automata 52
86 Computer Science 52
87 Navigation 52
88 Computer Science 53
89 Data Science 53
90 Planet 53
93 Robots 46
94 Computer Science 59
96 Computer Science 12
97 art 12
98 Chemical Reactions 42
99 Computer Science 35
100 Robotics 35
101 ROS 35
102 Embedded 35
111 Texture 68
112 Movies 68
113 Cinema 68
114 Movies 68
115 Robotics 69
116 Space 69
\.
--
-- Data for Name: projects; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.projects (id, "userId", title, summary, privacy, requirements, "createdAt", "updatedAt", description, status) FROM stdin;
17 5 8G Networks Insert abstract here! f Great bandwith 2021-01-24 17:53:54.818+00 2021-01-24 17:53:54.818+00 \N 0
18 5 Machine Learning Game Gamification f None 2021-01-24 18:21:34.78+00 2021-01-24 18:21:34.78+00 ML \N
12 6 Machine Learning Game of Drones Why do drones keep crashing into things? Well, not for lack of trying. A recently released video shows that these new gadgets have really come of age, having gone from two wheels to four, from autopilot to highly sophisticated artificial intelligence.\n\nThe video shows a University of Bristol team deploying a "SongBand" drone to create a unique, electronic melody. t Qualified ones are welcomed\n1 Cs student\n2 Conservatory graduate\n1 Artist 2021-01-24 17:41:49.907+00 2021-01-26 11:09:16.475+00 ML 2
38 20 Iron Industries: Chromework Locomotives Iron Industries has completed a cost and risk based analysis on three existing locomotive firms, analyzing how their current workforce structure and mix of local versus offshore skilled workers have affected productivity, profitability, capital investment, workforce growth and average worker productivity. t Degree in Mechanics OR History (Specialized in 19th century tech).\nRussian (B2 or above) 2021-01-24 23:35:14.155+00 2021-01-25 10:17:15.321+00 \N 2
52 28 Vacuum Cleaner Robot Vacuum cleaner robots are so trendy nowadays. So that I want to produce one, too. t I want to work with students and academicians that are experienced with robotics. Please send your CV's to my mail address. 2021-01-25 19:55:54.853+00 2021-01-25 19:57:43.762+00 \N 4
53 28 Segmentation of Tree Species I aim to segment different tree species. So that we will be able to do that .. t I want to work with researchers that are experienced with deep learning and have multiple projects on it. 2021-01-25 20:28:40.993+00 2021-01-25 20:29:54.501+00 \N 4
35 6 Chess Robots The Knight: A classic Chess board game from 1985 re-imagined for the touchscreen. Move your pawn in space with your finger or the arrow keys, and checkmate your opponent! The robot: Built by an experimental robotics lab at MIT, it learns through real-world experience to play Chess. The game was originally played on a hexagonal Chessboard. But now you can play the game on your computer, tablet, or phone screen. Easy, Quick, and Easy: Play Chess without leaving your home. t 2 Computer scientist\n2 Chess expert\n1 Electrical engineer 2021-01-24 23:13:13.98+00 2021-01-26 11:06:32.502+00 \N 4
59 34 Superposition Applications on Neuroscience Our aim is to make faster computations across computer networks by benefiting the superposition feature of the quantum systems. t A good grasp of quantum concepts.\nComputer network experience is a plus. 2021-01-26 09:33:05.075+00 2021-01-26 09:33:35.976+00 \N 4
47 28 Generative Art I want to create some beautiful generative art pieces. t I want to work with researchers and students that are interested in generative art and have knowledge about general concepts. 2021-01-25 19:32:22.234+00 2021-01-25 19:34:05.283+00 \N 4
44 25 Decision Trees This project is to find out whether a person is a cat person or dog person using decision tree algorithms. t I want to collaborate with academicians and students that are ... 2021-01-25 12:09:35.826+00 2021-01-25 12:11:33.545+00 \N 4
45 25 Segmentation of Animals Cats are very cute animals that must be cared so much. t I aim to segment all the objects of cats in a picture. 2021-01-25 12:15:58.407+00 2021-01-25 12:17:28.214+00 \N 4
42 7 Channel Modeling For Synaptic Molecular Communication Many biologically important molecules bind to neurons at multiple sites, including some that are structurally distinct. A collection of computational algorithms has been developed to model protein-protein interactions, and it has been shown that using specific information, such as the distances between the two domains, the models can also accurately predict many other, non-physiological aspects of molecular binding. t BSc in Molecular Chemistry, Computer Science or related fields 2021-01-25 08:06:29.842+00 2021-01-26 11:01:52.258+00 \N 4
51 28 2D Cellular Automata Cellular automata rules are amazing. They can generate some texture that are in the nature. I want to explore it more. t I want to work with mathematicians that are eager to complete some hard tasks. 2021-01-25 19:46:21.187+00 2021-01-25 19:48:11.542+00 \N 4
46 25 Cat Robot I want to make a robot that is cute and useful. Then it must be cat shaped. t My aim is to build a robot that is cat shaped. 2021-01-25 12:21:52.301+00 2021-01-26 09:09:29.654+00 \N 4
60 36 Many‐Electron Theory of Atoms and Molecules. I. Shells, Electron Pairs vs Many‐Electron Correlations A theory is developed (a) to see what the physically important features of correlation in atoms and molecules are; (b) based on this to obtain a quantitative scheme for N‐electron systems as in He and H2; (c) to see what happens to the ``chemical'' picture, to semiempirical theories, and to shell structure, when correlation is brought in. It is shown why, unlike in an electron gas, in many atoms and in molecules mainly pair correlations are significant. In configuration‐interaction, multiple excitations arise not as three or more electron ``collisions,'' but as several binary ``collisions'' taking place separately but at the same time. The validity of theory is shown on Be, LiH, and boron. The theory does not depend on any perturbation or series expansion and the r12‐coordinate method can now be used for an N‐electron system as in He and H2. t 2021-01-26 11:22:47.838+00 2021-01-26 11:22:52.46+00 \N 2
62 38 Benefiting Entanglement Principles at Distance Communication We are working on data transfer between distance places by using quantum features. Entanglement principle opens new and interesting doors in terms of distant transfer. When 2 quantum entities are entangled, change in one entity effects the other one immediately. t A good grasp of quantum concepts.\nComputer network experience is a plus.\n\nIf you are curious about the topic please do not hesitate to contact us. 2021-01-26 12:56:19.077+00 2021-01-26 12:56:42.174+00 \N 2
64 18 Research on Fininte Automata We are making reasearch on finite automata. t 2021-01-30 13:34:16.355+00 2021-01-30 13:34:16.355+00 \N 2
63 6 Basketball Physics This course introduces to an everyday basketball player the scientific principles which govern basketball and shares them with the public in a fun and engaging manner. We'll learn about energy transfer, friction, momentum, gravity, pressure, mass, tension and more. You'll also study visual perception and time, as well as discover the most efficient path to the basket. f General knowledge about basketball and physics 2021-01-27 19:11:35.344+00 2021-01-31 20:13:07.975+00 \N 4
68 6 7D Cinema From the architect. The 7D Cinema Building is located in Zaytsevskoye settlement, and its initial purpose was the cinema-theater. Before the renovation, the building comprised 5 storeys, each containing a cinema room, a storage room, an administration, etc.\n\nBefore working with the building, the urban planner employed analysis of space, scale, environment and the presence t Anybody who is interested in cinematography welcomed 2021-01-31 20:16:25.432+00 2021-01-31 20:17:05.826+00 \N 4
69 6 Extra-Terrestrial The classic look and feel of a traditional wedge have been taken into the new Vokey SM7 wedges, with the distinctive bowl shape now emphasised by the crown, leading to a less offset look on all lines. The matt finish allows the fade to offer multiple options, from traditional to multi-directional, while the interior gradient offers line options from sweet spots all the way to the toe of the wedge. t At least space engineering Bachelor's degree 2021-01-31 20:19:26.149+00 2021-01-31 20:23:02.9+00 \N 4
\.
--
-- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: root
--
COPY public.tags (tag, "createdAt", "updatedAt") FROM stdin;
Mathematics 2021-01-24 13:41:59.759+00 2021-01-24 13:41:59.759+00
Computer Science 2021-01-24 13:42:04.139+00 2021-01-24 13:42:04.139+00
Football 2021-01-24 16:17:39.264+00 2021-01-24 16:17:39.264+00
Basketball 2021-01-24 16:17:39.278+00 2021-01-24 16:17:39.278+00
Chess 2021-01-24 16:34:08.736+00 2021-01-24 16:34:08.736+00
Astrology 2021-01-24 17:39:08.296+00 2021-01-24 17:39:08.296+00
Astronomy 2021-01-24 17:39:08.31+00 2021-01-24 17:39:08.31+00
Physical Reactions 2021-01-24 18:57:04.103+00 2021-01-24 18:57:04.103+00
Jeology 2021-01-24 20:55:30.058+00 2021-01-24 20:55:30.058+00
Foreigners 2021-01-24 20:55:54.835+00 2021-01-24 20:55:54.835+00
Chemical Reactions 2021-01-24 20:55:54.844+00 2021-01-24 20:55:54.844+00
Fluid Dynamics 2021-01-24 22:45:58.86+00 2021-01-24 22:45:58.86+00
Data Science 2021-01-24 23:13:13.91+00 2021-01-24 23:13:13.91+00
Communication Skills 2021-01-24 23:13:13.926+00 2021-01-24 23:13:13.926+00
Animals 2021-01-24 23:37:24.134+00 2021-01-24 23:37:24.134+00
Crypto Currency 2021-01-24 23:37:24.154+00 2021-01-24 23:37:24.154+00
Decision Trees 2021-01-25 12:09:35.819+00 2021-01-25 12:09:35.819+00
Segmentation 2021-01-25 12:15:58.398+00 2021-01-25 12:15:58.398+00
Cats 2021-01-25 12:19:03.788+00 2021-01-25 12:19:03.788+00
Robotics 2021-01-25 12:21:52.305+00 2021-01-25 12:21:52.305+00
ROS 2021-01-25 14:15:25.794+00 2021-01-25 14:15:25.794+00
Embedded 2021-01-25 17:44:57.546+00 2021-01-25 17:44:57.546+00
Go 2021-01-25 17:56:07.702+00 2021-01-25 17:56:07.702+00
generative 2021-01-25 19:32:22.225+00 2021-01-25 19:32:22.225+00
art 2021-01-25 19:32:22.232+00 2021-01-25 19:32:22.232+00
perlin 2021-01-25 19:40:53.478+00 2021-01-25 19:40:53.478+00
noise 2021-01-25 19:40:53.48+00 2021-01-25 19:40:53.48+00