(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| @echo off | |
| set WINRM_EXEC=call %SYSTEMROOT%\System32\winrm | |
| %WINRM_EXEC% quickconfig -q | |
| %WINRM_EXEC% set winrm/config/winrs @{MaxMemoryPerShellMB="300"} | |
| %WINRM_EXEC% set winrm/config @{MaxTimeoutms="1800000"} | |
| %WINRM_EXEC% set winrm/config/client/auth @{Basic="true"} | |
| %WINRM_EXEC% set winrm/config/service @{AllowUnencrypted="true"} | |
| %WINRM_EXEC% set winrm/config/service/auth @{Basic="true"} |
| Vagrant.configure("2") do |config| | |
| # Other box urls: https://www.bram.us/2014/09/24/modern-ie-vagrant-boxes | |
| config.vm.box = "modern.ie/win7-ie11" | |
| config.vm.box_url = 'http://aka.ms/vagrant-win7-ie11' | |
| # big timeout since windows boot is very slow | |
| config.vm.boot_timeout = 500 | |
| # Port forward WinRM (Windows Remote Management) and RDP |
| # File: logging2.py | |
| # Last Modified: 2016.10.13 /coding: utf-8 | |
| # Author: Landon Bouma (landonb @ retrosoft . com) | |
| # Project Pages: https://github.com/landonb/* | |
| # Summary: Python logging wrapper. | |
| # Copyright: © 2008, 2015-2016 Landon Bouma. | |
| # vim:tw=0:ts=4:sw=4:noet | |
| # License: GPLv3. See LICENSE.txt. | |
| # ------------------------------------------------------------------- | |
| # Summary: Wrap Python logging facility: |