Mehmet Civril profile picture

Hello, I'm

Mehmet Civril

Full-Stack Developer

My LinkedIn profile My Github profile

Get To Know More

About Me

Experience icon

Experience

? years
Full Stack Developer

Education icon

Education

B.Sc. Bachelors Degree and
M.Sc. Masters Degree in Biology

With a background in medical research and a Master’s in Biology, I developed a strong foundation in analytical thinking, problem-solving, and precision. During my Masters and Ph.D. studies and over three years of work in a university hospital lab, I began exploring software development and eventually transitioned into tech.


My five years in scientific research have equipped me with a methodical approach and attention to detail, which now support my work as a developer. I aim to create efficient, thoughtful solutions while bringing a unique perspective from the scientific field.

Arrow icon

Explore My

Experience

Frontend Development

Experience icon

HTML

Experienced

Experience icon

CSS

Experienced

Experience icon

Tailwind

Basic

Experience icon

JavaScript

Intermediate

Experience icon

TypeScript

Basic

Experience icon

React

Basic

Backend Development

Experience icon

PostgreSQL

Basic

Experience icon

Node JS

Basic

Experience icon

Express JS

Basic

Experience icon

Next JS

Basic

Experience icon

Nest JS

Basic

Experience icon

Git

Basic

Arrow icon

Browse My Recent

Projects

Project 1

Project One

Project 2

Project Two

Project 3

Project Three

Arrow icon

Code Example

  function checkUserExists(username) {
  const users = [
    { id: 1, username: 'alice', email: 'alice@example.com' },
    { id: 2, username: 'bob', email: 'bob@example.com' },
    { id: 3, username: 'charlie', email: 'charlie@example.com' }
  ];

  // Convert the input username to lowercase for case-insensitive comparison
  const lowerCaseUsername = username.toLowerCase();

  // Iterate through the users array to find a match
  for (let i = 0; i < users.length; i++) {
    if (users[i].username.toLowerCase() === lowerCaseUsername) {
      return true; // User found
    }
  }

  return false; // User not found
}

Get in Touch

Contact Me