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
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 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 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 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 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 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 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 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; |
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
--========================================================== | |
-- order by natural sort order as in | |
-- 1, 2.. 10, 11 and not computer sort order | |
--========================================================== | |
ORDER BY | |
to_number(regexp_substr(CHAR_COLUMN,'^[0-9]+')), | |
to_number(regexp_substr(CHAR_COLUMN,'[0-9]+$')), | |
CHAR_COLUMN |
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
-------------------------------------------------------- | |
-- list all known stored procedures in oracle | |
-------------------------------------------------------- | |
SELECT | |
owner, | |
object_name | |
FROM | |
dba_objects | |
WHERE | |
object_type = 'PROCEDURE' |
NewerOlder