I hereby claim:
- I am crshnbrn66 on github.
- I am crshnbrn66 (https://keybase.io/crshnbrn66) on keybase.
- I have a public key ASDg8XSrh3XHkITuTYz09EtP2CEUPYp9pYH3-S1cZpL4AAo
To claim this, I am signing this object:
function get-redirectedUrls | |
{ | |
Param($url) | |
$urlcheckobject=@{} | |
$Uri = [uri]$url | |
$url2check = $url | |
do{ | |
$value = get-redirectedUrl -url $url2check | |
if($value.redirect) | |
{ |
function Get-FileNameProperties | |
{ | |
param( $path = "~", | |
[switch] $Recurse, | |
[array]$Properties = ('Fullname', 'LastAccessTime', 'LastWriteTime', 'CreationTime','Owner','Size','Directory','Extension')) | |
$sortedfiles = $null | |
$files = Get-ChildItem -Recurse:$Recurse -File $path #if $recurse is true it'll recurse other wise it won't | |
$params2 = @() |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
CORTEX_CRYPTO="aes-256-cbc" | |
_cortex_logger() { printf '{%s}[%s](%s):%s\t%s\n' "$(date -u '+%FT%TZ')" "${1}" "$(caller)" "${2}" "${@:3}" 1>&2; } | |
_cortex_io() { | |
case "${CORTEX_FILE}" in | |
"") _cortex_logger "$(caller)" ERR "CORTEX_FILE environment variable is empty/unset" && return 127 ;; | |
*) |