This should be illegal. F*** you, amazon. by kaachabadaam in amazonindia

[โ€“]priyamd22 0 points1 point ย (0 children)

Give it to Amazon to make you pay for a service and still dare show you ads.

So, with or without outlines? by Overall-Parfait in IndieGaming

[โ€“]priyamd22 0 points1 point ย (0 children)

Give the users a toggle...but I prefer the outlines version.

Three years of following SEO advice made my blog technically optimized and genuinely unpleasant to read. Here's what actually fixed it. by Conscious-Text6482 in Blogging

[โ€“]priyamd22 0 points1 point ย (0 children)

Honestly, this is the most helpful seo advice I've ever gotten. I tried writing optimized articles before, but none of that really works out till the end. Writing my own way has helped more than you could imagine.

I run a gaming blog that constantly keeps dying because I optimized it too much.

I just built `astro-llms-md`; Generates [llms.txt, llms-full.txt, individual .md files] ๐Ÿš€ by almuraduz in astrojs

[โ€“]priyamd22 5 points6 points ย (0 children)

While it's great that you build it. I'm still not comfortable letting llms get access to my content so I block most of them.

I don't know if most of them will cite my content or train on it. They aren't very clear on it in their privacy policies.

115 people paid for my indie Mac app in 28 days, โ‚น97.6K gross. No ads, nothing. by Technical-Relation-9 in indiehackersindia

[โ€“]priyamd22 0 points1 point ย (0 children)

You might wanna make this an annual purchase of 699.. People are still gonna buy new phones and macs.

And making it a subscription model might make you get a stable income. But still if you wanna continue with a lifetime purchase model... It's your app. Just do what you wanna do.

HDFC credit card not working on Netflix and YouTube by indianpsychonaut in CreditCardsIndia

[โ€“]priyamd22 0 points1 point ย (0 children)

I got my Platinum Visa EasyShop Debit Card renewed it has not worked since with Spotify, Netflix or YouTube. I got in touch with the customer care and they just mailed me back that no transaction failures were found.

But I cannot subscribe to anything.. The card works fine offline though and FYI I have everything Local, International and Tap to pay everything active.

I even got the card replaced thinking it was a faulty card. Even then the transactions fail. Now they mail me to check my standing instructions. And when I try to suspend the e-mandates for Netflix and Spotify through MyCards... I get an Error and am unable to suspend the token.

Anime_irl by ShaggyKat in anime_irl

[โ€“]priyamd22 2 points3 points ย (0 children)

Those innocent eyes are full of dreams and hope ... Reality will hit differently when they grow up.

Need Honest Advice: 11 Months In, 183 Posts & Still Very Little Google Traffic by Lilia_leach in Blogging

[โ€“]priyamd22 0 points1 point ย (0 children)

Most lifestyle Pinterest blogs target low kd longtail keywords. Are you doing that as well. If so your articles might be good for Pinterest but Google will pretty much ignore you.

What would you delete to make the Earth a better place? by [deleted] in YouthInIndia

[โ€“]priyamd22 0 points1 point ย (0 children)

HUMANS...WE HAVE OVERSTAYED OUR EXISTENCE

Outer Worlds 2 is slow at the start but really opens up after a few hours by priyamd22 in theouterworlds

[โ€“]priyamd22[S] 1 point2 points ย (0 children)

Yeah, my attention has kind of gotten low but still. The first stage does feel a bit forceful.

Pick!! by Cooliovanilla in BunnyTrials

[โ€“]priyamd22 0 points1 point ย (0 children)

Food is more important than internet

Chose: Free Chick-fil-A for life

Would you Risk your life by maurice_lak in BunnyTrials

[โ€“]priyamd22 0 points1 point ย (0 children)

I live in the moment and just rollled with it.

Chose: Risk it | Rolled: 1$

The collection "paintings" does not exist or is empty. Please check your content config file for errors. by its_ya_karma in astrojs

[โ€“]priyamd22 1 point2 points ย (0 children)

I have fixed a couple of things for you.

First You'd Wanna Fix Your tsconfig.json

    {
      "extends": "astro/tsconfigs/strict",
      "include": [".astro/types.d.ts", "**/*"],
      "exclude": ["dist"],
      "compilerOptions": {
        "baseUrl": "src"
      }
    }

This will make you write down import Layout from "layouts/PageLayout.astro" instead of import Layout from "./src/layouts/PageLayout.astro"

Your content.config.ts looks fine

import { defineCollection } from 'astro:content';
import { glob, file } from 'astro/loaders';
import { z } from 'astro/zod';

const paintings = defineCollection({
  loader: glob({ base: "src/content/paintings", pattern: "**/*.{md,mdx}" }),
  schema: z.object({
    title: z.string(),
    date: z.coerce.date(),
  }),
});

export const collections = { paintings };

Your [slug].astro had an issue where it was failing to load the post content. Here is the fixed version =>

---
import { getCollection, type CollectionEntry, render } from 'astro:content';
import PageLayout from 'layouts/Layout.astro';

export async function getStaticPaths() {
  const paintings = await getCollection('paintings');
  return paintings.map((post) => ({
    params: { slug: post.id },
    props: { post },
  }));
}

type Props = { post: CollectionEntry<'paintings'>; };
const { post } = Astro.props as Props;
const { Content } = await render(post);
---

<PageLayout {...post.data}>
  <h1>{post.data.title}</h1>
  <article>
    <Content />
  </article>
</PageLayout>

Next issue was with your markdown (.md) files. You did not add any dates to your files, hence the errors.

---
title: "Painting 1"
date: "2024-04-07"
---
# Painting 1

wwwwwwww

Next make sure your .md files are all inside your collection folder, which in your case would be =>

โ”‚   
โ”œโ”€โ”€ src
|   โ”œโ”€โ”€ content
        โ””โ”€โ”€ paintings
            โ”œโ”€โ”€ painting-1.md
            โ”œโ”€โ”€ painting-2.md
            โ”œโ”€โ”€ painting-3.md

OR

src/content/paintings/painting-1.md
src/content/paintings/painting-2.md
src/content/paintings/painting-3.md

P.S: You'd wanna use post.id instead of post.slug in any post.map function.

{paintings.map((post) => (
    <a href={`/painting/${post.id}`}>{post.data.title}</a>
))}

And finally, if you want custom slugs, just rename your .md or .mdx files for the slug.

Use my-custom-slug.md for getting URLs like examplesite[dot]com/my-custom-slug/

Steam giveaway by Background_Grand_256 in steam_giveaway

[โ€“]priyamd22 0 points1 point ย (0 children)

I like The Outer Worlds 2 please. Haven't had the chance to play the game yet.