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
| # Requires: Az.Accounts, Az.Storage | |
| # --- Inputs --- | |
| $SubscriptionId = "<sub-id>" # optional | |
| $ResourceGroupName = "<rg-name>" | |
| $StorageAccountName = "<storage-account-name>" # single SA target | |
| # Local root that contains per-container subfolders: | |
| # C:\uploads\storage\container-a\... | |
| # C:\uploads\storage\logs-2026-02\... |
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
| # Requires: Az.Accounts, Az.Storage | |
| # --- Inputs --- | |
| $SubscriptionId = "<sub-id>" # optional (if you want to force a sub) | |
| $ResourceGroupName = "<rg-name>" | |
| $StorageAccountName = "<storage-account-name>" # single SA target | |
| # Container filters (choose one style) | |
| $ContainerNames = @("container-a","container-b") # exact list (optional) | |
| $ContainerPatterns = @("logs-*","exports-*") # wildcard list (optional) |
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
| https://www.youtube.com/playlist?list=PLVlY3_YU-89VfjYH74RmrQDal7wMzZ7Yy | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XtETidwxeOzjDkKsTWO7oE | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89UlS0P9brotK8ZJ9gJywL7b | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89VUA53n-c6FhXqC9wBZOOrZ | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89ViJTxCyEFfqsaf6_0DlxDa | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XLmDehHsBFWov9bcg0ZnhE | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XzzyZ0XcCMtNa_8EgM0JXG | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89UXETF0IOn2SNitT5Rb40zt | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89Vng_SVpXLUv_S978y2pXtf | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89VIpZRqUIpgIZombFBKFQQj |
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
| https://www.youtube.com/playlist?list=PLVlY3_YU-89UlS0P9brotK8ZJ9gJywL7b | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XHn1YAqEBwj_Vy2zaN05Ss | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XtETidwxeOzjDkKsTWO7oE | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89VUA53n-c6FhXqC9wBZOOrZ | |
| https://www.youtube.com/playlist?list=WL | |
| https://www.youtube.com/playlist?list=LL | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XHn1YAqEBwj_Vy2zaN05Ss | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89XtETidwxeOzjDkKsTWO7oE | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89VUA53n-c6FhXqC9wBZOOrZ | |
| https://www.youtube.com/playlist?list=PLVlY3_YU-89WqOMhHeT3USWcqTJa09WgO |
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
| code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;} |
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
| [PSCredential]::new(0, $SecurePassword).GetNetworkCredential().Password |
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
| $REGKEY="HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" | |
| $REGITEM = "DoNotConnectToWindowsUpdateInternetLocations" | |
| function Set-RegistryItem { | |
| param ( | |
| # Registry key to set | |
| [Parameter(Mandatory=$true)] | |
| [string] | |
| $RegistryKey, |
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
| # From http://secure-ubuntu-server.blogspot.co.id/2015/05/howto-highest-secured-hiawatha-web.html and default conf | |
| # Hiawatha main configuration file | |
| # VARIABLES | |
| # With 'set', you can declare a variable. Make sure the name of the | |
| # variable doesn't conflict with any of the configuration options. The | |
| # variables are case-sensitive and cannot be redeclared. | |
| # | |
| #set LOCALHOST = 127.0.0.0/8 |
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
| SELECT | |
| Sum(l.cslbr_temp + l.cslbr_wkr) AS TTL, | |
| Sum(l.cslbr_temp) AS Temp, | |
| Sum(l.cslbr_wkr) AS Worker, | |
| l.subprocess_id | |
| FROM | |
| vw_cslabor l, | |
| vm_subprocess s | |
| WHERE | |
| s.SUBPROCESS_ID(+) = l.SUBPROCESS_ID |
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
| DECLARE | |
| x VARCHAR2(8); | |
| BEGIN | |
| x := item_change_mapping_io.iswarehouseitem('01217'); | |
| dbms_output.put_line(x); | |
| END; | |
| var rc refcursor; | |
| exec item_change_mapping_io.GetPrimaryGridData(:rc); | |
| print rc; |
NewerOlder