Alexey Kozhanov

Alexey's avatar

Contacts

About me

I am an active and sociable person. I enjoy learning and explore something new. For the near future, my goal is to study JavaScript more deeply.

Technical skills

  • Git
  • HTML5
  • CSS3
  • Express
  • Mongoose

Сode examples

HTML5
            <!doctype html>
            <html lang="en">
             <head>
              <meta charset="utf-8">
              <meta http-equiv="x-ua-compatible" content="ie=edge">
              <title>Page example</title>
              <link rel="stylesheet" href="css/styles.css?v=1.0">
             </head>
             <body>
              <p>Page on HTML5</p>
             </body>
            </html>
          
Express
            const express = require('express')
            const app = express()
            const port = 3000

            app.get('/', (req, res) => {
              res.send('Hello World!')
            })

            app.listen(port, () => {
              console.log(`Example app listening at http://localhost:${port}`)
            })  
          
Mongoose
            import mongoose from 'mongoose';
            const { Schema } = mongoose;
          
            const blogSchema = new Schema({
              title:  String,
              author: String,
              body:   String,
              comments: [{ body: String, date: Date }],
              date: { type: Date, default: Date.now }
            });
          }) 
          

Work experience

Education

Bachelor of Informatics and computer engineering
Ryazan State Radio Engineering University named after V.F. Utkin
Graduation: 2019
Relevant Coursework: Operating Systems, Databases and Client-Server Applications, Web programming, Programming technologies, Algorithms and data structures

Languages

  • English: Pre-Intermediate