-->

About Me

WordPress Developer And Forentend Developer.

Me Harsh

Brithday 07-08-1999
Call +91-8210947237
Email hshandilya35@gmail.com
Website hshandilya35.blogspot.com

My Skill

PHP
HTML5 & CSS
MySQL
Java

My Services

What i offer

Theme Design

Editing themes

Website Design

Websie Development using latest technologies

UI/UX Design

Portfolio Design

Development of own portfolio

Support

1001

Happy Clients

250

Projects Done

150

Awards Won

1500

Cups Tea

My Portfolio

What i do
  • All
  • Development
  • Music
  • Foods

My Experience

My Recent Experiences
Mar 2020
Annual Fest Website Developed

Amiphoria @amityuniversity

Apr 2020
Web Development

Omnifood Website

Present
Frontend Developent

HTML , CSS , JS

My Blog

Latest blog
Hii there !   Being a long time I am back now .

I have Created a small Java Project in which you have to Enter your Name and after that , all the vowels of your name will remove automatically, and then after see your Interesting Name.😆😇

Try this .......... Here is the Source code

       import java.util.Scanner;
      
public class RemoveVowels {
   
      public static void main(String[] args) {
      
     Scanner scan = new Scanner(System.in);       // Scan User Input
    
          String name;    
       System.out.print("Enter Your Name:");
       name = scan.nextLine();
       char[] c = name.toCharArray();
       char cc[] = new char[80];
       int x = 0;
       for(int y=0; y<c.length; y++) {
       if(c[y]=='a' || c[y]=='e' || c[y]=='i' || c[y]=='o' || c[y]=='u') {
       continue;
       }
       else {
       cc[x]=c[y];
       x++;
       }
       }
       System.out.print("\nAfter Removing Vowels from your Name: ");
       System.out.print(cc);
       System.out.print("\nCreated by Harsh");
       }
}

Now run it using this Link ..https://code.sololearn.com/cDsrWijGHTNe

Note :
After Clicking this link , Enter your Name and press on Submit.

Wishing You all Happy Holi!!😊
May the Colours of Holi make your life as Colourful and Happy as they are...
Created a small Holi wishes to all of you by using emotes this time....


// Created by Harsh //
// Happy Holi //
#include <io.h>
#include <fcntl.h>
#include <stdio.h>
void utf16(){_setmode(fileno(stdout),_O_U16TEXT);wprintf(L"\xfeff");}
int main() {
    utf16();
   
    wchar_t *WishingYouaveryHappyandColorfullHoli =
    L"\U0001f31f。\u2764。\U0001f609。\U0001f340\r"
    L"\r"
    L"。\u2728 。\U0001f389。\U0001f31f\r"
    L"\r"
    L"\u2728。\|/。\U0001f4ab\r"
    L"\r"
    L"Wishing you a very Happy and Colorfull Holi\r"
    L"\r"
    L"\U0001f378   \U0001f37b   \U0001f37e\r"
    L"\r"
    L"\U0001f31f。/|\。\U0001f48e\r"
    L"\r"
    L"。\U0001f340。 \U0001f389。\U0001f389。\r"
    L"\r"
    L"\U0001f31f。\U0001f4ab。\U0001f609 \U0001f4a5\r";
    wprintf(WishingYouaveryHappyandColorfullHoli);
   
    return 0;
}

Now run it on....https://code.sololearn.com/cb0LUV0F3kcS
See this Interesting result....and please like and comment if you like this!!
Thank you!! and Happy Holi.

Don't put your Life on Hold waiting for the perfect moment
If we wait until the time is right, we might wait forever!
Take a leap of Faith and Just do it Now!😇
I have created a Leap Finder in which you have to put the year and it will give you result whether it is Leap Year or not. Try this!


#include <iostream>
using namespace std;
/* Created by Harsh */
// Leap Year //
void leap(int x)
{
if((x%4==0&&x%100!=0)||(x%400==0))
{
cout << x <<"\nis a Leap Year";
}
else {
cout << x << "\nnot a Leap Year";
}
}
int main()
{
int a;
cin>>a;
leap(a);
return 0;
}

Note: Enter the Year and Submit it.
Please Subscribe me ...If you Like my Projects . It will be great Pleasure for me 😊 and I will come with more Interesting Projects for upcoming Days.
Thank You.
Hii ..! This time I come with another small project😊 . I have created a Box Creator in which you have to put your choice and that will create boxes for you upto infinite digits ...so check this and see the result⍗



