Wednesday, November 22, 2023

Advocating for Sustainable Waste Management in Our Community

Introduction:

Our community faces a pressing issue in the form of inefficient waste management, leading to environmental degradation and health concerns. This concept paper outlines a social advocacy initiative to address this problem, focusing on sustainable waste management practices.


Purpose:

The purpose of this initiative is to create awareness, instigate behavioral changes, and work towards implementing sustainable waste management solutions in our local community. By fostering a sense of responsibility among residents, we aim to reduce the environmental impact of improper waste disposal and promote a healthier and cleaner living environment.


Description:

Our community currently faces challenges such as overflowing landfills, littered public spaces, and inadequate waste segregation practices. This initiative proposes a multi-faceted approach to address these issues. It involves conducting educational campaigns to inform residents about the importance of waste reduction, recycling, and proper disposal methods. Additionally, we plan to collaborate with local authorities to improve waste collection and recycling infrastructure.


Support:

To ensure the success of this advocacy, we seek support from local businesses, schools, and community organizations. Partnerships with waste management companies will be explored to enhance recycling facilities, while schools can play a crucial role in educating the younger generation about responsible waste practices. Public awareness campaigns through social media, community events, and workshops will be organized to engage and mobilize residents.


Contact Information:

For more information or to join our cause, please contact:

Beah Faith Pacpaco

Elaine Marie Laurente 

Vhen Junise Ramos

Jaycee Cepe

Jerome Figuerres

Marc Louwie Dizon

Jasmin Lei Mendoza

Tuesday, November 14, 2023

compound calculator

 <html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Compound Interest Calculator</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            margin: 50px;

        }

    </style>

</head>

<body>

    <h1>Compound Interest Calculator</h1>

    <form id="compoundForm">

        <label for="principal">Principal amount:</label>

        <input type="number" id="principal" required><br>


        <label for="interestRate">Annual interest rate (%):</label>

        <input type="number" id="interestRate" step="0.01" required><br>


        <label for="years">Number of years:</label>

        <input type="number" id="years" required><br>


        <button type="button" onclick="calculateCompoundInterest()">Calculate</button>

    </form>


    <h2 id="result"></h2>


    <script>

        function calculateCompoundInterest() {

            var principal = parseFloat(document.getElementById('principal').value);

            var interestRate = parseFloat(document.getElementById('interestRate').value);

            var years = parseInt(document.getElementById('years').value);


            var compoundInterest = principal * Math.pow(1 + (interestRate / 100), years) - principal;


            document.getElementById('result').innerHTML = 'Compound Interest: $' + compoundInterest.toFixed(2);


        }

    </script>

</body>

</html>

Sunday, November 5, 2023

Physical Education

 Once upon a time, in a small town nestled between rolling hills, there lived a dedicated teacher named Ms. Ablog. She taught science at the local middle school, and her passion for learning and nurturing young minds knew no bounds.


When the global health crisis struck, Ms. Ablog didn't falter. Instead, she saw an opportunity to help her students understand the pandemic and contribute to the fight against it. She transformed her classroom into a hub of information and empathy.


Ms. Ablog used her science classes to teach her students about viruses, the importance of vaccines, and the significance of public health measures like mask-wearing and social distancing. She made complex concepts understandable to her young students, instilling in them a sense of responsibility to protect themselves and their community.


Beyond academics, Ms. Ablog's role extended into providing emotional support. She listened to her students' fears and concerns, reassuring them that they were not alone in this challenging time. She encouraged open discussions about mental health and the importance of staying connected, even when physically apart.


But her contributions didn't stop there. Ms. Ablog organized virtual events and fundraisers to support healthcare workers, showing her students the value of community and gratitude. She led by example, volunteering her time to distribute masks and sanitizers to those in need.


Ms. Ablog's tireless efforts were not in vain. Her students became ambassadors of health and safety, spreading the knowledge and empathy she had instilled in them. As they returned home, they shared what they had learned with their families, who, in turn, spread awareness within the community.


Ms. Ablog's impact reached far beyond the walls of her classroom. Her role as a teacher became a beacon of hope and a guiding light in the fight against the global health crisis. She showed that education, compassion, and community can be powerful tools in overcoming challenges, and she remains an inspiration to her students and all who knew her.

Advocating for Sustainable Waste Management in Our Community

Introduction: Our community faces a pressing issue in the form of inefficient waste management, leading to environmental degradation and hea...