Entradas

Delete folder permision powershell

Imagen
Open powershell as administrator takeown /f "E:\path\to\my\folder\" /r /d y icacls "E:\path\to\my\folder\" /grant myusername:F /t /q takeown /f folder_name /r /d y icacls folder_name /grant username_or_usergroup:F /t /q https://www.faqforge.com/windows/take-ownership-of-a-file-or-folder-by-command-in-windows/ takeown /f  folder_name icacls  folder_name grant  username_or_usergroup:F /t /q

NodeJS version manager for windows

    choco install nodist nodist nodist + 14 nodist global 14   nodist npm global match  

Reload path after installations (command doesnt recognized)

Imagen
    afeter install some program like java and do you want to use it  $env :Path = [System.Environment]::GetEnvironmentVariable( "Path" , "Machine" ) + ";" + [System.Environment]::GetEnvironmentVariable( "Path" , "User" )         PS E:\dev game\covid19-argentina\metabase> java -V java : El término 'java' no se reconoce como nombre de un cmdlet, función, archivo de script o programa ejecutable. Compruebe si escribió correctamente el nombre o, si incluyó una ruta de acceso, compruebe que dicha ruta es correcta e inténtelo de nuevo. En línea: 1 Carácter: 1 + java -V + ~~~~ + CategoryInfo : ObjectNotFound: (java:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException PS E:\dev game\covid19-argentina\metabase> $env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path&quo

Windows 10 context menu (right click) visual studio code

https://thisdavej.com/right-click-on-windows-folder-and-open-with-visual-studio-code/ vsCodeOpenFolder.reg   Windows Registry Editor Version 5.00 ; Open files [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] @="Edit with VS Code" "Icon"="C:\\Program Files\\Microsoft VS Code\\Code.exe,0" [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] @="\"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%1\"" ; This will make it appear when you right click ON a folder ; The "Icon" line can be removed if you don't want the icon to appear [HKEY_CLASSES_ROOT\Directory\shell\vscode] @="Open Folder as VS Code Project" "Icon"="\"C:\\Program Files\\Microsoft VS Code\\Code.exe\",0" [HKEY_CLASSES_ROOT\Directory\shell\vscode\command] @="\"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%1\"" ; This will make it appear when you right click INSIDE a fol

Simple PySide2 options bar

Intelligent Machinery, A Heretical Theory español

https://uberty.org/wp-content/uploads/2015/02/intelligent-machinery-a-heretical-theory.pdf Intelligent Machinery, A Heretical Theory ‘You cannot make a machine to think for you.’ This is a commonplace that is usually accepted without question. It will be the purpose of this paper to question it. Most machinery developed for commercial purposes is intended to carry out some very speciWc job, and to carry it out with certainty and considerable speed. Very often it does the same series of operations over and over again without any variety. This fact about the actual machinery available is a powerful argument to many in favour of the slogan quoted above. To a mathematical logician this argument is not available, for it has been shown that there are machines theoretically possible which will do something very close to thinking. They will, for instance, test the validity of a formal proof in the system of Principia Mathematica, or even tell of a formula of that system whether it is provable

Windows Terminal Preview - Windows 10 - Google Cloud Shell

takeown /f folder_name /r /d y icacls folder_name /grant username_or_usergroup:F /t /q ssh -i <path to private key>id_rsa <user name on the remote host>@<remote host>