Skip to content

Commit 637916c

Browse files
authored
Initialize Template-SPM2001-Journaling-TW-ELM-V1
0 parents  commit 637916c

File tree

104 files changed

+18855
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+18855
-0
lines changed

.editorconfig

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
# Start of script
2+
3+
# Editor configuration file for Seanpm2001/Journaling project (V6 derived template)
4+
5+
root = true
6+
7+
[*]
8+
indent_style = space
9+
indent_size = 2
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = false
13+
insert_final_newline = false
14+
line_wrap_mode = soft wrap
15+
16+
[*.md]
17+
indent_style = space
18+
indent_size = 2
19+
end_of_line = lf
20+
charset = utf-8
21+
trim_trailing_whitespace = false
22+
insert_final_newline = false
23+
line_wrap_mode = soft wrap
24+
25+
[*.yml *.yaml]
26+
indent_style = space
27+
indent_size = 2
28+
end_of_line = lf
29+
charset = utf-8
30+
trim_trailing_whitespace = false
31+
insert_final_newline = false
32+
line_wrap_mode = soft wrap
33+
34+
[*.txt]
35+
indent_style = space
36+
indent_size = 2
37+
end_of_line = lf
38+
charset = utf-8
39+
trim_trailing_whitespace = false
40+
insert_final_newline = false
41+
line_wrap_mode = soft wrap
42+
43+
[*.mk]
44+
indent_style = space
45+
indent_size = 2
46+
end_of_line = lf
47+
charset = utf-8
48+
trim_trailing_whitespace = false
49+
insert_final_newline = false
50+
line_wrap_mode = soft wrap
51+
52+
[*.htm *.html]
53+
indent_style = space
54+
indent_size = 2
55+
end_of_line = lf
56+
charset = utf-8
57+
trim_trailing_whitespace = false
58+
insert_final_newline = false
59+
line_wrap_mode = soft wrap
60+
61+
[*.j]
62+
indent_style = space
63+
indent_size = 2
64+
end_of_line = lf
65+
charset = utf-8
66+
trim_trailing_whitespace = false
67+
insert_final_newline = false
68+
line_wrap_mode = soft wrap
69+
70+
[*.py]
71+
indent_style = space
72+
indent_size = 2
73+
end_of_line = lf
74+
charset = utf-8
75+
trim_trailing_whitespace = false
76+
insert_final_newline = false
77+
line_wrap_mode = soft wrap
78+
79+
[*.c *.h]
80+
indent_style = space
81+
indent_size = 2
82+
end_of_line = lf
83+
charset = utf-8
84+
trim_trailing_whitespace = false
85+
insert_final_newline = false
86+
line_wrap_mode = soft wrap
87+
88+
[*.sh]
89+
indent_style = space
90+
indent_size = 2
91+
end_of_line = lf
92+
charset = utf-8
93+
trim_trailing_whitespace = false
94+
insert_final_newline = false
95+
line_wrap_mode = soft wrap
96+
97+
# File info
98+
99+
# File type: Editorconfig file (*.editorconfig)
100+
# File version: 2 (Sunday, 2021 August 22nd at 8:43 pm)
101+
# Line count (including blank lines and compiler line): 104
102+
103+
# End of script

