Skip to content

Commit

Permalink
Update part 1 part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjoeoui committed Oct 14, 2023
1 parent a9624f8 commit bb6bd3b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/posts/AllPosts.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const publishedPostEntries = await getCollection("posts");
---

<div>
<div class="flex max-w-xl flex-col">
<div class="flex max-w-xl flex-col gap-2">
{
publishedPostEntries.length !== 0 ? (
publishedPostEntries.map((post) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: Boost Your Productivity on macOS
date: 2023-10-01
isDraft: true
title: Boost Your Productivity on macOS [Part 1/2]
date: 2023-10-14
tags: ["macOS", "Productivity"]
---

Expand Down Expand Up @@ -74,7 +73,7 @@ This provides lots of benefits:

One important thing that completes the Rectangle experience is 👇

## Hiding your macOS Dock
## Hiding Your macOS Dock

In my opinion, the Dock takes up lots of screen real estate, but provides little to no value in return.

Expand Down Expand Up @@ -112,7 +111,7 @@ PS: For iPad users, just imagine if your iPad's Dock does not go away after you
open an app, taking up space on the bottom of your screen forever. That would be a horrible
UX, right? Yet that's exactly what we have on macOS right now if you do not hide your Dock!

## Raycast is a must-have
## Raycast Is a Must-Have

After we ditch the useless full / split screen mode and the annoying Dock that
drags down your productivity, we can finally start boosting our productivity.
Expand Down Expand Up @@ -152,7 +151,7 @@ look up TailwindCSS docs with the [TailwindCSS extension](https://www.raycast.co
The idea is, you can almost always find
a Raycast extension for what you need :)

## Have you tried Arc?
## Have You Tried Arc? Say Goodbye to Chrome

Moving on to the browser space. We tend to spend a lot of time using our browser,
and since we are spending so much time on it, we need to make sure it is nice and
Expand All @@ -178,7 +177,7 @@ Moreover, the new AI features they rolled out last week: Ask on Page, and 5-Seco
<source src="https://assets.itsjoeoui.com/vtcfHxL6/download" type="video/mp4">
</video>

## The Best Screen Recorder - Screen Studio
## Effortless Demo - Screen Studio

Have you wondered how I made the animated screen recordings above?
[Screen Studio](https://www.screen.studio/) is the answer.
Expand Down
6 changes: 6 additions & 0 deletions src/content/posts/boost-your-productivity-on-macos-part-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Boost Your Productivity on macOS [Part 2/2]
date: 2023-10-14
isDraft: true
tags: ["macOS", "Productivity"]
---
2 changes: 1 addition & 1 deletion src/types/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const Post = z.object({
title: z.string(),
tags: z.array(z.string()),
img: z.string().optional(),
isDraft: z.boolean(),
isDraft: z.boolean().default(false),
date: z.date(),
author: z.string().default("Joey Yu"),
});
Expand Down

0 comments on commit bb6bd3b

Please sign in to comment.