Saturday, July 9, 2022

LYDIA'S STORE PAYROLL SYSTEM IN C

 A payroll program that I wrote a long time ago using C programming language and Dev C++.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada



09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.






Program Listing


/* Lydia's Store Payroll System in C 
   Programmer : Jake Rodriguez Pomperada, MAED-IT, MIT
   Date       : July 9, 2022
   wwww.jakerpomperada.com and www.jakerpomperada.blogspot.com
   jakerpomperada@gmail.com
   Bacolod City, Negros Occidental Philippines

*/
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <ctype.h>
#include <string.h>


struct employee
{
char  emp_id[100];
char  emp_name[100];
char  position[100];
char  department[100];
float basic_pay,allowance;
float philhealth,sss_gsis,withholding_tax;
float pag_ibig,total_deductions;
float gross_pay,net_pay;
};

/* creating an object info of the structure in C */

struct employee info ;

main()
{
/* File Handling routine here */
FILE  *fp, *ft ;
char  another, choice ;
char emp_id[100];
int flag=0;

long int  recsize ;
    /* Creating and opening  payroll.dat */
fp = fopen ( "PAYROLL.DAT", "rb+" ) ;

if ( fp == NULL )
{
fp = fopen ( "PAYROLL.DAT", "wb+" ) ;

if ( fp == NULL )
{
puts ( "Cannot open file" ) ;
exit(0) ;
}
}

recsize = sizeof ( info ) ;


   /* declarion of menu of the employees payroll system in C here */
while (1)
{

        system("CLS"); 
        printf("\n");

printf("\n======================================");
printf("\n");
printf("\nLYDIA'S STORE PAYROLL SYSTEM IN C");
printf("\n");
printf("\n======================================");

printf("\n\n");
printf ( "1. ADD EMPLOYEE RECORDS" ) ;
printf("\n");
printf ( "2. DISPLAY EMPLOYEE RECORDS" ) ;
printf("\n");
printf ( "3. UPDATE EMPLOYEE RECORDS" ) ;
printf("\n");
printf ( "4. PRINT EMPLOYEES PAYSLIP" ) ;
printf("\n");
printf ( "5. DELETE EMPLOYEE RECORDS" ) ;
printf("\n");
printf ( "6. QUIT PROGRAM" ) ;
printf("\n\n");
printf ( "SELECT YOUR CHOICE : " ) ;

fflush (stdin) ;
choice = getche( ) ;
switch ( choice )   /* Selection of Options of Employees Payroll System */
{
case '1' :      

fseek ( fp, 0 , SEEK_END ) ;   /* This portion of the code will ADD EMPLOYEE RECORDS */
another = 'Y' ;

while ( another == 'Y' )
{
system("cls");
printf("\n\n");
            printf("=== Add Employees Record in the Database ===");
            printf("\n\n");
printf("Enter Employee ID             : ");
scanf("%s",&info.emp_id);
printf("Enter Employee Name           : ");
fflush (stdin) ;
gets(info.emp_name);
printf("Enter Employee Position       : ");
fflush (stdin) ;
gets(info.position);
printf("Enter Employee Department     : ");
fflush (stdin) ;
gets(info.department);
                    printf("Enter Basic Pay               : ");
scanf("%f",&info.basic_pay);
printf("Enter Allowance               : ");
scanf("%f",&info.allowance);

info.gross_pay = (info.basic_pay+info.allowance);

printf("\n");
printf("Employee's  Gross Pay : PHP %6.2f",info.gross_pay);

printf("\n\n");
printf("Enter Philhealth              : ");
scanf("%f",&info.philhealth);
printf("Enter SSS/GSIS                : ");
scanf("%f",&info.sss_gsis);
printf("Enter Withholding Tax         : ");
scanf("%f",&info.withholding_tax);
printf("Enter PAG-IBIG                : ");
scanf("%f",&info.pag_ibig);

    info.total_deductions = (info.philhealth+info.sss_gsis
                            + info.withholding_tax+info.pag_ibig);

        info.net_pay = (info.gross_pay-info.total_deductions);

   printf("\n");
   printf("Employee's  Total Deductions : PHP %6.2f",info.total_deductions);
   printf("\n\n");
                   printf("Employee's  Net Pay        : PHP %6.2f",info.net_pay);
                   fwrite ( &info, recsize, 1, fp ) ;
   printf("\n\n");
   printf ( "\nAdd another Record (Y/N) " ) ;
   fflush ( stdin ) ;
   another = toupper(getche()) ;
}

break ;

case '2' : /* This portion of the code will VIEW EMPLOYEE RECORDS */

    system("cls");
rewind (fp);
printf("\n");
                printf("=== View of Employee's Records in the Database ===");
                printf("\n");
while ( fread ( &info, recsize, 1, fp ) == 1 ) {
    printf("\n");
            printf("\n Employee ID          : %s",info.emp_id);
        printf("\n Employee Name        : %s",info.emp_name);
    printf("\n Position             : %s",info.position);
    printf("\n Department           : %s",info.department);
    printf("\n Basic Pay            : PHP %6.2f",info.basic_pay);
printf("\n Allowance            : PHP %6.2f",info.allowance);

info.gross_pay = (info.basic_pay+info.allowance);
printf("\n\n");
printf("\n Employee's  Gross Pay   : PHP %8.2f",info.gross_pay);
printf("\n");
printf("\n Philhealth           : PHP %6.2f",info.philhealth);
    printf("\n SSS/GSIS             : PHP %6.2f",info.sss_gsis);
    printf("\n Witholding Tax       : PHP %6.2f",info.withholding_tax);
    printf("\n PAG-IBIG             : PHP %6.2f",info.pag_ibig);
    info.total_deductions = (info.philhealth+info.sss_gsis
                            + info.withholding_tax+info.pag_ibig);

        info.net_pay = (info.gross_pay-info.total_deductions);

printf("\n\n");
printf("Employee's  Total Deductions : PHP %6.2f",info.total_deductions);
printf("\n\n");
            printf("Employee's  Net Pay        : PHP %6.2f",info.net_pay);
    printf("\n\n");
    }
                system("pause");
break ;

case '3' :  /* This portion of the code will UPDATE EMPLOYEE RECORDS */
               rewind (fp);

another = 'Y' ;
while ( another == 'Y' )
{
            system("cls");
            printf("\n");
    printf("=== Update Employee Records in the Database ===");
    printf("\n\n");

printf("\n");

                    printf("Enter Employee ID Number      : ");
scanf("%s",&emp_id);
rewind ( fp ) ;
while ( fread ( &info, recsize, 1, fp ) == 1 )
{
                    if ( strcmp ( info.emp_id, emp_id ) == 0 )
{

                    printf("Enter Employee ID             : ");
scanf("%s",&info.emp_id);
printf("Enter Employee Name           : ");
fflush (stdin) ;
gets(info.emp_name);
printf("Enter Employee Position       : ");
fflush (stdin) ;
gets(info.position);
printf("Enter Employee Department     : ");
fflush (stdin) ;
gets(info.department);
                    printf("Enter Basic Pay               : ");
scanf("%f",&info.basic_pay);
printf("Enter Allowance               : ");
scanf("%f",&info.allowance);

info.gross_pay = (info.basic_pay+info.allowance);

printf("\n");
printf("Employee's  Gross Pay : PHP %10.2f",info.gross_pay);

printf("\n\n");
printf("Enter Philhealth              : ");
scanf("%f",&info.philhealth);
printf("Enter SSS/GSIS                : ");
scanf("%f",&info.sss_gsis);
printf("Enter Withholding Tax         : ");
scanf("%f",&info.withholding_tax);
printf("Enter PAG-IBIG                : ");
scanf("%f",&info.pag_ibig);
/* Solving for total deductions */
    info.total_deductions = (info.philhealth+info.sss_gsis
                            + info.withholding_tax+info.pag_ibig);
    
/* Solving for net pay of the employee */
        info.net_pay = (info.gross_pay-info.total_deductions);

   printf("\n");
   printf("Employee's  Total Deductions : PHP %6.2f",info.total_deductions);
   printf("\n\n");
                   printf("Employee's  Gross Pay        : PHP %6.2f",info.net_pay);
                printf("\n\n");
                printf("Records has been updated in the database.");
                printf("\n\n");
                system("pause");
                 /* This code will save the update record in the binary file */
fseek ( fp, - recsize, SEEK_CUR ) ;
fwrite ( &info, recsize, 1, fp ) ;
break ;
}

                }
             if (strcmp(info.emp_id,emp_id) != 0 )
                    {
                        printf("\n\n");
                        printf("No Record in the Database.");
                        printf("\n");
                        system("pause");
                        break;
                    }

    printf("\n");
printf ( "\nUpdate Another Record (Y/N) : " ) ;
fflush ( stdin ) ;
another = toupper(getche());
}

break ;

case '4' :  /* This portion of the code will print employees payslip from the database */
                rewind (fp);

another = 'Y' ;
while ( another == 'Y' )
{
            system("cls");
            printf("\n");
    printf("=== Print Employees PaySlip in the Database ===");
    printf("\n\n");
printf("Enter Employee ID       : ");
scanf("%s",&emp_id);


rewind (fp) ;
while ( fread( &info, recsize, 1, fp ) == 1 )
{
/* Retrieve and display the employees record if found 
  from the binary file */
if (strcmp(info.emp_id,emp_id) == 0 )
{

        printf("\n");
            printf("\n Employee ID          : %s",info.emp_id);
        printf("\n Employee Name        : %s",info.emp_name);
    printf("\n Position             : %s",info.position);
    printf("\n Department           : %s",info.department);
    printf("\n Basic Pay            : PHP %6.2f",info.basic_pay);
printf("\n Allowance            : PHP %6.2f",info.allowance);

info.gross_pay = (info.basic_pay+info.allowance);
printf("\n\n");
printf("\n Employee's  Gross Pay   : PHP %8.2f",info.gross_pay);
printf("\n");
printf("\n Philhealth           : PHP %6.2f",info.philhealth);
    printf("\n SSS/GSIS             : PHP %6.2f",info.sss_gsis);
    printf("\n Witholding Tax       : PHP %6.2f",info.withholding_tax);
    printf("\n PAG-IBIG             : PHP %6.2f",info.pag_ibig);
/* Solving for total deductions */
    info.total_deductions = (info.philhealth+info.sss_gsis
                            + info.withholding_tax+info.pag_ibig);
              
/* Solving for net pay of the employee */
        info.net_pay = (info.gross_pay-info.total_deductions);

printf("\n\n");
printf("Employee's  Total Deductions : PHP %6.2f",info.total_deductions);
printf("\n\n");
            printf("Employee's  Gross Pay        : PHP %6.2f",info.net_pay);
    printf("\n\n");

                    system("pause");

                    break;
                }
}

            if (strcmp(info.emp_id,emp_id) != 0 )
                    {
                        printf("\n\n");
                        printf("No Record in the Database.");
                        printf("\n");
                        system("pause");
                        break;
                    }


                printf("\n");    /* Search for another employee record */
printf ( "\n Search Another Student Record (Y/N) : " ) ;
fflush ( stdin ) ;
another = toupper(getche());
}

break ;

case '5' :

another = 'Y' ;  /* This portion of the code will delete the employees record */
while ( another == 'Y' )
{
system("cls");
flag=0;
                    printf("=== Delete Employee Records in the Database ===");
                    printf("\n\n");
printf("Enter Employee ID       : ");
scanf("%s",&emp_id);
printf("\n");

    ft = fopen ( "TEMP.DAT", "wb" ) ;
rewind ( fp ) ;
while ( fread ( &info, recsize, 1, fp ) == 1 )
{
if ( strcmp ( info.emp_id, emp_id ) != 0 )
fwrite ( &info, recsize, 1, ft ) ;
else
                            flag=1;


}


                   /* Cresting a temporary file  to remove the selected employees record */
fclose ( fp ) ;
fclose ( ft ) ;
remove ( "PAYROLL.DAT" ) ;
rename ( "TEMP.DAT", "PAYROLL.DAT" ) ;
fp = fopen ( "PAYROLL.DAT", "rb+" ) ;
    /* If employees record found delete using this code */

                  if(flag==1) {
                        printf("\n\n");
                        printf("Record Successfully Deleted From the Database.");
                         printf("\n");
                       system("pause");
                    }

else if (flag!=1) {
                        printf("\n");
                        printf("Record Not Found in the Database.");
                        printf("\n");
                        system("pause"); /* stdlib.h library being used here  excute DOS command*/

                    }

                    printf("\n");
printf( "Delete Another Record (Y/N) " ) ;
fflush ( stdin ) ;
another = toupper(getche());  
}
break ;

case '6' :    
fclose ( fp ) ;
printf("\n\n");

printf("      Thank You For Using This Program !!!   ");
printf("\n\n");
system("PAUSE");
exit(0);  

}
}
}  /* Last line of code of the employees payroll program in C */