.gitattributes

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
# Start of script
2+
# .gitattributes
3+
# This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project.
4+
# Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file
5+
# .gitattributes
6+
# and nothing else, no characters before, no characters after
7+
# Start of linguist script
8+
# HTML
9+
*.htm linguist-detectable=false
10+
*.htm linguist-documentation=false
11+
*.htm linguist-language=HTML
12+
*.html linguist-detectable=false
13+
*.html linguist-documentation=false
14+
*.html linguist-language=HTML
15+
*.mhtm linguist-detectable=false
16+
*.mhtm linguist-documentation=false
17+
*.mhtm linguist-language=HTML
18+
*.mhtml linguist-detectable=false
19+
*.mhtml linguist-documentation=false
20+
*.mhtm linguist-language=HTML
21+
*.xhtm linguist-detectable=false
22+
*.xhtm linguist-documentation=false
23+
*.xhtm linguist-language=HTML
24+
*.xhtml linguist-detectable=false
25+
*.xhtml linguist-documentation=false
26+
*.xhtm linguist-language=HTML
27+
# HTML Application
28+
*.hta linguist-detectable=false
29+
*.hta linguist-documentation=false
30+
*.hta linguist-language=HTML
31+
# Elm
32+
*.elm linguist-detectable=true
33+
*.elm linguist-documentation=false
34+
*.elm linguist-language=Elm
35+
# Makefile (GNU Make)
36+
*.mk linguist-detectable=false
37+
*.mk linguist-documentation=false
38+
*.mk linguist-language=Makefile
39+
*.mak linguist-detectable=false
40+
*.mak linguist-documentation=false
41+
*.mak linguist-language=Makefile
42+
*.make linguist-detectable=false
43+
*.make linguist-documentation=false
44+
*.make linguist-language=Makefile
45+
*.makefile linguist-detectable=false
46+
*.makefile linguist-documentation=false
47+
*.makefile linguist-language=Makefile
48+
# YAML
49+
*.yml linguist-detectable=false
50+
*.yml linguist-documentation=false
51+
*.yml linguist-language=YAML
52+
*.yaml linguist-detectable=false
53+
*.yaml linguist-documentation=false
54+
*.yaml linguist-language=YAML
55+
# ROFF
56+
*.0 linguist-detectable=false
57+
*.0 linguist-documentation=false
58+
*.0 linguist-language=Roff
59+
*.1 linguist-detectable=false
60+
*.1 linguist-documentation=false
61+
*.1 linguist-language=Roff
62+
*.2 linguist-detectable=false
63+
*.2 linguist-documentation=false
64+
*.2 linguist-language=Roff
65+
*.3 linguist-detectable=false
66+
*.3 linguist-documentation=false
67+
*.3 linguist-language=Roff
68+
# SVG
69+
*.svg linguist-detectable=false
70+
*.svg linguist-documentation=false
71+
*.svg linguist-language=SVG
72+
# JSON
73+
*.json linguist-detectable=false
74+
*.json linguist-documentation=false
75+
*.json linguist-language=JSON
76+
# TeX
77+
*.tex linguist-detectable=false
78+
*.tex linguist-documentation=false
79+
*.tex linguist-language=TeX
80+
# BibTeX
81+
*.bib linguist-detectable=false
82+
*.bib linguist-documentation=false
83+
*.bib linguist-language=BibTeX
84+
# INI
85+
*.ini linguist-detectable=false
86+
*.ini linguist-documentation=false
87+
*.ini linguist-language=INI
88+
# Citation FIle Format
89+
*.cff linguist-detectable=false
90+
*.cff linguist-documentation=false
91+
*.cff linguist-language=Citation-File-Format
92+
# KDE Desktop
93+
*.desktop linguist-detectable=false
94+
*.desktop linguist-documentation=false
95+
*.desktop linguist-language=desktop
96+
# Plain Text
97+
*.txt linguist-detectable=false
98+
*.txt linguist-documentation=false
99+
*.txt linguist-language=Plain-text
100+
# ReStructuredText
101+
*.rst linguist-detectable=false
102+
*.rst linguist-documentation=false
103+
*.rst linguist-language=reStructuredText
104+
# WikiText
105+
*.wiki linguist-detectable=false
106+
*.wiki linguist-documentation=false
107+
*.wiki linguist-language=Wikitext
108+
# Markdown
109+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
110+
*.md linguist-detectable=false
111+
*.md linguist-documentation=false
112+
*.md linguist-language=Markdown
113+
*.mkd linguist-detectable=false
114+
*.mkd linguist-documentation=false
115+
*.mkd linguist-language=Markdown
116+
*.mdown linguist-detectable=false
117+
*.mdown linguist-documentation=false
118+
*.mdown linguist-language=Markdown
119+
*.markdown linguist-detectable=false
120+
*.markdown linguist-documentation=false
121+
*.markdown linguist-language=Markdown
122+
# URLL
123+
*.urll linguist-detectable=true
124+
*.urll linguist-documentation=false
125+
*.urll linguist-language=URLL
126+
# URL
127+
*.url linguist-detectable=false
128+
*.url linguist-documentation=false
129+
*.url linguist-language=URL
130+
# PNG
131+
*.png linguist-detectable=false
132+
*.png linguist-documentation=false
133+
*.png linguist-language=PNG
134+
# GIF
135+
*.gif linguist-detectable=false
136+
*.gif linguist-documentation=false
137+
*.gif linguist-language=GIF
138+
# JPG/JPEG
139+
*.jpg linguist-detectable=false
140+
*.jpg linguist-documentation=false
141+
*.jpg linguist-language=JPG
142+
*.jpeg linguist-detectable=false
143+
*.jpeg linguist-documentation=false
144+
*.jpeg linguist-language=JPEG
145+
# Git
146+
*.editorconfig linguist-detectable=true
147+
*.editorconfig linguist-documentation=false
148+
*.editorconfig linguist-language=Editorconfig
149+
*.gitattributes linguist-detectable=true
150+
*.gitattributes linguist-documentation=false
151+
*.gitattributes linguist-language=Gitattributes
152+
*.gitignore linguist-detectable=true
153+
*.gitignore linguist-documentation=false
154+
*.gitignore linguist-language=Gitignore
155+
*.gitmodules linguist-detectable=true
156+
*.gitmodules linguist-documentation=false
157+
*.gitmodules linguist-language=Gitmodules
158+
# End of linguist script
159+
# File info
160+
# File type: gitattributes file (*.gitattributes)
161+
# File version: 4 (Thursday, 2022 May 19th at 3:27 pm pst)
162+
# Line count (including blank lines and compiler line): 164
163+
# End of script

