-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
6100 lines (5084 loc) · 276 KB
/
Copy pathindex.html
File metadata and controls
6100 lines (5084 loc) · 276 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
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" />
<title>Nouns - NounsDAO and Nouns Community</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://use.fontawesome.com/2374bdec1c.css">
<link rel="stylesheet" href="./archived.css" />
</head>
<body>
<header class="header">
<div class="title-span">
<h1 class="site-title">
<img src="images/logo.svg" height="40" alt="Nouns - NounsDAO and Nouns Community" id="site-logo">
</h1>
</div>
</header>
<div class="main">
<div class="archive-span">Archived on 15/05/2025</br><p>Also available <a href="https://github.com/nounsDAO/discourse-archive/blob/main/markdown/README.md">as markdown</a></p></div>
<div class="topics">
<div class="header-row">
<span class="topic-head">Topics</span>
<span class="category-head">Category</span>
<span class="post-count-head">Posts</span>
</div>
<div class="topic-row">
<span class="topic"><i class="fa fa-thumb-tack" title="This was a pinned topic so it appears near the top of the page."></i><a href="t/welcome-to-discourse/7">Welcome to Discourse</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-nounsvision-bridging-the-governance-information-gap/5884">[Proposal] NounsVision: Bridging the Governance Information Gap</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/seems-like-nouns-are-dead/5852">Seems like Nouns are dead</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/you-found-nouns-now-what-how-do-we-onboard-new-people-with-thoughtful-care-and-respect/3668">YOU FOUND NOUNS NOW WHAT? : How do we onboard new people with thoughtful care and respect</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">11</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/i-need-information-about-ip-rules/5838">I need information about IP Rules</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/how-can-i-recover-my-stolen-or-lost-bitcoin-btc-visit-hackathon-tech-solution/5588">How can i recover my stolen or lost bitcoin (btc)?:visit hackathon tech solution</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounish-animations-for-kids-on-youtube-channel/4585">Nounish Animations for Kids on YouTube Channel</a></span>
<span class="category"></span>
<span class="post-count">18</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounish-melodies-podcast/5747">Nounish Melodies Podcast</a></span>
<span class="category">Introductions</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/the-future-of-nounsdao-innovation-governance-community-growthproposal-nouns-public-goods-accelerator-summary-this-proposal-aims-to-establish-a-nouns-public-goods-accelerator-to-fund-support-and-promote-projects-that-benefit-the-broader-web3-ecosy/5697">The Future of NounsDAO: Innovation, Governance & Community GrowthProposal: Nouns Public Goods Accelerator Summary This proposal aims to establish a Nouns Public Goods Accelerator to fund, support, and promote projects that benefit the broader web3 ecosy</a></span>
<span class="category">Introductions</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/bonus-for-nouns-community/5663">BONUS for Nouns community</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/introduce-yourself/25">Introduce Yourself</a></span>
<span class="category">Introductions</span>
<span class="post-count">218</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-student-run-theatre-productions/5659">Small Grants: Student-run theatre productions</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-old-project-and-staking/5609">Nouns old project and staking</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-comedy/5607">Nouns Comedy! :slight_smile:</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/new-and-yellow/5600">New and yellow :yellow_heart:</a></span>
<span class="category">Introductions</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/tamad-distributed-treasury-exchange-a-nouns-dapp/5589">TAMAD Distributed Treasury & Exchange - A Nouns DAPP</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/buying-the-freedom-of-mongkol-the-baby-elephant-thailand/5370">Buying the Freedom of Mongkol, the Baby Elephant - Thailand</a></span>
<span class="category"></span>
<span class="post-count">8</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/create-layer-three-chain/5584">Create layer three chain</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-project-merlin-the-future-of-decentralized-crowdfunding-and-daos/5550">Small Grants: Project Merlin; The Future of Decentralized Crowdfunding and DAOs</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/discord-verification/4157">Discord Verification</a></span>
<span class="category">Site Feedback</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-choice-an-interactive-sculpture-research-nouns-x-steve/5576">Small Grants: “Choice” An Interactive Sculpture & Research (Nouns x Steve)</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/on-chain-coin-flip-game-on-base-with-monthly-noun-acquisitions/5562">On-Chain Coin Flip Game on Base with Monthly Noun Acquisitions</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/the-grand-timeline/5540">The Grand Timeline :yarn:</a></span>
<span class="category"></span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/i-think-we-need-new-discord/5549">I think we need new Discord</a></span>
<span class="category">Site Feedback</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-visual-incentive-map/4109">Nouns Visual Incentive Map</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-deli-melbourne-aus/4061">NOUNS Deli - Melbourne, Aus</a></span>
<span class="category"></span>
<span class="post-count">17</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/suggestion-for-improving-organization-of-website-links-and-more/5519">Suggestion for Improving Organization of Website Links and More</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/how-do-i-vote-on-what-is-the-next-noun/5524">How do I vote on what is the next Noun?</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-collectible-recycled-plastic-art-toys/5450">Small Grants: Collectible Recycled Plastic Art Toys</a></span>
<span class="category"></span>
<span class="post-count">11</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-plush-by-uglydoll/5516">Nouns plush by Uglydoll</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/how-to-vote-with-nouns-agora/5485">How to vote with Nouns agora?</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-dao-collaboration-tool/5494">Nouns DAO Collaboration Tool</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounish-punks-backed-by-nouns-dao/5204">Nounish Punks backed by Nouns dao</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-unchaining-elephants-rescue-save-proliferate/5483">Nouns Unchaining Elephants: Rescue, Save & Proliferate</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-devcon-7/5479">Nouns @ DevCon 7</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/help-is-there-a-way-to-speak-to-someone-regarding-this/5461">HELP! Is there a way to speak to someone regarding this?</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/introduction-and-hi/5466">Introduction and hi</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grant-www-neomi-wtf-nouns-fork-for-impact/5467">Small Grant - www.neomi.wtf - nouns fork for Impact</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-launching-the-npl-nouns-pickleball-league/5448">SMALL GRANTS: Launching the NPL (Nouns Pickleball League)</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grant-yearly-music-festival-ritmos-del-mundo-nounish-2025-rescuing-the-music-world-and-colombian-traditions/5455">Small grant: Yearly Music Festival Ritmos del Mundo Nounish 2025. Rescuing the music world and Colombian traditions</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-need-something-more-innovative/4640">Nouns need something more innovative</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">46</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/looking-for-2d-nouns-style-artist/5334">Looking for 2D Nouns Style Artist</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/digital-art-exhibition/5437">Digital art exhibition</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/discussion-proposal-to-decentralize-and-delegate-treasury-management-execution-for-nouns-dao/5440">[Discussion] Proposal to Decentralize and Delegate Treasury Management & Execution for Nouns DAO</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouner-pickleball-artifest/5429">Nouner Pickleball Artifest</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-fund-nouns-terminal-to-create-the-best-auction-ux/5419">Proposal: Fund Nouns Terminal to create the best auction UX</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/create-casino-and-lottery-we-can-add-nft-lottery-and-games-but-no-risk-example-if-you-lose-10-you-cashback-3-but-after-1-month-and-entry-for-nft-lottery-you-can-get-free-entry-after-1-month-nouns-nft-will-be/5411">Create casino and lottery we can add nft lottery and games but no risk example if you lose 10$ you cashback 3$ but after 1 month and entry for NFT lottery you can get free entry after 1 month nouns nft will be :dart:</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-jumping-game-like-dino/5408">Nouns Jumping Game Like Dino</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-investment-change-the-world-for-the-better/5403">Nouns Investment - Change the World for the Better</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounstone-competitive-pvp-trading-card-game-tcg-in-the-world-of-nouns/5396"># Nounstone - Competitive PvP Trading Card Game (TCG) in the World of Nouns!</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/baseville-a-storytelling-universe-supported-by-nounsdao/5377">BaseVille A Storytelling Universe supported by NounsDAO</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposals-for-arabic-that-they-dont-have-nouns-dao-nft/5368">Proposals for arabic that they dont have nouns dao nft</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/starknet-airdrop-possibility/5360">Starknet airdrop possibility?</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/create-a-curated-show-of-nounish-nfts-in-the-hamptons-this-summer-with-nft-courses-taught-to-10-15-year-olds/5359">Create a curated show of Nounish NFTs in the Hamptons this summer with NFT courses taught to 10-15 year olds</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/semi-fungible-nouns-improving-nouns-price-discovery-and-mitigating-purely-arb-driven-forks/5353">Semi-fungible Nouns: Improving Nouns price discovery and mitigating purely arb-driven forks</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/funding-request-summitshare-blockchain-empowerment-for-the-gwembe-valley/5349">Funding Request: SummitShare: Blockchain Empowerment for the Gwembe Valley</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/names-nouns-x-ens/5297">Names - Nouns x ENS</a></span>
<span class="category"></span>
<span class="post-count">6</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-nouns-in-morocco-2024/5345">Proposal : Nouns In Morocco 2024</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/driven-by-purpose-rebuilding-a-golf-1-to-illuminate-suicide-prevention-and-nouns-awareness-in-africa/5343">Driven by Purpose: Rebuilding a Golf 1 to Illuminate Suicide Prevention and Nouns Awareness in Africa”</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-activation-in-kansas-city/5337">Nouns activation in Kansas City</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/designer-con-booth-proliferation-using-excess-funds/2777">DESIGNER CON booth, Proliferation using excess funds</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-in-move-ecosystem-rust-ecosystem/5299">Nouns In Move Ecosystem && Rust Ecosystem</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/keep-your-ens-safe-noun-eth/5331">Keep your ENS safe: noun.eth</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-board-game/5328">Nouns Board Game</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/upcoming-web3-game-shogungames-x-nounsdao/5325">Upcoming Web3 game (Shogungames x NounsDao)</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-vs-nft-nyc-a-city-wide-proliferation-activation/4240">NOUNs vs NFT NYC a City wide proliferation activation</a></span>
<span class="category"></span>
<span class="post-count">6</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounish-shorts-animation-festival/727">“NOUNISH SHORTS” animation festival</a></span>
<span class="category"></span>
<span class="post-count">11</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/free-web3-nouns-onboarding-workshop-for-creators-in-sydney/5322">Free Web3/Nouns Onboarding Workshop for Creators in Sydney</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-5-eth-to-mint-a-noun/5315">Small Grants: 5 ETH to Mint a Noun</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/how-can-we-get-feedback-on-the-nouns-farcaster-project-before-posting/5309">How can we get feedback on the Nouns/ Farcaster project before posting?</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/i-have-an-idea-for-nouns-that-will-help-the-whole-ecosystem/5303">I have an idea for nouns that will help the whole ecosystem</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/experienced-web2-game-dev-team-building-a-w3-sports-game/5226">Experienced Web2 Game Dev + Team building a w3 sports game</a></span>
<span class="category">Introductions</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounimals-solana-nft-project/5207">Nounimals Solana NFT Project</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/how-works-the-daily-auction/5274">How works the daily auction?</a></span>
<span class="category">Site Feedback</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-art-contracts-on-l2s/3953">Nouns art contracts on L2s?</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/make-austin-nounish-atx-nouns/5293">Make Austin Nounish / ATX Nouns</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-the-decentralized-music-festival-a-value-distribution-mechanism-for-the-music-industry/5284">Proposal: The Decentralized Music Festival - A Value Distribution Mechanism For The Music Industry</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounimals-solana-nfts-www-nounimal-xyz/5287">Nounimals Solana NFTs🆓:candy: www.nounimal.xyz</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/this-is-nouns-mint/3432">This is Nouns mint</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/arterfical-intelegence/5261">Arterfical intelegence</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/lets-research-hashconfucius-and-karls-data-falsification-and-financial-deceit/5275">Let’s research HashConfucius and Karl’s data falsification and financial deceit</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">11</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/education-school-version/5248">Education / School Version</a></span>
<span class="category"></span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/big-dreamer-introduction/5243">Big Dreamer Introduction</a></span>
<span class="category">Introductions</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-glasses-off/5254">Small Grants: Nouns Glasses Off</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/garden-5-missed-it/5229">Garden 5 - Missed it</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-nouns-digital-sat-practice-tests-free-forever-to-over-3-million-students-each-year-worldwide/5180">Proposal: Nouns Digital SAT Practice Tests Free Forever to Over 3 Million Students Each Year Worldwide</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/first-nouns-music-festival-a-blockchain-marketing-event-strategy/5230">First Nouns Music Festival - A Blockchain Marketing Event Strategy</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/evil-is-back-after-2-years-vote-me-in-reward-the-builders-prop-house-round/5227">Evil is back after 2 years! Vote me in ” Reward the Builders ” Prop House Round</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/solseeker-zbailey83/5208">SOLseeker (@zbailey83)</a></span>
<span class="category">Introductions</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/supporting-impact-this-giving-season-through-endaoment-org-and-the-universal-impact-pool-uip/5142">Supporting impact this Giving Season through Endaoment.org and the Universal impact pool (UIP)</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/any-plan-of-action-or-support-if-technical-gurus-for-the-nounish-p-dilemma/5177">Any plan of action or support if technical gurus for the Nounish P dilemma?</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-dao-arb-game/5140">Nouns DAO Arb Game</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-cosmetic-in-game/5171">Small Grants: Nouns Cosmetic in Game</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/newbie-a-few-questions-to-the-community/5132">Newbie, a few questions to the community</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/game-guess-nouns-fork/5162">Game: Guess Nouns Fork</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-a-cool-idea-for-clean-sustainable-energy-investment-opportunity-for-nouns-dao-nounspropohouse/5118">[PROPOSAL] A Cool Idea for Clean & sustainable Energy: investment opportunity for nouns dao @nounspropohouse</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/where-is-the-website-twitter-to-follow-nouns-block-graffiti-x-eth-solo-staking/4604">Where is the website/twitter to follow “Nouns block graffiti x ETH solo staking”</a></span>
<span class="category"></span>
<span class="post-count">12</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/who-is-this-address/5155">Who is this address?</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposition-for-feedback-long-term-nouns-engagement-with-bigshot-toyworks/1012">Proposition for feedback: long term nouns engagement with bigshot toyworks</a></span>
<span class="category"></span>
<span class="post-count">14</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/lend-your-noun-for-voting-rights/5151">Lend your noun for voting rights?</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-play-play-to-learn/5138">Nouns Play: Play to Learn</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-embedding-philanthropy-into-nounsdaos-treasury/5125">[PROPOSAL] Embedding philanthropy into NounsDAO’s treasury</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-cozy-community-governed-nouns-farcaster-client-for-the-nouns-app/5123">Small grants: Cozy&Community-Governed Nouns Farcaster Client for the Nouns App</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/the-problem-with-nouns-sponsored-video-content-analysis/5119">The problem with Nouns-sponsored Video Content - Analysis</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/free-mint-everyday-forever/5113">Free mint everyday forever</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounsdao-on-vc-founder-interview-series/5102">NounsDAO on VC/Founder interview series</a></span>
<span class="category"></span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/subscribe-to-xyguy-on-yt/5108">Subscribe to Xyguy on yt</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nounsdao-in-taipei-blockchain-week/2889">NounsDAO in Taipei Blockchain Week</a></span>
<span class="category"></span>
<span class="post-count">40</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-question-funding-for-academic-research-into-meme-proliferation/5082">Small Grants Question: Funding for Academic Research into Meme Proliferation</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/what-do-you-think-about-merging-the-world-of-pets-with-nouns/5078">What do you think about merging the world of #pets with #NOUNS?</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/eat-sleep-dream-nouns-a-grant-program-for-artists/1735">Eat, Sleep, Dream Nouns - a Grant program for artists</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">20</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/atenea-wtf-shape-your-own-governance-experience/5079">ATENEA.WTF: Shape Your Own Governance Experience</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/atx-dao-x-nounsdao/4171">ATX DAO x NounsDAO</a></span>
<span class="category"></span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grant-a-cool-idea-for-clean-sustainable-energy-investment-opportunity-for-nouns-dao-proposal/5076">SMALL GRANT: A Cool Idea for Clean & sustainable Energy: investment opportunity for nouns dao (PROPOSAL)</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/requirements-to-submit-proposal/5009">Requirements to submit proposal</a></span>
<span class="category"></span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/automated-workflow-for-nouns/5037">Automated workflow for Nouns</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-dao-punks/5066">Small Grants - DAO Punks</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-integration-to-keymaker-project/5034">Small grants : Nouns integration to KeyMaker Project</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grant-nouns-x-kek2earn/5051">Small Grant: Nouns x kek2earn</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-a-movie-update-changelog/4418">Nouns : A Movie - Update Changelog</a></span>
<span class="category"></span>
<span class="post-count">37</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/raves-onchain-by-nouns-dao/5045">Raves OnChain by Nouns DAO</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-vs-monsters-an-action-comedy-video-game/2127">Nouns VS Monsters, an action comedy video game</a></span>
<span class="category"></span>
<span class="post-count">25</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-to-name-an-asteroid-after-nouns/4957">Small Grants: To name an asteroid after Nouns</a></span>
<span class="category"></span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-fueling-ethereums-future-in-mexico/5041">Small Grants: Nouns Fueling Ethereum’s Future in Mexico</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/worldwide-lo-fi-noggles-everey-where-reorder/4674">WORLDWIDE LO-Fi NOGGLES Everey where! reorder</a></span>
<span class="category"></span>
<span class="post-count">30</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-community-gardening-sponsoring/5027">Nouns Community gardening sponsoring</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-indao-is-working-with-central-asian-countries-to-integrate-blockchain-technology-into-everyday-life-education-medicine-sports-and-banking/5025">Proposal: InDAO is working with Central Asian Countries to integrate blockchain technology into everyday life(education,medicine,sports and banking)</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/crosschain-public-good-infrastructure-for-nft-ownership/5022">Crosschain Public Good Infrastructure for NFT ownership</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/governance-principles/4660">Governance principles</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-royale-browser-3d-game/4997">Small Grants: [Nouns Royale] Browser 3D game</a></span>
<span class="category"></span>
<span class="post-count">7</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-zk-private-voting-for-nouns-dao/3405">Small Grants: ZK (Private) Voting for Nouns DAO</a></span>
<span class="category"></span>
<span class="post-count">14</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-liberate-yourself-with-products-introducing-the-commercialization-of-the-noggle-changer/5002">Proposal:Liberate yourself with products introducing the commercialization of the “Noggle Changer”!⌐◨-◨</a></span>
<span class="category"></span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/help-me-get-noun-206-on-an-f1-car/4999">Help me get Noun 206 on an F1 car</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-tattoo/1918">Small Grants: Nouns Tattoo</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nounsverse-metaverse-game-for-nouns-dao/4992">Small Grants: [ Nounsverse ] - Metaverse Game for Nouns DAO</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/misuse-of-delegation-and-voting-power/3059">Misuse of Delegation and voting power?</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">62</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-promotional-video-ubique/4989">Proposal : Promotional Video “Ubique”</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/a-new-des-dev-dao/4982">A new Des-Dev Dao</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-nft-collections-celebrating-world-heritage-sites/4978">Proposal: NFT Collections Celebrating World Heritage Sites</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-sk8rdao-seed-money-featuring-nouns-wtf/4972">Small Grants : SK8rDAO Seed Money Featuring NOUNS.WTF</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/non-fungible-aotearoa-documentary-about-the-artist-behind-noun-cats/1109">Non-fungible Aotearoa: documentary about the artist behind Noun Cats</a></span>
<span class="category"></span>
<span class="post-count">5</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nouns-educational-videos/4969">Small Grants: Nouns Educational Videos</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/about-proposals/4937">About proposals</a></span>
<span class="category">NounsDAO</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/malicious-fork-calls-attn-foundation-nounders-all-dao-participants/4955">Malicious Fork Calls (ATTN Foundation, Nounders & all DAO participants)</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">3</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-ethiopia-free-ethereum-development-bootcamp-in-addis-ababa/4950">Small Grants: ETHiopia - Free Ethereum Development Bootcamp in Addis Ababa</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nounish-frens-character-ip-launch-of-animated-emoticon-packs/4944">[SMALL GRANTS] Nounish FRENS Character IP - Launch of Animated Emoticon Packs</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/calling-all-solo-stakers/4942">Calling all Solo Stakers!</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-nouns-dao-must-invest-in-neurodiversity-neuronounslens-will-change-society/4897">Proposal:Nouns DAO must invest in Neurodiversity! “NeuroNounsLens⌐◨-◨” will change society</a></span>
<span class="category"></span>
<span class="post-count">18</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/atenea-redefining-nouniverse-navegability/4887">Atenea: Redefining Nouniverse Navegability</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-nounish-device/4930">SMALL GRANTS: nounish device</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/delorean-nouns-steth-temperature-check/4924">Delorean <> Nouns stETH temperature check</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/design-win-eth-nouns-wet-wipes-design-contest/4411">Design & Win ETH! Nouns Wet Wipes Design Contest</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">29</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-dao-solid-nft/3552">Nouns DAO & Solid NFT</a></span>
<span class="category">Uncategorized</span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-idea-nounish-hardware-device/4915">“PROPOSAL IDEA” NOUNISH hardware device</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/nouns-vs-red-bull-monster-rocketstar-etc/4913">NOUNS vs Red Bull, Monster, RocketStar, etc</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/gitcoin-x-index-coop-eth-treasury-diversification/4868">Gitcoin x Index Coop ETH Treasury Diversification</a></span>
<span class="category"></span>
<span class="post-count">2</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/a-playbook-for-saving-the-struggling-web3-ecosystem/4905">A playbook for ⌐◨-◨ saving the struggling Web3 ecosystem</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/please-read-my-appeal-to-the-entire-nouns-community-this-is-not-for-votes/4880">PLEASE READ: My appeal to the entire Nouns Community (this is not for votes)</a></span>
<span class="category">Nounish Discussion</span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/request-for-friendship-nouns-vtuber/4890">Request for Friendship: Nouns VTuber</a></span>
<span class="category">Introductions</span>
<span class="post-count">1</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-forever-together-nouns-and-pets/4841">PROPOSAL:Forever Together: NOUNS and Pets</a></span>
<span class="category"></span>
<span class="post-count">7</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/proposal-worldwide-scavenger-hunt-game-with-sidewalk-robots-nounsbots/4852">Proposal: Worldwide Scavenger Hunt Game with Sidewalk Robots (NounsBots)</a></span>
<span class="category"></span>
<span class="post-count">4</span>
</div>
<div class="topic-row">
<span class="topic"><a href="t/small-grants-forever-together-nouns-and-pets/4858">Small Grants:Forever Together: NOUNS and Pets</a></span>
<span class="category"></span>
<span class="post-count">1</span>
</div>