Skip to main content

saving money weekly

I came across a an idea called 52 Week Money Challenge. Let me share to you how it works. The idea is to save Php62,900.00 in 52 weeks(one year) and we start with only Php50.00.

What is it?

From the label 52 Week Money Challenge, it's a Challenge. It's about saving Money. It runs for 52 weeks (1 year). In a nutshell, you religiously save an increasing amount for the whole year.

How do you do it?

  1. For the first week, you save Php50.00.
  2. On the second week, you save the same amount as last week, which is Php50.00 - plus additional Php50.00. That's Php100.00
  3. On the third week, you save the same amount as last week, which is Php100.00 - Plus additional Php50.00. That's Php150.00
  4. On the fourth week, you save the same amount as last week, which is Php150.00 - Plus additional Php50.00. That's Php200.00
  5. You repeat the cycle for one year or 52 weeks.
  6. Enjoy your money.

Minimum Requirements:

  • Make sure you can wait for one year
  • You have an income for at least a year
  • You can afford to set aside the amount of the last week. If you are using Php50.00 as base, then that's Php2,600
Tips: 
  • Put it in a bank account to avoid the temptation of spending your money
  • Have a goal on how to use it when you are done. (eg. cellphone, project car, travel)
  • You can change the base depending on what you can afford. If you are a student you might want to start with Php10.00 or Php20.00
If you think this is not effective to you, then consider changing some of the parameters. Say, reverse it(which i am using). Start from the biggest amount(Php2,600). Or, if you have an erratic amount of income, then just choose what you can afford on the week. I'll be discussing this next time since i have just thought of it right now.

Happy Saving!

Popular

SPMP: Standard PHP-MVC-Principles Framework

I was building an bookkeeping management system with xAI when it occurred to me that I was also priming to build a PHP framework.  I never liked Laravel and Symfony as they were heavy on the disk and with steep learning curve. I was opting for the likes of CodeIgniter but none of them are either scalable or MVC. And so, for years, I stuck my self with vanilla PHP until I decided to venture to the path of AI. You see that on my previous posts. Then I find myself creating the said bookkeeping management system where I was employing the assistance of ChatGPT. I wasn't as good as I thought due to PHP vastness of possibilities. So I did what others will do. Look for an alternative to ChatGPT.  Then came Grok(xAI). It was good but something's missing. That's when I decided to narrowed down my requirements. I listed PHP framework principles that I wanted to have with : simple, minimal, secure, extendable, configurable and to top it off lightweight and easy to collaborate with AI....

Using AI to Reinvent My Résumé and Try to Land an Interview

Creating a résumé is a tedious job to most. It's hard, time consuming and might even be the cause for rejection-if you don't know what you're doing. Fortunately, there are AI tools out there that created to assist, us humans, in generating résumé. It save's time, effort and you get higher chance of being hired.  But what if you're transitioning to an entirely different role? You don't have experience, no educational background to back it up. and no portfolio to show. What do you do? You come up with something creative. You come up with some that has never been done before. And, just wow them... or at least try. I was messaged in LinkedIn for a position that I was eyeing for in years. The HR guy reached out and we scheduled a call interview. We talked for more than half an hour and I was enlightened that my résumé is lack-luster. I was highly considered but the résumé is not at par because I have no job experience on AI, the certifications we're not included,...

PHP Error: Unable to load dynamic library 'gd'

Currently installing Laravel on my Arch Linux. I got PHP, MySQL, Apache and Composer installed and trying to install Laravel with this: $ composer global require laravel/installer  But got this instead: PHP Warning:  PHP Startup: Unable to load dynamic library 'gd' (tried: /usr/lib/php/modules/gd (/usr/lib/php/modules/gd: cannot open shared object file: No such file or directory), /usr/lib/php/modules/gd.so (/usr/lib/php/modules/gd.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 PHP Warning:  PHP Startup: Unable to load dynamic library 'openssl.so' (tried: /usr/lib/php/modules/openssl.so (/usr/lib/php/modules/openssl.so: cannot open shared object file: No such file or directory), /usr/lib/php/modules/openssl.so.so (/usr/lib/php/modules/openssl.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 PHP Warning:  PHP Startup: Unable to load dynamic library 'phar.so' (tried: /usr/lib/php/modu...