Friday, July 8, 2022

Break Statement in C Programming Language

 A simple program that I wrote to show how to use break statement using  C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada



09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.




Program Listing

/*break.c

 Author    : Mr. Jake R. Pomperada,BSCS,MAED-IT

 Date      : November 23, 2018  Tuesday 11:48 AM

 Location  : Bacolod City, Negros Occidental

 Website   : http://www.jakerpomperada.com

 Emails    : jakerpomperada@jakerpomperada.com

             jakerpomperada@gmail.com

             jakerpomperada@yahoo.com

             jakerpomperada@aol.com

*/

#include <stdio.h>


int main()

{

int a=0;

printf("\n\n");

printf("\tBreak Statement in C");

printf("\n\n");

for (a=1; a<=10; a++)

{

if (a==8) {

break;

}

printf("\t%4d",a);

}

    printf("\n\n");

    printf("\tThank you for Using This Software.");

    printf("\n\n");

    printf("\tEnd of Program");

    printf("\n\n");

}

Thursday, July 7, 2022

Compute Quotient and Remainder in C#

Compute Quotient and Remainder in C#

 A simple program that I wrote to compute the two given numbers by the user its quotient and remainder values using C# programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada



09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.



Program Listing

using System;

using System.Collections.Generic;

using System.Text;


namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {


            int dividend = 0, divisor = 0;


            Console.Write("\n\n");

            Console.Write("\tCompute Quotient and Remainder in C#");

            Console.Write("\n\n");

            Console.Write("\tGive a First Number : ");

            dividend = Convert.ToInt32(Console.ReadLine());


            Console.Write("\n");

            Console.Write("\tGive a Second  Number : ");

            divisor = Convert.ToInt32(Console.ReadLine());


            int quotient = dividend / divisor;

            int remainder = dividend % divisor;


            Console.Write("\n\n");

            Console.WriteLine("\tDividend:{0} Divisor:{1}", dividend, divisor);

            Console.Write("\n\n");

            Console.WriteLine("\tQuotient = " + quotient);

            Console.Write("\n");

            Console.WriteLine("\tRemainder = " + remainder);

            Console.Write("\n\n");

            Console.Write("\tEnd of Program");

            Console.Write("\n");

            Console.ReadLine();

        }

    }

}


Tuesday, July 5, 2022

Average of Three Numbers in Visual FoxPro

Average of Three Numbers in Visual FoxPro

 A simple program that I wrote using Microsoft Visual FoxPro that will ask the user to give three numbers and then our program will compute the average of the three given number and display the results on the screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada



09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

* Calculate Button

