{"id":50795651,"url":"https://github.com/flipsewtf/mournstera","last_synced_at":"2026-06-12T14:32:15.933Z","repository":{"id":322992294,"uuid":"1091173158","full_name":"flipsewtf/mournstera","owner":"flipsewtf","description":"My personal website built with Astro - just a playground for learning and having fun.","archived":false,"fork":false,"pushed_at":"2026-03-31T22:00:46.000Z","size":4532,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-01T00:59:05.634Z","etag":null,"topics":["astro","learning-project","personal-website"],"latest_commit_sha":null,"homepage":"","language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flipsewtf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-06T16:48:38.000Z","updated_at":"2026-03-31T22:00:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"6e70a4e7-7e68-4d2d-878a-da525fd147f7","html_url":"https://github.com/flipsewtf/mournstera","commit_stats":null,"previous_names":["flipsewtf/mournstera"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flipsewtf/mournstera","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipsewtf%2Fmournstera","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipsewtf%2Fmournstera/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipsewtf%2Fmournstera/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipsewtf%2Fmournstera/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flipsewtf","download_url":"https://codeload.github.com/flipsewtf/mournstera/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flipsewtf%2Fmournstera/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34249560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["astro","learning-project","personal-website"],"created_at":"2026-06-12T14:32:12.358Z","updated_at":"2026-06-12T14:32:15.922Z","avatar_url":"https://github.com/flipsewtf.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mournstera | Astro project\n\nI'm diving into Astro as a complete beginner (my JavaScript skills are basic at best\nand tainted by bad Tumblr habits).\n\nThis is basically a playground for learning and figuring out how to make the web bend\nto my will without breaking down crying in the process. It also happens to be my\npersonal blog.\n\nBuilt with [Astro](https://astro.build).\n\n---\n\n## Getting started\n\n_Note to self, since I will forget._\n\n```powershell\nnpm install\nnpm run dev\n```\n\n---\n\n## Cheatsheet\n\nStepping out of the Tumblr sandbox was.. an experience. Here's some stuff to keep me sane.\n\n### Workflow\n\n- Always open **the root folder of the repo** in VSCode (e.g., `GitHub\\mournstera`),\n  not the parent GitHub folder.\n- VSCode's Source Control panel will then track only **that repo**, keeping changes,\n  commits, and branches isolated. Opening the parent folder with multiple repos can\n  mix changes and make commits confusing.\n- Each repo folder is self-contained: commit, push, pull, etc., only affects that repo.\n\n### Astro commands\n\n| Command           | What it does                             |\n| ----------------- | ---------------------------------------- |\n| `npm run dev`     | Start the dev server at `localhost:4321` |\n| `npm run build`   | Build the site for deployment            |\n| `npm run preview` | Preview the production build locally     |\n| `rm -r -fo dist`     | Delete the build folder                  |\n\n\u003e Always preview before pushing updates goddamnit.\n\n#### Vite cache\n\nIf something looks broken and shouldn't be, clear Vite's cache:\n\n```powershell\nrm -r -fo node_modules/.vite\n```\n\n#### Lucide icons\n\n```astro\nimport {HandMetal} from '@lucide/astro';\n```\n\n### Frontmatter\n\n#### Timestamps\n\nAlways include the timezone offset in frontmatter dates — Astro uses it to sort\nand display dates correctly.\n\n| Season        | Offset   | Example                     |\n| ------------- | -------- | --------------------------- |\n| Winter (CET)  | `+01:00` | `2025-12-08T13:30:00+01:00` |\n| Summer (CEST) | `+02:00` | `2025-06-08T13:30:00+02:00` |\n\n#### Strings with colons or special characters\n\nUse template literals (backticks) for frontmatter values that contain colons or\nquotes, otherwise the YAML parser reads the colon as a key/value separator and\nbreaks.\n\n```yaml\ntitle: `My Post: A Fancy Story`\n```\n\n### Code comments\n\n| Comment                    | What it does                                                                                                                    |\n| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |\n| `// @ts-nocheck`           | Tells VSCode to ignore TypeScript warnings in a JS file (e.g., \"possibly null\"). Check the code first before reaching for this. |\n| `\u003c!-- prettier-ignore --\u003e` | Stops Prettier from reformatting the next line. Work towards not needing it.                                                    |\n\n### Convert px to rem\n\n`16px = 1rem`. Formula: divide the px value by 16.\n\nSo `20px ÷ 16 = 1.25rem`.\n\n---\n\n## Licence\n\nDo whatever you want with the code. Please don't steal my writing or designs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflipsewtf%2Fmournstera","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflipsewtf%2Fmournstera","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflipsewtf%2Fmournstera/lists"}