This file contains 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
param( | |
[Parameter(Mandatory=$true)] | |
[string]$projectPath, | |
[Parameter(Mandatory=$false)] | |
[string]$backupFolder = "backup_$(Get-Date -Format 'yyyyMMdd_HHmmss')", | |
[Parameter(Mandatory=$false)] | |
[int]$batchSize = 10 | |
) | |
Add-Type -AssemblyName System.Web |
This file contains 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
#IfWinActive ahk_class TV_CClientWindowClass | |
RCtrl::RWin | |
RWin::RCtrl | |
LCtrl::LWin | |
LWin::LCtrl |
This file contains 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
Shader "Unlit/BillboardDiffuse" | |
{ | |
Properties{ | |
_Color("Color (RGBA)",color) = (1,1,1,1) | |
_MainTex("Albedo (RGB)", 2D) = "white" {} | |
_ScaleX("Scale X", Range(0,100)) = 1 | |
_ScaleY("Scale Y", Range(0,100)) = 1 | |
} | |
SubShader{ |
This file contains 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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |