You are here |
janikvonrotz.ch | ||
| | | |
akr.am
|
|
| | | | An introduction to PowerShell for Python developers. | |
| | | |
willhaley.com
|
|
| | | | This is my script to perform an unattended silent install of Cygwin on Windows without use of the wizard. Note that you can pre-configure the packages to install with --packages. mkdir "%PROGRAMFILES%\cygwinx86" REM Powershell 2 powershell -Command "(New-Object Net.WebClient).DownloadFile('https://cygwin.com/setup-x86.exe', '%PROGRAMFILES%\cygwinx86\setup-x86.exe')" REM Powershell 3 REM powershell -Command "Invoke-WebRequest https://cygwin.com/setup-x86.exe -OutFile setup-x86.exe" "%PROGRAMFILES%\cygwinx86\setup-x86.exe" ^ --site http://cygwin.mirror.constant.com ^ --no-shortcuts ^ --no-desktop ^ --quiet-mode ^ --root "%PROGRAMFILES%\cygwinx86\cygwin" ^ --arch x86 ^ --local-package-dir "%PROGRAMFILES%\cygwinx86\cygwin-packages" ^ --verbose ^ --prune-install ^ --packages openssh,git,rsync,nano You could take that script above, host it, then make a one-liner like this. | |
| | | |
www.ivobeerens.nl
|
|
| | | | All about End User Computing, AVD, Windows 365 and Infrastructure as Code (IaC) | |
| | | |
www.softdevtube.com
|
|
| | Programming history is filled with bugs that turned out to be features and limitations that pushed developers to make even more interesting products. We'll journey through code that was so 'bad' it was actually good. Along the way we'll look at the important role failure plays in learning. Then we'll tame our inner perfectionists and |