Add derstandard RSS helper script
This commit is contained in:
parent
b9e1597556
commit
b7c5344a66
6 changed files with 143 additions and 47 deletions
16
TOOLS.md
16
TOOLS.md
|
|
@ -40,6 +40,20 @@ When user arrives home, HA calls the webhook. Check `memory/arrival-reminders.js
|
||||||
- Use `"message"` for simple reminders to display as-is
|
- Use `"message"` for simple reminders to display as-is
|
||||||
- Always include a unique `id` for each item
|
- Always include a unique `id` for each item
|
||||||
|
|
||||||
|
## Der Standard RSS
|
||||||
|
|
||||||
|
Helper script: `~/bin/derstandard`
|
||||||
|
|
||||||
|
```bash
|
||||||
|
derstandard urls [max] # Article URLs only (default: 50)
|
||||||
|
derstandard titles [max] # Article titles only
|
||||||
|
derstandard items [max] # Title + URL pairs (tab-separated)
|
||||||
|
derstandard raw [max] # Full RSS XML
|
||||||
|
```
|
||||||
|
|
||||||
|
- Uses internal fivefilters proxy (bypasses web_fetch private IP block)
|
||||||
|
- Pre-processes output for minimal token usage
|
||||||
|
|
||||||
## Forgejo Git Access
|
## Forgejo Git Access
|
||||||
|
|
||||||
Helper script: `~/bin/forgejo`
|
Helper script: `~/bin/forgejo`
|
||||||
|
|
@ -56,7 +70,7 @@ forgejo search <query> # Search repos
|
||||||
forgejo raw <endpoint> # Raw API call
|
forgejo raw <endpoint> # Raw API call
|
||||||
```
|
```
|
||||||
|
|
||||||
- URL: `https://git.cloonar.com` (resolved via internal IP 10.42.97.55)
|
- URL: `https://git.cloonar.com`
|
||||||
- User: `openclawd` (read-only)
|
- User: `openclawd` (read-only)
|
||||||
- Token stored in `.credentials/forgejo.env`
|
- Token stored in `.credentials/forgejo.env`
|
||||||
|
|
||||||
|
|
|
||||||
48
bin/derstandard
Executable file
48
bin/derstandard
Executable file
|
|
@ -0,0 +1,48 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Der Standard RSS helper - fetches via internal fivefilters
|
||||||
|
set -e
|
||||||
|
|
||||||
|
FIVEFILTERS_URL="https://fivefilters.cloonar.com"
|
||||||
|
FIVEFILTERS_IP="10.42.97.5"
|
||||||
|
RSS_SOURCE="https://www.derstandard.at/rss"
|
||||||
|
|
||||||
|
# Resolve to internal IP (bypasses web_fetch private IP block)
|
||||||
|
CURL="curl -sk --resolve fivefilters.cloonar.com:443:${FIVEFILTERS_IP}"
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
cat <<EOF
|
||||||
|
Usage: derstandard <command> [args]
|
||||||
|
|
||||||
|
Commands:
|
||||||
|
urls [max] Extract article URLs (default: 50)
|
||||||
|
titles [max] Extract article titles
|
||||||
|
items [max] Title + URL pairs (tab-separated)
|
||||||
|
raw [max] Raw RSS XML
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch_feed() {
|
||||||
|
local max="${1:-50}"
|
||||||
|
local encoded_url=$(printf '%s' "$RSS_SOURCE" | sed 's/:/%3A/g; s/\//%2F/g')
|
||||||
|
$CURL "${FIVEFILTERS_URL}/makefulltextfeed.php?url=${encoded_url}&max=${max}&links=preserve&exc="
|
||||||
|
}
|
||||||
|
|
||||||
|
case "${1:-}" in
|
||||||
|
urls)
|
||||||
|
fetch_feed "${2:-50}" | grep -oP '<link>\K[^<]+' | grep "derstandard.at/story"
|
||||||
|
;;
|
||||||
|
titles)
|
||||||
|
fetch_feed "${2:-50}" | grep -oP '<title><!\[CDATA\[\K[^\]]+' | tail -n +2
|
||||||
|
;;
|
||||||
|
items)
|
||||||
|
feed=$(fetch_feed "${2:-50}")
|
||||||
|
paste <(echo "$feed" | grep -oP '<title><!\[CDATA\[\K[^\]]+' | tail -n +2) \
|
||||||
|
<(echo "$feed" | grep -oP '<link>\K[^<]+' | grep "derstandard.at/story") 2>/dev/null | head -50
|
||||||
|
;;
|
||||||
|
raw)
|
||||||
|
fetch_feed "${2:-50}"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
21
memory/2026-02-03.md
Normal file
21
memory/2026-02-03.md
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
# 2026-02-03 (Monday)
|
||||||
|
|
||||||
|
## Tasks Completed
|
||||||
|
- ✅ Paraclub 2FA extension deployed
|
||||||
|
- ✅ CI templates working for build + deployment
|
||||||
|
- ✅ CI templates integrated into GBV
|
||||||
|
|
||||||
|
## In Progress
|
||||||
|
- CI templates: E2E tests
|
||||||
|
- CI templates: Build with frontend
|
||||||
|
- CI templates: Integrate into other TYPO3 sites
|
||||||
|
|
||||||
|
## Reminders Set
|
||||||
|
- Friday Feb 6: Buy Essiggurkerl for Super Bowl (dad brings Schinkenfleckerl)
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
- Discussed Goose (Block's open-source Claude Code alternative) - has permission modes but not as polished
|
||||||
|
- Helped with Forgejo CI templates - reusable workflows don't show steps in UI (known limitation), composite actions work better
|
||||||
|
- WhatsApp connection stable after a few brief 499 disconnects (auto-recovered)
|
||||||
|
- Fixed Der Standard RSS cron jobs - added "Feed down" error reporting for fivefilters.cloonar.com
|
||||||
|
- User fixed: fivefilters.cloonar.com back online, git.cloonar.com DNS resolved
|
||||||
|
|
@ -1,14 +1,19 @@
|
||||||
{
|
{
|
||||||
"urls": [
|
"urls": [
|
||||||
|
"https://openai.com/index/sora-feed-philosophy",
|
||||||
|
"https://openai.com/index/snowflake-partnership",
|
||||||
|
"https://magazine.sebastianraschka.com/p/categories-of-inference-time-scaling",
|
||||||
|
"https://simonwillison.net/2026/Feb/3/january/",
|
||||||
|
"https://simonwillison.net/2026/Feb/3/brandon-sanderson/",
|
||||||
|
"https://openai.com/index/taisei",
|
||||||
|
"https://openai.com/index/the-next-chapter-for-ai-in-the-eu",
|
||||||
|
"https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
|
||||||
|
"https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
|
||||||
"https://simonwillison.net/2026/Feb/2/introducing-the-codex-app/",
|
"https://simonwillison.net/2026/Feb/2/introducing-the-codex-app/",
|
||||||
"https://simonwillison.net/2026/Feb/2/no-humans-allowed/",
|
"https://simonwillison.net/2026/Feb/2/no-humans-allowed/",
|
||||||
"https://openai.com/index/introducing-the-codex-app",
|
"https://openai.com/index/introducing-the-codex-app",
|
||||||
"https://openai.com/index/retiring-gpt-4o-and-older-models",
|
"https://openai.com/index/retiring-gpt-4o-and-older-models",
|
||||||
"https://openai.com/index/snowflake-partnership",
|
|
||||||
"https://simonwillison.net/2026/Feb/1/openclaw-in-docker/",
|
"https://simonwillison.net/2026/Feb/1/openclaw-in-docker/",
|
||||||
"https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
|
|
||||||
"https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
|
|
||||||
"https://magazine.sebastianraschka.com/p/categories-of-inference-time-scaling",
|
|
||||||
"https://magazine.sebastianraschka.com/p/state-of-llms-2025",
|
"https://magazine.sebastianraschka.com/p/state-of-llms-2025",
|
||||||
"https://openai.com/index/inside-our-in-house-data-agent",
|
"https://openai.com/index/inside-our-in-house-data-agent",
|
||||||
"https://openai.com/index/introducing-gpt-5-2-codex",
|
"https://openai.com/index/introducing-gpt-5-2-codex",
|
||||||
|
|
@ -23,5 +28,5 @@
|
||||||
"https://openai.com/index/disney-sora-agreement",
|
"https://openai.com/index/disney-sora-agreement",
|
||||||
"https://openai.com/index/ten-years"
|
"https://openai.com/index/ten-years"
|
||||||
],
|
],
|
||||||
"lastUpdated": "2026-02-02T21:05:00Z"
|
"lastUpdated": "2026-02-03T21:05:00Z"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,60 +1,56 @@
|
||||||
{
|
{
|
||||||
"urls": [
|
"urls": [
|
||||||
"https://www.derstandard.at/story/3000000306783/toxische-naehe-was-die-epstein-files-ueber-den-krypto-konflikt-verraten?ref=rss",
|
"https://www.derstandard.at/story/3000000306903/etappensieg-fuer-saudischen-staatsfonds-mubadala-im-streit-mit-signa?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306800/bleiwerte-der-us-amerikaner-waren-frueher-bis-zu-100-mal-hoeher-als-heute?ref=rss",
|
"https://www.derstandard.at/story/3000000306639/wer-ist-der-naechste-kuba-im-wuergegriff-von-us-praesident-trump?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306752/warum-auf-dem-red-carpet-immer-oefter-penis-kleider-zu-sehen-sind?ref=rss",
|
"https://www.derstandard.at/story/3000000306855/kunstsammler-leon-black-war-jeffrey-epsteins-haupteinnahmequelle?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306320/norwegische-kronprinzessin-taucht-vor-prozessbeginn-gegen-ihren-sohn-in-epstein-akten-auf?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306731/50-kilo-tresortuer-verfehlte-security-nur-knapp-bankomat-bomber-bande-drohen-zehn-jahre-haft?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306798/warum-die-eisbaeren-auf-spitzbergen-gegen-den-trend-immer-fetter-werden?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306773/lego-wirft-den-pokeball-und-startet-mit-sets-von-pikachu-bis-bisaflor?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000303908/warum-online-bewerbungsgespraeche-so-schwierig-sind-und-wie-man-dennoch-punktet?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306775/weniger-latein-humanistische-bildung-ist-kein-ballast?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306770/kein-gold-oder-bitcoin-gekauft-vielleicht-war-das-doch-kein-fehler?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306811/machtkampf-in-china-mit-unberechenbaren-folgen?ref=rss",
|
"https://www.derstandard.at/story/3000000306811/machtkampf-in-china-mit-unberechenbaren-folgen?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306880/-g-e-s-p-e-r-r-t-bis-020226-1800-uhr-ihs-senkt-inflationserwartung-f252r-2026-auf-22-prozent?ref=rss",
|
"https://www.derstandard.at/story/3000000306027/mein-geld-dein-geld-braucht-es-in-beziehungen-ein-gemeinsames-konto-oder-depot?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306829/extremsportler-stirbt-am-weg-zu-einem-der-kaeltesten-bewohnten-orte-der-erde?ref=rss",
|
"https://www.derstandard.at/story/3000000306895/filzmaier-ueber-heeresreform-politisches-foul-und-jetzt-haben-alle-den-salat?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306819/-sohn-von-norwegens-kronprinzessin-wegen-neuer-vorw252rfe-festgenommen?ref=rss",
|
"https://www.derstandard.at/story/3000000306747/trainerexport-miron-muslic-hat-einen-giganten-wiederbelebt-und-muss-nun-erstmals-zittern?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306766/vorerst-keine-verschlechterung-der-fluggastrechte?ref=rss",
|
"https://www.derstandard.at/story/3000000306299/neuigkeiten-im-gluecksspielrecht-lootboxen-und-geschaeftsfuehrerhaftung?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306781/stimmungstest-f252r-republikaner-demokraten-gewinnen-in-texas?ref=rss",
|
"https://www.derstandard.at/story/3000000306853/dna-analyse-loest-raetsel-um-herkunft-der-roemerzeitlichen-frau-aus-der-kiste?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306882/abbas-setzt-f252r-1-november-wahl-zum-pal228stinensischen-nationalrat-an?ref=rss",
|
"https://www.derstandard.at/story/3000000306789/keine-updates-motorola-nutzt-fatalen-fehler-in-eu-smartphone-vorschriften-aus?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000304930/das-kopftuchverbot-verletzt-das-recht-auf-privatheit-sagt-menschenrechtler-manfred-nowak?ref=rss",
|
||||||
|
"https://www.derstandard.at/jetzt/livebericht/3000000306881/ukraine-europaeer-und-usa-einig-ueber-plan-fuer-waffenruhe?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306764/kontakte-zu-epstein-bringen-kronprinzessin-mette-marit-erneut-ins-zwielicht?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306898/trump-fordert-von-uni-harvard-eine-milliarde-dollar-schadenersatz?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306859/fast-300000-demenz-betroffene-in-oesterreich-bis-2050?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306930/30-todesf228lle-durch-heftige-schneef228lle-in-japan?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306890/epstein-aff228re-ehepaar-clinton-zu-aussage-vor-dem-kongress-bereit?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306899/prozess-wegen-sexuellen-missbrauchs-gegen-ex-politiker-stronach-beginnt-in-kanada?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306900/insider-openai-sucht-alternativen-zu-nvidia-chips-und-lehnt-220bernahme-ab?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306831/skelettierte-frauenleiche-in-wien-favoriten-entdeckt?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306727/iran-erklaert-streitkraefte-europas-zu-terroristischen-gruppen?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306726/ice-out-us-stars-protestieren-bei-grammy-gala?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306503/beispiel-groenland-wie-kann-man-kindern-kriegsgefahr-erklaeren?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306816/wie-stuerzt-man-ein-ultrabrutales-regime?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306479/ganz-grosses-kino?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306408/ein-social-media-verbot-haette-ich-der-politik-gar-nicht-zugetraut?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306562/wo-bleibt-der-aufschrei-gegen-atomwaffen?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306547/es-braucht-eine-justizreform-und-zwar-gleich?ref=rss",
|
||||||
|
"https://www.derstandard.at/story/3000000306397/integration-oder-vernichtung-die-syrischen-kurden-im-neuen-machtgefuege?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306306733/gold-und-silber-im-freien-fall-warum-boersenkurse-langsamer-steigen-als-sie-anschliessend-sinken?ref=rss",
|
"https://www.derstandard.at/story/3000000306306733/gold-und-silber-im-freien-fall-warum-boersenkurse-langsamer-steigen-als-sie-anschliessend-sinken?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306845/afd-politikerin-vermittelte-deutsche-escorts-nach-abu-dhabi-lehnt-aber-fragen-dazu-ab?ref=rss",
|
"https://www.derstandard.at/story/3000000306845/afd-politikerin-vermittelte-deutsche-escorts-nach-abu-dhabi-lehnt-aber-fragen-dazu-ab?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306764/kontakte-zu-epstein-bringen-kronprinzessin-mette-marit-erneut-ins-zwielicht?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306786/in-dieser-bar-in-japan-gibt-es-gratis-drinks-fuer-alle-die-kuendigen-wollen?ref=rss",
|
"https://www.derstandard.at/story/3000000306786/in-dieser-bar-in-japan-gibt-es-gratis-drinks-fuer-alle-die-kuendigen-wollen?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306746/die-menschen-machen-screenshots-von-uns-ki-agenten-haben-nun-ihr-eigenes-soziales-netzwerk?ref=rss",
|
"https://www.derstandard.at/story/3000000306746/die-menschen-machen-screenshots-von-uns-ki-agenten-haben-nun-ihr-eigenes-soziales-netzwerk?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306238/ingrid-wendl-15-lief-in-cortina-1956-zu-bronze-laufen-lernen-lieben-lachen-loben?ref=rss",
|
"https://www.derstandard.at/story/3000000306238/ingrid-wendl-15-lief-in-cortina-1956-zu-bronze-laufen-lernen-lieben-lachen-loben?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306034/rohstoffe-fuer-die-energiewende-bleiben-europas-achillesferse?ref=rss",
|
"https://www.derstandard.at/story/3000000306034/rohstoffe-fuer-die-energiewende-bleiben-europas-achillesferse?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306759/beim-gaehnen-koennte-unser-gehirn-durchgespuelt-werden?ref=rss",
|
"https://www.derstandard.at/story/3000000306759/beim-gaehnen-koennte-unser-gehirn-durchgespuelt-werden?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306770/kein-gold-oder-bitcoin-gekauft-vielleicht-war-das-doch-kein-fehler?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306816/wie-stuerzt-man-ein-ultrabrutales-regime?ref=rss",
|
"https://www.derstandard.at/story/3000000306816/wie-stuerzt-man-ein-ultrabrutales-regime?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306849/grenzoeffnung-in-rafah-trumps-worthuelsen-und-israels-gesten-reichen-nicht?ref=rss",
|
"https://www.derstandard.at/story/3000000306849/grenzoeffnung-in-rafah-trumps-worthuelsen-und-israels-gesten-reichen-nicht?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306027/mein-geld-dein-geld-braucht-es-in-beziehungen-ein-gemeinsames-konto-oder-depot?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306430/stadthallen-chef-waldner-verrueckte-gibt-es-ueberall-von-rapid-bis-zum-song-contest?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306790/donald-trump-als-dirigent-wohlklang-oder-doch-eher-maga-donner?ref=rss",
|
"https://www.derstandard.at/story/3000000306790/donald-trump-als-dirigent-wohlklang-oder-doch-eher-maga-donner?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000305258/das-virtuelle-labor-im-weltraum?ref=rss",
|
"https://www.derstandard.at/story/3000000305258/das-virtuelle-labor-im-weltraum?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000305302/wiener-taxler-kaufen-mehr-e-autos-aber-trotz-verbots-gibt-es-viele-neue-verbrenner?ref=rss",
|
"https://www.derstandard.at/story/3000000305302/wiener-taxler-kaufen-mehr-e-autos-aber-trotz-verbots-gibt-es-viele-neue-verbrenner?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306713/glatteis-chaos-bringt-berliner-buergermeister-ins-schlittern?ref=rss",
|
"https://www.derstandard.at/story/3000000306713/glatteis-chaos-bringt-berliner-buergermeister-ins-schlittern?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306674/26-mal-so-viel-wie-mit-golfclubs-so-bereichert-sich-trump-mit-kryptowaehrungen?ref=rss",
|
"https://www.derstandard.at/story/3000000306674/26-mal-so-viel-wie-mit-golfclubs-so-bereichert-sich-trump-mit-kryptowaehrungen?ref=rss",
|
||||||
"https://www.derstandard.at/story/3000000306774/diese-oeffi-haltestellen-in-wien-bekommen-neue-namen?ref=rss",
|
"https://www.derstandard.at/story/3000000306774/diese-oeffi-haltestellen-in-wien-bekommen-neue-namen?ref=rss"
|
||||||
"https://www.derstandard.at/story/3000000306082/mckinsey-manager-martin-wrulich-ki-agenten-risiko-usa-oesterreichs-standortproblem?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306720/ice-out-pins-und-nackte-tatsachen-das-waren-die-interessantesten-outfits-bei-den-grammys?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306791/prozess-gegen-53-jaehrigen-um-absolut-abscheulichen-missbrauch-von-tochter-und-stiefenkelin?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306736/los-angeles-verbietet-einweg-druckerpatronen-eu-koennte-bald-nachziehen?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306738/erfolg-fuer-marcel-hirscher-fis-muss-bullen-logo-auf-van-deer-skiern-akzeptieren?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306756/dna-aus-geparden-mumien-gibt-verschwundener-unterart-eine-neue-chance?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306751/vorrangzonen-fuer-photovoltaik-in-salzburg-entlang-der-autobahn?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306831/skelettierte-frauenleiche-in-wien-favoriten-entdeckt?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306727/iran-erklaert-streitkraefte-europas-zu-terroristischen-gruppen?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306726/ice-out-us-stars-protestieren-bei-grammy-gala?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306503/beispiel-groenland-wie-kann-man-kindern-kriegsgefahr-erklaeren?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306408/ein-social-media-verbot-haette-ich-der-politik-gar-nicht-zugetraut?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306397/integration-oder-vernichtung-die-syrischen-kurden-im-neuen-machtgefuege?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306562/wo-bleibt-der-aufschrei-gegen-atomwaffen?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306547/es-braucht-eine-justizreform-und-zwar-gleich?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306479/ganz-grosses-kino?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306283/europa-muss-sein-rueckgrat-finden?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306507/die-eu-staaten-brauchen-sonderbeauftragten-fuer-die-ukrainegespraeche?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306305770/gewessler-wir-europaeer-tun-so-als-waeren-wir-ein-kleines-mauserl-in-irgendeinem-eck?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306711/bad-bunnygrammy-dankesrede-fuer-abrechnung-mit-ice?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306723/gold-und-silberpreis-gibt-weiter-massiv-nach?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306689/wie-novak-djokovic-haarscharf-einer-moeglichen-disqualifikation-entkam?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306349/langlebigkeits-expertin-nichts-laesst-frauen-schneller-altern-als-stress?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306342/giftiges-klima-und-senile-fuehrung-der-tiefe-fall-des-gaming-giganten-ubisoft?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306619/wende-im-todesfall-des-schachstreamers-daniel-naroditsky?ref=rss",
|
|
||||||
"https://www.derstandard.at/story/3000000306714/nach-protest-und-boykotten-trump-will-washingtons-kennedy-center-fuer-umbau-schliessen?ref=rss"
|
|
||||||
],
|
],
|
||||||
"lastUpdated": "2026-02-02T21:00:00.000Z"
|
"lastUpdated": "2026-02-03T10:00:00.000Z"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -171,6 +171,18 @@
|
||||||
"time": "00:05",
|
"time": "00:05",
|
||||||
"activity": "trying to sleep",
|
"activity": "trying to sleep",
|
||||||
"note": "5 min past midnight goal"
|
"note": "5 min past midnight goal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"date": "2026-02-03",
|
||||||
|
"time": "19:15",
|
||||||
|
"activity": "watching Prodigal Son (TV)",
|
||||||
|
"note": "visited Marie earlier (16:00), now relaxing with a series - good wind-down activity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"date": "2026-02-03",
|
||||||
|
"time": "21:40",
|
||||||
|
"activity": "arrived home",
|
||||||
|
"note": "HomeArrival hook fired, sent nose shower reminder"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"patterns": {
|
"patterns": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue