Skip to content
View huzefamehidpurwala's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro
Block or Report

Block or report huzefamehidpurwala

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
huzefamehidpurwala/README.md
https://huzefa.mehidpurwala.xyz/assets/img/1.png

Hello Folks!πŸ‘‹

I'm Huzefa, a Software Engineer at Prakash Software Solutions Pvt. Ltd. pursued BCAπŸ‘¨β€πŸ’» stepped into IT world in 2016 πŸš€ by working as a supporter with a Network Engineer in Indore.


My Skill Set

C++ PHP Linux Python Git C Java Raspberry Pi Docker XAMPP C# MySQL AWS JavaScript Bash CSS3 HTML5 Bootstrap

Connect with me


Github Stats





Pinned

  1. express-server-basic express-server-basic Public

    Forked from davidbombal/express-server-basic

    JavaScript

  2. Advanced Strong Password Generator Advanced Strong Password Generator
    1
    from sys import argv                                    # to take length of the password from the user from the cli command itself
    2
    from random import choice                               # to select random elements from an iterable
    3
    from string import ascii_letters, punctuation, digits   # string of characters, special_chars and digits
    4
    # from os import system
    5
    
                  
  3. This Program sorts a string with low... This Program sorts a string with lower-case letters before upper-case letter before numerical digits before other special characters
    1
    # github -> https://github.com/huzefamehidpurwala/Sorting-String-Python.git
    2
    
                  
    3
    s = input()        # the alphanumeric string to be sorted
    4
    
                  
    5
    # defining empty lists to bifercate every index of the string respectively
  4. NumberGuessing.java NumberGuessing.java
    1
    import javax.swing.*;
    2
    
                  
    3
    public class NumberGuessing {
    4
        public static void main(String[] args) {
    5
            int computeNumber = (int) (Math.random() * 100 + 1);
  5. ATMinterface.java ATMinterface.java
    1
    import java.util.Scanner;
    2
    
                  
    3
    class BankAccount {
    4
        int balance;
    5
        int prevTransaction;
  6. python-keylogger python-keylogger Public

    Forked from davidbombal/python-keylogger

    Python