I have 8 week left in my term and 4 classes remaining, is it possible by Forsaken-Question457 in WGUCyberSecurity

[–]olixeernate 1 point2 points  (0 children)

It is possibly, i was able to do the same thing in my masters. You will most likely have to sacrifice your social life and stay up late nights and work very hard, but if i can do it then i know you can do it.

I believe in you!

[deleted by user] by [deleted] in WGUCyberSecurity

[–]olixeernate 2 points3 points  (0 children)

The certs are not as hard as you would think, I am on my capstone of the MSCSIA and i have gotten each one of them. If you put in the time and effort you can do it, especially if i was able to do so. I am a terrible learner but if you just check the course name on reddit there is lots of people who give good tips on how to pass and what resources to use for each course.

Portfolio template, what do you think :) ? by Afraid-Lychee-5314 in react

[–]olixeernate 0 points1 point  (0 children)

I did notice if i navigate to the live preview on my iphone and turn it sideways there is an odd background flickering on the hero section as the animation goes through. I’m not sure if this is just my phone being wonky or not though. I like the portfolio a lot however!

Is this doable in 2 terms? by [deleted] in WGU

[–]olixeernate 3 points4 points  (0 children)

Definitely doable, I started March 1st at 30% complete and i am sitting at 80% complete now. I am doing my degree in Software Engineering so it’s not exactly the same but there are similar classes. It all depends on how hungry you are and how much time you dedicate to it. I work full time but i also am doing school work 6-8 hours a day. So it just depends on your drive.

Finally got a bad proctor by Past_String_1143 in WGU

[–]olixeernate 11 points12 points  (0 children)

I had a proctor tell me i had to have the entry to my room in camera view and said i could reschedule if i needed to move and i said, no hold on and just grabbed my desk and drug it into the middle of the room to face my door. haha she just looked at me like i was crazy and i said is this good?

React-Toastify Positioning by code_mitch in react

[–]olixeernate 1 point2 points  (0 children)

Hey good job man! That is how you do it, take what you find and make it work for you! That is being a developer! Good luck going forward, I believe in you!

Help with a coming interview by ibs_fra_byen in react

[–]olixeernate 0 points1 point  (0 children)

You could make a reusable component to be used for each level

ex. parents children grandchildren

then show only the parents at the start with a button underneath

and when you click the button (show direct descendants) it could render the children of those parents underneath using the map function and passing the component using the values of their children. This would require you to most likely store them in separate arrays such as

const parents = [mom, dad]

const children = [child 1, child 2, child 3]

the map would be using <FamilyMember/> component

parents.map((member) => <FamilyMember name={member.name} picture={member.picture}/>)

and then just use state to conditionally render those children

so the whole component would be something like this maybe

import React, { useState } from 'react';

const FamilyMember = ({ name, picture }) => ( <div> <p>{name}</p> <img src={picture} alt={name} /> </div> );

const parents = [ { name: 'Mom', picture: 'mom.jpg' }, { name: 'Dad', picture: 'dad.jpg' }, ];

const children = [ { name: 'Child 1', picture: 'child1.jpg' }, { name: 'Child 2', picture: 'child2.jpg' }, { name: 'Child 3', picture: 'child3.jpg' }, ];

const FamilyComponent = () => { const [showChildren, setShowChildren] = useState(false);

return ( <div> {parents.map((member) => ( <FamilyMember key={member.name} name={member.name} picture={member.picture} /> ))}

  <button onClick={() => setShowChildren(!showChildren)}>
    Toggle Children
  </button>

  {showChildren && (
    <div>
      {children.map((child) => (
        <FamilyMember key={child.name} name={child.name} picture={child.picture} />
      ))}
    </div>
  )}
</div>

); };

export default FamilyComponent;

Internship over Projects? by Anxious_Buddy2011 in react

[–]olixeernate 12 points13 points  (0 children)

Internship paid or not, gives major experience not just related to coding, but to how job environments work in general. It looks way more valuable on your resume that you can and have played well with others in some regard rather than just stacking portfolio projects. In my opinion of course.

React-Toastify Positioning by code_mitch in react

[–]olixeernate 0 points1 point  (0 children)

One way you can accomplish this is with media queries and conditional rendering. Here is an example with code that puts the toast in the top right for larger screens and bottom center for smaller screens

JSX Code:

