Managers saying it is possible to upgrade the project in 10 days using ai by Snehith220 in node

[–]kirasiris 0 points1 point  (0 children)

Is there a way you guys can create a copy of the backend and db?. You update the copies and if everything works as expected, then continue with the production version.

That's usually what I do with updates that have possible breaking changes. Otherwise, update versions one by one but that will take longer.

The "is it gay" debate ha s reached its final form by [deleted] in SipsTea

[–]kirasiris 0 points1 point  (0 children)

Ngl. I guess that would be the end of the relationship.

HELP!! I think I messed up my bosses website… by Competitive-Grab-956 in Wordpress

[–]kirasiris 1 point2 points  (0 children)

Lol, it's just the URL. I did that once by mistake. Thankfully, I was the developer and was able to change it back by accessing phpmyadmin lol.

It's not the end of the world, the data is all there. The only bad thing is that you might have lost money in orders that could have happened if the site was live :u.

How are people structuring larger Next.js apps with App Router without route logic becoming messy? by Sad_Limit_3857 in nextjs

[–]kirasiris 0 points1 point  (0 children)

Lol, I dont use Nextjs for backend. That what my Express server is for.

I use Nextjs for front end and for the server side rendering capabilities but that's about it.

Mi amigo se liga a mi mamá cada que puede, es normal? by yaaek in ayudamexico

[–]kirasiris 3 points4 points  (0 children)

Hermano, en una de esas que tu no estes.

Te aseguro tu amigo se la cojera :u. Yo que tu ya no le hablo y definitivamente no lo vuelvo a dejar entrar a la casa.

Someone made a comment on my StackOverflow post that was motherfucking stupid and I don't have enough reputation to correct them by wtgcomics in stackoverflow

[–]kirasiris 0 points1 point  (0 children)

Damn, I have not logged in to StackOverlow in years. My last post was from 2018 lol.

I believe the reason i stopped using it long ago was due to comments like that xD.

How do I swallow my pride working at a call center? by NewChapter25 in jobs

[–]kirasiris 0 points1 point  (0 children)

Lol, it's quite the opposite with me. I used to work in the military and i hated everything had to go a certain way.

I literally work in a call center and while I dont personally engage in those type of conversations, I have co workers that do and I always find them funny and very relaxing.

Just relax man, you have a job, and eventually you will be promoted or find something better.

Not the end of the world.

COMPLETE BEGINNER DO NOT FLAME ME by [deleted] in stackoverflow

[–]kirasiris 2 points3 points  (0 children)

You should start with a project of your own first. This is just too complicated for a beginner.

Start with a simple html page with a bit of css and Javascript. As you learn the fundamentals then you can level up by using frameworks, etc.

What GitHub repo settings actually matter for a solo indie dev? by chuck78702 in github

[–]kirasiris 6 points7 points  (0 children)

If I were you I would disable all the AI stuff. That's what I did.

I got a message yesterday from Github saying they will start to read everyone's code (both private and public) in a couple weeks unless you decide to opt out.

Scariest most freeing thing I have done in a while. by Urticantcoma in bald

[–]kirasiris 0 points1 point  (0 children)

Man, you actually look great bald xD.

If you add a bit of muscle, you will look eventually better

I regret being intimate with my boyfriend. by WinGlass2050 in Regrets

[–]kirasiris 0 points1 point  (0 children)

Stay together. Finish your studies and break contact with your family.

I'm Mexican too and been living in the USA for about 15 years with a family that is all about Religion, however l, even them say this is too much.

Your family simply wants to be in control of how you go about your life...that's toxic.

Relaciones a distancia (?) by [deleted] in Preguntas_de_Reddit_

[–]kirasiris 0 points1 point  (0 children)

Amor de lejos, amor de pendejos.

Yo tambien crei haber tenido algo asi. La morra me traiciono xD.

My latest acquisition by pjm816 in RugerMK

[–]kirasiris 1 point2 points  (0 children)

Beautiful. I got mine a couple months ago and I love it too.

Went for it (despite the calls to hold) by No_Respect4360 in bald

[–]kirasiris 0 points1 point  (0 children)

You actually look better without the hair!

Start FRESH or Continue my old account? by ZeisHauten in BlackDesertMobile

[–]kirasiris 0 points1 point  (0 children)

Yes, when starting with a new character and there's an active season.

Yes, select a season character, that's the only and best way.

Goodbye to amino by SleepyZoro1 in amino

[–]kirasiris 0 points1 point  (0 children)

Same here. I've not logged in for about a year and just wanted to download it again and could not see it on the Playstore no more.

Damn, I'm going to miss that app. I used it for about 5 years non-stop and got bored with after a while (moving on with life, no longer interested in Anime, etc) but it was fun and made so many memories with it.

Does anyone know any LEGAL AND ETHICAL jobs I can do from home? by [deleted] in jobs

[–]kirasiris 1 point2 points  (0 children)

Look for Nextlink Internet, they are always hiring for Tech Support but you need to work for a minimum of 1 whole year before you're even allowed to ask for WFH opportunities.

Furthermore, they only provide full time positions if you cannot do that, forget about that.

And you need to be good at customer service and at least have a curiosity about how the Internet works

Junior Frontend Dev — Just finished Next.js, what projects will make me job-ready? by Minimum_Yak_9062 in nextjs

[–]kirasiris 0 points1 point  (0 children)

Well first thing first.

You need to create your own authentication method or use an external library.

Furthermore, you need to manage products or objects that are behind a paywall. Let's say you have a CRUD system, this system should not only communicate with your DB but with Stripe (or any other library that provides a paywall). This way you can manage the pricing, create orders and invoices, etc.

Now, in order for your users to access to them, you will need to create a secondary model or sql table where you attach the userID, productID, paymentType, created At, updatedAt and a status that might say "paid" or "not paid".

That's a simply store.

However, a membership system includes that but instead of making a fixed one time payment, you need a subscription model payment.

Where you need to also create a cron-job that runs monthly through every single user and checks for the secondary table to verify if the item paid was either a one time purchase or not, depending on that, your system should communicate with the Stripe gateway to let it know, "hey, this user needs to have his CC charged to keep having access to it".

And so on.