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
    
  
  
    
  | netsh int ipv4 show excludedportrange protocol=tcp | |
| netsh int ipv4 set dynamic tcp start=49152 num=16384 | 
  
    
      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
    
  
  
    
  | <!-- Wherever your head tag is located, add the new partial --> | |
| <head> | |
| {{ partial "google-fonts" . }} | |
| </head> | 
  
    
      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
    
  
  
    
  | <?php | |
| // PHP memory limit for this site | |
| define( 'WP_MEMORY_LIMIT', '128M' ); | |
| define( 'WP_MAX_MEMORY_LIMIT', '256M' ); // Increase admin-side memory limit. | |
| // Database | |
| define( 'WP_ALLOW_REPAIR', true ); // Allow WordPress to automatically repair your database. | |
| define( 'DO_NOT_UPGRADE_GLOBAL_TABLES', true ); // Don't make database upgrades on global tables (like users) | |
| // Explicitely setting url | 
  
    
      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
    
  
  
    
  | <configuration> | |
| <configSections> | |
| <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> | |
| </configSections> | |
| <log4net> | |
| <appender name="RollingFileAppenderAll" type="log4net.Appender.RollingFileAppender"> | |
| <file value="C:\TEMP\APP_NAME.txt" /> | |
| <appendToFile value="true" /> | |
| <rollingStyle value="Composite" /> | |
| <datePattern value=".yyyyMMdd" /> | 
  
    
      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
    
  
  
    
  | public static Task DoRequest(string url) | |
| => Task.Run(async () => | |
| { | |
| await httpClient.GetStringAsync(requestUri: url); | |
| Console.WriteLine($"{DateTime.Now} - Task completed."); | |
| }); | 
  
    
      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
    
  
  
    
  | <# | |
| { | |
| "info": { | |
| "Statement": "Code is poetry", | |
| "Author": "Joerg Hochwald", | |
| "Contact": "joerg.hochwald@outlook.com", | |
| "Link": "http://hochwald.net", | |
| "Support": "https://github.com/jhochwald/MyPowerShellStuff/issues" | |
| }, | |
| "Copyright": "(c) 2012-2015 by Joerg Hochwald. All rights reserved." |