HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent- Dword 
DisableWindowsConsumerFeaturesset to1 
  
    
      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
    
  
  
    
  | # Occasionally I want to see the application properties that are pulled down from the Spring Cloud Config service that provides | |
| # content to our Spring Boot apps. Since I seem to have to re-discover this every time, I figured I'd write it down to help me | |
| # remember. | |
| # | |
| # Additional docs can be found here: https://cloud.spring.io/spring-cloud-config/single/spring-cloud-config.html | |
| # To see the output in YML format | |
| curl -u {the user name}:{the user password} http://{the domain:port}/{the application name}-{the spring profile name}.yml | |
| # For example: | 
| title | subtitle | author | date | source | 
|---|---|---|---|---|
npm vs Yarn Command Translation Cheat Sheet  | 
  CLI commands comparison  | 
  yarn  | 
  February 15, 2020  | 
  
Updated: 20250516
  
    
      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
    
  
  
    
  | ## | |
| ## Prerequisites: | |
| ## - already resized disk on the VM host | |
| ## | |
| ## Notes: | |
| ## - I assume that we have three partitions (primary (root fs), extended, logical (swap)) | |
| ## - I assume that we move swap out of the extended partition and convert to a normal primary one | |
| ## - I also assume that we place swap at the end of the disk | |
| ## | 
  
    
      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
    
  
  
    
  | # source: https://raymii.org/s/tutorials/Proxmox_VE_One_Public_IP.html | |
| iface eth0 inet manual | |
| iface eth1 inet manual | |
| auto vmbr0 | |
| iface vmbr0 inet static | |
| address 163.172.103.199 | |
| netmask 255.255.255.0 | 
  
    
      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
    
  
  
    
  | "use strict"; | |
| // [run the app] | |
| // $ npm install electron | |
| // $ ./node_modules/.bin/electron . | |
| const {app, nativeImage, Tray, Menu, BrowserWindow} = require("electron"); | |
| let top = {}; // prevent gc to keep windows | 
  
    
      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
    
  
  
    
  | export function getFile(response) { | |
| var result = document.createElement('a'); | |
| var contentDisposition = response.headers.get('Content-Disposition') || ''; | |
| var filename = contentDisposition.split('filename=')[1]; | |
| filename = filename.replace(/"/g,"") | |
| return response.blob() | |
| .then(function(data) { | |
| result.href = window.URL.createObjectURL(data); | |
| result.target = '_self'; |