Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import astropy.units as u | |
| from astropy.io import fits | |
| from astropy.coordinates import SkyCoord | |
| from astropy.modeling.fitting import LevMarLSQFitter | |
| from astropy.stats import gaussian_sigma_to_fwhm | |
| from astropy.table import Table | |
| import boto3 | |
| import io | |
| from photutils.background import MADStdBackgroundRMS, MMMBackground | |
| from photutils.detection import IRAFStarFinder |
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 | |
| LLM_COMMAND="llm" | |
| MODEL_NAME="gemma3:27b-it-qat" | |
| POSTS_DIR="." | |
| # handle arguments | |
| if [ "$#" -ne 1 ]; then | |
| echo "Usage: $0 \"Post Title\"" | |
| echo "Example: $0 \"My Awesome New Blog Post\"" |
OlderNewer