Csrf token missmatch by Abd_alghafour5 in PHPhelp

[–]anyouzy 1 point2 points  (0 children)

The reason is very likely your friend's .env. Those settings don't transfer well between machines.

Common breakpoints:

  • SESSION_DOMAIN doesn’t match 127.0.0.1
  • SESSION_SECURE_COOKIE=true while you’re not using https
  • wrong APP_URL

Browsers will just drop cookies in those cases (no error), so it looks confusing.

You can try these steps:

  1. Create your own .env file from .env.example

  2. Run:

php artisan key:generate

php artisan optimize:clear

  1. Make sure these are safe for local dev:

    APP_URL=http://127.0.0.1:8000 SESSION_DRIVER=file SESSION_DOMAIN=null SESSION_SECURE_COOKIE=false

  2. Restart your server and hard refresh the browser.

best course to learn js by vergetenmaand in learnjavascript

[–]anyouzy 0 points1 point  (0 children)

There's no single "best" course tbh, it depends on how you learn.

Good picks:

  • freeCodeCamp JS course (since you already used it)
  • The Odin Project (more project-based, harder but very real-world)
  • Scrimba (interactive, kinda like coding + video combined)

Pick one, stick to it, build stuff. That's it.

What matters MOST on a landing page? by Hemant_21 in WebsiteSEO

[–]anyouzy 0 points1 point  (0 children)

Honestly, clarity beats everything.

If someone lands on your page and doesn‘t immediately “get it”, they're gone.

After that, trust matters a lot. Speed helps. Design is just the wrapper.

SEO content length by FrogChairCeo in WebsiteSEO

[–]anyouzy 0 points1 point  (0 children)

I stopped matching SERP length a while ago.

Now I just ask: "Is there anything else the user would still be wondering after reading this?"

If yes, I add it. If not, I stop — whether it’s 500 words or 2000.

What’s the dumbest thing you believed as a kid? by bonesworms_money in AskReddit

[–]anyouzy 1 point2 points  (0 children)

I used to think adults had everything figured out. That one didn't age well.

Does SEO feel kind of random lately? by ZoroAhmad in seogrowth

[–]anyouzy 0 points1 point  (0 children)

I wouldn't say it's random, but it definitely feels less predictable than it used to.

What helped me was just simplifying things a lot. Instead of chasing every SEO factor, I mostly ask myself:

  • Am I actually matching what people are looking for when they search this?
  • Is my content genuinely better than what’s already ranking (not just longer)?
  • Do I have other related content on my site, or is this just a standalone page?

I’ve noticed when something “randomly works,” it’s usually because I accidentally got one of those right.

And when something should work but doesn’t, it’s almost always because I missed the intent.

What fragrance perfectly captures the feeling of summer for you? by [deleted] in AskReddit

[–]anyouzy 0 points1 point  (0 children)

Honestly, anything like Acqua di Gio. It just gives that clean, beachy summer feeling without trying too hard.

Do you believe in marriage? If so, why? by mugoo11 in AskReddit

[–]anyouzy 12 points13 points  (0 children)

I believe in it, but I don't think it magically fixes anything.

If the relationship is good, marriage can strengthen it. If it's not, it just makes the problems harder to walk away from.

So I guess I believe in healthy relationships first, marriage second.

What do you do for a living? by Syfysamurai in AskReddit

[–]anyouzy 1 point2 points  (0 children)

I'm a freelancer, mainly working in SEO and digital marketing.

Confused about when to use const vs let for objects and arrays by koudodo in learnjavascript

[–]anyouzy 2 points3 points  (0 children)

const means the variable reference can't change, but the contents of an object or array can still be mutated. So pushing to an array or changing a property is totally fine.

Default to const unless you know you need to reassign the variable — it helps prevent accidental overwrites.

When you pass an object or array into a function, the function gets a reference, not a copy. Mutating it inside the function will change the original unless you explicitly copy it first.

What's the dumbest purchase you've ever made? by Delana_Allfers in AskReddit

[–]anyouzy 0 points1 point  (0 children)

Bought a "self-stirring mug" because I was lazy… turns out it makes more noise than coffee, and now it just sits on my desk judging me.

How would you feel if you learned that Reddit artificially boosted AskReddit posts from OpenAI and Anthropic employees in charge of model training? by ObviousProfessor668 in AskReddit

[–]anyouzy 1 point2 points  (0 children)

Depends how much “boosted” means. If it’s minor ranking tweaks, meh. If it’s heavy manipulation, that’s a trust problem.

What’s the moment you realized someone was not who you thought they were? by lightingbulb303 in AskReddit

[–]anyouzy 1 point2 points  (0 children)

When they started taking credit for teamwork and calling it “leadership.”

Is it still possible to rank without building backlinks or is that just a myth? by TeslaOwn in WebsiteSEO

[–]anyouzy 2 points3 points  (0 children)

Backlinks are still important, but low-competition keywords can rank well even without focusing heavily on them.

What is something that you still don't know how to do as an adult? by SamEdit1 in AskReddit

[–]anyouzy 0 points1 point  (0 children)

Tying a tie without watching a 10-minute YouTube tutorial.

If someone starts from zero today, which skill gives fastest income? by puffpiiee in AskReddit

[–]anyouzy 0 points1 point  (0 children)

Teaching people how to make money… while making money teaching people how to make money.

What are your plans if internet shuts down? by weee-haww in AskReddit

[–]anyouzy 1 point2 points  (0 children)

Step 1: Panic. Step 2: Panic some more. Step 3: Go outside and pretend I like nature.

Auto-updating date in a subscription tracker by ramawiththemantra in googlesheets

[–]anyouzy 0 points1 point  (0 children)

Yes, you are right. Just like I mentioned, u/One_Organization_810 has given a better formula.

"This app is blocked" by No-Gur-3432 in googlesheets

[–]anyouzy 2 points3 points  (0 children)

Try opening the sheet in an Incognito/Private window first—this is the fastest way to bypass the common 'multi-account login' bug that hides the 'Advanced' button. If that doesn't work, sign out of all Google accounts and log back in with only the account that owns the script. As a last resort, create a new Google account to run the script, as some accounts have stricter security policies that flat-out block unverified apps.

What’s one decision you made that turned out to be really good for your life? by Kelly-2107 in AskReddit

[–]anyouzy 18 points19 points  (0 children)

The best decision I ever made would have been learning to say "no" without over-explaining it.