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
| # Fetching All Bookmarks from the X (Twitter) API | |
| A practical guide to pulling a user's complete bookmark history via the X API v2, | |
| including pagination, incremental sync, and a few gotchas that aren't obvious from | |
| the docs. | |
| ## Prerequisites | |
| - A project with **OAuth 2.0 User Context** access. | |
| - An app with a client ID / client secret and a redirect URI configured. |
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
| #!/bin/bash | |
| # Configuration parameters | |
| PYTHON_VERSION="3.11.11" | |
| CUDA_VERSION="12.6.3" | |
| CUDA_DRIVER="560.35.05" | |
| SCRIPT_VERSION="1.0.0" | |
| GITHUB_URL="https://gist.github.com/erdaltoprak/cdc1ec4056b81a9da540229dcde3aa0b" | |
| CLEANUP_CUDA="no" # Set to "no" to keep the CUDA installer and "yes" to remove it |
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
| #!/usr/bin/env bash | |
| ############################################################################### | |
| # Mac Bootstrap – Preferences, Homebrew, MAS apps | |
| # Works with the stock /bin/bash 3.2 on macOS (no mapfile required) | |
| # (c) 2025 Erdal • MIT License | |
| ############################################################################### | |
| ############################################################################### | |
| # Colours / log helpers | |
| ############################################################################### |