prettier --single-quote --trailing-comma none --print-width 120 --no-semi --write
This file contains 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
HR Process / | |
* Why is the vacancy open? Is this a new position or has someone previously held it? | |
* What's the main problem company is trying to solve by filling this position | |
* What are the recruitment steps? | |
* What’s the documental employment basis? How do we manage the docs? | |
* How do we handle payments? Do I send invoices? | |
Process / | |
* What are the day-to-day processes? | |
* How do you plan new tasks? How do you estimate them? What about deadlines management? |
This file contains 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
Show hidden characters
{ | |
"compilerOptions": { | |
"baseUrl": ".", | |
"jsx": "react", | |
"paths": { | |
"Pages/*": ["./src/pages/*"], | |
"Components/*": ["./src/components/*"], | |
"Utils/*": ["./src/utils/*"], | |
"Services/*": ["./src/services/*"] | |
} |
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for XDebug", | |
"type": "php", | |
"request": "launch", | |
"port": 9000, | |
"pathMappings": { | |
"/var/www/html": "${workspaceFolder}/lumen" |
This file contains 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
[user] | |
name = Vladislav Samatov | |
email = <place email> | |
[core] | |
filemode = false | |
[color] | |
ui = true | |
This file contains 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 | |
$result = []; | |
foreach ($array as $item) { | |
$letter = mb_strtoupper(mb_substr($item, 0, 1)); | |
$result[$letter][] = $item; | |
} | |
?> |
This file contains 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 | |
function declension($num, $words) | |
{ | |
$num = $num % 100; | |
if ($num > 19) { | |
$num = $num % 10; | |
} | |
switch ($num) { | |
case 1: { | |
return($words[0]); |