-
Notifications
You must be signed in to change notification settings - Fork 2
/
home-copy.html
executable file
·975 lines (975 loc) · 68.2 KB
/
home-copy.html
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
<!DOCTYPE html>
<!-- This site was created in Webflow. http://www.webflow.com -->
<!-- Last Published: Wed Apr 29 2020 05:21:36 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="5ea90cbeecdbea73be6617ab" data-wf-site="5b5f81bcbb5a838152243b33">
<head>
<meta charset="utf-8">
<title>Creating an army</title>
<meta content="We are creating an army to fight plastic pollution." name="description">
<meta content="Creating an army" property="og:title">
<meta content="We are creating an army to fight plastic pollution." property="og:description">
<meta content="https://drive.google.com/drive/u/0/folders/1DK8-BoQgd-Ru4XeOCZELOGRULtzHOiIF" property="og:image">
<meta content="summary" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="enfM6Jg5WWayZSItPZDNLcs88METkRWjGZYTIWbFVDE" name="google-site-verification">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/next-v4.webflow.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Open Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic","Varela Round:400"] }});</script>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.png" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.png" rel="apple-touch-icon">
<meta name="“google-site-verification”" content="“enfM6Jg5WWayZSItPZDNLcs88METkRWjGZYTIWbFVDE”">
</head>
<body>
<div class="next-creating-an-army"><img src="images/creating-an-army.png" srcset="images/creating-an-army-p-500.png 500w, images/creating-an-army-p-800.png 800w, images/creating-an-army-p-1080.png 1080w, images/creating-an-army-p-1600.png 1600w, images/creating-an-army-p-2000.png 2000w, images/creating-an-army-p-2600.png 2600w, images/creating-an-army-p-3200.png 3200w, images/creating-an-army.png 4000w" sizes="100vw" alt="" class="creating-an-army"></div>
<div class="next-video">
<div class="html-video-embedd w-embed w-iframe"><iframe style="position: absolute; top: 0; left: 0;" src="https://www.youtube.com/embed/XCZm2-Qurw8?rel=0&controls=0&showinfo=0" width="100%" height="100%" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen=""></iframe></div>
</div>
<div class="next-v4-coming"><img src="images/v4-coming.png" srcset="images/v4-coming-p-500.png 500w, images/v4-coming-p-800.png 800w, images/v4-coming-p-1080.png 1080w, images/v4-coming-p-1600.png 1600w, images/v4-coming-p-2000.png 2000w, images/v4-coming-p-2600.png 2600w, images/v4-coming.png 3000w" sizes="(max-width: 767px) 100vw, 80vw" alt="" class="v4-is-coming"></div>
<div class="next-v4-what-we-have">
<div class="next-v4-container w-clearfix">
<div class="wrap-assets">
<div class="asset">
<div class="asset-content-wrapper"><img src="images/tick-mark.png" width="80" alt="" class="tick-img"><img src="images/plan.gif" width="100" alt="" class="assets-gif">
<div class="asset-text-wrapper">
<h1 class="h1-assets">We have a plan</h1>
<p class="p-assets">A solid plan with clear goals, tasks, strategies and directions to create concrete solutions to fight plastic pollution.</p><a href="https://drive.google.com/file/d/1EJN2yrBsT6DaQ85beM2daFo2c34g2Ze-/view" target="_blank" class="learn-more">Read the plan</a></div>
</div>
</div>
<div class="asset">
<div class="asset-content-wrapper"><img src="images/tick-mark.png" width="75" alt="" class="tick-img"><img src="https://uploads-ssl.webflow.com/5b56ee8f18c0112155c42ac0/5b5ef8ba89ff9cdc89256502_budget-gif.gif" width="100" alt="" class="assets-gif">
<div class="asset-text-wrapper">
<h1 class="h1-assets">Enough money</h1>
<p class="p-assets">We <a href="https://davehakkens.nl/preciousplastic/won-300-000-euro-and-bought-something-incredible/" target="_blank" class="inline-links">won 300.000€</a> to use for Version 4. Thank you FAMAE</p><img src="images/grinning-face-with-smiling-eyes_1f601.png" alt="" class="emoji-smiley">
<p class="p-assets extra-margin">We will spend 99.99% of the money to tackle the plastic problem.</p>
</div>
</div>
</div>
<div class="asset">
<div class="asset-content-wrapper"><img src="images/tick-mark.png" width="75" alt="" class="tick-img"><img src="images/workspace-gif.gif" width="100" alt="" class="assets-gif">
<div class="asset-text-wrapper">
<h1 class="h1-assets">A big workspace</h1>
<p class="p-assets">The city of Eindhoven donated us a massive space! It's big, central and ideal to develop Precious Plastic Version 4. </p>
</div>
</div>
</div>
<div class="asset">
<div class="asset-content-wrapper"><img src="images/tick-mark-EMPTY.png" width="75" alt="" class="tick-img"><img src="images/team-3.gif" width="100" alt="" class="assets-gif">
<div class="asset-text-wrapper">
<h1 class="h1-assets">An army of people</h1>
<p class="p-assets">We are putting together the best possible team of dedicated people from around the world. Designers, developers, engineers, activist & more will help the project blossom.</p>
</div>
</div>
</div>
</div><img src="images/arrow-down.png" width="200" srcset="images/arrow-down-p-500.png 500w, images/arrow-down.png 600w" sizes="(max-width: 479px) 25vw, (max-width: 991px) 20vw, 200px" alt="" class="next-v4-arrow-down"><img src="images/pick-task.png" width="1000" srcset="images/pick-task-p-500.png 500w, images/pick-task-p-800.png 800w, images/pick-task-p-1080.png 1080w, images/pick-task-p-1600.png 1600w, images/pick-task-p-2000.png 2000w, images/pick-task.png 2500w" sizes="(max-width: 991px) 78vw, 98vw" alt="" class="next-v4-pick-task"></div>
</div>
<div class="next-v4-projects"><img src="images/red-bg.png" srcset="images/red-bg-p-500.png 500w, images/red-bg-p-800.png 800w, images/red-bg-p-1080.png 1080w, images/red-bg-p-1600.png 1600w, images/red-bg-p-2000.png 2000w, images/red-bg-p-2600.png 2600w, images/red-bg.png 3000w" sizes="100vw" alt="" class="red-bg-top">
<div class="projects-category machines">
<div class="next-v4-container">
<div class="category-wrapper machines">
<div class="category-header-wrapper">
<h1 class="h1-cat-header white">Machines & Tools</h1><img src="images/robot-face_1f916.png" width="50" alt="" class="emoji-machines"></div>
<p class="p-next white">We are looking for people to help us develop and improve our open source machines to recycle plastic. Some high priority topics are safety, efficiency, washing, sorting and robotics. We will also develop brand new machines and tools to work with plastic. Teams of 2-3 people will lead each project. Below you can find the projects we will focus on:<br></p>
</div>
<div class="projects-wrapper red">
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Improve machines' safety</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper safety-res">
<div class="project-position-pic safety-des"></div>
<h6 class="project-position-text">Researcher</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper safety-eng">
<div class="project-position-pic safety-eng"></div>
<h6 class="project-position-text">Engineer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">We want to research health hazards (fumes, micro-plastic) created while working with plastic and develop improvements and add-ons to make the current Precious Plastic processes and machines safer and less harmful for the environment. <a href="https://www.instagram.com/p/BkV18kEF6nv/?taken-by=themakerspace" target="_blank" class="inline-links">Here</a> and <a href="https://www.instagram.com/p/BkV18kEF6nv/?taken-by=themakerspace" target="_blank" class="inline-links">here</a> you can find some relevant inspiration to get you going. We are looking for:<br></p>
<h5 class="project-position-next">1 Reseacher</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593624" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Sheet-press machine</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper sheet-eng">
<div class="project-position-pic sheet-eng"></div>
<h6 class="project-position-text">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper sheet-des">
<div class="project-position-pic sheet-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">This is the most requested machine from our community, as it opens up a big range of new possibilities to work with plastic waste. We aim to develop a sheet press to produce high quality sheets for larger scale applications (CNC, laser). Efficient, reliable and CE certified. <a href="https://davehakkens.nl/community/forums/topic/heat-press-machine/" class="inline-links">Here</a> & <a href="https://davehakkens.nl/community/forums/topic/diy-sheet-press/" target="_blank" class="inline-links">here</a> you can find some relevant inspiration to get you going. We are looking for:<br></p>
<h5 class="project-position-next">2 Engineers</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59364a" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Semi-industrial Extrusion</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper extrusion-eng">
<div class="project-position-pic extr-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper extrusion-des">
<div class="project-position-pic extr-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">We want to create a semi-industrial extrusion machine. This would increase the output and enable large scale applications for recycled plastic, like construction or interiors. Efficient, reliable and CE certificated. We are looking for:<br></p>
<h5 class="project-position-next">2 Engineers</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593669" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Semi-industrial Shredder</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper extrusion-eng">
<div class="project-position-pic extr-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper extrusion-des">
<div class="project-position-pic extr-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">We want to create a semi-industrial shredder to expand our inventory of open source machines. This would enable entrepreneurs, institutions and municipalities to recycle plastic in larger quantities. Efficient, reliable and CE certificated. We are looking for:<br></p>
<h5 class="project-position-next">1 Engineers</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593688" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">PET tool</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper pet-eng">
<div class="project-position-pic pet-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper pet-des">
<div class="project-position-pic pet-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">PET is one of the most common and challenging plastic to work with. We need to develop a low-tech machine/tool/technique to recycle PET which can be easily replicated worldwide. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5936a7" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Find a solution for styrofoam</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper styr-eng">
<div class="project-position-pic styr-eng-pic"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper styr-des">
<div class="project-position-pic styr-designer"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">Styrofoam is a widely used type of plastic, but hardly ever recycled. With some research and prototyping we want to develop a low-tech machine/tool/technique to recycle styrofoam. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5936c6" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">What to do with foils </h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper foil-eng">
<div class="project-position-pic foils-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper foil-des">
<div class="project-position-pic foils-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">Plastic foils often consist of a mix of plastic and aluminium layers fused together, which makes them very difficult to recycle. We need to develop a low-tech machine/tool/technique that can work with foils. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5936e5" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Dirty plastic, then what?</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper dirty-eng">
<div class="project-position-pic dirty-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper dirty-des">
<div class="project-position-pic dirty-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority</h4>
<p class="p-project-next">Some plastic is simply too polluted or mixed up for using it in standard recycling processes. We want to have a closer look into alternative solutions like plastic-to-oil or plastic-to-energy and develop a replicable technique/machine to get the most out of this really nasty plastic waste. <a href="https://davehakkens.nl/community/forums/topic/small-scale-pyrolysis-plant-for-making-fuel/#post-132354" target="_blank" class="inline-links">Here</a> you can find some relevant inspiration to get your imagination going. We are looking for:<br></p>
<p class="p-project-next">Some plastic is simply too polluted or mixed up for using it in standard recycling processes. We want to have a closer look into alternative solutions like plastic-to-oil or plastic-to-energy and develop a replicable technique/machine to get the most out of this really nasty plastic waste. <a href="https://davehakkens.nl/community/forums/topic/small-scale-pyrolysis-plant-for-making-fuel/#post-132354" target="_blank" class="inline-links">Here</a> you can find some relevant inspiration to get your imagination going. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593708" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Washing plastic</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper cleaning-eng">
<div class="project-position-pic clean-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper cleaning-des">
<div class="project-position-pic clean-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Properly cleaning (and drying) dirty plastic waste for recycling processes can be a big task (especially when taking into account water consumption). We want to develop an efficient and water saving washing system which works for small and large scale operations in various contexts. <a href="https://davehakkens.nl/community/forums/topic/washing-plastic/" target="_blank" class="inline-links">Here</a> you can find some relevant inspiration to get you going. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59372b" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Device to sort plastic</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper sorting-eng">
<div class="project-position-pic sort-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper sorting-des">
<div class="project-position-pic sort-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">It is a big challenge to differentiate and sort all the different plastic types, yet crucial in order to achieve the required material purity for further recycling processes. We want to develop a low cost device to properly scan and sort different types of plastic to be used in various locations and contexts. <a href="https://www.youtube.com/watch?v=aEFnh86olhg" target="_blank" class="inline-links">Here</a> & <a href="https://davehakkens.nl/community/forums/topic/plastic-sorting-a-personal-project/" target="_blank" class="inline-links">here</a> you can find some relevant inspiration to get you going. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593751" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Arduino controller</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper arduino-eng">
<div class="project-position-pic arduino-eng"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper arduino-des">
<div class="project-position-pic arduino-des"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Optional</h4>
<p class="p-project-next">We would like to redesign and build electronics units for all the machines using accessible technologies (Arduino, RaspberryPI) to avoid being dependent on cheap components from China. This should make everyone able to easily and affordably replicate the units and offer more flexibility to modify and improve the software. We are looking for:<br></p>
<h5 class="project-position-next">1 Nerd :)</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593770" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Robotic research</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper robotic-geek-1">
<div class="project-position-pic robotics-geek-1"></div>
<h6 class="project-position-text green">Geek</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper robotics-geek-2">
<div class="project-position-pic robotics-geek-2"></div>
<h6 class="project-position-text">Geek</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">Automation is a key factor to make recycling more efficient and economically interesting. We need some tech nerds :) to help set up a robotic ‘lab’ to explore, program and test possible applications of robotics for processes like sorting plastic types or production with the extrusion machine. We are looking for:<br></p>
<h5 class="project-position-next">2 Curious geeks :)</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/Srie6U" target="_blank" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months</h5>
</div>
</div>
</div>
</div>
</div>
</div><img src="images/red-bg-bottom.png" srcset="images/red-bg-bottom-p-500.png 500w, images/red-bg-bottom-p-800.png 800w, images/red-bg-bottom-p-1080.png 1080w, images/red-bg-bottom-p-1600.png 1600w, images/red-bg-bottom-p-2000.png 2000w, images/red-bg-bottom-p-2600.png 2600w, images/red-bg-bottom.png 3000w" sizes="100vw" alt="" class="red-gb-bottom">
<div class="projects-category products">
<div class="next-v4-container">
<div class="category-wrapper">
<div class="category-header-wrapper">
<h1 class="h1-cat-header">Product Design</h1><img src="images/gem-stone_1f48e.png" width="50" alt="" class="emoji-products"></div>
<p class="p-next">We are looking for designers to explore the opportunities and push the boundaries of the Precious Plastic machines to create useful and valuable products for the community to reproduce. Teams of 2-3 people will lead each project. Below you can find the projects we will focus on:<br></p>
</div>
<div class="projects-wrapper">
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Design with the big extrusion</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper pr-extr-des">
<div class="project-position-pic pr-extr-designer-1"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper pr-extr-des-2">
<div class="project-position-pic pr-extr-designer-1"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Get the most out of the current extrusion machine and find useful applications for a larger scale production (preferably in the construction sector). We are looking for:<br></p>
<h5 class="project-position-next">2 Product designer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/oUPJSZ" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5937b6" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Design with recycled sheets</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper sheet-des-2">
<div class="project-position-pic sheet-designer-1"></div>
<h6 class="project-position-text green">Designer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper sheet-des-1">
<div class="project-position-pic sheet-designer-2"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">Being able to produce recycled plastic sheets opens up a whole new world of possibilities. Thinking big scale while considering technologies like laser cutting and CNC milling, we need designers to come up with valuable applications for these recycled sheets which the community can replicate and take as an example. We are looking for:<br></p>
<h5 class="project-position-next">2 Product designer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/oUPJSZ" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5937d3" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Design products remotely </h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper beyond-eng">
<div class="project-position-pic beyond-engineer"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper beyond-des">
<div class="project-position-pic beyond-designer"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">For the more experienced Precious Plastic people with their own workspace around the world we would like to open up our doors and collaborate to design new products. Remotely. Big experiment. Give us a shout if you feel like helping us.<br></p>
<h5 class="project-position-next">Workspaces around the world</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/oUPJSZ" target="_blank" data-w-id="6019d0c6-eb21-3319-58d8-c6e4fcaf33c3" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: various</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Beyond Plastic</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper beyond-eng">
<div class="project-position-pic beyond-engineer"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper beyond-des">
<div class="project-position-pic beyond-designer"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">As the aim is to reduce plastic waste altogether, we also want to provide alternative solutions for plastic products. Research and develop products or applications working with organic/sustainable materials. We are looking for:<br></p>
<h5 class="project-position-next">1 Industrial designer</h5>
<h5 class="project-position-next">1 Engineer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/oUPJSZ" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5937f2" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
</div>
</div>
</div><img src="images/purple-bg-top.png" srcset="images/purple-bg-top-p-500.png 500w, images/purple-bg-top-p-800.png 800w, images/purple-bg-top-p-1080.png 1080w, images/purple-bg-top-p-1600.png 1600w, images/purple-bg-top-p-2000.png 2000w, images/purple-bg-top-p-2600.png 2600w, images/purple-bg-top.png 3000w" sizes="100vw" alt="" class="purple-bg-top">
<div class="projects-category web">
<div class="next-v4-container">
<div class="category-wrapper web">
<div class="category-header-wrapper">
<h1 class="h1-cat-header white">Web</h1><img src="images/crystal-ball_1f52e.png" width="50" alt="" class="emojo-web"></div>
<p class="p-next white">Precious Plastic meets, collaborates and shares online on our different platforms. We want to rethink them from the ground up, using the latest web technologies in order to deliver the best possible user experience to our global audience. This is crucial to help people tackle the problem effectively. Below is the projects/people we need:<br></p>
</div>
<div class="projects-wrapper purple">
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">UX Design</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper web-des-ux">
<div class="project-position-pic web-designer-ux"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">We need a person that is good at mapping out complex systems, create user flows, user personas and wireframes to provide an agile environment for quick iterations. You will make sure people can find everything they need on the website to get started, learn, share and collaborate to find solutions. We are looking for:<br></p>
<h5 class="project-position-next">1 UX designer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/m51uq4" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593815" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">UI Design</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper ui-des">
<div class="project-position-pic ui-designer"></div>
<h6 class="project-position-text">Engineer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">We are looking for a UI designer that, in continuous collaboration and conversation with the UX designer and frontend developers, can craft an engaging and beautiful interface to help meet user goals on the website while offering a performing experience. We are looking for:<br></p>
<h5 class="project-position-next">1 UI designer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/m51uq4" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59382d" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Frontend</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper frontend-2">
<div class="project-position-pic frontend-2-pic"></div>
<h6 class="project-position-text green">Engineer</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper frontend-1">
<div class="project-position-pic frontend-1-pic"></div>
<h6 class="project-position-text">Frontend</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">In constant collaboration with the UI designer, we are looking for a couple of talented frontend developer to create a performant experience for our websites. We would like to use the best modern technologies out there, and are willing to give you full freedom on which tool is best for the job. We like open source tech, and we want this thing to last, while looking pretty. We are looking for:<br></p>
<h5 class="project-position-next">2 Frontend developers</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/m51uq4" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59384a" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Backend</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper backend-2">
<div class="project-position-pic backend-2-pic"></div>
<h6 class="project-position-text green">Dev</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper backend-1">
<div class="project-position-pic backend-1-pic"></div>
<h6 class="project-position-text">Dev</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Behind any good website there must be a rock solid backend. We currently handle 10k unique visitors per day, and plan to have that number grow big time :) Dealing with scale and performance should be your strong skills, whilst also helping us optimise so we can deliver content to places with remote and/or bad tech. Pick the tech that suits the best! We are looking for:<br></p>
<h5 class="project-position-next">2 Backend engineers</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/m51uq4" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593867" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Fullstack</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper fullstack">
<div class="project-position-pic fullstack-pic"></div>
<h6 class="project-position-text">Fullstack dev</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Having a flexible web team is important to make sure we're running agile and fast. By being a fullstack developer, you can help pick up the load and help bridge the gap between frontend and backend when we need it the most. We are looking for:<br></p>
<h5 class="project-position-next">1 Fullstack developer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/m51uq4" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593881" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months</h5>
</div>
</div>
</div>
</div>
</div>
</div><img src="images/purple-bg-bottom.png" srcset="images/purple-bg-bottom-p-500.png 500w, images/purple-bg-bottom-p-800.png 800w, images/purple-bg-bottom-p-1080.png 1080w, images/purple-bg-bottom-p-1600.png 1600w, images/purple-bg-bottom-p-2000.png 2000w, images/purple-bg-bottom-p-2600.png 2600w, images/purple-bg-bottom.png 3000w" sizes="100vw" alt="" class="purple-bg-bottom">
<div class="projects-category cherries">
<div class="next-v4-container">
<div class="category-wrapper">
<div class="category-header-wrapper">
<h1 class="h1-cat-header">Cherries on the cake</h1><img src="images/cherries_1f352.png" width="50" alt="" class="emoji-cherry"></div>
<p class="p-next">With such a big team we will have a number of tasks that will be crucial to the success of the project, both technically and culturally. Making machines or products is as important as having a great meal, creating events to chill or taking care of visitors. Make sure to check the projects/jobs below if you want to join the crew.<br></p>
</div>
<div class="projects-wrapper">
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Film/Photography</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper doc-photo">
<div class="project-position-pic doc-pic"></div>
<h6 class="project-position-text">Photographer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority</h4>
<p class="p-project-next">A lot of new content will be generated in our workspace and as always we want to share everything we learn online. Therefore we would like to help document the results of our team with high quality photos and videos of the process and outcomes to show it to everyone out there. We are looking for:<br></p>
<h5 class="project-position-next">1 Photographer/filmaker</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5938a5" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: full version</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">(Vegan) Chefs</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper chef-1">
<div class="project-position-pic chef-1-pic"></div>
<h6 class="project-position-text">Chef</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper chef-3">
<div class="project-position-pic chef-2-pic"></div>
<h6 class="project-position-text">Chef</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper chef-2">
<div class="project-position-pic chef-3-pic"></div>
<h6 class="project-position-text">Chef</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Healthy and tasty food is a crucial part of our busy workdays! We want to make our crew happy and nourished. We are looking for chefs who can fuel the power of 30-40 people by creating diverse and delicious meals (breakfast and lunch) with a lot of fresh fruits and vegetables. We are looking for:<br></p>
<h5 class="project-position-next">2 Chefs</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5938c7" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Pop-up Store manager</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper store-manager">
<div class="project-position-pic store-pic"></div>
<h6 class="project-position-text">Store manager</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">In our new space we will set up a Precious Plastic Store with a collection of the nicest outcomes from the worldwide community. We are looking for a person who can inspire and excite others about the project with the stories behind our beautiful products, while supporting the community by organising orders and pushing product sales. Ideally dutch. We are looking for:<br></p>
<h5 class="project-position-next">1 Enthusiast folk :)</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5938df" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 6 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Business plan</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper business-chap">
<div class="project-position-pic business-pic"></div>
<h6 class="project-position-text">Business girl</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Yeah we know, it takes more than building machines to start and succeed with a recycling project. As many people struggle to get funding and make a living with their workspace, we need a person to help our community by creating business plans for various scenarios (including everything from plastic collection, setting up and running a workspace to selling products and giving workshops). We are looking for:<br></p>
<h5 class="project-position-next">1 Business girl</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a5938f7" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Chief team fun</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper fun-manager">
<div class="project-position-pic fun-pic"></div>
<h6 class="project-position-text">Fun manager</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">You don’t often get the chance to meet & work with people from many different countries and backgrounds. We are looking for a person who likes to organise team activities and events to make sure people get to know each other, explore the variety of cultures and show visitors how we work- in a relaxed and fun atmosphere. We are looking for:<br></p>
<h5 class="project-position-next">1 Proactive fun-holic</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59390f" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: full version</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Branding</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper brand-des">
<div class="project-position-pic branding-pic"></div>
<h6 class="project-position-text">Designer</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority">Priority</h4>
<p class="p-project-next">Help us create a more solid experience for Precious Plastic across our many platforms, workspaces and projects. Maintaining the human/friendly touch Precious Plastic is famous for, we need to improve our visual identity and experience trying to make it more consistent and flexible. We also have a secret project :) We are looking for:<br></p>
<h5 class="project-position-next">1 Graphic designer</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a593927" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Coordinator</h2>
<div class="project-positions-wrapper">
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper coordinator">
<div class="project-position-pic coordinator-pic"></div>
<h6 class="project-position-text">Coordinator</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">It is not a secret that we are not that organised :) But with so many people, money and tasks we need a person to help us manage workflow, budgets and the many little daily tasks. Preferably Dutch, we would need an organised person to help us on the daily errands of the project. We are looking for:<br></p>
<h5 class="project-position-next">1 Organized sapiens</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59393f" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: Full version</h5>
</div>
</div>
</div>
<div class="project">
<div class="project-top-wrapper">
<div class="project-top-positions-wrapper">
<h2 class="h1-project">Activism</h2>
<div class="project-positions-wrapper">
<a href="https://davehakkens.nl/community/members/selj/" target="_blank" class="link-position-next w-inline-block">
<div class="project-position-wrapper activist-2">
<div class="project-position-pic activist-2-pic"></div>
<h6 class="project-position-text green">Selj</h6>
</div>
</a>
<a href="#" class="link-position-next w-inline-block">
<div class="project-position-wrapper activist-1">
<div class="project-position-pic activist-1-pic"></div>
<h6 class="project-position-text">Activist</h6>
</div>
</a>
</div>
</div>
<h4 class="h4-project-priority hidden-opacity">Priority: Medium</h4>
<p class="p-project-next">We want to learn and develop different strategies or actions that people could peacefully take to push humanity beyond plastic into a new sustainable era away from petrochemical mass suicide. We are searching for two persons experienced with mobilizing people, boycotting strategies, pressuring politicians & more. We are looking for:<br></p>
<h5 class="project-position-next">2 Activists</h5>
</div>
<div class="project-bottom-wrapper w-clearfix"><a href="https://preciousplastic.typeform.com/to/wI4GZq" target="_blank" data-w-id="a4a9477d-8d56-2865-2bba-d6398a59395c" class="apply-v4 w-button">APPLY</a>
<div class="project-duration-wrapper">
<h5 class="h4-project-duration">Duration: 3 months minimum</h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="next-v4-team">
<div class="next-v4-container">
<div class="category-wrapper">
<div class="category-header-wrapper">
<h1 class="h1-cat-header">Current team:</h1><img src="images/dizzy-symbol_1f4ab.png" width="50" alt="" class="emoji-machines"></div>
<h1 class="h1-cat-header positions">4 people, 45 tasks left</h1>
<p class="p-next">We're putting together the most magical, fantastical, jazzical team to tackle plastic pollution. Together. As one army. This are the people that joined so far. More soon :)<br></p>
</div>
<div class="team-members">
<a href="https://davehakkens.nl/community/members/davehakkens/" target="_blank" class="link-dh w-inline-block">
<div class="team-member-wrapper">
<div class="team-member-pic dave"></div>
<h6 class="team-member">Dave</h6>
<h6 class="team-member role">Chocolate eater</h6><img src="images/Netherlands.png" alt="" class="flag"></div>
</a>
<a href="https://davehakkens.nl/community/members/mattia-io/" target="_blank" class="link-dh w-inline-block">
<div class="team-member-wrapper">
<div class="team-member-pic mattia"></div>
<h6 class="team-member">Mattia</h6>
<h6 class="team-member">Digital guy</h6><img src="images/Italy.png" alt="" class="flag"></div>
</a>
<a href="https://davehakkens.nl/community/members/katharinaelleke/" target="_blank" class="link-dh w-inline-block">
<div class="team-member-wrapper">
<div class="team-member-pic kat"></div>
<h6 class="team-member">Katharina</h6>
<h6 class="team-member">Communication</h6><img src="images/Germany.png" alt="" class="flag"></div>
</a>
<a href="https://davehakkens.nl/community/members/nzchicken/" target="_blank" class="link-dh w-inline-block">
<div class="team-member-wrapper">
<div class="team-member-pic ben"></div>
<h6 class="team-member">Ben</h6>
<h6 class="team-member">Chief Geek Advisor</h6><img src="images/New-Zealand.png" alt="" class="flag"></div>
</a>
<div class="team-member-wrapper you-next">
<div class="team-member-pic"></div>
<h6 class="team-member">You next ?</h6>
</div>
</div>
</div>
</div>
<div class="next-v4-footer"><img src="images/grey-mellow.png" srcset="images/grey-mellow-p-500.png 500w, images/grey-mellow-p-800.png 800w, images/grey-mellow-p-1080.png 1080w, images/grey-mellow.png 3000w" sizes="100vw" alt="" class="footer-top-texture">
<div class="share">
<div class="share-2 pad">
<div class="main-container">
<h1 class="h1-campaign next-v4">Share this with your friends & colleagues and help us put together the best possible team.</h1>
<div class="div-social-wrapper campaing"><a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fnext.preciousplastic.com&summary=http%3A%2F%2Fyoutu.be%XCZm2-Qurw8" target="_blank" class="social fab-green w-inline-block"></a><a href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fnext.preciousplastic.com&text=Creating+an+army+to+fight+plastic+pollution+%23preciousplastic+http%3A%2F%2Fyoutu.be/XCZm2-Qurw8" target="_blank" class="social twitter-green w-inline-block"></a><a href="https://plus.google.com/share?url=http%3A%2F%2Fnext.preciousplastic.com" target="_blank" class="social g-plus-green w-inline-block"></a><a href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Fnext.preciousplastic.com&title=Join+Precious+Plastic" target="_blank" class="social linked-in-green w-inline-block"></a></div>
</div>
</div>
</div>
</div>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.4.1.min.220afd743d.js?site=5b5f81bcbb5a838152243b33" type="text/javascript" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/webflow.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<style>
.w-webflow-badge {display:none!important;}
</style>
</body>
</html>