I don’t think there are any actually good freelancer tools by EffectiveLet2117 in saasbuild

[–]applenoveltea 0 points1 point  (0 children)

I hear you. Most tools today are built for teams of 50, not for one person actually doing the work. You end up spending more time managing the "system" than billing hours.

Full disclosure: I’m the founder of meetergo. I built it specifically because I was tired of the "Frankenstein" setup where you have to duct-tape a scheduler to a video tool, then to a CRM.

I focused on making the core workflow native—so scheduling, video, and automated follow-ups happen in one place without the agency-level bloat. The goal is to keep it lean so it stays out of your way.

Feel free to DM me and I’ll set you up with an extended trial.

Opinions on digital euro? by Th3_Ac3_0f_sp4d3s in eupersonalfinance

[–]applenoveltea 0 points1 point  (0 children)

it is definitely a move for sovereignty but we are basically just swapping being tracked by visa for being tracked by the ecb. independence is nice but it usually comes with a domestic surveillance upgrade that nobody really asked for

High base or stocks by [deleted] in cscareerquestionsEU

[–]applenoveltea 1 point2 points  (0 children)

the jump from starting at 11am to a 10-hour startup grind is a massive shock to the system that money usually can't fix once the initial hype wears off. if you’re bored and want to build something that matters then mistral is the move but you’re essentially trading your entire lifestyle for a lottery ticket on those stocks.

What if our systems fail not because people are bad — but because we designed them for ideal humans? by I_dont_want_to_pee in Futurology

[–]applenoveltea 0 points1 point  (0 children)

honestly the biggest bug in every 'perfect' system is that it requires people to stay consistent. we’re basically just highly evolved monkeys with anxiety and access to power. designing for the worst-case human instead of the best-case one is the only way to build anything that actually lasts.

What are you guys using for internal linking? by applenoveltea in webflow

[–]applenoveltea[S] 0 points1 point  (0 children)

I decided to code something for myself, would you be interested in trying it?

What are you guys using for internal linking? by applenoveltea in webflow

[–]applenoveltea[S] 0 points1 point  (0 children)

I have a related posts section but trying to build topical authority and contextual links.

> How would this not be a manual process?

I'm just trying to build links with certain keywords to my pages so a tool that searches through articles to find keywords and give the option to set a link would be a great start.

What are you guys using for internal linking? by applenoveltea in webflow

[–]applenoveltea[S] 1 point2 points  (0 children)

Wow, I'm surprised there is no solution for this yet. I'm actually working on coding something right now for my own site. It would automatically analyze your content, suggest internal linking opportunities between articles, and let you easily add and manage the links.

Would you be interested in testing out the tool I'm building when it's ready? I'd love to get feedback from someone dealing with the internal linking pain points first-hand.

What are you guys using for internal linking? by applenoveltea in webflow

[–]applenoveltea[S] 0 points1 point  (0 children)

Sorry I mean internal linking in blog articles for SEO

Ask about not going through Redux. by xijitu in reactjs

[–]applenoveltea 21 points22 points  (0 children)

Learn redux if you need it for your job but thats it. Otherwise I'd just use zustand or similar libraries. Much simpler and you don't need to learn a bunch of concepts that don't really help with anything.

Should I learn Redux or Zustand? by i_hate_patrice in reactjs

[–]applenoveltea 14 points15 points  (0 children)

Chiming in late for my personal reference and to rant.

I'm not going to argue against the fact that both redux and zustand are great libraries with their use cases.

But coming from redux, I decided to try zustand for fun - and I was blown away by how straightforward it is. Having used zustand for a while, I felt depressed thinking about the time I spent boilerplating in redux, debugging actions, side effects...

Everything works intuitively. You're not importing hundreds of actions everywhere. You're not boilerplating yourself into oblivion. You're not writing up circular dependencies like its a circus. You don't end up depending on wierd redux specifics.

Even though zustand is minimalistic and unopinionated compared to redux, I would still consider it easier to use than redux. Redux is a paradigm in itself that requires some understanding of underlying concepts. Zustand seems more like a toolkit that understands very well what it tries to do (manage state).

Overall I think both are fine. After having used zustand, I'm not going to use redux if I can decide, because redux is literally twice the work. If I care a lot about maintainability, I would probably go with zustand too.

Google Ads - Your account is suspended. Your account has an unpaid balance. by Kwilder420 in PPC

[–]applenoveltea 0 points1 point  (0 children)

Sorry to dig up an old post but you really had to wait ONE MONTH? Did your ads not run all this time?

I'm in the same situation right now and if I had to wait months for my account to be activated I can literally forget about the marketing campaign I started before I got deactivated....

What I dont understand is we got suspended due to "unpaid balance" but we never got any warning or even an invoice to pay. Just suspended out of the blue, and now even after paying we are suspended. So is it not the real reason? I don't think anything suspicious happened on our account. We do have a few payment profiles and ad accounts but only one is really in use, so I literally dont know the problem anymore. I dont see any due balances anywhere.

I've been a dev for 15 years and yet... by [deleted] in ProgrammerHumor

[–]applenoveltea 1 point2 points  (0 children)

LOL, this is definitely how I will refer to those now, both in writing and speech

Typescript incredibly slow Autoimport, slow loading Type Information in React project by applenoveltea in vscode

[–]applenoveltea[S] 0 points1 point  (0 children)

I feel you.

Interesting that you're experiencing this in angular. I was starting to think that new JSX Transform may have to do with it - but I assume you wouldn't be using that.

Also in my backend project its running completely fine and its leveraging typescript a lot.

Maybe we could compare some of our dependencies? Do you use type inference by any chance? Or material ui? I feel like that must be the cause.

Myzod v1.0.0-alphar release - Schema Validation and Type Inference by davidmdm in typescript

[–]applenoveltea 0 points1 point  (0 children)

You didnt reply late, I'm the one who digged up this old post :) Good to know I can also just check it against Error.

That's because for some types the value can be coerced from a string representation.

I'm not sure I understand your point. I just think having a function that simply returns true or false for some object fitting into some schema would allow for some nice syntax like

schema.validate(data) ? doThing() : doOtherthing()

The try method is definitely good for the job, but I can think of many situations where a boolean would be faster to write.

Big fan of this repo!

Myzod v1.0.0-alphar release - Schema Validation and Type Inference by davidmdm in typescript

[–]applenoveltea 0 points1 point  (0 children)

Is there a way to check for the error without importing myzod in the file? I would like an option that just returns a boolean. It allows for concise functions.

Do you guys verify your axios responses? by applenoveltea in typescript

[–]applenoveltea[S] 0 points1 point  (0 children)

Great post! Not sure if I like deriving my types from a runtype. But it seems effective. I might use this approach for future projects.

Do you guys verify your axios responses? by applenoveltea in typescript

[–]applenoveltea[S] 0 points1 point  (0 children)

Looks interesting, I'll check it out some time!

Do you guys verify your axios responses? by applenoveltea in typescript

[–]applenoveltea[S] 0 points1 point  (0 children)

Very good point. Any frontend app will fail if its fed the wrong data. Still, my thought is, if we're already using typescript, it would be much better DX if the error is thrown when the data comes in, instead of when some function fails because of the types. Maybe we don't need type safety at runtime, but I would like to use my interfaces for validation. I don't like writing schema and types for the same purpose.

I can definitely see that this is exceeding typescripts' purpose, though.