a = val(thisform.text1.value)

b = val(thisform.text2.value)

c = val(thisform.text3.value)


average_value = (a+b+c) / 3


thisform.text4.value = round(average_value,2)


* Clear Button

thisform.text1.value = ""

thisform.text2.value = ""

thisform.text3.value = ""

thisform.text4.value = ""


thisform.text1.setfocus


* Quit Button

thisform.release



Monday, July 4, 2022

US Dollar To Philippine Peso Using Pointers in C++

US Dollar To Philippine Peso Using Pointers in C++

 A simple program that I wrote using C++ programming language to ask the user to give us dollar value and then the program will convert the given US dollar into Philippine peso equivalent using Pointers.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada



09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
double *pUS_Dollar=new double;
double *pConvert=new double;

cout <<"\n\n";
cout <<"\tUS Dollar To Philippine Peso Using Pointers in C++";
cout <<"\n\n";
cout<<"\tEnter US Dollar Value : ";
cin>>(*pUS_Dollar);
*pConvert=(*pUS_Dollar*54.12);
cout <<"\n";
cout <<"\tUS Dollar  : $ " << fixed << setprecision(2) 
<< *pUS_Dollar <<"\n\n";
cout <<"\tPhilippine Peso Equivalent : PHP " 
<<fixed << setprecision(2) << *pConvert <<"\n";
cout <<"\n\n";
cout <<"\tEnd of Program";
cout <<"\n\n";
}


