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 python3 | |
| """ | |
| FreshRSS feed fetcher — safe to run via `tirith run <url>`. | |
| Fetches articles from FreshRSS and prints them grouped by category. | |
| Usage: | |
| python3 freshrss_fetch.py [hours] [category ...] | |
| python3 freshrss_fetch.py 24 "AI" "Technology" | |
| python3 freshrss_fetch.py # defaults: last 24h, all categories | |
| """ |
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
| using System.Diagnostics; | |
| using YourApp.Users; | |
| using Microsoft.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore.Infrastructure; | |
| using Microsoft.EntityFrameworkCore.Storage; | |
| using OpenTelemetry.Trace; | |
| namespace YourApp.MigrationService; | |
| public class ApiDbInitializer( |
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
| using Microsoft.Extensions.Primitives; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Web; | |
| using System.Text.Json; | |
| using System.Net; | |
| using Telegram.Bot.Types; | |
| namespace AnimalTrackz.API.Middleware | |
| { |