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.
git commit -a -m "comment"
<!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>
* {
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
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}`)
})
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 }
});
})
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