-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIntern weekly report templates & legends
More file actions
153 lines (110 loc) · 5.35 KB
/
Copy pathIntern weekly report templates & legends
File metadata and controls
153 lines (110 loc) · 5.35 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
# weekly-report-template (with examples)
# [Your Name]
## w/c [Date | 4 August 2025]
### Rose-bud-thorn
#### 🌹
* [Things that went well this week. | This week was the last time all the interns were here together, and it was just nice having everyone around, even though I was sometimes too busy to be there all day.]
#### 🌱
* [Something with potential or your're looking forward to. | I'm looking forward to the hackathon next week, especially with the added context KW shared that makes it feel a lot more developmental.]
#### 🌵
* [A challenge or pain point that needs attention. | Reimbursement processes proved to be complicated (of course). ]
### 🤝 Reciprocal support
#### Who did I help?
* [Summary with names in initials | Getting the process started for travel reimbursements for upcoming speaker.]
#### Who helped me?
* [Names in initiials | LWH & TH]
* [Tasks | reviewed BCEN blog post draft.]
### Activities / tasks
#### What did I do?
##### CDSS / Interdisciplinary Coordination
* [Task description (X hrs) | Coordinated with future lecture speaker (1 hr).]
##### BIDS Coordination
* [Task description (X hrs) | Coordinated CRELS and CSSTP schedule (3 hrs).]
#### What will I do next week?
* My available hours next week are:
* [Your assigned timeslots (Full or changes if needed) |
* Mon, 11am to 2pm (Full)
* Wed, 1pm to 4pm (Need to leave at 3pm for an event)
* Fri, 10am to 3pm (Unavailable due to a midterm)]
##### BIDS Coordination
* [Tasks | Continue blog for Developer Summit.]
---------------------------------------------------------------------------------------
# weekly-report-template (clean)
# [Your Name]
## w/c [Date]
### Rose-bud-thorn
#### 🌹
* [Things that went well this week.]
#### 🌱
* [Something with potential or your're looking forward to.]
#### 🌵
* [A challenge or pain point that needs attention.]
### 🤝 Reciprocal support
#### Who did I help?
* [Summary with names in initials.]
#### Who helped me?
* [Names in initiials]
* [Tasks.]
### Activities / tasks
#### What did I do?
##### CDSS / Interdisciplinary Coordination
* [Task description (X hrs)]
##### BIDS Coordination
* [Task description (X hrs)]
#### What will I do next week?
* My available hours next week are:
* [Your timeslots (Full or changes if needed)]
##### BIDS Coordination
* [Tasks.]
---------------------------------------------------------------------------------------
# Legend
## Introduction
This is the legend of the templates for the weekly reports that the BIDS interns will be working on. The weekly reports are to be completed every week, keeping the latest report on the top, with older reports below in chronological order.
## Formating
### Housekeeping
* Leave one blank line after each section to keep the report easy to read on GitHub.
* Make sure to start another numbered line after each complete sentence, to make it easy to keep track of the lines.
* Period after every complete sentence.
* Names in Initials
* Put the latest report at the top so we can scroll down to the oldest reports, starting from the first week.
### Basic Syntax
* For the subtitles, use hashtags + space + subtitle.
* "# A first-level heading"
* "## A second-level heading"
* "### A third-level heading"
* Styling
* Bold: **This is bold text** (or Command+B (Mac) or Ctrl+B (Windows/Linux))
* Italic: _This text is italicized_ (or Command+i or Ctrl+i)
* All Bold and Italic: ***All this text is important***
* Subscript: This is a <sub>subscript</sub> text.
* Underline: This is an <ins>underlined</ins> text.
* Quoting
* Quoting text: use >
* > Text that is a quote.
* Quoting code in a sentence: use single backticks ` ` (or Command+E (Mac) or Ctrl+E (Windows/Linux))
* Quoting an entire block of codes or commands: use triple backticks ``` ```
* Links
* Link text in brackets [ ], and the URL in parenthesis ()
* Please fill out the [application form](https://applicationform.bids.com)
* Image
* use 
* 
* Lists
* Bullet Points: add a space after * or - or + and then start your sentence.
* Ordered list: use numbers 1. 2. 3. etc.
* Nested Lists: start a new line with two more spaces and use - or *
* To-do lists: Preface list items with a hyphen - and space followed by [ ]. To mark a task as complete, use [x]
* - [x] Done
- [ ] Haven't finished yet
* Emoji: use a colon : and the name of your emoji, typing the colon and a letter will pull up a list of recommended emojis.
* Footnotes: [^1] after the content, and then start a new line, add your notes after [^1]:
* This is a chocolate [^1].
[^1]: It's a milk chocolate.
* Alerts:use a special blockquote line specifying the alert type, followed by the alert information in a standard blockquote.
* > [!NOTE]
> Useful information that users should know, even when skimming content.
> [!TIP]
> Helpful advice for doing things better or more easily.
* and there are also [!IMPORTANT] [!WARNING] [!CAUTION]
* Ignoring the github markdown formattings: use a backlash \ before the markdown character.
* This syntax legend is adapted from (https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#ignoring-markdown-formatting); credit to the original source 👍.