This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI. | |
| Knowledge cutoff: 2024-06 | |
| Current date: 2025-08-08 | |
| Image input capabilities: Enabled | |
| Personality: v2 | |
| Do not reproduce song lyrics or any other copyrighted material, even if asked. | |
| You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor. | |
| Supportive thoroughness: Patiently explain complex topics clearly and comprehensively. | |
| Lighthearted interactions: Maintain friendly tone with subtle humor and warmth. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Basic ### | |
| # The directory to store the downloaded file. | |
| dir=${HOME}/Downloads | |
| # Downloads the URIs listed in FILE. | |
| input-file=${HOME}/.aria2/aria2.session | |
| # Save error/unfinished downloads to FILE on exit. | |
| save-session=${HOME}/.aria2/aria2.session | |
| # Save error/unfinished downloads to a file specified by --save-session option every SEC seconds. If 0 is given, file will be saved only when aria2 exits. Default: 0 | |
| save-session-interval=60 | |
| # Set the maximum number of parallel downloads for every queue item. See also the --split option. Default: 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // foam-obsidian-importer.js | |
| // Import from obsidian to foam | |
| // | |
| // • Copy all files recursively from SRC_DIR to DST_DIR. | |
| // • For each .md file: | |
| // - rename to kebab-case.md | |
| // - add header "# filename /n/n" | |
| // - fix internal links and attachments links | |
| // • Copy any other (non .md) file. | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // There's two ways to use Tachyons together with styled-components | |
| // Both are valid, which one you use depends if you want to always apply a tachyons class when a certain component | |
| // is rendered or if you want to apply it for specific instances. | |
| // 1. Use .attrs to define classNames that should always be applied to a styled component | |
| // Whenever you use <Component /> now it'll have both the styled-components as well as the Tachyons class | |
| // See the docs for more info: https://www.styled-components.com/docs/basics#attaching-additional-props | |
| const Component = styled.div.attrs({ | |
| className: 'bw0-l', | |
| })` |