Skip to content

Commit

Permalink
topic clustering with openai
Browse files Browse the repository at this point in the history
  • Loading branch information
lmorchard committed Apr 27, 2024
1 parent 3d83061 commit 0282749
Show file tree
Hide file tree
Showing 9 changed files with 849 additions and 4 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
439 changes: 439 additions & 0 deletions content/posts/2024-04-27-topic-clustering-gen-ai/index.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions content/public/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,19 +305,20 @@ section.content article pre[class*="language-"] {
}

section.content article {
overflow-y: hidden;
overflow-y: hidden;
}

section.content article video,
section.content article img {
max-width: 100% !important;
}
section.content article div.wp-caption {
max-width: 100% !important;

}

section.content article figure.fullwidth,
section.content article iframe.fullwidth,
section.content article video.fullwidth,
section.content article img.fullwidth {
width: 100%;
max-width: 100% !important;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"type": "module",
"engines": {
"node": "16.x"
"node": "18.x"
},
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion script/tweak-covers.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for fn in ./posts/**/cover-orig.png; do
for fn in ./content/posts/**/cover-orig.png; do
new_fn=${fn/cover-orig/cover};
echo $new_fn;
convert $fn -scale 33% -dither Riemersma -colors 32 -scale 300% $new_fn;
Expand Down

0 comments on commit 0282749

Please sign in to comment.