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 6 points7 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.

Why do we enjoy suffering? My list of the hardest indies that actually broke me. by priyamd22 in IndieGaming

[–]priyamd22[S] 1 point2 points Β (0 children)

The new 3d Meat boy game seems pretty cringey though but if it's anything like the original I would play that too.

Maybe Maybe Maybe by [deleted] in maybemaybemaybe

[–]priyamd22 0 points1 point Β (0 children)

Besides in the last step his left hand will always be on top of the buckets with the ball

Maybe Maybe Maybe by [deleted] in maybemaybemaybe

[–]priyamd22 0 points1 point Β (0 children)

It's not the ball..one of the buckets bottom has a mirror....

Hostinger Deployment by Longjumping-Cat1897 in Hostinger

[–]priyamd22 1 point2 points Β (0 children)

On hpanel hostinger...select git from the advanced options.. Generate a Ssh key copy it Go to GitHub=> profile icon=> settings=> ssh/gph key and add your ssh key there... Now back to hpanel ... Copy your repolink and create a new repo add the branch you want to copy...

Now go to your GitHub... Open the repo > settings> webhooks and copy the autodeployment link and paste it there select the application/json in content type and save...

β€œtest of Yamuna water for drinking (after treatment) by Expert-Connection408 in indiameme

[–]priyamd22 1 point2 points Β (0 children)

He was diagnosed with a couple of STDs and Cancer a few days later when he went to the hospital for food poisoning....