-->

About Me

Full Stack Web Developer || Machine Learning Enthusiast

Hi, This is Jubair Ahmed Junjun. I'm a Full Stack Web Developer and Machine Learning Enthusiast. I have 3+ Years of experience in Full Stack Web Development.

Call +8801854992594
Email jubair.ahmed.junjun@gmail.com
Website https://jubairahmedjunjun.blogspot.com/
Download CV Hire Me

My Skill

I'm Very much skilled in Web design and Development. My Top Skills are PHP, Laravel, JavaScript, HTML5, CSS3, Bootstrap, ReactJs and MySQL. I have 3+ years of experience in web development. Even I'm Machine Learning Enthusiast

I'm also Very much Skilled in Digital Marketing. In digital Marketing platform I'm expert in Lead Generation, Content Writing, Social Media Marketing, Social Media Management and SEO

PHP
Laravel
HTML5 CSS3 & Boostrap
JavaScript
React JS
Python || Machine Learning
Digital Marketing

My Services

What i offer

Web Development

Perfect business means perfect website and application. So, I'm developing websites and web applications for your business success.

Website Design

I'm expert in responsive website design. User friendly and device friendly website is very important for a business. You can provide your services and products through a website.

SEO

I have SEO expertise will improve your website visibility organically on search engines and increase your page rank to keep you ahead of your competitors.

Social Media Marketing

Our Marketing Process and Systems will help your business to grow and will increase your brand awarness and increase your sales.

Social Media Management

Social Media Management is one of the best thing for a business. So, an expert can manage your social media and anaylze your social performances.

Technical Content Writing

Creating high quality of contents will help your business to attract your customer and clients. Even You can get more response for your business.

100

Happy Clients

150

Projects Done

0

Awards Won

160

Cups Tea

My Experience

My Recent Experiences
Apr 2019 - Present
Web Developer

I have worked with Programmers Media as a Web Developer. Even I have learnt many things. I also learnt how to work on under pressure. Always tried to solve any problem easily. That was great experience.

May 2020 - Present
Technical Content Writer

I'm also making tutorial with a Trainer on YouTube Chanel named "Jubair Ahmed Junjun". This is based on Programmin I'm Working with them as a Trainer. Really this is also great experience.

May 2019 - December 2020
ICT Trainer

I'm also working with a Institution named "BJJSFMC".I'm Working with them as a Trainer. Really this is also great experience.

December 2020 - Present
Social Media Manager

At Present I'm also working with "Murtha and Burke Marketing LLC" as a Social Media Manager.I'm Working with them as a Full Time Employee.

My Blog

Latest blog

 Sort notes and acronyms of some words!!











 

HTTP request in details









 Install Tailwind CSS with react js




You must need to follow some steps


Step1: Create your own project in react. and then go to the project directory

      - npx create-react-app my-project

      - cd my-project

Step2: Install Tailwind CSS follow the commands

          First of all install Tailwind. and its peer dependencies via npm. and then generate both                            `tailwind.config.js` and `postcss.config.js`.

       - npm install -D tailwindcss postcss autoprefixer

       - npx tailwindcss init -p


Step3: Configure the Template Path

Add the paths to all of your template files in your `tailwind.config.js` file.

            content: [

                      "./src/**/*.{js,jsx,ts,tsx}",

                         ],


Step4: Tailwin directives add in `./src/index.css` file

                 @tailwind base;

                 @tailwind components;

                 @tailwind utilities;

Step5: Build the process with `npm run start`

Step6: Start your project with Tailwind CSS

export default function App() {

  return (

    <h1 className="text-5xl  underline">

      Hello, Elvi!

    </h1>

  )

}

 ER Diagram to SQL Representation





















Consider the following relations:

Doctor(SSN, FirstName, LastName, Specialty, YearsOfExperience, PhoneNum)

Patient(SSN, FirstName, LastName, Address, DOB, PrimaryDoctor_SSN)

Medicine(TradeName, UnitPrice, GenericFlag)

Prescription(Id, Date, Doctor_SSN, Patient_SSN)

Prescription_Medicine(Id,Prescription_Id, TradeName, NumOfUnits)


  • The Doctor relation has attributes Social Security Number (SSN), first and last names,specialty, the number of experience years, and phone number.
  • The Patient relation has attributes SSN, first and last names, address, date of birth(DOB), and the SSN of the patientʼs primary doctor.
  •  The Medicine relation has attributes of trade name, unit price, and whether or not themedicine is generic (True or False).
  • The Prescription relation has attributed to the prescription id, the date on which the prescription is written, the SSN of the doctor who wrote the prescription, and the SSN of the patient to whom the prescription is written.
  • The Prescription_Medicine relation stores the medicines written in each prescription along with their quantities (number of units).

