Macken Design Co.

Some fiction and tears and laughz

Category: Charity

  • Let Us Help Vulnerable Immigrants Get On The Right Path

    America is a nation of immigrants. I imagine the immigrant from South America finding refuge in the monument of equality, constitutional rights, a free society, and a free market economy such as the U.S. A stark difference than his favela slum controlled by ruthless drug lords. What a journey he has been on. He finally escaped the atrocious and made it to the land of opportunity… let us be the dignity and humility that we, the U.S. represent.

    I feel that good people whom are immigrants are very welcome in the U.S. People whom contribute to our economy, are productive members of society, and are honest and good neighbors. In my opinion there should be easier, quicker, and more seamless pathways to U.S. citizenship. I feel immigrants are being unjustly “demonized”. Remember, as new citizens the immigrant is then liable to be held accountable to our laws (a crime here is a crime whether you are a citizen or not)… It doesn’t matter what language you speak, what you look like, what nation you are from, that is one of America’s strengths.

    I like this charity, Contigo, because they are looking out for the vulnerable immigrant who may not have the resources or know-how to defend his or herself. The world can be a scary place out there folks. Let us care for each other.

    https://contigojustice.org

  • Charity is the greatest of the Commandments

    Imagine a store that gives and gives and gives.

    First some JS

    class jobFunctions {
      constructor(){
      }
    cashRegister(){
      //charity
      alert("Charity is a great action! Give, give, and give some more!");
    }
    organizeClothes(){
      //charity
      alert("Charity is a great action! Give, give, and give some more!");
    }
    clean(){
      //charity
      alert("Charity is a great action! Give, give, and give some more!");
    }
    security(){
      //charity
      alert("Charity is a great action! Give, give, and give some more!");
    }
    }
    
    let job = new jobFunctions();
    
    const regi = document.getElementById('cashRegister');
    regi.addEventListener('submit', function(event) {
        event.preventDefault();
        job.cashRegister();
    });
    
    const organizeClothes = document.getElementById('organizeClothes');
    organizeClothes.addEventListener('submit', function(event) {
        event.preventDefault();
        job.organizeClothes();
    });
    
    const clean = document.getElementById('clean');
    clean.addEventListener('submit', function(event) {
        event.preventDefault();
        job.clean();
    });
    
    const secu = document.getElementById('security');
    secu.addEventListener('submit', function(event) {
        event.preventDefault();
        job.security();
    });

    And then some HTML:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Retail</title>
        <style>
            @font-face {
              font-family: 'Medium'; src: url('medium.ttf');
            }
            h1 {font-size: 8em; max-width: 80%; margin: 0; }
            h2 {font-size: 6em; max-width: 80%; margin: 0;}
            h3 {font-size: 4em; max-width: 80%; margin: 0;}
            p {font-size: 2em;}
            body { font-family: 'Medium'; color: pink; margin: 20px; background-color: hotpink;}
            button { font-family: 'Medium'; font-size: 4em; background-color: lightsalmon; padding: 10px; margin: 10px; box-shadow: 20px 10px 3px darksalmon; color: pink; border-color: salmon; border-radius: 5px; cursor: grab; }
            button:hover { background-color: coral; }
            form {float:left; margin: 0 auto; width: 300px; max-width: 80%; border-style: dashed; border-spacing: 10px; color: lightpink; padding: 10px;}
        </style>
    </head>
    <body>
      <h1>Retail Job Functions</h1>
      <h2>Charity</h2>
        <form id="cashRegister">
            <!--<h3>Check Out</h3>-->
            <button type="submit">Check Out Cash Register</button>
        </form>
        </form>
        <form id="organizeClothes">
            <!--<h3>Organize Clothes</h3>-->
            <button type="submit">Organize Clothes</button>
        </form>
        <form id="clean">
            <!--<h3>Clean</h3>-->
            <button type="submit">Clean</button>
        </form>
        <form id="security">
            <!--<h3>Security Sweep</h3>-->
            <button type="submit">Security Sweep</button>
        </form>
    
        <script src="retail.js"></script>
    </body>
    </html>
  • Charity Program

    <?
    //Charity - Simple giving without wanting anything in return.
    $charity = ['Give necessities to the needy and poor. ', 'Give shelter, housing, homes, tents, meals, water, to the homeless.', 'Give to the needy and poor. ', 'Ask a homeless person what their story is and why they are homeless. Try to find if you are connected to that person in any way. Ask the homeless person how you could be of benefit to them, or what you could do to help them. Encourage sobriety and healthy habits. Let them know about employment opportunities and ways to make an honest, sustainable living. ', 'If you could afford it, purchase a house or housing for the homeless. ', 'Give spare food, water, money, essential items such as sleeping bags, tents, clothing, shoes, hygene goods, to the poor and needy. '];
    $A = 0;
    while($A < 1000001){
    	shuffle($charity);
    	echo $charity[0];
    	$A++;
    }
    ?>