Skip to content

Commit 5ce085c

Browse files
committed
Create Thanksgiving Post
1 parent 0137ca4 commit 5ce085c

File tree

3 files changed

+387
-0
lines changed

3 files changed

+387
-0
lines changed
136 KB
Loading

docs/posts/2025/10/07/14/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "Hacktoberfest"
3+
date: 2025-10-07
4+
authors:
5+
- norm
6+
---
7+
8+
Today is about software and Thanksgiving! What should software developers be grateful for? Here is a list for inspiration: https://www.infoworld.com/article/3612366/a-software-developer-gives-thanks.html
9+
10+
Everyone and anyone are welcome to [join](https://weeklydevchat.com/join/) as long as you are kind, supportive, and respectful of others. Zoom link will be posted at 12pm MDT.
11+
12+
![Thanksgiving cake](Thanksgiving_Cake_(30245602297).jpg)
Lines changed: 375 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,375 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>index.md</title>
6+
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
7+
8+
<style>
9+
/* https://github.com/microsoft/vscode/blob/master/extensions/markdown-language-features/media/markdown.css */
10+
/*---------------------------------------------------------------------------------------------
11+
* Copyright (c) Microsoft Corporation. All rights reserved.
12+
* Licensed under the MIT License. See License.txt in the project root for license information.
13+
*--------------------------------------------------------------------------------------------*/
14+
15+
body {
16+
font-family: var(--vscode-markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif);
17+
font-size: var(--vscode-markdown-font-size, 14px);
18+
padding: 0 26px;
19+
line-height: var(--vscode-markdown-line-height, 22px);
20+
word-wrap: break-word;
21+
}
22+
23+
html,footer,header{
24+
font-family: var(--vscode-markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif);
25+
font-size: var(--vscode-markdown-font-size, 14px);
26+
}
27+
28+
#code-csp-warning {
29+
position: fixed;
30+
top: 0;
31+
right: 0;
32+
color: white;
33+
margin: 16px;
34+
text-align: center;
35+
font-size: 12px;
36+
font-family: sans-serif;
37+
background-color:#444444;
38+
cursor: pointer;
39+
padding: 6px;
40+
box-shadow: 1px 1px 1px rgba(0,0,0,.25);
41+
}
42+
43+
#code-csp-warning:hover {
44+
text-decoration: none;
45+
background-color:#007acc;
46+
box-shadow: 2px 2px 2px rgba(0,0,0,.25);
47+
}
48+
49+
body.scrollBeyondLastLine {
50+
margin-bottom: calc(100vh - 22px);
51+
}
52+
53+
body.showEditorSelection .code-line {
54+
position: relative;
55+
}
56+
57+
body.showEditorSelection .code-active-line:before,
58+
body.showEditorSelection .code-line:hover:before {
59+
content: "";
60+
display: block;
61+
position: absolute;
62+
top: 0;
63+
left: -12px;
64+
height: 100%;
65+
}
66+
67+
body.showEditorSelection li.code-active-line:before,
68+
body.showEditorSelection li.code-line:hover:before {
69+
left: -30px;
70+
}
71+
72+
.vscode-light.showEditorSelection .code-active-line:before {
73+
border-left: 3px solid rgba(0, 0, 0, 0.15);
74+
}
75+
76+
.vscode-light.showEditorSelection .code-line:hover:before {
77+
border-left: 3px solid rgba(0, 0, 0, 0.40);
78+
}
79+
80+
.vscode-light.showEditorSelection .code-line .code-line:hover:before {
81+
border-left: none;
82+
}
83+
84+
.vscode-dark.showEditorSelection .code-active-line:before {
85+
border-left: 3px solid rgba(255, 255, 255, 0.4);
86+
}
87+
88+
.vscode-dark.showEditorSelection .code-line:hover:before {
89+
border-left: 3px solid rgba(255, 255, 255, 0.60);
90+
}
91+
92+
.vscode-dark.showEditorSelection .code-line .code-line:hover:before {
93+
border-left: none;
94+
}
95+
96+
.vscode-high-contrast.showEditorSelection .code-active-line:before {
97+
border-left: 3px solid rgba(255, 160, 0, 0.7);
98+
}
99+
100+
.vscode-high-contrast.showEditorSelection .code-line:hover:before {
101+
border-left: 3px solid rgba(255, 160, 0, 1);
102+
}
103+
104+
.vscode-high-contrast.showEditorSelection .code-line .code-line:hover:before {
105+
border-left: none;
106+
}
107+
108+
img {
109+
max-width: 100%;
110+
max-height: 100%;
111+
}
112+
113+
a {
114+
text-decoration: none;
115+
}
116+
117+
a:hover {
118+
text-decoration: underline;
119+
}
120+
121+
a:focus,
122+
input:focus,
123+
select:focus,
124+
textarea:focus {
125+
outline: 1px solid -webkit-focus-ring-color;
126+
outline-offset: -1px;
127+
}
128+
129+
hr {
130+
border: 0;
131+
height: 2px;
132+
border-bottom: 2px solid;
133+
}
134+
135+
h1 {
136+
padding-bottom: 0.3em;
137+
line-height: 1.2;
138+
border-bottom-width: 1px;
139+
border-bottom-style: solid;
140+
}
141+
142+
h1, h2, h3 {
143+
font-weight: normal;
144+
}
145+
146+
table {
147+
border-collapse: collapse;
148+
}
149+
150+
table > thead > tr > th {
151+
text-align: left;
152+
border-bottom: 1px solid;
153+
}
154+
155+
table > thead > tr > th,
156+
table > thead > tr > td,
157+
table > tbody > tr > th,
158+
table > tbody > tr > td {
159+
padding: 5px 10px;
160+
}
161+
162+
table > tbody > tr + tr > td {
163+
border-top: 1px solid;
164+
}
165+
166+
blockquote {
167+
margin: 0 7px 0 5px;
168+
padding: 0 16px 0 10px;
169+
border-left-width: 5px;
170+
border-left-style: solid;
171+
}
172+
173+
code {
174+
font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
175+
font-size: 1em;
176+
line-height: 1.357em;
177+
}
178+
179+
body.wordWrap pre {
180+
white-space: pre-wrap;
181+
}
182+
183+
pre:not(.hljs),
184+
pre.hljs code > div {
185+
padding: 16px;
186+
border-radius: 3px;
187+
overflow: auto;
188+
}
189+
190+
pre code {
191+
color: var(--vscode-editor-foreground);
192+
tab-size: 4;
193+
}
194+
195+
/** Theming */
196+
197+
.vscode-light pre {
198+
background-color: rgba(220, 220, 220, 0.4);
199+
}
200+
201+
.vscode-dark pre {
202+
background-color: rgba(10, 10, 10, 0.4);
203+
}
204+
205+
.vscode-high-contrast pre {
206+
background-color: rgb(0, 0, 0);
207+
}
208+
209+
.vscode-high-contrast h1 {
210+
border-color: rgb(0, 0, 0);
211+
}
212+
213+
.vscode-light table > thead > tr > th {
214+
border-color: rgba(0, 0, 0, 0.69);
215+
}
216+
217+
.vscode-dark table > thead > tr > th {
218+
border-color: rgba(255, 255, 255, 0.69);
219+
}
220+
221+
.vscode-light h1,
222+
.vscode-light hr,
223+
.vscode-light table > tbody > tr + tr > td {
224+
border-color: rgba(0, 0, 0, 0.18);
225+
}
226+
227+
.vscode-dark h1,
228+
.vscode-dark hr,
229+
.vscode-dark table > tbody > tr + tr > td {
230+
border-color: rgba(255, 255, 255, 0.18);
231+
}
232+
233+
</style>
234+
235+
<style>
236+
/* Tomorrow Theme */
237+
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
238+
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
239+
240+
/* Tomorrow Comment */
241+
.hljs-comment,
242+
.hljs-quote {
243+
color: #8e908c;
244+
}
245+
246+
/* Tomorrow Red */
247+
.hljs-variable,
248+
.hljs-template-variable,
249+
.hljs-tag,
250+
.hljs-name,
251+
.hljs-selector-id,
252+
.hljs-selector-class,
253+
.hljs-regexp,
254+
.hljs-deletion {
255+
color: #c82829;
256+
}
257+
258+
/* Tomorrow Orange */
259+
.hljs-number,
260+
.hljs-built_in,
261+
.hljs-builtin-name,
262+
.hljs-literal,
263+
.hljs-type,
264+
.hljs-params,
265+
.hljs-meta,
266+
.hljs-link {
267+
color: #f5871f;
268+
}
269+
270+
/* Tomorrow Yellow */
271+
.hljs-attribute {
272+
color: #eab700;
273+
}
274+
275+
/* Tomorrow Green */
276+
.hljs-string,
277+
.hljs-symbol,
278+
.hljs-bullet,
279+
.hljs-addition {
280+
color: #718c00;
281+
}
282+
283+
/* Tomorrow Blue */
284+
.hljs-title,
285+
.hljs-section {
286+
color: #4271ae;
287+
}
288+
289+
/* Tomorrow Purple */
290+
.hljs-keyword,
291+
.hljs-selector-tag {
292+
color: #8959a8;
293+
}
294+
295+
.hljs {
296+
display: block;
297+
overflow-x: auto;
298+
color: #4d4d4c;
299+
padding: 0.5em;
300+
}
301+
302+
.hljs-emphasis {
303+
font-style: italic;
304+
}
305+
306+
.hljs-strong {
307+
font-weight: bold;
308+
}
309+
</style>
310+
311+
<style>
312+
/*
313+
* Custom MD PDF CSS
314+
*/
315+
html,footer,header{
316+
font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif, "Meiryo";
317+
318+
}
319+
body {
320+
font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif, "Meiryo";
321+
padding: 0 12px;
322+
}
323+
324+
pre {
325+
background-color: #f8f8f8;
326+
border: 1px solid #cccccc;
327+
border-radius: 3px;
328+
overflow-x: auto;
329+
white-space: pre-wrap;
330+
overflow-wrap: break-word;
331+
}
332+
333+
pre:not(.hljs) {
334+
padding: 23px;
335+
line-height: 19px;
336+
}
337+
338+
blockquote {
339+
background: rgba(127, 127, 127, 0.1);
340+
border-color: rgba(0, 122, 204, 0.5);
341+
}
342+
343+
.emoji {
344+
height: 1.4em;
345+
}
346+
347+
code {
348+
font-size: 14px;
349+
line-height: 19px;
350+
}
351+
352+
/* for inline code */
353+
:not(pre):not(.hljs) > code {
354+
color: #C9AE75; /* Change the old color so it seems less like an error */
355+
font-size: inherit;
356+
}
357+
358+
/* Page Break : use <div class="page"/> to insert page break
359+
-------------------------------------------------------- */
360+
.page {
361+
page-break-after: always;
362+
}
363+
364+
</style>
365+
<link rel="stylesheet" href="file:///Users/Protomar/Desktop/weeklydevchat.github.io/R%3A%5C2.Travail%5C1.Enseignement%5CCours%5C_1.Outils%5C2.Developpement%5C1.SCSS%5Cmain.css" type="text/css"><link rel="stylesheet" href="file:///Users/Protomar/Desktop/weeklydevchat.github.io/D%3A%5Crdaros%5CCours%5C_1.Outils%5C2.Developpement%5C1.SCSS%5Cmain.css" type="text/css">
366+
</head>
367+
368+
<body>
369+
<p>Today is about software and Thanksgiving! What should software developers be grateful for? Here is a list for inspiration: https://www.infoworld.com/article/3612366/a-software-developer-gives-thanks.html</p>
370+
<p>Everyone and anyone are welcome to <a href="https://weeklydevchat.com/join/">join</a> as long as you are kind, supportive, and respectful of others. Zoom link will be posted at 12pm MDT.</p>
371+
<p><img src="file:///Users/Protomar/Desktop/weeklydevchat.github.io/docs/posts/2025/10/07/14/Thanksgiving_Cake_(30245602297).jpg" alt="Thanksgiving cake"></p>
372+
373+
</body>
374+
375+
</html>

0 commit comments

Comments
 (0)