forked from publiccodenet/processcode.publiccode.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1662 lines (1648 loc) · 84.2 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!--<meta name=description content="This site was generated with Anima. www.animaapp.com"/>-->
<!-- <link rel="shortcut icon" type=image/png href="https://animaproject.s3.amazonaws.com/home/favicon.png" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="shortcut icon" type="image/png" href="https://animaproject.s3.amazonaws.com/home/favicon.png" />
<meta name="og:type" content="website" />
<meta name="twitter:card" content="photo" />
<link rel="stylesheet" type="text/css" href="/css/navigation.css" />
<link rel="stylesheet" type="text/css" href="/css/home-u40mobileu41.css" />
<style></style>
<link rel="stylesheet" type="text/css" href="/css/styleguide.css" />
<link rel="stylesheet" type="text/css" href="/css/globals.css" />
<link rel="icon" href="https://brand.publiccode.net/logo/mark-128w128h.png">
<script async defer data-domain="publiccode.net" src="https://plausible.io/js/plausible.js"></script>
</head>
<body style="margin: 0; background: #e5e5e5">
<input type="hidden" id="anPageName" name="page" value="home-u40mobileu41" />
<div class="home-u40tabletu41 screen">
<div class="header-xy4ZI8 header">
<div class="navheader-jt7hMz">
<div class="content-jYerYa content">
<div class="logo-rn3dEr">
<a href="/index.html">
<div class="logo-lockup-yiwZO4 logo-lockup">
<img class="logo-symbol-bIpxYp logo-symbol" src="/img/[email protected]" alt="logo symbol" />
<div
class="foundation-for-public-code-bIpxYp valign-text-middle foundation-for-public-code mulish-bold-white-20px"
>
Foundation for <br />Public Code
</div>
</div></a
>
</div>
<div class="navigation-rn3dEr">
<a href="/public-code.html"
><div class="public-code-V3LPQ0 mulish-semi-bold-white-14px">Public Code</div> </a
><a href="/public-product-organizations.html"
><div class="public-product-orgs-V3LPQ0 mulish-semi-bold-white-14px">Public Product Orgs</div> </a
><a href="https://standard.publiccode.net" target="_blank"
><div class="the-standard-V3LPQ0 mulish-semi-bold-white-14px">The Standard</div> </a
><a href="/who-we-are/index.html"
><div class="team-V3LPQ0 mulish-semi-bold-white-14px">Team</div> </a
><a href="https://secure.infinitegiving.com/gift/foundation-for-public-code" target="_blank">
<div class="nav-button-V3LPQ0">
<div class="support-us-Lid6aM mulish-semi-bold-white-14px">Support us</div>
</div></a
>
</div>
</div>
</div>
<div class="cluster-jt7hMz cluster">
<div class="cluster-ThF2uE cluster">
<div class="cluster-n0YtXd cluster">
<div class="text-SySOd5 text">
<h1 class="a-sustainable-way-to-fcnHQx">
A sustainable way <br />to create shared <br />Digital Public Products
</h1>
<p class="public-code-is-an-ap-fcnHQx mulish-normal-white-20px">
Public code is an approach to open, collaborative development enabling an ecosystem of public and
private actors to share specifications, development, and maintenance of digital public infrastructure
products.
</p>
<a href="/public-code.html">
<div class="buttonprimary-fcnHQx buttonprimary">
<p class="text-7Y24Af text mulish-bold-mine-shaft-16px">Read more about public code</p>
<img
class="arrow-cluster-7Y24Af arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
<div class="img-container-n0YtXd"><img class="illo-2-w2VeA5" src="/img/illo-2.png" alt="illo 2" /></div>
</div>
</div>
<div class="divhoriz"></div>
</div>
<div class="content-xy4ZI8 content">
<div class="card-foaK34 card">
<img class="illo_sixpillars-v1xWxM" src="/img/illo-sixpillars-2.png" alt="illo_sixpillars" />
<div class="cluster-v1xWxM cluster">
<div class="text-eRNhwR text">
<p class="what-are-public-product-organizations-Hbbveh mulish-bold-black-24px">
What are Public Product Organizations?
</p>
<p class="we-believe-successfu-Hbbveh mulish-normal-black-20px">
We believe successful public software is created by organizations built upon six foundational pillars.
The Foundation for Public Code is working to define and share best practices around each.
</p>
</div>
<a href="/public-product-organizations.html">
<div class="links-eRNhwR">
<div class="buttonprimary-y61QnO buttonprimary">
<p class="text-Xaci5I text mulish-bold-white-16px">Read more about Public Product Orgs</p>
<img
class="arrow-cluster-Xaci5I arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/>
</div></div
></a>
</div>
</div>
<div class="divhoriz-foaK34 divhoriz"></div>
<div class="section-foaK34 section-1">
<div class="header-oO1ilV header">
<div class="examples-of-public-code-BHfTo7 mulish-bold-black-32px">Examples of Public Code</div>
<p class="were-helping-build-p-BHfTo7 mulish-normal-black-20px">
We’re helping build public product organizations around a broad spectrum of software products.
</p>
<a href="/public-product-organizations.html"
><p class="learn-more-about-the-BHfTo7">
<span class="span0-UDsvRi mulish-normal-black-20px">Learn more about these examples on the </span
><span class="span1-UDsvRi">Public Product Organizations</span
><span class="span2-UDsvRi mulish-normal-black-20px"> page.</span>
</p>
</a>
</div>
<div class="cards-oO1ilV cards">
<div class="card-mDN3i3 card">
<div class="content-762tPQ content">
<div class="icons-l753NA">
<img class="diia-logo-1-qz1yWh" src="/img/diialogo-1.png" alt="DiiaLogo 1" />
<img class="x250-1-qz1yWh" src="/img/250-1.png" alt="250 1" />
</div>
<div class="text-l753NA text">
<div class="diia-0jNnuI mulish-bold-black-24px">DIIA</div>
<p class="the-groundbreaking-m-0jNnuI mulish-normal-black-16px">
The groundbreaking mobile application that connects 19 million Ukrainians with more than 120
government services.
</p>
</div>
</div>
</div>
<div class="card-5bYOxI card">
<div class="content-7HJexW content">
<img class="govuk_icon-1-sNtIRF" src="/img/govuk-icon-1.png" alt="govuk_icon 1" />
<div class="text-sNtIRF text">
<div class="notify-lRXVnU mulish-bold-black-24px">Notify</div>
<p class="text-message-service-lRXVnU mulish-normal-black-16px">
Text message service helping federal, state, local, tribal and territorial governments communicate
more effectively with the people they serve.
</p>
</div>
</div>
</div>
<div class="card-n3dKci card">
<div class="content-jC0uXI content">
<img
class="iconappspacecraft-gffIAU"
src="img/[email protected]"
alt="icon.app.spacecraft"
/>
<div class="text-gffIAU text">
<div class="space-craft-lh2F9Y mulish-bold-black-24px">Space Craft</div>
<p class="space-craft-is-worki-lh2F9Y mulish-normal-black-16px">
Space Craft is working to create an open modular server architecture for creating, orchestrating,
and sharing room-scale or multi-room interactive spatial applications.
</p>
</div>
</div>
</div>
<a href="/public-product-organizations.html">
<div class="card-xc5HwB card">
<div class="content-rk9XVn content">
<img
class="iconappgeospatial-x3xp4g"
src="img/[email protected]"
alt="icon.app.geospatial"
/>
<div class="text-x3xp4g text">
<div class="public-geospatial-server-qvdtje mulish-bold-black-24px">Public Geospatial Server</div>
<p class="a-baseline-open-plat-qvdtje mulish-normal-black-16px">
A baseline open platform public administrations can use to make embeddable maps for internal and
constituent-facing applications.
</p>
</div>
</div>
</div></a
>
</div>
</div>
<div class="divhoriz-P8VqYy divhoriz"></div>
<div class="section-P8VqYy section-1">
<div class="header-yDgjy0 header">
<div class="resources-z6CDEf mulish-bold-black-32px">Resources</div>
<p class="tools-to-help-you-bu-z6CDEf mulish-normal-black-20px">
Tools to help you build public code, public capacity and public product organizations
</p>
</div>
<div class="cards-yDgjy0 cards">
<div class="process-codes-Xud1RS">
<img class="fpc_processcodes-EbDKvu" src="/img/fpc-processcodes.png" alt="fpc_processcodes" />
<div class="content-EbDKvu content">
<div class="content-IQhSbk content">
<div class="main">
<div class="process-codes-GLns8u mulish-bold-black-32px">Process Codes</div>
<p class="from-software-procur-GLns8u mulish-normal-black-16px">
From software procurement to building a codebase stewardship team, see our step-by-step guidebooks
for how to implement Public Code in your organization.
</p>
</div>
<a href="https://processcode.publiccode.net" target="_blank">
<div class="buttonsecondary-pyXBep buttonsecondary">
<div class="text-ZwPfYK text mulish-bold-mine-shaft-16px">Find your guidebook</div>
<img
class="arrow-cluster-ZwPfYK arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
</div>
<div class="the-standard-Xud1RS">
<img class="fpc_standard-xwhV3n" src="/img/fpc-standard.png" alt="fpc_standard" />
<div class="content-xwhV3n content">
<div class="content-Co9EcD content">
<div class="main">
<div class="the-standard-Z8hxiX mulish-bold-black-32px">The Standard</div>
<p class="we-maintain-the-stan-Z8hxiX mulish-normal-black-16px">
We maintain the Standard for Public Code, a model for organizations building open source
solutions, to enable successful reuse by other public organizations.
</p>
</div>
<a href="https://standard.publiccode.net" target="_blank">
<div class="buttonsecondary-Hm9S0H buttonsecondary">
<p class="text-hRMTqp text mulish-bold-mine-shaft-16px">Get your code up to code</p>
<img
class="arrow-cluster-hRMTqp arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
</div>
<div class="cluster-Xud1RS cluster">
<div class="governance-game-8CXGxV">
<div class="frame-196-UPTm13">
<div class="governance-game-vZMOAj mulish-bold-black-24px">Governance Game</div>
<p class="a-simple-card-game-a-vZMOAj mulish-normal-black-16px">
A simple card game about codebase governance, that helps visualize key issues, existing models and
beneficial changes.
</p>
<a href="https://governancegame.publiccode.net" target="_blank">
<div class="buttonsecondary-vZMOAj buttonsecondary">
<div class="text-Gw8wMm text mulish-bold-mine-shaft-16px">Governance game</div>
<div class="arrow-cluster-Gw8wMm arrow-cluster">
<a
href="https://github.com/publiccodenet/"
onclick="window.event.stopPropagation()"
target="_blank"
><img class="logogithub-TeiT8m" src="/img/[email protected]" alt="logo.github" /> </a
><img class="arrow-stroke-TeiT8m" src="/img/[email protected]" alt="arrow (Stroke)" />
</div></div
></a>
</div>
</div>
<div class="quote-8CXGxV">
<div class="testimonial-JvLcQ1 testimonial">
<img class="quoted-text-9IK8zc" src="/img/[email protected]" alt="quoted text" />
<p class="quoted-text-ByPGvN ibmplexserif-normal-mine-shaft-20px">
Collaboration strengthens democracies and truly makes us greater than the sum of our parts.
</p>
<div class="attr-9IK8zc attr">
<div class="attrportraits">
<img class="audrey-tang-q8lvDY" src="/img/[email protected]" alt="Audrey Tang" />
<img class="rim-stroke" src="/img/[email protected]" alt="rim (Stroke)" />
</div>
<div class="flex-container-i44031914040395081-89o453">
<div class="text0-i44031914040395081-w9wnZy valign-text-middle mulish-bold-black-16px">
<span
><span class="span0-5OkPAM mulish-bold-mine-shaft-16px">Audrey Tang<br /></span>
</span>
</div>
<div class="text1-i44031914040395081-w9wnZy valign-text-middle mulish-bold-black-16px">
<span
><span class="span1-OJcGoA mulish-normal-mine-shaft-14px">Digital Minister of Taiwan, </span
><span class="span2-OJcGoA mulish-bold-mine-shaft-14px">on the Standard</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="divhoriz-sYdGtj divhoriz"></div>
<div class="section-sYdGtj section-1">
<div class="header-WN64o3 header">
<div class="get-involved-ETlr2x mulish-bold-black-32px">Get involved</div>
<p class="public-code-is-a-mov-ETlr2x mulish-normal-black-20px">
Public code is a movement, and you have an important role to play!
</p>
</div>
<div class="section-WN64o3 section-1">
<div class="card-kZDBXT card">
<div class="content-1rRFZe content">
<img class="trustworthy-txRwOV" src="/img/trustworthy-2.png" alt="trustworthy" />
<div class="support-public-code-txRwOV">Support Public Code</div>
<p class="your-contributions-m-txRwOV mulish-normal-white-16px-2">
Your contributions make it possible for us to support public administrations and public product
organizations around the world.
</p>
</div>
<div class="buttons-1rRFZe">
<a href="https://secure.infinitegiving.com/gift/foundation-for-public-code" target="_blank">
<div class="buttonprimary-QR0026 buttonprimary">
<p class="text-IZ3oQm text mulish-bold-gossamer-16px">
<a href="https://secure.infinitegiving.com/gift/foundation-for-public-code" target="_blank"
><span class="span0-CMD5Wc mulish-bold-black-16px">Donate</span></a
><span class="span1-CMD5Wc mulish-bold-black-16px"> $ € ¥ £</span>
</p>
<img
class="arrow-cluster-IZ3oQm arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div></a
><a href="https://secure.infinitegiving.com/gift/foundation-for-public-code/more" target="_blank">
<div class="buttonsecondary-QR0026 buttonsecondary">
<p class="text-7fFhOd text mulish-bold-white-16px">Donate stock, crypto + more</p>
<img
class="arrow-cluster-7fFhOd arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
<div class="card-hXqrL0 card">
<div class="content-HIGJVU content">
<img
class="fpc_service_workshops-kaRFPi bp2-animate-enter"
src="img/fpc-service-workshops.png"
alt="fpc_service_workshops"
/>
<div class="let-us-help-you-kaRFPi mulish-bold-black-32px">Let us help you</div>
<p class="our-team-is-here-to-kaRFPi mulish-normal-black-16px">
Our team is here to help you join or build a public product organization. We’ll assess your needs and
opportunities, then locate the right partner or vendor, find learning resources, or welcome you into
the community.
</p>
</div>
<a href="mailto:[email protected]" target="_blank">
<div class="buttonsecondary-HIGJVU buttonsecondary">
<div class="text-xZFbaH text mulish-bold-azure-radiance-16px">Email [email protected]</div>
<img
class="arrow-cluster-xZFbaH arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
</div>
<div class="divhoriz-44GqYm divhoriz"></div>
<div class="section-44GqYm section-1">
<div class="our-team-thvfYy">
<div class="content-VoG287 content">
<div class="about-our-team-TgJN5w mulish-bold-black-24px">About our team</div>
<p class="our-globally-distrib-TgJN5w mulish-normal-black-16px">
Our globally distributed team has a diversity of skill sets, bringing years of experience to the
mission.
</p>
</div>
<a href="/who-we-are/index.html">
<div class="buttonsecondary-VoG287 buttonsecondary">
<div class="text-oiH8PT text mulish-bold-azure-radiance-16px">Meet our team</div>
<img
class="arrow-cluster-oiH8PT arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
<div class="frame-thvfYy">
<div class="testimonial-nShCgp testimonial">
<img class="quoted-text-li209t" src="/img/[email protected]" alt="quoted text" />
<p class="quoted-text-wXCXTc ibmplexserif-normal-mine-shaft-20px">
The Foundation for Public Code is a trailblazing organization in the space of international public
software collaboration. The European Ministers will want to know how to scale these types of solutions
up.
</p>
<div class="attr-li209t attr">
<div class="attrportraits">
<img class="luukas-ilves-yPoWp1" src="/img/[email protected]" alt="Luukas Ilves" />
<img class="rim-stroke" src="/img/[email protected]" alt="rim (Stroke)" />
</div>
<div class="flex-container-i44031921540395081-ifusEz">
<div class="text0-i44031921540395081-ZABlek valign-text-middle mulish-bold-mine-shaft-16px">
<span
><span class="span0-JANffm mulish-bold-mine-shaft-16px">Luukas Ilves<br /></span>
</span>
</div>
<div class="text1-i44031921540395081-ZABlek valign-text-middle mulish-bold-mine-shaft-16px">
<span
><span class="span1-lQtibV mulish-normal-mine-shaft-14px">CIO, Government of Estonia</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer-xy4ZI8">
<div class="divhoriz"></div>
<div class="content-SxpCUZ content">
<a href="/index.html">
<div class="logo-lockup-McfI6p logo-lockup">
<img class="logo-symbol-eyCTWK logo-symbol" src="/img/[email protected]" alt="logo symbol" />
<div
class="foundation-for-public-code-eyCTWK valign-text-middle foundation-for-public-code mulish-bold-black-27px"
>
Foundation for Public Code
</div>
</div></a
>
<div class="information-McfI6p">
<div class="contact-nfsqHC">
<div class="email-2Fa1wh">
<div class="email-us-USz0Tx mulish-bold-black-24px">Email us!</div>
<a href="mailto:[email protected]" target="_blank">
<div class="buttonprimary-USz0Tx buttonprimary">
<div class="text-LXU0EH text mulish-bold-white-16px">[email protected]</div>
<img
class="arrow-cluster-LXU0EH arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
<div class="mailing-list-2Fa1wh">
<div class="connect-with-us-yjfxTX mulish-bold-black-24px">Connect with us</div>
<div class="channels-yjfxTX">
<a href="https://floss.social/@publiccode" target="_blank"
><img class="mastodon-qbHFzR" src="/img/mastodon.png" alt="Mastodon" /> </a
><a href="https://twitter.com/publiccodenet" target="_blank"
><img class="twitter-qbHFzR" src="/img/logo-1.png" alt="Twitter" /> </a
><a href="https://www.youtube.com/@publiccode" target="_blank"
><img class="you-tube-qbHFzR" src="/img/youtube.png" alt="YouTube" /> </a
><a href="https://github.com/publiccodenet/" target="_blank"
><img class="git-hub-qbHFzR" src="/img/github.png" alt="GitHub" />
</a>
</div>
</div>
</div>
<div class="divhoriz-nfsqHC divhoriz"></div>
<div class="metadata-nfsqHC">
<div class="copyright-BDEfC9">
<img class="image-Un5LD3" src="/img/[email protected]" alt="image" />
<p class="x2024-foundation-for-public-code-Un5LD3 mulish-normal-black-14px">
<span class="span0-skfjaU mulish-normal-black-14px">2024 </span
><a href="/" target="_blank"
><span class="span1-skfjaU mulish-normal-black-14px">Foundation for Public Code</span></a
>
</p>
</div>
<div class="license-BDEfC9">
<img class="iconlicense-GqdewO" src="/img/[email protected]" alt="icon.license" />
<p class="creative-commons-zer-GqdewO mulish-normal-black-14px">
<a href="https://creativecommons.org/publicdomain/zero/1.0/" target="_blank"
><span class="span0-TJI3FM mulish-normal-black-14px">Creative Commons Zero v1.0 Universal</span></a
><span class="span1-TJI3FM mulish-normal-black-14px">, unless otherwise noted</span>
</p>
</div>
</div>
<div class="divhoriz-rOcVx4 divhoriz"></div>
<div class="flex-container-i44031921635764323-nfsqHC">
<div class="text0-i44031921635764323-hGtodl mulish-normal-black-14px">
<span class="span0-wJOWRp mulish-normal-black-14px"
>Foundation for Public Code is a chapter-based network of nonprofit organizations, with the parent
organized as an association (vereeniging) of the constituent chapters registered under chamber of
commerce (KvK) registration 74996452, and with identification number (RSIN) 860102294.<br
/></span>
</div>
<div class="text1-i44031921635764323-hGtodl mulish-normal-black-14px">
<span class="span1-L6Vt0Q mulish-normal-black-14px"
>We're recognized as a public benefit organization (ANBI) by the Dutch Tax and Customs
Administration. Our first chapter, the Foundation for Public Code North America, is organized as a
501(c)(3) nonprofit organization with identification number (EIN) 92-2324481.</span
>
</div>
</div>
</div>
</div>
</footer>
</div>
<div class="home-u40desktopu41-all-breakpoints screen">
<div class="header-x95hTx header">
<div class="navheader-GHk9aa">
<div class="content-JmjUu5 content">
<a href="/index.html">
<div class="logo-lockup-tZisbP logo-lockup">
<img class="logo-symbol" src="/img/[email protected]" alt="logo symbol" />
<div
class="foundation-for-public-code-L2yWmG valign-text-middle foundation-for-public-code mulish-bold-white-27px"
>
Foundation for Public Code
</div>
</div></a
>
<div class="navigation-tZisbP">
<div class="links-SZXMnr links">
<a href="/public-code.html"
><div class="public-code-fCL2A1 mulish-semi-bold-white-16px">Public Code</div> </a
><a href="/public-product-organizations.html"
><div class="public-product-orgs-fCL2A1 mulish-semi-bold-white-16px">Public Product Orgs</div> </a
><a href="https://standard.publiccode.net" target="_blank"
><div class="the-standard-fCL2A1 mulish-semi-bold-white-16px">The Standard</div> </a
><a href="/who-we-are/index.html"
><div class="team-fCL2A1 mulish-semi-bold-white-16px">Team</div> </a
><a href="https://secure.infinitegiving.com/gift/foundation-for-public-code" target="_blank">
<div class="nav-button-fCL2A1">
<div class="support-us-5E2UQp mulish-semi-bold-white-16px">Support us</div>
</div></a
>
</div>
</div>
</div>
</div>
<div class="cluster-GHk9aa cluster">
<div class="cluster-szWcMB cluster">
<div class="cluster-P7WuhD cluster">
<div class="text-3MUxi9 text">
<h1 class="a-sustainable-way-to-d0W18f">
A sustainable way <br />to create shared <br />Digital Public Products
</h1>
<p class="public-code-is-an-ap-d0W18f mulish-normal-white-20px">
Public code is an approach to open, collaborative development enabling an ecosystem of public and
private actors to share specifications, development, and maintenance of digital public infrastructure
products.
</p>
<a href="/public-code.html">
<div class="links-d0W18f links">
<div class="buttonprimary-tY5mDx buttonprimary">
<p class="text-xxA2br text mulish-bold-mine-shaft-16px">Read more about public code</p>
<img
class="arrow-cluster-xxA2br arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/>
</div></div
></a>
</div>
</div>
<div class="img-container-P7WuhD"><img class="illo-2-5D6spu" src="/img/illo-2.png" alt="illo 2" /></div>
</div>
</div>
<div class="divhoriz"></div>
</div>
<div class="content-x95hTx content">
<div class="card-PrVazn card">
<img class="illo_sixpillars-5e9xmn" src="/img/illo-sixpillars-1.png" alt="illo_sixpillars" />
<div class="cluster-5e9xmn cluster">
<div class="text-JpFonm text">
<p class="what-are-public-product-organizations-b0pUPz mulish-bold-black-32px">
What are Public Product Organizations?
</p>
<div class="flex-container-39134223-b0pUPz">
<div class="text0-39134223-rp5CGS mulish-normal-black-20px">
<span class="span0-G4nUHF mulish-normal-black-20px"
>We believe successful public software is created by organizations built upon six foundational
pillars.<br
/></span>
</div>
<div class="text1-39134223-rp5CGS mulish-normal-black-20px">
<span class="span1-PlZdIh mulish-normal-black-20px"
>The Foundation for Public Code is working to define and share best practices around each.</span
>
</div>
</div>
</div>
<a href="/public-product-organizations.html">
<div class="links-JpFonm links">
<div class="buttonprimary-8RCBo1 buttonprimary">
<p class="text-z5fPRA text mulish-bold-white-16px">Read more about Public Product Orgs</p>
<img
class="arrow-cluster-z5fPRA arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/>
</div></div
></a>
</div>
</div>
<div class="divhoriz-PrVazn divhoriz"></div>
<div class="section-PrVazn section-1">
<div class="header-9VfibO header">
<div class="examples-of-public-code-gOF1cY mulish-bold-black-32px">Examples of Public Code</div>
<p class="were-helping-build-p-gOF1cY mulish-normal-black-20px">
We’re helping build public product organizations around a broad spectrum of software products.
</p>
<a href="/public-product-organizations.html"
><p class="learn-more-about-the-gOF1cY">
<span class="span0-MjfG5v mulish-normal-black-20px">Learn more about these examples on the </span
><span class="span1-MjfG5v">Public Product Organizations</span
><span class="span2-MjfG5v mulish-normal-black-20px"> page.</span>
</p>
</a>
</div>
<div class="cards-9VfibO cards">
<div class="card-N6Ypft card">
<div class="content-4Ati1x content">
<div class="icons-8LRch4">
<img class="diia-logo-1-OJGgjC" src="/img/diialogo-1.png" alt="DiiaLogo 1" />
<img class="x250-1-OJGgjC" src="/img/250-1.png" alt="250 1" />
</div>
<div class="text-8LRch4 text">
<div class="diia-pboOeF mulish-bold-black-24px">DIIA</div>
<p class="the-groundbreaking-m-pboOeF mulish-normal-black-16px">
The groundbreaking mobile application that connects 19 million Ukrainians with more than 120
government services.
</p>
</div>
</div>
</div>
<div class="card-0UQ6Bo card">
<div class="content-hguUZe content">
<img class="govuk_icon-1-mTxjyQ" src="/img/govuk-icon-1.png" alt="govuk_icon 1" />
<div class="text-mTxjyQ text">
<div class="notify-0BLfZ5 mulish-bold-black-24px">Notify</div>
<p class="text-message-service-0BLfZ5 mulish-normal-black-16px">
Text message service helping federal, state, local, tribal and territorial governments communicate
more effectively with the people they serve.
</p>
</div>
</div>
</div>
<div class="card-0AT541 card">
<div class="content-78ZGVn content">
<img
class="iconappspacecraft-nYt9Jl"
src="img/[email protected]"
alt="icon.app.spacecraft"
/>
<div class="text-nYt9Jl text">
<div class="space-craft-GIDynN mulish-bold-black-24px">Space Craft</div>
<p class="space-craft-is-worki-GIDynN mulish-normal-black-16px">
Space Craft is working to create an open modular server architecture for creating, orchestrating,
and sharing room-scale or multi-room interactive spatial applications.
</p>
</div>
</div>
</div>
<div class="card-ssHrVS card">
<div class="content-48xiZY content">
<img
class="iconappgeospatial-baI0jT"
src="img/[email protected]"
alt="icon.app.geospatial"
/>
<div class="text-baI0jT text">
<div class="public-geospatial-server-xxauy2 mulish-bold-black-24px">Public Geospatial Server</div>
<p class="a-baseline-open-plat-xxauy2 mulish-normal-black-16px">
A baseline open platform public administrations can use to make embeddable maps for internal and
constituent-facing applications.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="divhoriz-ZrVlU5 divhoriz"></div>
<div class="section-ZrVlU5 section-1">
<div class="header-phKPmE header">
<div class="resources-5hnRAX mulish-bold-black-32px">Resources</div>
<p class="tools-to-help-you-bu-5hnRAX mulish-normal-black-20px">
Tools to help you build public code, public capacity and public product organizations
</p>
</div>
<div class="cards-phKPmE cards">
<div class="process-codes-zgpVr1 process-codes">
<img class="fpc_processcodes-NTZloB" src="/img/fpc-processcodes.png" alt="fpc_processcodes" />
<div class="content-NTZloB content">
<div class="content-enREad content">
<div class="main">
<div class="process-codes-pd5q74 process-codes mulish-bold-black-32px">Process Codes</div>
<p class="from-software-procur-pd5q74 mulish-normal-black-16px">
From software procurement to building a codebase stewardship team, see our step-by-step guidebooks
for how to implement Public Code in your organization.
</p>
</div>
<a href="https://processcode.publiccode.net" target="_blank">
<div class="buttonsecondary-Psf9rA buttonsecondary">
<div class="text-zagYZ7 text mulish-bold-mine-shaft-16px">Find your guidebook</div>
<img
class="arrow-cluster-zagYZ7 arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
</div>
<div class="the-standard-zgpVr1">
<img class="fpc_standard-xzU7bB" src="/img/fpc-standard.png" alt="fpc_standard" />
<div class="content-xzU7bB content">
<div class="content-p7oLOc content">
<div class="main">
<div class="the-standard-IBlkPW mulish-bold-black-32px">The Standard</div>
<p class="we-maintain-the-stan-IBlkPW mulish-normal-black-16px">
We maintain the Standard for Public Code, a model for organizations building open source
solutions, to enable successful reuse by other public organizations.
</p>
</div>
<a href="https://standard.publiccode.net" target="_blank">
<div class="buttonsecondary-9s9DOO buttonsecondary">
<p class="text-0wY1L5 text mulish-bold-mine-shaft-16px">Get your code up to code</p>
<img
class="arrow-cluster-0wY1L5 arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
</div>
<div class="cluster-zgpVr1 cluster">
<div class="quote-rpxBGt">
<div class="testimonial-WMRi7C testimonial">
<img class="quoted-text-GfGmYq" src="/img/[email protected]" alt="quoted text" />
<p class="quoted-text-j1JU1D ibmplexserif-normal-mine-shaft-20px">
Collaboration strengthens democracies and truly makes us greater than the sum of our parts.
</p>
<div class="attr-GfGmYq attr">
<div class="attrportraits">
<img class="audrey-tang-vRaNqj" src="/img/[email protected]" alt="Audrey Tang" />
<img class="rim-stroke" src="/img/[email protected]" alt="rim (Stroke)" />
</div>
<div class="flex-container-i3781801040395081-ppxn4H">
<div class="text0-i3781801040395081-yQ9tur valign-text-middle mulish-bold-black-16px">
<span
><span class="span0-8kqgjo mulish-bold-mine-shaft-16px">Audrey Tang<br /></span>
</span>
</div>
<div class="text1-i3781801040395081-yQ9tur valign-text-middle mulish-bold-black-16px">
<span
><span class="span1-GesPPa mulish-normal-mine-shaft-14px">Digital Minister of Taiwan, </span
><span class="span2-GesPPa mulish-bold-mine-shaft-14px">on the Standard</span>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="governance-game-rpxBGt governance-game">
<div class="frame-196-I5fCvX">
<div class="governance-game-YxGA8C governance-game mulish-bold-black-24px">Governance Game</div>
<p class="a-simple-card-game-a-YxGA8C mulish-normal-black-16px">
A simple card game about codebase governance, that helps visualize key issues, existing models and
beneficial changes.
</p>
</div>
<a href="https://governancegame.publiccode.net" target="_blank">
<div class="buttonsecondary-I5fCvX buttonsecondary">
<div class="text-xjqy7b text mulish-bold-mine-shaft-16px">Governance game</div>
<div class="arrow-cluster-xjqy7b arrow-cluster">
<a
href="https://github.com/publiccodenet/"
onclick="window.event.stopPropagation()"
target="_blank"
><img class="logogithub-baxOOV" src="/img/[email protected]" alt="logo.github" /> </a
><img class="arrow-stroke-baxOOV" src="/img/[email protected]" alt="arrow (Stroke)" />
</div></div
></a>
</div>
</div>
</div>
</div>
<div class="divhoriz-K4yHiu divhoriz"></div>
<div class="section-K4yHiu section-1">
<div class="header-RpajHL header">
<div class="get-involved-3G5wVZ mulish-bold-black-32px">Get involved</div>
<p class="public-code-is-a-mov-3G5wVZ mulish-normal-black-20px">
Public code is a movement, and you have an important role to play!
</p>
</div>
<div class="section-RpajHL section-1">
<div class="card-oUn4a1 card">
<div class="content-CBgXI8 content">
<img class="trustworthy-VC8Cbc" src="/img/trustworthy-1.png" alt="trustworthy" />
<div class="support-public-code-VC8Cbc">Support Public Code</div>
<p class="your-contributions-m-VC8Cbc mulish-normal-white-20px">
Your contributions make it possible for us to support public administrations and public product
organizations around the world.
</p>
</div>
<div class="buttons-CBgXI8">
<a href="https://secure.infinitegiving.com/gift/foundation-for-public-code" target="_blank">
<div class="buttonprimary-CE3h4n buttonprimary">
<p class="text-MgEx2F text mulish-bold-gossamer-16px">
<a href="https://secure.infinitegiving.com/gift/foundation-for-public-code" target="_blank"
><span class="span0-u0hZ53 mulish-bold-black-16px">Donate</span></a
><span class="span1-u0hZ53 mulish-bold-black-16px"> $ € ¥ £</span>
</p>
<img
class="arrow-cluster-MgEx2F arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div></a
><a href="https://secure.infinitegiving.com/gift/foundation-for-public-code/more" target="_blank">
<div class="buttonsecondary-CE3h4n buttonsecondary">
<p class="text-LFxu4k text mulish-bold-white-16px">Donate stock, crypto + more</p>
<img
class="arrow-cluster-LFxu4k arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
<div class="card-JVzP09 card">
<div class="content-dkvj9F content">
<img
class="fpc_service_workshops-LFkNg9 bp3-animate-enter"
src="img/fpc-service-workshops.png"
alt="fpc_service_workshops"
/>
<div class="let-us-help-you-LFkNg9 mulish-bold-black-32px">Let us help you</div>
<p class="our-team-is-here-to-LFkNg9 mulish-normal-black-20px">
Our team is here to help you join or build a public product organization. We’ll assess your needs and
opportunities, then locate the right partner or vendor, find learning resources, or welcome you into
the community.
</p>
</div>
<a href="mailto:[email protected]" target="_blank">
<div class="buttonsecondary-dkvj9F buttonsecondary">
<div class="text-su4HCI text mulish-bold-azure-radiance-16px">Email [email protected]</div>
<img
class="arrow-cluster-su4HCI arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
</div>
</div>
<div class="divhoriz-Ue41jW divhoriz"></div>
<div class="section-Ue41jW section-1">
<div class="our-team-4EEGRK">
<div class="content-HZISKY content">
<div class="about-our-team-AEvwSh mulish-bold-black-24px">About our team</div>
<p class="our-globally-distrib-AEvwSh mulish-normal-black-20px">
Our globally distributed team has a diversity of skill sets, bringing years of experience to the
mission.
</p>
</div>
<a href="/who-we-are/index.html">
<div class="buttonsecondary-HZISKY buttonsecondary">
<div class="text-D0DvXX text mulish-bold-azure-radiance-16px">Meet our team</div>
<img
class="arrow-cluster-D0DvXX arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
<div class="frame-4EEGRK">
<div class="testimonial-G4Gx1t testimonial">
<img class="quoted-text-i4cEnP" src="/img/[email protected]" alt="quoted text" />
<p class="quoted-text-LR5WUV ibmplexserif-normal-mine-shaft-20px">
The Foundation for Public Code is a trailblazing organization in the space of international public
software collaboration. The European Ministers will want to know how to scale these types of solutions
up.
</p>
<div class="attr-i4cEnP attr">
<div class="attrportraits">
<img class="luukas-ilves-6hiUNb" src="/img/[email protected]" alt="Luukas Ilves" />
<img class="rim-stroke" src="/img/[email protected]" alt="rim (Stroke)" />
</div>
<div class="flex-container-i3940859440395081-aUdPhb">
<div class="text0-i3940859440395081-4BA3xh valign-text-middle mulish-bold-mine-shaft-16px">
<span
><span class="span0-f6eA0w mulish-bold-mine-shaft-16px">Luukas Ilves<br /></span>
</span>
</div>
<div class="text1-i3940859440395081-4BA3xh valign-text-middle mulish-bold-mine-shaft-16px">
<span
><span class="span1-Oo7Hcs mulish-normal-mine-shaft-14px">CIO, Government of Estonia</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer-x95hTx">
<div class="divhoriz"></div>
<div class="content-ALot4C content">
<a href="/index.html">
<div class="logo-lockup-Syzn04 logo-lockup">
<img class="logo-symbol" src="/img/[email protected]" alt="logo symbol" />
<div
class="foundation-for-public-code-K7asuV valign-text-middle foundation-for-public-code mulish-bold-black-27px"
>
Foundation for Public Code
</div>
</div></a
>
<div class="information-Syzn04">
<div class="contact-xztmrV">
<div class="email-PzqlxH">
<div class="email-us-zHfzSd mulish-bold-black-24px">Email us!</div>
<a href="mailto:[email protected]" target="_blank">
<div class="buttonprimary-zHfzSd buttonprimary">
<div class="text-NWVZxf text mulish-bold-white-16px">[email protected]</div>
<img
class="arrow-cluster-NWVZxf arrow-cluster"
src="img/[email protected]"
alt="arrow cluster"
/></div
></a>
</div>
<div class="mailing-list-PzqlxH">
<div class="connect-with-us-xaTB6r mulish-bold-black-24px">Connect with us</div>
<div class="channels-xaTB6r">
<a href="https://floss.social/@publiccode" target="_blank"
><img class="mastodon-lNw77j" src="/img/mastodon.png" alt="Mastodon" /> </a
><a href="https://twitter.com/publiccodenet" target="_blank"
><img class="twitter-lNw77j" src="/img/logo-1.png" alt="Twitter" /> </a
><a href="https://www.youtube.com/@publiccode" target="_blank"
><img class="you-tube-lNw77j" src="/img/youtube.png" alt="YouTube" /> </a
><a href="https://github.com/publiccodenet/" target="_blank"
><img class="git-hub-lNw77j" src="/img/github.png" alt="GitHub" />
</a>
</div>
</div>
</div>
<div class="divhoriz-xztmrV divhoriz"></div>
<div class="metadata-xztmrV">
<div class="copyright-0ym1G4">
<img class="image-2hNip9" src="/img/[email protected]" alt="image" />
<p class="x2024-foundation-for-public-code-2hNip9 mulish-normal-black-14px">
<span class="span0-rPOx6O mulish-normal-black-14px">2024 </span
><a href="/" target="_blank"
><span class="span1-rPOx6O mulish-normal-black-14px">Foundation for Public Code</span></a
>
</p>
</div>
<div class="license-0ym1G4">
<img class="iconlicense-To1gbH" src="/img/[email protected]" alt="icon.license" />
<p class="creative-commons-zer-To1gbH mulish-normal-black-14px">
<a href="https://creativecommons.org/publicdomain/zero/1.0/" target="_blank"
><span class="span0-xlDLU6 mulish-normal-black-14px">Creative Commons Zero v1.0 Universal</span></a
><span class="span1-xlDLU6 mulish-normal-black-14px">, unless otherwise noted</span>
</p>
</div>
</div>
<div class="divhoriz-PsLPRx divhoriz"></div>
<div class="flex-container-i3781804835764323-xztmrV">
<div class="text0-i3781804835764323-r6APrU mulish-normal-black-14px">
<span class="span0-xbxSxx mulish-normal-black-14px"
>Foundation for Public Code is a chapter-based network of nonprofit organizations, with the parent
organized as an association (vereeniging) of the constituent chapters registered under chamber of
commerce (KvK) registration 74996452, and with identification number (RSIN) 860102294.<br
/></span>
</div>
<div class="text1-i3781804835764323-r6APrU mulish-normal-black-14px">
<span class="span1-qmaHF9 mulish-normal-black-14px"
>We're recognized as a public benefit organization (ANBI) by the Dutch Tax and Customs
Administration. Our first chapter, the Foundation for Public Code North America, is organized as a
501(c)(3) nonprofit organization with identification number (EIN) 92-2324481.</span
>
</div>
</div>
</div>
</div>
</footer>
</div>
<div class="home-u40mobileu41 screen">
<div class="header-VmHZq2 header">
<div class="navheader-79QEVX">
<a onclick="ShowOverlay('navigation', 'animate-appear');">
<div class="content-9NIM53 content">
<div class="logo-QZKNM8">
<a href="/index.html" onclick="window.event.stopPropagation()">
<div class="logo-lockup-QUxJO3 logo-lockup">
<img class="logo-symbol" src="/img/[email protected]" alt="logo symbol" />
<div
class="foundation-for-public-code-tr3CQx valign-text-middle foundation-for-public-code mulish-bold-white-20px"
>
Foundation for <br />Public Code
</div>
</div></a
>
</div>
<a onclick="ShowOverlay('navigation', 'animate-appear');window.event.stopPropagation()">
<div class="menu-QZKNM8">
<div class="rectangle-178-7Oxe2M"></div>
<div class="rectangle-180-7Oxe2M"></div></div
></a></div