Hi, my name is Milton Kabir
I am a Full Stack Web Developer

insufficient???

About Me

profile picture

I am a MERN stack developer. I started learning from freecodecamp and earned their certifications. Waiting to join as a MERN stack developer. Preferably as back-end developer.

Projects

Issue-Tracker

I have completed this project with CRUD. I have written tests with Chai to ensure your applications work the way user expect them to. 1.User can send a POST request to /api/issues/{projectname} 2. User can send a GET request to /api/issues/{projectname} for an array of all issues for that specific projectname, with all the fields present for each issue. 3.User can send a PUT request to /api/issues/{projectname} with an _id and one or more fields to update. 4.User can send a DELETE request to /api/issues/{projectname} with an _id to delete an issue.

See LiveSource Code
Issue-Tracker

Sudoku-Solver

I have written tests with Chai to ensure your applications work the way user expect them to. 1. User can POST /api/solve with form data containing puzzle which will be a string containing a combination of numbers (1-9) and periods . to represent empty spaces. The returned object will contain a solution property with the solved puzzle. 2.The return value from the POST to /api/check will be an object containing a valid property, which is true if the number may be placed at the provided coordinate and false if the number may not.

See LiveSource Code
Sudoku-Solver

Personal-Library

Using Chai, I have written tests that describe my program's requirements and see if my program meets them. Such as: 1. User can send a POST request to /api/books with title as part of the form data to add a book. 2.User can send a GET request to /api/books and receive a JSON response representing all the books. 3. User can send a DELETE request to /api/books/{_id} to delete a book from the collection.

See LiveSource Code
Personal-Library

Visualize Data with a Choropleth Map

I imported some JSON data with geographical and educational data about counties in the United States and use d3 to render a Choropleth Map, by converting topojson into geojson and then using the geoPath() method to draw paths.

See LiveSource Code
Visualize Data with a Choropleth Map