[go: up one dir, main page]

Skip to content
View feenix100's full-sized avatar
  • Phoenix, AZ

Block or report feenix100

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
feenix100/README.md

About Me

I’m currently a student pursuing an undergraduate degree in Computer Science. My goal is to escape from the warehouse simulation loop I am stuck in. Then find a more fulfilling job in the tech industry simulation.

Interests

  • 👀 Languages & Technologies: Python, JavaScript, Java
  • 💞️ Collaboration Goals: Exploring connections between the human brain and digital computational devices. I want to develop code for brain embedded devices. How can we connect computers to the human brain?
  • Your eyeballs could become cameras, imagine taking a picture of your point of view, literally, then sharing that with other people, the same way that your eyes viewed it. We just need the right hardware installed, we can use javascript for everything else...

How to Reach Me

  • 📫 Read my thoughts and find my neural link address...

Feel free to connect if you share similar interests or if you're working on groundbreaking projects!

function calculateBillsAndPaycheck() {
    // Prompt the user for the paycheck amount
    let paycheck = prompt("Enter the paycheck amount: $");
    
    // Ensure the input is a valid number
    paycheck = parseFloat(paycheck);
    
    if (isNaN(paycheck)) {
        console.log("Invalid input. Please enter a numeric value for the paycheck amount.");
        return;
    }
    
    // Calculate the monthly bills as $100 more than each paycheck to simulate the actual debt accumlated in this simulated life
    let monthlyBills = paycheck + 100;
    
    // Display the slowly increasing snowball of debt
    console.log(`Paycheck: $${paycheck.toFixed(2)}`);
    console.log(`Bill Payment: $${monthlyBills.toFixed(2)}`);
    console.log(`Debt accumulated every paycheck: $${(monthlyBills - paycheck).toFixed(2)}`);
}

// Call the function to see how my life is going into debt
calculateBillsAndPaycheck();

Popular repositories Loading

  1. anti_user_button anti_user_button Public

    Code that creates a button that can never be clicked on

    JavaScript 1

  2. flower_detection flower_detection Public

    yolov5 custom Model for Cannabis bud detection

    Python 1

  3. stepper_Motor_Hat stepper_Motor_Hat Public

    waveshare stepper motor hat for raspberry pi info

    Python

  4. flashcards flashcards Public

    simple flashcards in javascript html css

    JavaScript

  5. quiz_multiple_choice quiz_multiple_choice Public

    quiz - multiple choice using javascript html css easy to use

    JavaScript

  6. 3d_warehouse_map 3d_warehouse_map Public

    Use code to create a 3d map of shelves in a warehouse

    JavaScript