Skip to content

Commit b2476f8

Browse files
codercatdevmgehrls
andauthored
Release (#471)
* fix start date (#453) * add author and html to rss (#455) * Fix/course data (#457) * Fixed Author lookup * update sponsor listings * add key to force refresh of data (#460) * #418 feature:/account details (#445) * add feature/account details #418 * fixed wrong href * Fix/picks (#466) * large links wrap text * season 2 picks * fix data refresh issue * fix guest pick wrap * season 1 * move cwcc to posts * season 0 * fix video (#469) * add holopin badge (#470) * Fix/hashnode (#472) * fix cloud functions on pnpm * add missing field for graph --------- Co-authored-by: Matt Gehrls <mattgehrls@gmail.com>
1 parent 1b0e811 commit b2476f8

File tree

8 files changed

+71
-66
lines changed

8 files changed

+71
-66
lines changed

.github/holopin.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
organization: 'codingcatdev'
2+
defaultSticker: clhzaw5z9233140fl4804rmv3u
3+
stickers:
4+
-
5+
id: clhzaw5z9233140fl4804rmv3u
6+
alias: AJ-Primary

apps/codingcatdev/src/routes/(content-single)/(non-course)/post/how-to-achieve-16-9-resolution-while-using-divvy-on-a-mac/+page.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ start: March 19, 2022
1414
title: How to achieve 16:9 resolution while using Divvy on a Mac
1515
---
1616

17+
<script lang="ts">
18+
import Video from '$lib/components/content/Video.svelte';
19+
</script>
20+
1721
Have you ever tried to record a video and notice that it is a few pixels off? Lets fix that so you can produce good quality videos!
1822

1923
## Easy Solution
@@ -92,9 +96,7 @@ So if you screen is 4K 3840px by 2160px, and your menu is 24px high then your ac
9296

9397
This is an amazingly simple, but yet very powerful tool. You can break your screen up into anything from 1x1 all the way to 10x10 blocks. There are a lot more features check out the below video to see more of what is possible.
9498

95-
<div style={{overflow: 'hidden',paddingTop: '56.25%', position: 'relative', width: '100%', height: '0px'}}> <div style={{width: '100%', height:'100%',position: 'absolute', top: 0, left: 0}}> <iframe src="https://www.youtube.com/embed/Z6eBPC-4ZOY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style={{width: '100%', height:'100%'}}></iframe> </div> </div>
96-
97-
[https://www.youtube.com/embed/Z6eBPC-4ZOY](https://www.youtube.com/embed/Z6eBPC-4ZOY)
99+
<Video src="https://youtu.be/Z6eBPC-4ZOY" title="Divvy Blocks" />
98100

99101
## What is the big deal
100102

apps/firebase/functions/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
},
3939
"devDependencies": {
4040
"@types/uuid": "^8.3.0",
41+
"@types/node": "^14.18.36",
4142
"@typescript-eslint/eslint-plugin": "^5.28.0",
4243
"@typescript-eslint/parser": "^5.28.0",
4344
"eslint": "^8.9.0",

apps/firebase/functions/src/hashnode/scheduledNotionToHashNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ ${post.content}
158158
const response = await createPublicationStory(input);
159159
console.log(
160160
'createPublicationStory result:',
161-
JSON.stringify(response?.data)
161+
JSON.stringify(response)
162162
);
163163

164164
const hashnodeSlug =

apps/firebase/functions/src/utilities/calendly.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import fetch from 'node-fetch';
21
import { calendlyAccessToken } from '../config/config';
32
const calendlyApi = `https://api.calendly.com`;
43

apps/firebase/functions/src/utilities/hashnode.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ export const createPublicationStory = async (input: any) => {
2828
}
2929
`,
3030
variables: {
31-
input,
31+
input: {
32+
isPartOfPublication: {
33+
"publicationId": hashnodePublicationId,
34+
},
35+
...input,
36+
},
3237
},
3338
};
3439
console.log('calling mutation with: ', data);

apps/firebase/functions/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"outDir": "lib",
77
"sourceMap": true,
88
"strict": true,
9-
"target": "es2017"
9+
"target": "es2022"
1010
},
1111
"compileOnSave": true,
1212
"include": ["src"]

0 commit comments

Comments
 (0)