melanie / Hister Config

0 إعجابات
0 اشتقاقات
1 ملفات
آخر نشاط 1 month ago
for remote server with multiple users
1 app:
2 search_url: https://duckduckgo.com/?q={query}
3 access_token: ""
4 user_handling: true
5 server:
6 base_url: "https://example.com"

melanie / Pixelfed Export Downloader to Markdown

0 إعجابات
0 اشتقاقات
2 ملفات
آخر نشاط 1 month ago
Takes the outbox.json Pixelfed export data and downloads the files and creates markdown files. Great for use with something like 11ty or Astro.
1 import { stringify } from "yaml";
2 import fs from "node:fs";
3 import https from "node:https";
4 import sanitize from "sanitize-html";
5
6 function omit(obj, props) {
7 obj = { ...obj };
8 props.forEach((prop) => delete obj[prop]);
9 return obj;
10 }
أحدث أقدم