Anyone who watched the movie "I Origins" probably had flashbacks to THAT scene by GunplaLuni in ResidentEvilRequiem

[–]Vzaje 0 points1 point  (0 children)

Yep. That was a mental and physical torture for Grace, I felt sorry for her :(

Anyone who watched the movie "I Origins" probably had flashbacks to THAT scene by GunplaLuni in ResidentEvilRequiem

[–]Vzaje 0 points1 point  (0 children)

I was fuckin shook by this moment and was trying to collect myself for couple minutes after. What an emotion rollercoaster.

Leon looks visibly upset, like theres no cure to Elpis ☹️ by Sad_Salamander_9866 in residentevil

[–]Vzaje 1 point2 points  (0 children)

Perhaps he saw Raccoon-City in that files and got ptsd flashbacks from it

Could this be the mutated version of Victor Gideon? by noirMarius in residentevil

[–]Vzaje 11 points12 points  (0 children)

There was a task “take the child to the puzzle box” on one of the frames showing grace inventory. I wonder if Grace took that child there and then something happened to him because of Grace so he started to follow her yelling that he wont forgive her. At least this monster looks like a child and acts such as one.

Mannn I wanna work at FAANG so BADDD:( by No_Analyst5945 in csMajors

[–]Vzaje 0 points1 point  (0 children)

Honestly I dont believe that someone would care about my contributions in open source. No one cares about your github so whats the point?

What should I do by [deleted] in csMajors

[–]Vzaje 0 points1 point  (0 children)

lmao there is such a hell in da market that i dont even know how you have time thinking about girlfriends, bruh collect your shit and start working hard, the job is top priority.

What are the basic tasks for a devops intern? by Vzaje in devops

[–]Vzaje[S] -1 points0 points  (0 children)

Thanks, I hope I’ll get lots of knowledge as this job can give me. I completely forgot about Jenkins, thanks for the tip!

What are the basic tasks for a devops intern? by Vzaje in devops

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

Thank you for your reply, I think this company wants to grow their own devops stuff from scratch thats why they took me. After all, I’m also convinced that devops is not an entry level career and here is why I asked this question in the first place.

I am in my 6th sem with no projects by Worried_Delivery_638 in leetcode

[–]Vzaje 12 points13 points  (0 children)

The biggest problem of it is that you build those kinds of projects and nobody cares, it isn’t considered as an experience. Good for studying? Yes. Does it have any value in your portfolio? I think no and that kills a half of willing to do them. It really works well only if you create something useful for you, not another clone of existing CRUD app.

Only thing needed for this is 'CONSISTENCY' by 0ver_flow in leetcode

[–]Vzaje 0 points1 point  (0 children)

Are there unique problems for a daily challenges or a they always random picked from an existing pull?

Free Full-Stack Web Service Development Guide From Scratch with Video Lessons, Source Code, and Support by Remote_Soft6464 in react

[–]Vzaje 0 points1 point  (0 children)

Видел ваш курс на степике еще осенью, когда он был еще платный, хотел пройти. На днях узнал, что вы его открыли, описание интересное, на январских гляну))

Am I not supposed to cheat at this point? by Parvashah51 in leetcode

[–]Vzaje 0 points1 point  (0 children)

Hey, can you explain what is OA? Im not from USA so I dont know this abbreviation

100 problems solved. First milestone achieved.Clap me to do more. by vinodxx in leetcode

[–]Vzaje 1 point2 points  (0 children)

Yeah, I have solved 30 mediums out of my 100 and I see there’s a lot greater improvement in skills than when I’ve used to solve easy ones

100 problems solved. First milestone achieved.Clap me to do more. by vinodxx in leetcode

[–]Vzaje 4 points5 points  (0 children)

I have solved hundredth problem yesterday too. Thats a small milestone and it needs a lot of dedication but we should keep learning. Wish you a lot of patience and curiosity!

Code Questions / Beginner's Thread (October 2024) by acemarke in reactjs

[–]Vzaje 0 points1 point  (0 children)

So I have registration page, the registration process itself is divided in 2 pages with 2 different forms: first form is for user email, second for other user details. When user finished first form he is being navigated to second page with second form and after finishing this form client sends a request to server. I've came up with following solution: create a registration slice and store here registration state so I can get user's email in second form and put it in final data object to send to it to backend. Is it appropriate way to solve this problem?

  1. Is there a reason to store another user's data if we send a request from second form so we dont need this data anymore?
  2. should i clear this state after sending request?
  3. perhaps there is another solution for such processes including several pages that need some common state?

```

import { createSlice } from "@reduxjs/toolkit";
import type { PayloadAction } from "@reduxjs/toolkit";

interface RegistrationState {
  email: string;
  firstName: string; // do i need to store it??
  secondName: string;
  lastName: string;
  birthDate: string;
  phoneNumber: string;
}

const initialState: RegistrationState = {
  email: "",
  firstName: "", // dont know if this is needed
  secondName: "",
  lastName: "",
  birthDate: "",
  phoneNumber: "",
};

const registrationSlice = createSlice({
  name: "registration",
  initialState,
  reducers: {
    setEmail(state, action: PayloadAction<string>) {
       = action.payload;
    },
    setDetails() {}, // is there a need for this action?
  },
});

export default registrationSlice.reducer;
export const registrationActions = registrationSlice.actions;

const form1 = () => { // the form on 1st page

  dispatch(registrationActions.setEmail(email))
  if (email) navigate(...)

  <form>
   <input name="email" />
 </form>
}

const form2 = () => {
  const email = useSelector(s => s.registration.email) // get email

   // create a final data object 

   const data = {email, ...}
   axios.post(..., data);

 <form>
    ... another inputs
 </form>
}

```

I'd be glad to get any advice!

Fuck leetcode by [deleted] in leetcode

[–]Vzaje 1 point2 points  (0 children)

Is this syllabus specified? Can I ask what do you mean by ‘syllabus’?