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
| package hdr; | |
| import org.springframework.util.Assert; | |
| /* | |
| CreatePalindrome | |
| Replace all question marks in a given string to obtain a palindrome. | |
| Task description |
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 oneSecound = 1000 | |
| var globalDelay = 0 | |
| function executeWithSleepBegin(delay, func, description) { | |
| globalDelay += delay | |
| setTimeout(() => { | |
| func.call() | |
| console.log(description); | |
| }, globalDelay); |
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
| { | |
| "extensions": [ | |
| "CoenraadS.bracket-pair-colorizer", | |
| "EditorConfig.EditorConfig", | |
| "PeterJausovec.vscode-docker", | |
| "Zignd.html-css-class-completion", | |
| "christian-kohler.path-intellisense", | |
| "eg2.tslint", | |
| "golf1052.code-sync", | |
| "rbbit.typescript-hero", |
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
| #to run - exec bash | |
| #OS alias | |
| alias cd..='cd ..' | |
| alias o='xdg-open .' | |
| #docker alias | |
| alias dc='docker container' | |
| alias dcl='docker container ls' | |
| alias di='docker image' |