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
'use strict'; | |
class FlattenService { | |
constructor() {} | |
flattenArray(arrayToBeFlattened, flatArray) { | |
for (let item of arrayToBeFlattened) { | |
if (Array.isArray(item)) { | |
this.flattenArray(item, flatArray); | |
} |
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
Set-WindowsExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
#cinst malwarebytes | |
#cinst nodejs | |
#cinst 7zip | |
cinst notepadplusplus | |
#cinst googlechrome | |
cinst adobereader | |
cinst git -params '"/GitAndUnixToolsOnPath"' |