.github/.FUNDING.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
5+
patreon: seanpm2001 # Creator page
6+
patreon: seanpm2001_software # Main page
7+
# Replace with a single Patreon username
8+
9+
open_collective: # Replace with a single Open Collective username
10+
ko_fi: # Replace with a single Ko-fi username
11+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
12+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
13+
liberapay: # Replace with a single Liberapay username
14+
issuehunt: # Replace with a single IssueHunt username
15+
otechie: # Replace with a single Otechie username
16+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/.github_README.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
***
3+
4+
# .github folder info
5+
6+
The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021.
7+
8+
This directory contains several features.
9+
10+
**Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file.
11+
12+
**Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
13+
14+
_I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._
15+
16+
* A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles.
17+
18+
* Sometimes, other YAML files are included for configuration of issues.
19+
20+
**Coming soon:** A separate YAML file for each issue directory that contains label data
21+
22+
**Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
23+
24+
_I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_
25+
26+
**SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md).
27+
28+
That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading)
29+
30+
***
31+
32+
## File info
33+
34+
**File type:** `Markdown (*.md)`
35+
36+
**Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)`
37+
38+
**File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)`
39+
40+
**Line count (including blank lines and compiler line):** `43`
41+
42+
***

.github/.github_README_V1.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
***
3+
4+
# .github folder info
5+
6+
The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021.
7+
8+
This directory contains several features.
9+
10+
**Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file.
11+
12+
**Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
13+
14+
_I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._
15+
16+
* A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles.
17+
18+
* Sometimes, other YAML files are included for configuration of issues.
19+
20+
**Coming soon:** A separate YAML file for each issue directory that contains label data
21+
22+
**Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
23+
24+
_I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_
25+
26+
**SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md).
27+
28+
That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading)
29+
30+
***
31+
32+
## File info
33+
34+
**File type:** `Markdown (*.md)`
35+
36+
**Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)`
37+
38+
**File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)`
39+
40+
**Line count (including blank lines and compiler line):** `43`
41+
42+
***

0 commit comments

Comments
 (0)