#include <iostream>
using namespace std;
int main()
{
int  x, y;
char name[50];
cout << "Enter your Name:" << endl;
cin>>name;
cout << "Enter the no of lines:" << endl;
cin>>x;
if(x<=0)
{
cout << "Enter the Valid value" << endl;
}
else {
cout << " ***************" << endl;
}
for(y=0; y<=x; y++)
{
cout << " |             |" << endl;
}
cout << " ***************" <<"\nHey!! see the magic\n" << name << endl;
return 0;
}

Run it on this ..........https://code.sololearn.com/cTqsMpeJl2AE
Follow these steps to submit your choice
1. Enter your Name
2. Enter your choice and submit the result.
Note: Add your name first and enter your choice in new line.

Hii there!!!
I come again with a wonderfull project , this time I have created a Password Generator
from this coding ... I can give you infinite digits of passwords or how many digits of password you want . Simply, you have to enter your choice and get your password ready⇢
// Password Generator #created by h@rsh //
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
static const char alphnum[] = "0123456789" "!@#$%^&*" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz";
int strLen= sizeof(alphnum)-1;
char GenRand()
{
return alphnum[rand()%strLen];
}
int main()
{
int x, y=0, i=0, name;
srand(time(0));
cout << "Enter the Length of Password required:" << endl;
cin>>x;
cout << x << endl;
cout << "Your Password is:";
N:
char C;
string D;
for(int z=0; z<x; z++)
{
C=GenRand();
D+=C;
if(isdigit(C))
{
y++;
}
if(C=='!' || C=='@' || C=='$'||C=='%' || C=='^' || C=='&' || C=='*' || C=='#')
{
i++;
}
}
if(x>2 && (i==0 || y==0))
{
goto N;
}
cout << D;
cout << endl << endl<< "Password generate successfully!" << "\nCreated by H@rsh";
return 0;
}
Now go and run it using the link given below....https://code.sololearn.com/czlkc8LQgsJh
Enter your choice and get your password.
Th@nk You!
// Hi Guys! //
/*  I have created a Simple Calculator >> see this interesting calculator and calculate your mathematical terms here! */
// Upvote and Comment //
#include <iostream>
using namespace std;
int main()
{
char op;
float num1, num2, result;
cout << "Enter the Operator +(Add) or -(substract) or *(Multiply) or /:(divide)\n"; // Choose only one Operator from this only at one time //
cin>>op;
cout << "Enter the First No:" << endl;
cin>>num1;
cout << "Enter the Second No:" << endl;
cin>>num2;
switch(op)
{
case '+':
cout << "Result:";
cout <<num1+num2<<"\nCreated by H@rsh"<< endl;
break;
case '-':
cout << "Result:";
cout << num1-num2<<"\nCreated by H@rsh"<< endl;
break;
case '*':
cout << "Result:";
cout << num1*num2<<"\nCreated by H@rsh"<< endl;
break;
case '/':
cout << "Result:";
cout << num1/num2<<"\nCreated by H@rsh"<< endl;
break;
default:
// If the Operator other than +,-,*,/, Error Input //
cout << "Error Input Operator" << endl;
break;
}
return 0;
}
 follow this  Instructions
1. first Input the Operator (+or-or*or/) in Submit Multiples
2. Enter the First no and go in new line
3. Enter the Second no
4. Click on the submit button and see the Result.
Now Run it on the Link given below...https://code.sololearn.com/cOUc7lkU93tS


Hey guys!! I have created a small Coding project on Valentine's day Special...
It's my first post on my website , so please upvote me .
Because a day of love=a day of coding!♥️

Here is the source code

#include <iostream>
using namespace std;
// Created. by Harsh //
class myClass
{
int a;
char b;
public:
myClass()
{
cout << "***************************"<<endl;
cout << "*                         *"<<endl;
cout << "*                         *"<<endl;
cout << "* VALINTINE'S             *"<<endl;        
cout << "*                         *"<<endl;
cout << "*                         *"<<endl;
cout << "***************************"<<endl;
cout << "             *"<<endl;
cout << "             *"<<endl;
cout << "             *"<<endl;
cout << "             *"<<endl;
cout << "             *"<<endl;
cout << "             *"<<endl;
cout << "****************************"<<endl;
cout << "*                          *"<<endl;
cout << "*                          *"<<endl;
cout << "*        DAY               *"<<endl;
cout << "*                          *"<<endl;
cout << "*                          *"<<endl;
cout << "****************************"<<endl;
}
};
int main()
{
myClass T[3];
return 0;
You can run it on by using the link given below
Run it and see the Interesting result 😊
It's very exciting ...and don't forget to upvote me.https://code.sololearn.com/cCDekWQQSidL/?ref=app

Contact Me

Contact With Me

Contact Me

  • 852201 Saharsa
  • 8210947237
  • info@domain.com
  • www.yourinfo.com