Skip to content

Instantly share code, notes, and snippets.

@goldjunge91
goldjunge91 / get-obsidian-posts.py
Created November 2, 2024 00:51 — forked from AlexMikhalev/get-obsidian-posts.py
Sync notion to obsidian world md
from notion.client import NotionClient
import datetime
import os
from slugify import slugify
import re
import requests
import time
import hashlib
import shutil
import sys
@goldjunge91
goldjunge91 / nextjs14-vps-guide.md
Created June 30, 2024 15:41 — forked from aryanprince/nextjs14-vps-guide.md
Quickly deploy a Next.js 14 app on a VPS (Droplets, EC2, etc.) with app router, RSCs, and other Next.js features

from aryan: most guides i found online weren't helpful for me, hope this helps tho :)

1. Connect to machine

ssh root@<server-ip-address>

Optional but recommended:

sudo apt update && sudo apt upgrade -y