forked from dlang/dlang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
howto-promote.dd
92 lines (70 loc) · 2.85 KB
/
howto-promote.dd
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
Ddoc
$(D_S $(TITLE),
$(P So you've written a cool project in D, and it's ready for others
to use or to get involved with helping develop it further.
Just posting a Github link isn't going to work. All your blood, sweat
and effort will just go to waste.
You'll need to provide a way for people who want to know about
your project to be able to find it.
)
$(P The steps are:
)
$(OL
$(LI Create a good starting point for the project)
$(LI Let people know about it)
)
$(H3 Creating a good starting point)
$(P For many using a Github README is enough, but rolling
out your own website creates a more professional look.
(Don't forget that with $(LINK2 https://pages.github.com, Github Pages)
hosting is free.)
)
$(UL
$(LI The keywords and phrases that someone who would be interested
in your project might type into Google to find it.)
$(LI The phrase $(B D programming language) and $(B dlang) somewhere on the page.
This helps build the brand on the internet.
If you just use $(B D), nobody will find it via search.)
$(LI Screen shots of the program. Even better, for graphics
and game demos, make a short video of it.)
$(LI List the capabilities of the package and what it's good for.)
$(LI Identify who this package is intended for and why they'd
want to use it.)
$(LI Copyright and license information for any source code.
If you intend for it to be
$(LINK2 https://en.wikipedia.org/wiki/Public_domain, public domain),
make sure to
explicitly mark it so.)
)
$(H3 Promoting the Project)
$(P Submit the page or article to the following:
)
$(UL
$(LI $(HTTPS forum.dlang.org/group/announce, newsgroup))
$(LI $(HTTPS wiki.dlang.org, D wiki))
$(LI $(HTTPS github.com/zhaopuming/awesome-d, awesome-d) - A curated list of awesome D documents, frameworks, libraries and software)
$(LI $(HTTPS reddit.com/r/programming, Reddit Programming) - User-contributed news platform)
$(LI $(HTTPS twitter.com, Twitter) using the `#dlang` hashtag.)
$(LI $(HTTPS news.ycombinator.com, Hacker News) - Reddit for nerds)
$(LI $(HTTPS slashdot.org, Slashdot) - news for nerds)
$(LI $(HTTPS dzone.com, dzone) - Developer news)
$(LI $(HTTP gamedev.net, gamedev.net) - anything game related)
$(LI $(HTTPS wikipedia.org, Wikipedia) if it genuinely adds to an article on the subject)
)
$(P If your project is a conversion of an existing project to D,
email the project leader of that existing project and suggest
that he incorporate a link to your project on his page.
)
$(P For the absolutely most effective results, submit
articles to:
)
$(UL
$(LI $(LINK2 http://www.sdexpo.com/, SDWest))
$(LI $(LINK2 http://www.oopsla.org/, OOPSLA))
)
$(P Have a look whether there are conferences in your field at which
you could present your project.
)
)
Macros:
TITLE=Promoting D Projects (or Internet Marketing 101)