Skip to content
View mbparvezme's full-sized avatar

Organizations

@gosoftlab
Block or Report

Block or report mbparvezme

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
mbparvezme/README.md

Hi 👋, I'm M B Parvez

Stack Overflow reputation GitHub followers visitors

Google Certified UIUX Designer
Full-stack developer • AI/ML • Chatbot • API developer • Brand practitioner
Laravel • NextJS • SvelteKit || JS • PHP • Python

I build theUI.dev

M B Parvez

A platform for components, UI blocks, template,s and themes.
Actually, building a Sveltekit eco-system.



😎 All About Me

A new (.human) file was created on December 11, 1990, with the help of my parents, and I was named M B Parvez during the saving process. I live with my family in Bangladesh, where I enjoy watching movies and indulging in potatoes and cookies. In my free time (which isn't much!), I write some code. I don't know why these codes run sometimes!

Ever wonder how websites tick, how apps come to life, or how chat-GPT works? That's my playground!

Hello there! I'm M B Parvez, a full-stack developer fascinated by crafting intuitive experiences across websites and mobile apps. My journey began in 2011, evolving alongside technology's leaps and bounds. Today, I'm particularly enthralled by the potential of AI and ML - it's not just sci-fi robots, but tools to solve real-world problems like healthcare and sustainability.

But tech isn't just lines of code for me. I'm just as passionate about the human touch, designing interfaces that are a joy to use and visually stunning. From a simple button to a complex platform, I believe every digital touchpoint deserves thoughtful creativity.

Learning fuels my fire! I'm constantly seeking new challenges and skills, keeping my knowledge on the cutting edge. So, if you're looking for a tech partner who loves building user-centric solutions and pushing the boundaries of innovation, let's connect!

Career Journey

Starting my career in 2011 as an ASP .NET developer, I switched to PHP in 2013, becoming skilled in it. Since 2017, I've been exploring NodeJS. In 2016, I got into mobile app development, and by 2019, I was fascinated by Flutter, using it to create cool apps for Android and iOS. Now, I've started my new journey with AI/ML in 2023.

I'm called 'Rony,' but people use the cute name 'Ron.' You can also call me someone who makes websites, decides how they look, ensures they work well, and even explores AI/ML development. Or, you can give me any other job title the industry uses.


⌚ Now

  • 🟢 Contributing to theUI
  • 💖 Interested in AI/ML, Prompt engineering, Cloud System
  • ✋🏼 Available for remote work
  • 👷🏼 Looking to contribute to PHP, javascript, or Python-based open-source projects

🧬 My DNA

  • 👩🏿‍💼 I'm currently working at BRACNet Limited as a Software Team Lead and Consultant at BIPBY Digital
  • 🧑🏼‍💻 I use daily: .js or .ts, .jsx or .tsx, .php, .svelte
  • 🔥 I'm mostly active within the php and javascript community and on Linkedin
  • 🌱 Learning AI/ML and Prompt Engineering
  • 🚗 Reach me: https://www.mbparvez.me
  • 🎉 Fun fact I like potatoes 🥔 and 🍪 cookies more than anything

⚒️ Tools & Technologies

Technology, languages, tools, and other things I like working with.

FRONT-END
Frameworks Sveltekit, Flutter, NextJS, NuxtJS
Design Systems and Tools TailwindCSS, Bootstrap, Material Design
Tools & Applications HTML, CSS, Javascript, Typescript, Dart
BACK-END
Technology NodeJS, PHP, Python,
Frameworks/CMS Strapi, Laravel, Codeigniter, Wordpress
Database PostgreSQL, MariaDB/MySQl, Firebase, GraphQL, MongoDB
Platforms Vercel, Netlify, Digital Ocean, Linode, cPanel
TOOLS & APPLICATIONS
Code Management Github
Editor/IDE Visual Studio Code, PyCharm, Android Studio
Prototype Tool Figma, Pen, Paper



⚡ Github Stats

mbparvezme's Streak

mbparvezme's Stats

mbparvezme's Top Languages



linkedin    twitter    facebook    instagram    dev.to    medium.com    website

Pinned

  1. wordpress-custom-endpoint wordpress-custom-endpoint Public

    A free wordpress plugin with custom endpoints for wordpress blog. You can use React, Svelte or any other framework to retrieve posts and other contents.

    PHP 2

  2. mouse-out-from-window.js mouse-out-from-window.js
    1
    var warnings = ["First warning!! Do not try to leave or close the window.", "Last warning!! Do not try to leave or close the window.", "Sorry!! Your account locked."];
    2
    var i = 0;
    3
    window.addEventListener("mouseout", function(e) {
    4
        if (!e.relatedTarget || e.relatedTarget.nodeName == "HTML") {
    5
            i++;
  3. This code will check whether you cli... This code will check whether you clicked inside the target or not
    1
    var targetElem = document.querySelector("#sidebar");
    2
    window.addEventListener('click',function(e){
    3
      if( !targetElem.contains(e.target) && (!document.getElementById('navSwitch').contains(e.target))){
    4
        $(targetElem).removeClass('open')
    5
      }
  4. twitter_URL_Regex.php twitter_URL_Regex.php
    1
    $testUsername = "https://twitter.com/webdevronsocial";
    2
    $regEx = '/(?:https?:\/\/)?(?:www\.)?twitter\.com\/(?:#!\/)?@?([a-zA-Z0-9_]{1,15})/';
    3
    
    
    4
    if( preg_match( $regEx, $testUsername, $matches ) ){
    5
        /**
  5. Twitter_Username_Regex.php Twitter_Username_Regex.php
    1
    $testUsername = "webdevronsocial";
    2
    
    
    3
    $regEx = '/^@?([a-zA-Z0-9_]{1,15})$/';
    4
    
    
    5
    if( preg_match( $regEx, $testUsername ) ){