melanie / Maloja - Catppuccin Mocha Theme
0 喜欢
0 派生
1 文件
最后活跃于 3 weeks ago
I had the best luck just tossing this in the `/mljdata/custom_css` folder on Docker
| 1 | :root { |
| 2 | --base-color: #1e1e2e; |
| 3 | --base-color-dark: #181825; |
| 4 | --base-color-light: #313244; |
| 5 | --base-color-accent: #74c7ec; |
| 6 | --base-color-accent-dark: #74c7ec; |
| 7 | --base-color-accent-light: #6c7086; |
| 8 | |
| 9 | --text-color: #cdd6f4; |
| 10 | --text-color-selected: fadeout(var(--text-color),40%); |
melanie / Bluesky and Mastodon to JSON Feed
0 喜欢
0 派生
3 文件
最后活跃于 10 months ago
From the blog post I Made a Mastodon and Bluesky Client
Usage
Bluesky
Install dependencies
npm i --save @atproto/api
melanie / Pixelfed Export Downloader to Markdown
0 喜欢
0 派生
2 文件
最后活跃于 10 months 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 | } |
上一页
下一页