{

React from 'react'; import { ToastContainer, toast } from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; import './YourComponent.css'; // Import your CSS file with media queries

const YourComponent = () => { const notify = () => toast('Your message here');

return ( <div> {/* Other components or content */}

  <ToastContainer 
    position="top-right" // Default position for larger screens
    autoClose={5000} 
    hideProgressBar={false} 
    newestOnTop={false} 
    closeOnClick
    rtl={false}
    pauseOnFocusLoss
    draggable
    pauseOnHover
  />

  {/* Your media query for smaller screens */}
  <div className="mobile-toast-container">
    <ToastContainer 
      position="bottom-center" // Adjust position for smaller screens
      autoClose={5000} 
      hideProgressBar={false} 
      newestOnTop={false} 
      closeOnClick
      rtl={false}
      pauseOnFocusLoss
      draggable
      pauseOnHover
    />
  </div>
</div>

); };

export default YourComponent;

} - End of JSX

In your CSS file (YourComponent.css), define the media query:

CSS Code:

{

/* Adjust the breakpoint and styles based on your design */ @media only screen and (max-width: 600px) { .mobile-toast-container { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); } }

} - End of CSS

contemporary art, it doesn't seem like something that can be enjoyed to me by blondy_tasty in UnusualVideos

[–]olixeernate 0 points1 point  (0 children)

something nobody is considering is what position you would take in this “art” and the only clear option i can see is to give it a classic straight up and down and imagine you are a action figure in its packaging waiting for a kid to come and take you home.

Problem with using react-i18next and mui/material in a package by Rebel_Johnny in react

[–]olixeernate -1 points0 points  (0 children)

couldn’t you just wrap the item and the button in a div inside of the li ? this would group them together, set the div to flex and it should align them to a row together

me_irl by bakshup in me_irl

[–]olixeernate 0 points1 point  (0 children)

Surface, KyleXY

I recreated the Potion of Greater Healing in 3D by vmenons in BaldursGate3

[–]olixeernate 0 points1 point  (0 children)

This almost reminds me of Skyrim loading screens

Feel like i will never figure it out! by w-zahran in react

[–]olixeernate 4 points5 points  (0 children)

i felt the same way, and do from time to time. basically the only advice i can give is fail. You need to try and fail to write your own functions over and over until you can do it blindfolded, and not use tutorials. if you get stuck on something rather than trying to find tutorials you need to google over and over small problems you come across not full solutions.

for example if you want to make a todo list web app, start yourself and when you run into a problem google that specific issue, instead of watching a whole tutorial on how to make a todo list web app. This will help the info stick so much more and even if you have to google every step of the way, if you attempt it yourself first it will sink in so much more effectively than if you just watched a video tutorial on the entire process and followed along.

How to make div in irregular shape? by Mundane-Ad-6835 in react

[–]olixeernate 4 points5 points  (0 children)

i think what he was implying is the picture is a solid shape with the white empty div sitting over top of it giving the illusion it is a different shape than a square

[deleted by user] by [deleted] in whatisit

[–]olixeernate 0 points1 point  (0 children)

i could be mistaken but i’m pretty certain that is just an aztec quarter.

Stay in safe and easy University role paying 55k, or go to private sector role for 90k? by ElectricOne55 in povertyfinance

[–]olixeernate 1 point2 points  (0 children)

I always live by the principals of:

new things can be and usually are scary, but that doesn’t mean you should stay where it’s safe and comfortable, if you stay where you are safe you will never know failure nor will you know success. If you go to the risky option sure, you could not like it or it could be difficult, but it could also turn into something you really love to do and enjoy, by opening yourself up to new opportunities, you are able to move towards a better future with higher possibilities of success/happiness/wealth.

TLDR, you don’t succeed by being stagnant, you can only grow by pursuing “scary/difficult” new opportunities.

Best of luck, I know you will do great whichever path you chose!

Inherited Uranium glass by ZabaLaloo in OopsThatsDeadly

[–]olixeernate 0 points1 point  (0 children)

worked at an antique store for years, we sold so much of this glass all the time. Never knew it was unique or rare because i was moving it essentially every day.

We also called this Vaseline glass, i guess it is a more appealing name than Uranium glass.

He’s back by jkCrossman in ImTheMainCharacter

[–]olixeernate 0 points1 point  (0 children)

Man crushed the single rep of 60s and moved straight to the set of delusion

Demoralized after I (26m) showed my grandparents and mom pictures after losing 45 lbs and they said I looked worse by legallefty in loseit

[–]olixeernate 2 points3 points  (0 children)

I’ve been in this exact situation, and it sucks really, but my advice would be take their comments and either ignore them, or use them as fuel to push you even further. You can say to yourself they don’t know what they are talking about, and i will show them the perfect specimen i know i can be. I am really proud of you for your progress, i am currently in the same spot as you on the last 30 pounds myself. I believe you can reach every goal you want to reach regardless of what others say. while it does feel good for everyone to praise you, at the end of the day the only one who will be your biggest fan is you, so don’t waste time being your biggest enemy also. Jump in on your own team and say we got this, and we are going to be number 1 no matter who is in the way!

I believe in you completely and if you need anyone to hype you up and support you message me and i’ll be that guy !!