Addition of Three Numbers Using Pointers in C++

Addition of Three Numbers Using Pointers in C++

 A simple program to ask the user to give three numbers and then the program will ask the sum of the three numbers using Pointers in C++ programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada



09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.



Program Listing


#include <iostream>


using namespace std;


int main()

{

int *pVal1=new int;

int *pVal2=new int;

int *pVal3=new int;

int *pSum=new int;

cout <<"\n\n";

cout <<"\tAddition of Three Numbers Using Pointers in C++";

cout <<"\n\n";

cout<<"\tEnter first number: ";

cin>>(*pVal1);

cout<<"\tEnter second number: ";

cin>>(*pVal2);

cout<<"\tEnter third number: ";

cin>>(*pVal3);

*pSum=(*pVal1+*pVal2+*pVal3);

cout <<"\n\n";

cout <<"\tThe sum of " << *pVal1 <<"," << *pVal2 <<

", and " << *pVal3 << " is " << *pSum << "\n";

cout <<"\n\n";

cout <<"\tEnd of Program";

cout <<"\n\n";

}






Saturday, July 2, 2022

Sum and Difference of Two Numbers in Go

Sum and Difference of Two Numbers in Go

 A simple program that I wrote that will ask the user to give two numbers and then the program will compute the sum and difference of two numbers using Go programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.







Program Listing

/* sum_difference.go

   Author   : Mr. Jake Rodriguez Pomperada,MAED-IT, MIT

   Date     :  July 2, 2022  6:42 AM Saturday

   Location : Bacolod City, Negros Occidental

   Websites :www.jakerpomperada.com and www.jakerpomperada.blogspot.com

   Emails   : jakerpomperada@gmail.com

*/


package main


import "fmt"


func main() {

var val1 int32

var val2 int32

var sum int32

var difference int32


fmt.Print("\n")

fmt.Print("\tSum and Difference of Two Numbers in Go")

fmt.Print("\n\n")

fmt.Print("\tEnter two numbers: ")

fmt.Scanf("%d%d", &val1, &val2)

sum = (val1 + val2)

difference = (val1 - val2)

fmt.Print("\n")

fmt.Println("\tThe sum of", val1, "and", val2, "is", sum, ".")

fmt.Print("\n")

fmt.Println("\tThe difference between", val1, "and", val2, "is", difference, ".")

fmt.Print("\n")

fmt.Print("\tEnd of Program")

fmt.Print("\n")

}



Friday, July 1, 2022

Simple Age Calculator in JavaScript

Simple Age Calculator in JavaScript

 A simple program to calculate the age of the person using JavaScript programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================


Want to support my channel?

GCash Account

Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support.





Program Listing

index.html