rsschool-cv

Alexey Kozhanov

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

git commit -a -m "comment"

HTML5

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title>Page example</title>
  <link rel="stylesheet" href="css/styles.css?v=1.0">
 </head>
 <body>
  <p>Page on HTML5</p>
 </body>
</html>

CSS3

* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

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