Skip to main content

Posts

Showing posts from April, 2024

BSMS Project Development in Next js Framework

 BSMS system is sms campaign management system. That broadcast multiple sms campaigns of different vendors at the same time. This project will be develop under different phases. Phase1.  Project development environment setup. Tool installation into the pc Phase 2. Fresh next js project installation with fresh boiler plate. Phase 3. Make folder structure for the admin panel pages. Phase 2 implementation Project is installed with the following command --npx create-next-app@latest After hitting this command, answer few questions to setup project. Phase 3 implementation Folder structure Inside src/app router the folder structure will divided into two parts 1. Admin 2. Client 1. For Admin Admin folder structure must be like so 1. Authentication 1.1 admin/auth/login/page.tsx 1.2 admin/auth/forget-password/pages.tsx 1.3 admin/auth/change-password/pages.tsx 1.4 admin/auth/logout/page.tsx 2. Dashboard 2.1 admin/dashboard/page.tsx show all sms stats, counters 3. Networks 3.1 admin/netwo...

English words and their meanings

  enthusiastic :  پرجوش optimism:  رجائیت hopefulness and confidence about the future or the success of something. chaos:  افراتفری tempted:  آزمائش literally:  لفظی literally means  "actually,"  and we use it when we want others to know we're serious. deviations:  انحرافات   "a significant deviation from the average value" doing something that is different from what people consider to be normal or acceptable self-esteem:  خود اعتمادی    insanity:  جنون nuisance:  پریشانی   Excuse me! Madam take a single step to go away from me and make room so i could pass through it. thankyou. pitfalls:  نقصانات intimacy:  قربت illusion: :  برم false  impression, misconception, he had no illusions about the trouble she was in. you could never get intimacy, if you never tell about your good and bad. If you want intimacy than you have to show of your vulnerabilities to person, from whom you want intimacy....

Skills polish plan for next 1 month March-21-2025

These are the following skills i need to learn, understand and make example/practical to show case on my portfolio perspective.   1. Docker Containerization. 2. Deploying solutions using CI/CD strategies.  3. Git/GitHub. 4. Object Oriented Programming in PHP. 5. Advanced PHP. 6. Updates in PHP 8. 7. Apache server configurations using httpd.conf or php.ini file 8. Apache configuration using php code

How react native application runs ?

 During development, you run your react native application using the development server provided by Metro Bundler. The development server serves the JavaScript bundle to the device or emulator. We have three phases in the whole process of running/bundling the application 1. Development server When you run "npx react-native start",  It start the "Metro Bundler" which serves the JavaScript bundle. 2. Bundling and Packaging When you run "npx react-native run-android" It make build of your react native application and install it in the device and emulator. 3. Code Execution As you make changes to your code and save it. Metro Bundler detect the changes and reload the app in the device or emulator automatically also  known as Hot Reloading. 4. Debugging You can debug your code using the react native debug tools like ReactDevTools or Flipper.  What is Metro Bundler? Metro Bundler is a JavaScript bundler that is primarily use in react native development. It serve...