Skip to content

Commit

Permalink
chore: typos cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ashgw committed May 2, 2024
1 parent 586780b commit 8b367b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions public/blogs/branded-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ firstModDate: 2024-04-27T09:15:00-0401
minutesToRead: 3
tags:
- 'typescript'
- 'typing'
- 'quality'
---

Expand Down Expand Up @@ -180,5 +179,5 @@ const baz2 = requestBaz(foo.id, bar.id);
showLineNumbers={true}
/>
<C>
`ts-roids` is yet another library I created this month, it helps to bulletproof TypeScript with types and decorators, it includes more than 150+ utilities, you can check it out <L href="https://github.com/ashgw/ts-roids">here</L>, this just a small example of what you might use it for.
`ts-roids` is a library I created this week, the goal is to bulletproof TypeScript with types and decorators, it includes more than 150+ utilities, you can check it out <L href="https://github.com/ashgw/ts-roids">here</L>, this just a small example of what you might use it for.
</C>
2 changes: 1 addition & 1 deletion public/blogs/mock-async-python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ With that out of the way, lets start with the two main ways you can patch an asy
<H2>Monkey Patch</H2>

<C>
Given a function ``some_result`` of the class ``Foo`` (we can argue later if static methods are true OOP, but bear with me now)
Given a function ``some_result`` of the class ``Foo``
</C>
<Code
code=
Expand Down
2 changes: 1 addition & 1 deletion public/blogs/white-board-interviews.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tags:
- 'scams'
---
<C>
Does being able to solve the hardest LeetCode problems make you a better developer? No. But will learning basic algorithms and understanding how to apply them to real-world scenarios make you a better developer? Yes. I recently had to learn about Postgres' indexing algorithm called <L href="https://www.postgresql.org/docs/current/gist.html">Gist</L>, I now know more about how indexes work in Postgres. Did I memorize every detail of how it works? No.
Does being able to solve the hardest LeetCode problems make you a better developer? No. Will learning basic algorithms and understanding how to apply them to real-world scenarios make you a better developer? Yes. I recently had to learn about Postgres' indexing algorithm called <L href="https://www.postgresql.org/docs/current/gist.html">Gist</L>, I now know more about how indexes work in Postgres. Did I memorize every detail of how it works? No.
</C>

<C>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const nextJS = {
};

export const pub = {
SITE_URL_PROD: 'https://ashgw.net',
SITE_URL_PROD: 'http://localhost:3000',
SITE_URL_DEV: 'http://localhost:3000',
EMAIL: process.env.EMAIL as string,
};

0 comments on commit 8b367b7

Please sign in to comment.