You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/createBlogHelpers.js
+1
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ const newBlog = () => `
57
57
constgetBlogObj=(title,file,link)=>`
58
58
{
59
59
title: '${title}',
60
+
blurb: 'Put here what you want to show up on the blog list page. This should be a short description of the blog post, usually in the blog thoughts section as well.'
Copy file name to clipboardExpand all lines: src/assets/blogPosts.js
+11-2
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ import { PLACEHOLDER_SPLASH_URL } from '../../scripts/createBlogHelpers';
8
8
constposts=[
9
9
{
10
10
title: 'My Developer Story',
11
+
blurb:
12
+
'I wanted to share a small but important ongoing piece of my story. My process of becoming a developer, the help I had along the way, and my outlook going forward. I tried to write this post as more of an entertaining story than a technical piece about code. I plan to publish more technical blog posts soon—stay tuned.',
11
13
author: 'Ethan Bonsignori',
12
14
category: 'Life',
13
15
createdAt: 'March 3, 2021',
@@ -17,6 +19,8 @@ const posts = [
17
19
},
18
20
{
19
21
title: 'Looking Back at Past Portfolios',
22
+
blurb:
23
+
"I take a moment to document some of my past portfolio sites since I've created a few and they become rather obsolete once I replace the previous one. I put a lot of work into these sites and I didn't want them to fade into nothingness. Here you can find some of my thoughts on my previous portfolios as well as images and links to those sites.",
20
24
author: 'Ethan Bonsignori',
21
25
category: 'Technology',
22
26
createdAt: 'March 2, 2021',
@@ -25,8 +29,9 @@ const posts = [
25
29
splash: PLACEHOLDER_SPLASH_URL,
26
30
},
27
31
{
28
-
title:
29
-
'Uploading Cropped Profile Images to Digital Ocean Spaces Part 1: Frontend',
32
+
title: 'Uploading Cropped Profile Images to Digital Ocean Spaces',
33
+
blurb:
34
+
"A work in progress tutorial that turned out to be too big of a scope to fit in one guide. It aims to show how to upload and crop a user's profile picture and store it in Digital Ocean Spaces.",
30
35
author: 'Ethan Bonsignori',
31
36
category: 'Technology',
32
37
createdAt: 'March 17, 2021',
@@ -37,6 +42,8 @@ const posts = [
37
42
{
38
43
title:
39
44
'Setting up Automatic Firebase Hosting Deploys with Environment Secrets',
45
+
blurb:
46
+
'A quick guide on automating deployments for a Firebase Hosting project using GitHub Actions and how to access Environment Variables in your project.',
40
47
author: 'Ethan Bonsignori',
41
48
category: 'Technology',
42
49
createdAt: 'March 7, 2024',
@@ -47,6 +54,8 @@ const posts = [
47
54
},
48
55
{
49
56
title: 'Dockerizing a Python FastAPI App',
57
+
blurb:
58
+
'A guide on how to Dockerize a Python FastAPI application. I wrote this guide to help you get started with creating and running a Docker image of your FastAPI application following the steps I used to Dockerize my recent FastAPI project, UserVote',
A work in progress tutorial that turned out to be too wide of a scope to finish. It aims to show how to upload and crop a user's profile picture and store it in Digital Ocean Spaces.
16
+
A work in progress tutorial that turned out to be too big of a scope to fit in one guide. It aims to show how to upload and crop a user's profile picture and store it in Digital Ocean Spaces.
0 commit comments