This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0. level 0 | |
0.1. HTML and CSS | |
0.1.1. htmlacademy.ru | |
0.1.2. codecademy.ru (HTML and CSS course) | |
0.1.3. project "Make a Website" on codecademy.com | |
0.1.4. take any psd template and try to implement them with knowledge gain. | |
0.2. Javascript | |
0.2.1. codecademy.com (javascript) | |
0.2.2. codeschool.com (javascript road trip and best practices) | |
0.2.3. learn.javascript.ru (going deeper in js) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Battery { | |
/** | |
* Battery constructor. | |
* @param int $procent | |
*/ | |
public function __construct(int $procent) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let dataSet = new Set(); | |
for(let i=1; i<=6; i++){ | |
for(let j=1; j<=6; j++){ | |
if(i+j>=8){ | |
dataSet.add([i,j]); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isPolyndrom(str){ | |
const head = str.slice(0, Math.floor(str.length / 2)); | |
const tail = Array.from(str.slice(Math.round(-str.length / 2), str.length)).reverse().join(""); | |
console.log(head, tail); | |
return head === tail; | |
} | |
console.log(isPolyndrom("avva")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const http = require('http'); | |
const imgmin = require('imagemin-webp'); | |
const r = require('request'); | |
const imgPath = 'http://cdn.pixabay.com/photo/2017/05/13/23/05/img-src-x-2310895_960_720.png'; | |
const server = http.createServer((req, res) => { | |
const request = r.defaults({ encoding: null }); | |
request.get(imgPath, async (err, iRes, body) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global deps: | |
- qmake | |
- gcc | |
- nodev14 + grunt | |
- python2 | |
``` | |
$> npm instal -g grunt http-server | |
#build for required deps (unknown for me) according to https://helpcenter.onlyoffice.com/ru/installation/docs-community-install-docker.aspx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id | url | |
---|---|---|
1 | rosim.gov.ru | |
3 | morflot.gov.ru | |
4 | minpromtorg.gov.ru | |
5 | favt.gov.ru | |
6 | rospatent.gov.ru | |
7 | regulation.gov.ru | |
8 | fssp.gov.ru | |
9 | roszdravnadzor.gov.ru | |
10 | roskachestvo.gov.ru |