Skip to content

Instantly share code, notes, and snippets.

View bram-dingelstad's full-sized avatar
join me gamedev.lgbt

Bram Dingelstad bram-dingelstad

join me gamedev.lgbt
View GitHub Profile
@bram-dingelstad
bram-dingelstad / import-markdown-files-into-notion.py
Created November 5, 2022 16:28
Import Markdown pages (e.g Hugo) into Notion
import os
import re
import json
from pprint import pprint
from subprocess import Popen, PIPE, STDOUT
from notion_client import Client
DATABASE_ID = os.getenv('DATABASE_ID') #NOTE: ID of your notion database you want to import into
@bram-dingelstad
bram-dingelstad / import_with_auto_hitboxes.gd
Created August 30, 2022 21:31
Mesh with automatic hitboxes script for Godot
tool
extends EditorScenePostImport
var main_scene
func post_import(scene):
main_scene = scene
add_hitboxes_to_structures(scene)
print('Imported!')