Friday, October 11, 2019

Animated Login Form in HTML and CSS

 In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan. 

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

style.css

body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #34495e;
}
.box{
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: black;
    text-align: center;
}
.box h1{
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

.box input[type = "text"],.box input[type = "password"]{
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
}
.box input[type = "text"]:focus,.box input[type = "password"]:focus{
    width: 280px;
    border-color: #2ecc71;
}
.box input[type = "submit"]{
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 14px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
}
.box input[type = "submit"]:hover{
    background: #2ecc71
}


index.htm

<!DOCTYPE HTML>
<html lang="en" dir="ltr">
<head>
  <title>Animated Login Form</title>
  <link rel="stylesheet" href="style.css">
</head>

<body>
  <form class="box" action="index.html" method="post">
      <h1>Login</h1>
      <input type="text" name="" placeholder="Username">
      <input type="password" name="" placeholder="Password">
      <input type="submit" name="" value="Login">
  </form>
</body>
</html>

Shutdown a Computer Using C Programming Language

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan this program is written in C language to shut down a computer using C programming language. The program using Turbo C for DOS compiler to write and run the program.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

/* Shutdown */

/* Windows XP */

#include<stdio.h>
#include<stdlib.h>

int main()
{
char ch;
printf("Do you want to shutdown your computer now?(y/n)\n");
scanf("%c",&ch);
if(ch=='y'||ch=='Y')
system("C:\\WINDOWS\\System32\\shutdown-s");
return 0;
}

/* WINDOWS 7 */

#include<stdio.h>
#include<stdlib.h>

int main()
{
system("C:\\WINDOWS\\System32\\shutdown/s");
return 0;
}

/* Ubuntu Linux */

#include<stdio.h>

int main()
{
system("shutdown-P now");
return 0;
}

Getting an IP Address Using C Language

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan this program to get the IP Address in the computer. The program using Turbo C for DOS compiler to write and run the program.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

#include<stdlib.h>

int main()
{
system("C:\\Windows\\System32\\ipconfig");
return 0;
}


Reverse a String in C Programming Language

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan this program is written in C language to reverse the given string by the user. The program using Turbo C for DOS compiler to write and run the program.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

#include <stdio.h>
#include <string.h>

int main()
{
char arr[100];
printf("Enter a string to reverse\n");
gets(arr);
strrev(arr);
printf("Reverse of entered string is: \n%s\n",arr);
return 0;
}

Print Date in C Language

In this article, I would like to share the code written by my friend and fellow software engineer sir Ernel Fadriquilan this program is written in C language to print date. The program using Turbo C for DOS compiler to write and run the program.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

#include <stdio.h>
#include <conio.h>
#include <dos.h>

int main()
{
struct date d;
getdate(&d);
printf("Current system date is:%d/%d/%d",d.da_mon,d.da_day,d.da_year);
getch();
return 0;
}


Reserve a Number in C++

In this article. I  will discuss how to create a simple program to as the user to give a number and then the program will reverse the arrangement of the given number and display the results on the screen using C++ as our 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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

reverse.cpp

// reverse.cpp
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : October 111, 2019  Thursday 9:43 PM


#include <iostream>

using namespace std;

int main() {
int num=0,rev=0,rem=0;
cout <<"\n\n";
cout <<"\tReverse a Number in C++";
cout <<"\n\n";
cout <<"\tGive a Number : ";
cin >> num;
while (num != 0) {
rem = num%10;
rev = rev * 10 + rem;
num = num / 10;
      }
     cout <<"\n\n";
cout <<"\tReverse Number : " <<rev;
cout <<"\n\n";
cout <<"\tEn

Reverse a Number in C++

Print Number Given By the User in C++

In this article, I will discuss how to create a simple program to as the user to give a number and then the program will print a number given by the user on the screen using C++ as my 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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Program Listing

// print_number.cpp
// This program will print the given number by the user.
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : October 8, 2019  8:22 PM Tuesday
// Website : http://www.jakerpomperada.com

#include <iostream>

using namespace std;


int main()
{
int val_num=0;
cout <<"\n";
cout <<"\tPrint Number Given By the User";
cout <<"\n\n";
cout <<"\tEnter a Number : ";
cin >> val_num;
cout <<"\n";
cout <<"\tYou entered " << val_num <<".";
cout <<"\n\n";
cout <<"\tEnd of the Program";
}


Print a number given by the user on the screen in C++

String Palindrome in C++ Checker

A simple C++ program that I wrote to ask the user to give a string and then the program will determine whether the given string is a palindrome or not a palindrome 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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output



Program Listing

palindrome.cpp

// palindrome.cpp
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : October  10, 2019   Thursday   9:57 PM

#include <iostream>
#include <string.h>

using namespace std;

int main() {
char str1[50], str2[50];
int i=0,len=0,j=0, flag=0;
cout <<"\n\n";
cout <<"\tString Palindrome in C++";
cout <<"\n\n";
cout << "\tGive a String : ";
gets(str1);
    len = strlen(str1) -1;
for (i=len,j=0; i>=0; i--, j++) {
    str2[j] = str1[i];
       }
    if (strcmp(str1,str2)) {
    flag =1;
if (flag==1) {
cout <<"\n\n";
cout <<"\t"<<str1 << " is Not a Palindrome";
} else {
cout <<"\n\n";
cout <<"\t"<<str1 << " is a Palindrome";
}
cout <<"\n\n";
cout <<"\tEnd of Program";
}




Arithmetic Mean Solver in C++

A simple program that I wrote that will ask the user to give a number and then our program will compute the arithmetic mean of the series of numbers being provided by our user and display the results on the screen using C++ as our 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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

 mean.cpp

// mean.cpp
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : October 10, 2019   Thursday  10:11 PM

#include <iostream>

using namespace std;


int main() {
int n=0,i=0, arr[100], sum=0;
cout <<"\n\n";
cout <<"\tArithmetic Mean Solver in C++";
cout <<"\n\n";
cout <<"\tHow many numbers you want to process? ";
cin >> n;
cout <<"\n\n";
for (i=1; i<=n;i++){
cout <<"\tEnter item value " << i << " : ";
cin >> arr[i];
sum = sum + arr[i];
}
int result = sum/n;
cout <<"\n\n";
cout <<"\tThe Arithmetic Mean is " << result;
cout <<"\n\n";
cout <<"\tEnd of Program";
}


String Palindrome in C++

Arithmetic Mean Solver in C++

Thursday, October 10, 2019

Pass and Fail Solver in C++

Hi there about this code I called it Pass and Fail Solver in C++. Basically, this code will determine whether the grades given by the user are pass or fail after which it will list the pass and failed grades using a one-dimensional array in 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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output






Calculator in Microsoft Visual Basic 6

About this code, I called it  Calculator is written in Microsoft Visual Basic 6 that simulates a calculator.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output





Binary, Hexadecimal and Octal Converter in C/C++

About this program, I called it Binary, Hexadecimal and Octal Converter  I wrote this using C/C++ language. It will ask the user to enter an integer number and then I will convert the integer value in three categories Binary, Hexadecimal and Octal equivalents.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output




Address Book Entries in Java

Hi, there this is my first time to post code in Java that I'm using a multidimensional array as its data structure. I wrote again this code for a programming assignment of a student who as my help over the Internet. In this example, it will display the name, telephone number and address of the user. I called this example a simple address book in Java.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


Sample Program Output


Program Listing

// add.java
// Author: Jake R. Pomperada,MAED-IT
// Tool  : Java
// Date  : January 21, 2009

// A sample address book entries in java using multi dimensional array
// in Java.

class add
{
 static String[][ ] records=
        
   // Sample Data Entries
    
  {{"Florence", "735-1234", "Manila"},
 {"Joyce", "983-3333", "Quezon City"},
         {"Becca", "456-3322", "Manila"}}; 


 public static void main(String args[]){
  System.out.println();
  System.out.println("\t Address Book Entries Version 1.0");
  
 for(int i=0;i<3;i++){
  System.out.println();
  System.out.println("\t Name    : "  + records[i][0]);
                System.out.println("\t Tel. #  : "  + records[i][1]);
                System.out.println("\t Address : " + records[i][2]);
                System.out.println();
    }
  System.out.println("\t\t Program Code and Design By:");
  System.out.println("\n\t Mr. Jake Rodriguez Pomperada,MAED-IT");  
                System.out.println();
  System.exit(0);  
 }
  } //end of code


Fibonacci Series in Microsoft Visual Basic 6

A simple Fibonacci Series program that I wrote in Microsoft Visual Basic 6.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output





Grocery Inventory System in Microsoft Visual Basic 6 and Microsoft Access

Hi there about the code I called it Grocery Inventory System written entirely in Microsoft Visual Basic 6 and Microsoft Access. It is very useful in small grocery or convenience stores to track down their day to day business transactions.

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 in 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.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output