1. Write SQL queries to create the above tables and also show the relationship for the above

entities.

The underline attribute is the primary key and the foreign key.

2. Write the SQL expression for the following query

a. Write SQL query to show the trade name of generic medicine with unit

price less than $50.

b. Write SQL query to show the first and last name of patients whose primary

doctor named ʻJohn Smithʼ.

c. Write the SSN of patients who have ʻAspirinʼ and ʻVitaminʼ trade names in

one prescription.

d. Write a SQL query to show all doctors information whose experience is

greater than 5 years and specialty is a neurologist.



Answer To the Question 01

CREATE DATABASE dbmslab_db;

CREATE TABLE doctor_tbl(

   doctor_ssn INT NOT NULL AUTO_INCREMENT,

   first_name VARCHAR(100) NOT NULL,

   last_name VARCHAR(100) NOT NULL,

   speciality VARCHAR(100) NOT NULL,

   yearsof_experience VARCHAR(40) NOT NULL,

   PhoneNum VARCHAR(40) NOT NULL,

   PRIMARY KEY(doctor_ssn)

);

CREATE TABLE patient_tbl(

   patient_ssn INT NOT NULL AUTO_INCREMENT,

   first_name VARCHAR(100) NOT NULL,

   last_name VARCHAR(100) NOT NULL,

   address VARCHAR(100) NOT NULL,

   DOB DATE NOT NULL,

   doctor_ssn INT(10),

   PRIMARY KEY(patient_ssn),

   FOREIGN KEY (doctor_ssn) REFERENCES doctor_tbl (doctor_ssn)

);

CREATE TABLE medicine_tbl(

   trade_name VARCHAR(100) NOT NULL,

   unit_price VARCHAR(100) NOT NULL,

   generic_flag VARCHAR(100) NOT NULL,

   PRIMARY KEY(trade_name)

);

CREATE TABLE prescription_tbl(

   prescription_id INT NOT NULL AUTO_INCREMENT,

   prescription_date DATE NOT NULL,

   doctor_ssn INT,

   patient_ssn INT,

   PRIMARY KEY(prescription_id),

   FOREIGN KEY doctor_ssn REFERENCES doctor_tbl(doctor_ssn),

   FOREIGN KEY patient_ssn REFERENCES patient_tbl(patient_ssn) 

);

CREATE TABLE prescription_medicine_tbl(

   prescription_medicine_id INT NOT NULL AUTO_INCREMENT,

   prescription_id INT, 

   trade_name VARCHAR(100) NOT NULL,

   num_of_units VARCHAR(100) NOT NULL,

   PRIMARY KEY(prescription_medicine_id),

   FOREIGN KEY(prescription_id) REFERENCES prescription_tbl(prescription_id), 

   FOREIGN KEY(trade_name) REFERENCES medicine_tbl(trade_name)

);

INSERT INTO medicine_tbl(trade_name, unit_price,generic_flag) VALUES ("square","15$", "safe"), ("ibne sina","20$", "effective"), ("Incepta","30$", "high quality"), ("Opsonin ","50$", "strength"), ("Renata","60$", "safe")

INSERT INTO prescription_tbl(prescription_date,doctor_ssn,patient_ssn) VALUES ("2022-2-6","1", "1"), ("2022-2-6","3", "2"), ("2022-2-6","5", "3"), ("2022-2-6","2", "4"), ("2022-2-6","4", "5")

INSERT INTO prescription_medicine_tbl(prescription_id,trade_name,num_of_units) VALUES ("1","square", "5"), ("2","ibne sina", "10"), ("3","Opsonin", "8"), ("4","square", "9"), ("5","ibne sina", "5")




Answer To question no 02


a. 

SELECT* FROM medicine_tbl WHERE unit_price <"50$";

b.

SELECT patient_tbl.first_name, patient_tbl.last_name

FROM patient_tbl

INNER JOIN doctor_tbl ON patient_tbl.doctor_ssn = doctor_tbl.doctor_ssn AND doctor_tbl.first_name = "jubair";

c.

SELECT prescription_tbl.patient_ssn FROM prescription_tbl INNER JOIN prescription_medicine_tbl ON prescription_tbl.prescription_id = prescription_medicine_tbl.prescription_id WHERE prescription_medicine_tbl.trade_name = 'square' OR prescription_medicine_tbl.trade_name = 'ibne sina';

d.

SELECT* FROM doctor_tbl WHERE yearsof_experience>5 AND speciality="neurologist";

 Relational Design 



Contact Me

Contact With Me

Contact me for a free consultation. Let's Work Together.

  • Chattogram, Bangladesh
  • +8801854992594
  • jubair.ahmed.junjun@gmail.com
  • www.jubairahmedjunjun.blogspot.com//